From fb24c4a3ed2915e4cbefcfc929e17724c7299c4b Mon Sep 17 00:00:00 2001 From: Vicky Bikia Date: Fri, 9 May 2025 17:14:10 -0700 Subject: [PATCH 01/11] Implement modular benchmarking pipeline for patient graph evaluation --- requirements.txt | 7 +- requirements.txt.license | 5 + src/benchmark/batch_run.py | 63 ++ src/benchmark/generate_visuals.py | 68 ++ src/benchmark/main.py | 48 ++ .../__init__.py} | 0 src/benchmark/modules/config.py | 26 + src/benchmark/modules/embedding.py | 107 +++ src/benchmark/modules/evaluation.py | 152 ++++ src/benchmark/modules/io_utils.py | 160 ++++ src/benchmark/modules/logging_utils.py | 29 + src/benchmark/modules/reconstruction.py | 176 ++++ src/benchmark/modules/regex_utils.py | 59 ++ src/benchmark/modules/run_benchmark.py | 147 ++++ src/benchmark/modules/visualization_utils.py | 72 ++ src/benchmark/output/results/results0.json | 795 ++++++++++++++++++ src/benchmark/requirements.txt | 7 + src/benchmark/requirements.txt.license | 5 + src/benchmark/setup_env.sh | 22 + 19 files changed, 1946 insertions(+), 2 deletions(-) create mode 100644 requirements.txt.license create mode 100644 src/benchmark/batch_run.py create mode 100644 src/benchmark/generate_visuals.py create mode 100644 src/benchmark/main.py rename src/benchmark/{similarity_eval.py => modules/__init__.py} (100%) create mode 100644 src/benchmark/modules/config.py create mode 100644 src/benchmark/modules/embedding.py create mode 100644 src/benchmark/modules/evaluation.py create mode 100644 src/benchmark/modules/io_utils.py create mode 100644 src/benchmark/modules/logging_utils.py create mode 100644 src/benchmark/modules/reconstruction.py create mode 100644 src/benchmark/modules/regex_utils.py create mode 100644 src/benchmark/modules/run_benchmark.py create mode 100644 src/benchmark/modules/visualization_utils.py create mode 100644 src/benchmark/output/results/results0.json create mode 100644 src/benchmark/requirements.txt create mode 100644 src/benchmark/requirements.txt.license create mode 100755 src/benchmark/setup_env.sh diff --git a/requirements.txt b/requirements.txt index c2dac38..cf5427c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -11,7 +11,7 @@ asyncer==0.0.8 attrs==25.3.0 backoff==2.2.1 beautifulsoup4==4.13.4 -biopython==1.85 +bert-score>=0.3.13 blis==1.3.0 cachetools==5.5.2 catalogue==2.0.10 @@ -28,7 +28,8 @@ dill==0.3.8 diskcache==5.6.3 distro==1.9.0 dotenv==0.9.9 -dspy @ git+https://github.com/stanfordnlp/dspy.git@b7375196ba95215dc6237175490302fb8e5976df +dspy @ git+https://github.com/stanfordnlp/dspy.git@ab340835d1a83f62fb18f86c5b17fdfb9d172713 +dspy-ai>=2.3.3 en_core_web_sm @ https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-3.8.0/en_core_web_sm-3.8.0-py3-none-any.whl#sha256=1932429db727d4bff3deed6b34cfc05df17794f4a52eeb26cf8928f7c1a0fb85 exceptiongroup==1.2.2 fastapi==0.115.12 @@ -64,6 +65,7 @@ mdurl==0.1.2 multidict==6.4.2 multiprocess==0.70.16 murmurhash==1.0.12 +networkx>=3.1 numpy==2.0.2 openai==1.61.0 optuna==4.2.1 @@ -107,6 +109,7 @@ tiktoken==0.9.0 tokenizers==0.21.1 tomli==2.2.1 tomlkit==0.13.2 +transformers>=4.37 tqdm==4.67.1 typer==0.15.2 typing-inspection==0.4.0 diff --git a/requirements.txt.license b/requirements.txt.license new file mode 100644 index 0000000..f1e5619 --- /dev/null +++ b/requirements.txt.license @@ -0,0 +1,5 @@ +This source file is part of the Daneshjou Lab projects + +SPDX-FileCopyrightText: 2024 Stanford University and the project authors (see AUTHORS.md) + +SPDX-License-Identifier: MIT \ No newline at end of file diff --git a/src/benchmark/batch_run.py b/src/benchmark/batch_run.py new file mode 100644 index 0000000..16c4b3c --- /dev/null +++ b/src/benchmark/batch_run.py @@ -0,0 +1,63 @@ +# This source file is part of the Daneshjou Lab projects +# +# SPDX-FileCopyrightText: 2025 Stanford University and the project authors (see AUTHORS.md) +# +# SPDX-License-Identifier: MIT +# + +""" +Run the full benchmarking pipeline on a batch of graph files in JSON format. +Each graph is benchmarked for information fidelity, topology structure, +and trajectory representation. +""" + +from pathlib import Path +import os + +# Local application imports +from benchmark.modules.io_utils import ( + load_graph_from_file, + save_results, +) +from benchmark.modules.run_benchmark import run_pipeline +from benchmark.modules.logging_utils import setup_logger + +logger = setup_logger(__name__) + + +# Replace this with your actual text used as reference +ORIGINAL_TEXT = ( + "A patient presents with chest pain. ECG was abnormal. " + "Treated and sent to cath lab." +) + +GRAPH_INPUT_DIR = "samples/json_output/am_journal_case_reports_2024" +RESULTS_OUTPUT_DIR = "output/graphs" + +os.makedirs(RESULTS_OUTPUT_DIR, exist_ok=True) + +if __name__ == "__main__": + input_dir = Path(GRAPH_INPUT_DIR) + + for fpath in input_dir.glob("*.json"): + graph_id = fpath.stem + logger.info(f"Running pipeline on: {fpath.name}") + + graph, ok = load_graph_from_file(fpath) + if not ok: + logger.error(f"Skipping {fpath.name} due to load error.") + continue + + cfg = { + "reconstruct_params": {"include_nodes": True, "include_edges": True}, + "bertscore": True, + "topology": True, + "trajectory_embedding": True, + } + + results = run_pipeline(graph, ORIGINAL_TEXT, cfg) + + output_file = Path(RESULTS_OUTPUT_DIR) / f"{graph_id}.json" + save_results(results, output_file) + + logger.info("Batch benchmarking completed.") diff --git a/src/benchmark/generate_visuals.py b/src/benchmark/generate_visuals.py new file mode 100644 index 0000000..074b3ef --- /dev/null +++ b/src/benchmark/generate_visuals.py @@ -0,0 +1,68 @@ +# This source file is part of the Daneshjou Lab projects +# +# SPDX-FileCopyrightText: 2025 Stanford University and the project authors (see AUTHORS.md) +# +# SPDX-License-Identifier: MIT +# + +"""This module generates visualizations for the results of the benchmark pipeline.""" + +import os +import json +import numpy as np + +from benchmark.modules.visualization_utils import ( + plot_bertscore_f1, + plot_tsne_embeddings, + plot_topology_distributions, + summarize_metrics_table +) + +RESULTS_DIR = "output/" + +# Lists to collect metrics +graph_ids = [] +bertscore_f1s = [] +trajectory_embeddings = [] +node_counts = [] +edge_counts = [] + +# Iterate over each result file +for fname in os.listdir(RESULTS_DIR): + if fname.endswith(".json"): + graph_id = fname.replace(".json", "") + with open(os.path.join(RESULTS_DIR, fname), "r", encoding="utf-8") as f: + result = json.load(f) + + graph_ids.append(graph_id) + + # Get BERTScore F1 + f1 = result.get("bertscore", {}).get("f1", [np.nan])[0] + bertscore_f1s.append(f1) + + # Get embedding + emb = result.get("trajectory_embedding") + if emb: + trajectory_embeddings.append(emb) + + # Get topology stats + topo = result.get("topology", {}) + node_counts.append(topo.get("node_count", 0)) + edge_counts.append(topo.get("edge_count", 0)) + +# Convert embedding list to numpy array if not empty +if trajectory_embeddings: + trajectory_embeddings = np.array(trajectory_embeddings) + +# Generate Visualizations + +plot_bertscore_f1(graph_ids, bertscore_f1s) + +if len(trajectory_embeddings) > 1: + plot_tsne_embeddings(trajectory_embeddings, graph_ids) + +plot_topology_distributions(node_counts, edge_counts) + +summary_df = summarize_metrics_table(graph_ids, bertscore_f1s, node_counts, edge_counts) +print("\n=== Summary Table ===") +print(summary_df) diff --git a/src/benchmark/main.py b/src/benchmark/main.py new file mode 100644 index 0000000..c4e7087 --- /dev/null +++ b/src/benchmark/main.py @@ -0,0 +1,48 @@ +# This source file is part of the Daneshjou Lab projects +# +# SPDX-FileCopyrightText: 2025 Stanford University and the project authors (see AUTHORS.md) +# +# SPDX-License-Identifier: MIT +# + +""" +This script runs the full benchmarking pipeline on a single patient graph. +Intended for validating information extraction, structure, and representation quality. +""" + +import sys +from pathlib import Path +sys.path.append(str(Path(__file__).resolve().parents[1])) # Adds 'src' to sys.path + + +# Local application imports +from benchmark.modules.io_utils import ( + load_graph_from_file, + save_results, + data_display, +) +from benchmark.modules.run_benchmark import run_pipeline +from benchmark.modules.logging_utils import setup_logger + +logger = setup_logger(__name__) + +ORIGINAL_TEXT = ( + "A patient presents with chest pain. ECG was abnormal." + "Treated and sent to cath lab." +) + + +if __name__ == "__main__": + current_graph_path = "/Users/bikia/Documents/Code/DynamicData/samples/json_output/am_journal_case_reports_2024" + graph, ok = load_graph_from_file(current_graph_path) + + if ok: + cfg = { + "reconstruct_params": {"include_nodes": True, "include_edges": True}, + "bertscore": True, + "topology": True, + "trajectory_embedding": True, + } + results = run_pipeline(graph, ORIGINAL_TEXT, cfg) + # data_display(results) + save_results(results, "output/results/results0.json") diff --git a/src/benchmark/similarity_eval.py b/src/benchmark/modules/__init__.py similarity index 100% rename from src/benchmark/similarity_eval.py rename to src/benchmark/modules/__init__.py diff --git a/src/benchmark/modules/config.py b/src/benchmark/modules/config.py new file mode 100644 index 0000000..17b4c76 --- /dev/null +++ b/src/benchmark/modules/config.py @@ -0,0 +1,26 @@ +# This source file is part of the Daneshjou Lab projects +# +# SPDX-FileCopyrightText: 2025 Stanford University and the project authors (see AUTHORS.md) +# +# SPDX-License-Identifier: MIT +# + +"""This module contains configuration settings for the DSPy LLM and BERTScore models.""" + +import networkx as nx + +# Graph type alias +Graph = nx.DiGraph + +# Let's change this to GEMINI +# DSPy LLM settings +LM_MODEL = "ollama/llama3.2" +LM_API_BASE = "http://localhost:11434" +LM_API_KEY = "" # or your local key if required + +# BERTScore settings +BERTSCORE_MODEL = "bert-base-uncased" + +# Trajectory Embedding settings +TRAJECTORY_EMBEDDING_MODEL = "emilyalsentzer/Bio_ClinicalBERT" +TEXT_FIELD_PATH = ["data", "commentary"] # e.g., node["data"]["commentary"] diff --git a/src/benchmark/modules/embedding.py b/src/benchmark/modules/embedding.py new file mode 100644 index 0000000..3347dc2 --- /dev/null +++ b/src/benchmark/modules/embedding.py @@ -0,0 +1,107 @@ +# This source file is part of the Daneshjou Lab projects +# +# SPDX-FileCopyrightText: 2025 Stanford University and the project authors (see AUTHORS.md) +# +# SPDX-License-Identifier: MIT +# + +"""This module contains the TrajectoryEmbedder class for embedding patient trajectories.""" + +# Standard library imports +from typing import Optional + +# Third-party library imports +import torch +from transformers import AutoTokenizer, AutoModel +import networkx as nx + +# Local application imports +from .logging_utils import setup_logger +from .config import TRAJECTORY_EMBEDDING_MODEL + +logger = setup_logger(__name__) + + +class TrajectoryEmbedder: + """ + Embeds a patient trajectory graph by pooling embeddings of textual node content. + Uses a transformer model (e.g., Bio_ClinicalBERT) and extracts node-level text + based on a configurable path (e.g., ["data", "commentary"]). + + Attributes: + model_name (str): Hugging Face model ID used for embedding. + text_path (list[str]): Path to the text field in node + attributes (e.g., ["data", "commentary"]). + device (str): Computation device ('cuda' or 'cpu'). + """ + + def __init__( + self, + model_name=TRAJECTORY_EMBEDDING_MODEL, + text_path=None, + device=None, + ): + """ + Initializes the TrajectoryEmbedder with a specified model and text path. + Args: + model_name (str): Hugging Face model ID used for embedding. + text_path (list[str]): Path to the text field in node + attributes (e.g., ["data", "commentary"]). + device (str): Computation device ('cuda' or 'cpu'). + """ + self.model_name = model_name + self.text_path = text_path or ["content"] # Default to flat structure + self.device = device or ("cuda" if torch.cuda.is_available() else "cpu") + self.text_path = text_path + logger.info("Loading embedding model: %s on %s", model_name, self.device) + self.tokenizer = AutoTokenizer.from_pretrained(model_name) + self.model = AutoModel.from_pretrained(model_name).to(self.device) + self.model.eval() + + def embed_text(self, text: str) -> torch.Tensor: + """"Embeds a single text string using the transformer model. + Args: + text (str): Text to be embedded. + Returns: + torch.Tensor: The embedding of the text. + """ + inputs = self.tokenizer( + text, return_tensors="pt", truncation=True, padding=True + ).to(self.device) + with torch.no_grad(): + outputs = self.model(**inputs) + return outputs.last_hidden_state[0][0] + + def extract_text(self, data: dict) -> Optional[str]: + """Extracts text from the node attributes based on the specified path. + Args: + data (dict): Node attributes. + Returns: + Optional[str]: Extracted text or None if not found. + """ + try: + for key in self.text_path: + data = data[key] + return data if isinstance(data, str) else None + except (KeyError, TypeError): + return None + + def embed_graph(self, graph: nx.DiGraph) -> Optional[torch.Tensor]: + """Embeds a graph by pooling the embeddings of its nodes. + Args: + graph (nx.DiGraph): The graph to be embedded. + Returns: + Optional[torch.Tensor]: The pooled embedding of the graph. + """ + texts = [] + for _, data in graph.nodes(data=True): + t = self.extract_text(data) + if t: + texts.append(t) + + if not texts: + logger.warning("No valid node texts found for embedding.") + return None + + node_embs = torch.stack([self.embed_text(t) for t in texts]) + return node_embs.mean(dim=0).cpu() diff --git a/src/benchmark/modules/evaluation.py b/src/benchmark/modules/evaluation.py new file mode 100644 index 0000000..22a61fd --- /dev/null +++ b/src/benchmark/modules/evaluation.py @@ -0,0 +1,152 @@ +# This source file is part of the Daneshjou Lab projects +# +# SPDX-FileCopyrightText: 2025 Stanford University and the project authors (see AUTHORS.md) +# +# SPDX-License-Identifier: MIT +# + +# pylint: disable=too-few-public-methods + +"""This module contains evaluation classes for BERTScore and graph topology validation.""" +from typing import Any +from transformers import AutoTokenizer, AutoModel +import networkx as nx +from bert_score import score + +# Local application imports +from .config import Graph +from .logging_utils import setup_logger + +logger = setup_logger(__name__) + + +class BERTScoreEvaluator: + """ + Computes BERTScore (precision, recall, F1) between original and reconstructed texts. + + Usage: + evaluator = BERTScoreEvaluator(model_type="BERTSCORE_MODEL") + results = evaluator.evaluate( + refs=["ground truth text"], + cands=["model generated text"] + ) + # results -> {"precision": [...], "recall": [...], "f1": [...]} + """ + + def __init__(self, model_type: str, device: str = None): + self.model_type = model_type + self.device = device # 'cuda', 'cpu', or None for auto-detection + + # ── Ensure the checkpoint is available locally ── + # This will pull the tokenizer & model into ~/.cache/huggingface if missing. + AutoTokenizer.from_pretrained(self.model_type) + AutoModel.from_pretrained(self.model_type) + + def evaluate(self, refs: list[str], cands: list[str]) -> dict[str, list[float]]: + """ + Args: + refs: list of reference texts. + cands: list of candidate texts. + + Returns: + Dict with keys "precision", "recall", "f1" mapping to lists of scores. + """ + if not refs or not cands: + logger.warning("Empty references or candidates list") + return {"precision": [], "recall": [], "f1": []} + + if len(refs) != len(cands): + logger.warning( + f"Mismatched list lengths: refs={len(refs)}, cands={len(cands)}" + ) + + try: + precision, recall, f1_score = score( + cands, + refs, + model_type=self.model_type, + device=self.device, + verbose=False, + ) + + return { + "precision": precision.tolist(), + "recall": recall.tolist(), + "f1": f1_score.tolist(), + } + except Exception as e: + logger.error(f"BERTScore evaluation failed: {str(e)}") + raise + + +# GRAPH TOPOLOGY VALIDATION + + +class TopologyValidator: + """ + Validates DAG properties: acyclicity, timestamp order, connectivity stats. + + Usage: + validator = TopologyValidator(graph) + stats = validator.run() + # stats -> {"is_acyclic": bool, "timestamps_in_order": bool, ...} + """ + + def __init__(self, graph: Graph): + self.graph_s = graph + + def run(self) -> dict[str, Any]: + """ + Returns: + A dict with structural validation results. + """ + if not self.graph_s or self.graph_s.number_of_nodes() == 0: + logger.warning("Empty graph in topology validator") + return { + "is_acyclic": True, # Empty graphs are technically acyclic + "timestamps_in_order": True, + "weakly_connected_components": 0, + "avg_in_degree": 0.0, + "node_count": 0, + "edge_count": 0, + "density": 0.0, + } + + is_acyclic = nx.is_directed_acyclic_graph(self.graph_s) + + # Check if timestamps exist in all nodes + timestamp_attr = "timestamp" + all_have_timestamps = all( + timestamp_attr in data for _, data in self.graph_s.nodes(data=True) + ) + + timestamps_ok = False + if all_have_timestamps: + try: + topo_nodes = list(nx.topological_sort(self.graph_s)) + timestamps = [self.graph_s.nodes[n][timestamp_attr] for n in topo_nodes] + timestamps_ok = timestamps == sorted(timestamps) + except nx.NetworkXUnfeasible: + # Graph has cycles, can't do topological sort + logger.warning("Cannot check timestamp order: graph has cycles") + timestamps_ok = False + else: + logger.warning("Not all nodes have timestamp attributes") + + components = nx.number_weakly_connected_components(self.graph_s) + node_count = self.graph_s.number_of_nodes() + edge_count = self.graph_s.number_of_edges() + + avg_in_deg = sum(dict(self.graph_s.in_degree()).values()) / max(1, node_count) + density = nx.density(self.graph_s) + + return { + "is_acyclic": is_acyclic, + "timestamps_in_order": timestamps_ok, + "all_nodes_have_timestamps": all_have_timestamps, + "weakly_connected_components": components, + "node_count": node_count, + "edge_count": edge_count, + "avg_in_degree": avg_in_deg, + "density": density, + } diff --git a/src/benchmark/modules/io_utils.py b/src/benchmark/modules/io_utils.py new file mode 100644 index 0000000..0d99b36 --- /dev/null +++ b/src/benchmark/modules/io_utils.py @@ -0,0 +1,160 @@ +# This source file is part of the Daneshjou Lab projects +# +# SPDX-FileCopyrightText: 2025 Stanford University and the project authors (see AUTHORS.md) +# +# SPDX-License-Identifier: MIT +# + +# pylint: disable=broad-exception-caught + +"""This modules containes I/O utilities for loading and saving data.""" + +import json +import os +from typing import Any +import networkx as nx +from networkx.readwrite import json_graph + +# Local application imports +from .logging_utils import setup_logger + +logger = setup_logger(__name__) +UTF_8 = "utf-8" + +def load_graph_from_file(path: str) -> tuple[nx.DiGraph, bool]: + """ + Load a graph from a JSON file using networkx's node-link format. + Args: + path (str): Path to the JSON file containing the graph data. + Returns: + tuple: A tuple containing the loaded graph and a boolean indicating success. + """ + try: + with open(path, encoding=UTF_8) as f: + data = json.load(f) + converted_data = convert_to_node_link_format(data) + return json_graph.node_link_graph(converted_data, directed=True), True + except Exception as e: + logger.error("Error loading graph: %s", e) + return nx.DiGraph(), False + +def save_results(results: dict, path: str) -> None: + """ + Save the pipeline results to a JSON file. + Args: + results (dict): The results to save. + path (str): The path to the output file. + """ + os.makedirs(os.path.dirname(path), exist_ok=True) + with open(path, "w", encoding=UTF_8) as f: + json.dump(results, f, indent=2) + +def data_display(results: dict[str, Any]) -> None: + """ + Pretty-print the pipeline results as structured tables for easy terminal viewing. + Narrative is shown first, followed by status and individual metric tables. + + Args: + results: The dict returned by run_pipeline. + """ + # Header + print("\n========== Pipeline Results ==========\n") + + # 1) Reconstructed Narrative first + if "reconstructed_narrative" in results: + print("Reconstructed Narrative:") + print(results["reconstructed_narrative"]) + print() + + # 2) Status + status = results.get("status") + if status: + print(f"Status: {status}\n") + + # 3) BERTScore table + if "bertscore" in results: + bs = results["bertscore"] + print("BERTScore:") + print(f"{'Metric':<12} {'Score':>10}") + print("-" * 22) + for metric, scores in bs.items(): + val = scores[0] if scores else float("nan") + print(f"{metric:<12} {val:>10.4f}") + print() + + # 4) Topology table + if "topology" in results: + topo = results["topology"] + print("Topology Validation:") + print("-" * 22) + key_width = max(len(k) for k in topo) + for key, val in topo.items(): + print(f"{key:<{key_width}} : {val}") + print() + + # 5) Regex checks table + if "regex" in results: + rgx = results["regex"] + print("Regex Checks:") + print("-" * 22) + key_width = max(len(k) for k in rgx) + for key, val in rgx.items(): + print(f"{key:<{key_width}} : {val}") + print() + + # 6) Any other top-level keys + other_keys = { + k: v for k, v in results.items() + if k not in {"status", "bertscore", "topology", "regex", "reconstructed_narrative"} + } + if other_keys: + print("Additional Data:") + for key, val in other_keys.items(): + print(f"{key}: {val}") + print() + +def convert_to_node_link_format(original_json: dict) -> dict: + """ + Convert a custom-formatted graph JSON with 'node_id' and 'edges' + into NetworkX node-link format with 'id' and 'links'. + + Args: + original_json (dict): Your original graph dictionary. + + Returns: + dict: A transformed JSON compatible with networkx.node_link_graph(). + """ + converted = { + "directed": True, + "graph": {}, + "nodes": [], + "links": [] + } + + for node in original_json.get("nodes", []): + new_node = dict(node) # copy + new_node["id"] = new_node.pop("node_id", None) + converted["nodes"].append(new_node) + + for edge in original_json.get("edges", []): + new_edge = dict(edge) # copy + new_edge["source"] = new_edge.pop("from_node", None) + new_edge["target"] = new_edge.pop("to_node", None) + converted["links"].append(new_edge) + + return converted + +def save_embedding_vector(vec: list[float], out_path: str, metadata: dict = None): + """ + Save an embedding vector to a JSON file, appending it to the file if it already exists. + Args: + vec (list[float]): The embedding vector to save. + out_path (str): The path to the output file. + metadata (dict, optional): Additional metadata to include in the JSON object. + """ + row = metadata or {} + for i, v in enumerate(vec): + row[f"dim_{i}"] = v + with open(out_path, "a", encoding=UTF_8) as f: + json.dump(row, f) + f.write("\n") diff --git a/src/benchmark/modules/logging_utils.py b/src/benchmark/modules/logging_utils.py new file mode 100644 index 0000000..445bbfd --- /dev/null +++ b/src/benchmark/modules/logging_utils.py @@ -0,0 +1,29 @@ +# This source file is part of the Daneshjou Lab projects +# +# SPDX-FileCopyrightText: 2025 Stanford University and the project authors (see AUTHORS.md) +# +# SPDX-License-Identifier: MIT +# + +"""This module contains logging utilities for standardized logging across the application.""" + +import logging + +def setup_logger(name: str) -> logging.Logger: + """ + Initializes and returns a logger with standardized settings. + + Args: + name: Usually __name__ from the calling module. + + Returns: + Configured logger instance. + """ + logger = logging.getLogger(name) + if not logger.hasHandlers(): + handler = logging.StreamHandler() + formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s') + handler.setFormatter(formatter) + logger.addHandler(handler) + logger.setLevel(logging.INFO) + return logger diff --git a/src/benchmark/modules/reconstruction.py b/src/benchmark/modules/reconstruction.py new file mode 100644 index 0000000..b9577a3 --- /dev/null +++ b/src/benchmark/modules/reconstruction.py @@ -0,0 +1,176 @@ +# This source file is part of the Daneshjou Lab projects +# +# SPDX-FileCopyrightText: 2025 Stanford University and the project authors (see AUTHORS.md) +# +# SPDX-License-Identifier: MIT +# + +"""This module provides functionality to reconstruct a clinical narrative from +a graph using a DSPy-compatible LLM.""" + +# pylint: disable=(broad-exception-caught, too-few-public-methods, too-many-arguments, too-many-positional-arguments) + +# Standard library imports +import json +from typing import Any, Optional + +# Third-party imports +import networkx as nx +import dspy + +# Local application imports +from .config import Graph +from .logging_utils import setup_logger + +logger = setup_logger(__name__) + +"""This module provides functionality to reconstruct a clinical narrative from +a graph using a DSPy-compatible LLM. +""" + + +class LLMReconstructor: + """ + Uses a DSPy-compatible LLM to reconstruct a narrative from selected parts of a graph. + + Usage: + reconstructor = LLMReconstructor( + model_name = LM_MODEL, + api_base = LM_API_BASE, + api_key= LM_API_KEY + ) + narrative = reconstructor.reconstruct( + graph, + include_nodes=True, + include_edges=False, + node_ids=["n1", "n2"], + node_attrs=["content"], + ) + """ + + def __init__( + self, + model_name: str, + api_base: str, + api_key: str, + prompt_tpl: str = ( + "Reconstruct the clinical case report from this data:\n\n{payload}\n\n" + "Write a coherent narrative including patient demographics, " + "timeline of diagnoses, treatments, and outcomes." + ), + max_retries: int = 3, + ): + try: + self.lm = dspy.LM(model_name, api_base=api_base, api_key=api_key) + self.prompt_tpl = prompt_tpl + self.max_retries = max_retries + except Exception as e: + logger.error("Error initializing LLM: %s", e) + raise + + def _build_payload( + self, + graph: Graph, + include_nodes: bool, + include_edges: bool, + node_ids: Optional[list[str]], + node_attrs: Optional[list[str]], + edge_attrs: Optional[list[str]], + ) -> dict[str, Any]: + """Build a structured payload from the graph.""" + payload: dict[str, Any] = {} + + if include_nodes: + payload["nodes"] = [] + for nid, attrs in graph.nodes(data=True): + if node_ids and nid not in node_ids: + continue + entry = {"id": nid} + for k in node_attrs or list(attrs.keys()): + if k in attrs: # Only include existing attributes + entry[k] = attrs[k] + payload["nodes"].append(entry) + + if include_edges: + payload["edges"] = [] + for src, tgt, attrs in graph.edges(data=True): + # Skip edges if we're filtering nodes and either endpoint is filtered out + if node_ids and (src not in node_ids or tgt not in node_ids): + continue + entry = {"source": src, "target": tgt} + for k in edge_attrs or list(attrs.keys()): + if k in attrs: # Only include existing attributes + entry[k] = attrs[k] + payload["edges"].append(entry) + + return payload + + def reconstruct( + self, + graph: Graph, + *, + include_nodes: bool = True, + include_edges: bool = True, + node_ids: Optional[list[str]] = None, + node_attrs: Optional[list[str]] = None, + edge_attrs: Optional[list[str]] = None, + ) -> str: + """ + Build a custom payload from the graph and call the LLM. + + Args: + graph: networkx.DiGraph with node/edge attributes. + include_nodes: include a list of nodes in the payload. + include_edges: include a list of edges in the payload. + node_ids: list of node IDs to include (default: all). + node_attrs: list of node attribute names to include (default: all). + edge_attrs: list of edge attribute names to include (default: all). + + Returns: + A string containing the reconstructed clinical narrative. + """ + if not graph: + logger.warning("Empty graph provided") + return "No data available to reconstruct narrative." + + # Verify graph is a DiGraph + if not isinstance(graph, nx.DiGraph): + logger.warning("Expected DiGraph, got %s", type(graph)) + if isinstance(graph, nx.Graph): + logger.info("Converting undirected graph to directed") + graph = nx.DiGraph(graph) + else: + raise TypeError("Input must be a networkx Graph or DiGraph") + + payload = self._build_payload( + graph, include_nodes, include_edges, node_ids, node_attrs, edge_attrs + ) + + if not payload.get("nodes") and not payload.get("edges"): + logger.warning("No nodes or edges in payload") + return "Insufficient data to reconstruct narrative." + + payload_json = json.dumps(payload, indent=2) + prompt = self.prompt_tpl.format(payload=payload_json) + + # Retry mechanism + for attempt in range(self.max_retries): + try: + resp_list = self.lm(messages=[{"role": "user", "content": prompt}]) + # dspy returns a list type of responses; + # by default that list contains exactly one completion, + # so resp_list[0] is the single response you want + return resp_list[0].strip() + except Exception as e: + logger.warning( + "LLM call failed (attempt %d/%d): %s", + attempt + 1, + self.max_retries, + e, + ) + if attempt == self.max_retries - 1: + logger.error("All LLM call attempts failed") + raise + + # This should never be reached due to the exception above, but added for completeness + return "Failed to reconstruct narrative due to LLM service errors." diff --git a/src/benchmark/modules/regex_utils.py b/src/benchmark/modules/regex_utils.py new file mode 100644 index 0000000..33b0d8d --- /dev/null +++ b/src/benchmark/modules/regex_utils.py @@ -0,0 +1,59 @@ +# pylint: disable=broad-exception-caught,too-few-public-methods + +# This source file is part of the Daneshjou Lab projects +# +# SPDX-FileCopyrightText: 2025 Stanford University and the project authors (see AUTHORS.md) +# +# SPDX-License-Identifier: MIT +# + +""" +Provides lightweight regex-based validation for JSON-encoded graph data. +Used to catch structural formatting issues before processing. +""" + +import re +import logging + +logger = logging.getLogger(__name__) + + +class RegexValidator: + """ + Lightweight regex checks on the raw JSON string to catch common formatting issues. + + Usage: + json_str = json.dumps(json_graph.node_link_data(graph)) + validator = RegexValidator(json_str) + results = validator.run() + """ + + PATTERNS = { + "nodes_array": r'"nodes"\s*:\s*\[', + "edges_array": r'"edges"\s*:\s*\[', + "no_trailing_commas": r",\s*\]", + "node_entry": r'\{\s*"id".+?\}', + "edge_entry": r'\{\s*"source".+?"label".+?\}', + } + + def __init__(self, json_str: str): + self.s = json_str + + def run(self) -> dict[str, bool]: + """ + Returns: + Dict[str, bool]: Mapping of pattern checks to pass/fail status. + """ + if not self.s or not isinstance(self.s, str): + logger.warning("Invalid input to RegexValidator: %s", type(self.s)) + return {name: False for name in self.PATTERNS} + + results: dict[str, bool] = {} + for name, pat in self.PATTERNS.items(): + try: + found = bool(re.search(pat, self.s)) + results[name] = not found if name == "no_trailing_commas" else found + except Exception as e: + logger.error("Regex check '%s' failed: %s", name, str(e)) + results[name] = False + return results diff --git a/src/benchmark/modules/run_benchmark.py b/src/benchmark/modules/run_benchmark.py new file mode 100644 index 0000000..7007c8a --- /dev/null +++ b/src/benchmark/modules/run_benchmark.py @@ -0,0 +1,147 @@ +# pylint: disable=broad-exception-caught + +# This source file is part of the Daneshjou Lab projects +# +# SPDX-FileCopyrightText: 2025 Stanford University and the project authors (see AUTHORS.md) +# +# SPDX-License-Identifier: MIT +# + +# pylint: disable=too-many-branches, too-many-statements + +"""This modules runs the benchmark pipeline for a single patient graph.""" + +import json +from typing import Any +import networkx as nx +from networkx.readwrite import json_graph + +# Local application imports +from .reconstruction import LLMReconstructor +from .evaluation import BERTScoreEvaluator, TopologyValidator +from .embedding import TrajectoryEmbedder +from .regex_utils import RegexValidator +from .config import ( + LM_MODEL, + LM_API_BASE, + LM_API_KEY, + BERTSCORE_MODEL, + TEXT_FIELD_PATH, + TRAJECTORY_EMBEDDING_MODEL, + Graph, +) +from .logging_utils import setup_logger + +logger = setup_logger(__name__) + + +def run_pipeline( + graph: Graph, original_text: str, config: dict[str, Any] +) -> dict[str, Any]: + """ + Benchmark pipeline for a single patient graph. + + Evaluates: + 1. LLM-based narrative reconstruction + 2. BERTScore (fidelity) + 3. Graph topology validation + 4. Optional regex check + 5. Trajectory-level embedding + + Returns: + dict: Structured results with intermediate metrics. + """ + results = {"status": "success", "errors": []} + + # Validate input types + if not isinstance(graph, (nx.Graph, nx.DiGraph)): + msg = f"Invalid graph type: {type(graph)}" + logger.error(msg) + return {"status": "error", "errors": [msg]} + + if not isinstance(original_text, str): + msg = "original_text must be a string" + logger.error(msg) + return {"status": "error", "errors": [msg]} + + # LLM Narrative Reconstruction + narrative = None + if "reconstruct_params" in config: + try: + logger.info("Starting narrative reconstruction") + reconstructor = LLMReconstructor( + model_name=LM_MODEL, api_base=LM_API_BASE, api_key=LM_API_KEY + ) + narrative = reconstructor.reconstruct(graph, **config["reconstruct_params"]) + results["reconstructed_narrative"] = narrative + logger.info("Narrative reconstruction completed") + except Exception as e: + msg = f"Narrative reconstruction failed: {str(e)}" + logger.error(msg) + results["status"] = "partial" + results["errors"].append(msg) + + # Fidelity Evaluation using BERTScore + if config.get("bertscore") and narrative: + try: + logger.info("Starting BERTScore evaluation") + model_name = config.get("bertscore_model", BERTSCORE_MODEL) + evaluator = BERTScoreEvaluator(model_type=model_name) + results["bertscore"] = evaluator.evaluate( + refs=[original_text], cands=[narrative] + ) + logger.info("BERTScore evaluation completed") + except Exception as e: + msg = f"BERTScore evaluation failed: {str(e)}" + logger.error(msg) + results["status"] = "partial" + results["errors"].append(msg) + + # Graph Topology Validation + if config.get("topology"): + try: + logger.info("Starting topology validation") + results["topology"] = TopologyValidator(graph).run() + logger.info("Topology validation completed") + except Exception as e: + msg = f"Topology validation failed: {str(e)}" + logger.error(msg) + results["status"] = "partial" + results["errors"].append(msg) + + # Optional Regex Validation + if config.get("regex"): + try: + logger.info("Starting regex validation") + json_str = json.dumps(json_graph.node_link_data(graph)) + results["regex"] = RegexValidator(json_str).run() + logger.info("Regex validation completed") + except Exception as e: + msg = f"Regex validation failed: {str(e)}" + logger.error(msg) + results["status"] = "partial" + results["errors"].append(msg) + + # Trajectory Embedding + if config.get("trajectory_embedding"): + try: + logger.info("Starting trajectory embedding") + embedder = TrajectoryEmbedder( + model_name=TRAJECTORY_EMBEDDING_MODEL, text_path=TEXT_FIELD_PATH + ) + emb = embedder.embed_graph(graph) + results["trajectory_embedding"] = emb.tolist() if emb is not None else None + logger.info("Trajectory embedding completed") + except Exception as e: + msg = f"Embedding failed: {str(e)}" + logger.error(msg) + results["status"] = "partial" + results["errors"].append(msg) + + if results["errors"]: + if results["status"] == "success": + results["status"] = "partial" + else: + results.pop("errors", None) + + return results diff --git a/src/benchmark/modules/visualization_utils.py b/src/benchmark/modules/visualization_utils.py new file mode 100644 index 0000000..b80aff2 --- /dev/null +++ b/src/benchmark/modules/visualization_utils.py @@ -0,0 +1,72 @@ +# This source file is part of the Daneshjou Lab projects +# +# SPDX-FileCopyrightText: 2025 Stanford University and the project authors (see AUTHORS.md) +# +# SPDX-License-Identifier: MIT +# + +""" This module provides functions to visualize and summarize the results of the benchmarking +pipeline. It includes functions to plot BERTScore F1 scores, t-SNE embeddings, and topology +distributions, as well as to create a summary table of key metrics.""" + +import os +import matplotlib.pyplot as plt +import seaborn as sns +import pandas as pd +from sklearn.manifold import TSNE + +PLOTS_DIR = "output/plots" + +os.makedirs(PLOTS_DIR, exist_ok=True) + +def plot_bertscore_f1(graph_ids, bertscore_f1): + """Bar plot of BERTScore F1 for each graph.""" + _, ax = plt.subplots() + sns.barplot(x=graph_ids, y=bertscore_f1, ax=ax) + ax.set_title("BERTScore F1 per Graph") + ax.set_ylabel("F1 Score") + ax.set_ylim(0, 1) + plt.xticks(rotation=45) + plt.tight_layout() + plt.savefig(os.path.join(PLOTS_DIR, "bertscore_f1_barplot.png")) + plt.close() + + +def plot_tsne_embeddings(embeddings, graph_ids): + """2D t-SNE scatterplot for graph embeddings.""" + tsne_results = TSNE(n_components=2, perplexity=2, random_state=42).fit_transform(embeddings) + _, ax = plt.subplots() + sns.scatterplot(x=tsne_results[:, 0], y=tsne_results[:, 1], hue=graph_ids, s=100, ax=ax) + ax.set_title("t-SNE of Trajectory Embeddings") + ax.set_xlabel("Dimension 1") + ax.set_ylabel("Dimension 2") + plt.legend(bbox_to_anchor=(1.05, 1), loc='upper left') + plt.savefig(os.path.join(PLOTS_DIR, "trajectory_tsne.png")) + plt.close() + + +def plot_topology_distributions(node_counts, edge_counts): + """Histograms for node and edge counts across graphs.""" + _, (ax1, ax2) = plt.subplots(1, 2, figsize=(12, 5)) + sns.histplot(node_counts, bins=5, ax=ax1, kde=True) + ax1.set_title("Node Count Distribution") + ax1.set_xlabel("Number of Nodes") + + sns.histplot(edge_counts, bins=5, ax=ax2, kde=True) + ax2.set_title("Edge Count Distribution") + ax2.set_xlabel("Number of Edges") + + plt.tight_layout() + plt.savefig(os.path.join(PLOTS_DIR, "topology_distributions.png")) + plt.close() + + +def summarize_metrics_table(graph_ids, bertscore_f1, node_counts, edge_counts): + """Create and return a summary DataFrame of key metrics per graph.""" + df = pd.DataFrame({ + "Graph ID": graph_ids, + "BERTScore F1": bertscore_f1, + "Nodes": node_counts, + "Edges": edge_counts + }) + return df diff --git a/src/benchmark/output/results/results0.json b/src/benchmark/output/results/results0.json new file mode 100644 index 0000000..37ec246 --- /dev/null +++ b/src/benchmark/output/results/results0.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 37-year-old male with bilateral painless testicular masses. His age and gender are noted in the initial diagnosis (node A).\n\n**Initial Diagnosis (2015-12-01T00:00:00Z):**\nThe patient presented with bilateral macro-orchitis and multifocal hyperechoic lesions on ultrasound, followed by intense contrast enhancement on MRI. The initial presentation was characterized as \"bilateral testicular masses.\" The patient's laboratory results showed normal levels of AFP, b-hCG, and LDH.\n\n**Surgical Intervention (2015-12-01T00:00:00Z):**\nThe patient underwent testis-sparing surgery, which revealed a benign large-cell calcifying Sertoli cell tumor. The histological diagnosis confirmed the presence of a benign tumor with no atypia.\n\n**Metastatic Disease (2021-06-01T00:00:00Z):**\nApproximately 6 years after the initial diagnosis, the patient's condition worsened, and lymph node metastases were detected. A bilateral radical orchiectomy and lymphadenectomy were performed to manage the disease. The histological examination revealed malignant LCCSCT with vascular permeation and spermatic cord invasion.\n\n**Progression to Terminal Stage (2021-11-01T00:00:00Z):**\nDespite chemotherapy, the patient's disease progressed further, with the development of pleural metastases, pulmonary nodules, and spine lesions. The patient received multiple rounds of chemotherapy, including vinblastine, cisplatin, ifosfamide, and paclitaxel.\n\n**Clinical Trial (2022-12-01T00:00:00Z):**\nIn an attempt to manage the disease, a clinical trial was initiated with axitinib and pazopanib. However, this treatment approach proved ineffective.\n\n**Terminal Stage (2023-07-01T00:00:00Z):**\nThe patient's condition continued to deteriorate, and he progressed to a terminal stage. The patient received palliative care, and unfortunately, passed away.\n\nIn summary, the patient presented with bilateral testicular masses in 2015 and underwent successful surgical intervention. However, the disease eventually progressed to metastatic disease, which was managed with chemotherapy and clinical trials. Despite these efforts, the patient's condition continued to worsen, ultimately leading to a terminal stage and death.", + "bertscore": { + "precision": [ + 0.31829699873924255 + ], + "recall": [ + 0.5213518738746643 + ], + "f1": [ + 0.39527177810668945 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 6, + "edge_count": 5, + "avg_in_degree": 0.8333333333333334, + "density": 0.16666666666666666 + }, + "trajectory_embedding": [ + 0.20442374050617218, + 0.08089178055524826, + -0.024914061650633812, + -0.03979193791747093, + 0.0259078536182642, + 0.2874663174152374, + 0.0590699277818203, + 0.1804632693529129, + 0.678746223449707, + -0.3412137031555176, + 0.09028627723455429, + -0.126709446310997, + -0.49773454666137695, + -0.3380317687988281, + -0.11197445541620255, + 0.31535783410072327, + -0.4333740174770355, + 0.27163252234458923, + -0.03901287913322449, + -0.3344475328922272, + -0.3614410161972046, + 0.15794190764427185, + -0.40008389949798584, + -0.09342339634895325, + 0.15163923799991608, + 0.1269751638174057, + 0.34867849946022034, + 0.474468469619751, + 0.09587431699037552, + 0.4105415642261505, + 0.24164967238903046, + -0.2722645699977875, + 0.1767723709344864, + 0.20043961703777313, + -0.349172979593277, + 0.31538304686546326, + 0.07168328016996384, + 0.3614099323749542, + -0.18212544918060303, + -0.06916672736406326, + -0.07248474657535553, + 0.18056458234786987, + 0.7411791682243347, + -0.010471589863300323, + 0.1291963756084442, + -0.8289646506309509, + 0.059095416218042374, + 0.5390471816062927, + -0.23015408217906952, + -0.31452128291130066, + 0.054593369364738464, + 0.6961681842803955, + 0.6970283389091492, + -0.42003878951072693, + 0.4121139347553253, + -0.15301884710788727, + -0.36452552676200867, + -0.36051496863365173, + -0.0654277428984642, + -0.05527949333190918, + 0.24910396337509155, + -0.6438493728637695, + 0.5278618931770325, + -0.26405051350593567, + -0.10189243406057358, + -0.040433019399642944, + -0.29900914430618286, + 0.2873968183994293, + 0.09586111456155777, + -0.5401602983474731, + -0.109682597219944, + -0.19462478160858154, + -0.0010297248372808099, + 0.08559533953666687, + -0.11486145108938217, + -0.1683729737997055, + 0.2629479169845581, + 0.04779095575213432, + 0.389974445104599, + 0.14829404652118683, + -0.08384224772453308, + -0.19264249503612518, + -0.02557353861629963, + 0.2281181365251541, + -0.1019250750541687, + 0.015150371007621288, + -0.25873175263404846, + -0.2519265413284302, + -0.29840701818466187, + -0.07924599200487137, + -0.006147474050521851, + -0.4016859233379364, + -0.001222863793373108, + -0.10164552181959152, + -0.07859454303979874, + 0.28600582480430603, + 0.492910772562027, + 0.18335838615894318, + 0.9476156830787659, + -0.0032466675620526075, + 0.12020450085401535, + -0.18071883916854858, + 0.3242885172367096, + 0.06204262003302574, + 0.22100204229354858, + -0.20610396564006805, + 0.14569181203842163, + -0.5818048119544983, + 0.47181859612464905, + 0.6001319885253906, + 0.39384639263153076, + -0.01024016086012125, + -0.09766912460327148, + -0.18450778722763062, + 0.2982499897480011, + 0.025360390543937683, + -0.07226558774709702, + 0.27440252900123596, + 0.2713673412799835, + -0.5630276799201965, + -0.14629660546779633, + -0.10291727632284164, + 0.02482043206691742, + 0.22885918617248535, + -0.3711835443973541, + 0.09008225798606873, + -0.01950092427432537, + -0.08462309837341309, + 0.24789567291736603, + -0.14811517298221588, + -0.7045021057128906, + -0.2230713963508606, + -0.03830065578222275, + -0.040898170322179794, + 0.28616905212402344, + 0.4331987798213959, + -0.24983854591846466, + 0.06619643419981003, + -1.030485987663269, + -0.07637278735637665, + -0.4151497185230255, + 0.04744786024093628, + -0.12170374393463135, + -0.44626930356025696, + -0.20722514390945435, + -0.04557810351252556, + -0.03684103116393089, + 0.4947117269039154, + -0.30923527479171753, + 0.13861866295337677, + 0.026733389124274254, + 0.10155167430639267, + 0.056125763803720474, + 0.7142745852470398, + -0.11216775327920914, + -0.27275267243385315, + -0.1866089105606079, + 0.24917101860046387, + 0.1163114681839943, + -0.161648690700531, + 0.2570304870605469, + 0.5556506514549255, + 0.09257175773382187, + 0.036579232662916183, + -0.2399251013994217, + -0.5222260355949402, + -0.22532807290554047, + -0.040394458919763565, + -0.1616133451461792, + -0.03528749197721481, + -0.25962188839912415, + 0.1375253051519394, + -0.4845661222934723, + 0.8635237216949463, + 0.1385183185338974, + 0.09313105791807175, + -0.019964871928095818, + 0.23981428146362305, + 0.050961241126060486, + 0.020314311608672142, + 0.23118406534194946, + -0.08730587363243103, + 0.513599693775177, + -0.03431873396039009, + -0.2797459065914154, + -0.013971713371574879, + 0.2208833545446396, + 0.306857705116272, + -0.41252854466438293, + 0.03820085898041725, + 0.4507302939891815, + -0.442353755235672, + 0.6422566771507263, + -0.2127496600151062, + -0.15735387802124023, + 0.17179358005523682, + -0.0825379490852356, + -0.07669449597597122, + -0.13035765290260315, + -0.07372880727052689, + 0.21059860289096832, + -0.24665816128253937, + -0.3929661810398102, + 0.010075333528220654, + 0.1906191110610962, + -0.06770581752061844, + 0.2887749969959259, + -0.28219690918922424, + 0.15957190096378326, + -0.08518349379301071, + -0.22382308542728424, + 0.31420573592185974, + -0.19127027690410614, + 0.31449320912361145, + 0.15269584953784943, + -0.5540654063224792, + -0.1556224375963211, + -0.057121068239212036, + 0.010500448755919933, + 0.052579764276742935, + 0.15062947571277618, + -0.264585018157959, + -0.2926781177520752, + 0.062386613339185715, + -0.41211840510368347, + 0.2753070890903473, + 0.20111097395420074, + 0.25078117847442627, + 0.24322609603405, + -0.17981739342212677, + -0.14524053037166595, + -0.1401740312576294, + 0.31826451420783997, + -0.27812591195106506, + -0.3369868993759155, + -0.2531004846096039, + 0.36144086718559265, + 0.0024286184925585985, + 0.27338576316833496, + 0.45138001441955566, + -0.281975120306015, + 0.03765731304883957, + 0.07389054447412491, + -0.09623698145151138, + -0.22130602598190308, + -0.3670954704284668, + -0.09485115855932236, + 0.2990216314792633, + 0.026946350932121277, + 0.265747994184494, + 0.05678742006421089, + 0.17384123802185059, + 0.06721819192171097, + -0.17845652997493744, + -0.2528524100780487, + -0.22013230621814728, + -0.17281155288219452, + -0.2599353492259979, + -0.7025058269500732, + 0.0714215338230133, + -0.06310737133026123, + -0.06323951482772827, + 0.2969453036785126, + -0.12410461157560349, + -0.18366320431232452, + 0.05466623231768608, + 0.12993063032627106, + 0.025382990017533302, + -0.6100733280181885, + 0.06396869570016861, + -0.4163954555988312, + -0.18978522717952728, + -0.3872186839580536, + -0.07440536469221115, + 0.23785074055194855, + -0.18172775208950043, + -0.33920228481292725, + -0.08942780643701553, + -0.08124495297670364, + -0.47597089409828186, + 0.025938361883163452, + 0.17386245727539062, + 0.03170892596244812, + 0.3117237985134125, + 0.12817873060703278, + 0.27913370728492737, + 0.47200748324394226, + 0.1190471425652504, + -0.09122348576784134, + 0.31710195541381836, + 0.45664703845977783, + -0.27549779415130615, + -0.07325927168130875, + 0.056460440158843994, + -0.10286565870046616, + 0.1387558877468109, + -0.4987529218196869, + 0.46504613757133484, + 0.07455617934465408, + 0.17197246849536896, + 0.06559544056653976, + 0.11455180495977402, + 0.06486790627241135, + 0.18258057534694672, + 0.18977797031402588, + 0.5495983958244324, + 0.31261441111564636, + 0.43697771430015564, + 0.38513728976249695, + -0.032340001314878464, + 0.1952948123216629, + -0.4176863431930542, + -0.043678730726242065, + 0.2806291878223419, + -0.3567790985107422, + -0.2910067141056061, + 0.15786625444889069, + 0.3394787311553955, + 0.6696169972419739, + -0.10941547155380249, + -0.16651298105716705, + -0.11744455248117447, + -0.194100022315979, + -0.04769696667790413, + -0.41274285316467285, + -0.08658424019813538, + 0.11661291122436523, + -0.3345325291156769, + 0.12499501556158066, + 0.2600155770778656, + 0.10507678985595703, + 0.3292047381401062, + -0.6036863923072815, + -0.11750473827123642, + -0.06283209472894669, + 0.12880130112171173, + -0.31951025128364563, + 0.3199805021286011, + -0.02281859517097473, + 0.09923842549324036, + 0.31612005829811096, + -0.2645803987979889, + -0.15765611827373505, + 0.18021585047245026, + 0.4059627056121826, + 0.04057658091187477, + 0.14133328199386597, + -0.01626056432723999, + 0.25342658162117004, + 0.17610299587249756, + 0.3074936866760254, + -0.041735608130693436, + 0.06390998512506485, + 0.6465148329734802, + 0.4248292148113251, + -0.09025168418884277, + 0.13894228637218475, + -0.26735299825668335, + 0.3329155147075653, + 0.06438487023115158, + -0.03854351118206978, + -0.29759514331817627, + 0.31330907344818115, + 0.07715282589197159, + -0.5309041142463684, + 0.11964502930641174, + -0.23468971252441406, + 0.07894671708345413, + -0.01906866766512394, + 0.31545618176460266, + -0.1441272348165512, + -0.14190785586833954, + 0.5266292095184326, + 0.1487427055835724, + -0.2870776355266571, + 0.4335128366947174, + -0.13985931873321533, + 0.013895292766392231, + 0.23653049767017365, + -0.13995863497257233, + -0.21462558209896088, + 0.07988906651735306, + -0.17457573115825653, + -0.13455484807491302, + 0.11081705242395401, + -0.258798748254776, + 0.1473519206047058, + -0.17583082616329193, + 0.07551505416631699, + -0.15257097780704498, + 0.012804225087165833, + 0.1767113208770752, + 0.1399892419576645, + -0.12422206252813339, + 0.00517214834690094, + 0.37744060158729553, + 0.08099569380283356, + -0.06752260774374008, + -0.12810416519641876, + -0.11574176698923111, + -0.14598782360553741, + 0.8153969645500183, + -0.1641237437725067, + 0.19980257749557495, + 0.20777319371700287, + 0.06973104178905487, + -0.15880000591278076, + -0.05659942328929901, + -0.14159205555915833, + -0.33938705921173096, + -0.042513441294431686, + 0.08378749340772629, + -0.08477439731359482, + -0.04545411840081215, + 0.016351742669939995, + -0.29107388854026794, + -0.15137459337711334, + 0.061258163303136826, + 0.1948706954717636, + 0.08484777808189392, + 0.19777558743953705, + -0.05295028164982796, + 0.2905191481113434, + -0.3510831594467163, + 0.36088135838508606, + -0.14518223702907562, + -0.3594844341278076, + -0.13102492690086365, + 0.011419855058193207, + -0.35985419154167175, + -0.23915551602840424, + 0.26550137996673584, + 0.6429714560508728, + -0.1335502415895462, + 0.10924156755208969, + 0.045069772750139236, + 0.26755353808403015, + -0.2522292733192444, + -0.1338474303483963, + 0.19520878791809082, + -0.07772356271743774, + -0.0002337259502382949, + 0.4255053997039795, + -0.47271108627319336, + -0.31469812989234924, + -0.08962134271860123, + -0.15753382444381714, + 0.06305752694606781, + 0.34980300068855286, + 0.2504805028438568, + -0.10941211134195328, + 0.09311971813440323, + -0.05726904049515724, + -0.38367727398872375, + 0.3998134434223175, + 0.03060104511678219, + 0.26177462935447693, + 0.049489010125398636, + -0.21547801792621613, + 0.0007025425438769162, + -0.15042759478092194, + -0.075762540102005, + -0.22285465896129608, + 0.0609593503177166, + 0.10121706128120422, + -0.3692239224910736, + -0.0036340057849884033, + 0.053127627819776535, + -0.17878548800945282, + -0.1505195051431656, + 0.0022300381679087877, + -0.31097155809402466, + 0.37254276871681213, + -0.26977652311325073, + -0.2893538773059845, + -0.1869743913412094, + 0.10384276509284973, + -0.0066217705607414246, + 0.20043639838695526, + 0.1976640820503235, + 0.3107997477054596, + -0.13332371413707733, + -0.16373459994792938, + 0.2568660080432892, + 0.15025411546230316, + 0.197218656539917, + 0.3476908206939697, + -0.010972265154123306, + 0.25109168887138367, + -0.45744553208351135, + -0.02307882159948349, + 0.05358264967799187, + -0.3000401556491852, + -0.09025876969099045, + 0.09431272000074387, + 0.2842918634414673, + -0.3428647220134735, + -0.3975031077861786, + 0.028261594474315643, + 0.14353692531585693, + 0.03926679491996765, + -0.04868514463305473, + -0.3997194766998291, + -0.22706849873065948, + -0.35658037662506104, + 0.04028715193271637, + 0.12932895123958588, + 0.5797610878944397, + 0.2391233891248703, + 0.06366138905286789, + -0.23411007225513458, + -0.20555251836776733, + 0.587850034236908, + 0.24481886625289917, + -0.1117638349533081, + -0.07478641718626022, + -0.12666688859462738, + 0.4041016399860382, + 0.11820026487112045, + 0.249542698264122, + 0.40077295899391174, + 0.06939952820539474, + 0.048493627458810806, + 0.35694122314453125, + 0.21087317168712616, + -0.22558926045894623, + -0.2638273537158966, + -0.40822064876556396, + 0.15038444101810455, + -0.2934233844280243, + -0.045567888766527176, + 0.12796859443187714, + -0.17259246110916138, + -0.37771961092948914, + -0.16159702837467194, + 0.29054850339889526, + 0.02436186373233795, + -0.0934571623802185, + 0.2831261157989502, + 0.3254911005496979, + -0.06383242458105087, + -0.21768325567245483, + 0.14296211302280426, + -0.5549681782722473, + -0.41319403052330017, + 0.20177851617336273, + 0.016039814800024033, + -0.043260425329208374, + 0.26658523082733154, + 0.6571025848388672, + 0.6633474230766296, + 0.25248581171035767, + -0.235142782330513, + 0.10582201927900314, + 0.340976744890213, + 0.17042815685272217, + -0.4130624830722809, + -10.674025535583496, + -0.24450047314167023, + -0.23592780530452728, + 0.268765926361084, + -0.23199544847011566, + 0.08681869506835938, + 0.14274130761623383, + -0.10099240392446518, + -0.03011748380959034, + 0.08033014088869095, + -0.2593468725681305, + -0.2819158136844635, + -0.035240452736616135, + 0.3012666404247284, + 0.050404444336891174, + 0.1545461267232895, + -0.19111932814121246, + 0.4053099453449249, + 0.09424959868192673, + 0.3285026550292969, + -0.024827731773257256, + 0.19678927958011627, + -0.3536005914211273, + 0.0763065367937088, + 0.061481792479753494, + -0.3408081531524658, + -0.3378561735153198, + 0.7466359734535217, + -0.005717508494853973, + -0.38134169578552246, + -0.08551657944917679, + -0.0683024451136589, + -0.15280789136886597, + 0.06375228613615036, + -0.3037630021572113, + -0.13647811114788055, + -0.0266859233379364, + 0.06034569442272186, + 0.5160265564918518, + -0.47986719012260437, + -0.02238769270479679, + 0.1489449292421341, + 0.1809944063425064, + 0.05710695683956146, + -0.2790587246417999, + -0.7669485211372375, + -0.11501645296812057, + -1.411354422569275, + 0.585444986820221, + 0.2620120346546173, + 0.3194330334663391, + 0.1262269914150238, + -0.01801338791847229, + 0.2550829350948334, + -0.12767840921878815, + -0.13656054437160492, + -0.3564131259918213, + -0.12750178575515747, + -0.18310421705245972, + -0.053295817226171494, + 0.04411540552973747, + -0.04119225963950157, + 0.5221747756004333, + 0.0005644261837005615, + -0.18118387460708618, + -0.10129037499427795, + 0.04163685441017151, + 0.058614473789930344, + -0.2605554759502411, + -0.718937873840332, + -0.48354315757751465, + 0.21631215512752533, + -0.35268187522888184, + 0.17116187512874603, + 0.11030134558677673, + 0.008241857402026653, + -0.1520373672246933, + 0.20654447376728058, + 0.0482790581882, + 0.21012282371520996, + -0.04971129074692726, + 0.11045286059379578, + 0.0777326300740242, + -0.24795937538146973, + -0.15921728312969208, + -0.2893569767475128, + 0.2275431901216507, + 0.28717854619026184, + -0.2086060792207718, + -0.24932168424129486, + 0.18655942380428314, + 0.2555652856826782, + 0.3342244327068329, + -0.34047719836235046, + -0.5642435550689697, + 0.1382157951593399, + -0.252538800239563, + 0.03309006243944168, + -0.13747446238994598, + -0.04771973565220833, + 0.09583369642496109, + 0.2952382266521454, + -0.17984481155872345, + -0.6426671743392944, + -0.26260823011398315, + 0.5183001160621643, + 0.22731536626815796, + 0.255732923746109, + 0.0013560553779825568, + -0.1531514972448349, + -0.27773141860961914, + 0.04885510727763176, + -0.04389199987053871, + 0.4798929691314697, + 0.3129431903362274, + 0.024910667911171913, + 0.22155295312404633, + -0.3886122405529022, + -0.16519556939601898, + -0.03702693060040474, + 0.34475430846214294, + 0.0524502694606781, + 0.46379831433296204, + 0.4451543092727661, + 0.036897070705890656, + 0.06557069718837738, + 0.9941225051879883, + -0.45061203837394714, + 0.21429826319217682, + 0.11058112233877182, + 0.2789148986339569, + -0.16610831022262573, + -0.2879844009876251, + 0.1097126230597496, + 0.7194162011146545, + -0.14120225608348846, + 0.7019554972648621, + 0.19405339658260345, + -0.23214830458164215, + -0.2929423153400421, + 0.03499392792582512, + 0.48734259605407715, + 0.12076226621866226, + 0.201236292719841, + -0.01069361437112093, + -0.2860238552093506, + -0.2892777919769287, + 0.32682886719703674, + -0.00710691511631012, + -0.32345500588417053, + 0.032875798642635345, + 0.25904783606529236, + 0.12555237114429474, + -0.443882018327713, + 0.18882332742214203, + 0.23089170455932617, + 0.028047800064086914, + -0.1542922705411911, + -0.19963936507701874, + 0.30320820212364197, + 0.013550229370594025, + 0.6956192851066589, + -0.13288582861423492, + -0.13263867795467377, + -0.06587625294923782, + 0.1875097006559372, + -0.2793971002101898, + 0.30387768149375916, + 0.028455564752221107, + -0.09069880098104477, + -0.29148873686790466, + 0.22844986617565155, + 0.22054541110992432, + -0.18830879032611847, + -0.09546583890914917, + -0.09512665867805481, + -0.08780994266271591, + 0.13998959958553314, + -0.2909194231033325, + -0.012063215486705303, + 0.37694287300109863, + -0.1329435408115387, + 0.13281066715717316, + -0.1121896430850029, + -0.06837273389101028, + 0.1502699851989746, + 0.40753647685050964, + -0.16189654171466827, + -0.1917295604944229, + -0.27508261799812317, + -0.7846705317497253, + 0.1963399201631546, + -0.47747305035591125, + -0.05218793824315071, + 0.33623743057250977, + -0.0352487787604332, + 0.1448521614074707, + 0.10657789558172226, + 0.09977150708436966, + -0.26386985182762146, + -0.05435522273182869, + 0.11682019382715225, + 0.31883057951927185, + -0.09708402305841446, + 0.4483414590358734, + -0.20103073120117188, + 0.16120944917201996, + 0.21762911975383759, + -0.17491722106933594, + 0.13248760998249054, + -0.5252750515937805 + ] +} \ No newline at end of file diff --git a/src/benchmark/requirements.txt b/src/benchmark/requirements.txt new file mode 100644 index 0000000..33756e4 --- /dev/null +++ b/src/benchmark/requirements.txt @@ -0,0 +1,7 @@ +networkx +torch +transformers +bert_score +dspy +pandas +sklearn \ No newline at end of file diff --git a/src/benchmark/requirements.txt.license b/src/benchmark/requirements.txt.license new file mode 100644 index 0000000..f1e5619 --- /dev/null +++ b/src/benchmark/requirements.txt.license @@ -0,0 +1,5 @@ +This source file is part of the Daneshjou Lab projects + +SPDX-FileCopyrightText: 2024 Stanford University and the project authors (see AUTHORS.md) + +SPDX-License-Identifier: MIT \ No newline at end of file diff --git a/src/benchmark/setup_env.sh b/src/benchmark/setup_env.sh new file mode 100755 index 0000000..095f3c2 --- /dev/null +++ b/src/benchmark/setup_env.sh @@ -0,0 +1,22 @@ +#!/bin/bash + +# Exit immediately if a command fails +set -e + +echo "Creating virtual environment with Python 3.11..." +/opt/homebrew/bin/python3.11 -m venv .venv + +source .venv/bin/activate + +echo "Upgrading pip..." +pip install --upgrade pip + +if [ -f "requirements.txt" ]; then + echo "Installing dependencies from requirements.txt..." + pip install -r requirements.txt +else + echo "No requirements.txt found. Skipping dependency installation." +fi + +echo "Running main..." +python3 main.py \ No newline at end of file From b792b8ece0b35978921639e2637043d69e4bfe95 Mon Sep 17 00:00:00 2001 From: Vicky Bikia Date: Fri, 9 May 2025 19:33:32 -0700 Subject: [PATCH 02/11] Update --- src/benchmark/batch_run.py | 82 +- src/benchmark/generate_visuals.py | 6 +- src/benchmark/main.py | 7 +- src/benchmark/modules/embedding.py | 50 +- src/benchmark/modules/io_utils.py | 92 +- src/benchmark/modules/run_benchmark.py | 4 +- .../output/plots/bertscore_f1_barplot.png | Bin 0 -> 16630 bytes .../output/plots/topology_distributions.png | Bin 0 -> 32789 bytes .../output/plots/trajectory_tsne.png | Bin 0 -> 19219 bytes src/benchmark/output/results/graph_013.json | 795 ++++++++++++++++++ src/benchmark/output/results/graph_029.json | 795 ++++++++++++++++++ src/benchmark/output/results/graph_044.json | 795 ++++++++++++++++++ src/benchmark/output/results/graph_068.json | 795 ++++++++++++++++++ src/benchmark/output/results/graph_087.json | 795 ++++++++++++++++++ src/benchmark/requirements.txt | 6 +- src/benchmark/setup_env.sh | 7 +- .../graphs/{ => mapping}/graph_metadata.csv | 0 .../graphs/{ => mapping}/graph_metadata.json | 0 .../{ => mapping}/graph_metadata_true.json | 0 19 files changed, 4161 insertions(+), 68 deletions(-) create mode 100644 src/benchmark/output/plots/bertscore_f1_barplot.png create mode 100644 src/benchmark/output/plots/topology_distributions.png create mode 100644 src/benchmark/output/plots/trajectory_tsne.png create mode 100644 src/benchmark/output/results/graph_013.json create mode 100644 src/benchmark/output/results/graph_029.json create mode 100644 src/benchmark/output/results/graph_044.json create mode 100644 src/benchmark/output/results/graph_068.json create mode 100644 src/benchmark/output/results/graph_087.json rename webapp/static/graphs/{ => mapping}/graph_metadata.csv (100%) rename webapp/static/graphs/{ => mapping}/graph_metadata.json (100%) rename webapp/static/graphs/{ => mapping}/graph_metadata_true.json (100%) diff --git a/src/benchmark/batch_run.py b/src/benchmark/batch_run.py index 16c4b3c..fc18995 100644 --- a/src/benchmark/batch_run.py +++ b/src/benchmark/batch_run.py @@ -11,13 +11,16 @@ and trajectory representation. """ +import sys from pathlib import Path -import os +sys.path.append(str(Path(__file__).resolve().parents[1])) # Adds 'src' to sys.path # Local application imports from benchmark.modules.io_utils import ( load_graph_from_file, save_results, + build_graph_to_text_mapping, + extract_original_text_from_html ) from benchmark.modules.run_benchmark import run_pipeline from benchmark.modules.logging_utils import setup_logger @@ -27,37 +30,68 @@ # Replace this with your actual text used as reference ORIGINAL_TEXT = ( - "A patient presents with chest pain. ECG was abnormal. " - "Treated and sent to cath lab." + "Starry starry night, " + "Paint your palette blue and grey, " + "Look out on a summer's day, " + "With eyes that know the darkness in my soul. " + "Shadows on the hills, " + "Sketch the trees and daffodils, " + "Catch the breeze and winter chills, " + "In colors on the snowy linen land. " + "Now I understand, " + "What you tried to say to me, " + "And how you suffered for your sanity, " + "And how you tried to set them free. " + "They would not listen, they did not know how, " + "Perhaps they'll listen now. " ) -GRAPH_INPUT_DIR = "samples/json_output/am_journal_case_reports_2024" -RESULTS_OUTPUT_DIR = "output/graphs" +# Input directory: All graph files +GRAPH_INPUT_DIR = Path(__file__).resolve().parents[2] / "webapp/static/graphs" -os.makedirs(RESULTS_OUTPUT_DIR, exist_ok=True) +# Output directory: Results +RESULTS_OUTPUT_DIR = Path("output/results") +RESULTS_OUTPUT_DIR.mkdir(parents=True, exist_ok=True) + +# Paths +metadata_csv = "webapp/static/graphs/mapping/graph_metadata.csv" +html_root_dir = "webapp/static/pmhc_html" + +# graph_to_html = build_graph_to_text_mapping(metadata_csv, html_root_dir) if __name__ == "__main__": - input_dir = Path(GRAPH_INPUT_DIR) + graph_files = list(GRAPH_INPUT_DIR.glob("*.json")) + + if not graph_files: + logger.warning("No JSON files found in input directory.") + else: + for fpath in graph_files[:5]: # Limit to first 5 files for demonstration + graph_id = fpath.stem + # html_path = graph_to_html.get(graph_id) - for fpath in input_dir.glob("*.json"): - graph_id = fpath.stem - logger.info(f"Running pipeline on: {fpath.name}") + # if not html_path: + # logger.warning(f"No HTML path found for {graph_id}") + # continue + + # reference_case_text = extract_original_text_from_html(html_path) + reference_case_text = ORIGINAL_TEXT - graph, ok = load_graph_from_file(fpath) - if not ok: - logger.error(f"Skipping {fpath.name} due to load error.") - continue + logger.info(f"Running pipeline on: {fpath.name}") - cfg = { - "reconstruct_params": {"include_nodes": True, "include_edges": True}, - "bertscore": True, - "topology": True, - "trajectory_embedding": True, - } + graph, ok = load_graph_from_file(fpath) + if not ok: + logger.error(f"Skipping {fpath.name} due to load error.") + continue - results = run_pipeline(graph, ORIGINAL_TEXT, cfg) + cfg = { + "reconstruct_params": {"include_nodes": True, "include_edges": True}, + "bertscore": True, + "topology": True, + "trajectory_embedding": True, + } - output_file = Path(RESULTS_OUTPUT_DIR) / f"{graph_id}.json" - save_results(results, output_file) + results = run_pipeline(graph, reference_case_text, cfg) + output_path = RESULTS_OUTPUT_DIR / f"{graph_id}.json" + save_results(results, output_path) - logger.info("Batch benchmarking completed.") + logger.info("Batch benchmarking completed.") \ No newline at end of file diff --git a/src/benchmark/generate_visuals.py b/src/benchmark/generate_visuals.py index 074b3ef..cc1c00e 100644 --- a/src/benchmark/generate_visuals.py +++ b/src/benchmark/generate_visuals.py @@ -11,6 +11,10 @@ import json import numpy as np +import sys +from pathlib import Path +sys.path.append(str(Path(__file__).resolve().parents[1])) # Adds 'src' to sys.path + from benchmark.modules.visualization_utils import ( plot_bertscore_f1, plot_tsne_embeddings, @@ -18,7 +22,7 @@ summarize_metrics_table ) -RESULTS_DIR = "output/" +RESULTS_DIR = "output/results" # Lists to collect metrics graph_ids = [] diff --git a/src/benchmark/main.py b/src/benchmark/main.py index c4e7087..76acf22 100644 --- a/src/benchmark/main.py +++ b/src/benchmark/main.py @@ -27,13 +27,12 @@ logger = setup_logger(__name__) ORIGINAL_TEXT = ( - "A patient presents with chest pain. ECG was abnormal." - "Treated and sent to cath lab." + "A patient" ) if __name__ == "__main__": - current_graph_path = "/Users/bikia/Documents/Code/DynamicData/samples/json_output/am_journal_case_reports_2024" + current_graph_path = "/Users/bikia/Documents/Code/DynamicData/webapp/static/graphs/graph_001.json" graph, ok = load_graph_from_file(current_graph_path) if ok: @@ -45,4 +44,4 @@ } results = run_pipeline(graph, ORIGINAL_TEXT, cfg) # data_display(results) - save_results(results, "output/results/results0.json") + save_results(results, "output/results/results_001.json") diff --git a/src/benchmark/modules/embedding.py b/src/benchmark/modules/embedding.py index 3347dc2..50c876f 100644 --- a/src/benchmark/modules/embedding.py +++ b/src/benchmark/modules/embedding.py @@ -35,12 +35,7 @@ class TrajectoryEmbedder: device (str): Computation device ('cuda' or 'cpu'). """ - def __init__( - self, - model_name=TRAJECTORY_EMBEDDING_MODEL, - text_path=None, - device=None, - ): + def __init__(self, model=TRAJECTORY_EMBEDDING_MODEL, text_field_path="content", device=None): """ Initializes the TrajectoryEmbedder with a specified model and text path. Args: @@ -49,15 +44,28 @@ def __init__( attributes (e.g., ["data", "commentary"]). device (str): Computation device ('cuda' or 'cpu'). """ - self.model_name = model_name - self.text_path = text_path or ["content"] # Default to flat structure self.device = device or ("cuda" if torch.cuda.is_available() else "cpu") - self.text_path = text_path - logger.info("Loading embedding model: %s on %s", model_name, self.device) - self.tokenizer = AutoTokenizer.from_pretrained(model_name) - self.model = AutoModel.from_pretrained(model_name).to(self.device) + self.text_field = text_field_path + logger.info(f"Loading embedding model: {model} on {self.device}") + self.tokenizer = AutoTokenizer.from_pretrained(model) + self.model = AutoModel.from_pretrained(model).to(self.device) self.model.eval() + def _get_nested_text(self, data: dict) -> Optional[str]: + """Extracts text from a nested dictionary based on the specified path. + Args: + data (dict): Node attributes. + Returns: + Optional[str]: Extracted text or None if not found. + """ + try: + keys = self.text_field.split(".") + for k in keys: + data = data[k] + return data if isinstance(data, str) else None + except Exception: + return None + def embed_text(self, text: str) -> torch.Tensor: """"Embeds a single text string using the transformer model. Args: @@ -65,9 +73,7 @@ def embed_text(self, text: str) -> torch.Tensor: Returns: torch.Tensor: The embedding of the text. """ - inputs = self.tokenizer( - text, return_tensors="pt", truncation=True, padding=True - ).to(self.device) + inputs = self.tokenizer(text, return_tensors="pt", truncation=True, padding=True).to(self.device) with torch.no_grad(): outputs = self.model(**inputs) return outputs.last_hidden_state[0][0] @@ -93,15 +99,13 @@ def embed_graph(self, graph: nx.DiGraph) -> Optional[torch.Tensor]: Returns: Optional[torch.Tensor]: The pooled embedding of the graph. """ - texts = [] - for _, data in graph.nodes(data=True): - t = self.extract_text(data) - if t: - texts.append(t) - + texts = [ + self._get_nested_text(data) + for _, data in graph.nodes(data=True) + if self._get_nested_text(data) + ] if not texts: logger.warning("No valid node texts found for embedding.") return None - node_embs = torch.stack([self.embed_text(t) for t in texts]) - return node_embs.mean(dim=0).cpu() + return node_embs.mean(dim=0).cpu() \ No newline at end of file diff --git a/src/benchmark/modules/io_utils.py b/src/benchmark/modules/io_utils.py index 0d99b36..cf6e7ba 100644 --- a/src/benchmark/modules/io_utils.py +++ b/src/benchmark/modules/io_utils.py @@ -9,6 +9,8 @@ """This modules containes I/O utilities for loading and saving data.""" +# Standard library imports +import csv import json import os from typing import Any @@ -33,7 +35,8 @@ def load_graph_from_file(path: str) -> tuple[nx.DiGraph, bool]: with open(path, encoding=UTF_8) as f: data = json.load(f) converted_data = convert_to_node_link_format(data) - return json_graph.node_link_graph(converted_data, directed=True), True + normalized_data = normalize_graph_for_networkx(converted_data) + return json_graph.node_link_graph(normalized_data, directed=True), True except Exception as e: logger.error("Error loading graph: %s", e) return nx.DiGraph(), False @@ -115,14 +118,11 @@ def data_display(results: dict[str, Any]) -> None: def convert_to_node_link_format(original_json: dict) -> dict: """ - Convert a custom-formatted graph JSON with 'node_id' and 'edges' - into NetworkX node-link format with 'id' and 'links'. - + Convert a JSON object to the node-link format used by networkx. Args: - original_json (dict): Your original graph dictionary. - + original_json (dict): The original JSON object. Returns: - dict: A transformed JSON compatible with networkx.node_link_graph(). + dict: The converted JSON object in node-link format. """ converted = { "directed": True, @@ -133,17 +133,49 @@ def convert_to_node_link_format(original_json: dict) -> dict: for node in original_json.get("nodes", []): new_node = dict(node) # copy - new_node["id"] = new_node.pop("node_id", None) + new_node["id"] = ( + new_node.get("node_id") + or new_node.get("id") + or new_node.get("customData", {}).get("node_id") + ) converted["nodes"].append(new_node) for edge in original_json.get("edges", []): new_edge = dict(edge) # copy - new_edge["source"] = new_edge.pop("from_node", None) - new_edge["target"] = new_edge.pop("to_node", None) + new_edge["source"] = new_edge.pop("from", None) + new_edge["target"] = new_edge.pop("to", None) converted["links"].append(new_edge) return converted + +def normalize_graph_for_networkx(raw_graph: dict) -> dict: + """ + Normalize the graph for use with networkx. + Args: + raw_graph (dict): The raw graph data. + Returns: + dict: The normalized graph data. + """ + for node in raw_graph["nodes"]: + # Promote content and timestamp from customData + if "customData" in node: + custom = node["customData"] + if "content" in custom: + node["content"] = custom["content"] + if "timestamp" in custom: + node["timestamp"] = custom["timestamp"] + node.update(custom) + del node["customData"] + + for edge in raw_graph["links"]: + if "from" in edge: + edge["source"] = edge.pop("from") + if "to" in edge: + edge["target"] = edge.pop("to") + + return raw_graph + def save_embedding_vector(vec: list[float], out_path: str, metadata: dict = None): """ Save an embedding vector to a JSON file, appending it to the file if it already exists. @@ -158,3 +190,43 @@ def save_embedding_vector(vec: list[float], out_path: str, metadata: dict = None with open(out_path, "a", encoding=UTF_8) as f: json.dump(row, f) f.write("\n") + +def build_graph_to_text_mapping(metadata_csv_path: str, html_root_dir: str) -> dict[str, str]: + """ + Build a mapping from graph ID (e.g., 'graph_006') to full HTML file path. + + Args: + metadata_csv_path (str): Path to the graph_metadata.csv file. + html_root_dir (str): Base path for the HTML files. + + Returns: + dict: Mapping from graph ID to corresponding HTML file path. + """ + graph_to_html = {} + + with open(metadata_csv_path, newline='', encoding='utf-8') as csvfile: + reader = csv.reader(csvfile) + for row in reader: + graph_id = row[0].strip() + html_rel_path = row[2].strip().replace("./pmc_htmls", html_root_dir) + graph_to_html[graph_id] = html_rel_path + + return graph_to_html + +def extract_original_text_from_html(html_path: str) -> str: + """ + Placeholder function to extract original case report text from HTML. + + Args: + html_path (str): Path to the HTML file. + + Returns: + str: Raw text extracted (currently placeholder). + """ + try: + with open(html_path, encoding='utf-8') as f: + html = f.read() + # TODO: replace with BeautifulSoup parsing + return f"[PLACEHOLDER] Text extracted from: {Path(html_path).name}" + except Exception as e: + return f"[ERROR] Failed to extract from {html_path}: {e}" \ No newline at end of file diff --git a/src/benchmark/modules/run_benchmark.py b/src/benchmark/modules/run_benchmark.py index 7007c8a..68fc2b8 100644 --- a/src/benchmark/modules/run_benchmark.py +++ b/src/benchmark/modules/run_benchmark.py @@ -126,9 +126,7 @@ def run_pipeline( if config.get("trajectory_embedding"): try: logger.info("Starting trajectory embedding") - embedder = TrajectoryEmbedder( - model_name=TRAJECTORY_EMBEDDING_MODEL, text_path=TEXT_FIELD_PATH - ) + embedder = TrajectoryEmbedder() emb = embedder.embed_graph(graph) results["trajectory_embedding"] = emb.tolist() if emb is not None else None logger.info("Trajectory embedding completed") diff --git a/src/benchmark/output/plots/bertscore_f1_barplot.png b/src/benchmark/output/plots/bertscore_f1_barplot.png new file mode 100644 index 0000000000000000000000000000000000000000..e3d768e081339e2faddc7f7bed715fb4515c10c1 GIT binary patch literal 16630 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

-h>&rm-)Q6Y>O)sq{3GC|Po9(`nt=F& zrId%2#&v!f_$7c_l9@DOqJ zvUZ?O>yEwW{?^f;(tnux*lV9b@{h-en*5=le+yJYZiFCNU7-=OPoxx@?{xC3yuJhH zaHauUMS~jqf=dDQwH{D#^C;|rcYJ1okOOy{_^#(uls zp*V)U4&wQ;0yyueOXR_%99;ZY&j^e%a9$%(L{Q|53`jbVQJ$cm+DaM)4H-`U~ zhSWWwZhmA7%~kv)tnmR)^Aa=d1L62VZ0{?vlx=0deDJ05H0799IA)}(5hi#CKAnD-I#gu%{J-`f(`UjRsQWAgODm*S%O-H$SbG>1RV8rW z*D0~?Ndzv3kM)oxa7D=mZxexU&phtS8>N_!AVo!kd*Y7GNX7nRJ~ zV?eCt+4RGg{u1Q=Dm9)z8@68Y)V>xP@%YM#b%PTrl%nXYp#10oCks6e!(G|Ft;40N zWtHE#6u*fs5D490%qO>7=yRfHR*G^2XTXfr);6uwyC*Ng(SKA3Hiy-T?-`eUK|9Du zN4RRnzE0I6%+6x0bdtw=GTCYiyrEFhfGgh)-(>yjvK=aIxsZMU3px#%9}W^-oSC(D z&b=$hs1k(F_=#www^qMrm?Z+W4ZToZ7wXtKF1D~c}EvGef(Z@?qTO2d6pR*8+)n9-U04_%r+3OCSqU_ zup8{onMp0|x+oRRsrx|hbjf!OQ(|MLfEyRe;*4X~5nLpGe6T(<8YZz7DwiH=#t$sdGv}K(d*Yi>OpT>%Vaf;fdh?ZiXpREbGJx)@5S6Q#ALb#8lLlG1>8S(!yQ(z z0z^FISc^GPdR}TylM8f!mU}-D5f@R#!4iO+cj2G;^x*r;&yv5}T`{fq(=ILZ(&yLi zeaOC-XCo`Q*2viEKI&^xnj+%zBTn4&6B}MUD72Xn>=~j5Fdu5h+S^@a0x23K<-a3% zY>v|?#12MVNyutq0b`h#gh335Aa*DIJRye>>ff?wJz@E}>-_!sxqLz0F^{k0)<}X; zwFQj8l5c#hj7~jAiyRBYf?>78)?NKlx#u52@Td?vDSu%G;ualMpdzhDttI!snIvNo z;M0zNJL9KZd=ZAr9o1^tsdpQ=6yK1md1T(z9E{H7{>*W@Pt$n8^Q%o;ZA)}%Yg zAYk9|3n_sKN#$vD6P4jg6`T^8*@HB&@)KN$a^*U$2gg}l4AtqC)JZCHLhP48F>g1L zEx+=w3Q8OTowLJxB8YWvO%)fOZ4qGhZcnCKqVRpc8w)Z$U>sWi-IbZn5l zG|$MhF}%ukUZc$3kP?hYh((y3^Pb6q9N3N9hjo+*=luS=L~oz$z5A^tbw%S$kiOAs zQJWL8NCAzTxzXJ8lebh3tO7L~?R{#b6t38unnlAzxVu_7)R zx`djp*ukErB(bu2s`hvdr+LxvCEt>~^Q6%C{@HM;!(VWlNUa||D}&ZkBoJc%>g7wm zI&#Ff{~>0v@@bglURE}FejQbb4Lyi6$qfn#(Pb=!f2`yA>>atiIPZ6J14Wq!F!-5y zSO7LE&wtpK*5J6I68Hlj?yQWP8yjX`TVm)zpC6|FS3bGO<$&69>m9TU5fD4g z!XPzt!Q@wqWCK}*eK<4Rd*KwkzEuIS5W^pJg^@HImC^1j4F*l#XEK-vss4wXF%92~@a$P`8i5^+)&$ify7t*roUTAZa3A#oj!V+w;J&i5+t ztN)+tYo&nFY6mZO5*$?&g+s|75o~|w!<{Bh-6H6&nI5YXtv^C8Kk19p+ s+%toJ*r`MVU_A4G;WS3!uj3OrvZtvkhRtAxghDCaRFlh-F?syo0K1mfk^lez literal 0 HcmV?d00001 diff --git a/src/benchmark/output/plots/topology_distributions.png b/src/benchmark/output/plots/topology_distributions.png new file mode 100644 index 0000000000000000000000000000000000000000..21c4d6ccad2f40edffb6c47fe907391f2b918bca GIT binary patch literal 32789 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 literal 0 HcmV?d00001 diff --git a/src/benchmark/output/plots/trajectory_tsne.png b/src/benchmark/output/plots/trajectory_tsne.png new file mode 100644 index 0000000000000000000000000000000000000000..f37b197da5ba30c5cd8db393a0fa9ac7163c22a8 GIT binary patch literal 19219 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 K$h!OV<^KgHcu*Vw literal 0 HcmV?d00001 diff --git a/src/benchmark/output/results/graph_013.json b/src/benchmark/output/results/graph_013.json new file mode 100644 index 0000000..d9ea34d --- /dev/null +++ b/src/benchmark/output/results/graph_013.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is an adult with a diagnosis of stage III Non-Small Cell Lung Carcinoma (NSCLC) accompanied by an upper esophageal stricture. The patient's demographic information is not explicitly provided in the data, but based on the clinical presentation and treatment plan, it can be inferred that the patient is likely an older adult.\n\n**Timeline of Diagnoses:**\n\n1. **Step 1:** The patient was diagnosed with stage III NSCLC and upper esophageal stricture around the same time.\n2. **Step 2 (Two months later):** An initial MRI performed revealed no abnormalities, but the patient's diagnosis of NSCLC remained active.\n3. **Step 3 (One year after Step 1):** Follow-up CT scans showed metastatic spread throughout the brain after presentation to the ED with neurological weakness.\n4. **Step 4:** The patient was admitted to hospital and started on dexamethasone, continued treatment for hypokalemia, and placed on neutropenic precautions. Pantoprazole and enoxaparin sodium were initiated due to possible hemorrhages and deep vein thrombosis prophylaxis.\n5. **Step 5:** MRI confirmed multiple new brain metastases with vasogenic edema and possible hemorrhagic components. The patient's oncologist confirmed metastasis to the brain and bone, and dexamethasone was increased to 6 mg every eight hours. Enoxaparin sodium was discontinued due to possible hemorrhages; mechanical prophylaxis started with thromboembolic deterrent stockings and sequential compression devices.\n6. **Step 6:** The patient tolerated radiation therapy well and docetaxel was re-initiated.\n7. **Step 7 (Refractory disease):** CT scans revealed new developments in the liver and possibly pancreas, indicating refractory disease to second-line docetaxel.\n8. **Step 8 (Hospice care recommendation):** The oncologist discussed a third-line option and recommended hospice care.\n\n**Timeline of Treatments:**\n\n1. **Dexamethasone:** Initially started at 4 mg twice daily, increased to 6 mg every eight hours due to metastasis.\n2. **Docetaxel:** Re-initiated after radiation therapy, with no specified dosage or frequency.\n3. **Pantoprazole and Enoxaparin Sodium:** Initiated for possible hemorrhages and deep vein thrombosis prophylaxis.\n\n**Outcomes:**\n\n1. **Radiation Therapy:** The patient tolerated the treatment well, indicating a positive response to radiation therapy.\n2. **Hospice Care Recommendation:** The oncologist recommended hospice care due to refractory disease, indicating a poor prognosis for the patient's overall health and quality of life.\n\nIn conclusion, this patient was diagnosed with stage III NSCLC accompanied by an upper esophageal stricture and underwent multiple treatments, including radiation therapy, dexamethasone, docetaxel, pantoprazole, and enoxaparin sodium. Despite initial positive responses to treatment, the patient's disease progressed, leading to a recommendation for hospice care due to refractory disease.", + "bertscore": { + "precision": [ + 0.3270224332809448 + ], + "recall": [ + 0.4040271043777466 + ], + "f1": [ + 0.3614691495895386 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 9, + "edge_count": 8, + "avg_in_degree": 0.8888888888888888, + "density": 0.1111111111111111 + }, + "trajectory_embedding": [ + 0.24155695736408234, + 0.21537359058856964, + -0.07995787262916565, + 0.12391994893550873, + -0.0372464694082737, + 0.15261226892471313, + -0.11476530134677887, + 0.32324033975601196, + 0.4738871157169342, + -0.23460787534713745, + -0.20247039198875427, + -0.08712716400623322, + -0.6125581860542297, + -0.031501494348049164, + -0.20453636348247528, + 0.20022889971733093, + -0.16431254148483276, + 0.29454290866851807, + -0.23962701857089996, + -0.17309172451496124, + -0.2758984863758087, + 0.1059381514787674, + -0.5465917587280273, + -0.0003402531147003174, + 0.15933232009410858, + 0.031305454671382904, + 0.32929545640945435, + 0.5477815270423889, + 0.1594933718442917, + 0.2540544867515564, + 0.14029796421527863, + -0.1244959831237793, + 0.2018236517906189, + 0.0449417382478714, + -0.2452317625284195, + 0.24212630093097687, + 0.24442964792251587, + 0.4833468198776245, + -0.07787999510765076, + -0.06768157333135605, + -0.07964158803224564, + 0.0008284167852252722, + 0.8772623538970947, + 0.024648617953062057, + 0.26762256026268005, + -0.7976613640785217, + 0.0019980918150395155, + 0.6135618686676025, + -0.3571402132511139, + -0.14905542135238647, + 0.12183341383934021, + 0.7270091772079468, + 0.5443129539489746, + -0.36728304624557495, + 0.4682283401489258, + -0.2588065266609192, + -0.21307438611984253, + -0.3388199508190155, + -0.11955253034830093, + -0.03675445169210434, + -0.002368973335251212, + -0.33122900128364563, + 0.45348984003067017, + -0.11281886696815491, + -0.20961236953735352, + -0.12740486860275269, + -0.23833529651165009, + 0.1451364904642105, + -0.045388154685497284, + -0.2403751164674759, + -0.15419939160346985, + -0.3230229318141937, + -0.0910692885518074, + 0.14790748059749603, + 0.041459981352090836, + -0.206843301653862, + 0.3894253373146057, + -0.07595756649971008, + 0.18960782885551453, + 0.13335663080215454, + -0.030964652076363564, + -0.13484208285808563, + -0.12176130712032318, + 0.3728886842727661, + -0.20234252512454987, + 0.0016239003743976355, + -0.20775629580020905, + -0.0699281319975853, + -0.30638110637664795, + 0.23557382822036743, + 0.04188374802470207, + -0.4083743393421173, + 0.08051607012748718, + -0.1916392594575882, + 0.0030252535361796618, + 0.27882376313209534, + 0.5132365226745605, + 0.15610343217849731, + 0.827597975730896, + -0.11964982002973557, + 0.2349698841571808, + 0.06182524934411049, + 0.174056276679039, + 0.15932923555374146, + 0.3266720473766327, + -0.22590965032577515, + 0.17611642181873322, + -0.5313708186149597, + 0.35758882761001587, + 0.5984790325164795, + 0.10640716552734375, + -0.15097194910049438, + -0.017119668424129486, + -0.15137934684753418, + 0.1897292137145996, + 0.14832034707069397, + -0.04469786584377289, + 0.2143532782793045, + 0.19945654273033142, + -0.4254097044467926, + -0.09676656126976013, + -0.1194058284163475, + 0.24252387881278992, + 0.1517648994922638, + -0.37359386682510376, + -0.11687571555376053, + -0.12634143233299255, + -0.062346987426280975, + 0.11124014854431152, + 0.08090682327747345, + -0.33239224553108215, + -0.11807307600975037, + -0.1302884817123413, + 0.0671614333987236, + 0.06077427417039871, + 0.3060888648033142, + -0.35121950507164, + -0.06750120967626572, + -1.0770100355148315, + 0.15920908749103546, + -0.44611474871635437, + 0.00039295852184295654, + -0.16818030178546906, + -0.7213994860649109, + -0.216000497341156, + -0.0821317583322525, + -0.08832965046167374, + 0.17001938819885254, + -0.2577148377895355, + 0.12229795008897781, + 0.04230130463838577, + -0.06636832654476166, + 0.16916221380233765, + 0.4746445417404175, + 0.00531361810863018, + -0.055137310177087784, + -0.030731383711099625, + 0.4306242763996124, + 0.15991631150245667, + -0.23452642560005188, + 0.036741480231285095, + 0.46159300208091736, + -0.04295675456523895, + 0.08154748380184174, + -0.06777488440275192, + -0.657522976398468, + -0.09001371264457703, + -0.051591746509075165, + 0.00817882176488638, + 0.13230735063552856, + -0.17399320006370544, + 0.08227026462554932, + -0.35297974944114685, + 0.5669633746147156, + 0.11720393598079681, + 0.4058569669723511, + -0.049811575561761856, + -0.038685962557792664, + 0.1598951816558838, + 0.15935125946998596, + 0.011667225509881973, + -0.2277788519859314, + 0.5574589371681213, + 0.2693471610546112, + -0.20592756569385529, + 0.026243533939123154, + 0.24838703870773315, + 0.12592069804668427, + -0.41700243949890137, + 0.00327802705578506, + 0.5660539269447327, + -0.31072595715522766, + 0.4585483968257904, + -0.26150617003440857, + 0.034883253276348114, + 0.17964760959148407, + -0.18886232376098633, + -0.08186636120080948, + 0.035565122961997986, + -0.17793779075145721, + 0.19144436717033386, + -0.02238658256828785, + -0.40682798624038696, + -0.00039794377516955137, + 0.09830164164304733, + -0.08517023921012878, + 0.02812509983778, + -0.06149401143193245, + 0.11783480644226074, + 0.03988480567932129, + 0.008082837797701359, + 0.2380465418100357, + -0.022804560139775276, + 0.2225331962108612, + 0.004692764952778816, + -0.4686604142189026, + -0.05721122771501541, + -0.05054028332233429, + -0.04461255297064781, + 0.08090267330408096, + 0.1183868795633316, + -0.3092455565929413, + -0.14980101585388184, + 0.02167956717312336, + -0.526171863079071, + 0.2465953230857849, + 0.131320059299469, + 0.2511613368988037, + 0.20704039931297302, + 0.008696241304278374, + -0.014560025185346603, + -0.36080485582351685, + 0.3467772901058197, + -0.12624897062778473, + -0.18852436542510986, + -0.32335978746414185, + 0.22572872042655945, + -0.1190427914261818, + 0.17208603024482727, + 0.292746901512146, + 0.029593685641884804, + -0.04226994514465332, + 0.2001456469297409, + -0.30924275517463684, + 0.0181588064879179, + -0.29900336265563965, + -0.16698414087295532, + 0.36746883392333984, + 0.14116379618644714, + 0.18033351004123688, + -0.0004899862105958164, + -0.1911129504442215, + 0.15002883970737457, + -0.25037968158721924, + -0.40363365411758423, + -0.3135179877281189, + -0.06087428331375122, + -0.1274440437555313, + -0.70119309425354, + 0.20250943303108215, + -0.006145748775452375, + -0.09775877743959427, + 0.1399988979101181, + -0.2688709497451782, + -0.155520498752594, + -0.09042874723672867, + 0.028022922575473785, + 0.1310429722070694, + -0.36349284648895264, + 0.033691566437482834, + -0.16610130667686462, + -0.1955234706401825, + -0.15266183018684387, + -0.007524983957409859, + 0.10932084918022156, + 0.025655873119831085, + -0.3500211834907532, + 0.03381055220961571, + 0.04968787729740143, + -0.4316314458847046, + -0.06891779601573944, + 0.06449755281209946, + -0.21540646255016327, + 0.3267812728881836, + 0.008800899609923363, + 0.32915136218070984, + 0.2613288462162018, + 0.12813709676265717, + 0.14492428302764893, + 0.34034502506256104, + 0.5050050616264343, + -0.07383128255605698, + -0.03463876247406006, + -0.12566155195236206, + -0.11848434805870056, + -0.08477093279361725, + -0.44429799914360046, + 0.46254879236221313, + 0.03885037451982498, + 0.0508064366877079, + 0.004927083849906921, + 0.2280394285917282, + 0.1169482171535492, + -0.25205108523368835, + -0.048436589539051056, + 0.36231517791748047, + 0.15091532468795776, + 0.2599165737628937, + 0.19282156229019165, + 0.16700248420238495, + 0.23195971548557281, + -0.15707296133041382, + 0.11036384850740433, + 0.22283941507339478, + -0.08980632573366165, + -0.14549654722213745, + -0.04020605981349945, + 0.2666403353214264, + 0.4998273253440857, + -0.06692996621131897, + -0.21176013350486755, + -0.01596781238913536, + -0.04991384968161583, + -0.09778814762830734, + -0.3200053572654724, + -0.18764692544937134, + 0.08455508947372437, + -0.14097356796264648, + 0.291954904794693, + 0.13266724348068237, + 0.04797739163041115, + 0.3550804555416107, + -0.41618818044662476, + -0.10743103921413422, + 0.1664910912513733, + -0.16606368124485016, + -0.312967985868454, + 0.6062343716621399, + -0.25771278142929077, + -0.0013112624874338508, + 0.34544655680656433, + -0.32606643438339233, + 0.026833537966012955, + 0.017975404858589172, + 0.34656456112861633, + -0.13261549174785614, + 0.16263563930988312, + -0.038597047328948975, + 0.06752984970808029, + -0.012437749654054642, + 0.4742298126220703, + 0.21687664091587067, + 0.0252423956990242, + 0.5284286141395569, + 0.1975318342447281, + -0.32550764083862305, + 0.14438821375370026, + -0.13664278388023376, + 0.35603272914886475, + -0.27747562527656555, + -0.09235963225364685, + -0.16708365082740784, + 0.18514083325862885, + 0.11126849055290222, + -0.3430049419403076, + 0.03171159327030182, + 0.06763497740030289, + -0.024170134216547012, + -0.06650260090827942, + 0.3168039917945862, + 0.09125544130802155, + -0.23942960798740387, + 0.4465724229812622, + -0.05282427370548248, + -0.16144904494285583, + 0.4569963216781616, + -0.1437179297208786, + 0.13761450350284576, + 0.1127144992351532, + -0.23600077629089355, + -0.2248530387878418, + 0.1559731364250183, + -0.05172814428806305, + -0.18690167367458344, + 0.04961433634161949, + -0.14382441341876984, + 0.07923392206430435, + -0.36201024055480957, + 0.06428803503513336, + 0.00085721246432513, + 0.15947455167770386, + 0.10765368491411209, + 0.25942671298980713, + 0.03479692339897156, + -0.235140860080719, + 0.21229302883148193, + 0.07802985608577728, + 0.07191018015146255, + -0.2942546308040619, + -0.009596031159162521, + -0.018777254968881607, + 0.5741297006607056, + -0.057629168033599854, + 0.00856948271393776, + 0.06073133647441864, + -0.010361773893237114, + -0.18509222567081451, + -0.4136068522930145, + 0.04926762729883194, + -0.19605028629302979, + 0.10411420464515686, + 0.05534903332591057, + 0.10573378205299377, + -0.2977267801761627, + -0.09907933324575424, + -0.06637433171272278, + -0.0462399385869503, + 0.05609910935163498, + -0.05832063406705856, + -0.15888355672359467, + 0.3146088421344757, + 0.25871631503105164, + 0.4351678192615509, + -0.27371957898139954, + 0.17106184363365173, + 0.08135560154914856, + -0.1977299004793167, + 0.11241979151964188, + -0.08693860471248627, + -0.46330520510673523, + -0.13701243698596954, + 0.2106388658285141, + 0.22903227806091309, + -0.11263370513916016, + -0.07803452759981155, + 0.08713499456644058, + 0.13808225095272064, + -0.18711066246032715, + -0.09250027686357498, + 0.3962304890155792, + -0.002254633465781808, + 0.2343401312828064, + 0.03170916065573692, + -0.6213518381118774, + -0.19844931364059448, + -0.2018902599811554, + -0.37373340129852295, + 0.09655988216400146, + 0.3098083734512329, + 0.05260675027966499, + -0.11784887313842773, + -0.03582240641117096, + -0.021124400198459625, + -0.04373055696487427, + 0.3409253656864166, + -0.17100651562213898, + 0.19073598086833954, + 0.059218354523181915, + -0.20401841402053833, + -0.05425725877285004, + -0.2159264236688614, + -0.27113592624664307, + -0.23053810000419617, + 0.21711087226867676, + 0.16023214161396027, + -0.35370469093322754, + -0.014339636079967022, + -0.0014454068150371313, + -0.11599821597337723, + -0.13153047859668732, + 0.026755884289741516, + -0.1900964379310608, + 0.34747445583343506, + -0.06484807282686234, + -0.2343011498451233, + 0.05442841351032257, + -0.01754981465637684, + -0.0358896404504776, + 0.279585063457489, + 0.23285818099975586, + 0.2612352669239044, + 0.10170546174049377, + 0.10291460156440735, + 0.5390164852142334, + 0.03270624950528145, + 0.09692253917455673, + 0.1990957409143448, + -0.04463128373026848, + 0.07410280406475067, + -0.37692031264305115, + -0.30622726678848267, + 0.2972744405269623, + -0.2718070447444916, + -0.15260562300682068, + 0.1595229059457779, + 0.23568344116210938, + -0.4395192563533783, + -0.3215208649635315, + -0.08459683507680893, + 0.051929887384176254, + -0.05153917148709297, + -0.14262405037879944, + -0.14354681968688965, + -0.1756318062543869, + -0.09349746257066727, + -0.08696410804986954, + 0.16840334236621857, + 0.4684618413448334, + 0.15833033621311188, + 0.38052690029144287, + -0.3756466209888458, + -0.2781062424182892, + 0.2124059647321701, + 0.20991568267345428, + 0.042279597371816635, + -0.14751948416233063, + -0.1784704029560089, + 0.3049623370170593, + 0.347293883562088, + -0.08212367445230484, + 0.016853369772434235, + 0.04574248194694519, + -0.0009136919979937375, + 0.17393185198307037, + 0.1004016250371933, + -0.0010571065358817577, + -0.0818040668964386, + -0.3738876283168793, + 0.07030986994504929, + -0.0918787270784378, + -0.058571211993694305, + 0.13702678680419922, + -0.1960516721010208, + -0.556880533695221, + -0.19149485230445862, + 0.20317649841308594, + -0.06477893888950348, + -0.11078114062547684, + 0.10036469250917435, + 0.3240278661251068, + -0.014925054274499416, + -0.25963079929351807, + 0.16798456013202667, + -0.5065494775772095, + -0.23348909616470337, + 0.24681547284126282, + -0.029935160651803017, + -0.11212442815303802, + 0.038584526628255844, + 0.4622439742088318, + 0.4085366427898407, + 0.2291470170021057, + -0.1898837685585022, + 0.18331663310527802, + 0.4277838468551636, + 0.2599075734615326, + -0.3321033716201782, + -10.781160354614258, + -0.10366761684417725, + -0.293734073638916, + 0.47978121042251587, + -0.26044803857803345, + 0.1099102720618248, + 0.07514674961566925, + -0.12935002148151398, + 0.12093876302242279, + 0.10419774800539017, + -0.19865158200263977, + -0.05598168075084686, + 0.2874721884727478, + 0.21560944616794586, + 0.13291381299495697, + 0.0542290098965168, + -0.2692578136920929, + 0.1859169900417328, + 0.15526315569877625, + 0.259503036737442, + -0.021331720054149628, + 0.442475825548172, + -0.2479737550020218, + 0.2758244276046753, + 0.008308266289532185, + -0.36576688289642334, + -0.23775188624858856, + 0.6633375287055969, + 0.2957693636417389, + -0.3615431487560272, + 0.09340029209852219, + 0.09177090972661972, + -0.18398882448673248, + 0.01615513116121292, + -0.13900011777877808, + -0.09415915608406067, + -0.09468085318803787, + -0.022492917254567146, + 0.1913793683052063, + -0.15864193439483643, + 0.1019134670495987, + -0.13772110641002655, + 0.27784594893455505, + -0.01200948841869831, + -0.1644136905670166, + -0.5386754274368286, + -0.13066406548023224, + -1.6463642120361328, + 0.3407993018627167, + 0.3141472637653351, + 0.4143645763397217, + 0.004793903790414333, + 0.07217314839363098, + 0.2548612356185913, + -0.3113287687301636, + 0.0022354957181960344, + -0.33011141419410706, + -0.15120093524456024, + 0.08631902933120728, + 0.01618902198970318, + 0.12534892559051514, + -0.20028457045555115, + 0.5586374998092651, + -0.061824340373277664, + -0.33100053668022156, + 0.08600368350744247, + 0.06636752188205719, + 0.05553329735994339, + -0.24358715116977692, + -0.7141892910003662, + -0.5033979415893555, + -0.028620921075344086, + -0.06953250616788864, + -0.006344159599393606, + 0.34178483486175537, + 0.03332378342747688, + -0.26986467838287354, + 0.30130770802497864, + -0.06494703888893127, + 0.22317205369472504, + 0.27392733097076416, + -0.05275188013911247, + 0.1365334391593933, + -0.18610860407352448, + -0.1038220226764679, + -0.09767290949821472, + 0.16559270024299622, + 0.4100814759731293, + -0.002759655239060521, + -0.05510718747973442, + 0.010698553174734116, + 0.36826616525650024, + 0.03306090831756592, + -0.24538257718086243, + -0.5187779068946838, + 0.037447281181812286, + 0.04056726023554802, + 0.09725210815668106, + 0.012242469936609268, + 0.009624186903238297, + -0.2076747864484787, + 0.09715893864631653, + 0.003859913907945156, + -0.5736606121063232, + -0.5300700068473816, + 0.37477362155914307, + 0.1465151607990265, + 0.16475725173950195, + -0.027807533740997314, + -0.1493527591228485, + -0.23046022653579712, + 0.0705937072634697, + 0.2837875783443451, + 0.5248658657073975, + 0.22655895352363586, + -0.048853132873773575, + 0.12442824244499207, + -0.2865041494369507, + -0.09623543918132782, + 6.0217247664695606e-05, + 0.3253086805343628, + -0.05707065388560295, + 0.2002371847629547, + 0.5235603451728821, + 0.037757329642772675, + -0.12214464694261551, + 0.9256930947303772, + -0.3156319260597229, + 0.12378469854593277, + -0.05458957329392433, + 0.36882245540618896, + 0.01957804337143898, + -0.46116992831230164, + 0.1366707980632782, + 0.49655675888061523, + -0.3697976768016815, + 0.7759338617324829, + 0.3545314371585846, + -0.29505518078804016, + -0.10062983632087708, + -0.2132190316915512, + 0.550788164138794, + 0.240797758102417, + 0.25003620982170105, + -0.1688372790813446, + -0.33338749408721924, + -0.1559317708015442, + 0.283538818359375, + -0.2576529085636139, + -0.3646518290042877, + -0.03736989200115204, + -0.02738192304968834, + 0.09532589465379715, + -0.19825789332389832, + 0.3232133090496063, + 0.25160884857177734, + -0.13130715489387512, + -0.3464490473270416, + -0.2850421667098999, + 0.0613701269030571, + 0.0981491431593895, + 0.8693107962608337, + 0.08792977035045624, + -0.12719029188156128, + -0.05109942704439163, + 0.2078925520181656, + -0.20768263936042786, + 0.2597372531890869, + 0.03239227831363678, + -0.13414791226387024, + -0.32784679532051086, + 0.3180330693721771, + 0.17056220769882202, + -0.24091897904872894, + -0.11497812718153, + -0.11078345030546188, + -0.0807366892695427, + 0.202336385846138, + -0.15432195365428925, + 0.2014816552400589, + 0.3424786925315857, + -0.11987282335758209, + -0.008677203208208084, + -0.22635920345783234, + -0.12274949997663498, + 0.28366073966026306, + 0.2928275167942047, + 0.03801976144313812, + -0.29831549525260925, + -0.20850878953933716, + -0.5864761471748352, + 0.31621038913726807, + -0.4213752746582031, + -0.14210301637649536, + 0.17691545188426971, + 0.20287653803825378, + -0.21846409142017365, + 0.14086991548538208, + -0.035652488470077515, + -0.12748683989048004, + -0.11935247480869293, + 0.2757931053638458, + 0.5565747618675232, + -0.20916032791137695, + 0.3051387071609497, + -0.10723290592432022, + 0.23448880016803741, + 0.2270893007516861, + -0.21272096037864685, + 0.05457596108317375, + -0.2712676525115967 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/graph_029.json b/src/benchmark/output/results/graph_029.json new file mode 100644 index 0000000..282be01 --- /dev/null +++ b/src/benchmark/output/results/graph_029.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 65-year-old woman with a history of palmoplantar pustulosis. She presented with a breast mass and a chest mass, which led to further investigation and diagnosis.\n\n**Initial Diagnosis (Step 1):**\nThe patient's initial presentation was characterized by a breast mass and a chest mass. Histopathological analysis of biopsy specimens from both the lung mass and the breast mass revealed small cell carcinoma (SCLC) in both lesions. Comprehensive staging, including contrast-enhanced MRI of the brain and FDG-PET, led to a diagnosis of stage cT2aN3M1c SCLC with multiple bone, peritoneal, and skin metastases.\n\n**Timeline of Diagnoses:**\n\n* **Step 1 (N1):** Patient presented with breast mass and chest mass.\n* **Step 2 (N2):** Histopathological analysis revealed small cell carcinoma in both lesions. Comprehensive staging confirmed stage cT2aN3M1c SCLC.\n\n**Treatment Initiation (Step 3):**\nThe patient initiated first-line treatment with carboplatin, etoposide, and durvalumab. Administration sequence: durvalumab, followed by ETP, and then CBDCA. During the first course of treatment, the patient experienced anaphylactic shock while receiving an ETP infusion on day 1.\n\n**Treatment Modification (Step 4):**\nDue to anaphylactic shock during etoposide infusion, treatment was switched to combination therapy with cisplatin (CDDP) and irinotecan (CPT-11).\n\n**Current Status:**\nThe patient is currently undergoing treatment with a modified regimen. The patient's condition is being closely monitored for any signs of disease progression or adverse reactions.\n\n**Outcomes:**\nWhile the patient has experienced anaphylactic shock during treatment, they are still receiving ongoing care and management. Further follow-up will be necessary to assess the effectiveness of the current treatment regimen and make any necessary adjustments.\n\nNote: The case report is based on the provided data and may not reflect the actual clinical scenario or outcomes.", + "bertscore": { + "precision": [ + 0.33418387174606323 + ], + "recall": [ + 0.4088182747364044 + ], + "f1": [ + 0.3677525520324707 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 4, + "edge_count": 3, + "avg_in_degree": 0.75, + "density": 0.25 + }, + "trajectory_embedding": [ + 0.15035732090473175, + 0.08811881393194199, + -0.19972163438796997, + 0.14578032493591309, + 0.23200318217277527, + 0.13004496693611145, + 0.015617452561855316, + 0.2698851525783539, + 0.4273703098297119, + -0.5097478032112122, + -0.08371931314468384, + 0.2273850440979004, + -0.7754285931587219, + 0.03681084141135216, + -0.3211135268211365, + 0.023278556764125824, + -0.047743119299411774, + 0.32534492015838623, + 0.027143247425556183, + -0.2724577784538269, + -0.5230530500411987, + 0.0914003849029541, + -0.42661213874816895, + -0.17604972422122955, + 0.1582137644290924, + -0.11511606723070145, + 0.24375087022781372, + 0.3639303147792816, + 0.30078983306884766, + 0.1481952965259552, + 0.0982765257358551, + 0.07514798641204834, + -0.14045822620391846, + -0.05991669371724129, + -0.21620173752307892, + 0.5434203147888184, + 0.2814257740974426, + 0.30924949049949646, + -0.06420550495386124, + 0.06908589601516724, + -0.13318544626235962, + 0.10258776694536209, + 0.8083333373069763, + 0.23025156557559967, + 0.606808602809906, + -0.4456811249256134, + -0.1107533872127533, + 0.6211190223693848, + -0.6121363639831543, + -0.24383987486362457, + 0.26599955558776855, + 0.7815065979957581, + 0.7041884660720825, + -0.09790679812431335, + 0.5647207498550415, + -0.10656889528036118, + -0.3475062847137451, + -0.09534834325313568, + -0.19805721938610077, + -0.030897479504346848, + 0.3047719895839691, + -0.04034978896379471, + 0.09445232897996902, + -0.19703462719917297, + -0.19587776064872742, + -0.2755402624607086, + -0.2612338662147522, + -0.062225084751844406, + -0.02951645478606224, + -0.3850701153278351, + -0.3721943497657776, + -0.31069427728652954, + -0.197273388504982, + 0.12435930222272873, + 0.05557815730571747, + -0.22090354561805725, + 0.2659367322921753, + -0.04172642529010773, + 0.005254209041595459, + 0.07337819784879684, + 0.15482300519943237, + 0.00045836344361305237, + 0.12372990697622299, + 0.305213987827301, + -0.3897011876106262, + 0.11810100823640823, + -0.21962682902812958, + 0.06196033954620361, + -0.07672929763793945, + 0.09647464752197266, + 0.22657150030136108, + -0.1528746783733368, + 0.03631039708852768, + -0.2797641158103943, + 0.08148163557052612, + -0.11708860844373703, + 0.3098274767398834, + 0.1963893622159958, + 0.9034712314605713, + -0.049965836107730865, + 0.2512938976287842, + 0.26801350712776184, + 0.3084595501422882, + -0.07162152230739594, + 0.5442402362823486, + -0.016050945967435837, + 0.2986084222793579, + -0.2577110826969147, + 0.0753178521990776, + 0.3752126097679138, + 0.05898970738053322, + -0.20055533945560455, + 0.13245722651481628, + -0.34535107016563416, + -0.006994746625423431, + 0.21054047346115112, + -0.2143578976392746, + 0.08399107307195663, + 0.043778225779533386, + -0.4922197461128235, + -0.10373472422361374, + -0.11313064396381378, + 0.3105468153953552, + 0.2122548222541809, + -0.36539602279663086, + -0.13001251220703125, + -0.2934725880622864, + 0.06563467532396317, + 0.01279892772436142, + 0.1863807737827301, + -0.3714646100997925, + -0.09065089374780655, + 0.0714176818728447, + 0.21681082248687744, + -0.24344199895858765, + 0.3045070171356201, + -0.5687077641487122, + 0.169362872838974, + -1.130785584449768, + 0.30985572934150696, + -0.39118704199790955, + -0.09087523818016052, + 0.04579455032944679, + -0.43984517455101013, + -0.130955308675766, + -0.2126157283782959, + -0.140931636095047, + 0.15842145681381226, + 0.031178168952465057, + -0.016274040564894676, + -0.23103465139865875, + -0.04341796785593033, + 0.20759788155555725, + 0.12309414893388748, + 0.19238199293613434, + 0.16843999922275543, + 0.13355569541454315, + 0.31758204102516174, + 0.1647462397813797, + -0.27267512679100037, + -0.05877390503883362, + 0.4191613793373108, + -0.12473881244659424, + 0.012259690091013908, + 0.05943474918603897, + -0.779281735420227, + 0.21288494765758514, + -0.22383490204811096, + 0.1658511757850647, + 0.10764306783676147, + -0.03768884763121605, + 0.13597480952739716, + 0.0055528804659843445, + 0.40644001960754395, + 0.2619713246822357, + 0.45598211884498596, + -0.0007789731025695801, + 0.09154902398586273, + 0.2806803584098816, + 0.030787654221057892, + 0.08364425599575043, + -0.08660861849784851, + 0.5961792469024658, + 0.14408645033836365, + -0.2795652747154236, + 0.24233701825141907, + 0.4976266622543335, + -0.25516176223754883, + -0.27442464232444763, + -0.18344378471374512, + 0.6251331567764282, + -0.21638593077659607, + 0.4347502589225769, + -0.391853928565979, + -0.07856140285730362, + 0.14384575188159943, + -0.2521666884422302, + -0.2443702518939972, + 0.16279950737953186, + -0.1309836059808731, + 0.24158386886119843, + 0.29584556818008423, + -0.14399248361587524, + 0.09044089168310165, + 0.28795504570007324, + -0.008826151490211487, + 0.20617961883544922, + 0.08215983211994171, + -0.006577081512659788, + -0.0948309451341629, + -0.2181766927242279, + 0.3311384320259094, + -0.15381696820259094, + 0.23943094909191132, + 0.08220815658569336, + -0.3224627375602722, + 0.2765353322029114, + 0.04827180877327919, + -0.310332715511322, + 0.13254289329051971, + -0.13208888471126556, + -0.18986046314239502, + 0.41949814558029175, + -0.05851202458143234, + -0.3244854807853699, + 0.3531220555305481, + 0.25011327862739563, + 0.3199182450771332, + 0.11079217493534088, + -0.059197187423706055, + 0.03877272084355354, + -0.3607223331928253, + 0.41567617654800415, + -0.07486863434314728, + -0.2852470874786377, + -0.32354456186294556, + 0.07133990526199341, + -0.09083409607410431, + -0.16720029711723328, + 0.4848332703113556, + -0.05888050049543381, + -0.07240745425224304, + -0.06843895465135574, + -0.3825176954269409, + -0.1425507366657257, + -0.2734854221343994, + -0.05055718123912811, + 0.42158007621765137, + -0.006317663937807083, + 0.12385077774524689, + 0.08918486535549164, + -0.13256102800369263, + 0.2745213508605957, + -0.2780851423740387, + -0.3515373468399048, + -0.15661406517028809, + -0.21939902007579803, + -0.028707878664135933, + -0.22431311011314392, + 0.14356249570846558, + 0.061870601028203964, + -0.050839848816394806, + 0.15007153153419495, + -0.3665141761302948, + -0.19492770731449127, + -0.13672906160354614, + -0.08776049315929413, + 0.3145122528076172, + -0.0763511061668396, + 0.3190010190010071, + -0.3214501738548279, + -0.1256009191274643, + -0.2234114706516266, + 0.10247466713190079, + 0.22402280569076538, + 0.2235291749238968, + -0.15936623513698578, + 0.17188525199890137, + 0.18709735572338104, + -0.4275096654891968, + -0.3772406578063965, + 0.13869608938694, + -0.3700858950614929, + 0.16574952006340027, + -0.26916319131851196, + 0.1620868444442749, + 0.5227580666542053, + -0.1351538896560669, + 0.1586870551109314, + 0.3367578089237213, + 0.6137332320213318, + 0.11050702631473541, + 0.05924917012453079, + 0.06975480914115906, + -0.06768328696489334, + 0.04994004964828491, + -0.3988339900970459, + 0.22922761738300323, + 0.07543687522411346, + 0.025239743292331696, + 0.0877264216542244, + 0.24504131078720093, + 0.0866163969039917, + -0.42070406675338745, + -0.21515575051307678, + 0.6003470420837402, + 0.17444464564323425, + 0.12091326713562012, + 0.0966772735118866, + 0.0027948133647441864, + 0.6938762068748474, + 0.14029844105243683, + -0.3007810115814209, + 0.24118241667747498, + -0.015391604974865913, + -0.27638038992881775, + -0.041414059698581696, + 0.028318554162979126, + 0.24682964384555817, + -0.17194335162639618, + -0.08336832374334335, + 0.3972686529159546, + -0.28531336784362793, + -0.21053777635097504, + -0.08046256005764008, + 0.012171542271971703, + -0.07503862679004669, + -0.22408804297447205, + 0.3863581120967865, + -0.20316822826862335, + -0.18604834377765656, + 0.49356135725975037, + -0.19834598898887634, + -0.2519786059856415, + 0.34436988830566406, + -0.08758200705051422, + -0.5814762711524963, + 0.13485053181648254, + -0.14816176891326904, + -0.042686764150857925, + 0.3301374912261963, + -0.1452496349811554, + -0.14636720716953278, + -0.050476692616939545, + 0.1555730253458023, + 0.18688040971755981, + 0.0298861563205719, + -0.0383761040866375, + -0.02968376874923706, + 0.2938281297683716, + 0.5456570386886597, + -0.17294497787952423, + 0.09730851650238037, + 0.2915459871292114, + 0.02802155911922455, + -0.292749285697937, + -0.09167329221963882, + 0.0427735261619091, + 0.22217139601707458, + -0.31327423453330994, + -0.16443021595478058, + -0.3029911518096924, + 0.12076716125011444, + 0.1034930869936943, + -0.19975899159908295, + 0.023916594684123993, + 0.17041020095348358, + -0.07729250937700272, + -0.052528806030750275, + 0.2507254481315613, + 0.2696673274040222, + -0.14416176080703735, + 0.40204742550849915, + -0.010719887912273407, + -0.03060590848326683, + 0.315259724855423, + -0.03484998643398285, + 0.0882989764213562, + 0.013330470770597458, + -0.32680508494377136, + -0.45251524448394775, + 0.016643106937408447, + -0.31067100167274475, + -0.19054633378982544, + 0.16639624536037445, + -0.09456495195627213, + -0.04880452901124954, + -0.1986597776412964, + 0.10074292868375778, + 0.10550490021705627, + 0.2743585407733917, + 0.10977855324745178, + 0.5622624158859253, + -0.00815143808722496, + -0.47350525856018066, + -0.02776990458369255, + -0.033460911363363266, + 0.16270244121551514, + -0.1761842966079712, + -0.0514773353934288, + -0.300570011138916, + 0.40235233306884766, + -0.003214634954929352, + -0.20296189188957214, + -0.017927728593349457, + -0.22651907801628113, + -0.27235597372055054, + -0.49347567558288574, + -0.1526629775762558, + -0.09169160574674606, + 0.005496315658092499, + -0.031811751425266266, + 0.18055564165115356, + 0.00853218138217926, + -0.17103028297424316, + 0.11777958273887634, + 0.4223080277442932, + 0.17727269232273102, + -0.13907240331172943, + -0.10714250057935715, + 0.22663921117782593, + -0.0012986734509468079, + 0.38060590624809265, + -0.05588870123028755, + 0.14727310836315155, + 0.06163933128118515, + -0.3660379648208618, + -0.026589736342430115, + -0.14065946638584137, + -0.3243272304534912, + -0.11314672231674194, + 0.33511295914649963, + 0.07411937415599823, + -0.0839025154709816, + -0.056707851588726044, + -0.038673777133226395, + 0.24374499917030334, + -0.47158539295196533, + -0.12583619356155396, + 0.3539115786552429, + 0.014892980456352234, + 0.470001757144928, + -0.20608855783939362, + -0.37365755438804626, + -0.21803498268127441, + 0.10704813152551651, + -0.45613551139831543, + 0.1995101273059845, + 0.038216959685087204, + -0.23452883958816528, + -0.026150815188884735, + 0.026768241077661514, + 0.03500731289386749, + -0.2321758270263672, + 0.10367514193058014, + -0.051840901374816895, + 0.14250263571739197, + 0.07993937283754349, + -0.34932956099510193, + -0.01264193281531334, + -0.37952128052711487, + -0.3767266273498535, + -0.28183797001838684, + 0.5280085206031799, + 0.1739700883626938, + -0.18372637033462524, + 0.058890435844659805, + 0.071327805519104, + -0.12311612814664841, + -0.2674154043197632, + -0.045537322759628296, + -0.04827253520488739, + 0.5374770164489746, + -0.1727357804775238, + -0.29129427671432495, + 0.4188222289085388, + -0.23409907519817352, + 0.07490140199661255, + 0.3064059615135193, + 0.14297285676002502, + 0.21151776611804962, + 0.18686801195144653, + 0.21509352326393127, + 0.4775988757610321, + 0.15696658194065094, + 0.03687877953052521, + 0.20499786734580994, + -0.026885375380516052, + 0.026583679020404816, + -0.19492124021053314, + -0.12437091767787933, + 0.4772647023200989, + -0.4242173731327057, + 0.10363228619098663, + -0.1486118733882904, + 0.31567060947418213, + -0.3919461965560913, + -0.18221206963062286, + -0.06811124831438065, + -0.07261928170919418, + -0.16310520470142365, + -0.3908563554286957, + -0.23347413539886475, + 0.041593436151742935, + -0.2824108600616455, + -0.08890575170516968, + 0.3584212064743042, + 0.27023792266845703, + 0.15537956357002258, + 0.1273878961801529, + -0.24296975135803223, + -0.5053679347038269, + 0.08073724061250687, + 0.4609663486480713, + 0.11543350666761398, + -0.12987348437309265, + -0.1967269778251648, + 0.29862478375434875, + 0.44801628589630127, + 0.1553916335105896, + -0.10514980554580688, + -0.10351458191871643, + -0.051483601331710815, + -0.07857932150363922, + 0.12600252032279968, + -0.22845253348350525, + 0.13111203908920288, + -0.3403601050376892, + 0.09868250787258148, + -0.18182969093322754, + -0.1762281209230423, + 0.27940887212753296, + -0.4322230815887451, + -0.5260947942733765, + -0.022753216326236725, + 0.14148125052452087, + -0.08305974304676056, + -0.2106950581073761, + 0.20440764725208282, + 0.40866124629974365, + -0.04415865242481232, + -0.0870879665017128, + 0.13561517000198364, + -0.581278920173645, + -0.12769488990306854, + 0.16459180414676666, + -0.1096542477607727, + 0.15798532962799072, + 0.1000177264213562, + 0.33330217003822327, + 0.4387405514717102, + 0.22411733865737915, + -0.2745407819747925, + 0.12751775979995728, + 0.40328729152679443, + 0.4359434247016907, + -0.24036023020744324, + -10.408804893493652, + 0.059284139424562454, + -0.3258499801158905, + 0.45536357164382935, + -0.0232965387403965, + 0.02595500275492668, + -0.054355401545763016, + -0.08148865401744843, + 0.13670077919960022, + 0.0884757786989212, + -0.07574758678674698, + 0.1643379181623459, + 0.10505308955907822, + 0.32812121510505676, + -0.09117082506418228, + 0.014583997428417206, + -0.3037165701389313, + 0.2310398668050766, + -0.2008664608001709, + 0.1839390993118286, + 0.28165826201438904, + 0.4859749674797058, + -0.17795445024967194, + 0.3330017626285553, + 0.19042964279651642, + -0.30623239278793335, + -0.08145035803318024, + 0.45627644658088684, + 0.17982810735702515, + -0.5801025032997131, + 0.3906877040863037, + 0.19491854310035706, + -0.12728528678417206, + -0.08678528666496277, + 0.06506156921386719, + -0.16734302043914795, + -0.09380630403757095, + -0.07341976463794708, + 0.27803564071655273, + -0.01934148371219635, + 0.12144480645656586, + -0.38676872849464417, + 0.10603571683168411, + 0.1997334361076355, + -0.16213330626487732, + -0.3502217233181, + -0.289284348487854, + -1.619271993637085, + 0.2950405478477478, + 0.32919415831565857, + 0.41065919399261475, + 0.12482833862304688, + 0.02699369378387928, + 0.17595382034778595, + -0.40100517868995667, + 0.18345822393894196, + -0.4366806447505951, + 0.05525290220975876, + 0.1564837545156479, + -0.16911140084266663, + 0.19962048530578613, + -0.14402653276920319, + 0.1968774050474167, + -0.2110728770494461, + -0.26534682512283325, + 0.07587093114852905, + -0.11695457994937897, + 0.026978611946105957, + -0.33342570066452026, + -0.3030700385570526, + -0.4818713963031769, + -0.04801848530769348, + -0.04070287197828293, + -0.12919208407402039, + 0.4492913782596588, + 0.03736908361315727, + -0.45754700899124146, + 0.15252640843391418, + -0.012836068868637085, + 0.4537890553474426, + 0.24320483207702637, + -0.10194840282201767, + 0.1294877678155899, + -0.11859562993049622, + -0.29960423707962036, + -0.11533036828041077, + 0.12476441264152527, + 0.4657996892929077, + 0.05771089345216751, + 0.1352422833442688, + 0.046063248068094254, + 0.22695627808570862, + -0.15504573285579681, + -0.032771993428468704, + -0.42587369680404663, + 0.16432026028633118, + 0.046401187777519226, + 0.14811545610427856, + -0.0013421401381492615, + -0.10969050228595734, + -0.26509082317352295, + -0.008090192452073097, + -0.046048469841480255, + -0.4376510679721832, + -0.47963571548461914, + 0.2977203130722046, + 0.14342939853668213, + 0.06663770973682404, + 0.15862588584423065, + 0.01906299591064453, + 0.12100471556186676, + 0.06829829514026642, + 0.5001391172409058, + 0.41836392879486084, + 0.24557198584079742, + -0.10947418957948685, + -0.11788798123598099, + 0.13734070956707, + -0.38681599497795105, + 0.10978840291500092, + 0.39899158477783203, + -0.1268235296010971, + 0.2679361402988434, + 0.6849151849746704, + 0.040771715342998505, + -0.05079515278339386, + 0.9351550340652466, + -0.22082459926605225, + 0.30078235268592834, + 0.018494335934519768, + 0.0820881575345993, + -0.03792400658130646, + -0.4008147716522217, + 0.15972162783145905, + 0.30996692180633545, + -0.3325650095939636, + 0.5711717009544373, + 0.21376530826091766, + -0.4492942690849304, + -0.04359077662229538, + -0.42370182275772095, + 0.436312198638916, + 0.23858344554901123, + 0.1840917468070984, + -0.1814172863960266, + -0.43209129571914673, + -0.2831170856952667, + 0.09883280098438263, + -0.4379417896270752, + -0.24989798665046692, + -0.2201814204454422, + 0.19447149336338043, + 0.1445395052433014, + -0.3734373450279236, + 0.37112027406692505, + -0.0038576405495405197, + -0.178182914853096, + -0.11725573241710663, + -0.3616572618484497, + -0.07877121865749359, + 0.16841274499893188, + 0.6709095239639282, + 0.14347845315933228, + -0.09105345606803894, + -0.04662903770804405, + 0.3231685161590576, + -0.0838908851146698, + 0.02553015574812889, + 0.05877991020679474, + 0.004997309297323227, + -0.5508643388748169, + 0.07590149343013763, + 0.09320506453514099, + -0.5048785209655762, + -0.19545148313045502, + -0.40843304991722107, + 0.1287948340177536, + -0.029411453753709793, + -0.03402042016386986, + 0.18018892407417297, + 0.20737633109092712, + 0.11560578644275665, + -0.03422579914331436, + -0.2287130504846573, + 0.03644973784685135, + 0.2337237298488617, + 0.14507167041301727, + 0.22508332133293152, + -0.28991416096687317, + -0.3894745111465454, + -0.17763294279575348, + 0.18675264716148376, + -0.29292547702789307, + -0.10768139362335205, + 0.10168568789958954, + 0.1762615591287613, + -0.36874812841415405, + 0.21619392931461334, + -0.18898330628871918, + 0.010760132223367691, + -0.3956816494464874, + 0.06285065412521362, + 0.42663949728012085, + -0.22983811795711517, + 0.0957484319806099, + -0.08724022656679153, + 0.21848884224891663, + 0.14141245186328888, + -0.26949915289878845, + 0.08861592411994934, + -0.1704709529876709 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/graph_044.json b/src/benchmark/output/results/graph_044.json new file mode 100644 index 0000000..97dffb3 --- /dev/null +++ b/src/benchmark/output/results/graph_044.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 44-year-old man with a significant smoking history of 24 years. He has no other notable medical history.\n\n**Initial Presentation (Step 1):**\nThe patient presented to the emergency department due to cough, dyspnea, and throat pain. This was his first visit to the hospital in two weeks, during which he had undergone noncontrast CT scans that showed a 5.0 x 5.0 cm tumor in the superior-to-anterior mediastinum.\n\n**Imaging Findings (Step 2):**\nFollow-up imaging revealed an enlarged shadow in the right upper mediastinum on chest radiography, which was later confirmed by CT scan to be a mediastinal mass.\n\n**Progression of Disease (Steps 3-5):**\nOver two weeks, the tumor grew from 5.0 x 5.0 cm to 9.0 x 7.0 cm in size, causing compression and narrowing of the right brachiocephalic vein and superior vena cava, as well as left deviation of the trachea.\n\n**Symptom Onset (Step 4):**\nThe patient developed respiratory symptoms, including cough, dyspnea, and throat pain, which prompted further imaging to evaluate the cause of these symptoms.\n\n**Imaging Evaluation (Steps 5-6):**\nNoncontrast CT scans two weeks prior to admission showed a tumor in the superior-to-anterior mediastinum. Dynamic CT scans at admission revealed a weakly enhanced tumor in the superior-to-middle mediastinum, which had grown to 9.0 x 7.0 cm over two weeks.\n\n**Laboratory Findings (Step 6):**\nLaboratory tests revealed slightly elevated levels of lactate dehydrogenase (LDH) and C-reactive protein (CRP), indicating inflammation or infection. Tumor markers, including CYFRA, pro-GRP, CEA, and CA19-9, were all negative.\n\n**Current Status:**\nThe patient is currently undergoing further evaluation and treatment for the mediastinal mass. The exact treatment plan has not been disclosed in this report.\n\n**Outcomes:**\nThe patient's current condition and potential outcomes are unknown at this time. Further follow-up will be necessary to determine the effectiveness of any treatments and to monitor for any changes in the patient's condition.", + "bertscore": { + "precision": [ + 0.32771092653274536 + ], + "recall": [ + 0.4161722660064697 + ], + "f1": [ + 0.3666817843914032 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 6, + "edge_count": 5, + "avg_in_degree": 0.8333333333333334, + "density": 0.16666666666666666 + }, + "trajectory_embedding": [ + 0.3709355294704437, + 0.02028684876859188, + -0.037475328892469406, + 0.05414177477359772, + 0.11516084522008896, + 0.028672976419329643, + 0.002444108249619603, + 0.26623213291168213, + 0.3955191671848297, + -0.28058165311813354, + -0.18973876535892487, + 0.09418404847383499, + -0.6652488708496094, + -0.08837980031967163, + -0.3189680576324463, + 0.20539359748363495, + 0.10319840908050537, + 0.2507036030292511, + 0.034279193729162216, + -0.3032603859901428, + -0.44427958130836487, + 0.13780498504638672, + -0.45548200607299805, + -0.0463419146835804, + 0.23697422444820404, + -0.03626028075814247, + 0.41235625743865967, + 0.4622861444950104, + 0.22280657291412354, + 0.33370402455329895, + 0.08998050540685654, + 0.029371509328484535, + 0.11711568385362625, + 0.12784217298030853, + -0.2734856605529785, + 0.31026971340179443, + 0.23015107214450836, + 0.44062912464141846, + -0.02818652056157589, + 0.030641110613942146, + -0.006273791193962097, + -0.07089275866746902, + 0.9742924571037292, + 0.16635195910930634, + 0.47703030705451965, + -0.8083966374397278, + -0.0541016049683094, + 0.4484868049621582, + -0.4058903455734253, + -0.36903855204582214, + 0.10004440695047379, + 0.7282070517539978, + 0.48205241560935974, + -0.2034728080034256, + 0.4727686941623688, + -0.1137661561369896, + -0.2854260206222534, + -0.2783154249191284, + -0.23026008903980255, + 0.06855695694684982, + -0.06712787598371506, + -0.2664113938808441, + 0.3383827209472656, + -0.025055130943655968, + -0.1901993304491043, + -0.07115602493286133, + -0.21020036935806274, + 0.08970417827367783, + 0.013906293548643589, + -0.44624412059783936, + -0.02943798340857029, + -0.17864204943180084, + 0.0071489461697638035, + 0.04120977967977524, + 0.15927816927433014, + -0.10326626896858215, + 0.43982136249542236, + -0.12170781940221786, + 0.060487162321805954, + 0.26813143491744995, + -0.05804603919386864, + -0.0345066674053669, + 0.11151840537786484, + 0.27978721261024475, + -0.373654842376709, + 0.15464907884597778, + -0.023095345124602318, + -0.2016644924879074, + -0.2683722674846649, + 0.084203340113163, + 0.212515726685524, + -0.2508123219013214, + -0.02851727418601513, + -0.26750829815864563, + -0.04771529138088226, + 0.08708786219358444, + 0.29861557483673096, + 0.32486313581466675, + 0.8982602953910828, + 0.03220728412270546, + 0.09015234559774399, + 0.06618078798055649, + 0.26319169998168945, + 0.17664267122745514, + 0.459599107503891, + -0.06067446991801262, + 0.07814925163984299, + -0.55216383934021, + 0.22145207226276398, + 0.2868025600910187, + 0.05365445092320442, + -0.04029693081974983, + -0.022756367921829224, + -0.26143500208854675, + 0.2144930362701416, + 0.11377083510160446, + -0.09022236615419388, + 0.13659396767616272, + 0.21302317082881927, + -0.5276404023170471, + -0.11805599182844162, + 0.09615673869848251, + 0.18943308293819427, + 0.40989089012145996, + -0.33967623114585876, + 0.03003213368356228, + -0.25296202301979065, + 0.01777634583413601, + 0.05463758111000061, + 0.031284283846616745, + -0.6666356921195984, + -0.1602512151002884, + -0.056051645427942276, + 0.2529575228691101, + -0.09577626734972, + 0.22955743968486786, + -0.34167924523353577, + 0.031935837119817734, + -1.0398658514022827, + 0.27944672107696533, + -0.3510766327381134, + -0.11969054490327835, + 0.04185105860233307, + -0.37915992736816406, + -0.14408539235591888, + -0.23457372188568115, + -0.254799485206604, + 0.16993707418441772, + -0.04182658717036247, + -0.038153041154146194, + -0.05397158861160278, + 0.13948701322078705, + 0.196094810962677, + 0.2367267608642578, + 0.17823736369609833, + 0.13065539300441742, + 0.13852964341640472, + 0.24026137590408325, + 0.10159587860107422, + -0.1413310319185257, + 0.04598592594265938, + 0.21540939807891846, + 0.138239786028862, + -0.04086802527308464, + -0.07847775518894196, + -0.6931713223457336, + 0.12233629077672958, + -0.16755802929401398, + 0.13973216712474823, + 0.07444192469120026, + -0.31143471598625183, + 0.18391770124435425, + -0.2780292332172394, + 0.6395820379257202, + 0.16344054043293, + 0.3540366590023041, + -0.10454652458429337, + -0.14396260678768158, + 0.030690347775816917, + 0.07247544080018997, + 0.11944669485092163, + -0.06266411393880844, + 0.746099054813385, + 0.01752152293920517, + -0.21736067533493042, + 0.2475283294916153, + 0.378029465675354, + 0.05681362748146057, + -0.11917641013860703, + 0.05530008301138878, + 0.266002893447876, + -0.399318128824234, + 0.27910852432250977, + -0.5343899130821228, + -0.08214003592729568, + 0.14426210522651672, + -0.2697894275188446, + -0.07997474819421768, + 0.1840706616640091, + -0.017933830618858337, + 0.26634034514427185, + -0.131731316447258, + -0.25243809819221497, + 0.0835283175110817, + -0.031968142837285995, + -0.2028936743736267, + 0.39749446511268616, + 0.08120900392532349, + 0.09946431964635849, + 0.044041216373443604, + -0.02546260692179203, + 0.0724339559674263, + -0.16407684981822968, + 0.22411991655826569, + 0.03629983589053154, + -0.2842733561992645, + 0.33837684988975525, + -0.0886438712477684, + -0.1465633660554886, + 0.12527425587177277, + -0.18053577840328217, + -0.2895483672618866, + -0.012816091068089008, + -0.09556851536035538, + -0.35394033789634705, + 0.07229036837816238, + 0.08070308715105057, + 0.3121176064014435, + 0.20461921393871307, + 4.905710738967173e-05, + 0.08992432802915573, + -0.5199697613716125, + 0.2083672434091568, + -0.1663612723350525, + -0.06205447390675545, + -0.32892054319381714, + 0.17776262760162354, + -0.2799549698829651, + -0.0972403958439827, + 0.33253905177116394, + -0.08071468025445938, + -0.18257148563861847, + 0.17165090143680573, + -0.25163665413856506, + -0.08720184117555618, + -0.19364477694034576, + 0.054671499878168106, + 0.252407044172287, + 0.11490911990404129, + 0.2826528251171112, + 0.11767617613077164, + -0.12336000800132751, + 0.09276566654443741, + -0.27731582522392273, + -0.18298964202404022, + -0.47671476006507874, + -0.14202189445495605, + 0.018496515229344368, + -0.5993802547454834, + 0.16801469027996063, + 0.07973194867372513, + -0.0013876160373911262, + -0.045653682202100754, + -0.33230581879615784, + -0.0012772331247106194, + 0.163445845246315, + -0.03922129049897194, + 0.0017722795018926263, + -0.11665167659521103, + 0.07872911542654037, + -0.1943618804216385, + -0.3483332395553589, + -0.17248861491680145, + -0.07338465750217438, + 0.09968247264623642, + -0.1182420626282692, + -0.2505466639995575, + -0.11424145847558975, + 0.0013127898564562201, + -0.3670210838317871, + -0.1848040670156479, + 0.2742825448513031, + -0.1507759839296341, + 0.21252095699310303, + 0.05632394924759865, + 0.3326179087162018, + 0.2063983678817749, + 0.029591435566544533, + 0.18057890236377716, + 0.4103676974773407, + 0.3709429204463959, + -0.017779624089598656, + -0.034606318920850754, + -0.007724908646196127, + 0.045695602893829346, + -0.08002155274152756, + -0.38533344864845276, + 0.3793017566204071, + 0.1071031391620636, + 0.10296451300382614, + 0.07069254666566849, + 0.36779657006263733, + 0.005441606044769287, + -0.38927093148231506, + -0.10069600492715836, + 0.5456685423851013, + 0.08541423082351685, + -0.10129161924123764, + 0.10961446166038513, + 0.4655693769454956, + 0.4668560028076172, + -0.13056431710720062, + -0.04956544563174248, + 0.07061590999364853, + -0.18177707493305206, + -0.19679050147533417, + 0.00557708740234375, + 0.030663222074508667, + 0.3181333541870117, + -0.22169052064418793, + -0.06409766525030136, + 0.08539265394210815, + -0.09472513943910599, + 0.02657811902463436, + -0.13223829865455627, + -0.06731923669576645, + 0.06616104394197464, + -0.2302129715681076, + 0.3475155830383301, + -0.024517090991139412, + -0.08968755602836609, + 0.36126482486724854, + -0.19020330905914307, + -0.12211353331804276, + 0.016083644703030586, + -0.1588137298822403, + -0.5854529738426208, + 0.2755095958709717, + -0.22289706766605377, + -0.06993339955806732, + 0.4869135916233063, + 0.02377251349389553, + -0.01966768503189087, + -0.22424434125423431, + 0.5707665085792542, + 0.0332067646086216, + -0.07919532060623169, + -0.09923072904348373, + 0.029870420694351196, + 0.3073720335960388, + 0.620812177658081, + 0.13559965789318085, + 0.11281317472457886, + 0.6109906435012817, + 0.07495584338903427, + -0.38919031620025635, + -0.03515588864684105, + 0.0705595538020134, + 0.38878393173217773, + -0.17647235095500946, + -0.03561626002192497, + -0.12750737369060516, + 0.046741604804992676, + 0.10039909929037094, + -0.26356813311576843, + 0.01847011409699917, + 0.17721039056777954, + 0.08190552890300751, + -0.15950541198253632, + 0.2770512104034424, + 0.27112850546836853, + 0.0032518028747290373, + 0.35945752263069153, + -0.03184210881590843, + -0.10654445737600327, + 0.31992119550704956, + -0.3528558015823364, + 0.30592310428619385, + -0.09975346177816391, + -0.3961990773677826, + -0.36672520637512207, + -0.08207137137651443, + -0.12775923311710358, + -0.15936477482318878, + -0.12913481891155243, + -0.14401943981647491, + 0.11254676431417465, + -0.21620482206344604, + 0.29483357071876526, + -0.02212226577103138, + 0.16408224403858185, + 0.28115084767341614, + 0.3112162947654724, + 0.014696106314659119, + -0.2842748761177063, + 0.1381203979253769, + -0.11081848293542862, + 0.023555338382720947, + -0.11826885491609573, + -0.028673557564616203, + -0.2336243838071823, + 0.3967522382736206, + -0.04588780924677849, + 0.06092504784464836, + 0.1695277839899063, + 0.03718129172921181, + -0.1571987122297287, + -0.3715645372867584, + -0.13805319368839264, + -0.2159808874130249, + 0.014071543700993061, + -0.062045980244874954, + -0.029517801478505135, + -0.2533939778804779, + -0.23368202149868011, + -0.10982626676559448, + 0.08790113776922226, + 0.18961910903453827, + -0.12231236696243286, + 0.09637051075696945, + 0.3742850720882416, + 0.07072962075471878, + 0.3380357325077057, + -0.15378595888614655, + 0.008451796136796474, + 0.0217405017465353, + -0.37453365325927734, + -0.04701484739780426, + 0.0825422927737236, + -0.21404147148132324, + -0.19463223218917847, + 0.1623048633337021, + 0.28620991110801697, + -0.021477246657013893, + -0.12872157990932465, + 0.029457636177539825, + 0.3231445550918579, + -0.3518469035625458, + -0.17393644154071808, + 0.30389854311943054, + 0.1622898429632187, + 0.43758201599121094, + 0.07941227406263351, + -0.4650561809539795, + -0.15175531804561615, + 0.014103827066719532, + -0.44769176840782166, + -0.03098767064511776, + 0.3260617256164551, + -0.09110008925199509, + -0.11422155052423477, + 0.236707404255867, + -0.07638227194547653, + -0.06458715349435806, + 0.2565923035144806, + -0.23569516837596893, + 0.10280736535787582, + -0.056856125593185425, + -0.3487948179244995, + -0.14487729966640472, + -0.0796872079372406, + -0.25821229815483093, + -0.23597203195095062, + 0.4058920443058014, + 0.3858674466609955, + -0.27958741784095764, + 0.04305463656783104, + 0.18564464151859283, + -0.2107892483472824, + -0.3172265291213989, + -0.03658689185976982, + -0.35205087065696716, + 0.3962737023830414, + 0.059922248125076294, + -0.2386809140443802, + -0.00026689842343330383, + -0.2927051782608032, + 0.27056190371513367, + 0.0911899209022522, + 0.16944991052150726, + 0.42741313576698303, + 0.1214321032166481, + 0.1978882998228073, + 0.504374623298645, + 0.005633448716253042, + -0.0613153874874115, + 0.28258535265922546, + 0.05107240006327629, + 0.10605745762586594, + -0.2907721698284149, + -0.18825924396514893, + 0.2586396634578705, + -0.14710770547389984, + -0.10500334948301315, + 0.2620963454246521, + 0.2566259205341339, + -0.540591835975647, + -0.2529936730861664, + -0.0848318338394165, + 0.08593673259019852, + -0.06006813049316406, + -0.34598326683044434, + -0.14251643419265747, + -0.012761905789375305, + -0.11474955081939697, + -0.19960592687129974, + 0.3545219600200653, + 0.5344975590705872, + 0.025902435183525085, + 0.19099824130535126, + -0.33758866786956787, + -0.5173699855804443, + 0.1538613885641098, + 0.1805286854505539, + 0.06669548898935318, + -0.05540475249290466, + -0.1932937651872635, + 0.25104963779449463, + 0.43209215998649597, + -0.09778454899787903, + 0.12862829864025116, + 0.16517917811870575, + 0.06068188324570656, + -0.04963122680783272, + 0.06131303682923317, + -0.008265641517937183, + 0.10755834728479385, + -0.43452128767967224, + 0.3819529712200165, + -0.36276260018348694, + -0.3239673376083374, + 0.2665066719055176, + -0.045710813254117966, + -0.4091401994228363, + -0.27975839376449585, + 0.3073151409626007, + -0.14196984469890594, + 0.004132451955229044, + 0.11910352855920792, + 0.3948761224746704, + 0.031736768782138824, + -0.41514846682548523, + 0.09525658935308456, + -0.37080156803131104, + -0.259764701128006, + 0.06238173320889473, + -0.14729230105876923, + -0.12905482947826385, + -0.18828816711902618, + 0.3396526873111725, + 0.5465343594551086, + 0.14795686304569244, + -0.3229002356529236, + 0.04911140725016594, + 0.22349786758422852, + 0.20098602771759033, + -0.2806161940097809, + -10.61640453338623, + 0.004836500156670809, + -0.22633744776248932, + 0.5599594116210938, + -0.18089421093463898, + 0.006466247141361237, + 0.08144813776016235, + -0.11233105510473251, + 0.20984749495983124, + 0.18082423508167267, + -0.21274691820144653, + 0.029586076736450195, + 0.39225268363952637, + 0.3088441491127014, + 0.023165667429566383, + -0.2280430644750595, + -0.15842244029045105, + 0.14725680649280548, + 0.01297034788876772, + 0.3040338158607483, + 0.1762946993112564, + 0.4603245258331299, + -0.309648334980011, + 0.3325744569301605, + 0.19440679252147675, + -0.26723408699035645, + -0.15502987802028656, + 0.648459792137146, + 0.16438449919223785, + -0.2613111734390259, + 0.21759414672851562, + 0.22437064349651337, + -0.3554794490337372, + 0.23845221102237701, + -0.030861137434840202, + -0.23855642974376678, + 0.009867730550467968, + 0.13714003562927246, + 0.32355716824531555, + -0.2079150229692459, + 0.055450666695833206, + -0.20365482568740845, + 0.19912000000476837, + 0.21597127616405487, + -0.09915235638618469, + -0.47468945384025574, + -0.08271792531013489, + -1.429166316986084, + 0.269686222076416, + 0.41136956214904785, + 0.31794190406799316, + 0.07572992891073227, + 0.2117326855659485, + 0.21211153268814087, + -0.24880929291248322, + 0.024969441816210747, + -0.2851804792881012, + -0.12610290944576263, + 0.13055236637592316, + -0.07891478389501572, + 0.12094976752996445, + -0.1530510038137436, + 0.4795483648777008, + -0.08171482384204865, + -0.4182301461696625, + 0.033216141164302826, + 0.2239665538072586, + -0.08204814046621323, + -0.2721644341945648, + -0.6553576588630676, + -0.49013566970825195, + 0.05762360617518425, + -0.08884841948747635, + -0.002567797899246216, + 0.5008339285850525, + 0.04166834056377411, + -0.22496098279953003, + 0.25112268328666687, + -0.059415388852357864, + 0.3896584212779999, + 0.08378197997808456, + -0.07708150148391724, + 0.18656300008296967, + -0.10361650586128235, + -0.3212064504623413, + -0.20315741002559662, + 0.10339675098657608, + 0.643303632736206, + -0.10437323898077011, + -0.0773632600903511, + -0.09517675638198853, + 0.3152387738227844, + -0.04029890522360802, + -0.1806795448064804, + -0.4967038631439209, + 0.11987921595573425, + -0.18107642233371735, + 0.0642847791314125, + 0.1074148640036583, + -0.0740354135632515, + 0.0033364940900355577, + -0.02597319521009922, + -0.18950916826725006, + -0.5044722557067871, + -0.35946670174598694, + 0.19920969009399414, + 0.020135732367634773, + 0.29015153646469116, + 0.09725961089134216, + -0.16331429779529572, + -0.22278033196926117, + 0.05476031079888344, + 0.06840407848358154, + 0.7345065474510193, + 0.133744478225708, + -0.0048807524144649506, + 0.02288263477385044, + -0.4647581875324249, + -0.17210298776626587, + 0.16783495247364044, + 0.3405397832393646, + -0.08639329671859741, + 0.23816430568695068, + 0.669089138507843, + -0.055476535111665726, + -0.12739965319633484, + 1.0224874019622803, + -0.34021472930908203, + 0.28846606612205505, + -0.1920805126428604, + 0.2597421407699585, + 0.04337356612086296, + -0.45412933826446533, + 0.10811761766672134, + 0.44080421328544617, + -0.26053622364997864, + 0.6524688601493835, + 0.32140088081359863, + -0.46496903896331787, + 0.07720009237527847, + -0.2379464954137802, + 0.48834407329559326, + 0.3247201442718506, + 0.21568578481674194, + -0.018112363293766975, + -0.18466125428676605, + -0.30857929587364197, + -0.10561958700418472, + -0.4217849671840668, + -0.3501027822494507, + -0.10938239097595215, + 0.23045717179775238, + 0.11362884193658829, + -0.23097173869609833, + 0.33312419056892395, + 0.2232857346534729, + -0.18179292976856232, + -0.24263973534107208, + -0.5486912131309509, + -0.04603523388504982, + 0.10174617916345596, + 0.7319938540458679, + -0.17953132092952728, + 0.12761308252811432, + -0.16813963651657104, + 0.09682377427816391, + -0.07148442417383194, + 0.298421174287796, + 0.05831749737262726, + -0.07242394238710403, + -0.5346640944480896, + 0.11538214236497879, + 0.251813679933548, + -0.28705617785453796, + -0.25596556067466736, + -0.06288617104291916, + -0.16501039266586304, + -0.0160530898720026, + -0.1574195772409439, + 0.08763670176267624, + 0.364540696144104, + -0.03617069125175476, + -0.07612655311822891, + -0.39584532380104065, + 0.17263515293598175, + 0.10925782471895218, + 0.19620095193386078, + 0.221194788813591, + -0.32877370715141296, + -0.2730632424354553, + -0.5231608152389526, + 0.13386638462543488, + -0.24350003898143768, + -0.04871968552470207, + 0.036523785442113876, + 0.14355482161045074, + -0.2647777497768402, + 0.010369881987571716, + -0.14041107892990112, + -0.022885939106345177, + -0.08430659770965576, + 0.3382740318775177, + 0.37681302428245544, + -0.10922961682081223, + 0.18540708720684052, + -0.19820082187652588, + 0.17190410196781158, + 0.013123612850904465, + -0.32454729080200195, + 0.2598307132720947, + -0.21498900651931763 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/graph_068.json b/src/benchmark/output/results/graph_068.json new file mode 100644 index 0000000..d012c40 --- /dev/null +++ b/src/benchmark/output/results/graph_068.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is an adult male with no specified age or background information provided. However, based on the clinical data, it appears that the patient has a history of lung cancer.\n\n**Timeline of Diagnoses:**\n\n1. **September 2021:** The patient presented to The First Affiliated Hospital of Dalian Medical University with complaints of chest pain and fatigue for half a year. A CT scan revealed partial solid nodules in the posterior segment of the upper lobe of the right lung, which were later diagnosed as malignant neoplasm of bronchus and lung (C34).\n2. **Multiple small lung nodules in both lungs:** Following the initial diagnosis, the patient developed multiple small lung nodules in both lungs, accompanied by abnormal blood test results (lymphocytopenia and neutrophilia). This led to a decision to proceed with surgical resection of lung tissue.\n3. **November 2022:** The patient underwent surgical resection of lung tissue, which revealed invasive adenocarcinoma in the upper lobe of the right lung. The cancer was diagnosed as C2330808 (Adenocarcinoma, Invasive).\n4. **January 2024:** A CT examination revealed recurrent tumor shrinkage of about 7 mm * 9 mm.\n\n**Timeline of Treatments:**\n\n1. **Surgical resection of lung tissue:** The patient underwent surgical resection of lung tissue in November 2022.\n2. **No second surgical treatment:** The patient refused a second surgical treatment for the recurrence of primary cancer, which presented as ground glass nodules in the left lung.\n\n**Timeline of Outcomes:**\n\n1. **Pathological diagnosis:** The pathological diagnosis of invasive adenocarcinoma was confirmed post-surgery in November 2022.\n2. **Recurrence of primary cancer:** The patient developed recurrence of primary cancer with ground glass nodules in the left lung and new symptoms (fatigue, pale tongue, white fur, and weak pulse) in November 2022.\n3. **Recurrent tumor shrinkage:** A CT examination revealed recurrent tumor shrinkage of about 7 mm * 9 mm in January 2024.\n\n**Clinical Findings:**\n\nThroughout the patient's treatment, various clinical findings were reported, including:\n\n* Chest pain and fatigue\n* Multiple small lung nodules in both lungs\n* Abnormal blood test results (lymphocytopenia and neutrophilia)\n* Invasive adenocarcinoma in the upper lobe of the right lung\n* Ground glass nodules in the left lung\n* Recurrent tumor shrinkage\n\n**Laboratory Results:**\n\nThe patient's laboratory results showed:\n\n* Normal blood work (January 2024)\n* Elevated carcinoembryonic antigen level (November 2022)\n\n**Imaging Results:**\n\nThe patient underwent various imaging studies, including CT scans and pathology reports, which revealed:\n\n* Partial solid nodules in the posterior segment of the upper lobe of the right lung (September 2021)\n* Multiple small lung nodules in both lungs\n* Invasive adenocarcinoma in the upper lobe of the right lung\n* Ground glass nodules in the left lung\n* Recurrent tumor shrinkage\n\n**Prognosis:**\nThe patient's prognosis remains uncertain, as the cancer has recurred and treatment options are limited. Further evaluation and management are necessary to determine the best course of action.\n\n**Conclusion:**\nThis clinical case report highlights the complexities of managing lung cancer, particularly in cases where recurrence occurs. The patient's treatment plan will require careful consideration of various factors, including the patient's overall health, tumor characteristics, and available treatment options.", + "bertscore": { + "precision": [ + 0.32128238677978516 + ], + "recall": [ + 0.4002746641635895 + ], + "f1": [ + 0.3564547002315521 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 7, + "edge_count": 6, + "avg_in_degree": 0.8571428571428571, + "density": 0.14285714285714285 + }, + "trajectory_embedding": [ + 0.257910817861557, + 0.11300678551197052, + -0.15380962193012238, + -0.04967570677399635, + -0.14522525668144226, + 0.06221002712845802, + 0.07804203033447266, + 0.17250725626945496, + 0.2976982593536377, + -0.48700565099716187, + -0.2710980474948883, + 0.19328932464122772, + -0.552730143070221, + -0.1464165896177292, + -0.4568333923816681, + 0.13878197968006134, + 0.02563413418829441, + 0.2673860490322113, + -0.019058991223573685, + -0.18468356132507324, + -0.4789164662361145, + 0.0781332477927208, + -0.2851276099681854, + -0.24811133742332458, + 0.20884834229946136, + -0.016835913062095642, + 0.25854167342185974, + 0.35525670647621155, + 0.21759851276874542, + 0.4681854546070099, + 0.2248246967792511, + 0.133042111992836, + -0.03714079037308693, + 0.05629848688840866, + -0.1767597198486328, + 0.43038496375083923, + 0.3032340407371521, + 0.32303494215011597, + -0.04867037013173103, + 0.06161421164870262, + 0.058320362120866776, + 0.12750902771949768, + 0.8212385177612305, + 0.41533976793289185, + 0.5168468356132507, + -0.679559588432312, + 0.07470003515481949, + 0.35858991742134094, + -0.5663052797317505, + -0.08274025470018387, + 0.07410455495119095, + 0.6897895932197571, + 0.6447339653968811, + -0.03358379378914833, + 0.40656599402427673, + -0.10406357795000076, + -0.5019628405570984, + -0.2848895490169525, + -0.3709580600261688, + 0.006552434526383877, + -0.08974719047546387, + -0.0024305772967636585, + 0.09557554870843887, + 0.03158172219991684, + -0.3938182294368744, + -0.13308726251125336, + -0.0766187384724617, + 0.1671714037656784, + 1.7858508726931177e-05, + -0.4156047999858856, + -0.3196241855621338, + -0.08988817036151886, + -0.09667807817459106, + 0.16465596854686737, + 0.08332294225692749, + -0.2664347290992737, + 0.2311166226863861, + 0.14017698168754578, + 0.15632550418376923, + 0.12526968121528625, + 0.09520483016967773, + 0.07731276750564575, + 0.07999370992183685, + 0.15698719024658203, + -0.38738980889320374, + 0.11310368031263351, + -0.122066430747509, + -0.1456766575574875, + -0.2630731761455536, + 0.2728005647659302, + 0.25551721453666687, + -0.17390330135822296, + -0.17627640068531036, + -0.08535031229257584, + 0.1371786743402481, + 0.07251978665590286, + 0.2027861624956131, + 0.4604012072086334, + 0.9338180422782898, + 0.014508937485516071, + 0.15948785841464996, + 0.13478852808475494, + 0.23506386578083038, + 0.04120669886469841, + 0.47317975759506226, + -0.10579004138708115, + 0.1435161530971527, + -0.5643869042396545, + -0.0015329867601394653, + 0.5455747246742249, + -0.0219764094799757, + -0.036088209599256516, + 0.025912806391716003, + -0.34990420937538147, + 0.04349283128976822, + 0.021924296393990517, + -0.16728831827640533, + 0.17924459278583527, + 0.13912682235240936, + -0.3372514545917511, + 0.04560248181223869, + -0.0229333508759737, + 0.3301222026348114, + 0.2795155346393585, + -0.4968406558036804, + 0.015529283322393894, + -0.18602527678012848, + 0.11655867099761963, + 0.07062103599309921, + 0.053703151643276215, + -0.4289408326148987, + -0.1267450600862503, + -0.0052694897167384624, + 0.17655329406261444, + -0.08067993819713593, + 0.37970200181007385, + -0.32298213243484497, + -0.03782970458269119, + -1.0430104732513428, + 0.17690931260585785, + -0.41261714696884155, + -0.19421198964118958, + 0.07163189351558685, + -0.309453547000885, + -0.22980134189128876, + -0.18007990717887878, + -0.14290952682495117, + 0.24436593055725098, + -0.09717380255460739, + -0.11724849790334702, + -0.1623566448688507, + 0.1656780242919922, + 0.03994229808449745, + 0.3269713222980499, + 0.11053980141878128, + 0.11616048961877823, + 0.11836142838001251, + 0.20040975511074066, + 0.102094367146492, + -0.07785135507583618, + -0.007163951639086008, + 0.2859248220920563, + -0.032562918961048126, + -0.14833112061023712, + -0.008867095224559307, + -0.6301792860031128, + 0.2578873634338379, + -0.326127290725708, + 0.3455800414085388, + 0.10990671068429947, + -0.23336918652057648, + 0.08967093378305435, + -0.17060354351997375, + 0.6361510157585144, + 0.29917603731155396, + 0.38942641019821167, + 0.1329830139875412, + -0.03214949741959572, + 0.02214880660176277, + 0.1379566341638565, + 0.1067245677113533, + 0.10406391322612762, + 0.5688046216964722, + 0.07914479076862335, + -0.2788706123828888, + 0.16789428889751434, + 0.365398645401001, + -0.1660861223936081, + -0.16790124773979187, + -0.17871248722076416, + 0.4429779648780823, + -0.2852441668510437, + 0.2592916190624237, + -0.46805912256240845, + -0.06363794952630997, + 0.027121590450406075, + -0.36002108454704285, + -0.32579126954078674, + 0.17554299533367157, + -0.14457689225673676, + 0.16129231452941895, + 0.08408020436763763, + -0.1657658964395523, + 0.1598348617553711, + 0.11962132900953293, + -0.13328878581523895, + 0.4140895903110504, + 0.016213973984122276, + 0.0763547420501709, + -0.2014019936323166, + -0.22820483148097992, + 0.2024112045764923, + -0.07958986610174179, + 0.3245660662651062, + 0.13307632505893707, + -0.19950516521930695, + 0.1922171413898468, + -0.10051142424345016, + -0.0259255301207304, + 0.202180415391922, + -0.041997142136096954, + 0.0012015923857688904, + 0.1957121193408966, + -0.01669490896165371, + -0.4792470633983612, + 0.2618766725063324, + 0.15061260759830475, + 0.17356610298156738, + 0.17918694019317627, + -0.1169610396027565, + 0.12071911245584488, + -0.21224723756313324, + 0.27193012833595276, + -0.09437282383441925, + -0.19468651711940765, + -0.2538995146751404, + 0.2276444286108017, + -0.22820214927196503, + -0.09768296778202057, + 0.40628817677497864, + -0.234662726521492, + -0.20958593487739563, + 0.17395827174186707, + -0.28271549940109253, + -0.1604999303817749, + -0.24928922951221466, + 0.07390798628330231, + 0.2517296373844147, + 0.20566269755363464, + 0.3778197467327118, + 0.18780432641506195, + -0.031177373602986336, + 0.13938194513320923, + -0.35594186186790466, + -0.06270204484462738, + -0.3875791132450104, + -0.05299249291419983, + -0.15581496059894562, + -0.43189939856529236, + -0.10690911114215851, + 0.09435353428125381, + -0.26190605759620667, + 0.2100285291671753, + -0.39513131976127625, + -0.16501006484031677, + 0.08892975747585297, + -0.1010013297200203, + 0.14383026957511902, + -0.23211108148097992, + 0.30838486552238464, + -0.25435084104537964, + -0.18839368224143982, + -0.09086290746927261, + 0.0402226559817791, + 0.32440900802612305, + 0.02355138771235943, + 0.022190028801560402, + 0.0861833468079567, + 0.10816608369350433, + -0.4298248589038849, + -0.336774617433548, + 0.13587817549705505, + -0.25500306487083435, + 0.23458942770957947, + -0.1441519558429718, + 0.1892801970243454, + 0.5324669480323792, + -0.02555871196091175, + 0.19611819088459015, + 0.3758634924888611, + 0.5762526392936707, + 0.17223426699638367, + -0.1804651916027069, + -0.05172509700059891, + 0.0014566077152267098, + -0.09912760555744171, + -0.4437260627746582, + 0.21475696563720703, + -0.10044058412313461, + 0.03050301969051361, + -0.10264978557825089, + 0.17729809880256653, + 0.014340017922222614, + -0.3781067728996277, + -0.20162799954414368, + 0.6308273673057556, + 0.22443614900112152, + 0.12554390728473663, + 0.10289487987756729, + 0.38225558400154114, + 0.5230599045753479, + -0.06768714636564255, + -0.25093701481819153, + -0.055451951920986176, + -0.1952861100435257, + -0.1934734582901001, + -0.2511402666568756, + 0.03232553228735924, + 0.21090854704380035, + -0.08662402629852295, + -0.08637242019176483, + 0.24084079265594482, + -0.11112572252750397, + -0.16587631404399872, + 0.021634820848703384, + 0.06401766091585159, + 0.1695651262998581, + -0.401689738035202, + 0.17993757128715515, + -0.1848776638507843, + -0.071177639067173, + 0.4663868248462677, + -0.14145983755588531, + -0.30292361974716187, + 0.2356678992509842, + 0.0054202997125685215, + -0.33236318826675415, + 0.3066963255405426, + -0.3104722797870636, + 0.021008459851145744, + 0.34235307574272156, + -0.16197632253170013, + -0.09682395309209824, + -0.20880649983882904, + 0.09334950894117355, + 0.09295223653316498, + -0.01833457686007023, + -0.10675712674856186, + 0.10031618177890778, + 0.18376269936561584, + 0.6338824033737183, + 0.14719250798225403, + -0.061250608414411545, + 0.3609916865825653, + -0.08907049149274826, + -0.23203401267528534, + -0.028914181515574455, + 0.015907661989331245, + 0.18478600680828094, + -0.1589738428592682, + -0.3454917371273041, + -0.20965316891670227, + 0.2043069303035736, + 0.08620325475931168, + -0.36280354857444763, + -0.0058339363895356655, + 0.14572790265083313, + 0.0383317731320858, + 0.037166450172662735, + 0.27156952023506165, + 0.4179667830467224, + 0.010855287313461304, + 0.5978474617004395, + 0.10450074821710587, + 0.04088432341814041, + 0.3417457938194275, + -0.07894221693277359, + 0.2239762246608734, + -0.16890788078308105, + -0.35792964696884155, + -0.4607165455818176, + 0.008754143491387367, + -0.18909214437007904, + -0.19390001893043518, + 0.05790316313505173, + -0.002972081769257784, + 0.05440378561615944, + -0.17599141597747803, + 0.19892607629299164, + -0.07598540931940079, + 0.08387656509876251, + 0.08871302753686905, + 0.4303794205188751, + -0.12228763848543167, + -0.23714081943035126, + 0.30283620953559875, + -0.016660790890455246, + 0.24756070971488953, + -0.09654510021209717, + -0.193336620926857, + -0.17527355253696442, + 0.3275286853313446, + -0.06291978806257248, + -0.034940946847200394, + -0.032658882439136505, + -0.060590360313653946, + -0.2374279499053955, + -0.2899346649646759, + -0.040939442813396454, + -0.18875372409820557, + -0.18698661029338837, + -0.1081521064043045, + 0.12437715381383896, + -0.2138088047504425, + -0.2943722903728485, + -0.0444556288421154, + 0.1590350866317749, + 0.25248897075653076, + -0.14792773127555847, + 0.10739093273878098, + 0.23395469784736633, + 0.034710485488176346, + 0.3290145993232727, + -0.1953204721212387, + 0.10524509847164154, + -0.04479096457362175, + -0.25737708806991577, + -0.16353082656860352, + 0.10642571747303009, + -0.2869308888912201, + -0.10941682755947113, + 0.12703506648540497, + 0.23196367919445038, + 0.023255154490470886, + 0.03595578670501709, + -0.0015696244081482291, + 0.16496476531028748, + -0.37702757120132446, + -0.1228712946176529, + 0.25661811232566833, + -0.015411469154059887, + 0.46193763613700867, + 0.04135467857122421, + -0.26964786648750305, + -0.09547962993383408, + -0.17507517337799072, + -0.3632226288318634, + 0.192514106631279, + 0.10959605127573013, + 0.021600497886538506, + -0.05275629088282585, + 0.08311472088098526, + 0.047228723764419556, + -0.006591098848730326, + 0.335419625043869, + 0.015506991185247898, + 0.16610033810138702, + -0.04257791116833687, + -0.31140097975730896, + -0.11086351424455643, + -0.3570387363433838, + -0.1267203390598297, + -0.3058464825153351, + 0.4352256953716278, + 0.21142961084842682, + -0.20587600767612457, + 0.01921088993549347, + 0.22315014898777008, + -0.3580777049064636, + -0.21406105160713196, + -0.018174588680267334, + -0.07430107146501541, + 0.6013728976249695, + 0.11590957641601562, + -0.230387344956398, + 0.17042455077171326, + -0.26303163170814514, + 0.23465704917907715, + 0.1601210981607437, + 0.15655794739723206, + 0.3975866436958313, + 0.2466340959072113, + 0.030884066596627235, + 0.5256264209747314, + 0.14188574254512787, + -0.0005735818995162845, + 0.24675491452217102, + -0.0668097659945488, + 0.03410813957452774, + -0.11404989659786224, + -0.1723935306072235, + 0.4611855149269104, + -0.19366027414798737, + 0.1929199993610382, + 0.21703235805034637, + 0.24089619517326355, + -0.3656768202781677, + -0.32505765557289124, + -0.013640071265399456, + -0.12561489641666412, + -0.14239375293254852, + -0.28019729256629944, + -0.17725086212158203, + 0.09302232414484024, + -0.3797146677970886, + -0.011877929791808128, + 0.33361148834228516, + 0.26836803555488586, + 0.1832355409860611, + 0.14867854118347168, + -0.2718643248081207, + -0.549046516418457, + 0.03244709596037865, + 0.3028177320957184, + 0.04109968990087509, + -0.05554979667067528, + -0.1559552252292633, + 0.22826732695102692, + 0.5046679377555847, + -0.058798205107450485, + -0.035188425332307816, + 0.017042379826307297, + -0.04334796592593193, + -0.096144899725914, + 0.11144337803125381, + -0.13208167254924774, + -0.11256126314401627, + -0.2553696036338806, + 0.17507793009281158, + -0.27199405431747437, + -0.35706278681755066, + 0.0870698019862175, + -0.13155190646648407, + -0.28870344161987305, + -0.17460618913173676, + 0.24993896484375, + -0.1518329530954361, + -0.05495179817080498, + 0.20044134557247162, + 0.5630549788475037, + 0.23897819221019745, + -0.19199791550636292, + 0.1335974782705307, + -0.4680521488189697, + -0.09780969470739365, + 0.21133430302143097, + -0.18471264839172363, + 0.035050928592681885, + 0.06235470995306969, + 0.39093461632728577, + 0.3089151978492737, + 0.13247427344322205, + -0.443920761346817, + -0.031239641830325127, + 0.19824740290641785, + 0.282096803188324, + -0.227371484041214, + -10.921643257141113, + -0.03881015256047249, + -0.11955142021179199, + 0.44315019249916077, + -0.17297972738742828, + 0.1154191642999649, + 0.16336701810359955, + -0.04355164244771004, + 0.1938946545124054, + 0.15325133502483368, + -0.32515648007392883, + 0.05140870064496994, + 0.21076002717018127, + 0.14866122603416443, + 0.04258067533373833, + -0.1140730008482933, + -0.2215823382139206, + 0.11299649626016617, + 0.049213673919439316, + 0.17940069735050201, + 0.3351728916168213, + 0.3969946503639221, + -0.15206965804100037, + 0.4012179970741272, + 0.3075217306613922, + -0.3096199333667755, + -0.21893838047981262, + 0.46285662055015564, + 0.05433392897248268, + -0.40873971581459045, + 0.20000895857810974, + 0.17597278952598572, + -0.18395327031612396, + -0.0980963185429573, + -0.03955435752868652, + -0.1916564553976059, + -0.1056063324213028, + 0.03228755295276642, + 0.09082381427288055, + -0.23321597278118134, + 0.045616038143634796, + -0.239066943526268, + 0.07958667725324631, + 0.3520508110523224, + -0.05643850564956665, + -0.43123215436935425, + -0.30093154311180115, + -1.4472496509552002, + 0.31958451867103577, + 0.24062666296958923, + 0.47002777457237244, + 0.07725192606449127, + 0.25205814838409424, + 0.09040461480617523, + -0.4781024754047394, + 0.07967328280210495, + -0.0885622426867485, + 0.0735144093632698, + 0.10490528494119644, + -0.10102032124996185, + 0.13732607662677765, + -0.16178952157497406, + 0.4973938465118408, + -0.22768403589725494, + -0.21819543838500977, + 0.1483512818813324, + -0.14249287545681, + -0.013923419639468193, + -0.004140827339142561, + -0.29926005005836487, + -0.5383898019790649, + -0.18086722493171692, + -0.06241372972726822, + 0.06002248078584671, + 0.3923259675502777, + -0.09438575059175491, + -0.4361092746257782, + 0.1807328462600708, + 0.0064940121956169605, + 0.3181244432926178, + 0.09866649657487869, + 0.02553069218993187, + 0.17628821730613708, + -0.11486543715000153, + -0.16882114112377167, + -0.2226882129907608, + -0.015100106596946716, + 0.39919859170913696, + 0.005192925687879324, + 0.026073921471834183, + -0.12851813435554504, + 0.2884746491909027, + -0.009317421354353428, + -0.33114033937454224, + -0.48016563057899475, + 0.06349640339612961, + -0.014390530064702034, + 0.0702880322933197, + 0.07262090593576431, + -0.11045648157596588, + -0.027649031952023506, + -0.1769273430109024, + 0.056880079209804535, + -0.489705353975296, + -0.2054206281900406, + 0.31949034333229065, + 0.1423395574092865, + 0.19040080904960632, + 0.2038942128419876, + 0.035608045756816864, + -0.034638501703739166, + -0.10403968393802643, + 0.28506919741630554, + 0.5592585802078247, + 0.030886664986610413, + -0.13787482678890228, + -0.16464214026927948, + -0.017582980915904045, + -0.4104207158088684, + 0.15400509536266327, + 0.38337764143943787, + -0.09984564781188965, + 0.4529314637184143, + 0.4032384753227234, + -0.04598564654588699, + -0.08253119140863419, + 0.9451876878738403, + -0.24790246784687042, + 0.17935578525066376, + -0.2555616796016693, + 0.27246150374412537, + -0.1169796958565712, + -0.299321711063385, + 0.005042029079049826, + 0.4223065674304962, + -0.320008248090744, + 0.6217605471611023, + 0.0398024246096611, + -0.46446695923805237, + 0.06261195987462997, + -0.10402078181505203, + 0.47655174136161804, + 0.3902003765106201, + 0.21526029706001282, + -0.10089581459760666, + -0.3213474154472351, + -0.25325459241867065, + 0.05054272338747978, + -0.30911463499069214, + -0.35181012749671936, + -0.10106396675109863, + 0.022647807374596596, + 0.022388502955436707, + -0.3158870041370392, + 0.38259002566337585, + 0.1236480325460434, + -0.19847598671913147, + -0.0909845381975174, + -0.5730968713760376, + -0.039837006479501724, + 0.35183098912239075, + 0.7271355390548706, + -0.025470752269029617, + -0.005656791385263205, + -0.1562054604291916, + 0.017243729904294014, + -0.043475788086652756, + 0.2513992488384247, + 0.02429349534213543, + -0.026223108172416687, + -0.5405780673027039, + 0.16676625609397888, + 0.04218953475356102, + -0.28371351957321167, + -0.1204003319144249, + -0.3467075526714325, + 0.09304962307214737, + -0.015151949599385262, + -0.12499912083148956, + 0.28778377175331116, + 0.36443331837654114, + -0.038726307451725006, + -0.02391372248530388, + -0.10095508396625519, + 0.23879598081111908, + 0.22273504734039307, + 0.2852991819381714, + 0.10914801061153412, + -0.09601807594299316, + -0.5023117661476135, + -0.4190657436847687, + 0.29546263813972473, + -0.22277162969112396, + -0.15266098082065582, + 0.1191401332616806, + 0.14395330846309662, + -0.335524320602417, + -0.03250269964337349, + -0.2945737838745117, + 0.07886723428964615, + -0.19570288062095642, + 0.0793914720416069, + 0.37023988366127014, + -0.17387816309928894, + 0.08216991275548935, + -0.2517470717430115, + 0.3181871473789215, + 0.022438665851950645, + -0.3121962249279022, + 0.2183285504579544, + -0.29422396421432495 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/graph_087.json b/src/benchmark/output/results/graph_087.json new file mode 100644 index 0000000..318b54b --- /dev/null +++ b/src/benchmark/output/results/graph_087.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 56-year-old non-smoking male with pulmonary carcinosarcoma.\n\n**Initial Presentation (Step 1):**\nOn January 28, 2023, the patient presented at The Third People\u2019s Hospital of Yunnan Province with a progressively enlarging mass in the right neck. Imaging findings revealed multiple nodular shadows of various sizes within the right cervical region posterior to the sternocleidomastoid muscle and adjacent to the carotid artery sheath, which partially fused.\n\n**Diagnosis (Step 2):**\nCT scans confirmed the presence of a pulmonary malignancy with cervical and mediastinal lymph node metastasis. The largest mass measured approximately 3.8 cm x 2.6 cm with indistinct margins and uneven ring-shaped enhancement.\n\n**Biopsy and Pathological Diagnosis (Step 3):**\nA CT-guided puncture biopsy of the mass in the left inferior lobe of the lung was performed, which led to a pathological diagnosis of lung carcinosarcoma.\n\n**Immunohistochemistry and NGS Testing (Step 4):**\nImmunohistochemistry revealed a Ki-67 index of 80%, while Next-Generation Sequencing (NGS) detected mutations in the TMB gene. These results further supported the presence of pulmonary carcinomas.\n\n**Timeline:**\n\n* January 28, 2023: Patient presents with progressively enlarging neck mass and imaging findings consistent with pulmonary malignancy.\n* January 28, 2023: CT-guided puncture biopsy is performed to confirm diagnosis.\n* (Date not specified): Immunohistochemistry and NGS testing are performed.\n\n**Outcomes:**\nThe patient's condition remains active, with ongoing management of the pulmonary carcinosarcoma. The results of immunohistochemistry and NGS testing have provided valuable information for further treatment planning.\n\nNote: The timeline is incomplete as some dates were not specified in the original data.", + "bertscore": { + "precision": [ + 0.3337828814983368 + ], + "recall": [ + 0.4093906879425049 + ], + "f1": [ + 0.3677407205104828 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 4, + "edge_count": 3, + "avg_in_degree": 0.75, + "density": 0.25 + }, + "trajectory_embedding": [ + 0.26591718196868896, + -0.01149221882224083, + -0.05490458011627197, + 0.09002448618412018, + 0.12090761959552765, + -0.02566247433423996, + 0.06007498502731323, + 0.25383898615837097, + 0.2421899437904358, + -0.4905059337615967, + -0.13693289458751678, + 0.12649738788604736, + -0.6974141597747803, + 0.05220205709338188, + -0.4585632383823395, + 0.09128075838088989, + 0.19116288423538208, + 0.33736515045166016, + 0.20399746298789978, + -0.1366174817085266, + -0.5366524457931519, + 0.14325380325317383, + -0.3938520550727844, + -0.22003361582756042, + 0.2763565480709076, + -0.13828757405281067, + 0.26946306228637695, + 0.39065390825271606, + 0.28081679344177246, + 0.20941975712776184, + -0.021269194781780243, + 0.05803205445408821, + -0.10231009125709534, + 0.07641473412513733, + -0.24658477306365967, + 0.31770482659339905, + 0.30015236139297485, + 0.2529020607471466, + -0.06250398606061935, + 0.10478872060775757, + 0.010389182716608047, + 0.013741150498390198, + 0.7951561212539673, + 0.22212618589401245, + 0.6838390827178955, + -0.6326733231544495, + 0.04047217220067978, + 0.5688554048538208, + -0.680841326713562, + -0.19903667271137238, + 0.09129107743501663, + 0.9155005216598511, + 0.5991806983947754, + -0.04953983426094055, + 0.41945120692253113, + -0.05501314252614975, + -0.4265047311782837, + -0.1075306087732315, + -0.3067843019962311, + 0.1665443480014801, + 0.03192378208041191, + -0.15232832729816437, + 0.18626531958580017, + -0.05157607048749924, + -0.35312244296073914, + -0.19599036872386932, + -0.2093559354543686, + 0.045759283006191254, + 0.012155687436461449, + -0.5244204998016357, + -0.327062726020813, + -0.08288201689720154, + -0.23973605036735535, + 0.08109693229198456, + 0.25429925322532654, + -0.25631025433540344, + 0.36183059215545654, + 0.1519981324672699, + -0.009220998734235764, + 0.22719216346740723, + 0.12203388661146164, + -0.18537288904190063, + 0.0468854159116745, + 0.23939333856105804, + -0.45602333545684814, + 0.16125860810279846, + -0.11851396411657333, + -0.055599600076675415, + -0.20591111481189728, + 0.11053580045700073, + 0.3805560767650604, + -0.06711959093809128, + -0.13524317741394043, + -0.20940275490283966, + 0.14989708364009857, + 0.023245546966791153, + 0.24723030626773834, + 0.42048966884613037, + 1.0676428079605103, + 0.00019805505871772766, + 0.258747398853302, + 0.09683284163475037, + 0.3800516128540039, + 0.11968780308961868, + 0.6178033947944641, + -0.01650042086839676, + 0.289710134267807, + -0.17485813796520233, + 0.0017641931772232056, + 0.3595304489135742, + 0.026484228670597076, + -0.10209359973669052, + 0.045070916414260864, + -0.22628095746040344, + 0.14339949190616608, + 0.23919814825057983, + -0.12023219466209412, + 0.166318878531456, + 0.18048357963562012, + -0.4693562984466553, + -0.051912691444158554, + -0.06720668077468872, + 0.3203240633010864, + 0.2555603086948395, + -0.44606807827949524, + -0.054738812148571014, + -0.22941914200782776, + 0.0716901421546936, + -0.04405885562300682, + 0.04440134018659592, + -0.5725164413452148, + -0.2273174226284027, + -0.024061400443315506, + 0.2981811463832855, + -0.17513903975486755, + 0.10784707963466644, + -0.40300437808036804, + -0.0037964098155498505, + -1.1383686065673828, + 0.24880048632621765, + -0.3056936264038086, + -0.11351403594017029, + 0.08574334532022476, + -0.31078672409057617, + -0.18952658772468567, + -0.24361519515514374, + -0.2369977980852127, + 0.02972540259361267, + 0.022009823471307755, + -0.19111812114715576, + -0.06640475988388062, + 0.12249793857336044, + 0.21704275906085968, + 0.3195517361164093, + 0.24677219986915588, + 0.15621249377727509, + 0.12167344242334366, + 0.24541166424751282, + 0.20779050886631012, + -0.13151510059833527, + 0.05605410039424896, + 0.24497650563716888, + 0.0902959331870079, + -0.023603245615959167, + 0.06993058323860168, + -0.6333256363868713, + 0.2476789653301239, + -0.3920873999595642, + 0.25470444560050964, + 0.03923548012971878, + -0.0565347746014595, + 0.1248915046453476, + -0.09725046157836914, + 0.5015400648117065, + 0.10165755450725555, + 0.4146695137023926, + -0.011445775628089905, + -0.2528352737426758, + 0.0030096769332885742, + 0.066905677318573, + -0.00508301705121994, + -0.1207534596323967, + 0.6170395612716675, + 0.16315220296382904, + -0.3064855933189392, + 0.26409727334976196, + 0.3644908666610718, + -0.2143092155456543, + 0.053608015179634094, + -0.1207704246044159, + 0.4798285961151123, + -0.1992984563112259, + 0.39461347460746765, + -0.5000622272491455, + -0.0560191348195076, + 0.14874961972236633, + -0.3289306163787842, + -0.375760555267334, + 0.1787140965461731, + -0.3201039433479309, + 0.1186957061290741, + 0.16628716886043549, + -0.22379128634929657, + 0.09523405134677887, + 0.18171370029449463, + -0.1160835474729538, + 0.3370267152786255, + 0.2980797290802002, + 0.012221883982419968, + -0.08274299651384354, + -0.20160479843616486, + 0.295451819896698, + -0.18905065953731537, + 0.29958099126815796, + 0.08492972701787949, + -0.17765316367149353, + 0.4785178303718567, + -0.05965906381607056, + -0.23587164282798767, + 0.09410808980464935, + -0.13395701348781586, + -0.1269397884607315, + 0.40571528673171997, + -0.09540663659572601, + -0.41550329327583313, + 0.2890357971191406, + 0.16908866167068481, + 0.08185970783233643, + 0.11542554199695587, + -0.07966802269220352, + -0.09897275269031525, + -0.2823992073535919, + 0.4196234941482544, + -0.11659608781337738, + -0.21994364261627197, + -0.17176280915737152, + 0.16924890875816345, + -0.14737264811992645, + -0.1987035572528839, + 0.5666136741638184, + -0.10828898847103119, + -0.13225102424621582, + 0.04008735716342926, + -0.2477116584777832, + -0.2206893265247345, + -0.18860270082950592, + 0.19892898201942444, + 0.4333099126815796, + 0.09945324808359146, + 0.37646690011024475, + 0.361336886882782, + -0.0294048935174942, + 0.3002912998199463, + -0.2910163402557373, + -0.3287873864173889, + -0.4788789749145508, + -0.12203575670719147, + -0.04261428862810135, + -0.3542187511920929, + 0.2015761137008667, + 0.0045067323371768, + -0.16664564609527588, + 0.13444514572620392, + -0.2596954107284546, + -0.038117293268442154, + 0.005160152912139893, + -0.1737871617078781, + 0.06649135053157806, + -0.10083063691854477, + 0.4040520489215851, + -0.11695312708616257, + -0.2353277951478958, + -0.08267872780561447, + -0.00713190995156765, + 0.21696628630161285, + 0.1293734312057495, + -0.02905123680830002, + 0.04111555218696594, + 0.10181955248117447, + -0.37525445222854614, + -0.20752593874931335, + 0.1316320300102234, + -0.21089839935302734, + 0.03408237174153328, + -0.11338970810174942, + 0.25957465171813965, + 0.5802068114280701, + -0.1450602114200592, + 0.09533525258302689, + 0.3792346715927124, + 0.5819066762924194, + 0.08950985968112946, + -0.005518749356269836, + -0.038632676005363464, + -0.08713217079639435, + 0.023707151412963867, + -0.488730788230896, + 0.31880080699920654, + -0.005287747830152512, + 0.05655728280544281, + 0.1678670346736908, + 0.4244734048843384, + -0.09835424274206161, + -0.41979488730430603, + -0.04430293291807175, + 0.5542852878570557, + 0.1576756238937378, + 0.02039998583495617, + 0.17387256026268005, + 0.2976800203323364, + 0.6870920658111572, + 0.011872969567775726, + -0.19080069661140442, + 0.20012670755386353, + -0.16408951580524445, + -0.40396374464035034, + -0.15138515830039978, + -0.05762047693133354, + 0.2482844442129135, + -0.1666419804096222, + -0.14353415369987488, + 0.19852463901042938, + -0.20900958776474, + -0.15274588763713837, + 0.1655704379081726, + 0.006531849503517151, + -0.060847826302051544, + -0.39920273423194885, + 0.37449249625205994, + -0.2445983588695526, + -0.29268303513526917, + 0.5046051740646362, + -0.2005026787519455, + -0.24327029287815094, + 0.45069313049316406, + -0.08288541436195374, + -0.5590108633041382, + 0.09368503838777542, + -0.25426018238067627, + -0.036611057817935944, + 0.34110504388809204, + -0.1377650946378708, + -0.15223625302314758, + -0.046981289982795715, + 0.23493041098117828, + 0.1447373628616333, + -0.05772365629673004, + -0.0792224258184433, + 0.02733166702091694, + 0.42601627111434937, + 0.6781925559043884, + 0.046332478523254395, + 0.13627010583877563, + 0.4873996078968048, + 0.018458889797329903, + -0.20248785614967346, + -0.13266849517822266, + -0.14226825535297394, + 0.30533215403556824, + -0.26482224464416504, + -0.3026427626609802, + -0.3490680754184723, + 0.04511967673897743, + 0.02239813655614853, + -0.27677780389785767, + 0.02303197979927063, + 0.19849182665348053, + -0.03240180015563965, + -0.053297191858291626, + 0.16876381635665894, + 0.4020344614982605, + -0.01429218053817749, + 0.5129151344299316, + -0.005648232996463776, + -0.027565237134695053, + 0.19228635728359222, + -0.05129896104335785, + 0.12830403447151184, + -0.020170796662569046, + -0.3413553833961487, + -0.5766260027885437, + -0.043447211384773254, + -0.3567486107349396, + -0.1587502360343933, + 0.09485404193401337, + -0.04176744818687439, + 0.012421295046806335, + -0.1731674075126648, + 0.10800927877426147, + -0.024834759533405304, + 0.10700815171003342, + 0.2329125702381134, + 0.46435683965682983, + -0.03889356926083565, + -0.3095247149467468, + 0.09760767221450806, + -0.02062283083796501, + 0.032348573207855225, + -0.007493659853935242, + -0.1776742786169052, + -0.36801040172576904, + 0.3908894658088684, + 0.06064484640955925, + -0.12756693363189697, + -0.028092145919799805, + -0.024772927165031433, + -0.22582398355007172, + -0.4634336233139038, + -0.19845548272132874, + -0.08715073019266129, + 0.02406385913491249, + -0.06948179006576538, + 0.06242324039340019, + -0.14848297834396362, + -0.25296202301979065, + 0.17171308398246765, + 0.22391799092292786, + 0.30514830350875854, + -0.37667930126190186, + -0.027840863913297653, + 0.18302534520626068, + 0.21891257166862488, + 0.39045628905296326, + -0.08139669895172119, + -0.0086597241461277, + -0.08750622719526291, + -0.24334120750427246, + -0.026501111686229706, + 0.0005951225757598877, + -0.30615055561065674, + -0.1883881688117981, + 0.22617053985595703, + 0.26457566022872925, + 0.17140856385231018, + -0.12118496000766754, + 0.054427385330200195, + 0.31842583417892456, + -0.5454424023628235, + -0.14622870087623596, + 0.12976783514022827, + 0.031104546040296555, + 0.6127027273178101, + -0.12723027169704437, + -0.23996561765670776, + -0.253092497587204, + 0.08502725511789322, + -0.34096935391426086, + 0.05775678530335426, + 0.2255668044090271, + -0.1474025696516037, + 0.06064894422888756, + 0.16771253943443298, + 0.004278358072042465, + -0.15690697729587555, + 0.249468594789505, + -0.1367252916097641, + 0.26656675338745117, + -0.11687643080949783, + -0.41371849179267883, + -0.038778651505708694, + -0.19421939551830292, + -0.21370583772659302, + -0.2878573536872864, + 0.5318673253059387, + 0.26105859875679016, + -0.12998002767562866, + 0.16083687543869019, + 0.07194200158119202, + -0.283555805683136, + -0.18379998207092285, + 0.05986235290765762, + -0.139956995844841, + 0.5749686360359192, + 0.12438569962978363, + -0.2403881996870041, + 0.26792827248573303, + -0.22201626002788544, + 0.26896047592163086, + 0.024926375597715378, + 0.08658510446548462, + 0.311108261346817, + 0.1341984122991562, + 0.10773409157991409, + 0.5506057143211365, + 0.1009610965847969, + -0.023660510778427124, + 0.26020240783691406, + 0.012888725847005844, + -0.006617873907089233, + -0.09569311887025833, + -0.024446338415145874, + 0.32918620109558105, + -0.3470954895019531, + 0.11918028444051743, + 0.07293424755334854, + 0.15971016883850098, + -0.30646637082099915, + -0.22689127922058105, + -0.19276024401187897, + -0.009271301329135895, + 0.004614017903804779, + -0.4780785143375397, + -0.18569275736808777, + 0.07098226249217987, + -0.3252703547477722, + -0.15340255200862885, + 0.4853735566139221, + 0.4047439694404602, + 0.19766554236412048, + -0.10292147845029831, + -0.20468570291996002, + -0.5575733184814453, + 0.02612924948334694, + 0.33485496044158936, + 0.1289076805114746, + 0.10564354062080383, + -0.28611692786216736, + 0.266088604927063, + 0.4853915572166443, + -0.08865010738372803, + 0.10585655272006989, + -0.12946897745132446, + -0.046843428164720535, + 0.07495781779289246, + 0.08907230943441391, + -0.21560455858707428, + -0.024289876222610474, + -0.3488452434539795, + 0.13025403022766113, + -0.42399168014526367, + -0.31058669090270996, + 0.24732525646686554, + -0.23592974245548248, + -0.4775214195251465, + -0.24607306718826294, + 0.16713762283325195, + -0.23781105875968933, + -0.12339784950017929, + 0.2332262396812439, + 0.5032081604003906, + 0.03691597282886505, + -0.2773243188858032, + 0.06767382472753525, + -0.5706654191017151, + -0.14554531872272491, + 0.160103440284729, + -0.250399112701416, + -0.083070307970047, + 0.023551084101200104, + 0.3957142233848572, + 0.48361897468566895, + 0.24200326204299927, + -0.36797189712524414, + -0.13907794654369354, + 0.20376698672771454, + 0.31269514560699463, + -0.14228084683418274, + -10.52149772644043, + -0.05866193026304245, + -0.16109603643417358, + 0.6146279573440552, + -0.11998244374990463, + -0.014858119189739227, + 0.2665661573410034, + -0.04254704713821411, + 0.03513477370142937, + 0.17537495493888855, + -0.20964136719703674, + 0.06945771723985672, + 0.2073594033718109, + 0.26868435740470886, + -0.045113250613212585, + 0.003371894359588623, + -0.2357906997203827, + 0.23871555924415588, + -0.2517309784889221, + 0.15510480105876923, + 0.20144343376159668, + 0.39073023200035095, + -0.11288298666477203, + 0.4067527651786804, + 0.20809334516525269, + -0.3537984788417816, + -0.11938221007585526, + 0.5208151340484619, + 0.19506025314331055, + -0.4319521188735962, + 0.35102662444114685, + 0.1857553869485855, + -0.21698112785816193, + 0.0016163364052772522, + 0.02739902213215828, + -0.022099897265434265, + -0.0760689526796341, + 0.0017201900482177734, + 0.38413435220718384, + -0.08845692873001099, + 0.21923288702964783, + -0.24620984494686127, + 0.24556981027126312, + 0.33930057287216187, + -0.03816438093781471, + -0.3931369185447693, + -0.3541938066482544, + -1.6729061603546143, + 0.26847031712532043, + 0.31537535786628723, + 0.46853530406951904, + 0.010371536016464233, + 0.21712583303451538, + 0.22484508156776428, + -0.478564977645874, + 0.05307956784963608, + -0.2802310585975647, + 0.056732602417469025, + 0.05494832247495651, + -0.030710265040397644, + 0.04083314165472984, + -0.0768602043390274, + 0.3027883768081665, + -0.019860874861478806, + -0.33289626240730286, + 0.189928337931633, + -0.08270322531461716, + -0.10856139659881592, + -0.3198232650756836, + -0.48349717259407043, + -0.3701348602771759, + -0.05765928328037262, + -0.19510418176651, + -0.20681092143058777, + 0.5627577304840088, + -0.10934240370988846, + -0.4082084000110626, + 0.11687737703323364, + -0.049179695546627045, + 0.35133472084999084, + 0.1414029896259308, + -0.018523618578910828, + 0.08479658514261246, + -0.11731429398059845, + -0.20058873295783997, + -0.11878814548254013, + 0.16168616712093353, + 0.5594614744186401, + 0.04072192311286926, + 0.060697879642248154, + -0.11249900609254837, + 0.4332432150840759, + -0.11470121145248413, + -0.15017317235469818, + -0.3387938439846039, + 0.1224551647901535, + -0.05414446443319321, + 0.04927092790603638, + -0.030652247369289398, + -0.2452256828546524, + -0.16480378806591034, + -0.05154358968138695, + -0.07399900257587433, + -0.39761805534362793, + -0.22886420786380768, + 0.1373678743839264, + 0.08312075585126877, + 0.31552910804748535, + 0.1627362221479416, + -0.005833938717842102, + -0.09991461783647537, + -0.08061906695365906, + 0.27358561754226685, + 0.4853225350379944, + 0.23375366628170013, + -0.2465631514787674, + -0.13442116975784302, + -0.1557799130678177, + -0.3698194622993469, + -0.01287461444735527, + 0.5192468762397766, + -0.09986317157745361, + 0.5092771649360657, + 0.5204302668571472, + -0.11005371809005737, + -0.10742278397083282, + 1.05696702003479, + -0.2626265585422516, + 0.34860870242118835, + -0.12696056067943573, + 0.06609726697206497, + -0.21178631484508514, + -0.35323551297187805, + 0.09751426428556442, + 0.38887614011764526, + -0.26918238401412964, + 0.6355773210525513, + 0.1413058340549469, + -0.45477232336997986, + 0.017410017549991608, + -0.16911086440086365, + 0.5645971298217773, + 0.26760178804397583, + 0.1730930209159851, + 0.08465996384620667, + -0.36421099305152893, + -0.20349252223968506, + 0.07011038064956665, + -0.4777170419692993, + -0.27220118045806885, + -0.3756297826766968, + 0.20535331964492798, + 0.049656882882118225, + -0.4205343723297119, + 0.410489022731781, + 0.030932461842894554, + -0.1767231971025467, + -0.11953237652778625, + -0.608121931552887, + -0.017582669854164124, + 0.1931217461824417, + 0.742199182510376, + 0.0673714429140091, + -0.0336107462644577, + -0.10332627594470978, + 0.0956142395734787, + -0.2115991711616516, + 0.07519575953483582, + -0.042031656950712204, + 0.03006545826792717, + -0.6485006809234619, + 0.2145518958568573, + 0.14180871844291687, + -0.47261613607406616, + -0.187157541513443, + -0.26695480942726135, + 0.09071142226457596, + -0.29147908091545105, + -0.18330153822898865, + 0.06593205034732819, + 0.24934104084968567, + 0.012056462466716766, + 0.01157421711832285, + -0.2594800889492035, + 0.10819008946418762, + 0.1651219129562378, + 0.1837885081768036, + 0.15052182972431183, + -0.16714949905872345, + -0.3954675495624542, + -0.12714192271232605, + 0.053219422698020935, + -0.1976548731327057, + 0.013631141744554043, + 0.03539549186825752, + 0.13934974372386932, + -0.3700181841850281, + -0.0519108846783638, + -0.29956403374671936, + 0.15233705937862396, + -0.29191485047340393, + 0.1371629387140274, + 0.3302500247955322, + -0.13850368559360504, + 0.021549459546804428, + -0.2394016683101654, + 0.2526240050792694, + 0.09480217099189758, + -0.2728283405303955, + 0.20540151000022888, + -0.3860236406326294 + ] +} \ No newline at end of file diff --git a/src/benchmark/requirements.txt b/src/benchmark/requirements.txt index 33756e4..469f8e8 100644 --- a/src/benchmark/requirements.txt +++ b/src/benchmark/requirements.txt @@ -4,4 +4,8 @@ transformers bert_score dspy pandas -sklearn \ No newline at end of file +scikit-learn +seaborn +matplotlib +numpy +scipy \ No newline at end of file diff --git a/src/benchmark/setup_env.sh b/src/benchmark/setup_env.sh index 095f3c2..5360a9e 100755 --- a/src/benchmark/setup_env.sh +++ b/src/benchmark/setup_env.sh @@ -18,5 +18,8 @@ else echo "No requirements.txt found. Skipping dependency installation." fi -echo "Running main..." -python3 main.py \ No newline at end of file +# echo "Running main..." +# python3 batch_run.py + +echo "Generating plots..." +python3 generate_visuals.py \ No newline at end of file diff --git a/webapp/static/graphs/graph_metadata.csv b/webapp/static/graphs/mapping/graph_metadata.csv similarity index 100% rename from webapp/static/graphs/graph_metadata.csv rename to webapp/static/graphs/mapping/graph_metadata.csv diff --git a/webapp/static/graphs/graph_metadata.json b/webapp/static/graphs/mapping/graph_metadata.json similarity index 100% rename from webapp/static/graphs/graph_metadata.json rename to webapp/static/graphs/mapping/graph_metadata.json diff --git a/webapp/static/graphs/graph_metadata_true.json b/webapp/static/graphs/mapping/graph_metadata_true.json similarity index 100% rename from webapp/static/graphs/graph_metadata_true.json rename to webapp/static/graphs/mapping/graph_metadata_true.json From bec50feb499fbbfbc5c55e3515318aec15b33265 Mon Sep 17 00:00:00 2001 From: Vicky Bikia Date: Sat, 10 May 2025 13:35:15 -0700 Subject: [PATCH 03/11] Run benchmark on test set of 88 cases in --- src/benchmark/batch_run.py | 57 +- src/benchmark/modules/io_utils.py | 97 ++- .../output/plots/bertscore_f1_barplot.png | Bin 16630 -> 30199 bytes .../output/plots/topology_distributions.png | Bin 32789 -> 45771 bytes .../output/plots/trajectory_tsne.png | Bin 19219 -> 43188 bytes src/benchmark/output/results/results0.json | 795 ------------------ .../output/results/results_graph_001.json | 795 ++++++++++++++++++ .../output/results/results_graph_003.json | 795 ++++++++++++++++++ .../output/results/results_graph_004.json | 795 ++++++++++++++++++ .../output/results/results_graph_005.json | 795 ++++++++++++++++++ .../output/results/results_graph_006.json | 795 ++++++++++++++++++ .../output/results/results_graph_007.json | 795 ++++++++++++++++++ .../output/results/results_graph_008.json | 795 ++++++++++++++++++ .../output/results/results_graph_009.json | 795 ++++++++++++++++++ .../output/results/results_graph_010.json | 795 ++++++++++++++++++ .../output/results/results_graph_011.json | 795 ++++++++++++++++++ .../output/results/results_graph_012.json | 795 ++++++++++++++++++ ...{graph_013.json => results_graph_013.json} | 6 +- .../output/results/results_graph_014.json | 795 ++++++++++++++++++ .../output/results/results_graph_015.json | 795 ++++++++++++++++++ .../output/results/results_graph_016.json | 795 ++++++++++++++++++ .../output/results/results_graph_018.json | 795 ++++++++++++++++++ .../output/results/results_graph_019.json | 795 ++++++++++++++++++ .../output/results/results_graph_020.json | 795 ++++++++++++++++++ .../output/results/results_graph_022.json | 795 ++++++++++++++++++ .../output/results/results_graph_023.json | 795 ++++++++++++++++++ .../output/results/results_graph_025.json | 795 ++++++++++++++++++ .../output/results/results_graph_026.json | 795 ++++++++++++++++++ .../output/results/results_graph_027.json | 788 +++++++++++++++++ .../output/results/results_graph_028.json | 795 ++++++++++++++++++ ...{graph_029.json => results_graph_029.json} | 6 +- .../output/results/results_graph_031.json | 795 ++++++++++++++++++ .../output/results/results_graph_032.json | 795 ++++++++++++++++++ .../output/results/results_graph_033.json | 795 ++++++++++++++++++ .../output/results/results_graph_034.json | 795 ++++++++++++++++++ .../output/results/results_graph_035.json | 795 ++++++++++++++++++ .../output/results/results_graph_037.json | 795 ++++++++++++++++++ .../output/results/results_graph_038.json | 795 ++++++++++++++++++ .../output/results/results_graph_039.json | 795 ++++++++++++++++++ .../output/results/results_graph_040.json | 795 ++++++++++++++++++ .../output/results/results_graph_041.json | 795 ++++++++++++++++++ .../output/results/results_graph_042.json | 795 ++++++++++++++++++ .../output/results/results_graph_043.json | 795 ++++++++++++++++++ ...{graph_044.json => results_graph_044.json} | 6 +- .../output/results/results_graph_045.json | 795 ++++++++++++++++++ .../output/results/results_graph_046.json | 795 ++++++++++++++++++ .../output/results/results_graph_047.json | 795 ++++++++++++++++++ .../output/results/results_graph_048.json | 795 ++++++++++++++++++ .../output/results/results_graph_049.json | 795 ++++++++++++++++++ .../output/results/results_graph_050.json | 795 ++++++++++++++++++ .../output/results/results_graph_051.json | 795 ++++++++++++++++++ .../output/results/results_graph_052.json | 795 ++++++++++++++++++ .../output/results/results_graph_053.json | 795 ++++++++++++++++++ .../output/results/results_graph_054.json | 795 ++++++++++++++++++ .../output/results/results_graph_056.json | 795 ++++++++++++++++++ .../output/results/results_graph_057.json | 795 ++++++++++++++++++ .../output/results/results_graph_058.json | 795 ++++++++++++++++++ .../output/results/results_graph_059.json | 795 ++++++++++++++++++ .../output/results/results_graph_061.json | 795 ++++++++++++++++++ .../output/results/results_graph_062.json | 795 ++++++++++++++++++ .../output/results/results_graph_064.json | 795 ++++++++++++++++++ .../output/results/results_graph_065.json | 795 ++++++++++++++++++ .../output/results/results_graph_066.json | 795 ++++++++++++++++++ .../output/results/results_graph_067.json | 795 ++++++++++++++++++ ...{graph_068.json => results_graph_068.json} | 6 +- .../output/results/results_graph_069.json | 795 ++++++++++++++++++ .../output/results/results_graph_070.json | 795 ++++++++++++++++++ .../output/results/results_graph_072.json | 795 ++++++++++++++++++ .../output/results/results_graph_073.json | 795 ++++++++++++++++++ .../output/results/results_graph_074.json | 795 ++++++++++++++++++ .../output/results/results_graph_075.json | 795 ++++++++++++++++++ .../output/results/results_graph_076.json | 795 ++++++++++++++++++ .../output/results/results_graph_077.json | 795 ++++++++++++++++++ .../output/results/results_graph_079.json | 795 ++++++++++++++++++ .../output/results/results_graph_080.json | 795 ++++++++++++++++++ .../output/results/results_graph_081.json | 795 ++++++++++++++++++ .../output/results/results_graph_082.json | 795 ++++++++++++++++++ .../output/results/results_graph_083.json | 795 ++++++++++++++++++ .../output/results/results_graph_084.json | 795 ++++++++++++++++++ .../output/results/results_graph_086.json | 795 ++++++++++++++++++ ...{graph_087.json => results_graph_087.json} | 6 +- .../output/results/results_graph_088.json | 795 ++++++++++++++++++ src/benchmark/requirements.txt | 3 +- src/benchmark/setup_env.sh | 4 +- .../graphs/{ => archive}/graph_002.json | 0 .../graphs/{ => archive}/graph_017.json | 0 .../graphs/{ => archive}/graph_060.json | 0 .../graphs/{ => archive}/graph_085.json | 0 .../graphs/{ => case_series}/graph_021.json | 0 .../graphs/{ => case_series}/graph_024.json | 0 .../graphs/{ => case_series}/graph_030.json | 0 .../graphs/{ => case_series}/graph_071.json | 0 .../graphs/{ => case_series}/graph_078.json | 0 .../graphs/{ => special}/graph_036.json | 0 .../graphs/{ => special}/graph_055.json | 0 .../graphs/{ => special}/graph_063.json | 0 ..._Learnt_from_Planning_the_PMC12023144.html | 0 ...dia_Injector__in_Multi_Pa_PMC12002069.html | 0 ...rcinoma_with_EML4_ALK_Fus_PMC11986677.html | 0 ...ed_as_Brain_Calcification_PMC11986680.html | 0 ...ases_report_and_literatur_PMC12003138.html | 0 ...ting_Diagnostic_Challenge_PMC11970535.html | 0 ...e_Related_Adverse_Events__PMC11991814.html | 0 ...l_therapy_in_people_livin_PMC12008952.html | 0 ..._lung_cancer___a_case_rep_PMC11985431.html | 0 ...utation_and_PLPP5_FGFR1_F_PMC12004084.html | 0 ...uced_by_the_anti_PD_1_ant_PMC11985835.html | 0 ...me_Associated_with_Monocl_PMC12027059.html | 0 108 files changed, 56546 insertions(+), 878 deletions(-) delete mode 100644 src/benchmark/output/results/results0.json create mode 100644 src/benchmark/output/results/results_graph_001.json create mode 100644 src/benchmark/output/results/results_graph_003.json create mode 100644 src/benchmark/output/results/results_graph_004.json create mode 100644 src/benchmark/output/results/results_graph_005.json create mode 100644 src/benchmark/output/results/results_graph_006.json create mode 100644 src/benchmark/output/results/results_graph_007.json create mode 100644 src/benchmark/output/results/results_graph_008.json create mode 100644 src/benchmark/output/results/results_graph_009.json create mode 100644 src/benchmark/output/results/results_graph_010.json create mode 100644 src/benchmark/output/results/results_graph_011.json create mode 100644 src/benchmark/output/results/results_graph_012.json rename src/benchmark/output/results/{graph_013.json => results_graph_013.json} (99%) create mode 100644 src/benchmark/output/results/results_graph_014.json create mode 100644 src/benchmark/output/results/results_graph_015.json create mode 100644 src/benchmark/output/results/results_graph_016.json create mode 100644 src/benchmark/output/results/results_graph_018.json create mode 100644 src/benchmark/output/results/results_graph_019.json create mode 100644 src/benchmark/output/results/results_graph_020.json create mode 100644 src/benchmark/output/results/results_graph_022.json create mode 100644 src/benchmark/output/results/results_graph_023.json create mode 100644 src/benchmark/output/results/results_graph_025.json create mode 100644 src/benchmark/output/results/results_graph_026.json create mode 100644 src/benchmark/output/results/results_graph_027.json create mode 100644 src/benchmark/output/results/results_graph_028.json rename src/benchmark/output/results/{graph_029.json => results_graph_029.json} (99%) create mode 100644 src/benchmark/output/results/results_graph_031.json create mode 100644 src/benchmark/output/results/results_graph_032.json create mode 100644 src/benchmark/output/results/results_graph_033.json create mode 100644 src/benchmark/output/results/results_graph_034.json create mode 100644 src/benchmark/output/results/results_graph_035.json create mode 100644 src/benchmark/output/results/results_graph_037.json create mode 100644 src/benchmark/output/results/results_graph_038.json create mode 100644 src/benchmark/output/results/results_graph_039.json create mode 100644 src/benchmark/output/results/results_graph_040.json create mode 100644 src/benchmark/output/results/results_graph_041.json create mode 100644 src/benchmark/output/results/results_graph_042.json create mode 100644 src/benchmark/output/results/results_graph_043.json rename src/benchmark/output/results/{graph_044.json => results_graph_044.json} (99%) create mode 100644 src/benchmark/output/results/results_graph_045.json create mode 100644 src/benchmark/output/results/results_graph_046.json create mode 100644 src/benchmark/output/results/results_graph_047.json create mode 100644 src/benchmark/output/results/results_graph_048.json create mode 100644 src/benchmark/output/results/results_graph_049.json create mode 100644 src/benchmark/output/results/results_graph_050.json create mode 100644 src/benchmark/output/results/results_graph_051.json create mode 100644 src/benchmark/output/results/results_graph_052.json create mode 100644 src/benchmark/output/results/results_graph_053.json create mode 100644 src/benchmark/output/results/results_graph_054.json create mode 100644 src/benchmark/output/results/results_graph_056.json create mode 100644 src/benchmark/output/results/results_graph_057.json create mode 100644 src/benchmark/output/results/results_graph_058.json create mode 100644 src/benchmark/output/results/results_graph_059.json create mode 100644 src/benchmark/output/results/results_graph_061.json create mode 100644 src/benchmark/output/results/results_graph_062.json create mode 100644 src/benchmark/output/results/results_graph_064.json create mode 100644 src/benchmark/output/results/results_graph_065.json create mode 100644 src/benchmark/output/results/results_graph_066.json create mode 100644 src/benchmark/output/results/results_graph_067.json rename src/benchmark/output/results/{graph_068.json => results_graph_068.json} (99%) create mode 100644 src/benchmark/output/results/results_graph_069.json create mode 100644 src/benchmark/output/results/results_graph_070.json create mode 100644 src/benchmark/output/results/results_graph_072.json create mode 100644 src/benchmark/output/results/results_graph_073.json create mode 100644 src/benchmark/output/results/results_graph_074.json create mode 100644 src/benchmark/output/results/results_graph_075.json create mode 100644 src/benchmark/output/results/results_graph_076.json create mode 100644 src/benchmark/output/results/results_graph_077.json create mode 100644 src/benchmark/output/results/results_graph_079.json create mode 100644 src/benchmark/output/results/results_graph_080.json create mode 100644 src/benchmark/output/results/results_graph_081.json create mode 100644 src/benchmark/output/results/results_graph_082.json create mode 100644 src/benchmark/output/results/results_graph_083.json create mode 100644 src/benchmark/output/results/results_graph_084.json create mode 100644 src/benchmark/output/results/results_graph_086.json rename src/benchmark/output/results/{graph_087.json => results_graph_087.json} (99%) create mode 100644 src/benchmark/output/results/results_graph_088.json rename webapp/static/graphs/{ => archive}/graph_002.json (100%) rename webapp/static/graphs/{ => archive}/graph_017.json (100%) rename webapp/static/graphs/{ => archive}/graph_060.json (100%) rename webapp/static/graphs/{ => archive}/graph_085.json (100%) rename webapp/static/graphs/{ => case_series}/graph_021.json (100%) rename webapp/static/graphs/{ => case_series}/graph_024.json (100%) rename webapp/static/graphs/{ => case_series}/graph_030.json (100%) rename webapp/static/graphs/{ => case_series}/graph_071.json (100%) rename webapp/static/graphs/{ => case_series}/graph_078.json (100%) rename webapp/static/graphs/{ => special}/graph_036.json (100%) rename webapp/static/graphs/{ => special}/graph_055.json (100%) rename webapp/static/graphs/{ => special}/graph_063.json (100%) rename webapp/static/pmc_htmls/{ => archive}/Developing_an_Integrated_Service_Planning_Tool__Lessons_Learnt_from_Planning_the_PMC12023144.html (100%) rename webapp/static/pmc_htmls/{ => archive}/Safety_and_Performance_of_OptiVantage__a_CT_Contrast_Media_Injector__in_Multi_Pa_PMC12002069.html (100%) rename webapp/static/pmc_htmls/{ => archive}/_A_Case_of_Multiple_Primary_Pulmonary_Neuroendocrine_Carcinoma_with_EML4_ALK_Fus_PMC11986677.html (100%) rename webapp/static/pmc_htmls/{ => archive}/_Brain_and_Meningeal_Metastases_of_Lung_Cancer_Manifested_as_Brain_Calcification_PMC11986680.html (100%) rename webapp/static/pmc_htmls/{ => case_series}/Case_Report__Transforming_small_cell_lung_cancer__two_cases_report_and_literatur_PMC12003138.html (100%) rename webapp/static/pmc_htmls/{ => case_series}/Early_Onset_COPD_and_Lung_Cancer__Case_Studies_Highlighting_Diagnostic_Challenge_PMC11970535.html (100%) rename webapp/static/pmc_htmls/{ => case_series}/Remarkable_Antitumor_Effects_and_Serious_Multiple_Immune_Related_Adverse_Events__PMC11991814.html (100%) rename webapp/static/pmc_htmls/{ => case_series}/Therapeutic_efficacy_of_albuvirtide_based_antiretroviral_therapy_in_people_livin_PMC12008952.html (100%) rename webapp/static/pmc_htmls/{ => case_series}/Unmasking_the_mimic__lipoid_pneumonia_imitating_primary_lung_cancer___a_case_rep_PMC11985431.html (100%) rename webapp/static/pmc_htmls/{ => special}/A_Case_of_Lung_Squamous_Cell_Carcinoma_Harboring_TP53_Mutation_and_PLPP5_FGFR1_F_PMC12004084.html (100%) rename webapp/static/pmc_htmls/{ => special}/Case_Report__Subacute_cutaneous_lupus_erythematosus_induced_by_the_anti_PD_1_ant_PMC11985835.html (100%) rename webapp/static/pmc_htmls/{ => special}/Successful_Management_of_Acquired_von_Willebrand_Syndrome_Associated_with_Monocl_PMC12027059.html (100%) diff --git a/src/benchmark/batch_run.py b/src/benchmark/batch_run.py index fc18995..1427c51 100644 --- a/src/benchmark/batch_run.py +++ b/src/benchmark/batch_run.py @@ -11,41 +11,21 @@ and trajectory representation. """ -import sys from pathlib import Path -sys.path.append(str(Path(__file__).resolve().parents[1])) # Adds 'src' to sys.path # Local application imports -from benchmark.modules.io_utils import ( +from modules.run_benchmark import run_pipeline +from modules.logging_utils import setup_logger +from modules.io_utils import ( load_graph_from_file, save_results, build_graph_to_text_mapping, - extract_original_text_from_html + extract_case_presentation_from_file, ) -from benchmark.modules.run_benchmark import run_pipeline -from benchmark.modules.logging_utils import setup_logger logger = setup_logger(__name__) -# Replace this with your actual text used as reference -ORIGINAL_TEXT = ( - "Starry starry night, " - "Paint your palette blue and grey, " - "Look out on a summer's day, " - "With eyes that know the darkness in my soul. " - "Shadows on the hills, " - "Sketch the trees and daffodils, " - "Catch the breeze and winter chills, " - "In colors on the snowy linen land. " - "Now I understand, " - "What you tried to say to me, " - "And how you suffered for your sanity, " - "And how you tried to set them free. " - "They would not listen, they did not know how, " - "Perhaps they'll listen now. " -) - # Input directory: All graph files GRAPH_INPUT_DIR = Path(__file__).resolve().parents[2] / "webapp/static/graphs" @@ -54,10 +34,10 @@ RESULTS_OUTPUT_DIR.mkdir(parents=True, exist_ok=True) # Paths -metadata_csv = "webapp/static/graphs/mapping/graph_metadata.csv" -html_root_dir = "webapp/static/pmhc_html" +METADATA_CSV_PATH = Path(__file__).resolve().parents[2] / "webapp/static/graphs/mapping/graph_metadata.csv" +HTML_ROOT_DIR = Path(__file__).resolve().parents[2] / "webapp/static/pmc_htmls" -# graph_to_html = build_graph_to_text_mapping(metadata_csv, html_root_dir) +graph_to_html = build_graph_to_text_mapping(METADATA_CSV_PATH, HTML_ROOT_DIR) if __name__ == "__main__": graph_files = list(GRAPH_INPUT_DIR.glob("*.json")) @@ -65,22 +45,21 @@ if not graph_files: logger.warning("No JSON files found in input directory.") else: - for fpath in graph_files[:5]: # Limit to first 5 files for demonstration + for fpath in graph_files: #[:5]: Limit to first 5 files for demonstration graph_id = fpath.stem - # html_path = graph_to_html.get(graph_id) + html_path = graph_to_html.get(graph_id) + + if not html_path: + logger.warning("No HTML path found for %s", graph_id) + continue - # if not html_path: - # logger.warning(f"No HTML path found for {graph_id}") - # continue - - # reference_case_text = extract_original_text_from_html(html_path) - reference_case_text = ORIGINAL_TEXT + reference_case_text = extract_case_presentation_from_file(str(html_path)) - logger.info(f"Running pipeline on: {fpath.name}") + logger.info("Running pipeline on: %s",fpath.name) graph, ok = load_graph_from_file(fpath) if not ok: - logger.error(f"Skipping {fpath.name} due to load error.") + logger.error("Skipping %s due to load error.", fpath.name) continue cfg = { @@ -91,7 +70,7 @@ } results = run_pipeline(graph, reference_case_text, cfg) - output_path = RESULTS_OUTPUT_DIR / f"{graph_id}.json" + output_path = RESULTS_OUTPUT_DIR / f"results_{graph_id}.json" save_results(results, output_path) - logger.info("Batch benchmarking completed.") \ No newline at end of file + logger.info("Batch benchmarking completed.") diff --git a/src/benchmark/modules/io_utils.py b/src/benchmark/modules/io_utils.py index cf6e7ba..822a876 100644 --- a/src/benchmark/modules/io_utils.py +++ b/src/benchmark/modules/io_utils.py @@ -14,14 +14,34 @@ import json import os from typing import Any +import warnings +import re + +# Third-party imports import networkx as nx from networkx.readwrite import json_graph +from bs4 import BeautifulSoup +from bs4 import MarkupResemblesLocatorWarning # Local application imports from .logging_utils import setup_logger logger = setup_logger(__name__) + +warnings.filterwarnings("ignore", category=MarkupResemblesLocatorWarning) + UTF_8 = "utf-8" +# Extended to match parts like: +# - 2.1. Case Summary +# - 3.2.1 Case Report +# - Case presentation and technical note +# - Case Description +CASE_SECTION_PATTERNS = [ + r"^\d+(\.\d+)*\.?\s*case (presentation|summary|report|description|history)\b", + r"^case presentation and technical note\b", + r"^case\b", +] + def load_graph_from_file(path: str) -> tuple[nx.DiGraph, bool]: """ @@ -34,13 +54,14 @@ def load_graph_from_file(path: str) -> tuple[nx.DiGraph, bool]: try: with open(path, encoding=UTF_8) as f: data = json.load(f) - converted_data = convert_to_node_link_format(data) + converted_data = convert_to_node_link_format(data) normalized_data = normalize_graph_for_networkx(converted_data) return json_graph.node_link_graph(normalized_data, directed=True), True except Exception as e: logger.error("Error loading graph: %s", e) return nx.DiGraph(), False + def save_results(results: dict, path: str) -> None: """ Save the pipeline results to a JSON file. @@ -52,6 +73,7 @@ def save_results(results: dict, path: str) -> None: with open(path, "w", encoding=UTF_8) as f: json.dump(results, f, indent=2) + def data_display(results: dict[str, Any]) -> None: """ Pretty-print the pipeline results as structured tables for easy terminal viewing. @@ -107,8 +129,10 @@ def data_display(results: dict[str, Any]) -> None: # 6) Any other top-level keys other_keys = { - k: v for k, v in results.items() - if k not in {"status", "bertscore", "topology", "regex", "reconstructed_narrative"} + k: v + for k, v in results.items() + if k + not in {"status", "bertscore", "topology", "regex", "reconstructed_narrative"} } if other_keys: print("Additional Data:") @@ -116,6 +140,7 @@ def data_display(results: dict[str, Any]) -> None: print(f"{key}: {val}") print() + def convert_to_node_link_format(original_json: dict) -> dict: """ Convert a JSON object to the node-link format used by networkx. @@ -124,12 +149,7 @@ def convert_to_node_link_format(original_json: dict) -> dict: Returns: dict: The converted JSON object in node-link format. """ - converted = { - "directed": True, - "graph": {}, - "nodes": [], - "links": [] - } + converted = {"directed": True, "graph": {}, "nodes": [], "links": []} for node in original_json.get("nodes", []): new_node = dict(node) # copy @@ -156,7 +176,7 @@ def normalize_graph_for_networkx(raw_graph: dict) -> dict: raw_graph (dict): The raw graph data. Returns: dict: The normalized graph data. - """ + """ for node in raw_graph["nodes"]: # Promote content and timestamp from customData if "customData" in node: @@ -176,6 +196,7 @@ def normalize_graph_for_networkx(raw_graph: dict) -> dict: return raw_graph + def save_embedding_vector(vec: list[float], out_path: str, metadata: dict = None): """ Save an embedding vector to a JSON file, appending it to the file if it already exists. @@ -191,7 +212,10 @@ def save_embedding_vector(vec: list[float], out_path: str, metadata: dict = None json.dump(row, f) f.write("\n") -def build_graph_to_text_mapping(metadata_csv_path: str, html_root_dir: str) -> dict[str, str]: + +def build_graph_to_text_mapping( + metadata_csv_path: str, html_root_dir: str +) -> dict[str, str]: """ Build a mapping from graph ID (e.g., 'graph_006') to full HTML file path. @@ -204,29 +228,50 @@ def build_graph_to_text_mapping(metadata_csv_path: str, html_root_dir: str) -> d """ graph_to_html = {} - with open(metadata_csv_path, newline='', encoding='utf-8') as csvfile: + with open(metadata_csv_path, newline="", encoding="utf-8") as csvfile: reader = csv.reader(csvfile) for row in reader: graph_id = row[0].strip() - html_rel_path = row[2].strip().replace("./pmc_htmls", html_root_dir) + html_rel_path = row[2].strip().replace("./pmc_htmls", str(html_root_dir)) graph_to_html[graph_id] = html_rel_path return graph_to_html -def extract_original_text_from_html(html_path: str) -> str: - """ - Placeholder function to extract original case report text from HTML. +def extract_case_presentation(html: str) -> str: + """ + Extract the case presentation section from an HTML string. Args: - html_path (str): Path to the HTML file. - + html (str): The HTML content as a string. Returns: - str: Raw text extracted (currently placeholder). + str: The extracted case presentation text. """ - try: - with open(html_path, encoding='utf-8') as f: - html = f.read() - # TODO: replace with BeautifulSoup parsing - return f"[PLACEHOLDER] Text extracted from: {Path(html_path).name}" - except Exception as e: - return f"[ERROR] Failed to extract from {html_path}: {e}" \ No newline at end of file + soup = BeautifulSoup(html, "html.parser") + sections = soup.find_all("section") + + for sec in sections: + # Find section title tag: prefers class='pmc_sec_title', otherwise any h2/h3 + title_tag = sec.find(["h2", "h3"], class_="pmc_sec_title") or sec.find( + ["h2", "h3"] + ) + if not title_tag: + continue + + title = title_tag.get_text(strip=True).lower() + for pattern in CASE_SECTION_PATTERNS: + if re.search(pattern, title): + return sec.get_text(separator="\n", strip=True) + + return "" + + +def extract_case_presentation_from_file(filepath: str) -> str: + """ + Extract the case presentation section from an HTML file. + Args: + filepath (str): Path to the HTML file. + Returns: + str: The extracted case presentation text.""" + with open(filepath, "r", encoding="utf-8") as file: + html = file.read() + return extract_case_presentation(html) diff --git a/src/benchmark/output/plots/bertscore_f1_barplot.png b/src/benchmark/output/plots/bertscore_f1_barplot.png index e3d768e081339e2faddc7f7bed715fb4515c10c1..c194c133afac9576af13bb0dc420338ef915d387 100644 GIT binary patch literal 30199 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

-h>&rm-)Q6Y>O)sq{3GC|Po9(`nt=F& zrId%2#&v!f_$7c_l9@DOqJ zvUZ?O>yEwW{?^f;(tnux*lV9b@{h-en*5=le+yJYZiFCNU7-=OPoxx@?{xC3yuJhH zaHauUMS~jqf=dDQwH{D#^C;|rcYJ1okOOy{_^#(uls zp*V)U4&wQ;0yyueOXR_%99;ZY&j^e%a9$%(L{Q|53`jbVQJ$cm+DaM)4H-`U~ zhSWWwZhmA7%~kv)tnmR)^Aa=d1L62VZ0{?vlx=0deDJ05H0799IA)}(5hi#CKAnD-I#gu%{J-`f(`UjRsQWAgODm*S%O-H$SbG>1RV8rW z*D0~?Ndzv3kM)oxa7D=mZxexU&phtS8>N_!AVo!kd*Y7GNX7nRJ~ zV?eCt+4RGg{u1Q=Dm9)z8@68Y)V>xP@%YM#b%PTrl%nXYp#10oCks6e!(G|Ft;40N zWtHE#6u*fs5D490%qO>7=yRfHR*G^2XTXfr);6uwyC*Ng(SKA3Hiy-T?-`eUK|9Du zN4RRnzE0I6%+6x0bdtw=GTCYiyrEFhfGgh)-(>yjvK=aIxsZMU3px#%9}W^-oSC(D z&b=$hs1k(F_=#www^qMrm?Z+W4ZToZ7wXtKF1D~c}EvGef(Z@?qTO2d6pR*8+)n9-U04_%r+3OCSqU_ zup8{onMp0|x+oRRsrx|hbjf!OQ(|MLfEyRe;*4X~5nLpGe6T(<8YZz7DwiH=#t$sdGv}K(d*Yi>OpT>%Vaf;fdh?ZiXpREbGJx)@5S6Q#ALb#8lLlG1>8S(!yQ(z z0z^FISc^GPdR}TylM8f!mU}-D5f@R#!4iO+cj2G;^x*r;&yv5}T`{fq(=ILZ(&yLi zeaOC-XCo`Q*2viEKI&^xnj+%zBTn4&6B}MUD72Xn>=~j5Fdu5h+S^@a0x23K<-a3% zY>v|?#12MVNyutq0b`h#gh335Aa*DIJRye>>ff?wJz@E}>-_!sxqLz0F^{k0)<}X; zwFQj8l5c#hj7~jAiyRBYf?>78)?NKlx#u52@Td?vDSu%G;ualMpdzhDttI!snIvNo z;M0zNJL9KZd=ZAr9o1^tsdpQ=6yK1md1T(z9E{H7{>*W@Pt$n8^Q%o;ZA)}%Yg zAYk9|3n_sKN#$vD6P4jg6`T^8*@HB&@)KN$a^*U$2gg}l4AtqC)JZCHLhP48F>g1L zEx+=w3Q8OTowLJxB8YWvO%)fOZ4qGhZcnCKqVRpc8w)Z$U>sWi-IbZn5l zG|$MhF}%ukUZc$3kP?hYh((y3^Pb6q9N3N9hjo+*=luS=L~oz$z5A^tbw%S$kiOAs zQJWL8NCAzTxzXJ8lebh3tO7L~?R{#b6t38unnlAzxVu_7)R zx`djp*ukErB(bu2s`hvdr+LxvCEt>~^Q6%C{@HM;!(VWlNUa||D}&ZkBoJc%>g7wm zI&#Ff{~>0v@@bglURE}FejQbb4Lyi6$qfn#(Pb=!f2`yA>>atiIPZ6J14Wq!F!-5y zSO7LE&wtpK*5J6I68Hlj?yQWP8yjX`TVm)zpC6|FS3bGO<$&69>m9TU5fD4g z!XPzt!Q@wqWCK}*eK<4Rd*KwkzEuIS5W^pJg^@HImC^1j4F*l#XEK-vss4wXF%92~@a$P`8i5^+)&$ify7t*roUTAZa3A#oj!V+w;J&i5+t ztN)+tYo&nFY6mZO5*$?&g+s|75o~|w!<{Bh-6H6&nI5YXtv^C8Kk19p+ s+%toJ*r`MVU_A4G;WS3!uj3OrvZtvkhRtAxghDCaRFlh-F?syo0K1mfk^lez diff --git a/src/benchmark/output/plots/topology_distributions.png b/src/benchmark/output/plots/topology_distributions.png index 21c4d6ccad2f40edffb6c47fe907391f2b918bca..9b78fd8437edfadeff713aaf634c552155e0dfa2 100644 GIT binary patch literal 45771 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 literal 32789 zcmeFYXH-*NxGowMK~z9NR8Rz^NtZ4q6hV*@KD{X^v7FJYILS}v;g<}U7Uoy;Jxw=NDg_AWMXV>&l8Cug|59WN*M zGfrN1I!hN92WMd}F5Cb5ADs417F_0xs30&3vBN8EX9$Gs?Zux%#_Lx@? zgGqqP==D~w*uS@sS<6>Om;SkL8T=o-TUC>n57KiTR__(N8SByqJ^Y-Qs9PdB5^s?L z7pNaD&`fMU8*M%tW(zIZevII{1nIw*m6a90x4gU5m5g|LngB%(l=OZ^V|QVKQw)ug zGuF6wxali@X~?xCXy1y5ALDTH8X6q&2leaepC%95Y#^Y1A(0C z;`dzewx_s#V^>e)=}#`?V>vmw`Gp1gxw$zWi{6JG;0alId2)rbeLiOug<56vH4*O* zdb+y0+CK7H^hSwnH>eJx(aBDFjXj<1gj(S_6=aZ>oxFmA$mWwJuH7~Ym-B zHrwJi*xyfATU%@X;ctwtUAXKc59w*dp+1$MU6RR6{Z^gAR?R|)flx7-_=$?=_&~@e zSnu%V<>g1>!1(K&Qta%1hdnkn>l4Elp5R8CW8&iOA1`tFut)`v^81?_9yMk3-41KHjJppbwR~ap{r%PK&Kxd} zqqzXsZfD96TtDHoUHt6z*>RswP>#jSX+@^GnQFG8qu$6&xJLBpERlE^?b+Xea_dpf zoxMHYYRujSW<^I|pX2Q8tes}nRggygDx}3~1=A!^@Pp5T-{jX#kL|`ohNn+|J0|{8 zeIRHTMI++&%8(yE$e^k{GM+9Ku$biB8(!@37W9RSRXAgX<;$B?CatpU+XU*$;bY%|?4tAPB9Cplp_wTtDqS3zEXHBVz@65$- zHye^uP{3ME4mQThomYBEw<{_uhX@o8$lYjA-m`v0A=+;<=*<;k*u!tr%lwuigATnt zXQr`D5O&R9*!}KLv=pJh$!)glsfW%{jsp0CTk`E*27wz2QS2Lg}3 z--#wpCRuWljGIyg?Nc%;Po?n&-rHU?k@ee669gt)jo880UTogj0a+gF5q4q{lIWHe z2`Vw~8WZV#t#&gXyF>w79{MQUY7V(R;KJEYgOGib{XYe*`BM>S{x? z-!cf}TtH;@sn6WQ8EoXve25uc-$Ns0LmzRlX%>ry%v^>*^fMeoQmS9Pc+q{V z75UUtUv}Di4@Sjr6(yIyDkNXfAtJm2|C*`(((`N(fr?net(OQ=%C>(S?(yXGK3ODAMo_V>{Dk{hH4&c&)7ebHKah;V!cbQm=*ab(c(YeGjM3T#5^v` zFC;YfP#1wXz0IwI|6@1PgxHNtJ!xy>!Hrw77ep(VnVGeVa^juQHGfyc&uc$?{22ed zaNm|@VCG{}G45R?vvN$I_<4guqxi(k%0Ng_#nHj}Y4f?ov@EWE*l**3eZ$V@LkrD$ z{j`#``Ycij@vN+EO#_dtyw<_Niy4(e|2{b5a}z|3d~YSS?ey_$Z8 z(#j9I)jf%ViQ!x%4|UKIOJ8|=pFwN*{!%|P@-5V_A5o)*AJ-9DBx_fg2j97OFL6;* zQzmM6ceh*Z1)_TfL?!aux8J6GVbZQVJ_4k1nv!}REd+aXIp8vs44dQV>XwT?O z+C%v1D})DgRBvMWkB3W;j5*0}3CFdO@guo`La;j+wWjsr`r;o5zPGv2I>J3Fw1!tG zNbb7IXRUQQQc_aJucY}UhL~IVdh_|<(5Z?JnSJ8o;xi{_m8qW&#!5AVTz~E~nNv%z zZ||U$#raifEA#*QlZk~**wyzmR6jys2k56o>>KxEPL>6mxxd#RP@;|0@g}SI%Mjn< z{!E#-Z{H@aV?`~+V^@zc-@b72tk4vB4(=uXQb=gCQYISWY{b5y5Vy3++WDA*=6l_r z@=GxxtUojK7hhgp-tJb01clfr}MoM;XWq1?WVh#`?k{d=<4w@x*Dus>=zLHh8y(H<6Cc?wdC z>m>3QmBk;K&_|m!4X*1N73Zi?gNbFNUE{un^C@$xw=w6+%F0ATW25aoJqN#{+S;+Q znPm5A_(7tGd+|aYeyhIk?yXx!6ZP))iTH+v5D}Y4j~-QFu~?$0)vf_1Sj5Eik0(%Uup0ag)QfkPqz<* zbe&CtT^X6PtwZ_Pl9Q9$EG;dCtk1k#AaQOyE8d8RjGSm760Yydph-Mym=2u^qGaoC zI-K$GNjyaYBO9NboV39oZoBK{;4%1$ebW(1_0C^dZcVw?(OUd&7WXr z{mF!jt!->7likMQvPlcSLTIcN6czc(0;kr73wn@6eIC^9tFBzlCr*hbI<-z_0i)IC z;xkj;dp-J|Df-Z6tL~vOA>ESE`&ozvC*Y&iW81RgxNwdqPrmiIQq#NL;dN<4-t;+L zHx!v#xv)=sRCKiK{R!K#@}GLhy&l0(oK`YT>}jn&@^~qEdL-c#TH&}L)9xBTN>dK- zN5W`EMa_!k;n-LiD%5^+2Pd?WwD8$)7(fpAf!9{;N{GnxRos*8TbB|2X_Eem>V3eC zY*|xVSXLsBKo)knCyEOVI4gA z+DK-(p} zp3-j$hTi-8d!4uwLL4|0VmbLKp+(grD-WUK@EQ6dyE61%^siT&_c)K26YaY_)cUsF zbh3&mIX6w1iwK1A8x<36O2Ye!J{kpCb-ZrEDSPWX{Xvx@e2<1Y?eW|P1bFKS?UT%s zfIUV>yGCNVU+!sU&^v?Ci`SOcN%V8&Xx~&sr4T zSI)WAwDaphdvy08{6;&vwDELX&+s0ixpKR@e+uiKqiQ(O{3!X@Rgi<#eTNSaOPw3tf)u8+lZy?8Zu7hz6I9Px3D%Vb|9=6R6NsK7rM(KbUvDCG8of zwSOMbA1u~t8PX1eB~hhzP1DHXm64H2zgD)zN!`CvF@QLFGcPjfPVn&|BW#ev&x6ZXxGKPL7G zrm1YFi(T4w-^Fl?#q_2aT4Wd{@6QNp^!Z1I$H&9p=Vfr9i=a7`?_sjWu6JM*AID83 z6I-me3yZNNA}LMkQ#-hWk+tW&N67%A>z73`l~nGy%kqT}Qw2Y$e4=QQv*prI7Fp5z zv##!2liPu`fd!kM^@4Me(daw5g1$=S*y8D2xuoLNts{)I!OWJ-27%_wt9NHFt7{z) zCTwat45Z1)o{bC2j{b`AtVf6sBgJW6T8YbNple+C3Qt$F5F$GMuamFm(ufNh_?C{r&@RV9g=22xLk;nt4WO-S_P#L!6Ug33ikHv7=?mKd}}3nMP(Fyzl|Nup(Ol!9Ppi+TE<^egu_qZtR2$La zZkr3Y@gDMh@tde-B@^aks~q(anx9Gw?V;P)cP{(SX?_o0Dn2M6NbNpGF&pP>g{Y1c z=`s_MK797&I?WfQiJ>?x!<>tl%;#iSWuqPXP!s=0ZgZ-B^rU#B<9G2drFLhVgBgAN z;Ws6=p_i9FC-)m(AmnExL6z6nw|&m*7nhf-YGIlbYMYvbLyMp5X5ZiF)+9-B8IE91 zdH1a+S5cPj`Wh<}waTjK`2kkCr~{aLpuVQ~0OhTHYgu{;fCD46fBrF=2FwaJOZ=>+d=w~5>t+J4U%TcYniH8toO_XMqH+u!e^MrI<*@NpwTI3SRg& z`XG=W1xGVg$nWhW8KS<)0gPtctHq=e8gx<4mqk_o^+m;*rlK*k0WQfvS#i4iq zz&Bm{#^EU4bHGNPeGlbaFANsruYtq-KfBK$MmKW&J_?i#WkwKMC!F+8%We8(pZ0A} z)}o`ltkuH>NJdli61;WGj6VuBp{z#}5Ux6z8rJaAtfg7NESLYdMqy^o&#E*0vcy&} z=$x+iS8phizd8gUb2KDDQRFU(Xr*#o$TWQBDhX#cEYYp|5iu?S^E5}SN}~?GEB~Nv zEjO;ouBoXh`D~-{aN7E^9EpUB&t_n{UuI16#DlTaRYzADL$*eH+mqt<0y%}`;xrP; z%}VCjGdounbCOn9J~fKq%~%hy6qEYDtv7n`$}{!2l!3$im{V&=ZjYR@`Is#P65Hot#LYULYwlUq=6jM3P|y1Z4+5ILD{Mhm zzb1>9+G5HD4Rh*XjExhxOYMW{vwVVK7C-KgqtUd$9u`pUQzx#?3ms(6%>VpCgSVtr zr71ie2t}G6pwF}t?hKpQB%cVUn4sV3o9H7R26rHje$XcTF{C|@QdNSZOKBY7y#|E0 zB}V_mqE7*t39W&}&J0fgoHwVg^0A$!^2}NA|k@(#$EQ(;gON5G3D5W z;nVr~c^f1WS;gBYimozgC#@iGz-J*`Yb_f?A4`3TTk@u-r?&-SLM0U2FI9!Z;W(kO z7bwM?YWDA6hs2zm9FIu_uErsD@u_jYD@5Iced+1x=7IBhsyX9l_?h!Zjy`oWNkY!u zZ~ky|b5{XL0(~$bON-LB8fz+az>nruEQQQ?tk6v4zRu|0ajhD1vFLJMU;m~+nTj|V zs{(jrQp3Oi*_{=oS)^kY^CcuSR8YLc&{cb-(d*C+QzPtUcQD~nQNbm33RH}Q88a7` z%Hu{uhwoR-g;oz9A&=hbzIgH81ECDvSF7-L!Q(~8%UrRzHTfpJxEV+!RdDkx7&vXyeI%~NXnV8FY4QQ`SN9z;n{9%)$FX1E&!y*$gUU;nqQYo z8V?d|+dki3K6!55eSZQFUTb`ZGSax%dK;6IS_MlH9ZRzJfB)VFkR#L-62Dosv9ZAk z4S*#Ij3LkVQbl?b0WGPj=oRidXuZJ|_k8PJU&-+BaMgwEAu0<^Nj=@Ls5&|E-V^1Q zfzy`UxpT+mC?PvLTex_l(W`nBi&hrwdu=Z=?xEvTyuU4BLKJ)>2bO4V92qiy+v~(Q zbd&UvsAWBFt-#iwh)lro+u6y+ScNUE&xvDV>iWjT+7;QaKV|a3WW{!`=Qke)QZQEq z@^6Zr{FT~E>5sEJ`a8F5Azatj8&Z@pstG+_j9fm=YSs<*u&Qc^!|Z(etipQ*B)SnTHQa~XHMgY6H*lrkOG08Iqlk#^`}gnL zdU|@s0>F?-zo-2kKYt!qGkgDYI`{2jO<4g_LJBR*#0 zzwq*M!IurjZR&Toy}>9hB>#N1DXn|Gzm4Xfc|u}j{#^&if6twHEx||xqrxHxAK__f zbb%ouF<-cvw17_J+@0zLn1&fJ>G}0_Hej{UKgeb=zp}#Yyxbj* zz#r_-@`4vyrD;9;>-k=hX~IQ?{ev?MlE4EKtfn))AM3y4@sKIWU_C?}w= zbn%bs(d$;(a7!lIflYSU*aO_E6X*}DPF}xBO?ccykMJFss4RN z?U;*YPwVyT*SlYRBQ(!RMS2F{^*k|IOcHniQPykha99k_+g1V!2aM|1(9l?r#15U- zi>ebQx;i_-Zpp-O8FI$zyNz*&W;8VDT}VWISBZ$+7kCLE5Jd3s!sUWCWyBl`*iYkv zsmbLobt6=cvf{^p0Qb7SI@fhYIWKEr;oQ-Jp&_-7o*vtZ&?ZZCHq3bg%yE|Wb1JZ) zf}J}ztnKW899sKQ34|OfUUS79Jlr8G!>6YcCsSk^>G!W^qYW;`?ql ze;&7aJWs`nfsuY(jMT+cYFCG0LPyT+^@+!}wY6nzJpl4ANENol=q}I3Q#ZV8U69f` zqOwm)_Aa{?-QG%{J+Eh6R1^dBrR*E5smo8=Ggj^^gol3?(ux|eS9W)=RL75|QoPxo zJKcKNFmq{iW#cHX+T>|3bMN=#HlcUTB1GHnEyC=vErXxZ&kudhnSq*ERcO$tLrD7Y zU3Y3cx5=kM9aLvj*97LesAuCKzMoFP6>x}ISTL!Y&SuVNOV98+ zb-ZLTdrAr^rW6-q`!w(U{_Mk{i0@e^I>>Chq+vIxVXs$&{LY=l)v`30)al7d_u++d z#=yW3NABthti6lMBIz+us7v)g&e$EdF6sCc{9p;hZ-Hu%6XIt#&hXo@K%!0X-Po$% z7GPUnbs7MEi=f(}fIu8vV-$>_`$MYB>pONjcwXZ6^PE5?5m>ePy6BYHl!DDZHV+Dg@DJv_R@+<_;(vbZ3 zzb~~-m)A{A zEiAe~{eTO2k9^`f02EAJv0SlpKLQd54}X5S*9Ff>X1YkvX=!Ps+XWYq%nj&nP~-`C za<9b2lM8#Z$hEi{{=Wb4=~L&=dxn$CxRE97!mnW7?{OiV7m9{c5C5pkJ3~-@;FhGm zh@14EfWd35@Tgw16-X34oOIspGCX?&)X31f5<<%#pGYE4@rNJ`11@rrh|Az6s^D>& zQWuZIU5=GA0%*~KDQ?Y%uN2kUDKF$O>)ZD8r)ym(xCn@dsxP)c@1NwmdgCJav{ z6q&06ad+9v>xT->aQ$v4n~05QzS*Y9udhP$RTn&hzyc13m%DB190NSg0OZb#1a{cU z3#Pj2(WU~{4XhZ^2nZNvAbo~(f#@h`xYC|t|qoa3@&d!mP zY#I+;&o9cy!07>huszVNbIHrh%=}zZQlgkB028qJ)BmFnfQz)lTT)=dGy(R~P*;!s zN-I81pwMp8mjVSE^}?TT85uOyjewf+_?&rbS6YVKOgD^8p4YCVupJ*CL;v0c@99Z< zfgByoQjEDll4%+Xi6ztpREuW%;5U8fZ`V@gQcXcE%;n~~wz&APoT;niA9%n58R_8fZ36JcK=WTaPuCK4JZLpgXW~Si) z_QiiOao?u2KIT%s*};JpA27JNg1mgh1!0V;Eog0h0k^V>h>MF85YLI7IDBVWR9vhC zVDN+um~`>``=Ijy%NUdR;$6chGFm%z6ntO^6pnEUg1VET3T9SQc}ALuqQP< z7jfB09ZXS6TN`u#_#!4S#a$;Oi@kJ(Fz$6@VIjN6&d+;2o1xHyxSJ23s{m@vfkL5n zH!Au%LEYpDE%GRRLCocN<)VNa#iH8%``g)9PJUa%*TA>aO8$v#z-5UGgC7WX0s=Nc zpd{~~v(y!2lvAo}LjkQ;17O#5uJvO!Cbzh% z!fC0KJ|P0E5mx=b0!CKB%paR7CHqlGAquFhQ#S2RXqaF;SdA9S+yB_yas>20xY4Ze z{|y%Z-Qnv07&fY>Jr#Pz@HT-#K@mV#xWK*MpqOrZ036q=8-bdZ`Felg{}4P3VmS53 zmyBTkC4iqP3)qe`R9N&0e4hZtu<;E+PpoA}M~9=0^++Km-2!-FKmK3u-@Efg==@}_ zXG9&CvQ}c(h5Idm5?}cF$%;6SM1~Y6os>MERd74uArFK|uvj&HE4# z@c#iKaId#>{@-37bm8?{@m-9ik33f&=M@%4T__nL>p(302TMe=X?ChALm7dmIgP_} z;^~TbFJb^lc(8c?2VDB@Iu$+~bM?;*8WqtQ@r#I%SO2djb$e zB*0mtSkI>%9Q=4!bI{B2Mnhxy4-XHICq^5Lg5~_jyIo_}{an9+Jj!2tFmAonBRCT! z`~Q0HT@a(h(TG@bf?MjWVVHAd1}m+>`^IKXtAJ@TbB?EfCe1l;~(iAi96cSVU}1 z*6toHgeHoSfJCwE32NJDcgZQw^&)fa)x|~Aj^5swmtXD%f*7X<3VceQF<|tmFBhZN z@BkiaJ6SWpK4oLr|pj^JO7VD1H_DAg1g`gaIycl-r-~~TLZBAMorD7Z6EYxEen7tRK7d`IkmrwxUjO4 z4`d(Vd0btca7Sn7TJeQa=rm%BJYeY<`O>{^=PfBq(B5J^(Ew6Y>1b9XZZRARThLB4^+ zO8oQaFT{lxkQ%7uY(Q8Juc>*CMuVXs$@CWl5Ik|D+^oy=cz5Xn4wu(&{Xb8039fgE z1c^Id$l2U|3P?%5UH|nPP}v7Avn&6OGI(@*UK zFbm=II|4m?X|WVq6V>*y#1u?%+wL2G29^b=FOtr~!2kR<6^VnpPf-FNY5w;uy8bi6 zKom5MdQzbH+^nrs?_D`}C`jeL3jehdjXwVRQd0glQ+2~w=Qt5}J9p^+w!9-5pJ7z1}S#)3z)}#VvopY7g+oP1o4O8 zn+(Vwt#VwNe#G~f&^H52GN~jzPn*^10gYoMG$g;!HY(xAPDEe^bu+%HsqDBuuH&{i z;&2%KqlnSm$@_H6%f~)cz)>~LzUxp@EQNf2n{n=JdLAR0a}TmwMxbGV-1%bodniwJ zDLvrP8YbYfUI^h!Gk%f?eH}I-GyXSP+RPuL_h%4Axsl)Ug<0|oV+Rum;e*#YUo=3c z7@xH0wvyT75T5)>O;RTWNe^MqmZC@H-QdBC>O(@t z*{wmId#G85hw5+i?Fn&(Ol^Gywl}kORLwpTe1+=nT1~b!=Nr8DhQeOlgy6nBQZ_2m ztyc0zAiQvIeZ>;f2BnA6zp)Cbsc~R_4m0(4vJ^yblv8)G6!FvhwEsX)!QP)XF#H)s zdk@btwM?jbH;T56cAfs!B-`0{xkt-I#!J1rwQNrQYRk^JX|!a1**v5qU9Q?3ZetaL z)0kOzR3GM-Gt1M+vdMtS=*He* zgo=+nF=!+*`1<1Vs{7|u-wd>TZg+$gg*YZg``eCcu&MP;^>LonoM@GHDYkZ9L!Ni)x!oh95J%h-sjaVWQ_auI8*5Y9XR@;jOm#tb4O5E`3npAI z8R1r2n!7I_s@uHgR$7|h!!3h6H`i9BE6<({tKC?@*cn5EQ(v5twkriJJY}7`RFhz* zV03!aE^gZHAtiybj(zTqI zLsm??`DH8N*RXLWK~+z~;w(HWI6_^=xeWn_PnXBT#FM z(Ippu7iDti4IUPyAsB}Vqi(<)Qpb(SGV*`6h57S%L8vJfO)jf#KE4D&T-~AQkEk4w zga*g+xeZD-H+oPyrKJt3xwy*^)ewHbE68UyGkiQwjLT#EG^o`%%8-N8`S$C_R1ss@ z-Bo(2iK!|N=PXgLQ|RuOEPJ{6{<$}!e@s2y$MEj(NwqgHc88jfgogso?FbX2(*)k!!S z*+>r|=uUnwk5j+*`2yc<6de?v-F>jZHt<~xv$3WKa1)Y5JSlSWCtz7#-oa+yJBaz-up5JjNwK6vztx&H@4s<8ZZEAoOigC5uC z$iZ!tQvu=&5zGL^P@!Y|bgD8-$_I(Kq@`RP%W5-TDd)C1Zq`H#^{iA(dR|sfdwEqo zLAv8?6)e`!$}8wo`YmT+*Zg@Jw4HnuV}%phj5d5*HV2DVYKKAGyOjbEYCD2BW3-e4ni`jvsSf)MTciab~Jy&VH zusnwM&e>0`&_^dhI;u3W?$58G%RSLj-|`KrETV<7A6e1erCqbmerWka1LE*$D=762 z_njm;q7#?==3h#QXx%D(AxfI!u)=7l2{|9~dicN&2X~axRR*EKJuH9Kp$ZMBq^(Bd zNKMBhDY&shqz*jW-Wp|+o~8w}#H6KF)n41DRCbT}0>K$wUOzwEKF|F2t(8E6UN(ep z6oKEY=5gQBJKnVSVf&};Wh*B?zmq^#(-5(LI~XPsk&wW8(K7f?4>#x+*VZV~VH`E^ zD!LFE0GqKs@HpKcg*jB&jPb+^*d~Y`{4rUsf_fdia&f`Ri8*7<#!t}n&*ht5m4v(V zx+fSZ$X=fay=hhAJ69$dA{|YrM{n$pGqq>c%tqfN|KXyu>@LTlKP9W_(#@F{U06d|2vW7R1sS2lIzE-DtrlB_3s*aMkeM|Z?NXZmWYcuJcp}Wv3ic9S>Pt~Ql^zm zh4cQfn_22mMOX#tseWbQ*#-x_v2HQCE#pkg)saSj_;s_DE)nd_xL1VL3x$FT#ha8{ zGt6EgmsWF#3okefz)>65nuab)*SS+We2=03vMXv85+D;?)SjKSX?=PU_;*3qqVW5Y ziw61P`Yqvj&?voN0h&M0I{muL7MkV`o79goc0$x>FtK?q{Dqugo4Gj(LZ-hC^G}SWU+yI||Vbvw;Qk@O3Ji2fwnE(_svVr-aDq)G)!Mv!w~+ zdQ$oa=@erZM<~Pi;?3-BaOzfNM_yjPTYf_-;BUIRuHqd2;5X6^SC8A;SAH|quWE;f zhw}g)R>ouTQyEawc6lufowAHvaA3MqmsOUW!YGNmX`g4_L{{X`#Vo^1jnd^Lx z#{*x0;(-rZ=FspaCH4;v2fI`-i}K$R$-Jcf8bzf)nHP+&=<2b|6o?#_P`py!G;*`4 zp{B+A;{3?mh7=}%&r-ac?51Z-YIF0(G^(pyGLCnF`Q^=zBYcn35uud{GJXCD4OTPF z@_k;y!_&=8(q|Qmqr2Oo=WL))-EExvhX)^(*>+Y|hl1Bfkn;k9^1Jf~#>`OWcqgB5 zjJWVqo|ZxeD%yDqjr1+Hg)M;%lr><`6VCvr-FT=wRoe?=ag$AMqY2Q=LjoR`@h zRN#^`%*Y5H-}|oQFNEKFkKz-YPz*B@e`~eZ5kjs(?SSIjI&fASFx~2+)LjTarSA8E zOSyZQXp>B$6va?!@}ze)5->R-=Gk64GIvqo&BZZyhKLdlN7bs-B=sClY0ZwFi#cFp z^dE>t9vZ$&8f}bS%AyU6rLBR1>MIA8Z>`ly=I3-A=_Uo7(3X_B$mLckf6D9FgjDqJf=&ulCz)xw=#t^*pvN2zh(tDq?d=XlaT(cL`CV(9o7nO!UB(7=~g zF31E$Xl1fQk4kJ9Nk+>hjOS1zn@ai_D)?@pd)C-q%d{~o%&V}Hdhy;;Y1k@#^UrJ2 z(!_PJ6u>dMYI?SJ1>nt=us81%RPA6oAM08wxt`lgIC#Iw9dn7c3?6lTrn2x97Pa-8 zQ!ue4wm$DYz>ppD9qhdejbDz4p%E=O&>O#)ooE-azdoAiy8=W}fkaj|w#b1D*~Cw& z7l#0_A3zoSH>g{VF4uv!fZuu-vMdZf@ZVvF7!tG;Q4k-PdxW^Hs8JX_j1FdeyvzYe2#r=R6yshD=; zwP!$J)OaL!TWX)ol>`={GsJWBEwBKWUFDAis5|6{MWAhTkeC1q6ArVXT|~!Ij7Pc| zB0oO-Z7*j&rps?BS`xikw_DwtK<9BitugYkceT|RW8+8vfq>LK+G-`j(F1Vy+ zW|noK7xj?$fiqmupbJX1HQNj`{$L(dy7;Qs2m5r8J|Jf%nq~0Qc`pPDc3&5A)A?20 z^;$We=Os|ItwOY86RJvbudIiVuUYvKk!d!lji5Hovg9sPIJ`VkPz$z9CgU931xao1UM}uR|P^#%PdGi_<*KyV|?;jCB#R?r???lAWPUFy>Mf!KU(?Eoe>=Uw+iPv@;dU>VXDD!+=^ zGLKOA|907oPGPV01>f)T*bZy)@J0^~w!fCVdR~3(T%q2PZG#eu;?HV$^RHp8r)b1k zjB}9&c?R0i}tObkfq5<&88{L~|~51O9w4WSkxJ*gP6j*I;y2%q6XSTqrJ% zqVJ=*M@CdM_iQ|+A*(+BZpvvzW2-?Cq_^PNjo?3UPgc$$O+s11giQ6^=4#bY%I9}! z{!}nmn3IL_G?w$3%ZoI8n@c$TxVz-{LN4%H*uc*BWj3_F-`Pqgg%&X}aXIMDqvA1r z6;N$I)1(h1NTq|fv+w2Dpxm2X=uCAKAL@F|kJCn2>CdN+ado8-`*`l>FS5z53#wjs zU#VoMa8YxVvML*^{9tf}8`11l7nybycVnJ8$#PI$yxTgfg!BY6`}=nETDTw2vj}-t ztiG@jluyPhkWkK6D)P9Yl&yLaON}bA$@QP4Uw99@Nh$OG?y8`Yu-`s79A>!Hgtrsg zZrE!BJq$gz{QUgopp*9aI~mfUob1ZIG`6s~O!cOaY_-HknnjTs<9~G?2+BO`qv4c^ zEUlx?w#y+2j=FMHy_~mRkw@ODJ72W!*t0Hi_gztU(DnIq$n4tZR0mNxHvOxb;%(bK zC1HbWRdQ^AUz|jdQ%RJ(ta)h2MMjl)-?(Z%-;+Xovor76Y59ig%>^lMGZ*jA$L!zF zFSVeOT`q$&NLvvX()&dxduLYwC`lEMW~Ie)>a)UNuw8KOuS_I_5)sCfhy8I}oaBW5 z+UPpS+C9_tweTiA{3B8zKNtGY1s%R;U(vM$5T|N1ioasWrtZnmpAWYx$o%flCVWoq zkCxdmr}k9(ct_Kx8dt8AIB1ZDd#fL*nZ(?0XvtNL{v^}U{XN`VMK4lYI8sW}e`K?w z@hT6yfXXk%4?Op;)#OGh8Nn&~KyPj*iQuG>Ms?YtL4VK{+spZq_k+do_Yh>3dsY-K zOB!)Yj+-w|8cgHzDhDZFHpD;rjD($wuip6q_itrv%pGTcTy*39>UpYq{T{42;I-p- z9!~BLXNNzlTK$U;Uq;xP{c$17v*L6i?umsPfXj@V5+I2kTPdwlskd6`H zFuN+%!hcI#l7FIL*tx6c&fduITHsqG6LOGjPAmmmd3pQ>c0VeQWzI?7Db6%z=(nJ@ zS$T8Xu7kQp@zM5P828TO>~j6XtNqok>*vNKHA+HDQCkfPT6$8d6;v!kEbqtr+LdI5 zfe-%vTw{dJOb91Svp#8rnmLsh8{fC;oUb;E0n!u)(73RE{RU(S4+;AZZ;S6Me~fm` zwvxVg*pCz|(q*@FwxT(?abT9Elg2iwQ)HZLOXX%79d8lOZ@O^TM&eeNpmYs0 zL~Zk{5n6Tuv?DXq$AOhg5Ztxk_{!V(-a@Ae;i6>HSF1BFG)G_3b!eWm_=%ZzqLNJ!zA3MS#As_|r9yKD|h4diGTbjZ-Z z_!bq_JyXwp$SNY?S;&o@$eJ?b8v`_*F0Vq5%N>1leN8UC0{Wo9$2^>VU;?YQ$4jVk zjtaBck{t&rH!?v%s)sa2#!qqEklu_hj}@tJF;S39^grrpmH>XP#;G$IXxlYWsk~W&xKpzC@H*r~#DEd6iB9D9fN6Bl`5*2+=WjsgHB0Raj2U83ibLzBusJ>bE zB-ak-<8J&W_v_~yP6z3iEk6?6?dFrjTUo$g4%^C4wliCy)Ju=ZT`nQ4q#d0-^Wx1d zXS^s?r9*2nbAIp>Z&@2xLs>*6T$0?3 z%u?T6SN*~u-}qHipK*q1=#JiC#~<=EWzn!XNtwnmJx)$kYdYvCI;t)IUgxIR}= zF%t;)BX=H4&8+EYXDB{CCxNsppCi{Ge#rjepx_@B1V3jce(-%53C2uF&=y(I-UUnX zF>&OkaARqC@#}mB8FJ)lQs&5)n+5in!PjS{Pqx={&;exmQG_Y3N~s zEFgL&(mO;8C*4oye@Xo;7s=7{j%@D|bbaDsXz@F0@fp~&r&|o=kTeA}!Qql-T%Jsk zrpX9v!A@X04})-6G{Gg!JS%0=NJqKH9{-k^X;79zbcJ8p5}!EjmiAM9V)t<%nu4S*E(#{ za>84jUI)W^vKL*QJp-fEs$f7q*}G)0|T3G?Cj;;%PzH<<)zX>)KiT%iC$i-8T0wq_t}#UvH)v z)A;&p=$;zsHDGx2dG*~^Vie5ff=y#g<$y4$NOQke@m?BHSdYW);r-z3pcj#v`!Ei( zt%SlsvQ%OBL>5U%$jHK5064yWy&=G6W&4UF=3Bn!7)T1bJo4QxRHwSF`63WKZb#SL zn(>pVE}=;)NpZWi%l8s$jOB0nn(R|Sz0|&H*E*=`1a5S53U>Uht~QOo`iL+5XXlp0 z;T-xEt)}|u)5JlA#l&tNxTxOBquZ;t8uuPh)3jMVhtw%*(m%XQ!621!1txc*nfLOI zRvz2^n7DkUqM^Ycj+g+V+3SI9$-5bWZ1|w})V#q#)^JoyP&Xtbp!n5uFX>9m$1F0=Ettu7L+uLCd>M&%cQfWt21Q! zq(}!fUu}Zx<$OP7G^*E% zRL*6$05p15h4?2VY4vcP6Kwixa}C8Vh*91hwV@85>XlcfY1N7_VnP3p-fmYy$Sl^y zzE##ud%v4Z)_h#`11y&Oz451E;z)>R&>3QYK|}sSbLKtG#2|K#FEcUPOhDT=Q+!dX zC`X+0OxCotYbzT+uJngmIz&IbZIlmn&7y&s z!ZY4P{_f-yEJ$8^MX%}r(MoS0ZaR_I_9^}S+Hq-R>1}>dS*eDHq#J3;NV(-RDGkK?) zD36xmzs$XOLdO3u?KG@HWm>lqcm?Cxi4yx)g4! zypAq}sw`@$_fMdw6ekAAf^blX7E5?m>NeBOYtcOc@}|1xdB+p`TU9oJBnSMI+E_ut z5b4WZPx99i85f6AyE<*S;FZyF>)6oPv$qP@GukPAo48SbRbHd=y!+{F7Uq0yjNin? zS4ovnL7?B69V@+4wpl(>jV+hQ1|-VqVAN>NwjiZEG>amxuQCH81!!6M9V1Bzi~l6p z-d!6U6BJhYZ6TR zNRMPoF_uFMy1|Z)#IRQw#WIzXx5fouad4~lP58u=S6D5Fcw3hw@I)y)_`!?$>k_G1 zKFt?SW1dNLoiAM7lsei9?GCI-oj}zSl2oYT!zIUN3(o0h+$43399sx@mBy9M;oGEe zuT==46$SrZ%3buQ@SyO<@`<%`c6@XOwA_--|Lm(W+1XM$`kk1_WA-zKy@R8`_2BVkrSI|6PrC9`QZ|^4 z7yKVWMios#-sI^h1eLyQ@`B1b$tF=1Q|cyVIa1yNe~)tE`@Rc&k4I#wyLOX6+ebhB zd+)|YFZyq=!b}b-0MlZneh!;iDN(_@W7C(x!D1`L1QGrGN0 zl-7i&E_4pcb{{c<`4gq967d30U$kCnNJhj-gg*AW3URm&Qwa_v3lA^*enFX=l-R;M z>tv2im78ot)!0>uJ|#}@&4JEn-@9+mrk$o&wS*Xjx*5t3mNYx3PvrMp-`RvIKDcie zq3>Jp&v2ekto4j@zXsiiu?L09i996Wnc%^Gt@8gz(Me!hkc-wq9q zd>& zkdO)~LdcYaUD$@qb17vWH(Q2HnP+95JL}T-`}~IIIp_J~yw3UO9RKLmi`%`g`?{~S z)@QBtUgg7)U9p|7C{Jp}J)SFbZa@J$gfte^pZ0juLJ_}j>RpfG21tP9*)9?q)w=J! zlYWvhIf8sCs&PB&NQx(i8N%SRwkjy)Wb2Eay8`YohUmu#9t&^hOl%|dS$am04w*j& zoFG}h&~RZX-(^A#de@FZass8JY`^6s;k{d+5^CWJcFV15?`fgslF9Upkm4=q9hpkK zy@y1|u>aL8Hff_=U0sQ+yeOdTgchLz3`ebv(QP?vlgMwj0=MZ|joG0k!?*Z|9x8P(jdyENUTL1)d~Gd0p-eX+6>?|G)qW-f2hN^wGIVD4V!BV=H0pGtgD^~U)1N^ z68TqF?C8daCBiK=Bcr)ueGLs}X!DL%yik(Tbf4M*<(NVmBqX>lAB1}Op$U`pELP@6 zu~v_I`4m|`yiw^VMsYiys~jy%xhTnz+d79zlk^l1FGMG*%wLMs(F=>bWyl$aS5(%F z`l<;bMo@NiKpy4s@!pd(#|%tlVJc2=K}Nv`BPa zb2IFqDusJoQpemg4ZK@iBCloj3>{tN1uXbQZ<6)1(CvjP6>%}O)Muy|q7%ZICC{8@ zJL=c3HqgOklzJ*on$TtSMQz~QG(<=1TDvoHa&E-N#zH3!pZPGyQQ+lWjvN zN8qxdJP|{u+mn@)6eN8LR|gfoDvv|xLTE*`Kws_|^`yO-kMFH{c9sqGeI`GF3>4w$ zN}h4mZoKR#6UY8bQ}0q zhSgFdpYqKf^E>vBaH`xXrexuXe*V{xLdaDb>L4CHjWbl;AXm$OdsN3aY3@T(RKg9 z^x;VIiTQp(VKx0FgFNexojNQ?=q71(FD@&o1O2AN$uqZ+ii*3c@|Bvw0CVCD_w&;P z+VGi}RB-e^9)!Z%`Q_!Px(K#7HP^DyQ442}uTQCDx4H!f?%@{=Rv{hc*jQ87*vKzV z17d3FNbxQb!jaKA?y-=N%R#uLHowtQ@3qMJ_VsJ?Rn7YBX{=#;yP)cdM2Kp3)}Bv9 zLOLrxjB(&B9XH4@YPwzL6KC0> z_L)2$k8i3M$(-rVlO^DEnV`J=$I+FyEK5)nD7eeO$||k8rltY#GE6H(_e6H*{UpT~ zW_*_X9e-id$}XJDtay)XDzRjQk3&KSi+va;p(kY|3kx@Xp=SfRgik{#qwerEATxt! zn)1K1Fg*2_l_|C1;eKtzmeT>4JxpPUMt&g4g(T-Ny((n{t{wC$ydnm~t6}Yqy0YF}7J+Zt zAl^ss`oWyrdI?$8b#C%3{#u2D3lZ0@cVZb8{V&ceyf&YYt&J68c=3b_jJ+0=<= z-_Hl(^50mmaTL^&nm~MP?xhv;^w}MG%-(e;YOv>)3AG~LmWqsuUcvS)wi98gP5n%J zDwMAizMns)E5s|^58c#P{W+CQttPxY-?QdEQP$lgG)7s>B@g+VJ1M**-S8CNxB*TT z?s9>HT#6Fi>mXc|f}26XPoIHdIceXbv|4H?zXCDHfd;K_>mz9`Cuv`+)vSzD*4MR= zmio0P%z!m{@Ih01d)0jqjYvqQH_OF`HIy+d0d-M}YI)WsH#IBDKQL*3+PZa2_nMg; zCdmd}%OO7F)MS)yyINSJt{RhQ?oO@%)J9u{(Q8{3pkTnIqVx(JzJ5P|pEiilDLtv( z)li>Mk}J`v2(L`T&zB62?rdR?no$e;cT(oZYjNC)oVo2!n3IcT+^iWn%k&?AA+3Ay z;$qO@MaN|m*p@mRVVAvcz%#fd69Yv?VeOOq)_(Sip`cL1+R9wC^(Z)^B=HX)UX)yO z)Omx6Ce%L8H$~N+Uh^D{*o+y{C)s(Fs25P}o|t&!VilQu5>_%wg@+4VLDiKLFAuI* zlARX3BMBCo>oKYZCo)KMs9t#WoMG)`K`w8mH1aONBRooVzAbuNULm&pi$&i1NeZ~4 z338u8-?8TAhkN6bj-}yjUhoHnJv5SJvsz;Od^WbarQtIK?S~k^wUrWlLNOnSe9Ul= zPVT;wb{lySWK@5*+mJ21i1#z8m0rwsMyN`E{U|!1Oy2aF@_{foYvxC?4yXM(6n^a) zV~bCWbylJfgVJtqIg`cPe_*8gH+6iA;>9^+SR3xM53FVtE9QaQiGu%HMWfV)*?1=_ z`$Ay|Nua>}^Jk(ms?A~+KEIbUO78Wo3V!}>4Ctj?zxkB4X6hr_Cp}>i;vb?#5Ul)ROHEygA~c0l^#u5*%Wb_kXpCgs0Q_~ZhxN8V?vttj;eO5{`&Dj7Ksk+ zSX+U-`Gw#qin@B*5~v7rLy+@?e*5ML!$t$tC0J#zO#>m`LA@|%xk~AamXAJe)6Uhc2H8=ETI8= zPBC*c{)pS~1L4vyk5*%)PkGB2oJD=IT&*|_FVXRit6Qa)lQkaKkk+LP|JhneXlprD z#Vb#+fS7s}d~4;zHV75fJ0=L? zYQyj@lkhX6HGzz9*BN`AN1r|oqw;5L{5}B58#O&5L*jIEwCnySjZ!~~tB?FzdL!;K!~MjWf`zQ%f>)-01rge7z%~R~3c`+^Q`H!k|LT z3x(@;$v9CR=ChP18^()|#0W8HJlL{qY3)KU(nnL%YxhPTymz#Sv9w#>wo@rVhwX-_ z6ANT~UVIIOC=7oDb^ycR%*2J``ybX7SKsK4HZn=?Im9_-Zex*V+rSYCjsZ4ZT;y9< zcfgb5(umv;d~j(cs+;MJdCzNyJf|OpjZu+@wCA{=FYOOj@)eL^mj=U;0A0M_dM`Z< zBp29{#s_C8``p|r70hn8?TNaQ(G&4`%c`Zd=E$$zB*u=huVW?7ee#H7VoN0F>mh-f|ga(J#0w;4`%2(T?yZRwhCiLX-ocA8| zOxF)2@Cix0Hy^n=6Pj9=Q9duy9b;f$nBpKA^YR2M`_ZT8;nC(Bmi#Q|eb1N2`f0JY z-B9$6ma5@fICgJbha-EAssO z&}(`okyJN3WKv<3n^3haY>WEm@1&0B!#8z_4x z&-Lv6)y;R-?x)b9Tg<@iPJiO0Wg$e(-QhPGy_`9l#s|^9YpuaEm&nxYkJF?;`wlzv zDeW4g`Q%53?gVuc(|6&M`_ze*+{qeXXlqwfZpa^8Fl&o9l&L;Q;u{=%a6Zgg=1YB= z|Jji^9N(pM9o;TVE#lhbYXL5Dem|YVuaT{v7u}3pvi_Vl@teBnI-U(+%1DOhIcViE2ryfiy5dA&v2OR>Tj0Nk49({-}_(j zpABTb?v3Lv!VySKy%snc7eDpgu~E(rcu&U76oNB6fTRzxkGG%}A}Yq838Ss@C@9Hg zY0NIh+~Vw!**p98s59zT%Fq_VGaBAGWLw9_7Gj(QPYmOeQKac7)f_jvDV;*P`*lE%fW zc3L9f;8C2?K))Q?pJ-%N7$|iIjv7XR+Qo;k6UXOV9C(BoKia|zIsYun@Fg+V6BTRZ z&KidWCGbCPf0ZI6jF!;XKcFn`@G~;LxGckB@jMN;F)g{9<`s|?9UwJJHuYClSLaTK zzEEGez{KcAYHD^!bTzyxKbU7~Vq#vA=Fr7`p;{Zt0BS)z!#D4$2}MR`{CUWUSC{#| za*FvR=YM(}NPta4nX%_hHGT;-)Rca@?tZ~Yf-&l8mZ4G_E& zLWtYexB0L6F`s}R^YKwsSjge$hajQ=aRmcf80lRvIpu2+pkpz%WGhFw7h2R+eNuqt z9`tS=L(mPv^koq{Jul= zpH`K7jx-U-JF3?iYIb1;v11>UB7WO8L|wbCX>o+io564CpW3%0ZYImbysjG6YeUXI1X{Rm&_qyw+4VY2yBb1}x%+1R)|MKKy#Uc)FvJE@e zc4dAjD9CB#DF&Xe#yxRj>YKv0r_2&7=IP}t$|0B&+Q$QzE)KH6hS9>i&s_3c!krMl z^Vj7<_p2r!-RMad@r5!DXPQyw!1SbD-EH`6r<2F(?=vWjkrz`T-Ti= zBO}A(u`m?q=;FFzE;3-Bvs#azAt z5~rC~uT^0XoH8$p3NdxTQsKD2)A>6+yUuWH-H`dH!c!X@rq>w6lmKY?QC!5=@)?Vx?S8hYZA zI6}Y^eGC6ZiizAK*aby;$roKgiye zj{8%lMn!Y-Jczu^Y4m$dvra*Y9&|RAszP+$t#Y=9?@TdMnf^hJNz5I?)b6WWM z+<;J-t%aYQ@>irVli6^OuD_CNR8&o`mw816O9MammdLY{heP+H;~@*GN3VT_^6llr zAn9TD?Nttb{JA1``#r1XHoO3e*~XT2i}6tjEeWF9Sfv<7^|vaQIlpUYYQ|`~c0_6$ zvO}#Mw&p=8V%#I36sGnFV)T62Udpzh8n?-=AROfy0LHP?@2!;vD0otqaswd*A^s7a zUd1~LIzgdq7s|m#v^(lUa88$U-zh70(VY(mhY$lUZCX9`ky)Nu4RhL)=zh0w95!+< zrlF`UL3bn^#MuqxYD`aAVd+DjP)147D`LG>0$CF4{<*f2S)-vtJ4=7Uk}>wxD|;=% zd*GDuHpom>0#MF^)CpKy7Gzds2nayx_+h;>Tj{v~(AS+40m`W25duBVq7dZIR~+RY z`L!|6(RAW72o%Clr%}j2UOo6gnc>v%)X4Pb0_L4_V!-(O%he-!6ZxN@cM05qtMxW# z&52cvx`}$sdzke0?TKJo-!^^??EsTd2+Vg&7FueEqw~qf{Sp!;OJJM2G13heKm16Qn|W%ql$x zDy-z)bTetVaC~uErq3j3%=WId!A4>Qn=AGERGOkZWpFseOSRj($*b#GGV*2A4rMf+ z`aX0ndC29_D`T?dsW{}hNV!w)3xVwXEl14?dCW{bcQhnUE*-Jlw})vHByoy;o{LFU zQpjuj*e)jCXD)4<)2#rt)bp$H2h-AR!pW_^SSV7g2nOM<-1PJ2I0A0QIQx%X{Z8vS z=VOGKuTl(a$DHBFOOb)TzoyZ-851p@jx!vP)xm}ASn^Asc9)OjC*4G*goewKteWqM z&F~G!g6_?7F$_lkxir7fh8*~9xGFr+;Bn2qn9P*Y{(Q?-finH{sW_yW; zjTE2R4fxAA{yH4ek@z^(#aMoQJv}l*jO4Ql*P+q@)c55@MhL%;WvttCo5SCdP|{}Zpwl@W5*ocQ zbT;KDasQWI|NF40B(ljF$5iM~m<+xx7d%xzeM0g*I%h>Aw|Leb7gD7QVZi7+{H8nLT#MMT;g|h;-<1PcYUwO!=h|chn z0YR}BpkyK6ey3+-9TOBR66p09OXxbZL#c5;g8JCC&Fe@BQ`sLb0L~~HpagZJO>t-_ zg%eQ36@V2Qu#pY8whMqdUxQ|HbI8mX zJE*cqUB3V1>>yvO`Y(5fV#NpON+W_F)}AT7ym$rh7w6Dq5Pm^HWFvrZH8jKogsTu` z*|Tty`n%BC>0l20wa%`t2Kb~(RAoEt8eFo!!A+RPK~7G7jE?SpwVW9sK@ZbQ=-UId zlAVKNa(M{+?{R3Cgl*jE@#M>iQ>PTv)gyp@mtSJYGY9=RiYvbYBsZ_XsFhw)N4@QB zm~@~6c)IhzQ+|$ysx(7$=kX4YyLV|E>498tk;loyBbhb^vBdYuovaC*>WqG_xxftl zPzx5rLgr9`UmDRo+F*3`{`9x^eD-}pRAP5?y612J{~Wv@#ifh*7PAFIfS(wj`uh^5 z2TgzpNYw^30vqQFLqg>t*@f0?lrbdJpD88zcM;kSQ}fq~5w^EBM9aPZ34NjR9TH$9 zi;1Wg0^mLO!~V{M6j?D?-#IS=fGZWBS%4zE0M4?iR+c_Hum^-khcFfvv2+wbd8F;n zB3JbH_upaoXkjA%aUr!*(#3zxXk@0R^JPrF1KvRU)7fru=pb+ca~P-T278cMP_WAu z+{970Eze%NqPq2^DHd+-CQ|3q1})qfC&7@~AUak1x`NjV zIu3MoYi7}~gN(V&#kZ1n&XO<>ARL_Jnim~V4o@U?0XPKq$^@h(%w%X>UmSthC3}a5 zkkuGY#^s8bIGId6Liv|zPl{3holRI;g>}L`MqGnp4n>u7;AEh$X(VW&um9VynE%)Q zE?3+~z5hhaa_HC^KoeVdO&@mqz{@fZ&Ey3oM2oySNK~<0xS+DRxru3x7tV#}PIn)I zS(1u?zn&m#4jP*g12PPkUcQ{boqjHqIY+~l<`))3`+WWlK^lgrAGZHf2&wUGUSVP3 z=|n2<8d`Q37HBWw{<(|uDfQ)gQe~L?GY`po*Ww+P-&lhCt3J10J3gmjxstic4NQBA zJQ^S(B11{`=xZI^!1?a(ZiEjsyzd4dg&4Z?QTPCzGdVS74s=nh zG_jdTBPA_Wu1hgH#pr%IukQ(-N>{*AF6p?fazI7gK0!L!+Tg zO-+0Bv!mVT`iVbUEFC)Aw*Npq6K3#+kSy<>hLHn}UGwu!6J+Q;wHd8UP}5c?GKKmv zoy1^cv#A$*efE!gcr8!!8hLzJ$pXaZsEvJ(q41IKbJL$E1n&|PHdYLN7p_#7l)WAF ztE5Ae(d(PTG|(4$1-`}CB=~m`3x?R@nnr<2nW6Ki&v7+yDk41GbJ20&?({5Og^$a$ z_J{SzJjx`aLBNL6OZ!CIU6=;cT`?jy%9^*c2;Hh()&7`l&r zcXj{k8*w%5&6}%WFI30Jxc?*ZjO?qbJe zF&LaR>P9<*|9AGOuB6v8XkT-Y*4U8A=P8qI`SBm? z{b$+d=vT!>_h*+m|1ACcn{2`tBX{IbqOY9%xyjl;CppO>MkMv2FGZ$*`j`1RpS1=f z8bz(-F?fT;M_uhJo}J=b;IfA(u#Aku#5z*l-mP~ zDmjm`$sAgp>VPuD4TyFAxg{8!)!@BCWXn&O_5jl3s90=#yse>^fz=#1RFDQribJ$m zWdDIbC(sM~VR&n0z(m|5DhuPJH)%-&553X!@35)fvzJ z@wVgadwd z;OT}#KX+}>zP-M0M!_g5Sry4G z7uk_d05qdN{=zZDmG-pZT@wJD!H}QExx0YJV9xP81FL$ZY+1rodyK)}HKf3s+0Fc5 z(q2p9l**ef56@IwlT~%WATlcJ0Yz0+_vLdXtCbBxN&$>MwgJWmMO?Na)B>V)Zu*+D6%1#y=pdkmxFx-V+1Zl%5!=m1 z@RFs0%cM@$1`C$p|E*x^d#w;nAv!s$gtMU4rfkeuqe0|NoCDkv(B zfTIthT5&$mAg=+KQ91M&G#M}Ky2UBIcx}ID$ToQw>EmVFGr~?O-~zvF`wZ$HDm;nz zzB_IKmiXD4cNc-6U~K#vO*Q1R?l^y&K1z|v-jxEaq?@b6Afew`mOjWp-dOl19HD)1 zs>}o3k(O8Q=_|ZQFs|Y(|M^yn4=}{+vA%QDWfgG&Z2}Bll6k)k*txg{kteBsT@VKx z*zMVdShWj2QnHS1&Wm$(Fy@a7A)I5H^8x3GAJ;K*@1GM_^fH=|%UmvNC$R;~x`Px4 z??2w#a@=Cw#PIhWuw!)~*6=L&Oy#vmFa>p9gLQ^COE}OVA+)$)rMwN+`IwGMN|np~ z`;}x_GyM29cw!AODTy7NdDc~#mV+>*&gApsI`FJv{Nn}g3m0YsDNpL1OWLw-6$P~z zL;bN5>hqcMPrHCOW|IOhN(GG1Zvw+>kInE4zSyRon#3%BS>_h*mM!5(urfj#CS_<8`-h)ieQ@S(E!|900 zQUWp0PLLVnl)SYk>%+FEZm~lWoa7@`lFVD8$v#t`0m2OPIfBS)K_Nx^N@o4{WIbm# zKY8Z0t5=nb7?ceYfHvGL!T-7!-d%Wb3rC8UE7{<|OO{TJcLpG# z&clpEU2t5P`S~?wD^?7xY;9k_m_KEJW3%w`-hAb=y+)zfe7iZ`YIhZ{+1J|JiQa_K zWf-Z64qhHVKflpRWYiT*Op=C{Ay`#Mi2IU}s9Vf@d}__&D}5A+vcT~ZW)-IZM{6M- z`7Ff-vLu3#;aF~)Tk=S3oWgE{&20dC+cY#Wwe<5dWl@Q^q@>Y>@}F0M(hvdabUmC- z_o}^LL`Bsj+}_QbH;>WKa3KZ=2JApc@6twh-fhJjH=dVxBLXdW`^j{tk!D|ggYDF{ ziI%A;g6E+_hn)K=?+i!?gUi+AObs=+Xi%nXUrkSeO%w091R6W4QCaXx%>y^K4J0B( zGrK)W~yY0*AV!cXaZkDmO&Y2X|i+F z(N3V3j8@RsEN9n8`B)fsID_Wz4X7qc5Z&PC;^qeKZ`g@@i7wxQH^mNwFuVIZBWzd@ zP@SiuucKqQ7>!CP#H)xlIhMSC--hNSqD|j40#Vw6(2k3_!OzeC4MwusAs4LV9t>^m zZU(hNAT%K?%;dg39Ok3*Fp9t=PRMbPH}MXn6J}I>*45*tpo{rL@16S#XKT#8U#;IO z8*<%%$+Y&OXu{p*v|SO=;wlVy; z+($`gy8-@^eI@0=gSp&Bm76bH=%Iv;()8W&&?GT2u|{XBitf1$7^<1$;py3vo104` zxd6it;>-wLTF7fHgn2Bt!0R$g1U2#Nbe?%b)CKVsa8hFC@a^p(Ykj-o#b6AJ3+K#_ z*Gvu~2VLK|3^x(C$|P0wvNDs+GG#dmq|3Y?g@v5yfj)wo`lIRPyE44sVmVSR05la zRzfyac@XNOZ(}KYloLb>nj~sGXF)3v?3`Ywwn^Q9Q)5W2qLC!ym&-C#^KtjsNHtUe z#>g03P=MW~xe-43`0-<=+2pPK%QM$o+g$bN`ZZ(A+xQ&GDSFXV!+Y5o{W>$QQxxl) zOCHu%US7-6(JIQD@Z2uI>-M{m|5}3EPc&-+2C638OVUA5b&9v+S6j_l06c_Be0~3_ zjFq&YC~CQV9nPL6{#I~|LM?jUEHm$It$6owck4{PC!CUNp}1Q`SxrklVq&1=Dw7aO zHb9~~8meY-`ghi~X%$Y(PY z^roN{@6R#$tn@vF$!~eA*Hh!>hQPOpg|03`S9w<~MN;FFs4d`?Q1$p&%l z_K|C@l;UnPY||mLMq%iOlTj(bL}f08eax4SvA}yj&)F0uZHaX^q74 z%I-r_MR-1Iy93)O=xAChy{dfWil5l(cYo}(=R|udw*76{_?Fej*PIi5cZZ%~AKr?y z=BU6m)fcp3_pz<7(%<{(hlspNpGE0<#x-OIk>nF`zTIMsS{f$(Hi^%dS~1}@Gqhqx z-*~OeUdA7K1td~gGj;NhF6>rz_32Fasa+;DqzuSwRNn5jo+!^!NvTT%knAPBcYykM zkq;xIadass^PUfI&2ka}eE*Q$ZSI@qod0vA0L* zt43E>G4k;I+aCc)p>o$XrdfvD6~AE!lU>TeQ3;u3+z3qEcNU53WJg@nZYM}|m1;|C zZ$h2I<*hgT?^9NiIorq0$Z19LWeo*sx4aN<#zn%Q#}laG79R-sLogXFaR?nO9B=v0 z1c!vU^=0{e0~pV3ESqI(>Xn2n>vwe=GoeY5`lUUskp8r?$9KBA)LGIhgBn^9a3 z4SxNCjb0g)h-RPU)xY_AgQPSu&dq7gZ)3*;dfjpt)cz(Zc!PE06x>J%Qpeqqw=fIB_`&}Gs=Y2k diff --git a/src/benchmark/output/plots/trajectory_tsne.png b/src/benchmark/output/plots/trajectory_tsne.png index f37b197da5ba30c5cd8db393a0fa9ac7163c22a8..d284bb306ca3759f2bc5474c25911c5be7954349 100644 GIT binary patch literal 43188 zcmdqJ@-Q5f&F*H0IzrW|aIG^(u zoELnUnZ4)UH|t(`t!ojXtSF6+LV^MX1%)mvBcTcf1rr1X1-*fU0DQtTxv~TN5^$6J zaz{U2CgN=)Y%F4~n$yI=z-Twc%gU!*! zlHG#7;Ty0DvXhLqD-;x_@#_zC38>f_3aW%kRzghOEAx02(M@l5_Wj09^4p^^jYjj4 z4lO5kBcJN9&lEB;usBqANY;gkqR*m1qBtLruwaOAWDdr-d80^AJ3MvkW{X!Ys{PH7 zlZX#v?5}UMZR1k;J@-Cx%^ff9ANzC9yX#|NV`Hm?=QUj+|9f?50wp6MAu-d#0Yyhc zLvv(A1cd|K;m&~u74h}!R{pohhY z8B=fSZ8JaoPJ*wBLV%>+jpl$1JD|z=U4CD_`|;yP^M1B3hu^JJVPPQ^BO_vgbZoz8 z=Oy{^Vtw%%squW3zKVf?!CAol)nVx61gLAyol|6OmvsFWLGe4dx{HEYtLk@k;FGP; z~*H4>qmGPyC{bI1i5Z%SCeKqw-n!{Ib-zDKv+Aug3oWlzsU;Ir$B zQ!o19=%}5WA2&(g)!}rl!>Rzj#HtUtl8H*M!-wbjx;k((L5@w#!NH-@6oZT}Xn?{O z&2!DWxY$)-JBrI`)qQ@pEnuTNm=BwYiK)h@2j=lW8uW{`X$8kKbLDxqI-ueH1@v&t zC3N*i{B{#F@GG@=n7SdzWoK|(Ajh`4gTU~9Dg_G(?hi@!_TF5*rP7M;S;uu%%CVjF z^h`B;e#}>Bs!3!jwI3tNtiAOUB9Y})tz~oedCExfGKFjJ63E+Mo*({JI{Kr^%F0HI zgu(gD>$#$*5BG#3&d&FTP$Ns&q9BAaL460)yW%TpYo`rI`Ir-hwf>~90+;PCk6bPi zAz!6m+&RcCZP^BwG;HH>sE~8A-aefL8v5tt*jP-*Pk8K_Snve?_W_? z)G}Y8T>!IHQNbdgC7`j|Xwrw0;8D(5Mxe7w&5N5@EIM!o&Q?E!^u(RZp-(9)dpLw4(D0}RE;iQ?~1?M z1LXq=^E1;*ApJ8h@3Enl;Y-@IS;MCzEw76qM)2zXR$t_->vX9aBafy5>BSPAO>8PO zUD@`O9J_{N$%OC?8HLvd^tA=mjsjD5*@oCMA71!GUVP;%5m*UJOw)=%U*jAgMkR^%QDmqA_`RB!gYGj=;- z_{=#je4~f|hN4=#-om&$2>N!+F`xhj=kICTnF*kOx5HYU`7jv#U0r}(9F@cUKz}+l z)6bW$9m%*l3%C(%2vdczLS~~MtVGe-MK=tvxYGvC(Zan0?y$P^zD#F*VZoI}ZAD4= z8jr2((S=8nJvdf=ph~}ufE{>S>8jHe&~cyT{{%K1nD2z};BO3_DRvq**d*!T>bL@D zsbxSL9iPiGcgb3v*qS!OT-~m!(Dedo>goghKov~p@v+^t(1@*kfL21*^V&^kF$|Y> zm2%>v;?7OLyuN4Y4`fV{TPj7+lN*a+XZyW7zvVdDHMPk~v$IWQc@>!HYr@0JPNI@J z7K0gjDIU(ynJSDra*=s^g?FVKpc0S!pxN-xLy3Á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 Q#sV)@MGXbSBeQ`21JdCV8UO$Q literal 19219 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 K$h!OV<^KgHcu*Vw diff --git a/src/benchmark/output/results/results0.json b/src/benchmark/output/results/results0.json deleted file mode 100644 index 37ec246..0000000 --- a/src/benchmark/output/results/results0.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 37-year-old male with bilateral painless testicular masses. His age and gender are noted in the initial diagnosis (node A).\n\n**Initial Diagnosis (2015-12-01T00:00:00Z):**\nThe patient presented with bilateral macro-orchitis and multifocal hyperechoic lesions on ultrasound, followed by intense contrast enhancement on MRI. The initial presentation was characterized as \"bilateral testicular masses.\" The patient's laboratory results showed normal levels of AFP, b-hCG, and LDH.\n\n**Surgical Intervention (2015-12-01T00:00:00Z):**\nThe patient underwent testis-sparing surgery, which revealed a benign large-cell calcifying Sertoli cell tumor. The histological diagnosis confirmed the presence of a benign tumor with no atypia.\n\n**Metastatic Disease (2021-06-01T00:00:00Z):**\nApproximately 6 years after the initial diagnosis, the patient's condition worsened, and lymph node metastases were detected. A bilateral radical orchiectomy and lymphadenectomy were performed to manage the disease. The histological examination revealed malignant LCCSCT with vascular permeation and spermatic cord invasion.\n\n**Progression to Terminal Stage (2021-11-01T00:00:00Z):**\nDespite chemotherapy, the patient's disease progressed further, with the development of pleural metastases, pulmonary nodules, and spine lesions. The patient received multiple rounds of chemotherapy, including vinblastine, cisplatin, ifosfamide, and paclitaxel.\n\n**Clinical Trial (2022-12-01T00:00:00Z):**\nIn an attempt to manage the disease, a clinical trial was initiated with axitinib and pazopanib. However, this treatment approach proved ineffective.\n\n**Terminal Stage (2023-07-01T00:00:00Z):**\nThe patient's condition continued to deteriorate, and he progressed to a terminal stage. The patient received palliative care, and unfortunately, passed away.\n\nIn summary, the patient presented with bilateral testicular masses in 2015 and underwent successful surgical intervention. However, the disease eventually progressed to metastatic disease, which was managed with chemotherapy and clinical trials. Despite these efforts, the patient's condition continued to worsen, ultimately leading to a terminal stage and death.", - "bertscore": { - "precision": [ - 0.31829699873924255 - ], - "recall": [ - 0.5213518738746643 - ], - "f1": [ - 0.39527177810668945 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 6, - "edge_count": 5, - "avg_in_degree": 0.8333333333333334, - "density": 0.16666666666666666 - }, - "trajectory_embedding": [ - 0.20442374050617218, - 0.08089178055524826, - -0.024914061650633812, - -0.03979193791747093, - 0.0259078536182642, - 0.2874663174152374, - 0.0590699277818203, - 0.1804632693529129, - 0.678746223449707, - -0.3412137031555176, - 0.09028627723455429, - -0.126709446310997, - -0.49773454666137695, - -0.3380317687988281, - -0.11197445541620255, - 0.31535783410072327, - -0.4333740174770355, - 0.27163252234458923, - -0.03901287913322449, - -0.3344475328922272, - -0.3614410161972046, - 0.15794190764427185, - -0.40008389949798584, - -0.09342339634895325, - 0.15163923799991608, - 0.1269751638174057, - 0.34867849946022034, - 0.474468469619751, - 0.09587431699037552, - 0.4105415642261505, - 0.24164967238903046, - -0.2722645699977875, - 0.1767723709344864, - 0.20043961703777313, - -0.349172979593277, - 0.31538304686546326, - 0.07168328016996384, - 0.3614099323749542, - -0.18212544918060303, - -0.06916672736406326, - -0.07248474657535553, - 0.18056458234786987, - 0.7411791682243347, - -0.010471589863300323, - 0.1291963756084442, - -0.8289646506309509, - 0.059095416218042374, - 0.5390471816062927, - -0.23015408217906952, - -0.31452128291130066, - 0.054593369364738464, - 0.6961681842803955, - 0.6970283389091492, - -0.42003878951072693, - 0.4121139347553253, - -0.15301884710788727, - -0.36452552676200867, - -0.36051496863365173, - -0.0654277428984642, - -0.05527949333190918, - 0.24910396337509155, - -0.6438493728637695, - 0.5278618931770325, - -0.26405051350593567, - -0.10189243406057358, - -0.040433019399642944, - -0.29900914430618286, - 0.2873968183994293, - 0.09586111456155777, - -0.5401602983474731, - -0.109682597219944, - -0.19462478160858154, - -0.0010297248372808099, - 0.08559533953666687, - -0.11486145108938217, - -0.1683729737997055, - 0.2629479169845581, - 0.04779095575213432, - 0.389974445104599, - 0.14829404652118683, - -0.08384224772453308, - -0.19264249503612518, - -0.02557353861629963, - 0.2281181365251541, - -0.1019250750541687, - 0.015150371007621288, - -0.25873175263404846, - -0.2519265413284302, - -0.29840701818466187, - -0.07924599200487137, - -0.006147474050521851, - -0.4016859233379364, - -0.001222863793373108, - -0.10164552181959152, - -0.07859454303979874, - 0.28600582480430603, - 0.492910772562027, - 0.18335838615894318, - 0.9476156830787659, - -0.0032466675620526075, - 0.12020450085401535, - -0.18071883916854858, - 0.3242885172367096, - 0.06204262003302574, - 0.22100204229354858, - -0.20610396564006805, - 0.14569181203842163, - -0.5818048119544983, - 0.47181859612464905, - 0.6001319885253906, - 0.39384639263153076, - -0.01024016086012125, - -0.09766912460327148, - -0.18450778722763062, - 0.2982499897480011, - 0.025360390543937683, - -0.07226558774709702, - 0.27440252900123596, - 0.2713673412799835, - -0.5630276799201965, - -0.14629660546779633, - -0.10291727632284164, - 0.02482043206691742, - 0.22885918617248535, - -0.3711835443973541, - 0.09008225798606873, - -0.01950092427432537, - -0.08462309837341309, - 0.24789567291736603, - -0.14811517298221588, - -0.7045021057128906, - -0.2230713963508606, - -0.03830065578222275, - -0.040898170322179794, - 0.28616905212402344, - 0.4331987798213959, - -0.24983854591846466, - 0.06619643419981003, - -1.030485987663269, - -0.07637278735637665, - -0.4151497185230255, - 0.04744786024093628, - -0.12170374393463135, - -0.44626930356025696, - -0.20722514390945435, - -0.04557810351252556, - -0.03684103116393089, - 0.4947117269039154, - -0.30923527479171753, - 0.13861866295337677, - 0.026733389124274254, - 0.10155167430639267, - 0.056125763803720474, - 0.7142745852470398, - -0.11216775327920914, - -0.27275267243385315, - -0.1866089105606079, - 0.24917101860046387, - 0.1163114681839943, - -0.161648690700531, - 0.2570304870605469, - 0.5556506514549255, - 0.09257175773382187, - 0.036579232662916183, - -0.2399251013994217, - -0.5222260355949402, - -0.22532807290554047, - -0.040394458919763565, - -0.1616133451461792, - -0.03528749197721481, - -0.25962188839912415, - 0.1375253051519394, - -0.4845661222934723, - 0.8635237216949463, - 0.1385183185338974, - 0.09313105791807175, - -0.019964871928095818, - 0.23981428146362305, - 0.050961241126060486, - 0.020314311608672142, - 0.23118406534194946, - -0.08730587363243103, - 0.513599693775177, - -0.03431873396039009, - -0.2797459065914154, - -0.013971713371574879, - 0.2208833545446396, - 0.306857705116272, - -0.41252854466438293, - 0.03820085898041725, - 0.4507302939891815, - -0.442353755235672, - 0.6422566771507263, - -0.2127496600151062, - -0.15735387802124023, - 0.17179358005523682, - -0.0825379490852356, - -0.07669449597597122, - -0.13035765290260315, - -0.07372880727052689, - 0.21059860289096832, - -0.24665816128253937, - -0.3929661810398102, - 0.010075333528220654, - 0.1906191110610962, - -0.06770581752061844, - 0.2887749969959259, - -0.28219690918922424, - 0.15957190096378326, - -0.08518349379301071, - -0.22382308542728424, - 0.31420573592185974, - -0.19127027690410614, - 0.31449320912361145, - 0.15269584953784943, - -0.5540654063224792, - -0.1556224375963211, - -0.057121068239212036, - 0.010500448755919933, - 0.052579764276742935, - 0.15062947571277618, - -0.264585018157959, - -0.2926781177520752, - 0.062386613339185715, - -0.41211840510368347, - 0.2753070890903473, - 0.20111097395420074, - 0.25078117847442627, - 0.24322609603405, - -0.17981739342212677, - -0.14524053037166595, - -0.1401740312576294, - 0.31826451420783997, - -0.27812591195106506, - -0.3369868993759155, - -0.2531004846096039, - 0.36144086718559265, - 0.0024286184925585985, - 0.27338576316833496, - 0.45138001441955566, - -0.281975120306015, - 0.03765731304883957, - 0.07389054447412491, - -0.09623698145151138, - -0.22130602598190308, - -0.3670954704284668, - -0.09485115855932236, - 0.2990216314792633, - 0.026946350932121277, - 0.265747994184494, - 0.05678742006421089, - 0.17384123802185059, - 0.06721819192171097, - -0.17845652997493744, - -0.2528524100780487, - -0.22013230621814728, - -0.17281155288219452, - -0.2599353492259979, - -0.7025058269500732, - 0.0714215338230133, - -0.06310737133026123, - -0.06323951482772827, - 0.2969453036785126, - -0.12410461157560349, - -0.18366320431232452, - 0.05466623231768608, - 0.12993063032627106, - 0.025382990017533302, - -0.6100733280181885, - 0.06396869570016861, - -0.4163954555988312, - -0.18978522717952728, - -0.3872186839580536, - -0.07440536469221115, - 0.23785074055194855, - -0.18172775208950043, - -0.33920228481292725, - -0.08942780643701553, - -0.08124495297670364, - -0.47597089409828186, - 0.025938361883163452, - 0.17386245727539062, - 0.03170892596244812, - 0.3117237985134125, - 0.12817873060703278, - 0.27913370728492737, - 0.47200748324394226, - 0.1190471425652504, - -0.09122348576784134, - 0.31710195541381836, - 0.45664703845977783, - -0.27549779415130615, - -0.07325927168130875, - 0.056460440158843994, - -0.10286565870046616, - 0.1387558877468109, - -0.4987529218196869, - 0.46504613757133484, - 0.07455617934465408, - 0.17197246849536896, - 0.06559544056653976, - 0.11455180495977402, - 0.06486790627241135, - 0.18258057534694672, - 0.18977797031402588, - 0.5495983958244324, - 0.31261441111564636, - 0.43697771430015564, - 0.38513728976249695, - -0.032340001314878464, - 0.1952948123216629, - -0.4176863431930542, - -0.043678730726242065, - 0.2806291878223419, - -0.3567790985107422, - -0.2910067141056061, - 0.15786625444889069, - 0.3394787311553955, - 0.6696169972419739, - -0.10941547155380249, - -0.16651298105716705, - -0.11744455248117447, - -0.194100022315979, - -0.04769696667790413, - -0.41274285316467285, - -0.08658424019813538, - 0.11661291122436523, - -0.3345325291156769, - 0.12499501556158066, - 0.2600155770778656, - 0.10507678985595703, - 0.3292047381401062, - -0.6036863923072815, - -0.11750473827123642, - -0.06283209472894669, - 0.12880130112171173, - -0.31951025128364563, - 0.3199805021286011, - -0.02281859517097473, - 0.09923842549324036, - 0.31612005829811096, - -0.2645803987979889, - -0.15765611827373505, - 0.18021585047245026, - 0.4059627056121826, - 0.04057658091187477, - 0.14133328199386597, - -0.01626056432723999, - 0.25342658162117004, - 0.17610299587249756, - 0.3074936866760254, - -0.041735608130693436, - 0.06390998512506485, - 0.6465148329734802, - 0.4248292148113251, - -0.09025168418884277, - 0.13894228637218475, - -0.26735299825668335, - 0.3329155147075653, - 0.06438487023115158, - -0.03854351118206978, - -0.29759514331817627, - 0.31330907344818115, - 0.07715282589197159, - -0.5309041142463684, - 0.11964502930641174, - -0.23468971252441406, - 0.07894671708345413, - -0.01906866766512394, - 0.31545618176460266, - -0.1441272348165512, - -0.14190785586833954, - 0.5266292095184326, - 0.1487427055835724, - -0.2870776355266571, - 0.4335128366947174, - -0.13985931873321533, - 0.013895292766392231, - 0.23653049767017365, - -0.13995863497257233, - -0.21462558209896088, - 0.07988906651735306, - -0.17457573115825653, - -0.13455484807491302, - 0.11081705242395401, - -0.258798748254776, - 0.1473519206047058, - -0.17583082616329193, - 0.07551505416631699, - -0.15257097780704498, - 0.012804225087165833, - 0.1767113208770752, - 0.1399892419576645, - -0.12422206252813339, - 0.00517214834690094, - 0.37744060158729553, - 0.08099569380283356, - -0.06752260774374008, - -0.12810416519641876, - -0.11574176698923111, - -0.14598782360553741, - 0.8153969645500183, - -0.1641237437725067, - 0.19980257749557495, - 0.20777319371700287, - 0.06973104178905487, - -0.15880000591278076, - -0.05659942328929901, - -0.14159205555915833, - -0.33938705921173096, - -0.042513441294431686, - 0.08378749340772629, - -0.08477439731359482, - -0.04545411840081215, - 0.016351742669939995, - -0.29107388854026794, - -0.15137459337711334, - 0.061258163303136826, - 0.1948706954717636, - 0.08484777808189392, - 0.19777558743953705, - -0.05295028164982796, - 0.2905191481113434, - -0.3510831594467163, - 0.36088135838508606, - -0.14518223702907562, - -0.3594844341278076, - -0.13102492690086365, - 0.011419855058193207, - -0.35985419154167175, - -0.23915551602840424, - 0.26550137996673584, - 0.6429714560508728, - -0.1335502415895462, - 0.10924156755208969, - 0.045069772750139236, - 0.26755353808403015, - -0.2522292733192444, - -0.1338474303483963, - 0.19520878791809082, - -0.07772356271743774, - -0.0002337259502382949, - 0.4255053997039795, - -0.47271108627319336, - -0.31469812989234924, - -0.08962134271860123, - -0.15753382444381714, - 0.06305752694606781, - 0.34980300068855286, - 0.2504805028438568, - -0.10941211134195328, - 0.09311971813440323, - -0.05726904049515724, - -0.38367727398872375, - 0.3998134434223175, - 0.03060104511678219, - 0.26177462935447693, - 0.049489010125398636, - -0.21547801792621613, - 0.0007025425438769162, - -0.15042759478092194, - -0.075762540102005, - -0.22285465896129608, - 0.0609593503177166, - 0.10121706128120422, - -0.3692239224910736, - -0.0036340057849884033, - 0.053127627819776535, - -0.17878548800945282, - -0.1505195051431656, - 0.0022300381679087877, - -0.31097155809402466, - 0.37254276871681213, - -0.26977652311325073, - -0.2893538773059845, - -0.1869743913412094, - 0.10384276509284973, - -0.0066217705607414246, - 0.20043639838695526, - 0.1976640820503235, - 0.3107997477054596, - -0.13332371413707733, - -0.16373459994792938, - 0.2568660080432892, - 0.15025411546230316, - 0.197218656539917, - 0.3476908206939697, - -0.010972265154123306, - 0.25109168887138367, - -0.45744553208351135, - -0.02307882159948349, - 0.05358264967799187, - -0.3000401556491852, - -0.09025876969099045, - 0.09431272000074387, - 0.2842918634414673, - -0.3428647220134735, - -0.3975031077861786, - 0.028261594474315643, - 0.14353692531585693, - 0.03926679491996765, - -0.04868514463305473, - -0.3997194766998291, - -0.22706849873065948, - -0.35658037662506104, - 0.04028715193271637, - 0.12932895123958588, - 0.5797610878944397, - 0.2391233891248703, - 0.06366138905286789, - -0.23411007225513458, - -0.20555251836776733, - 0.587850034236908, - 0.24481886625289917, - -0.1117638349533081, - -0.07478641718626022, - -0.12666688859462738, - 0.4041016399860382, - 0.11820026487112045, - 0.249542698264122, - 0.40077295899391174, - 0.06939952820539474, - 0.048493627458810806, - 0.35694122314453125, - 0.21087317168712616, - -0.22558926045894623, - -0.2638273537158966, - -0.40822064876556396, - 0.15038444101810455, - -0.2934233844280243, - -0.045567888766527176, - 0.12796859443187714, - -0.17259246110916138, - -0.37771961092948914, - -0.16159702837467194, - 0.29054850339889526, - 0.02436186373233795, - -0.0934571623802185, - 0.2831261157989502, - 0.3254911005496979, - -0.06383242458105087, - -0.21768325567245483, - 0.14296211302280426, - -0.5549681782722473, - -0.41319403052330017, - 0.20177851617336273, - 0.016039814800024033, - -0.043260425329208374, - 0.26658523082733154, - 0.6571025848388672, - 0.6633474230766296, - 0.25248581171035767, - -0.235142782330513, - 0.10582201927900314, - 0.340976744890213, - 0.17042815685272217, - -0.4130624830722809, - -10.674025535583496, - -0.24450047314167023, - -0.23592780530452728, - 0.268765926361084, - -0.23199544847011566, - 0.08681869506835938, - 0.14274130761623383, - -0.10099240392446518, - -0.03011748380959034, - 0.08033014088869095, - -0.2593468725681305, - -0.2819158136844635, - -0.035240452736616135, - 0.3012666404247284, - 0.050404444336891174, - 0.1545461267232895, - -0.19111932814121246, - 0.4053099453449249, - 0.09424959868192673, - 0.3285026550292969, - -0.024827731773257256, - 0.19678927958011627, - -0.3536005914211273, - 0.0763065367937088, - 0.061481792479753494, - -0.3408081531524658, - -0.3378561735153198, - 0.7466359734535217, - -0.005717508494853973, - -0.38134169578552246, - -0.08551657944917679, - -0.0683024451136589, - -0.15280789136886597, - 0.06375228613615036, - -0.3037630021572113, - -0.13647811114788055, - -0.0266859233379364, - 0.06034569442272186, - 0.5160265564918518, - -0.47986719012260437, - -0.02238769270479679, - 0.1489449292421341, - 0.1809944063425064, - 0.05710695683956146, - -0.2790587246417999, - -0.7669485211372375, - -0.11501645296812057, - -1.411354422569275, - 0.585444986820221, - 0.2620120346546173, - 0.3194330334663391, - 0.1262269914150238, - -0.01801338791847229, - 0.2550829350948334, - -0.12767840921878815, - -0.13656054437160492, - -0.3564131259918213, - -0.12750178575515747, - -0.18310421705245972, - -0.053295817226171494, - 0.04411540552973747, - -0.04119225963950157, - 0.5221747756004333, - 0.0005644261837005615, - -0.18118387460708618, - -0.10129037499427795, - 0.04163685441017151, - 0.058614473789930344, - -0.2605554759502411, - -0.718937873840332, - -0.48354315757751465, - 0.21631215512752533, - -0.35268187522888184, - 0.17116187512874603, - 0.11030134558677673, - 0.008241857402026653, - -0.1520373672246933, - 0.20654447376728058, - 0.0482790581882, - 0.21012282371520996, - -0.04971129074692726, - 0.11045286059379578, - 0.0777326300740242, - -0.24795937538146973, - -0.15921728312969208, - -0.2893569767475128, - 0.2275431901216507, - 0.28717854619026184, - -0.2086060792207718, - -0.24932168424129486, - 0.18655942380428314, - 0.2555652856826782, - 0.3342244327068329, - -0.34047719836235046, - -0.5642435550689697, - 0.1382157951593399, - -0.252538800239563, - 0.03309006243944168, - -0.13747446238994598, - -0.04771973565220833, - 0.09583369642496109, - 0.2952382266521454, - -0.17984481155872345, - -0.6426671743392944, - -0.26260823011398315, - 0.5183001160621643, - 0.22731536626815796, - 0.255732923746109, - 0.0013560553779825568, - -0.1531514972448349, - -0.27773141860961914, - 0.04885510727763176, - -0.04389199987053871, - 0.4798929691314697, - 0.3129431903362274, - 0.024910667911171913, - 0.22155295312404633, - -0.3886122405529022, - -0.16519556939601898, - -0.03702693060040474, - 0.34475430846214294, - 0.0524502694606781, - 0.46379831433296204, - 0.4451543092727661, - 0.036897070705890656, - 0.06557069718837738, - 0.9941225051879883, - -0.45061203837394714, - 0.21429826319217682, - 0.11058112233877182, - 0.2789148986339569, - -0.16610831022262573, - -0.2879844009876251, - 0.1097126230597496, - 0.7194162011146545, - -0.14120225608348846, - 0.7019554972648621, - 0.19405339658260345, - -0.23214830458164215, - -0.2929423153400421, - 0.03499392792582512, - 0.48734259605407715, - 0.12076226621866226, - 0.201236292719841, - -0.01069361437112093, - -0.2860238552093506, - -0.2892777919769287, - 0.32682886719703674, - -0.00710691511631012, - -0.32345500588417053, - 0.032875798642635345, - 0.25904783606529236, - 0.12555237114429474, - -0.443882018327713, - 0.18882332742214203, - 0.23089170455932617, - 0.028047800064086914, - -0.1542922705411911, - -0.19963936507701874, - 0.30320820212364197, - 0.013550229370594025, - 0.6956192851066589, - -0.13288582861423492, - -0.13263867795467377, - -0.06587625294923782, - 0.1875097006559372, - -0.2793971002101898, - 0.30387768149375916, - 0.028455564752221107, - -0.09069880098104477, - -0.29148873686790466, - 0.22844986617565155, - 0.22054541110992432, - -0.18830879032611847, - -0.09546583890914917, - -0.09512665867805481, - -0.08780994266271591, - 0.13998959958553314, - -0.2909194231033325, - -0.012063215486705303, - 0.37694287300109863, - -0.1329435408115387, - 0.13281066715717316, - -0.1121896430850029, - -0.06837273389101028, - 0.1502699851989746, - 0.40753647685050964, - -0.16189654171466827, - -0.1917295604944229, - -0.27508261799812317, - -0.7846705317497253, - 0.1963399201631546, - -0.47747305035591125, - -0.05218793824315071, - 0.33623743057250977, - -0.0352487787604332, - 0.1448521614074707, - 0.10657789558172226, - 0.09977150708436966, - -0.26386985182762146, - -0.05435522273182869, - 0.11682019382715225, - 0.31883057951927185, - -0.09708402305841446, - 0.4483414590358734, - -0.20103073120117188, - 0.16120944917201996, - 0.21762911975383759, - -0.17491722106933594, - 0.13248760998249054, - -0.5252750515937805 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_001.json b/src/benchmark/output/results/results_graph_001.json new file mode 100644 index 0000000..d7222c6 --- /dev/null +++ b/src/benchmark/output/results/results_graph_001.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 44-year-old male with no history of antitubercular treatment (ATT) intake. He has been a tobacco chewer for over 20 years.\n\n**Initial Presentation:**\nThe patient presented to the clinic with right-sided chest pain, dry cough, on-off fever, and hematuria for 2 months. Physical examination revealed decreased air entry on the right side of the lung.\n\n**Imaging and Diagnosis (Step 1-3):**\n\n* Contrast-enhanced computed tomography (CECT) thorax revealed a heterogeneous lesion in the mediastinal region abutting the horizontal fissure and cavitation within.\n* Bronchoscopy with bronchoscopic-guided biopsy and BAL was performed, which showed negative results for malignant cells. Biopsy results were suggestive of squamous cell carcinoma.\n\n**Symptoms and Imaging (Step 4-5):**\n\n* The patient reported decreased and blurring of vision.\n* An 18F-FDG PET/CT scan revealed a FDG-avid well-defined soft tissue primary mass measuring 5.6 cm x 7.7 cm x 8.3 cm with spiculated margins in the upper lobe of the right lung, along with multiple sub-centimetric to centimetric-sized bilateral lung nodules and metastases to mediastinal, abdominopelvic lymph nodes.\n\n**Progression and Diagnosis (Step 6-7):**\n\n* The patient presented with severe headaches and blurring of vision for 15 days.\n* Biopsy results confirmed metastatic involvement.\n\n**Treatment Plan:**\nUnfortunately, the provided data does not include a treatment plan or outcomes. However, based on the diagnosis of squamous cell carcinoma and metastases, further treatment options would likely involve chemotherapy, radiation therapy, or a combination of both, depending on the patient's overall health and specific tumor characteristics.\n\n**Outcomes:**\nThe patient's current status is unknown, as the provided data only includes the timeline of diagnoses and treatments. Further follow-up and monitoring are necessary to assess the patient's response to treatment and any potential complications or side effects.\n\nIn conclusion, this patient presented with a complex clinical scenario involving a heterogeneous lesion in the mediastinal region, squamous cell carcinoma, and metastases. The patient's symptoms and imaging results suggest an aggressive disease course, and further treatment options would be necessary to manage the patient's condition effectively.", + "bertscore": { + "precision": [ + 0.7080437541007996 + ], + "recall": [ + 0.7307168245315552 + ], + "f1": [ + 0.7192016243934631 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 7, + "edge_count": 6, + "avg_in_degree": 0.8571428571428571, + "density": 0.14285714285714285 + }, + "trajectory_embedding": [ + 0.22544555366039276, + -0.021888595074415207, + -0.0058143287897109985, + 0.03279201313853264, + 0.012158679775893688, + 0.124949149787426, + 0.055165503174066544, + 0.12983736395835876, + 0.3739190995693207, + -0.2663968503475189, + -0.19686637818813324, + 0.07701147347688675, + -0.5400644540786743, + -0.07584770768880844, + -0.26406726241111755, + -0.02046271786093712, + 0.05793926864862442, + 0.16207827627658844, + -0.044735949486494064, + -0.22757861018180847, + -0.4952402710914612, + 0.1144150123000145, + -0.46950480341911316, + -0.09778637439012527, + 0.12845461070537567, + 0.02734825387597084, + 0.24913842976093292, + 0.45427513122558594, + 0.24786631762981415, + 0.3967547118663788, + 0.1909862756729126, + -0.04420628026127815, + 0.09980465471744537, + 0.03809976577758789, + -0.17042012512683868, + 0.2900741398334503, + 0.09212499111890793, + 0.4332437217235565, + -0.043802354484796524, + 0.15672074258327484, + 0.03645145520567894, + 0.00679835444316268, + 0.9039347767829895, + 0.3591509461402893, + 0.4914460778236389, + -0.8356738090515137, + -0.02241605333983898, + 0.40659505128860474, + -0.4799618124961853, + -0.3205719292163849, + 0.17016637325286865, + 0.6543622612953186, + 0.707870602607727, + -0.22005608677864075, + 0.4748179614543915, + -0.19794167578220367, + -0.3964519798755646, + -0.3612939417362213, + -0.33315572142601013, + -0.027029957622289658, + -0.1691950559616089, + -0.22332099080085754, + 0.17457075417041779, + 0.05207694321870804, + -0.2161528766155243, + -0.14274190366268158, + -0.14343063533306122, + 0.020381653681397438, + 0.007025190629065037, + -0.45137161016464233, + -0.09364870935678482, + -0.2778642773628235, + -0.10508210957050323, + 0.10854269564151764, + 0.02177494578063488, + -0.16299407184123993, + 0.30219197273254395, + -0.011338986456394196, + 0.1187564879655838, + 0.08193399012088776, + 0.06593690067529678, + -0.0405060350894928, + 0.061940502375364304, + 0.32849979400634766, + -0.407819926738739, + 0.09965406358242035, + -0.03934013098478317, + -0.15914258360862732, + -0.36487436294555664, + 0.1943393051624298, + 0.13243208825588226, + -0.2800927460193634, + 0.07946847379207611, + -0.17683902382850647, + 0.044621050357818604, + -0.02490183711051941, + 0.26153841614723206, + 0.28627023100852966, + 1.0003652572631836, + -0.05762153118848801, + 0.27924007177352905, + 0.09756126254796982, + 0.35095784068107605, + -0.03296113386750221, + 0.46251726150512695, + -0.11398440599441528, + 0.05645623430609703, + -0.6150220632553101, + 0.1058567613363266, + 0.33834224939346313, + -0.004669502377510071, + -0.10170869529247284, + -0.03272068500518799, + -0.3261508643627167, + 0.15492412447929382, + 0.04078936576843262, + -0.0925842747092247, + 0.14039553701877594, + 0.06129738315939903, + -0.3435817062854767, + -0.11495153605937958, + -0.09836633503437042, + 0.31900739669799805, + 0.31890103220939636, + -0.46349194645881653, + -0.02682717703282833, + -0.158163920044899, + 0.20861409604549408, + 0.03139486908912659, + 0.06004612520337105, + -0.48260262608528137, + -0.053569622337818146, + 0.05698048323392868, + 0.3057520091533661, + -0.11534462124109268, + 0.20605342090129852, + -0.4229469895362854, + 0.017016496509313583, + -1.0992628335952759, + 0.2045792043209076, + -0.46470141410827637, + 0.015281583182513714, + 0.004531429149210453, + -0.5357871055603027, + -0.17412035167217255, + -0.2732934057712555, + -0.06343386322259903, + 0.17450697720050812, + 0.03306545689702034, + -0.08195621520280838, + -0.11672161519527435, + 0.062159765511751175, + 0.21550604701042175, + 0.15805819630622864, + 0.24410788714885712, + 0.08759433776140213, + 0.129988431930542, + 0.37439388036727905, + 0.12952840328216553, + -0.18701855838298798, + 0.02977474220097065, + 0.3657865822315216, + 0.04062526673078537, + -0.08284519612789154, + 0.026021718978881836, + -0.7181465029716492, + 0.01755519025027752, + -0.05736885219812393, + 0.2734042704105377, + 0.0789877325296402, + -0.19181092083454132, + 0.26249173283576965, + -0.2620965242385864, + 0.5923798680305481, + 0.2575666606426239, + 0.4657774865627289, + 0.09522327035665512, + 0.07420903444290161, + 0.1885097473859787, + 0.12079930305480957, + 0.13842181861400604, + -0.10693365335464478, + 0.7564568519592285, + 0.04216546565294266, + -0.21592746675014496, + 0.2977727949619293, + 0.3015422224998474, + 0.009352700784802437, + -0.19835695624351501, + -0.06918928027153015, + 0.5178477168083191, + -0.25443926453590393, + 0.42754751443862915, + -0.4473267197608948, + -0.12708410620689392, + 0.11682230979204178, + -0.2884996831417084, + -0.24416060745716095, + 0.09769809246063232, + -0.1493919938802719, + 0.37399861216545105, + 0.06427767127752304, + -0.1964985877275467, + 0.0752095952630043, + -0.0790180116891861, + -0.08227288722991943, + 0.24765221774578094, + -0.07260660082101822, + 0.07031866163015366, + -0.0743103176355362, + -0.0978149026632309, + 0.21969662606716156, + -0.016957776620984077, + 0.24308113753795624, + 0.06017247214913368, + -0.18987281620502472, + 0.24078567326068878, + -0.17431029677391052, + -0.04737759754061699, + 0.14145603775978088, + -0.15732832252979279, + -0.1829451024532318, + 0.10296981781721115, + 0.007423954550176859, + -0.47174447774887085, + 0.25813135504722595, + 0.252968966960907, + 0.16565148532390594, + 0.25011056661605835, + -0.02016758732497692, + 0.02959112823009491, + -0.2907402813434601, + 0.2594955265522003, + -0.1877007782459259, + -0.10937656462192535, + -0.3665615916252136, + 0.12820060551166534, + -0.47392144799232483, + -0.057138632982969284, + 0.2564590275287628, + -0.0499889962375164, + -0.08179569244384766, + 0.09306243807077408, + -0.2558267116546631, + -0.15989051759243011, + -0.39697542786598206, + 0.05126449838280678, + 0.3919696509838104, + 0.11617664992809296, + 0.3501388728618622, + -0.017326783388853073, + -0.07741450518369675, + 0.16762030124664307, + -0.26987797021865845, + -0.19983291625976562, + -0.36132165789604187, + -0.08088219910860062, + 0.009544121101498604, + -0.5022962093353271, + 0.14079812169075012, + 0.016228536143898964, + -0.13470712304115295, + 0.06883032619953156, + -0.3019104301929474, + -0.13484728336334229, + 0.08926153182983398, + -0.12665589153766632, + 0.1574120968580246, + -0.12602175772190094, + 0.015751618891954422, + -0.3463286757469177, + -0.23398295044898987, + -0.06359321624040604, + -0.19244582951068878, + 0.17758941650390625, + -0.04190870746970177, + -0.1823682337999344, + -0.05759647116065025, + 0.08258525282144547, + -0.4468781650066376, + -0.35065320134162903, + 0.21665219962596893, + -0.21870115399360657, + 0.2026483118534088, + -0.03873903304338455, + 0.22365395724773407, + 0.28230923414230347, + -0.05201395973563194, + 0.0527680329978466, + 0.49252477288246155, + 0.5546950697898865, + 0.07907216995954514, + -0.023886768147349358, + -0.1262141615152359, + 0.016182275488972664, + -0.03704068809747696, + -0.45202186703681946, + 0.4243611991405487, + -0.030097153037786484, + -0.034437667578458786, + -0.071632981300354, + 0.24896812438964844, + -0.00019594175682868809, + -0.504425585269928, + -0.09104608744382858, + 0.5184188485145569, + 0.13584373891353607, + 0.14065544307231903, + 0.027307460084557533, + 0.3466333746910095, + 0.5807201266288757, + -0.11237335205078125, + -0.03695932403206825, + 0.011270170100033283, + -0.0024232694413512945, + -0.10592483729124069, + 0.01008819043636322, + 0.11385848373174667, + 0.30241236090660095, + -0.09672290086746216, + -0.08970701694488525, + 0.23306843638420105, + -0.11035939306020737, + -0.06347585469484329, + -0.2140498161315918, + -0.0835152342915535, + 0.05474512651562691, + -0.2547414302825928, + 0.21516333520412445, + -0.11938325315713882, + -0.03892297297716141, + 0.37758371233940125, + -0.14395751059055328, + -0.1572096198797226, + 0.11680327355861664, + 0.020167753100395203, + -0.41035670042037964, + 0.39604201912879944, + -0.08431784808635712, + -0.06409355252981186, + 0.45997482538223267, + -0.0070531792007386684, + -0.07865508645772934, + -0.329233318567276, + 0.19452223181724548, + 0.04206732660531998, + -0.059629857540130615, + -0.05272732302546501, + 0.04650396108627319, + 0.12813898921012878, + 0.5837918519973755, + 0.1471565067768097, + 0.16569076478481293, + 0.5125689506530762, + -0.06692972779273987, + -0.26555219292640686, + 0.00983025785535574, + 0.19899828732013702, + 0.3342770040035248, + -0.31491395831108093, + -0.23268620669841766, + -0.30234023928642273, + 0.10153920203447342, + 0.17339272797107697, + -0.27579358220100403, + -0.05001077428460121, + -0.019663481041789055, + 0.14585120975971222, + 0.10834995657205582, + 0.26768848299980164, + 0.20414087176322937, + -0.06213387846946716, + 0.46090492606163025, + 0.017025070264935493, + -0.059339266270399094, + 0.2710186839103699, + -0.14449605345726013, + 0.23969683051109314, + -0.10268567502498627, + -0.3920949399471283, + -0.40806737542152405, + 0.00474292878061533, + -0.12494343519210815, + -0.2019561529159546, + -0.007249661721289158, + -0.14330996572971344, + -0.010338188149034977, + -0.21282240748405457, + 0.23347382247447968, + 0.046171098947525024, + 0.2541406452655792, + 0.23251627385616302, + 0.3425624668598175, + 0.11240644007921219, + -0.27347710728645325, + 0.16533224284648895, + -0.02230760268867016, + 0.14282743632793427, + -0.2403469979763031, + -0.04443306848406792, + -0.09282033145427704, + 0.4610767066478729, + -0.08442071825265884, + -0.0038480982184410095, + -0.00898510031402111, + 0.028758777305483818, + -0.18674644827842712, + -0.3901597559452057, + -0.21183086931705475, + -0.12444917112588882, + -0.005519687198102474, + -0.022225946187973022, + 0.1936742514371872, + -0.2562611699104309, + -0.21937783062458038, + -0.14190775156021118, + 0.23681838810443878, + 0.024996627122163773, + -0.14047639071941376, + 0.16197021305561066, + 0.2152271270751953, + 0.03847484663128853, + 0.4040525257587433, + -0.11127112060785294, + 0.12019022554159164, + 0.01380231510847807, + -0.27288979291915894, + -0.005210678558796644, + 0.03739836439490318, + -0.24274063110351562, + -0.013103642500936985, + 0.22852373123168945, + 0.27713543176651, + 0.02708902582526207, + 0.02469996176660061, + 0.046662744134664536, + 0.29454439878463745, + -0.3956533968448639, + -0.16748806834220886, + 0.4477674663066864, + 0.11504799127578735, + 0.45734837651252747, + -0.024405550211668015, + -0.5885217785835266, + -0.2782239019870758, + -0.07079874724149704, + -0.5095592737197876, + 0.029425110667943954, + 0.1425083577632904, + -0.13853709399700165, + -0.09436937421560287, + 0.1613730490207672, + -0.07594022899866104, + 0.0597415566444397, + 0.24864283204078674, + -0.09160096943378448, + 0.16358928382396698, + 0.007129413541406393, + -0.36279386281967163, + -0.052385516464710236, + -0.3274328112602234, + -0.2874279320240021, + -0.21315990388393402, + 0.3431756794452667, + 0.31382879614830017, + -0.2551286816596985, + 0.04849119111895561, + 0.0616174079477787, + -0.24422670900821686, + -0.3080612123012543, + 0.02238546870648861, + -0.2793293297290802, + 0.46098384261131287, + -0.07902948558330536, + -0.14585623145103455, + 0.12555918097496033, + -0.31364327669143677, + 0.11767099797725677, + 0.2693617641925812, + 0.17969690263271332, + 0.3670620024204254, + 0.23111720383167267, + 0.18989789485931396, + 0.4030517041683197, + 0.051692575216293335, + 0.0751393660902977, + 0.3101361095905304, + 0.0018457748228684068, + -0.014019259251654148, + -0.19878152012825012, + -0.2694285809993744, + 0.3681092858314514, + -0.1493302881717682, + 0.005456401500850916, + 0.17803955078125, + 0.32944828271865845, + -0.5253181457519531, + -0.34934094548225403, + 0.008091830648481846, + -0.02635938487946987, + -0.10398703813552856, + -0.3595424294471741, + -0.235565185546875, + -0.022764157503843307, + -0.22590211033821106, + -0.19372296333312988, + 0.2561880946159363, + 0.3237074315547943, + 0.20131178200244904, + 0.2469889372587204, + -0.3478850722312927, + -0.29865124821662903, + 0.22905422747135162, + 0.2693503201007843, + 0.07840954512357712, + 0.026144299656152725, + -0.2233971655368805, + 0.28818273544311523, + 0.6196103096008301, + -0.12296389043331146, + -0.07440297305583954, + 0.0031574282329529524, + 0.11028839647769928, + 0.004636458121240139, + 0.10456354916095734, + -0.03394020348787308, + 0.07380436360836029, + -0.4067952334880829, + 0.2821376323699951, + -0.32946285605430603, + -0.21861563622951508, + 0.15632401406764984, + -0.037681613117456436, + -0.4206162393093109, + -0.20882096886634827, + 0.46175867319107056, + -0.14138826727867126, + 0.1318322718143463, + 0.14189693331718445, + 0.413936585187912, + 0.08744312822818756, + -0.18059243261814117, + 0.12924925982952118, + -0.5933976769447327, + -0.17608408629894257, + 0.17052365839481354, + -0.2509192228317261, + 0.05032340809702873, + -0.013478376902639866, + 0.2141694575548172, + 0.46446993947029114, + 0.17353466153144836, + -0.25484198331832886, + 0.02167193591594696, + 0.20546047389507294, + 0.33550235629081726, + -0.25142115354537964, + -10.752850532531738, + 0.13028177618980408, + -0.18029265105724335, + 0.601753294467926, + -0.17109908163547516, + 0.13354870676994324, + 0.023059383034706116, + -0.0756104439496994, + 0.07608021795749664, + 0.018018653616309166, + -0.1955755054950714, + 0.056970950216054916, + 0.37291231751441956, + 0.3097512722015381, + -0.01516466774046421, + -0.18926218152046204, + -0.20306017994880676, + 0.2996937334537506, + 0.06647644191980362, + 0.22666634619235992, + 0.2110852152109146, + 0.45858046412467957, + -0.30146196484565735, + 0.3066696524620056, + 0.12842200696468353, + -0.40063077211380005, + -0.2030058652162552, + 0.6819396018981934, + 0.1300923079252243, + -0.3766631782054901, + 0.23450832068920135, + 0.25575903058052063, + -0.3941766619682312, + 0.010425986722111702, + -0.09464111179113388, + -0.18069109320640564, + -0.108848936855793, + 0.0775521770119667, + 0.10503586381673813, + -0.14857245981693268, + 0.07109784334897995, + -0.2719348967075348, + 0.0999772921204567, + 0.24091105163097382, + -0.07322079688310623, + -0.5446597933769226, + -0.1822691112756729, + -1.565708041191101, + 0.3469933867454529, + 0.29949596524238586, + 0.5327091217041016, + -0.031813886016607285, + 0.158897265791893, + 0.1273970752954483, + -0.3908841609954834, + 0.06701938807964325, + -0.25532057881355286, + -0.10759598761796951, + 0.09881438314914703, + -0.10823852568864822, + 0.15043134987354279, + -0.25954777002334595, + 0.4396364390850067, + -0.24458107352256775, + -0.3411678671836853, + 0.07269710302352905, + 0.10603590309619904, + 0.05698838457465172, + -0.16014812886714935, + -0.40341153740882874, + -0.5101147294044495, + -0.07006553560495377, + 0.04483975097537041, + 0.0484030656516552, + 0.5611270666122437, + -0.02805999480187893, + -0.47120970487594604, + 0.17515210807323456, + -0.04338771104812622, + 0.4502566456794739, + 0.1857706755399704, + -0.07234758883714676, + 0.08514602482318878, + -0.23218639194965363, + -0.23950079083442688, + -0.2716539800167084, + 0.10034899413585663, + 0.4957196116447449, + -0.08045651018619537, + -0.03827769309282303, + -0.06227623671293259, + 0.35930517315864563, + 0.08850135654211044, + -0.20713134109973907, + -0.44182083010673523, + 0.05939282849431038, + 0.0008892363985069096, + 0.022235747426748276, + 0.09952037781476974, + 0.07445381581783295, + -0.14000891149044037, + -0.08464771509170532, + -0.08841384947299957, + -0.49244800209999084, + -0.586823582649231, + 0.2621164619922638, + 0.09070652723312378, + 0.1271086186170578, + 0.08361142873764038, + 0.03778642788529396, + -0.13701973855495453, + 0.054361291229724884, + 0.23367181420326233, + 0.5658853650093079, + 0.04071269556879997, + -0.03902093693614006, + -0.09580259025096893, + -0.31962570548057556, + -0.2457621991634369, + 0.17023469507694244, + 0.3666629195213318, + -0.19607484340667725, + 0.3422781527042389, + 0.6629540324211121, + -0.14943312108516693, + -0.19286131858825684, + 1.0133713483810425, + -0.26429232954978943, + 0.21964125335216522, + -0.19027359783649445, + 0.2918620705604553, + -0.06770165264606476, + -0.253685861825943, + 0.09520785510540009, + 0.3655342161655426, + -0.3843688368797302, + 0.7071616053581238, + 0.2193906009197235, + -0.36014285683631897, + -0.033229079097509384, + -0.19664537906646729, + 0.503405749797821, + 0.2236463874578476, + 0.16320236027240753, + -0.11097752302885056, + -0.37586143612861633, + -0.24627450108528137, + 0.1637803465127945, + -0.3233899474143982, + -0.19343426823616028, + -0.18568050861358643, + 0.0513133741915226, + 0.19603769481182098, + -0.23206403851509094, + 0.3304268419742584, + 0.2184225469827652, + -0.060754306614398956, + -0.20855531096458435, + -0.41473010182380676, + -0.1591343879699707, + 0.025321917608380318, + 0.814966082572937, + -0.02268730103969574, + -0.04495840147137642, + -0.12772640585899353, + 0.191977858543396, + -0.07789558172225952, + 0.25736770033836365, + 0.11303628236055374, + 0.06402131915092468, + -0.30810046195983887, + 0.21750006079673767, + 0.1528620421886444, + -0.2923474609851837, + -0.13456991314888, + -0.25992101430892944, + -0.03127161040902138, + 0.012477806769311428, + -0.21623428165912628, + 0.2975035607814789, + 0.3495616614818573, + -0.04690875858068466, + -0.022930597886443138, + -0.2509596347808838, + 0.2743046283721924, + 0.18854205310344696, + 0.1905793994665146, + 0.21473363041877747, + -0.19668106734752655, + -0.3155835270881653, + -0.4283021092414856, + 0.1840418428182602, + -0.30378293991088867, + -0.12035530060529709, + 0.10726603120565414, + 0.23525144159793854, + -0.3043988049030304, + 0.02654709853231907, + -0.1099575087428093, + -0.08470828831195831, + -0.1656467765569687, + 0.2036818414926529, + 0.45072221755981445, + -0.14205686748027802, + 0.15353623032569885, + -0.20321156084537506, + 0.1781766563653946, + 0.21564793586730957, + -0.4846877157688141, + 0.15370237827301025, + -0.126005619764328 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_003.json b/src/benchmark/output/results/results_graph_003.json new file mode 100644 index 0000000..841c742 --- /dev/null +++ b/src/benchmark/output/results/results_graph_003.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Patient Demographics**\n\nThe patient is an adult male with a history of Small Cell Lung Cancer (SCLC). Unfortunately, the exact age and other demographic details are not provided in the data.\n\n**Timeline of Diagnoses**\n\nThe patient's diagnosis timeline begins with the onset of symptoms such as dyspnea, abdominal distension, and lower-extremity edema. These symptoms led to an evaluation in the emergency department, where a poor performance status, abnormal vital signs, and significant tumor burden were noted. This marked the progression from symptom onset to diagnosis.\n\n**Timeline of Treatments**\n\nThe patient's treatment timeline began with endovascular intervention to address IVC stenosis due to compression caused by the tumor. The procedure involved thrombectomy and stent placement. Following this, post-intervention venography showed improved flow, and low-molecular-weight heparin was administered.\n\n**Timeline of Outcomes**\n\nThe patient's outcome timeline began with significant alleviation of IVCS symptoms (trunk and lower limb edema) following the intervention. However, unfortunately, the patient died 8 days later from his primary disease (SCLC).\n\n**Narrative Summary**\n\nA male patient with Small Cell Lung Cancer presented with symptoms such as dyspnea, abdominal distension, and lower-extremity edema. These symptoms led to an evaluation in the emergency department, where a poor performance status, abnormal vital signs, and significant tumor burden were noted. Endovascular intervention was performed to address IVC stenosis caused by compression from the tumor. Following this, post-intervention venography showed improved flow, and low-molecular-weight heparin was administered. However, despite these interventions, the patient's primary disease ultimately led to his death 8 days later.\n\n**Key Takeaways**\n\n* The patient had a poor performance status and significant tumor burden at diagnosis.\n* Endovascular intervention was effective in alleviating IVCS symptoms but did not address the underlying cause of death.\n* Low-molecular-weight heparin was administered post-intervention, but its effectiveness is unclear given the patient's rapid decline.\n\n**Limitations**\n\nThe narrative summary is limited by the lack of detailed information on patient demographics, treatment outcomes, and long-term follow-up. Further investigation would be necessary to fully understand the patient's clinical course and the effectiveness of interventions.", + "bertscore": { + "precision": [ + 0.5732179880142212 + ], + "recall": [ + 0.5156488418579102 + ], + "f1": [ + 0.5429115891456604 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 8, + "edge_count": 7, + "avg_in_degree": 0.875, + "density": 0.125 + }, + "trajectory_embedding": [ + 0.2569149434566498, + 0.23160001635551453, + -0.23048092424869537, + 0.06365886330604553, + 0.06271032989025116, + -0.032205305993556976, + -0.0353657603263855, + 0.14690855145454407, + 0.3527328073978424, + -0.24249935150146484, + -0.23033425211906433, + 0.13146138191223145, + -0.44394129514694214, + -0.1020270437002182, + -0.1855921894311905, + 0.17859384417533875, + 0.08802724629640579, + 0.2158854901790619, + -0.10283444821834564, + -0.29911351203918457, + -0.1949203908443451, + -0.028584152460098267, + -0.3147096037864685, + -0.07293544709682465, + 0.20194584131240845, + -0.09491348266601562, + 0.34339308738708496, + 0.46809014678001404, + 0.13282687962055206, + 0.29852452874183655, + 0.13195554912090302, + 0.17300836741924286, + 0.0897492840886116, + 0.02892140857875347, + -0.12745898962020874, + 0.3448256552219391, + 0.23548577725887299, + 0.2839270830154419, + -0.03714802488684654, + 0.006017275154590607, + 0.1338861882686615, + 0.12591585516929626, + 0.7073693871498108, + 0.3368518352508545, + 0.3219608664512634, + -0.6907471418380737, + -0.01660757139325142, + 0.6422886848449707, + -0.46687471866607666, + -0.2571844458580017, + 0.18784856796264648, + 0.6589989066123962, + 0.5504093170166016, + -0.10344333201646805, + 0.4473138749599457, + -0.06613530963659286, + -0.28679725527763367, + -0.4249691367149353, + -0.2393416464328766, + 0.13644948601722717, + -0.0981653481721878, + 0.01790006458759308, + 0.2267570197582245, + -0.02845674753189087, + -0.2680894136428833, + -0.1423514485359192, + -0.16232867538928986, + 0.12320675700902939, + 0.1090710312128067, + -0.3618414103984833, + -0.10044832527637482, + -0.27530670166015625, + -0.053614962846040726, + 0.04921650141477585, + 0.18791626393795013, + -0.18266819417476654, + 0.360612690448761, + -0.07580575346946716, + 0.03189554437994957, + 0.11070859432220459, + 0.03711796551942825, + -0.006232840940356255, + 0.03796324133872986, + 0.282582551240921, + -0.37713319063186646, + 0.07750636339187622, + -0.17531555891036987, + -0.10054003447294235, + -0.258467435836792, + 0.22064298391342163, + 0.2305215299129486, + -0.09635764360427856, + 0.10636873543262482, + -0.017838889732956886, + 0.19559000432491302, + -0.06293649971485138, + 0.13816137611865997, + 0.43874168395996094, + 0.9716772437095642, + -0.05074167996644974, + 0.1356513500213623, + -0.06121188402175903, + 0.29712897539138794, + -0.07920337468385696, + 0.37162017822265625, + -0.08831153810024261, + 0.1279538869857788, + -0.5214267373085022, + 0.0625886470079422, + 0.3048340678215027, + 0.017620541155338287, + -0.238211989402771, + 0.1364237368106842, + -0.31241703033447266, + 0.09862945228815079, + 0.15174570679664612, + -0.08937467634677887, + 0.21740508079528809, + -0.020801734179258347, + -0.3626396059989929, + -0.08483012020587921, + -0.10590144991874695, + 0.3234524130821228, + 0.286812961101532, + -0.3228791356086731, + 0.10934396088123322, + -0.21497038006782532, + 0.133932963013649, + 0.0651712417602539, + 0.06254178285598755, + -0.6108414530754089, + -0.08825504779815674, + -0.048984821885824203, + 0.1457713544368744, + -0.05615668743848801, + 0.38747861981391907, + -0.3545966148376465, + 0.10128293186426163, + -1.0704939365386963, + 0.18489933013916016, + -0.3293786942958832, + -0.04235662519931793, + 0.07674379646778107, + -0.4247347414493561, + -0.14779609441757202, + -0.2276259809732437, + -0.2626993656158447, + 0.10540923476219177, + -0.11968214064836502, + -0.07782312482595444, + -0.08806271106004715, + 0.11360003799200058, + 0.22596900165081024, + 0.22846662998199463, + 0.14217929542064667, + 0.011776726692914963, + 0.1377287209033966, + 0.35273149609565735, + 0.023100826889276505, + -0.13734270632266998, + 0.14667250216007233, + 0.387855589389801, + -0.06604360044002533, + -0.08711905777454376, + -0.058241911232471466, + -0.5880092978477478, + 0.23984947800636292, + -0.2654883563518524, + 0.34279629588127136, + 0.17131219804286957, + -0.21306748688220978, + 0.15969398617744446, + -0.3069201707839966, + 0.61099773645401, + 0.34344786405563354, + 0.3754482567310333, + 0.2464122325181961, + -0.12051801383495331, + 0.12661445140838623, + 0.07676951587200165, + 0.06337203830480576, + -0.12980499863624573, + 0.49911436438560486, + 0.0992007851600647, + -0.21527312695980072, + 0.1955445408821106, + 0.18623749911785126, + -0.11524847149848938, + -0.18365424871444702, + 0.052402399480342865, + 0.3627065420150757, + -0.24395789206027985, + 0.4139857888221741, + -0.3161483407020569, + -0.07328542321920395, + 0.02170691266655922, + -0.3448029160499573, + -0.3785707652568817, + 0.05860193446278572, + 0.001285141333937645, + 0.07231660187244415, + 0.12629340589046478, + -0.29497748613357544, + 0.21745753288269043, + 0.1734546273946762, + -0.1240207701921463, + 0.2539222240447998, + -0.013147708028554916, + 0.041944921016693115, + -0.12125688046216965, + -0.27249762415885925, + 0.1013287603855133, + -0.1647895723581314, + 0.19072462618350983, + -0.011917723342776299, + -0.28449496626853943, + 0.24159587919712067, + -0.07891088724136353, + -0.08159821480512619, + 0.13219553232192993, + 0.029453741386532784, + 0.06982686370611191, + 0.22510792315006256, + -0.07658938318490982, + -0.26791220903396606, + 0.3236021101474762, + 0.11212003976106644, + 0.24547803401947021, + 0.09299872815608978, + -0.06759750843048096, + -0.011228218674659729, + -0.29543545842170715, + 0.15239936113357544, + -0.18702076375484467, + -0.18114317953586578, + -0.27560099959373474, + 0.17911066114902496, + 0.004341591149568558, + -0.06521990150213242, + 0.21743358671665192, + -0.08804921060800552, + -0.12174122780561447, + 0.02904754877090454, + -0.29161587357521057, + -0.08384933322668076, + -0.26410454511642456, + 0.1125580295920372, + 0.19161352515220642, + 0.11132532358169556, + 0.35512739419937134, + 0.06868070363998413, + 0.03536885231733322, + 0.1669463813304901, + -0.2908916473388672, + -0.3114027976989746, + -0.29059845209121704, + -0.05371225252747536, + 0.034935761243104935, + -0.378568172454834, + 0.1031026840209961, + 0.0697413980960846, + -0.15836521983146667, + 0.055314674973487854, + -0.2921608090400696, + -0.1878422647714615, + 0.08387884497642517, + -0.02348172850906849, + 0.11633884161710739, + -0.04514475166797638, + -0.006797481793910265, + -0.16597852110862732, + -0.18674692511558533, + -0.1781417727470398, + -0.14435860514640808, + 0.13849318027496338, + 0.09053032100200653, + -0.1284540444612503, + 0.0008781002834439278, + 0.18773995339870453, + -0.48895567655563354, + -0.2847486734390259, + 0.267551988363266, + -0.28864404559135437, + 0.29566484689712524, + -0.11407998204231262, + 0.378822386264801, + 0.40001246333122253, + 0.05274902656674385, + 0.19677725434303284, + 0.4697061777114868, + 0.3984792232513428, + 0.06355373561382294, + -0.14354346692562103, + 0.08533620089292526, + 0.03147219493985176, + -0.04639570787549019, + -0.3610660433769226, + 0.355654776096344, + -0.045501336455345154, + 0.1690748929977417, + -0.002688792534172535, + 0.16419994831085205, + 0.016202926635742188, + -0.2679378390312195, + -0.10791486501693726, + 0.49201497435569763, + 0.22888198494911194, + 0.06671790778636932, + 0.1428592950105667, + 0.35510513186454773, + 0.4634217619895935, + 0.06101655587553978, + -0.34377482533454895, + -0.051289502531290054, + -0.14004841446876526, + -0.255508691072464, + -0.2915162444114685, + 0.1609363555908203, + 0.32905691862106323, + -0.15973393619060516, + -0.18100731074810028, + 0.2961345314979553, + -0.2114296853542328, + -0.07773298770189285, + -0.17655381560325623, + 0.011677158996462822, + -0.049703456461429596, + -0.21769998967647552, + 0.2306259125471115, + -0.013719771057367325, + -0.16235598921775818, + 0.3368450999259949, + -0.27963900566101074, + -0.24579648673534393, + 0.17493762075901031, + -0.06680662930011749, + -0.3899391293525696, + 0.3454819321632385, + -0.2224164605140686, + 0.020916227251291275, + 0.28578391671180725, + -0.14427529275417328, + -0.021270979195833206, + -0.12395058572292328, + 0.25643935799598694, + 0.10913236439228058, + 0.033961083739995956, + -0.13228361308574677, + 0.06502865999937057, + 0.1717403084039688, + 0.592214047908783, + 0.2314368337392807, + 0.07204297184944153, + 0.3350045084953308, + -0.07012563943862915, + -0.3543141484260559, + 0.005660714581608772, + -0.05974195525050163, + 0.15054047107696533, + -0.047535449266433716, + -0.31843629479408264, + -0.20472171902656555, + 0.11641610413789749, + 0.19389207661151886, + -0.1209784522652626, + -0.05114450305700302, + 0.20561301708221436, + 0.04221804440021515, + -0.03909905627369881, + 0.15351472795009613, + 0.22436127066612244, + 0.010178793221712112, + 0.468885600566864, + 0.09688585996627808, + -0.09131868928670883, + 0.2427922487258911, + -0.05917609855532646, + 0.226558119058609, + -0.16924627125263214, + -0.4362291991710663, + -0.40189898014068604, + 0.0878443717956543, + -0.20961040258407593, + -0.17652219533920288, + 0.08758323639631271, + -0.2006133496761322, + 0.06266502290964127, + -0.11913471668958664, + 0.17118462920188904, + 0.019704584032297134, + 0.1714993715286255, + -0.08983881771564484, + 0.36125126481056213, + -0.0894111692905426, + -0.35656625032424927, + 0.1413729190826416, + -0.09259454905986786, + 0.17376692593097687, + -0.14425204694271088, + -0.13525493443012238, + -0.14414875209331512, + 0.34457504749298096, + -0.17759661376476288, + 0.004895076155662537, + -1.540686935186386e-05, + 0.09425801038742065, + -0.18891598284244537, + -0.15592390298843384, + -0.20987802743911743, + -0.20082980394363403, + -0.13723398745059967, + -0.11620370298624039, + 0.09843072295188904, + -0.1444927603006363, + -0.18796217441558838, + -0.1742773801088333, + 0.08525709807872772, + 0.40163925290107727, + -0.12654602527618408, + -0.03869543597102165, + 0.4240628182888031, + 0.10033371299505234, + 0.31720083951950073, + -0.28143632411956787, + 0.15492956340312958, + 0.08704649657011032, + -0.2654697000980377, + -0.04881821945309639, + -0.016870111227035522, + -0.26270630955696106, + -0.12414852529764175, + 0.1377853900194168, + 0.4025445580482483, + 0.0887882262468338, + 0.0468372106552124, + -0.03027254343032837, + -0.03690169006586075, + -0.22596830129623413, + 0.038792144507169724, + 0.2728533446788788, + 0.11235370486974716, + 0.2355501651763916, + 0.0061170682311058044, + -0.3013271689414978, + -0.30459287762641907, + -0.014720339328050613, + -0.4627458453178406, + 0.1813475787639618, + 0.04745449870824814, + -0.06341429054737091, + -0.14217376708984375, + 0.2134707272052765, + 0.005404438823461533, + -0.11771394312381744, + 0.25954848527908325, + 0.013961143791675568, + 0.2106950283050537, + -0.019350331276655197, + -0.21603421866893768, + -0.07641604542732239, + -0.17571528255939484, + -0.24132274091243744, + -0.40047815442085266, + 0.4158255457878113, + 0.3980637490749359, + -0.21376149356365204, + 0.03735671937465668, + 0.09683898091316223, + -0.26924726366996765, + -0.2347835898399353, + 0.03169608488678932, + -0.06420964002609253, + 0.3846817910671234, + 0.06705142557621002, + -0.2419806271791458, + -0.06293898075819016, + -0.23997923731803894, + -0.04855913668870926, + 0.10249004513025284, + 0.0988558977842331, + 0.37822696566581726, + 0.214402973651886, + 0.0697578489780426, + 0.3383386731147766, + 0.11332648992538452, + -0.036293093115091324, + 0.28004002571105957, + -0.02409154735505581, + 0.1520584523677826, + -0.16688387095928192, + -0.03524171561002731, + 0.2908414304256439, + -0.3653745651245117, + 0.22500896453857422, + 0.2979770004749298, + 0.1557924896478653, + -0.3007964491844177, + -0.36065003275871277, + -0.026259154081344604, + -0.1422356814146042, + -0.12988664209842682, + -0.2573707401752472, + 0.01718113012611866, + -0.0005274917930364609, + -0.1697939783334732, + 0.008123168721795082, + 0.1620730757713318, + 0.30958274006843567, + 0.12935811281204224, + 0.04020648077130318, + -0.247300922870636, + -0.3773331344127655, + 0.10396052896976471, + 0.3673536479473114, + -0.11643590033054352, + -0.056829262524843216, + -0.13928528130054474, + 0.12086570262908936, + 0.3734302520751953, + -0.04218396544456482, + -0.0028060302138328552, + -0.1740286946296692, + -0.09575439989566803, + 0.11020426452159882, + 0.03771224990487099, + -0.1574310064315796, + 0.049119748175144196, + -0.3487362265586853, + 0.06726031005382538, + -0.09100287407636642, + -0.16214610636234283, + 0.1984669715166092, + -0.18025431036949158, + -0.3657768666744232, + -0.09993989020586014, + 0.24185729026794434, + -0.15071788430213928, + -0.21291379630565643, + 0.1366998553276062, + 0.5614988803863525, + 0.11226191371679306, + -0.04895856976509094, + -0.013916626572608948, + -0.3271966576576233, + -0.017343293875455856, + 0.13135674595832825, + -0.1870238333940506, + -0.05345654860138893, + 0.05888453871011734, + 0.5063331723213196, + 0.29617029428482056, + 0.0781693160533905, + -0.32731789350509644, + 0.0348568856716156, + 0.17435330152511597, + 0.21318849921226501, + -0.2973577380180359, + -10.760284423828125, + -0.07705976068973541, + -0.2074543535709381, + 0.3931015133857727, + -0.1443420946598053, + -0.0781291201710701, + -0.040700241923332214, + 0.09222999215126038, + 0.11657589673995972, + 0.06625368446111679, + -0.4159711003303528, + -0.09368214011192322, + 0.36642909049987793, + 0.14340618252754211, + 0.06398440152406693, + -0.11690184473991394, + -0.19904130697250366, + 0.33899515867233276, + 0.05515924096107483, + 0.247812420129776, + 0.23134145140647888, + 0.44547587633132935, + -0.0077679343521595, + 0.3705824017524719, + 0.05776774510741234, + -0.3256063163280487, + -0.05720362067222595, + 0.4383063018321991, + 0.1852199286222458, + -0.21572570502758026, + 0.1346697211265564, + 0.04716166853904724, + -0.14165212213993073, + -0.12225180864334106, + -0.11630429327487946, + -0.23897729814052582, + 0.042448658496141434, + 0.20545031130313873, + 0.24753516912460327, + -0.14180505275726318, + 0.15748021006584167, + -0.07449785619974136, + 0.12548506259918213, + 0.13254037499427795, + -0.06745956093072891, + -0.620971143245697, + -0.18036237359046936, + -1.249608039855957, + 0.12780265510082245, + 0.34602096676826477, + 0.4217807650566101, + 0.11863972246646881, + 0.13410227000713348, + 0.05955906957387924, + -0.36140286922454834, + 0.2649194896221161, + -0.1120811253786087, + -0.1230640560388565, + 0.029187869280576706, + -0.0021337345242500305, + -0.04308479279279709, + -0.12084022164344788, + 0.5323108434677124, + -0.12813016772270203, + -0.35470050573349, + 0.30360737442970276, + -0.08827779442071915, + -0.019499951973557472, + -0.11532315611839294, + -0.162815123796463, + -0.49197036027908325, + -0.19340060651302338, + -0.04802045226097107, + 0.08514002710580826, + 0.40528059005737305, + -0.07893289625644684, + -0.3891502022743225, + 0.25558391213417053, + -0.0025581717491149902, + 0.2938360273838043, + 0.02811253070831299, + 0.012750699184834957, + 0.06092653051018715, + -0.009361499920487404, + 0.04986138641834259, + -0.08937467634677887, + 0.1444200873374939, + 0.41584548354148865, + 0.1003168374300003, + 0.1807423233985901, + 0.014477571472525597, + 0.20301803946495056, + -0.00028870999813079834, + -0.12920910120010376, + -0.41805481910705566, + 0.04160172492265701, + -0.15706497430801392, + 0.056589581072330475, + -0.06894007325172424, + -0.03683476895093918, + -0.23451340198516846, + -0.018516354262828827, + 0.01859549805521965, + -0.2877085208892822, + -0.2857058346271515, + 0.4141886234283447, + 0.16869127750396729, + 0.23061507940292358, + 0.22104033827781677, + -0.17074280977249146, + 0.02249368652701378, + 0.07750824093818665, + 0.18455982208251953, + 0.5066249966621399, + 0.12167725712060928, + -0.10829576849937439, + -0.2126179337501526, + -0.2208799123764038, + -0.2610623836517334, + 0.10251399129629135, + 0.4387354850769043, + -0.012084785848855972, + 0.14429225027561188, + 0.4056583642959595, + -0.01488814502954483, + 0.019989408552646637, + 0.9064183235168457, + -0.39538151025772095, + 0.16263112425804138, + -0.08241316676139832, + 0.15687327086925507, + -0.2712385058403015, + -0.4790802299976349, + 0.008007453754544258, + 0.42691096663475037, + -0.34386515617370605, + 0.5109390020370483, + 0.05270667374134064, + -0.3495572805404663, + 0.008313879370689392, + -0.21478500962257385, + 0.3183654546737671, + 0.3125024735927582, + 0.24615390598773956, + 0.05583029240369797, + -0.200467050075531, + -0.18840113282203674, + -0.06054779142141342, + -0.45721957087516785, + -0.25145864486694336, + -0.05640270933508873, + 0.0635661780834198, + 0.11742560565471649, + -0.35247522592544556, + 0.39202773571014404, + 0.07067875564098358, + -0.22197797894477844, + -0.2665887176990509, + -0.3358158469200134, + 0.00816674530506134, + 0.2017928510904312, + 0.6012858152389526, + -0.04619159549474716, + 0.02493780106306076, + -0.1550561636686325, + 0.13061387836933136, + -0.06757781654596329, + 0.17170831561088562, + -0.06510891020298004, + 0.07508485019207001, + -0.4468626081943512, + 0.06557665765285492, + 0.08915989845991135, + -0.3400595486164093, + -0.1384894996881485, + -0.2294258028268814, + 0.25670161843299866, + 0.02898065187036991, + -0.24524244666099548, + 0.0880199670791626, + 0.3006818890571594, + -0.007880868390202522, + -0.06058032065629959, + -0.2787621021270752, + 0.1562856286764145, + -0.00023385975509881973, + 0.33602726459503174, + 0.10304993391036987, + -0.24230524897575378, + -0.2999469041824341, + -0.4333721101284027, + -0.0149671770632267, + -0.13352960348129272, + -0.0967276468873024, + 0.06497111916542053, + 0.13307376205921173, + -0.2004036009311676, + 0.03736452758312225, + -0.2756181061267853, + 0.04310602694749832, + -0.164451003074646, + 0.13436013460159302, + 0.41685420274734497, + -0.33877643942832947, + 0.14946863055229187, + -0.24648872017860413, + 0.3125213086605072, + 0.15554724633693695, + -0.39477109909057617, + 0.1328176110982895, + -0.1124398484826088 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_004.json b/src/benchmark/output/results/results_graph_004.json new file mode 100644 index 0000000..79dc351 --- /dev/null +++ b/src/benchmark/output/results/results_graph_004.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is an 81-year-old female who presented with progressive chest tightness and dyspnea over a 10-day period. She has no history of smoking or malignancy.\n\n**Timeline of Diagnoses:**\n\n1. **Step 1 (Day 0-9):** The patient initially presents with progressive chest tightness, dyspnea, cough, and back pain. Chest CT imaging reveals a large left-sided pleural effusion.\n2. **Step 2 (Day 10):** Thoracentesis is performed, and the drained pleural fluid is sent to the Department of Pathology for further evaluation.\n3. **Step 3 (Day 11-12):** Post-thoracic drainage chest CT reveals a 6.7 cm x 2.8 cm heterogeneous mass in the left inferior lobe with irregular contrast enhancement, suggestive of a left lung tumor.\n4. **Step 4 (Day 13-14):** Pulmonary window analysis shows multiple nodular high-density foci scattered across both lungs, concerning for bilateral pulmonary metastases. Mediastinal window assessment reveals bilateral mediastinal lymphadenopathy and enlarged lymph nodes at the left pulmonary hilum, consistent with lymph node metastasis.\n5. **Step 5 (Day 15-16):** Abdominal CT scan detects multiple low-density hepatic nodules of varying sizes, with the largest lesion located in the right hepatic lobe. Enhanced brain CT identifies an irregular heterogeneously enhancing mass within the right frontal lobe, consistent with brain metastasis.\n6. **Step 6 (Day 17-18):** Cell block analysis of the pleural effusion demonstrates poorly cohesive round-to-oval cells with a dispersed distribution exhibiting eccentrically located nuclei with dense chromatin.\n\n**Treatments:**\n\n1. Thoracentesis and post-thoracic drainage chest CT\n2. Abdominal CT scan and enhanced brain CT\n\n**Outcomes:**\nThe patient's diagnosis is confirmed as lung cancer with bilateral pulmonary metastases, hepatic metastases, and brain metastasis. The cell block analysis of the pleural effusion reveals poorly cohesive round-to-oval cells consistent with adenocarcinoma.\n\n**Conclusion:**\nThis 81-year-old female patient presents with progressive chest tightness and dyspnea due to a large left-sided pleural effusion, which is later confirmed as a left lung tumor with bilateral pulmonary metastases, hepatic metastases, and brain metastasis. The diagnosis is made after thoracentesis, post-thoracic drainage chest CT, abdominal CT scan, enhanced brain CT, and cell block analysis of the pleural effusion.", + "bertscore": { + "precision": [ + 0.7519660592079163 + ], + "recall": [ + 0.7654501795768738 + ], + "f1": [ + 0.7586482167243958 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 6, + "edge_count": 5, + "avg_in_degree": 0.8333333333333334, + "density": 0.16666666666666666 + }, + "trajectory_embedding": [ + 0.2583933174610138, + -0.1034068688750267, + 0.02750878781080246, + 0.12225138396024704, + 0.07123710960149765, + 0.08420076966285706, + -0.025338614359498024, + 0.20714537799358368, + 0.42998072504997253, + -0.2773303687572479, + -0.23241369426250458, + 0.0849342942237854, + -0.532634437084198, + 0.050035249441862106, + -0.25669047236442566, + 0.11723083257675171, + 0.17126429080963135, + 0.2885790467262268, + 0.022143423557281494, + -0.16853980720043182, + -0.5408232808113098, + 0.15986886620521545, + -0.4296847879886627, + -0.00046265622950159013, + 0.2759328782558441, + -0.047584932297468185, + 0.17444981634616852, + 0.3902381658554077, + 0.2824210822582245, + 0.31304478645324707, + 0.13808360695838928, + -0.15729466080665588, + 0.14718084037303925, + -0.02834639698266983, + -0.10681698471307755, + 0.3241442143917084, + 0.20505361258983612, + 0.5838627219200134, + -0.04575663432478905, + 0.060654330998659134, + 0.030844343826174736, + -0.050123054534196854, + 0.7809808850288391, + 0.08795914798974991, + 0.6160065531730652, + -0.8483803272247314, + -0.03120688535273075, + 0.4838823080062866, + -0.5674558877944946, + -0.540779173374176, + 0.18877719342708588, + 0.8178849220275879, + 0.5946782827377319, + -0.16376003623008728, + 0.5136048793792725, + -0.07738406211137772, + -0.21868568658828735, + -0.3406544625759125, + -0.1053871288895607, + -0.045159924775362015, + -0.16560716927051544, + -0.3703373372554779, + 0.19793196022510529, + -0.0010139979422092438, + -0.21991266310214996, + -0.1403156965970993, + -0.10146746039390564, + -0.0013162102550268173, + 0.0025066707748919725, + -0.5080063343048096, + -0.08493319153785706, + -0.1158699169754982, + -0.21040649712085724, + 0.05718383565545082, + 0.14271576702594757, + -0.03102109767496586, + 0.3902250826358795, + -0.16335779428482056, + 0.006653872784227133, + 0.027929047122597694, + -0.053903866559267044, + -0.07901398092508316, + 0.20077599585056305, + 0.3684241771697998, + -0.38222071528434753, + 0.20212328433990479, + -0.11495695263147354, + -0.17530719935894012, + -0.2628645598888397, + 0.16204775869846344, + 0.17011022567749023, + -0.27152374386787415, + 0.03408863767981529, + -0.19221343100070953, + -0.02224837802350521, + -0.07351172715425491, + 0.30550000071525574, + 0.41390419006347656, + 1.0035374164581299, + -0.004422043915838003, + 0.22426648437976837, + 0.11977455765008926, + 0.33749184012413025, + 0.036290597170591354, + 0.5529285073280334, + -0.008936245925724506, + 0.09814983606338501, + -0.5816942453384399, + 0.059138935059309006, + 0.15273845195770264, + 0.07159942388534546, + -0.29080766439437866, + 0.04695405066013336, + -0.2886608839035034, + 0.18138979375362396, + 0.19459004700183868, + -0.13260580599308014, + 0.13827109336853027, + 0.05933411791920662, + -0.4314861297607422, + -0.17297464609146118, + -0.0476449690759182, + 0.3173906207084656, + 0.416760116815567, + -0.5305055975914001, + -0.10646569728851318, + -0.12110152095556259, + 0.0986652597784996, + 0.01864704303443432, + 0.12650208175182343, + -0.5729765295982361, + 0.009160935878753662, + -0.04395563527941704, + 0.24541759490966797, + -0.08395711332559586, + 0.09758146852254868, + -0.33874014019966125, + 0.10391154885292053, + -1.132510781288147, + 0.2772623598575592, + -0.3100367784500122, + -0.07802683860063553, + 0.08687806129455566, + -0.559102475643158, + -0.2412130981683731, + -0.18299619853496552, + -0.15575949847698212, + 0.13471664488315582, + -0.016560552641749382, + 0.027904203161597252, + -0.11488768458366394, + 0.1487807035446167, + 0.2224673181772232, + 0.31117090582847595, + 0.20761561393737793, + 0.07557263970375061, + 0.17278845608234406, + 0.2158612757921219, + 0.111088328063488, + -0.15561972558498383, + -0.027734214439988136, + 0.3112354576587677, + 0.1701497584581375, + -0.0415533147752285, + 0.07769405096769333, + -0.7617084383964539, + 0.0938117578625679, + -0.17703783512115479, + 0.21898877620697021, + 0.027599208056926727, + -0.20122146606445312, + 0.22140993177890778, + -0.27565065026283264, + 0.5770207047462463, + 0.11100810766220093, + 0.47188758850097656, + 0.03558645769953728, + -0.22732891142368317, + 0.10141105204820633, + 0.14196449518203735, + 0.19945426285266876, + -0.08361326903104782, + 0.6745460033416748, + 0.07695264369249344, + -0.1957089751958847, + 0.33735692501068115, + 0.26028409600257874, + -0.04082590714097023, + -0.135816752910614, + -0.13909098505973816, + 0.4667492210865021, + -0.2696774899959564, + 0.46427950263023376, + -0.48746323585510254, + 0.06286367774009705, + 0.14144213497638702, + -0.3030308485031128, + -0.056460484862327576, + 0.07677639275789261, + 0.05395236611366272, + 0.33006832003593445, + -0.06897107511758804, + -0.13764017820358276, + 0.012192770838737488, + 0.03623608872294426, + -0.11426950246095657, + 0.40463176369667053, + -0.044142503291368484, + 0.16351355612277985, + -0.06884920597076416, + -0.10242035984992981, + 0.2029731720685959, + -0.2510397434234619, + 0.08136317133903503, + 0.028738683089613914, + -0.4006012976169586, + 0.4184788167476654, + -0.028715573251247406, + -0.154597207903862, + 0.14366252720355988, + -0.13943582773208618, + -0.09763345122337341, + 0.15922962129116058, + -0.10088170319795609, + -0.3189184367656708, + 0.2153245061635971, + 0.10251444578170776, + 0.16937114298343658, + 0.3747340142726898, + 0.054426033049821854, + -0.04271594062447548, + -0.413448691368103, + 0.19344840943813324, + -0.024294273927807808, + -0.0772751197218895, + -0.4334566593170166, + 0.10619517415761948, + -0.34201502799987793, + 0.006509624421596527, + 0.24947905540466309, + -0.008853008970618248, + -0.1661585122346878, + 0.07974010705947876, + -0.18288201093673706, + -0.07533561438322067, + -0.40985798835754395, + 0.067476786673069, + 0.27375900745391846, + -0.075074702501297, + 0.17313379049301147, + -0.12923800945281982, + -0.12094511836767197, + 0.1721431463956833, + -0.28256723284721375, + -0.24916251003742218, + -0.38847672939300537, + -0.09403025358915329, + 0.05106024816632271, + -0.405582070350647, + 0.23059557378292084, + 0.05928253009915352, + -0.072181336581707, + -0.005881907884031534, + -0.2475137710571289, + -0.17939354479312897, + 0.09048786014318466, + -0.1508682370185852, + 0.021808376535773277, + 0.018271347507834435, + 0.11503053456544876, + -0.2114352136850357, + -0.3047686517238617, + -0.22384530305862427, + -0.09827858954668045, + 0.10696051269769669, + 0.07760587334632874, + -0.17969168722629547, + -0.13017039000988007, + 0.1038367822766304, + -0.2766321003437042, + -0.36624875664711, + 0.28650182485580444, + -0.08110731095075607, + 0.09820276498794556, + -0.03329989314079285, + 0.33045321702957153, + 0.0988786593079567, + -0.10366421937942505, + 0.06028594449162483, + 0.3911769390106201, + 0.5341885685920715, + 0.17068935930728912, + 0.043469130992889404, + -0.14090386033058167, + -0.07493159174919128, + -0.13546469807624817, + -0.4136233627796173, + 0.37483540177345276, + 0.10196995735168457, + -0.051735419780015945, + 0.04934224113821983, + 0.22684256732463837, + 0.14396075904369354, + -0.4280366599559784, + -0.16426706314086914, + 0.5573795437812805, + -0.04074380174279213, + 0.048320043832063675, + 0.0691380500793457, + 0.3954283893108368, + 0.678138017654419, + -0.03454875946044922, + -0.1016673818230629, + 0.084197998046875, + 0.00750374561175704, + -0.22610235214233398, + -0.06779544800519943, + 0.10169506818056107, + 0.5168731212615967, + -0.1505005806684494, + -0.042034000158309937, + 0.20306754112243652, + -0.09602037817239761, + -0.021799592301249504, + -0.1986166387796402, + -0.09983617067337036, + -0.0226000864058733, + -0.24916958808898926, + 0.47841131687164307, + -0.03324337676167488, + -0.08554657548666, + 0.44878950715065, + -0.17464379966259003, + -0.21563875675201416, + 0.1419552117586136, + -0.16669635474681854, + -0.6626150012016296, + 0.2328748255968094, + -0.1341627687215805, + -0.12986353039741516, + 0.42494651675224304, + 0.03062487579882145, + -0.08983782678842545, + -0.27506741881370544, + 0.49694588780403137, + 0.08067440986633301, + -0.08811963349580765, + -0.096425361931324, + 0.08180604875087738, + 0.37660136818885803, + 0.6148494482040405, + 0.20654530823230743, + 0.2933645248413086, + 0.5388324856758118, + 0.05001749470829964, + -0.24983006715774536, + -0.14874614775180817, + 0.12354717403650284, + 0.37616539001464844, + -0.17116235196590424, + -0.20130860805511475, + -0.3236638307571411, + -0.11367016285657883, + 0.1557912975549698, + -0.22135354578495026, + 0.02333947829902172, + 0.16448284685611725, + 0.03779447078704834, + -0.06024624779820442, + 0.183921679854393, + 0.16703177988529205, + -0.18795521557331085, + 0.3378758132457733, + -0.022704854607582092, + -0.06773103028535843, + 0.2121073454618454, + -0.27194929122924805, + 0.22983519732952118, + -0.12476903945207596, + -0.37102627754211426, + -0.36135146021842957, + -0.016541125252842903, + -0.3874332010746002, + -0.0940878614783287, + 0.02007303200662136, + -0.3772667944431305, + 0.10322427749633789, + -0.22529222071170807, + 0.1153930202126503, + 0.1438031941652298, + 0.33676978945732117, + 0.10866376757621765, + 0.4264952838420868, + 0.2190948873758316, + -0.22840513288974762, + 0.1045515164732933, + -0.2046426683664322, + 0.12325694411993027, + -0.14307814836502075, + -0.030300410464406013, + -0.08462776988744736, + 0.5158798694610596, + 0.1830156445503235, + -0.09632595628499985, + -0.030905038118362427, + 0.03387178108096123, + -0.2078799158334732, + -0.39124050736427307, + -0.25190284848213196, + -0.18647928535938263, + -0.03149080276489258, + 0.016730058938264847, + 0.05352554842829704, + -0.3722710907459259, + -0.28807154297828674, + -0.09175633639097214, + 0.14350128173828125, + 0.09866578131914139, + -0.12090641260147095, + 0.044013068079948425, + 0.34197625517845154, + 0.05192260816693306, + 0.3562060594558716, + -0.1663912534713745, + 0.1565546989440918, + 0.14726302027702332, + -0.48303428292274475, + 0.008545054122805595, + 0.03822505846619606, + -0.2749291658401489, + -0.040790408849716187, + 0.3350977897644043, + 0.24803684651851654, + 0.06085463985800743, + -0.006296847015619278, + 0.1869978904724121, + 0.3082644045352936, + -0.49922218918800354, + -0.1558949202299118, + 0.297989159822464, + 0.23977714776992798, + 0.5399264097213745, + -0.07175121456384659, + -0.3642609119415283, + -0.13309411704540253, + -0.01023685559630394, + -0.3957871198654175, + 0.13229069113731384, + 0.21839351952075958, + -0.3072367310523987, + -0.11105629056692123, + 0.14854423701763153, + -0.03693987801671028, + -0.006507532205432653, + 0.1581149697303772, + -0.12859870493412018, + 0.22252380847930908, + 0.044940706342458725, + -0.20735733211040497, + -0.12382151931524277, + -0.18659506738185883, + -0.30098238587379456, + -0.13125135004520416, + 0.4016812741756439, + 0.34076786041259766, + -0.32496756315231323, + 0.07214223593473434, + 0.04219283163547516, + -0.25916412472724915, + -0.2640756666660309, + -0.15624357759952545, + -0.2547512650489807, + 0.32960137724876404, + -0.2121124416589737, + -0.1298261433839798, + 0.05076824128627777, + -0.372775673866272, + 0.15544575452804565, + 0.2193928360939026, + 0.015916774049401283, + 0.41949784755706787, + 0.2979274392127991, + 0.12490435689687729, + 0.297406405210495, + 0.01885177753865719, + -0.01569005846977234, + 0.253350168466568, + -0.026847735047340393, + -0.014257587492465973, + -0.1742265224456787, + -0.13847921788692474, + 0.2683720588684082, + -0.30792561173439026, + 0.12654325366020203, + 0.3447130620479584, + 0.20055769383907318, + -0.47759580612182617, + -0.2365545630455017, + -0.07583025842905045, + 0.05415143445134163, + -0.10736274719238281, + -0.29489168524742126, + -0.16288314759731293, + 0.0809013694524765, + -0.12513378262519836, + -0.16591334342956543, + 0.3000882565975189, + 0.31882956624031067, + 0.04868127033114433, + 0.1831132173538208, + -0.33442196249961853, + -0.41347643733024597, + 0.13727976381778717, + 0.30553099513053894, + -0.0019482970237731934, + -0.08148317784070969, + -0.2510068714618683, + 0.332955926656723, + 0.6421900391578674, + -0.16719599068164825, + 0.025820741429924965, + 0.0336749367415905, + 0.11857970803976059, + 0.15314221382141113, + 0.17436237633228302, + -0.19084179401397705, + 0.14351870119571686, + -0.3643704652786255, + 0.3631077706813812, + -0.3282874822616577, + -0.1022457703948021, + 0.2416631132364273, + -0.11928466707468033, + -0.46645116806030273, + -0.21617066860198975, + 0.4866280257701874, + -0.20845408737659454, + -0.02713753469288349, + 0.14643238484859467, + 0.5337359309196472, + 0.1042320504784584, + -0.34738659858703613, + 0.0780247151851654, + -0.4741765558719635, + -0.09153936058282852, + 0.04712247848510742, + -0.15491464734077454, + -0.030437370762228966, + -0.18307431042194366, + 0.40902015566825867, + 0.4341925382614136, + 0.09944408386945724, + -0.05857411026954651, + 0.06813406199216843, + 0.21257035434246063, + 0.351852148771286, + -0.16517408192157745, + -10.696385383605957, + 0.08947757631540298, + -0.3235389292240143, + 0.6214336156845093, + -0.2847406566143036, + -0.04602588340640068, + 0.0622689314186573, + -0.07753685116767883, + -0.030190808698534966, + 0.02812592126429081, + -0.14662860333919525, + 0.06933770328760147, + 0.36432579159736633, + 0.3089110553264618, + -0.13865086436271667, + -0.15325336158275604, + -0.18933339416980743, + 0.17559605836868286, + -0.043805401772260666, + 0.30726563930511475, + 0.22761309146881104, + 0.406486839056015, + -0.3058054745197296, + 0.2413964718580246, + 0.07033171504735947, + -0.40084946155548096, + -0.22004981338977814, + 0.6523023247718811, + 0.1705946922302246, + -0.2580893039703369, + 0.3245163857936859, + 0.2855913043022156, + -0.30612459778785706, + 0.1704527735710144, + -0.1327863484621048, + -0.07284746319055557, + 0.004032632801681757, + -0.03175688162446022, + 0.23475247621536255, + 0.1051781177520752, + -0.10584268718957901, + -0.27533823251724243, + 0.25331932306289673, + 0.2575684189796448, + -0.2212311178445816, + -0.5380603671073914, + -0.15242181718349457, + -1.5252615213394165, + 0.21881145238876343, + 0.38092169165611267, + 0.447542279958725, + 0.05662431940436363, + 0.1594395488500595, + 0.11298314481973648, + -0.4088262617588043, + 0.0745827779173851, + -0.20342892408370972, + -0.030261151492595673, + 0.10569833964109421, + 0.07416641712188721, + 0.09360381960868835, + -0.2519964277744293, + 0.4135836660861969, + -0.137808158993721, + -0.3726528584957123, + 0.058830201625823975, + 0.06929994374513626, + -0.04357905313372612, + -0.20546849071979523, + -0.4559309780597687, + -0.45889750123023987, + 0.0038210004568099976, + -0.002218355657532811, + -0.052970025688409805, + 0.551442563533783, + 0.009390238672494888, + -0.299750417470932, + 0.1834694892168045, + 0.05571199581027031, + 0.5421097874641418, + 0.19629167020320892, + -0.09736425429582596, + 0.041664667427539825, + -0.08587676286697388, + -0.441127210855484, + -0.2162787765264511, + 0.10138394683599472, + 0.4863532483577728, + 0.021734535694122314, + 0.11847960948944092, + 0.008275563828647137, + 0.39933255314826965, + 0.07021576911211014, + -0.1566905528306961, + -0.4506320059299469, + 0.08993678539991379, + -0.1058262288570404, + 0.14905905723571777, + 0.09357014298439026, + -0.1506110280752182, + -0.278011292219162, + 0.08941177278757095, + -0.12621618807315826, + -0.4539858400821686, + -0.43350669741630554, + 0.1009003296494484, + 0.0908517837524414, + 0.21964360773563385, + 0.09002294391393661, + -0.15110395848751068, + -0.23119883239269257, + 0.04710010811686516, + 0.10503026843070984, + 0.5425638556480408, + 0.1520182490348816, + 0.023759083822369576, + -0.0624953955411911, + -0.387238472700119, + -0.21234168112277985, + 0.20065563917160034, + 0.3276001214981079, + -0.27673497796058655, + 0.32038411498069763, + 0.7085633277893066, + -0.12014124542474747, + -0.07677537947893143, + 1.0679117441177368, + -0.19159144163131714, + 0.3714933395385742, + -0.25225159525871277, + 0.16138187050819397, + -0.08190486580133438, + -0.3474377691745758, + 0.13265050947666168, + 0.34365156292915344, + -0.29666703939437866, + 0.6284262537956238, + 0.23948973417282104, + -0.3748980760574341, + 0.12418612092733383, + -0.31935620307922363, + 0.4985201358795166, + 0.3137863278388977, + 0.17917583882808685, + -0.03732016310095787, + -0.34272050857543945, + -0.1823723465204239, + 0.18177001178264618, + -0.4208186864852905, + -0.2803672254085541, + -0.16702836751937866, + 0.15541458129882812, + 0.31520089507102966, + -0.2805477976799011, + 0.3430659770965576, + 0.10352038592100143, + -0.1605072170495987, + -0.3442021310329437, + -0.46736398339271545, + -0.08180318027734756, + 0.08650700002908707, + 0.8310564160346985, + -0.11916478723287582, + 0.05509529635310173, + -0.09057893604040146, + 0.18557630479335785, + -0.10518945008516312, + 0.20370543003082275, + 0.05196814239025116, + -0.061092808842659, + -0.454100102186203, + 0.261759489774704, + -0.007629778236150742, + -0.39780792593955994, + -0.12359728664159775, + -0.2059127539396286, + -0.0893588438630104, + 0.11700839549303055, + -0.1693694144487381, + 0.17578516900539398, + 0.3254343569278717, + -0.1111014187335968, + -0.0199649129062891, + -0.36808180809020996, + 0.1326427012681961, + 0.13516975939273834, + 0.13114914298057556, + 0.19489987194538116, + -0.28813454508781433, + -0.3206564486026764, + -0.37855467200279236, + 0.1762486845254898, + -0.3110061585903168, + -0.0863831415772438, + -0.022728750482201576, + 0.24485403299331665, + -0.31534287333488464, + -0.008384250104427338, + -0.21698908507823944, + 0.04126561060547829, + -0.2706139385700226, + 0.24860239028930664, + 0.41023001074790955, + -0.1756933182477951, + 0.1744261384010315, + -0.2324109822511673, + 0.08062459528446198, + 0.06217345595359802, + -0.4316578209400177, + 0.28146860003471375, + -0.14903905987739563 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_005.json b/src/benchmark/output/results/results_graph_005.json new file mode 100644 index 0000000..bac95d4 --- /dev/null +++ b/src/benchmark/output/results/results_graph_005.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 54-year-old Chinese male with a significant smoking history of 30 years. He presented with worsening cough for 3 months, which led to further investigation via CT imaging.\n\n**Timeline of Diagnoses:**\n\n1. **April 2023:** Enhanced CT revealed a 22 mm \u00d7 12 mm \u00d7 16 mm mass in the right upper lobe with invasion in the right hilum and mediastinal. PET-CT scan confirmed the CT findings.\n2. **Biopsy (Upper Right Lobe):** Biopsy of the lung lesion showed positive immunohistochemistry (IHC) for TTF-1, NpA, CK7, CD5/6, and Ki67 (60%); and negative for p40, p63, and CD56. Diagnosed with stage IIIA lung adenocarcinoma (cT1cN2M0).\n3. **May 2023:** Targeted NGS analysis identified an EGFRG719X mutation with a mutant allele frequency (MAF) of 3.8%.\n\n**Timeline of Treatments:**\n\n1. **May 2023:** The patient received two cycles of PC chemotherapy (pemetrexed 0.9g d1 and carboplatin 600mg d1) and dacomitinib (30mg).\n2. **Initial Treatment Evaluation:** Initial tumor was considered unresectable due to metastasis in the right hilum and mediastinum.\n\n**Timeline of Outcomes:**\n\n1. **May 2023:** Chest CT showed obvious shrinkage in the lesions in the right upper lung lobe and the lymph nodes of the mediastinum, contributing to partial response (PR).\n2. **Current Status:** The patient is currently receiving treatment for stage IIIA lung adenocarcinoma with EGFRG719X mutation.\n\n**Clinical Summary:**\nThe patient presented with worsening cough and a significant smoking history, leading to further investigation via CT imaging. Biopsy of the lung lesion confirmed the diagnosis of stage IIIA lung adenocarcinoma (cT1cN2M0) with an EGFRG719X mutation. The patient received two cycles of PC chemotherapy and dacomitinib, resulting in a partial response (PR). Further treatment is ongoing to manage this complex case.\n\n**Key Findings:**\n\n* Stage IIIA lung adenocarcinoma with EGFRG719X mutation\n* Partial response (PR) after initial treatment evaluation\n* Significant smoking history of 30 years\n* Worsening cough for 3 months\n\n**Recommendations:**\nFurther evaluation and management are necessary to optimize the patient's care. This may include additional imaging, laboratory tests, or other treatments to manage this complex case.\n\nNote: The above narrative is based on the provided data and may not be a comprehensive clinical case report.", + "bertscore": { + "precision": [ + 0.7573888301849365 + ], + "recall": [ + 0.7618044018745422 + ], + "f1": [ + 0.759590208530426 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 5, + "edge_count": 4, + "avg_in_degree": 0.8, + "density": 0.2 + }, + "trajectory_embedding": [ + 0.26444298028945923, + 0.15941788256168365, + -0.1746055781841278, + 0.1967768669128418, + 0.13093367218971252, + 0.108800008893013, + 0.047415077686309814, + 0.3190433979034424, + 0.4498003125190735, + -0.4936943054199219, + -0.028453731909394264, + 0.19775180518627167, + -0.6453556418418884, + -0.2056516706943512, + -0.17296206951141357, + 0.10433705896139145, + -0.08722388744354248, + 0.390603631734848, + -0.16305780410766602, + -0.2122727930545807, + -0.4088035523891449, + 0.1627717912197113, + -0.44224637746810913, + 0.022073950618505478, + 0.17852269113063812, + -0.062067460268735886, + 0.3639596700668335, + 0.569270133972168, + 0.364279180765152, + 0.27838003635406494, + 0.07867208868265152, + -0.20546475052833557, + 0.04605097696185112, + 0.013336477801203728, + -0.15748649835586548, + 0.26580068469047546, + 0.28932029008865356, + 0.39360129833221436, + -0.23011581599712372, + -0.11030633747577667, + -0.078081414103508, + -0.018068676814436913, + 0.7918617129325867, + 0.16979047656059265, + 0.5370013117790222, + -0.6131890416145325, + -0.19347310066223145, + 0.5365955233573914, + -0.5480602979660034, + -0.32550469040870667, + 0.2359710931777954, + 0.7565101981163025, + 0.5041403770446777, + -0.2397071123123169, + 0.4378383755683899, + -0.22332391142845154, + -0.20167522132396698, + -0.13796362280845642, + -0.17543330788612366, + 0.042690061032772064, + 0.02397197112441063, + -0.04287847876548767, + 0.27494025230407715, + -0.10107463598251343, + -0.09495393931865692, + -0.26205503940582275, + -0.27165770530700684, + 0.036628853529691696, + 0.010086539201438427, + -0.37737196683883667, + -0.21605443954467773, + -0.25396811962127686, + -0.08632999658584595, + 0.11548461765050888, + 0.20971211791038513, + -0.10876703262329102, + 0.2750052809715271, + -0.0752566009759903, + 0.07908450067043304, + 0.14167554676532745, + 0.012829994782805443, + -0.10998060554265976, + -0.016856277361512184, + 0.32763800024986267, + -0.3715936839580536, + 0.02066645585000515, + -0.1057099923491478, + -0.15630166232585907, + -0.3564395308494568, + 0.19048824906349182, + 0.10057153552770615, + -0.3014791011810303, + 0.09028486162424088, + -0.2506754398345947, + -0.017363328486680984, + 0.15851105749607086, + 0.49282804131507874, + 0.166995570063591, + 0.9529813528060913, + 0.014598676934838295, + 0.18515194952487946, + -0.03545413538813591, + 0.1201309785246849, + 0.05223888158798218, + 0.4652419686317444, + -0.18059960007667542, + 0.19650860130786896, + -0.505384624004364, + 0.16876018047332764, + 0.4273758828639984, + 0.04789828136563301, + -0.14991816878318787, + -0.012555981054902077, + -0.2510371208190918, + 0.17002657055854797, + 0.17869381606578827, + -0.020138174295425415, + 0.15021224319934845, + 0.20156557857990265, + -0.4831060767173767, + -0.15941780805587769, + -0.13622929155826569, + 0.324978768825531, + 0.214555025100708, + -0.5191226005554199, + -0.10466263443231583, + -0.1056557446718216, + 0.03231992572546005, + -0.13290998339653015, + 0.13541147112846375, + -0.4916798174381256, + -0.20754575729370117, + -0.11399044841527939, + 0.11582426726818085, + -0.27831584215164185, + 0.3694887161254883, + -0.36065706610679626, + 0.07822888344526291, + -1.139994740486145, + 0.3266427218914032, + -0.4491669237613678, + -0.13711878657341003, + 0.020153993740677834, + -0.5781341195106506, + -0.17323558032512665, + -0.18497522175312042, + -0.1455450803041458, + 0.12946856021881104, + -0.036234062165021896, + -0.07339540868997574, + 0.003791165305301547, + -0.06739691644906998, + 0.2355768382549286, + 0.37865930795669556, + 0.10425474494695663, + 0.22910253703594208, + 0.048134695738554, + 0.3423025608062744, + 0.24893251061439514, + -0.14016327261924744, + 0.11029203981161118, + 0.4786514341831207, + 0.22046053409576416, + -0.016301019117236137, + -0.038135699927806854, + -0.623832106590271, + 0.06389786303043365, + -0.1485079973936081, + 0.05580617114901543, + 0.12250997871160507, + -0.16259676218032837, + 0.08546064794063568, + -0.10227549076080322, + 0.5625059008598328, + 0.16142921149730682, + 0.4568749964237213, + -0.08332149684429169, + 0.010616607964038849, + 0.0946546271443367, + 0.2393914759159088, + 0.03938936069607735, + -0.2937808632850647, + 0.7030659914016724, + 0.3660908341407776, + -0.242463156580925, + 0.23471656441688538, + 0.4681726396083832, + -0.13847549259662628, + -0.33584561944007874, + -0.1295376569032669, + 0.47047853469848633, + -0.21746821701526642, + 0.5052754282951355, + -0.43891334533691406, + 0.07624028623104095, + 0.0781157836318016, + -0.23918123543262482, + -0.019108915701508522, + 0.023412484675645828, + -0.15876367688179016, + 0.2233765870332718, + 0.013265090063214302, + -0.27820059657096863, + 0.06996011734008789, + 0.12561726570129395, + -0.12418381124734879, + 0.24710974097251892, + -0.003401172114536166, + 0.08434903621673584, + 0.07389038056135178, + -0.07700999081134796, + 0.20359942317008972, + 0.08988092839717865, + 0.2677081525325775, + -0.046653736382722855, + -0.31211763620376587, + 0.2533976435661316, + -0.058825623244047165, + -0.2366064339876175, + 0.13747508823871613, + -0.1293993443250656, + -0.2816670835018158, + 0.09862317144870758, + -0.04895424097776413, + -0.46308016777038574, + 0.24614211916923523, + 0.19535012543201447, + 0.20770525932312012, + 0.10454127937555313, + -0.06568097323179245, + 0.015821048989892006, + -0.5318699479103088, + 0.3571562170982361, + -0.029392218217253685, + -0.11664308607578278, + -0.32178542017936707, + 0.25908562541007996, + -0.12581484019756317, + -0.13722440600395203, + 0.4060828685760498, + 0.0326664038002491, + -0.06013842672109604, + 0.04090610519051552, + -0.31625327467918396, + -0.025044357404112816, + -0.28987154364585876, + 0.042393073439598083, + 0.28785213828086853, + 0.14498302340507507, + 0.29223042726516724, + 0.1767764538526535, + -0.19618161022663116, + 0.13886326551437378, + -0.1817779690027237, + -0.39477795362472534, + -0.3424406945705414, + -0.030069774016737938, + -0.020694833248853683, + -0.6699351072311401, + 0.24384908378124237, + -0.14709126949310303, + 0.03677447885274887, + 0.147049218416214, + -0.4412923753261566, + -0.1646527796983719, + -0.05756424739956856, + -0.04163757711648941, + 0.05752462148666382, + -0.1536444127559662, + 0.02227427437901497, + -0.3373582363128662, + -0.3324770927429199, + -0.06726725399494171, + 0.0903121829032898, + 0.09357617050409317, + 0.05206674337387085, + -0.3169952630996704, + 0.04694559425115585, + 0.284548819065094, + -0.33872148394584656, + -0.2569897770881653, + 0.16392681002616882, + -0.2700750231742859, + 0.11068473011255264, + -0.11211707442998886, + 0.17844170331954956, + 0.3257884681224823, + 0.145432248711586, + 0.14286966621875763, + 0.48899954557418823, + 0.4766181409358978, + -0.08813217282295227, + 0.0742560550570488, + 0.07247768342494965, + -0.048548467457294464, + -0.0719694048166275, + -0.27989187836647034, + 0.2888413369655609, + -0.07350458204746246, + 0.02597568929195404, + 0.03725794702768326, + 0.33235830068588257, + 0.16973096132278442, + -0.36056822538375854, + -0.024160826578736305, + 0.5726142525672913, + 0.1274251490831375, + 0.0720137432217598, + 0.09204301983118057, + 0.3280442953109741, + 0.3754640519618988, + -0.011867234483361244, + -0.020063292235136032, + 0.03426354005932808, + -0.10167889297008514, + -0.003683286951854825, + -0.1615658700466156, + 0.24738983809947968, + 0.37143439054489136, + -0.11800484359264374, + -0.3787926733493805, + 0.19062861800193787, + -0.10042177140712738, + -0.0920012891292572, + -0.188311368227005, + -0.02597857639193535, + 0.03697410225868225, + -0.1832079291343689, + 0.37874919176101685, + -0.09673632681369781, + 0.034678392112255096, + 0.5132294297218323, + -0.1839822381734848, + -0.05141686275601387, + 0.2306409329175949, + -0.16698555648326874, + -0.47715896368026733, + 0.2924748957157135, + -0.14144392311573029, + -0.07684727013111115, + 0.39445576071739197, + -0.3700679838657379, + 0.014759650453925133, + -0.12398584187030792, + 0.29324641823768616, + -0.04657968133687973, + 0.006628687493503094, + -0.005731302313506603, + -0.00021234751329757273, + 0.03934416174888611, + 0.5866349935531616, + 0.05733019858598709, + 0.10452653467655182, + 0.5318712592124939, + -0.04209374636411667, + -0.3857511281967163, + 0.07638968527317047, + 0.019100463017821312, + 0.3273197412490845, + -0.25662511587142944, + -0.12148809432983398, + -0.20611067116260529, + 0.17535126209259033, + 0.06717584282159805, + -0.1954023241996765, + -0.08450596034526825, + 0.10032176971435547, + 0.09494118392467499, + 0.01739845797419548, + 0.3453163504600525, + 0.09542397409677505, + -0.1084357276558876, + 0.4954783320426941, + -0.1315261572599411, + -0.1482975035905838, + 0.4415794312953949, + -0.20641303062438965, + 0.3011438250541687, + -0.1731223315000534, + -0.18088027834892273, + -0.33862677216529846, + 0.14215219020843506, + -0.3085923492908478, + -0.2220015972852707, + 0.04336664080619812, + -0.12681689858436584, + 0.09120196849107742, + -0.12737341225147247, + 0.17651645839214325, + 0.02825837768614292, + 0.054775822907686234, + 0.18003126978874207, + 0.4720068573951721, + 0.07884915918111801, + -0.4161751866340637, + 0.20082008838653564, + -0.06317639350891113, + 0.11472564935684204, + -0.2989615797996521, + 0.1219843178987503, + -0.19053146243095398, + 0.4439583420753479, + 0.034178465604782104, + -0.0072060851380229, + 0.16246744990348816, + -0.03201517462730408, + -0.1445402204990387, + -0.5315333604812622, + 0.04227222129702568, + -0.05526598542928696, + 0.02870592474937439, + 0.05986417084932327, + 0.11589948832988739, + -0.35593554377555847, + -0.1692359745502472, + 0.06701365858316422, + 0.10297272354364395, + 0.13722950220108032, + -0.22621572017669678, + 0.05933862179517746, + 0.2716220021247864, + 0.22544816136360168, + 0.44579941034317017, + -0.3770504295825958, + 0.1628856211900711, + 0.200343519449234, + -0.34084969758987427, + -0.053314875811338425, + -0.1345786303281784, + -0.36352282762527466, + -0.04250466078519821, + 0.20133817195892334, + 0.15243177115917206, + 0.043334923684597015, + 0.007842861115932465, + -0.013355100527405739, + 0.2043103277683258, + -0.3694179654121399, + 0.012494584545493126, + 0.5102630853652954, + 0.21045568585395813, + 0.48889145255088806, + -0.05580740422010422, + -0.5707851648330688, + -0.23632535338401794, + -0.08670255541801453, + -0.49997586011886597, + 0.0857858657836914, + 0.21489588916301727, + -0.11693079769611359, + -0.04312785714864731, + 0.12231558561325073, + 0.06176489591598511, + -0.03878216817975044, + 0.0468897745013237, + -0.38922375440597534, + 0.19669672846794128, + -0.00937594287097454, + -0.36596208810806274, + -0.03625774383544922, + -0.20736178755760193, + -0.35025161504745483, + -0.23090562224388123, + 0.3388487994670868, + 0.26125267148017883, + -0.2289842665195465, + 0.00018537938012741506, + 0.12364313751459122, + -0.2201654016971588, + -0.3170410096645355, + -0.0636974424123764, + -0.29080936312675476, + 0.5260792970657349, + -0.05918588489294052, + -0.1896524429321289, + 0.10338175296783447, + -0.25339287519454956, + 0.011904867365956306, + 0.1397339403629303, + 0.06271512806415558, + 0.41630515456199646, + -0.0025386542547494173, + 0.11965905129909515, + 0.5557200312614441, + 0.1450423300266266, + 0.06909553706645966, + 0.28708428144454956, + -0.07803681492805481, + -0.04901803657412529, + -0.05292012169957161, + -0.3050917088985443, + 0.4445802569389343, + -0.33791106939315796, + 0.08996917307376862, + 0.0697154700756073, + 0.3222559988498688, + -0.4623467028141022, + -0.3673073649406433, + -0.10213188827037811, + -0.0171823687851429, + -0.06902258843183517, + -0.31103968620300293, + -0.22007064521312714, + -0.1482122242450714, + -0.19951453804969788, + -0.004743661731481552, + 0.22902658581733704, + 0.46087178587913513, + 0.16014492511749268, + 0.1784369796514511, + -0.3276606500148773, + -0.18040016293525696, + 0.11403970420360565, + 0.25914961099624634, + 0.15003474056720734, + -0.06528967618942261, + -0.185510516166687, + 0.22951605916023254, + 0.4858551621437073, + -0.053555238991975784, + -0.016514942049980164, + 0.11476574093103409, + 0.03903410583734512, + 0.0017821133369579911, + 0.006769922561943531, + -0.09870482981204987, + 0.05872776359319687, + -0.3077263832092285, + 0.2027784287929535, + -0.1770610213279724, + -0.23810212314128876, + 0.24148087203502655, + -0.23222407698631287, + -0.5650317668914795, + -0.19477856159210205, + 0.15111960470676422, + -0.13109645247459412, + -0.07055538892745972, + 0.204031303524971, + 0.3559121787548065, + -0.006582754664123058, + -0.25657814741134644, + 0.02635561302304268, + -0.48771458864212036, + -0.23422065377235413, + 0.14435827732086182, + -0.12046962976455688, + 0.009029055014252663, + -0.0837835818529129, + 0.27395758032798767, + 0.43363967537879944, + 0.27297443151474, + -0.27179041504859924, + 0.1114642471075058, + 0.4251101016998291, + 0.3218974471092224, + -0.1977650225162506, + -10.5908842086792, + -0.08685319125652313, + -0.31190934777259827, + 0.5034602880477905, + -0.09497231245040894, + 0.10752934217453003, + -0.13767294585704803, + -0.04231105372309685, + 0.22920577228069305, + 0.15235842764377594, + -0.16417630016803741, + -0.04306260496377945, + 0.24129971861839294, + 0.2839868664741516, + 0.09350141137838364, + 0.08771146833896637, + -0.3204841911792755, + 0.21960051357746124, + -0.024087198078632355, + 0.12094122171401978, + 0.22182981669902802, + 0.5025917291641235, + -0.32004934549331665, + 0.2369130402803421, + 0.11897021532058716, + -0.40965256094932556, + -0.19889792799949646, + 0.5966641902923584, + 0.34774017333984375, + -0.47192734479904175, + 0.27572983503341675, + 0.16872575879096985, + -0.16094693541526794, + 0.08402447402477264, + -0.053623683750629425, + -0.2379598617553711, + -0.1617407500743866, + 0.219281405210495, + 0.035501640290021896, + -0.06771695613861084, + 0.14385788142681122, + -0.25415951013565063, + 0.3277502655982971, + 0.15785981714725494, + -0.09087453782558441, + -0.4941312372684479, + -0.054533619433641434, + -1.5412847995758057, + 0.16122953593730927, + 0.3375662863254547, + 0.3884543478488922, + 0.11754526942968369, + 0.13307985663414001, + 0.2947734594345093, + -0.28290247917175293, + -0.018010545521974564, + -0.225310280919075, + 0.026250740513205528, + 0.20847436785697937, + -0.028243619948625565, + 0.040125180035829544, + 0.06619243323802948, + 0.45875972509384155, + 0.03913953900337219, + -0.22780942916870117, + 0.18178462982177734, + 0.06808008998632431, + -0.19776836037635803, + -0.3751186728477478, + -0.6779531836509705, + -0.6565596461296082, + 0.1161058098077774, + -0.03779923915863037, + -0.014081376604735851, + 0.4053921699523926, + -0.023084603250026703, + -0.30915552377700806, + 0.11302802711725235, + 0.041265204548835754, + 0.39814597368240356, + 0.2175280600786209, + -0.020090360194444656, + 0.04153497889637947, + -0.13007913529872894, + -0.17516666650772095, + -0.1990775316953659, + 0.07741371542215347, + 0.5744197368621826, + 0.0051642791368067265, + 0.003565080463886261, + 0.02012748457491398, + 0.3525918126106262, + -0.11620154231786728, + -0.13370291888713837, + -0.391549289226532, + 0.04494868963956833, + 0.05321664735674858, + 0.10255566984415054, + -0.08858299255371094, + -0.08601029217243195, + -0.24060718715190887, + -0.020026855170726776, + -0.11588732153177261, + -0.41942930221557617, + -0.5410914421081543, + 0.20725569128990173, + 0.20417055487632751, + 0.15526965260505676, + -0.004157430026680231, + 0.023549994453787804, + -0.15507926046848297, + -0.05191318318247795, + 0.34866026043891907, + 0.5562551617622375, + 0.2522204518318176, + -0.023343289270997047, + 0.007140076253563166, + -0.08937744051218033, + -0.19463960826396942, + -0.017210185527801514, + 0.4520553648471832, + 0.019033867865800858, + 0.04146445542573929, + 0.558208167552948, + 0.018179263919591904, + -0.055671386420726776, + 0.9056228399276733, + -0.3774851858615875, + 0.25849539041519165, + -0.1187991127371788, + 0.1613101065158844, + 0.0014520942931994796, + -0.526279091835022, + 0.04984378069639206, + 0.4215150773525238, + -0.37005680799484253, + 0.8397720456123352, + 0.3449508547782898, + -0.3784930109977722, + 0.02001301385462284, + -0.35369402170181274, + 0.42638564109802246, + 0.2703634202480316, + 0.2578088343143463, + -0.23114927113056183, + -0.19035080075263977, + -0.4070289134979248, + 0.029389183968305588, + -0.460902601480484, + -0.33441486954689026, + -0.13435077667236328, + 0.10411826521158218, + 0.06014033406972885, + -0.16343533992767334, + 0.2967160642147064, + 0.1560571938753128, + -0.23506078124046326, + -0.15030960738658905, + -0.49159687757492065, + -0.288693904876709, + -0.004842457361519337, + 0.7797421216964722, + 0.07439661026000977, + -0.12136934697628021, + -0.09562963247299194, + 0.16359283030033112, + -0.1262212097644806, + 0.0713212639093399, + 0.06340330094099045, + -0.012859612703323364, + -0.3709489405155182, + 0.1904623806476593, + 0.17486698925495148, + -0.3707614541053772, + -0.2279631644487381, + -0.11814628541469574, + 0.04541970044374466, + 0.0864521712064743, + -0.13294580578804016, + 0.03790726140141487, + 0.3080064654350281, + -0.14976727962493896, + 0.00935194082558155, + -0.35069507360458374, + -0.0067945122718811035, + 0.11920662224292755, + 0.21115157008171082, + 0.12239930778741837, + -0.3420785963535309, + -0.25314730405807495, + -0.40954717993736267, + 0.25935789942741394, + -0.44630423188209534, + -0.02935277298092842, + 0.023297931998968124, + 0.2896445393562317, + -0.2899172902107239, + 0.1287817507982254, + -0.1425635814666748, + 0.03875355422496796, + -0.3075428605079651, + 0.30901435017585754, + 0.5397374033927917, + -0.19223614037036896, + 0.2921281158924103, + -0.1078154444694519, + 0.24127164483070374, + -0.007835115306079388, + -0.30574044585227966, + 0.1526556760072708, + -0.24457792937755585 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_006.json b/src/benchmark/output/results/results_graph_006.json new file mode 100644 index 0000000..89b6ec6 --- /dev/null +++ b/src/benchmark/output/results/results_graph_006.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 54-year-old man with a history of colitis. He is an ex-smoker with 60 pack-years of smoking experience.\n\n**Timeline of Diagnoses:**\n\n1. **June 2014:** The patient presents to the clinic with right hip pain for two months.\n2. **June 2014 (CT scan):** A CT scan reveals a ~25-mm nodule in the right upper lobe of the lung and a 50-mm mass in the right pelvic region.\n3. **June 2014 (18F-fluorodeoxyglucose positron emission tomography-CT):** The patient undergoes further imaging, which shows intense accumulation in the right S2 nodule of the lung.\n4. **June 2014 (18F-fluorodeoxyglucose positron emission tomography-CT):** The patient receives additional imaging, which reveals standardized uptake value (SUV) max: 15.2 in the right adrenal gland and a pelvic mass from the right sciatic/pubic bone to the right internal obturator muscle (SUV max: 10.81).\n5. **Biopsy:** A transbronchial biopsy (TBB) specimen from the nodule in the right lung is performed, which identifies carcinoma with neuroendocrine features.\n6. **June 2014 (staging and mutation status):** The patient's cancer is staged, and his mutation status is determined.\n\n**Timeline of Treatments:**\n\n1. **June 2014:** The patient undergoes a CT scan to evaluate the right hip pain.\n2. **June 2014:** The patient receives further imaging using 18F-fluorodeoxyglucose positron emission tomography-CT.\n3. **June 2014:** The patient undergoes additional imaging using 18F-fluorodeoxyglucose positron emission tomography-CT.\n4. **June 2014:** The patient receives a transbronchial biopsy (TBB) of the nodule in the right lung.\n\n**Outcomes:**\n\n1. **Diagnosis:** The patient is diagnosed with carcinoma with neuroendocrine features, which is confirmed by histopathological examination of the TBB specimen.\n2. **Staging and Mutation Status:** The patient's cancer is staged as stage IV lung cancer (T1bN0M1b), and his mutation status is negative for epidermal growth factor receptor and anaplastic lymphoma kinase gene, with a programmed death-ligand 1 (PD-L1) tumor proportion score of less than 1%.\n3. **Treatment:** The patient's treatment plan is not specified in the provided data.\n\n**Conclusion:**\nThe patient presents with right hip pain and is diagnosed with carcinoma with neuroendocrine features after undergoing imaging studies and a transbronchial biopsy (TBB). His cancer is staged as stage IV lung cancer, and his mutation status is negative. The patient's treatment plan is not specified in the provided data.", + "bertscore": { + "precision": [ + 0.704978883266449 + ], + "recall": [ + 0.6731678247451782 + ], + "f1": [ + 0.6887062788009644 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 6, + "edge_count": 5, + "avg_in_degree": 0.8333333333333334, + "density": 0.16666666666666666 + }, + "trajectory_embedding": [ + 0.22079414129257202, + 0.0068036518059670925, + -0.10039127618074417, + 0.16631634533405304, + 0.10629185289144516, + 0.08402007818222046, + 0.24246330559253693, + 0.2994869649410248, + 0.36667490005493164, + -0.5220186710357666, + -0.11857226490974426, + 0.10266987234354019, + -0.7685451507568359, + 0.058542799204587936, + -0.482259601354599, + 0.13929423689842224, + 0.1318996697664261, + 0.4940612316131592, + 0.04252505302429199, + -0.15624141693115234, + -0.44017040729522705, + 0.15033189952373505, + -0.4038124084472656, + -0.11106905341148376, + 0.19717921316623688, + -0.12546579539775848, + 0.3431145250797272, + 0.4914620816707611, + 0.2694730758666992, + 0.23003725707530975, + 0.1788916438817978, + 0.03423051908612251, + 0.049904029816389084, + -0.02016344480216503, + -0.23770107328891754, + 0.24308933317661285, + 0.23280774056911469, + 0.40942931175231934, + -0.026274390518665314, + 0.17399978637695312, + -0.11446791142225266, + -0.04195946455001831, + 0.8968066573143005, + 0.2236592173576355, + 0.5602929592132568, + -0.7041261792182922, + -0.10314673185348511, + 0.36623892188072205, + -0.6300966143608093, + -0.16875718533992767, + 0.2137339562177658, + 0.9334409236907959, + 0.5245199799537659, + -0.1517276018857956, + 0.5086846351623535, + -0.14341230690479279, + -0.16930514574050903, + -0.09730882197618484, + -0.17902076244354248, + 0.15082213282585144, + 0.17585481703281403, + -0.07869728654623032, + 0.16509877145290375, + -0.07819914072751999, + -0.30090823769569397, + -0.21946464478969574, + -0.28894203901290894, + -0.04872637614607811, + -0.10376960039138794, + -0.4606766700744629, + -0.3887186348438263, + -0.08500645309686661, + -0.17090988159179688, + 0.07650268822908401, + 0.05579487606883049, + -0.15813195705413818, + 0.21702039241790771, + -0.06479009240865707, + -0.0040860590524971485, + 0.09251502901315689, + 0.13362562656402588, + -0.1260027140378952, + 0.17094404995441437, + 0.24321693181991577, + -0.46696171164512634, + 0.06823756545782089, + 0.07724779099225998, + -0.09863746166229248, + -0.3433823883533478, + 0.11276907473802567, + 0.3425576984882355, + -0.34901031851768494, + -0.0958196148276329, + -0.1562359780073166, + -0.041846465319395065, + -0.013722777366638184, + 0.259452223777771, + 0.4240398108959198, + 0.9436850547790527, + 0.10621755570173264, + 0.3363731801509857, + 0.2632546126842499, + 0.1998424381017685, + 0.09690434485673904, + 0.5815617442131042, + -0.18132996559143066, + 0.3244759738445282, + -0.3675495684146881, + -0.08069717139005661, + 0.34332945942878723, + -0.05375170707702637, + -0.12344181537628174, + -0.10996752977371216, + -0.12526308000087738, + 0.06525233387947083, + 0.1104477271437645, + -0.23697347939014435, + 0.10229384154081345, + 0.23051869869232178, + -0.33135369420051575, + -0.10747476667165756, + -0.11386413127183914, + 0.20419567823410034, + 0.4044123589992523, + -0.36454907059669495, + -0.030490867793560028, + -0.1701083928346634, + 0.1706821471452713, + 0.03659148886799812, + 0.15833266079425812, + -0.3549974858760834, + -0.27909743785858154, + -0.07552865892648697, + 0.25933876633644104, + -0.24047040939331055, + 0.18552474677562714, + -0.39167866110801697, + -0.07685046643018723, + -1.1124176979064941, + 0.26425859332084656, + -0.4439237117767334, + -0.032162588089704514, + 0.02874627523124218, + -0.40296506881713867, + -0.19871585071086884, + -0.23611372709274292, + -0.19041521847248077, + 0.10303816944360733, + 0.0797235295176506, + -0.0895484983921051, + 0.12768779695034027, + -0.02637212537229061, + 0.14894819259643555, + 0.20680344104766846, + 0.1126171126961708, + 0.2035607546567917, + 0.16398178040981293, + 0.22596649825572968, + 0.13256238400936127, + -0.09712529182434082, + -0.011426550336182117, + 0.22385120391845703, + 0.1396864652633667, + 0.027051517739892006, + 0.11868343502283096, + -0.5744277834892273, + 0.1545202136039734, + -0.3565215766429901, + 0.2055472731590271, + 0.10641887038946152, + 0.014608405530452728, + 0.10834010690450668, + -0.16103188693523407, + 0.4335976839065552, + 0.12601865828037262, + 0.3254782259464264, + -0.09430418163537979, + -0.2529444396495819, + -0.05710095167160034, + 0.08799135684967041, + 0.06612095236778259, + -0.23296570777893066, + 0.6526739597320557, + 0.2884293496608734, + -0.21988075971603394, + 0.20764988660812378, + 0.5347834229469299, + -0.27766022086143494, + -0.17226870357990265, + -0.11798069626092911, + 0.38795337080955505, + -0.2307334989309311, + 0.4399009943008423, + -0.43759146332740784, + -0.05755443871021271, + 0.04299235716462135, + -0.27087801694869995, + -0.09536450356245041, + 0.21022562682628632, + -0.23772500455379486, + 0.11388953775167465, + 0.17025728523731232, + -0.4522460997104645, + 0.14414696395397186, + 0.17819000780582428, + -0.16169734299182892, + 0.4047943353652954, + 0.17276054620742798, + 0.1322757750749588, + -0.16878004372119904, + -0.03749946132302284, + 0.19344262778759003, + 0.07374321669340134, + 0.2004312425851822, + -0.09735529869794846, + -0.302091509103775, + 0.3800511062145233, + -0.05587804690003395, + -0.3234705626964569, + 0.09815727919340134, + -0.23396049439907074, + -0.35002967715263367, + 0.330935001373291, + -0.015080389566719532, + -0.5263404846191406, + 0.1741846650838852, + 0.2116841822862625, + 0.16481342911720276, + 0.10368741303682327, + -0.11404214054346085, + -0.10746178776025772, + -0.2864334285259247, + 0.3936462700366974, + -0.011800636537373066, + -0.24480010569095612, + -0.2115149348974228, + 0.25830671191215515, + -0.15830115973949432, + -0.2725900113582611, + 0.48065876960754395, + 0.06234290078282356, + -0.06465213745832443, + 0.15510065853595734, + -0.34781190752983093, + -0.025452444329857826, + -0.19982145726680756, + 0.05827787518501282, + 0.3428863286972046, + 0.023153021931648254, + 0.2199355959892273, + 0.2810784876346588, + -0.20293982326984406, + 0.22098056972026825, + -0.25315889716148376, + -0.4629002809524536, + -0.2407120317220688, + -0.058896537870168686, + -0.09344895929098129, + -0.5377377867698669, + 0.14901863038539886, + 0.1255534291267395, + -0.14845746755599976, + 0.11232221871614456, + -0.21508552134037018, + 0.011460770852863789, + -0.11231038719415665, + -0.07024973630905151, + 0.11023566871881485, + -0.16388089954853058, + 0.13134844601154327, + -0.304773211479187, + -0.270674467086792, + -0.08208248764276505, + 0.06594706326723099, + 0.22898180782794952, + 0.14642421901226044, + -0.14233045279979706, + 0.15510578453540802, + 0.34092628955841064, + -0.3536076247692108, + -0.2824692726135254, + 0.229201078414917, + -0.25876644253730774, + 0.030594659969210625, + -0.10574366897344589, + 0.19737417995929718, + 0.46873411536216736, + -0.08920243382453918, + 0.2107650488615036, + 0.43203678727149963, + 0.485553115606308, + 0.18064232170581818, + -0.03805295377969742, + 0.012246537022292614, + -0.11030981689691544, + -0.0027868703473359346, + -0.4539550244808197, + 0.13978344202041626, + -0.058640409260988235, + -5.440165477921255e-05, + 0.09393271803855896, + 0.3259073793888092, + 0.09322289377450943, + -0.5760225653648376, + -0.033931832760572433, + 0.5999140739440918, + 0.08858650922775269, + -0.02700190246105194, + 0.032323505729436874, + 0.28788506984710693, + 0.6021357178688049, + 0.03305639699101448, + -0.14865659177303314, + 0.14405660331249237, + -0.13897894322872162, + -0.09233909845352173, + -0.011767186224460602, + -0.10709307342767715, + 0.31594613194465637, + -0.042544495314359665, + -0.09414880722761154, + 0.17955677211284637, + -0.1633128672838211, + -0.1542462706565857, + -0.013720334507524967, + 0.05147669091820717, + 0.004824144300073385, + -0.2277732938528061, + 0.29496249556541443, + -0.042988765984773636, + -0.11788808554410934, + 0.5201581716537476, + -0.05039083585143089, + -0.2486046552658081, + 0.302303284406662, + -0.21761350333690643, + -0.582029402256012, + 0.19308650493621826, + -0.2496802657842636, + 0.07102323323488235, + 0.2501809298992157, + -0.29045209288597107, + 0.05501468852162361, + -0.017994580790400505, + 0.3139117658138275, + 0.012506749480962753, + -0.06005227565765381, + -0.10003703832626343, + -0.1066574826836586, + 0.18209423124790192, + 0.6474147439002991, + 0.09461668133735657, + 0.17633883655071259, + 0.6098618507385254, + -0.08829215914011002, + -0.3072599470615387, + 0.017276709899306297, + 0.0022809531074017286, + 0.3820231258869171, + -0.29842817783355713, + -0.03244083747267723, + -0.25422340631484985, + 0.0009374500368721783, + 0.04893822968006134, + -0.3796083927154541, + -0.030428295955061913, + 0.09868858009576797, + -0.11614179611206055, + 0.008694696240127087, + 0.22211825847625732, + 0.3671889007091522, + -0.0009426574106328189, + 0.47206875681877136, + -0.07574746757745743, + -0.10498600453138351, + 0.2520662844181061, + -0.16737580299377441, + 0.31326642632484436, + -0.09920656681060791, + -0.30135247111320496, + -0.4270583689212799, + 0.039883311837911606, + -0.3513769805431366, + -0.10385512560606003, + -0.04402327165007591, + -0.01592855155467987, + 0.01000981405377388, + -0.12827791273593903, + 0.2715034782886505, + 0.035369858145713806, + 0.13323481380939484, + 0.13791193068027496, + 0.43259355425834656, + -0.005205173511058092, + -0.37963005900382996, + 0.1343412846326828, + -0.02357921563088894, + 0.05957635119557381, + -0.12053096294403076, + 0.03773908317089081, + -0.24475590884685516, + 0.45484817028045654, + 0.11953041702508926, + -0.04500192403793335, + 0.03669946268200874, + -0.21489308774471283, + -0.13656622171401978, + -0.580854058265686, + -0.04611116275191307, + -0.12314959615468979, + 0.13981828093528748, + 0.051384419202804565, + 0.03139876574277878, + -0.26936283707618713, + -0.11874673515558243, + 0.019214266911149025, + 0.2721843421459198, + 0.22975707054138184, + -0.10396451503038406, + 0.025812318548560143, + 0.08467414230108261, + 0.23219065368175507, + 0.3321336507797241, + -0.2593180239200592, + 0.21241474151611328, + 0.13340948522090912, + -0.19853274524211884, + -0.025188006460666656, + 0.03496231511235237, + -0.38808634877204895, + -0.018659139052033424, + 0.25908979773521423, + 0.1340169757604599, + 0.08905681222677231, + -0.10959099978208542, + 0.09189996868371964, + 0.3874637186527252, + -0.4711107015609741, + -0.018386000767350197, + 0.39791426062583923, + 0.09700528532266617, + 0.6057591438293457, + -0.12522096931934357, + -0.3472076952457428, + -0.03601638600230217, + -0.058673154562711716, + -0.5560763478279114, + 0.09290676563978195, + 0.17779670655727386, + -0.305651992559433, + -0.06663582473993301, + 0.09272433072328568, + 0.13379186391830444, + -0.08197511732578278, + 0.22000505030155182, + -0.044205281883478165, + 0.07498061656951904, + -0.055478159338235855, + -0.3313036262989044, + -0.14635932445526123, + -0.35792073607444763, + -0.3312450349330902, + -0.2529447674751282, + 0.3988436162471771, + 0.3061753809452057, + -0.11526856571435928, + 0.17605692148208618, + -0.0007515226607210934, + -0.2814123332500458, + -0.1484595686197281, + -0.01846146024763584, + -0.2123296707868576, + 0.5361337065696716, + 0.12008785456418991, + -0.23897050321102142, + 0.22844462096691132, + -0.37481215596199036, + 0.15108340978622437, + 0.15056148171424866, + 0.12636294960975647, + 0.3509195148944855, + 0.2777665853500366, + 0.09697417169809341, + 0.43843722343444824, + 0.3124072253704071, + -0.07572551816701889, + 0.19811131060123444, + -0.08091238141059875, + -0.08688917756080627, + -0.13214188814163208, + -0.09865088015794754, + 0.4838005602359772, + -0.30266332626342773, + -0.03403162583708763, + 0.10319817066192627, + 0.1325846165418625, + -0.36536845564842224, + -0.16807138919830322, + -0.07807651907205582, + -0.0537039153277874, + -0.11788507550954819, + -0.45104503631591797, + -0.28826671838760376, + 0.0798415020108223, + -0.27211225032806396, + -0.043952081352472305, + 0.34794870018959045, + 0.4874558746814728, + 0.2083568125963211, + 0.05756905674934387, + -0.21766509115695953, + -0.4300067722797394, + 0.09749796241521835, + 0.19903719425201416, + 0.09355106949806213, + 0.009175081737339497, + -0.2838975191116333, + 0.24456417560577393, + 0.5851269960403442, + -0.10942459106445312, + 0.01835516467690468, + 0.1404767483472824, + -0.08869767189025879, + -0.09694862365722656, + -0.054631203413009644, + -0.20034998655319214, + -0.0019746620673686266, + -0.3720794916152954, + 0.2800564765930176, + -0.40893101692199707, + -0.30932316184043884, + 0.2936365306377411, + -0.11880290508270264, + -0.5519880056381226, + -0.18199597299098969, + 0.16779719293117523, + -0.2803634703159332, + 0.0043396796099841595, + 0.27434730529785156, + 0.4991426467895508, + 0.12240400165319443, + -0.25896984338760376, + 0.08953503519296646, + -0.560848593711853, + -0.11070572584867477, + 0.21627259254455566, + -0.14092548191547394, + 0.07231991738080978, + 0.05766952037811279, + 0.30796676874160767, + 0.5023131966590881, + 0.31072893738746643, + -0.43833982944488525, + 0.03072943724691868, + 0.4111979305744171, + 0.26888135075569153, + -0.2015589028596878, + -10.723095893859863, + -0.04805627465248108, + -0.381538063287735, + 0.5767348408699036, + -0.16299591958522797, + 0.03251035138964653, + 0.0075267404317855835, + -0.10211920738220215, + 0.16362044215202332, + 0.21265755593776703, + -0.19062048196792603, + 0.030612563714385033, + 0.28202539682388306, + 0.3649527132511139, + -0.12857939302921295, + -0.009245823137462139, + -0.18335022032260895, + 0.17392456531524658, + -0.1457454115152359, + 0.09156125038862228, + 0.10381583124399185, + 0.42891955375671387, + -0.3075563311576843, + 0.3947888910770416, + 0.06674876809120178, + -0.24433112144470215, + -0.11992726475000381, + 0.5517933964729309, + 0.11905160546302795, + -0.4133559763431549, + 0.36222970485687256, + 0.22189702093601227, + -0.11719927936792374, + 0.10985630005598068, + -0.004017889499664307, + -0.09445381164550781, + -0.15481187403202057, + 0.18345069885253906, + 0.1444598287343979, + 0.09864375740289688, + -0.10048773139715195, + -0.3825542628765106, + 0.15289442241191864, + 0.22854356467723846, + -0.14393357932567596, + -0.42122340202331543, + -0.09839614480733871, + -1.5444248914718628, + 0.29442864656448364, + 0.4110785722732544, + 0.29480671882629395, + 0.004414116498082876, + 0.19256694614887238, + 0.25935569405555725, + -0.4519692361354828, + 0.0019144341349601746, + -0.14617261290550232, + 0.09103530645370483, + 0.1367589235305786, + -0.013281870633363724, + 0.06831762939691544, + -0.07128817588090897, + 0.3834187984466553, + -0.12835346162319183, + -0.30257460474967957, + 0.0046989344991743565, + -0.12740753591060638, + -0.22382010519504547, + -0.2488587349653244, + -0.4704655706882477, + -0.5008402466773987, + 0.15579168498516083, + -0.04764612019062042, + -0.13072627782821655, + 0.5651500821113586, + -0.11657309532165527, + -0.4930977523326874, + 0.1580595076084137, + -0.04607750102877617, + 0.3741014897823334, + 0.3018045127391815, + 0.0002569444477558136, + 0.10475415736436844, + -0.08884236216545105, + -0.284866601228714, + -0.10637445002794266, + 0.13435019552707672, + 0.5735387206077576, + -0.04928717389702797, + -0.04725106433033943, + -0.047593310475349426, + 0.2544075548648834, + -0.19604408740997314, + -0.2657857835292816, + -0.3921540677547455, + 0.20282351970672607, + -0.02939351089298725, + 0.06602819263935089, + -0.0009625132079236209, + -0.29845884442329407, + -0.06852135062217712, + -0.050568997859954834, + -0.07190074771642685, + -0.5092532634735107, + -0.41709065437316895, + 0.17302536964416504, + 0.17931543290615082, + 0.21324847638607025, + -0.054451972246170044, + 0.13683770596981049, + -0.0013424456119537354, + -0.13062059879302979, + 0.3010106086730957, + 0.5147088170051575, + 0.23393391072750092, + 0.0022712349891662598, + -0.04706616327166557, + -0.08006804436445236, + -0.2959813177585602, + 0.020057324320077896, + 0.45714232325553894, + -0.23143665492534637, + 0.25972187519073486, + 0.6607144474983215, + 0.05597605183720589, + -0.20643214881420135, + 0.9364756941795349, + -0.240656316280365, + 0.377833753824234, + -0.16904675960540771, + 0.08066660910844803, + 0.03507379814982414, + -0.2872448265552521, + 0.10992223024368286, + 0.2644364833831787, + -0.2445099949836731, + 0.6211056113243103, + 0.16068509221076965, + -0.4300248622894287, + 0.039174702018499374, + -0.3107549846172333, + 0.46138930320739746, + 0.16994208097457886, + 0.22318512201309204, + -0.19939838349819183, + -0.25415006279945374, + -0.3582250773906708, + 0.056574393063783646, + -0.6048431396484375, + -0.41541776061058044, + -0.20515280961990356, + 0.19856178760528564, + 0.05603891611099243, + -0.13194513320922852, + 0.3243832290172577, + 0.08444619178771973, + -0.20330137014389038, + -0.17615211009979248, + -0.5368889570236206, + -0.1295514553785324, + 0.10480222851037979, + 0.7439088225364685, + 0.21773558855056763, + 0.008171528577804565, + -0.03804825618863106, + 0.15058137476444244, + -0.1812482476234436, + -0.04600593075156212, + 0.099144846200943, + -0.09599566459655762, + -0.5940706133842468, + 0.1768624186515808, + 0.12865322828292847, + -0.5072010159492493, + -0.12698523700237274, + -0.36456993222236633, + -0.021914318203926086, + -0.14252997934818268, + -0.10113666206598282, + 0.2121715098619461, + 0.17331118881702423, + -0.09052104502916336, + 0.06488226354122162, + -0.3238545060157776, + 0.11093670129776001, + 0.20846180617809296, + 0.15281696617603302, + 0.1912001222372055, + -0.17219674587249756, + -0.3727891147136688, + -0.34874603152275085, + 0.23405487835407257, + -0.34826186299324036, + 0.003866473911330104, + 0.11267878860235214, + 0.16053332388401031, + -0.4200209379196167, + 0.11626137048006058, + -0.2655887305736542, + 0.22083480656147003, + -0.2490333467721939, + 0.41136959195137024, + 0.3822364807128906, + -0.2349826842546463, + 0.026200085878372192, + 0.03188640624284744, + 0.2639707028865814, + 0.140677347779274, + -0.23416881263256073, + 0.2829485833644867, + -0.21638703346252441 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_007.json b/src/benchmark/output/results/results_graph_007.json new file mode 100644 index 0000000..6caecfd --- /dev/null +++ b/src/benchmark/output/results/results_graph_007.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 58-year-old Chinese male who presented for a physical examination on April 20, 2020. He has a smoking history of over 7 years, with an average of 20-30 cigarettes per day, and had abstained from smoking for nearly 30 years.\n\n**Timeline of Diagnoses:**\n\n1. **April 20, 2020:** The patient presented asymptomatic, with no cough, sputum, hemoptysis, chest pain, or dyspnea. A chest CT revealed a 4.0 cm x 3.4 cm mass in the inferior lobe of the right lung, with swollen and fused lymph nodes in the hilum and mediastinum.\n2. **May 2, 2020:** The diagnosis of stage IIIA (T2aN2M0) lung adenocarcinoma was confirmed.\n3. **May 20, 2020:** Alectinib therapy was initiated at 600 mg twice daily following a multidisciplinary team discussion for potentially resectable NSCLC with ALK rearrangement.\n\n**Timeline of Treatments:**\n\n1. **May 20, 2020:** Initiation of alectinib therapy.\n2. **Unknown date (after 4 months):** A chest CT scan was performed after 4 months of alectinib therapy, showing shrinkage of the primary tumor and a 1.1 cm x 0.6 cm nodule in the inferior lobe of the right lung.\n\n**Outcomes:**\n\nThe patient's treatment with alectinib has resulted in partial response, as evidenced by the shrinkage of the primary tumor and the development of a new nodule. The patient remains on treatment, and further follow-up is required to assess the efficacy of the therapy and monitor for any signs of disease progression.\n\n**Additional Notes:**\n\nThe patient's NGS results revealed ELMOD3-ALK (E8: A20) fusion at 41.23% abundance and EML4-ALK (E13: A20) double-ALK fusion at 68.21% abundance, confirming the presence of ALK rearrangement in the tumor tissue. The patient's CEA levels are not reported.\n\nIn conclusion, this patient has been diagnosed with stage IIIA lung adenocarcinoma and is currently undergoing treatment with alectinib. While the partial response to therapy is encouraging, further follow-up is necessary to assess the long-term efficacy of the treatment and monitor for any signs of disease progression.", + "bertscore": { + "precision": [ + 0.6810472011566162 + ], + "recall": [ + 0.7104792594909668 + ], + "f1": [ + 0.6954519748687744 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 7, + "edge_count": 6, + "avg_in_degree": 0.8571428571428571, + "density": 0.14285714285714285 + }, + "trajectory_embedding": [ + 0.34632283449172974, + 0.13255642354488373, + -0.16146747767925262, + 0.06857442855834961, + -0.053984127938747406, + -0.0689462199807167, + 0.14064376056194305, + 0.2152150720357895, + 0.37596216797828674, + -0.42233654856681824, + -0.13927848637104034, + 0.08689076453447342, + -0.6545354127883911, + 0.01794014871120453, + -0.3974427878856659, + 0.21673455834388733, + 0.03596607223153114, + 0.282396137714386, + 0.07912762463092804, + -0.21548102796077728, + -0.4564354717731476, + 0.0973014160990715, + -0.3728351891040802, + -0.10991263389587402, + 0.21367859840393066, + -0.11565183103084564, + 0.46477219462394714, + 0.5114681124687195, + 0.199381485581398, + 0.307439386844635, + 0.11510273069143295, + 0.07371513545513153, + 0.042246997356414795, + 0.10649548470973969, + -0.23146000504493713, + 0.22565957903862, + 0.18104961514472961, + 0.3094044625759125, + -0.056192945688962936, + 0.02726457454264164, + -0.09899432212114334, + -0.003670332720503211, + 0.7646036148071289, + 0.3114856779575348, + 0.48961538076400757, + -0.6004807353019714, + 0.016522962599992752, + 0.41916465759277344, + -0.5135390758514404, + -0.186994269490242, + 0.11330743879079819, + 0.7531782984733582, + 0.5578981041908264, + -0.08171800523996353, + 0.4931648373603821, + -0.12142842262983322, + -0.3848889172077179, + -0.06053968891501427, + -0.11271004378795624, + 0.09480737149715424, + 0.0074682957492768764, + -0.0980970486998558, + 0.21625415980815887, + -0.07251524180173874, + -0.20488722622394562, + -0.23675839602947235, + -0.13235799968242645, + 0.004237169865518808, + -0.02240622043609619, + -0.3877705931663513, + -0.17664487659931183, + -0.19140028953552246, + -0.004209420643746853, + 0.19125621020793915, + 0.17009125649929047, + -0.23860134184360504, + 0.36604657769203186, + 0.08724112808704376, + 0.08363865315914154, + 0.13477301597595215, + 0.08571993559598923, + -0.12648576498031616, + 0.14050470292568207, + 0.2407083511352539, + -0.32378503680229187, + 0.2219134271144867, + -0.0017401257064193487, + -0.09653002768754959, + -0.3067910671234131, + 0.06916661560535431, + 0.2701018750667572, + -0.24032466113567352, + -0.16102221608161926, + -0.16938550770282745, + 0.07037699967622757, + 0.15551796555519104, + 0.22664904594421387, + 0.37320223450660706, + 0.9206088781356812, + 0.020441245287656784, + 0.25928106904029846, + 0.18093964457511902, + 0.20001861453056335, + 0.13743962347507477, + 0.4313031733036041, + -0.20201943814754486, + 0.27726855874061584, + -0.37737804651260376, + 0.1108958050608635, + 0.5044432878494263, + 0.034018050879240036, + -0.10582584887742996, + -0.10786550492048264, + -0.285695880651474, + 0.07052969932556152, + 0.12992320954799652, + -0.1073002815246582, + 0.18021489679813385, + 0.2272896021604538, + -0.4946577250957489, + -0.06874880194664001, + 0.053847309201955795, + 0.38674196600914, + 0.26050421595573425, + -0.4407788813114166, + 0.0307450108230114, + -0.12287396937608719, + 0.04365866258740425, + 0.035397835075855255, + 0.06575658172369003, + -0.5081478953361511, + -0.14883017539978027, + -0.01828754134476185, + 0.16226984560489655, + -0.1292199045419693, + 0.3322567045688629, + -0.352784126996994, + -0.06846196949481964, + -1.1467586755752563, + 0.14150294661521912, + -0.35074302554130554, + -0.08152854442596436, + 0.058214545249938965, + -0.33657822012901306, + -0.27162057161331177, + -0.16385789215564728, + -0.1922508180141449, + 0.18805156648159027, + -0.14898982644081116, + -0.1907767802476883, + -0.018739299848675728, + 0.0241533275693655, + 0.10213565826416016, + 0.3388950526714325, + 0.06684867292642593, + 0.09704535454511642, + 0.04026297107338905, + 0.22388260066509247, + 0.19154810905456543, + -0.21175767481327057, + -0.06596600264310837, + 0.29928058385849, + 0.023883836343884468, + 0.016106462106108665, + 0.03622102737426758, + -0.652101457118988, + 0.14782443642616272, + -0.22757966816425323, + 0.09344861656427383, + 0.13462352752685547, + -0.09652338922023773, + 0.05251036211848259, + -0.36391252279281616, + 0.5542654395103455, + -0.021111836656928062, + 0.3859107792377472, + -0.1745777428150177, + -0.05616386607289314, + -0.09968718141317368, + 0.13040867447853088, + -0.04929199069738388, + -0.05909138545393944, + 0.5792575478553772, + 0.2081926167011261, + -0.4119703769683838, + 0.22170796990394592, + 0.5314750075340271, + -0.217849999666214, + 0.018375864252448082, + -0.05288035422563553, + 0.5090137124061584, + -0.2639523446559906, + 0.34441664814949036, + -0.48156923055648804, + 0.043778784573078156, + 0.17637112736701965, + -0.24536021053791046, + -0.214883491396904, + 0.15299423038959503, + -0.18543457984924316, + 0.13353310525417328, + 0.059175796806812286, + -0.42381808161735535, + 0.14562539756298065, + 0.18831917643547058, + -0.15437491238117218, + 0.14858554303646088, + 0.09433804452419281, + 0.021166671067476273, + -0.10624085366725922, + -0.2271008938550949, + 0.19631457328796387, + 0.12351208180189133, + 0.2053762972354889, + 0.12965740263462067, + -0.4027119278907776, + 0.268777459859848, + -0.055202044546604156, + -0.1911349594593048, + 0.07801239937543869, + -0.058668557554483414, + -0.19082598388195038, + 0.2597486972808838, + 0.046251896768808365, + -0.4082432687282562, + 0.13291774690151215, + 0.22084590792655945, + 0.253616064786911, + 0.11834321171045303, + -0.056760311126708984, + 0.05113843083381653, + -0.18232157826423645, + 0.3190477788448334, + -0.047857675701379776, + -0.24504569172859192, + -0.31638088822364807, + 0.20518624782562256, + -0.2550453245639801, + -0.19599619507789612, + 0.45776885747909546, + -0.2817407250404358, + -0.1649864763021469, + 0.11414431035518646, + -0.31051796674728394, + -0.06410244107246399, + -0.05414607375860214, + -0.0987599566578865, + 0.3260372281074524, + 0.038238201290369034, + 0.23180630803108215, + 0.24067114293575287, + -0.24413955211639404, + 0.18034419417381287, + -0.35002684593200684, + -0.2675524652004242, + -0.28777843713760376, + -0.15203669667243958, + -0.2569221258163452, + -0.502211332321167, + 0.028952045366168022, + 0.1422329694032669, + -0.19708609580993652, + 0.15137410163879395, + -0.3218376934528351, + -0.17026712000370026, + -0.06560563296079636, + 0.0026329681277275085, + 0.17039036750793457, + -0.3414532244205475, + 0.16003188490867615, + -0.3142453134059906, + -0.22482971847057343, + -0.14486517012119293, + 0.05717916041612625, + 0.17858967185020447, + 0.008025292307138443, + -0.1782718002796173, + 0.06522785872220993, + 0.17299745976924896, + -0.35594063997268677, + -0.26811760663986206, + -0.0870235338807106, + -0.3093550205230713, + 0.1003846526145935, + -0.1752350777387619, + 0.2492910772562027, + 0.30772900581359863, + 0.056921329349279404, + 0.22895820438861847, + 0.4130989611148834, + 0.4247635006904602, + 0.11066063493490219, + -0.028021035715937614, + 0.10072942078113556, + -0.04860067367553711, + 0.02282506786286831, + -0.4291365444660187, + 0.18790915608406067, + -0.09323705732822418, + 0.05062669515609741, + 0.09998495131731033, + 0.2546255588531494, + 0.1829005777835846, + -0.38708922266960144, + -0.12896110117435455, + 0.49586600065231323, + 0.13936150074005127, + 0.0028288024477660656, + 0.1399322897195816, + 0.26460906863212585, + 0.5125473737716675, + 0.012328228913247585, + -0.06001440808176994, + 0.15023374557495117, + -0.331268846988678, + -0.2625787556171417, + -0.0582139678299427, + 0.0780731588602066, + 0.3200647234916687, + -0.13212020695209503, + -0.0664762482047081, + 0.1200450137257576, + -0.039581023156642914, + -0.18453292548656464, + -0.0205280389636755, + -0.03259355574846268, + -0.022378528490662575, + -0.2135610729455948, + 0.16477321088314056, + -0.1177186369895935, + 0.020337354391813278, + 0.4477369487285614, + -0.23601080477237701, + -0.20698000490665436, + 0.25482335686683655, + -0.1178610771894455, + -0.4280704855918884, + 0.3759384751319885, + -0.20326055586338043, + 0.09865853935480118, + 0.3146040737628937, + -0.22686339914798737, + -0.04431885480880737, + 0.04189407452940941, + 0.24962091445922852, + -0.1399933248758316, + 0.07818048447370529, + -0.13080723583698273, + -0.0223658736795187, + 0.10581879317760468, + 0.6017864346504211, + 0.17141400277614594, + 0.11439137905836105, + 0.4817686378955841, + 0.04856312274932861, + -0.3279663026332855, + 0.01271877158433199, + -0.0015516068087890744, + 0.3048696517944336, + -0.14525774121284485, + -0.0855211615562439, + -0.22864116728305817, + 0.15198580920696259, + 0.02848448045551777, + -0.2400398552417755, + 0.032943349331617355, + 0.11586856096982956, + -0.07472366839647293, + 0.03158846125006676, + 0.31529170274734497, + 0.3244169354438782, + 0.09684034436941147, + 0.5443024039268494, + 0.04810034856200218, + -0.0671914741396904, + 0.39355477690696716, + -0.1454528421163559, + 0.19794189929962158, + -0.1559365689754486, + -0.18007461726665497, + -0.3979979157447815, + 0.0789010301232338, + -0.17988288402557373, + -0.08295933902263641, + 0.014375852420926094, + 0.05476394295692444, + 0.055615782737731934, + -0.22319602966308594, + 0.2742428779602051, + -0.11870920658111572, + 0.12124725431203842, + 0.060055527836084366, + 0.4022494852542877, + -0.14758551120758057, + -0.3292035758495331, + 0.13684237003326416, + 0.05052774399518967, + 0.23615503311157227, + -0.04939810559153557, + -0.10074607282876968, + -0.24896904826164246, + 0.3973776400089264, + -0.003953867591917515, + 0.06291907280683517, + 0.07598952203989029, + -0.06714044511318207, + -0.23038236796855927, + -0.4332585334777832, + -0.04678770527243614, + -0.18224099278450012, + -0.1298196017742157, + -0.13972225785255432, + 0.08444498479366302, + -0.16851358115673065, + -0.16012048721313477, + 0.0963839516043663, + 0.20963777601718903, + 0.28625813126564026, + -0.06501932442188263, + 0.0034833166282624006, + 0.1900634467601776, + 0.061782028526067734, + 0.22969529032707214, + -0.2658024728298187, + 0.14898903667926788, + 0.04798702523112297, + -0.19122453033924103, + -0.0819980725646019, + 0.013480189256370068, + -0.2811538875102997, + 0.021630926057696342, + 0.12116018682718277, + 0.1726771742105484, + -0.03500344231724739, + -0.014292880892753601, + 0.09051401168107986, + 0.3177947998046875, + -0.3903009593486786, + -0.0073287165723741055, + 0.361543208360672, + -0.06547866016626358, + 0.4194928705692291, + -0.02773270569741726, + -0.3815111219882965, + -0.07328487932682037, + -0.1680523008108139, + -0.34097257256507874, + 0.17753945291042328, + 0.19097281992435455, + -0.027399586513638496, + -0.07271251827478409, + -0.03372975438833237, + 0.013569866307079792, + -0.026740116998553276, + 0.23957674205303192, + -0.1819392442703247, + 0.12571711838245392, + 0.026177706196904182, + -0.3643864691257477, + -0.18141809105873108, + -0.2844131886959076, + -0.2283564954996109, + -0.3698243498802185, + 0.3565422594547272, + 0.22168263792991638, + -0.11805517226457596, + 0.1532808542251587, + 0.18205618858337402, + -0.36349374055862427, + -0.24219787120819092, + 0.16874206066131592, + -0.22768817842006683, + 0.5593675971031189, + 0.07186911255121231, + -0.1522439420223236, + 0.18085047602653503, + -0.1891041249036789, + 0.2411697953939438, + 0.0587523877620697, + 0.12903490662574768, + 0.3185088634490967, + 0.24071983993053436, + 0.08876078575849533, + 0.6035990118980408, + 0.23192887008190155, + -0.15383002161979675, + 0.20910513401031494, + -0.08697020262479782, + -0.06550946086645126, + -0.18487422168254852, + -0.22437021136283875, + 0.43880635499954224, + -0.4509376883506775, + -0.0052852630615234375, + 0.11509265750646591, + 0.23703017830848694, + -0.35235705971717834, + -0.19191710650920868, + 0.036525748670101166, + -0.08356952667236328, + -0.08595328032970428, + -0.2544604241847992, + -0.26742759346961975, + 0.07365290075540543, + -0.39135414361953735, + 0.005402126349508762, + 0.17047245800495148, + 0.40175893902778625, + 0.1593630462884903, + 0.04142970219254494, + -0.25165578722953796, + -0.5444652438163757, + 0.13095541298389435, + 0.2602980434894562, + 0.1049882248044014, + -0.008003605529665947, + -0.12000119686126709, + 0.2759704887866974, + 0.439725399017334, + -0.05441727861762047, + 0.08230762183666229, + 0.11778289824724197, + -0.08327669650316238, + 0.07409663498401642, + 0.1324022114276886, + -0.1600790023803711, + -0.09167666733264923, + -0.3979511260986328, + 0.0816434845328331, + -0.29025760293006897, + -0.34616923332214355, + 0.1855783760547638, + -0.26658546924591064, + -0.5087555050849915, + -0.26514577865600586, + 0.09068584442138672, + -0.33557799458503723, + -0.20998744666576385, + 0.2478923797607422, + 0.4804439842700958, + 0.1670471727848053, + -0.17141270637512207, + 0.023544544354081154, + -0.4834950566291809, + -0.2555929720401764, + 0.24668677151203156, + -0.0199048463255167, + -0.05564726144075394, + -0.006191185675561428, + 0.35192832350730896, + 0.47485417127609253, + 0.2897241413593292, + -0.3993774354457855, + 0.032233450561761856, + 0.343721866607666, + 0.25937968492507935, + -0.17476844787597656, + -10.769038200378418, + -0.13643351197242737, + -0.18618904054164886, + 0.49261242151260376, + -0.16529743373394012, + -0.01580941304564476, + 0.061412420123815536, + 0.07388816028833389, + 0.283748596906662, + 0.29226207733154297, + -0.2359391748905182, + -0.06629572808742523, + 0.19578556716442108, + 0.27029597759246826, + 0.05834921449422836, + -0.05005519837141037, + -0.23387077450752258, + 0.11344098299741745, + -0.00246788514778018, + 0.07369377464056015, + 0.2085832804441452, + 0.3615915775299072, + -0.16010703146457672, + 0.29699602723121643, + 0.07131291180849075, + -0.2032707780599594, + -0.18129612505435944, + 0.3942018151283264, + 0.18683992326259613, + -0.3789488673210144, + 0.31899547576904297, + 0.18245799839496613, + -0.11413189023733139, + 0.09642170369625092, + -0.012330898083746433, + -0.043496739119291306, + -0.14220942556858063, + 0.017735633999109268, + 0.14798550307750702, + -0.11324461549520493, + 0.04839903488755226, + -0.3642114996910095, + 0.27072250843048096, + 0.2930915951728821, + -0.1902686506509781, + -0.38970789313316345, + -0.25576385855674744, + -1.5267226696014404, + 0.35992178320884705, + 0.28119486570358276, + 0.445952832698822, + 0.08364830911159515, + 0.29149648547172546, + 0.15386874973773956, + -0.40435388684272766, + 0.03021029569208622, + -0.26856571435928345, + 0.14219024777412415, + 0.06614173203706741, + -0.08421572297811508, + 0.15845561027526855, + -0.10110180079936981, + 0.5034095644950867, + -0.24883361160755157, + -0.20588038861751556, + 0.10210978239774704, + 0.050570808351039886, + -0.11698190122842789, + -0.23608842492103577, + -0.5109882950782776, + -0.4893497824668884, + -0.023171523585915565, + -0.01904931664466858, + 0.03591518849134445, + 0.49239763617515564, + -0.0677020251750946, + -0.3856819272041321, + 0.1646692007780075, + 0.14587971568107605, + 0.3274044394493103, + 0.1620274931192398, + -0.016097305342555046, + 0.19069872796535492, + -0.12335796654224396, + -0.15754465758800507, + -0.06534690409898758, + 0.005380036775022745, + 0.5823365449905396, + -0.010449043475091457, + -0.011117198504507542, + -0.08787759393453598, + 0.3873448967933655, + -0.07530701905488968, + -0.20183464884757996, + -0.4622398316860199, + 0.003994079772382975, + 0.12430695444345474, + 0.03902101516723633, + -0.06319894641637802, + -0.23457841575145721, + -0.176997572183609, + -0.09998750686645508, + 0.10038237273693085, + -0.5920015573501587, + -0.2858719825744629, + 0.1841582953929901, + 0.07055030763149261, + 0.2681312561035156, + 0.09098577499389648, + 0.006964609958231449, + -0.04632188007235527, + -0.12880419194698334, + 0.3875395953655243, + 0.591077983379364, + 0.3302749693393707, + -0.13473956286907196, + -0.11325649917125702, + -0.11139772087335587, + -0.22241456806659698, + 0.06057487055659294, + 0.3546738028526306, + -0.02666267566382885, + 0.3742377460002899, + 0.508595883846283, + 0.0977615937590599, + -0.03895801305770874, + 0.9067800641059875, + -0.32107916474342346, + 0.2313782125711441, + -0.1612183004617691, + 0.0779300406575203, + 0.017649242654442787, + -0.23685379326343536, + 0.02110827900469303, + 0.4051358997821808, + -0.1702803522348404, + 0.6364380121231079, + 0.13370411098003387, + -0.5057786703109741, + 0.04034915566444397, + -0.26939648389816284, + 0.5029028058052063, + 0.29749467968940735, + 0.3397000730037689, + -0.14253097772598267, + -0.29288747906684875, + -0.37792688608169556, + -0.07253073155879974, + -0.4054388105869293, + -0.2549642026424408, + -0.18917761743068695, + 0.21658183634281158, + -0.02134360559284687, + -0.2323160022497177, + 0.3579040467739105, + 0.13971196115016937, + -0.19356374442577362, + -0.2358325570821762, + -0.5030080676078796, + -0.006258704699575901, + 0.24298062920570374, + 0.6727714538574219, + 0.05212661251425743, + -0.1169188842177391, + -0.15262660384178162, + 0.2157876342535019, + -0.14499004185199738, + 0.18440701067447662, + 0.10109228640794754, + -0.041441015899181366, + -0.5617343783378601, + 0.06759311258792877, + 0.2167104035615921, + -0.40405821800231934, + -0.183258056640625, + -0.22895583510398865, + -0.06816086918115616, + -0.02269592508673668, + -0.16934062540531158, + 0.14488928020000458, + 0.25242525339126587, + -0.05369926244020462, + 0.06188229098916054, + -0.35344547033309937, + 0.0028270366601645947, + 0.23596127331256866, + 0.13236187398433685, + 0.15592189133167267, + -0.12496714293956757, + -0.37063127756118774, + -0.39475420117378235, + 0.1129080057144165, + -0.21878959238529205, + -0.14842180907726288, + 0.24278025329113007, + 0.23198676109313965, + -0.3166256844997406, + 0.07222945988178253, + -0.2306237518787384, + -0.01905098371207714, + -0.24526868760585785, + 0.31020474433898926, + 0.37052956223487854, + -0.15445652604103088, + 0.1092943325638771, + -0.0847192034125328, + 0.268240362405777, + 0.19493219256401062, + -0.23118934035301208, + 0.2652192711830139, + -0.2649229168891907 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_008.json b/src/benchmark/output/results/results_graph_008.json new file mode 100644 index 0000000..28f3ac2 --- /dev/null +++ b/src/benchmark/output/results/results_graph_008.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 37-year-old female. Her medical history includes untreated congenital heart disease (patent ductus arteriosus) for 20 years and hypertension for half a year, with irregular use of valsartan.\n\n**Timeline of Diagnoses:**\n\n1. **Step 1:** The patient reported intermittent cough and slight chest discomfort for 3 months and painless cervical mass for 1 month.\n2. **Step 2:** A left cervical lymph node puncture was performed one week ago, which showed granulomatous inflammation with caseous necrosis and Langhans' giant cells observed.\n3. **Step 3:** The patient's past medical history of untreated congenital heart disease and hypertension became relevant.\n4. **Step 4:** Physical examination revealed a well-defined, poorly mobile, non-tender mass on the left clavicle without surface ulceration or redness.\n5. **Step 5:** Laboratory tests showed normal blood CEA, squamous cell carcinoma antigen, cytokeratin 19 fragment, and NSE levels, with no evidence of cancer in sputum AFB and GeneXpert MTB/RIF.\n6. **Step 6:** EB virus blood test results indicated increased antibody titers for capsid antigen IgG antibody, early antigen IgM antibody, and core antigen IgG antibody.\n7. **Step 7:** Ultrasound-guided left supraclavicular lymph node puncture was performed, showing focal distribution of epithelioid cells and multinucleated giant cells suggestive of granulomatous inflammation.\n8. **Step 8:** Histopathology confirmed the presence of granuloma.\n\n**Timeline of Treatments:**\n\n1. **Step 2:** Left cervical lymph node puncture was performed due to intermittent cough, slight chest discomfort, and painless cervical mass.\n2. **Step 7:** Ultrasound-guided left supraclavicular lymph node puncture was performed as part of the diagnostic workup.\n\n**Outcomes:**\n\n1. The patient's diagnosis of granuloma was confirmed through histopathology.\n2. No evidence of cancer was found in sputum AFB and GeneXpert MTB/RIF, ruling out tuberculosis or other infections.\n3. EB virus blood test results indicated increased antibody titers, suggesting a possible infection or autoimmune response.\n\n**Conclusion:**\nThe patient's diagnosis of granuloma is likely related to her underlying medical history of untreated congenital heart disease and hypertension. Further investigation into the cause of granulomatous inflammation is necessary to determine the best course of treatment.", + "bertscore": { + "precision": [ + 0.6920709609985352 + ], + "recall": [ + 0.6939922571182251 + ], + "f1": [ + 0.6930302977561951 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 2, + "node_count": 9, + "edge_count": 7, + "avg_in_degree": 0.7777777777777778, + "density": 0.09722222222222222 + }, + "trajectory_embedding": [ + 0.32178184390068054, + 0.0587812140583992, + -0.04031328856945038, + 0.1223248541355133, + 0.1420980840921402, + 0.1322871595621109, + 0.09575825184583664, + 0.21854537725448608, + 0.3668004274368286, + -0.415396511554718, + -0.23321908712387085, + 0.043559107929468155, + -0.6951784491539001, + -0.018354633823037148, + -0.3261258900165558, + 0.10526271909475327, + 0.0806720182299614, + 0.30150094628334045, + 0.05325983837246895, + -0.17181721329689026, + -0.49571317434310913, + 0.2012018859386444, + -0.5006043314933777, + -0.11711462587118149, + 0.13844826817512512, + -0.07041510194540024, + 0.3694150745868683, + 0.4067281484603882, + 0.32587283849716187, + 0.30198124051094055, + 0.10556425899267197, + 0.02767544612288475, + -0.006537702400237322, + 0.09393756836652756, + -0.18413406610488892, + 0.29104113578796387, + 0.30991673469543457, + 0.39546114206314087, + -0.19016744196414948, + 0.01576823741197586, + -0.08541415631771088, + -0.0035670134238898754, + 0.8345164060592651, + 0.3533182740211487, + 0.5232931971549988, + -0.6903773546218872, + -0.10210395604372025, + 0.4474469721317291, + -0.5333614945411682, + -0.238445445895195, + 0.13270704448223114, + 0.838481605052948, + 0.42854592204093933, + -0.05961171165108681, + 0.45818471908569336, + -0.09204962104558945, + -0.28622737526893616, + -0.2482616901397705, + -0.34262704849243164, + 0.135522723197937, + 0.06123517453670502, + -0.2093307375907898, + 0.19139666855335236, + -0.11058877408504486, + -0.18178412318229675, + -0.06930741667747498, + -0.13635903596878052, + -0.10343820601701736, + -0.07338438183069229, + -0.4254007935523987, + -0.27045580744743347, + -0.183482363820076, + -0.22135131061077118, + 0.06227385997772217, + 0.1561308354139328, + -0.09068230539560318, + 0.28921377658843994, + -0.10375780612230301, + 0.1113702729344368, + 0.1205735057592392, + -0.05523458495736122, + -0.04171212017536163, + 0.12852293252944946, + 0.2609008848667145, + -0.459573894739151, + 0.09324205666780472, + -0.057778775691986084, + -0.050998467952013016, + -0.3697819709777832, + 0.13482025265693665, + 0.21746261417865753, + -0.3303653597831726, + -0.013938731513917446, + -0.19032444059848785, + -0.012671641074120998, + 0.08839395642280579, + 0.37868306040763855, + 0.23950256407260895, + 0.9266045689582825, + 0.009919242933392525, + 0.21141479909420013, + 0.26653969287872314, + 0.2811274528503418, + 0.1162969172000885, + 0.4665778875350952, + -0.03941546753048897, + 0.17238283157348633, + -0.3564433455467224, + 0.15530797839164734, + 0.3903099596500397, + -0.07272467017173767, + -0.25950583815574646, + -0.0656658187508583, + -0.231586754322052, + -0.04168401286005974, + 0.12029455602169037, + -0.1913430094718933, + 0.0871143564581871, + 0.2444240003824234, + -0.35754671692848206, + -0.032186251133680344, + -0.054842062294483185, + 0.28438231348991394, + 0.3507777750492096, + -0.34075018763542175, + 0.0023666603956371546, + -0.14281146228313446, + 0.022844364866614342, + 0.01721859537065029, + 0.10938265919685364, + -0.5908386707305908, + -0.21993988752365112, + 0.0467560812830925, + 0.21187233924865723, + -0.20345015823841095, + 0.19650402665138245, + -0.4655933976173401, + 0.10103397816419601, + -1.1829770803451538, + 0.24051533639431, + -0.2856246829032898, + -0.03343421220779419, + 0.05990317836403847, + -0.46977800130844116, + -0.2836901545524597, + -0.2557894289493561, + -0.13383887708187103, + 0.08556684851646423, + -0.02390054054558277, + -0.05300867557525635, + -0.005133193451911211, + 0.05319741740822792, + 0.23253577947616577, + 0.31148284673690796, + 0.1872185617685318, + 0.05715598165988922, + 0.04053667560219765, + 0.242471382021904, + 0.210669606924057, + -0.12356742471456528, + -0.18174877762794495, + 0.3470229208469391, + 0.1284300982952118, + 0.03684166446328163, + 0.07123604416847229, + -0.7283098101615906, + 0.21158723533153534, + -0.21140918135643005, + 0.16918735206127167, + 0.08621041476726532, + -0.06987984478473663, + 0.17207151651382446, + -0.22078922390937805, + 0.5830124020576477, + 0.1587946116924286, + 0.368658185005188, + -0.09451908618211746, + -0.16905517876148224, + 0.049191370606422424, + 0.2360401749610901, + 0.0680384710431099, + -0.16712987422943115, + 0.5529953837394714, + 0.1420280635356903, + -0.4020548164844513, + 0.1896764636039734, + 0.4466969668865204, + -0.21751484274864197, + -0.1401064544916153, + -0.12103942781686783, + 0.3518214821815491, + -0.43472009897232056, + 0.39658674597740173, + -0.2795937955379486, + -0.0344034768640995, + 0.09301462769508362, + -0.3150613307952881, + -0.13218411803245544, + 0.12559378147125244, + -0.09989943355321884, + 0.2460460364818573, + 0.16068203747272491, + -0.21281592547893524, + 0.2937512695789337, + 0.019342144951224327, + -0.05292874574661255, + 0.3754124641418457, + 0.11231725662946701, + 0.0945693701505661, + -0.024625606834888458, + -0.09737903624773026, + 0.12437456101179123, + -0.04436493292450905, + 0.11820510029792786, + 0.08406633138656616, + -0.2726324796676636, + 0.3474253714084625, + -0.09621790796518326, + -0.2518599033355713, + 0.21834029257297516, + -0.17659656703472137, + -0.2798433303833008, + 0.22201639413833618, + -0.05844061076641083, + -0.4587531089782715, + 0.14475703239440918, + 0.21445783972740173, + 0.1950705349445343, + 0.1425207108259201, + -0.03384677693247795, + -0.06995048373937607, + -0.33688509464263916, + 0.39714691042900085, + -0.13234379887580872, + -0.1534186452627182, + -0.23380514979362488, + 0.17687591910362244, + -0.16212034225463867, + -0.13440465927124023, + 0.41018977761268616, + -0.08066099882125854, + -0.09884938597679138, + 0.02423275262117386, + -0.17881669104099274, + -0.04277099296450615, + -0.24749310314655304, + 0.12916605174541473, + 0.2636314630508423, + 0.1299065202474594, + 0.29293444752693176, + 0.18072935938835144, + -0.16630510985851288, + 0.2095223218202591, + -0.274707555770874, + -0.266833633184433, + -0.347224622964859, + -0.17040622234344482, + -0.047463927417993546, + -0.5827317237854004, + 0.2105824202299118, + -0.08439192175865173, + -0.07409091293811798, + 0.02815353497862816, + -0.22386428713798523, + -0.18218082189559937, + -0.015736659988760948, + -0.04946249723434448, + 0.12370084226131439, + -0.1376749724149704, + 0.07068774104118347, + -0.31323838233947754, + -0.23025411367416382, + -0.17107626795768738, + 0.05153964087367058, + 0.24963563680648804, + -0.016446657478809357, + -0.2559627294540405, + 0.09753367304801941, + -0.009258200414478779, + -0.3847027122974396, + -0.3331104516983032, + 0.06476327776908875, + -0.24909496307373047, + 0.23316659033298492, + -0.0756588876247406, + 0.22949011623859406, + 0.39408019185066223, + 0.03471510112285614, + 0.13951560854911804, + 0.43903475999832153, + 0.4437906742095947, + 0.07818680256605148, + 0.1046346053481102, + -0.020075002685189247, + -0.07496032863855362, + -0.008577846921980381, + -0.34209126234054565, + 0.2878102660179138, + 0.18816518783569336, + -0.08333851397037506, + 0.1847076565027237, + 0.3222832679748535, + 0.07663938403129578, + -0.5163805484771729, + -0.10820431262254715, + 0.5252039432525635, + 0.16367141902446747, + 0.0774790495634079, + 0.09702352434396744, + 0.29092395305633545, + 0.5684838891029358, + -0.05465574935078621, + -0.021250128746032715, + 0.1918373703956604, + -0.11625722795724869, + -0.137563094496727, + 0.10620621591806412, + -0.001004664460197091, + 0.16058844327926636, + -0.14757229387760162, + -0.08134961128234863, + 0.18731115758419037, + -0.08642522245645523, + -0.22128160297870636, + -0.12657791376113892, + -0.13462279736995697, + 0.044050559401512146, + -0.3199692964553833, + 0.36030614376068115, + -0.11800796538591385, + -0.014752212911844254, + 0.5300659537315369, + -0.1476159244775772, + -0.3223278820514679, + 0.22379374504089355, + -0.06419085711240768, + -0.4758998453617096, + 0.3226974308490753, + -0.20392075181007385, + 0.011337722651660442, + 0.27262577414512634, + -0.21782363951206207, + -0.08845141530036926, + -0.018287695944309235, + 0.3063170313835144, + -0.020608382299542427, + -0.12740080058574677, + -0.008797626942396164, + -0.009513621218502522, + 0.2591574490070343, + 0.612575352191925, + 0.16324354708194733, + 0.2025555968284607, + 0.5985039472579956, + -0.009529554285109043, + -0.3360339403152466, + -0.032654378563165665, + -0.07462343573570251, + 0.26602503657341003, + -0.23274673521518707, + -0.05679423362016678, + -0.21113090217113495, + 0.06130954995751381, + -0.037814680486917496, + -0.3433321714401245, + 0.05501053109765053, + 0.11750365793704987, + 0.07155635952949524, + -0.06659450381994247, + 0.276471883058548, + 0.1853334903717041, + 0.00012623269867617637, + 0.38866889476776123, + 0.026428937911987305, + -0.17691045999526978, + 0.27471697330474854, + -0.09421806037425995, + 0.348401814699173, + -0.047985926270484924, + -0.35829392075538635, + -0.40219125151634216, + 0.017191890627145767, + -0.287667453289032, + -0.2931564748287201, + -0.006540605332702398, + -0.06754858046770096, + 0.006069008726626635, + -0.18329453468322754, + 0.14828670024871826, + -0.04169226810336113, + 0.17401623725891113, + 0.17856580018997192, + 0.4291289746761322, + -0.018275227397680283, + -0.28150978684425354, + 0.21720661222934723, + -0.012173552066087723, + -0.0008567787008360028, + -0.1284516155719757, + 0.02730163186788559, + -0.23550184071063995, + 0.39568161964416504, + 0.030560709536075592, + -0.059391021728515625, + 0.04127660021185875, + -0.07267840206623077, + -0.2133440375328064, + -0.5620805621147156, + -0.10165606439113617, + -0.09908498823642731, + 0.06438065320253372, + 0.07434544712305069, + 0.06772330403327942, + -0.21854114532470703, + -0.2298194319009781, + 0.07366134226322174, + 0.2848809063434601, + 0.18651369214057922, + -0.1377827525138855, + 0.05242909491062164, + 0.22165018320083618, + 0.07855748385190964, + 0.3990407884120941, + -0.23178161680698395, + 0.05214346945285797, + 0.1888972520828247, + -0.3208756446838379, + -0.10172249376773834, + -0.044798657298088074, + -0.2715843915939331, + -0.15131992101669312, + 0.1855420470237732, + 0.1645175814628601, + 0.0349091961979866, + 0.007298680022358894, + -0.07925812155008316, + 0.22184696793556213, + -0.45909982919692993, + -0.1025075614452362, + 0.3575679063796997, + 0.12284011393785477, + 0.5294378995895386, + -0.04689325392246246, + -0.4196237027645111, + -0.12507852911949158, + -0.023498430848121643, + -0.48307159543037415, + 0.06831827759742737, + 0.18486618995666504, + -0.14835722744464874, + -0.04832920432090759, + 0.041186146438121796, + -0.08373869955539703, + -0.10094965994358063, + 0.22338716685771942, + -0.046411603689193726, + 0.2210119217634201, + 0.09670628607273102, + -0.24205902218818665, + -0.061728160828351974, + -0.3234194815158844, + -0.38051843643188477, + -0.2765519917011261, + 0.33077049255371094, + 0.16808347404003143, + -0.05882269889116287, + 0.11807309091091156, + 0.01401209644973278, + -0.21194730699062347, + -0.23584502935409546, + 0.04901963472366333, + -0.18166571855545044, + 0.4985811412334442, + -0.04389837756752968, + -0.08017394691705704, + 0.1095072329044342, + -0.2545522451400757, + 0.10503782331943512, + 0.1339978277683258, + 0.11273174732923508, + 0.35173499584198, + 0.1856675148010254, + 0.07977791875600815, + 0.4892643690109253, + 0.11970542371273041, + -0.009819591417908669, + 0.172042578458786, + 0.0028777027036994696, + 0.012823116034269333, + -0.25553199648857117, + -0.17727917432785034, + 0.27531668543815613, + -0.27513158321380615, + -0.08250728249549866, + 0.14657293260097504, + 0.15222737193107605, + -0.3555891811847687, + -0.24886454641819, + 0.03017233870923519, + 0.0019182844553142786, + -0.11983786523342133, + -0.27462154626846313, + -0.21385988593101501, + 0.04064253717660904, + -0.29773756861686707, + -0.20546948909759521, + 0.25590476393699646, + 0.39466309547424316, + 0.21495464444160461, + 0.03933090344071388, + -0.11707663536071777, + -0.41989126801490784, + 0.13917756080627441, + 0.2889692783355713, + 0.06650194525718689, + 0.06463951617479324, + -0.21423029899597168, + 0.124488964676857, + 0.6269210577011108, + -0.09561538696289062, + 0.05140833556652069, + 0.04992810636758804, + -0.028386371210217476, + -0.030111422762274742, + 0.03585105761885643, + -0.07877829670906067, + -0.10415715724229813, + -0.3253501355648041, + 0.22535981237888336, + -0.3374183773994446, + -0.23110876977443695, + 0.16368120908737183, + -0.15909487009048462, + -0.43274354934692383, + -0.23980344831943512, + 0.312335342168808, + -0.20945435762405396, + -0.07988880574703217, + 0.12158122658729553, + 0.42453157901763916, + 0.11340466886758804, + -0.2019163817167282, + 0.222909614443779, + -0.6142799258232117, + -0.1839669942855835, + 0.1288950890302658, + -0.16853027045726776, + -0.03778260946273804, + 0.08082526177167892, + 0.25896501541137695, + 0.5084782242774963, + 0.358426570892334, + -0.29939937591552734, + 0.09308972954750061, + 0.3027191758155823, + 0.28485503792762756, + -0.1913285106420517, + -10.637735366821289, + 0.09545019268989563, + -0.2596852481365204, + 0.6284665465354919, + -0.12558770179748535, + -0.019234606996178627, + 0.10494551062583923, + 0.045418985188007355, + 0.1320284754037857, + 0.17745868861675262, + -0.23860372602939606, + 0.07438228279352188, + 0.3959399461746216, + 0.28593093156814575, + 0.028599023818969727, + -0.007402932271361351, + -0.282490074634552, + 0.1582685261964798, + -0.08721087872982025, + 0.26587122678756714, + 0.14465846121311188, + 0.5118622183799744, + -0.21978002786636353, + 0.37363201379776, + 0.03855099156498909, + -0.33037900924682617, + -0.2264271080493927, + 0.5745084881782532, + 0.172709122300148, + -0.4754544794559479, + 0.33281439542770386, + 0.2566337585449219, + -0.304614782333374, + 0.22838790714740753, + -0.10053606331348419, + -0.0964573323726654, + -0.0428738109767437, + 0.1445562243461609, + 0.206826314330101, + -0.052082404494285583, + -0.05296452343463898, + -0.2923671305179596, + 0.2264208197593689, + 0.26710742712020874, + -0.1356736719608307, + -0.3833749294281006, + -0.2867141366004944, + -1.5798529386520386, + 0.3151170015335083, + 0.33501821756362915, + 0.34017670154571533, + -0.02905278652906418, + 0.27190762758255005, + 0.24609988927841187, + -0.3265301585197449, + 0.015079895965754986, + -0.29252126812934875, + -0.016788644716143608, + 0.10301514714956284, + -0.031413931399583817, + 0.20614907145500183, + -0.1270168423652649, + 0.41353368759155273, + -0.16701680421829224, + -0.3021659553050995, + 0.0133744515478611, + 0.055997058749198914, + -0.0681668370962143, + -0.31388038396835327, + -0.5147495865821838, + -0.4927768111228943, + 0.012458733282983303, + 0.03655955195426941, + -0.05347471311688423, + 0.5857234597206116, + -0.06947802752256393, + -0.380942702293396, + 0.18310607969760895, + 0.010218213312327862, + 0.4450663924217224, + 0.2641662657260895, + -0.17969438433647156, + 0.21651965379714966, + -0.1935727894306183, + -0.2532018721103668, + -0.23166921734809875, + 0.09277978539466858, + 0.5229415893554688, + -0.043149542063474655, + -0.06301707029342651, + -0.04477791488170624, + 0.22806262969970703, + -0.05626372992992401, + -0.17599450051784515, + -0.4240625202655792, + 0.06488002836704254, + 0.07392842322587967, + 0.026791799813508987, + 0.1692909598350525, + -0.19362719357013702, + -0.21053653955459595, + -0.03502477705478668, + -0.012501033022999763, + -0.5527909994125366, + -0.4264358878135681, + 0.15655475854873657, + 0.1990380883216858, + 0.24487437307834625, + 0.13199962675571442, + 0.12365330755710602, + -0.056404273957014084, + -0.03628714755177498, + 0.3528117537498474, + 0.5215819478034973, + 0.15988637506961823, + -0.10803283005952835, + -0.07049331814050674, + -0.267477422952652, + -0.302575021982193, + 0.14412683248519897, + 0.44464942812919617, + -0.2073928862810135, + 0.20162945985794067, + 0.6935946941375732, + 0.019730815663933754, + -0.014449293725192547, + 0.920211672782898, + -0.3438548147678375, + 0.36203205585479736, + -0.14337018132209778, + 0.27485227584838867, + -0.05315638706088066, + -0.24085992574691772, + 0.13573333621025085, + 0.2705618441104889, + -0.2652859091758728, + 0.49344050884246826, + 0.219620943069458, + -0.35901862382888794, + 0.07334572076797485, + -0.2570989727973938, + 0.46759742498397827, + 0.22440187633037567, + 0.2695810794830322, + -0.10774626582860947, + -0.3553600609302521, + -0.3090141713619232, + 0.06284630298614502, + -0.3371935188770294, + -0.2083614468574524, + -0.19041165709495544, + 0.12273308634757996, + 0.05916270986199379, + -0.08029699325561523, + 0.31982535123825073, + 0.13016262650489807, + -0.04917954280972481, + -0.2898949384689331, + -0.5071355700492859, + -0.0888039767742157, + 0.1655799001455307, + 0.7769743204116821, + -0.004823592025786638, + -0.089121013879776, + -0.07563244551420212, + 0.1895747184753418, + -0.1521088182926178, + 0.11633741855621338, + 0.04279331862926483, + -0.04444596916437149, + -0.4504188001155853, + 0.25204789638519287, + 0.16403810679912567, + -0.3669571280479431, + -0.17002585530281067, + -0.25143080949783325, + -0.10692963004112244, + -0.197170227766037, + -0.16792333126068115, + 0.21416082978248596, + 0.28538626432418823, + -0.002483615418896079, + 0.06806439161300659, + -0.3846953213214874, + 0.1552981585264206, + 0.20944826304912567, + 0.20863336324691772, + 0.08073324710130692, + -0.2736304998397827, + -0.3032132387161255, + -0.5043969750404358, + 0.1798803210258484, + -0.2973431348800659, + -0.09343209862709045, + 0.2295827567577362, + 0.10146166384220123, + -0.3073643445968628, + -0.00600307947024703, + -0.1969331055879593, + 0.027428634464740753, + -0.262356162071228, + 0.36152341961860657, + 0.3324403762817383, + -0.24731598794460297, + 0.12492736428976059, + -0.05752915143966675, + 0.12010082602500916, + 0.15870201587677002, + -0.32285600900650024, + 0.17364966869354248, + -0.20896956324577332 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_009.json b/src/benchmark/output/results/results_graph_009.json new file mode 100644 index 0000000..b3d8964 --- /dev/null +++ b/src/benchmark/output/results/results_graph_009.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 73-year-old female who presented with bilateral chest wall discomfort, exertional breathlessness, and chronic fatigue in March 2025.\n\n**Timeline of Diagnoses:**\n\n1. **March 2025:** The patient's symptoms began, including bilateral chest wall discomfort, exertional breathlessness, and chronic fatigue.\n2. **April 2025 (Step 2):** Chest radiograph showed a left lung opacification, indicating the presence of an abnormality in the lung tissue.\n3. **May 2025 (Step 3):** CT and PET-CT scan confirmed a 53 mm avid left upper lobe mass with associated hilar and mediastinal lymphadenopathy (T3N2M0), which is indicative of cancerous cells.\n4. **June 2025 (Step 4):** Endobronchial ultrasound scan and biopsy (EBUS) sampling of station 11L confirmed lung adenocarcinoma metastasis, a type of non-small cell lung cancer.\n5. **July 2025 (Step 5):** Molecular testing showed 60% PD-L1 positivity, indicating the presence of a protein that can help the immune system recognize and attack cancer cells.\n6. **August 2025 (Step 6):** The patient consented to radical treatment with four weeks of radiotherapy dosed at 55 Gy/20 with concurrent chemotherapy.\n7. **September 2025 (Step 7):** Initial scan post radiotherapy showed a limited response to treatment, indicating that the cancer had not fully responded to the treatment.\n8. **October 2025 (Step 8):** Subsequent CT scan in a year showed that there was no tumor visible on axial images but there was apparent collapse of the left lung base.\n9. **November 2025 (Step 9):** Post radiotherapy imaging showed complete response to treatment, with two small bullae seen in the post aspect of the lower lobe.\n10. **December 2025 (Step 10):** Follow-up scan showed upward curving of the lower segmental bronchi and pulmonary vessels.\n11. **January 2026 (Step 11):** Imaging showed two small bullae initially seen in the post aspect of the lower lobe relocated to the upper zone anteriorly, with lung torsion with 180-degree rotation diagnosed.\n12. **February 2026 (Step 12):** Follow-up imaging 12 months after previous imaging demonstrated migration of the emphysematous bullae anteriorly and superiorly towards the apex of the lung.\n13. **March 2026 (Step 13):** CT imaging showed left lung base collapse and tapering/curved orientation of the lower lobe segmental bronchi and pulmonary vessels of the right lung, indicating twisting of the lobe.\n\n**Treatments:**\n\n* Radiotherapy with concurrent chemotherapy\n* Surgery to remove the tumor\n\n**Outcomes:**\n\n* The patient's cancer was diagnosed and treated, but unfortunately, the treatment did not completely eliminate the cancer.\n* The patient developed lung torsion with 180-degree rotation, which is a complication of radiotherapy.\n* Despite this complication, the patient remains asymptomatic and managed conservatively.\n\nThis case highlights the complexities of treating non-small cell lung cancer, particularly in older adults. While the patient's cancer was diagnosed and treated, the treatment did not completely eliminate the cancer, and the patient developed a significant complication. Further research is needed to improve treatment outcomes for patients with this type of cancer.", + "bertscore": { + "precision": [ + 0.6804789304733276 + ], + "recall": [ + 0.7055283188819885 + ], + "f1": [ + 0.6927772164344788 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 13, + "edge_count": 12, + "avg_in_degree": 0.9230769230769231, + "density": 0.07692307692307693 + }, + "trajectory_embedding": [ + 0.30061694979667664, + 0.13679052889347076, + -0.03965549170970917, + 0.1295793503522873, + 0.008763031102716923, + 0.07028906792402267, + 0.014980574138462543, + 0.28833457827568054, + 0.4558904469013214, + -0.27837973833084106, + -0.10914869606494904, + 0.01314648985862732, + -0.4926709830760956, + -0.17142295837402344, + -0.19755218923091888, + 0.20304308831691742, + 0.08181775361299515, + 0.25292664766311646, + -0.10463114827871323, + -0.2849089205265045, + -0.4398835003376007, + 0.17565952241420746, + -0.3815237879753113, + -0.05371331796050072, + 0.2289101481437683, + -0.023963481187820435, + 0.3267512023448944, + 0.3687443435192108, + 0.17262332141399384, + 0.3902463912963867, + 0.1786838173866272, + -0.11511321365833282, + 0.24315889179706573, + 0.09894391894340515, + -0.17505592107772827, + 0.22489789128303528, + 0.13174273073673248, + 0.48279789090156555, + -0.05140730366110802, + -0.039840467274188995, + 0.04140697047114372, + 0.0911102369427681, + 0.8759787678718567, + 0.16071189939975739, + 0.4434395134449005, + -0.7881634831428528, + -0.013953831046819687, + 0.5566041469573975, + -0.46610304713249207, + -0.28513842821121216, + 0.13145405054092407, + 0.7494055032730103, + 0.5836555361747742, + -0.23875251412391663, + 0.4100865125656128, + -0.11990626156330109, + -0.299298495054245, + -0.41026559472084045, + -0.25793033838272095, + -0.012172216549515724, + -0.05021212622523308, + -0.27538809180259705, + 0.3145725131034851, + -0.07997635006904602, + -0.23025700449943542, + -0.1760639101266861, + -0.21407635509967804, + 0.16087102890014648, + -0.028203509747982025, + -0.32823577523231506, + -0.12537476420402527, + -0.21558700501918793, + -0.16074074804782867, + 0.21151819825172424, + 0.11540118604898453, + -0.10252586007118225, + 0.3055439293384552, + -0.09755905717611313, + 0.16688179969787598, + 0.2583809196949005, + -0.12420583516359329, + -0.021927695721387863, + 0.11568288505077362, + 0.39876824617385864, + -0.4562661945819855, + 0.11368121206760406, + -0.11668206006288528, + -0.29154446721076965, + -0.36951372027397156, + 0.13675305247306824, + 0.2025599628686905, + -0.3179859519004822, + -0.08689871430397034, + -0.11686761677265167, + -0.01470477320253849, + 0.09144262969493866, + 0.4006587564945221, + 0.38419339060783386, + 0.8686131834983826, + -0.04427336901426315, + 0.2588061988353729, + 0.00879510398954153, + 0.3341047167778015, + 0.10098455846309662, + 0.4529469609260559, + -0.16254223883152008, + 0.0770118311047554, + -0.5748443603515625, + 0.1845024675130844, + 0.48405328392982483, + 0.0717751607298851, + -0.16776061058044434, + 0.05395988002419472, + -0.20196738839149475, + 0.1278553605079651, + 0.14417311549186707, + -0.06608190387487411, + 0.1926525980234146, + 0.19811591506004333, + -0.5679795742034912, + -0.14674319326877594, + -0.030886434018611908, + 0.2587715983390808, + 0.4735981523990631, + -0.4278338849544525, + -0.09040682762861252, + -0.15139435231685638, + 0.03937403857707977, + 0.10797028243541718, + -0.04693116992712021, + -0.4267384707927704, + -0.08839917927980423, + -0.05420388653874397, + 0.1780317723751068, + -0.09646733850240707, + 0.28063270449638367, + -0.29917776584625244, + -0.0038886459078639746, + -1.1382931470870972, + 0.20060311257839203, + -0.473506897687912, + -0.17987725138664246, + 0.022121606394648552, + -0.4768145680427551, + -0.25343701243400574, + -0.18583407998085022, + -0.24112629890441895, + 0.07995658367872238, + -0.17025576531887054, + 0.009840866550803185, + 0.03749207407236099, + 0.10546726733446121, + 0.24547265470027924, + 0.4258173704147339, + 0.06830018013715744, + 0.08510681241750717, + 0.031653113663196564, + 0.3108045160770416, + 0.12054185569286346, + -0.17161637544631958, + 0.03911770135164261, + 0.4646453857421875, + 0.14199791848659515, + -0.0230838842689991, + -0.06750763207674026, + -0.661117672920227, + 0.10041659325361252, + -0.12651437520980835, + 0.2375250607728958, + 0.024257034063339233, + -0.2762560248374939, + 0.10550963133573532, + -0.4198901355266571, + 0.6018848419189453, + 0.028342843055725098, + 0.5319833755493164, + -0.014234955422580242, + -0.1325477510690689, + 0.02436298131942749, + 0.2349904477596283, + 0.1855607032775879, + -0.04987580329179764, + 0.714210569858551, + 0.1998637616634369, + -0.22537361085414886, + 0.17992551624774933, + 0.32676663994789124, + -0.06474563479423523, + -0.1759558469057083, + -0.04366090148687363, + 0.4514440894126892, + -0.2471381276845932, + 0.44863641262054443, + -0.4933909773826599, + 0.02599494718015194, + 0.14395929872989655, + -0.28906872868537903, + -0.22576163709163666, + 0.11280890554189682, + -0.16796067357063293, + 0.31411492824554443, + 0.010976210236549377, + -0.30717724561691284, + 0.09624658524990082, + 0.08549268543720245, + -0.18921564519405365, + 0.35846397280693054, + -0.05323498696088791, + 0.08630605787038803, + -0.0893084853887558, + -0.10765568166971207, + 0.1585487574338913, + -0.08442001789808273, + 0.2502497434616089, + -0.0020892953034490347, + -0.355630099773407, + 0.29041728377342224, + -0.055248700082302094, + -0.0535493828356266, + 0.1703161895275116, + 0.01709926128387451, + -0.2261430323123932, + -0.08543924987316132, + -0.05553868040442467, + -0.49373042583465576, + 0.12487110495567322, + 0.08447746187448502, + 0.1704041063785553, + 0.18718859553337097, + 0.004237837623804808, + -0.012829344719648361, + -0.3660625219345093, + 0.308660089969635, + -0.04517054930329323, + -0.12193892896175385, + -0.35245034098625183, + 0.14472424983978271, + -0.27395230531692505, + -0.016010599210858345, + 0.37598860263824463, + -0.11055636405944824, + -0.11281686276197433, + 0.12977129220962524, + -0.3308854103088379, + -0.13021978735923767, + -0.36070045828819275, + -0.045203797519207, + 0.20274265110492706, + 0.1969032883644104, + 0.3639537990093231, + 0.0021560133900493383, + -0.1443532258272171, + 0.18161657452583313, + -0.23573677241802216, + -0.3882991671562195, + -0.4035549461841583, + -0.1076691672205925, + -0.08269966393709183, + -0.5464775562286377, + 0.08204801380634308, + 0.15259136259555817, + -0.10634008795022964, + 0.10091282427310944, + -0.36274534463882446, + -0.09690795838832855, + 0.08264486491680145, + -0.06528517603874207, + 0.09825009852647781, + -0.1459175944328308, + 0.15750159323215485, + -0.1699351966381073, + -0.22618983685970306, + -0.15173055231571198, + -0.0513962097465992, + 0.19419118762016296, + -0.04743727296590805, + -0.277227520942688, + -0.06412526965141296, + 0.025830289348959923, + -0.3341001868247986, + -0.13842087984085083, + 0.1855609267950058, + -0.18642815947532654, + 0.04520953446626663, + -0.05126287415623665, + 0.3484516143798828, + 0.27548331022262573, + 0.030118810012936592, + 0.1437336653470993, + 0.45063358545303345, + 0.43261459469795227, + -0.021106014028191566, + -0.04305964335799217, + -0.08271972090005875, + -0.04309805482625961, + -0.017475774511694908, + -0.34120607376098633, + 0.38230520486831665, + 0.0014461118262261152, + 0.001412954181432724, + -0.07718673348426819, + 0.21210694313049316, + 0.08777040988206863, + -0.4074777066707611, + -0.1181207075715065, + 0.6013200283050537, + 0.07930512726306915, + 0.05659172311425209, + 0.15421055257320404, + 0.4511648416519165, + 0.4693281948566437, + -0.08559887111186981, + -0.004478659015148878, + 0.02723422646522522, + -0.09928381443023682, + -0.17495237290859222, + -0.10801483690738678, + 0.05428190901875496, + 0.4454018175601959, + -0.18753816187381744, + -0.16722679138183594, + 0.14452001452445984, + -0.11844377219676971, + -0.06312468647956848, + -0.12458428740501404, + -0.058220818638801575, + 0.09688936918973923, + -0.32000526785850525, + 0.3266426622867584, + 0.0907057523727417, + -0.004910896997898817, + 0.44846493005752563, + -0.2727970778942108, + -0.2381770759820938, + 0.18086402118206024, + -0.2162107676267624, + -0.5297332406044006, + 0.40511271357536316, + -0.22811414301395416, + -0.01803208328783512, + 0.38160768151283264, + -0.16530653834342957, + -0.13248711824417114, + -0.11113110184669495, + 0.36434170603752136, + -0.028015095740556717, + 0.016195105388760567, + -0.07578729093074799, + 0.16008298099040985, + 0.28509604930877686, + 0.703616201877594, + 0.15215228497982025, + 0.25275829434394836, + 0.5163010358810425, + 0.10418011248111725, + -0.4169873893260956, + 0.006468948442488909, + 0.15739339590072632, + 0.37506911158561707, + -0.25019562244415283, + -0.16702260076999664, + -0.25331413745880127, + 0.11383897811174393, + 0.16331805288791656, + -0.42755401134490967, + -0.11986570805311203, + 0.0740637257695198, + 0.06725609302520752, + -0.05157637968659401, + 0.25265949964523315, + 0.18118897080421448, + -0.09112044423818588, + 0.4455313980579376, + -0.027181733399629593, + -0.061666134744882584, + 0.3762528598308563, + -0.24566780030727386, + 0.22963637113571167, + -0.13125869631767273, + -0.32454994320869446, + -0.3511371612548828, + 0.034271240234375, + -0.2743928134441376, + -0.11009233444929123, + -0.01887180283665657, + -0.23085759580135345, + 0.08150995522737503, + -0.2623516917228699, + 0.09205848723649979, + 0.005691364873200655, + 0.1479693353176117, + 0.058960992842912674, + 0.2840757966041565, + 0.02537568472325802, + -0.25926917791366577, + 0.2983348071575165, + -0.09818986803293228, + 0.09370679408311844, + -0.13930289447307587, + -0.0355282723903656, + -0.24087683856487274, + 0.5961702466011047, + 0.11484932899475098, + 0.00980472657829523, + 0.06667700409889221, + -0.031554512679576874, + -0.18407481908798218, + -0.37044331431388855, + -0.14252103865146637, + -0.12424002587795258, + -0.054767172783613205, + 0.03530232980847359, + 0.010114665143191814, + -0.42102527618408203, + -0.27045637369155884, + -0.1023460328578949, + 0.015308256261050701, + 0.14392806589603424, + -0.08428843319416046, + -0.014125552028417587, + 0.36155539751052856, + 0.08494310826063156, + 0.40472522377967834, + -0.25833719968795776, + 0.07099326699972153, + 0.08779150992631912, + -0.30545279383659363, + 0.002410974819213152, + 0.026546578854322433, + -0.178069606423378, + -0.15582162141799927, + 0.1547548472881317, + 0.17638622224330902, + 0.018014103174209595, + -0.054739151149988174, + 0.1821134239435196, + 0.21567286550998688, + -0.44771549105644226, + -0.10571227967739105, + 0.33651965856552124, + 0.06612350046634674, + 0.5217255353927612, + 0.02953796274960041, + -0.47818735241889954, + -0.1924521028995514, + -0.1356043815612793, + -0.40143269300460815, + 0.07575634121894836, + 0.22889836132526398, + -0.08029444515705109, + -0.18779706954956055, + 0.08182274550199509, + 0.04091830924153328, + -0.03593051806092262, + 0.269060879945755, + -0.023404208943247795, + 0.1995745599269867, + -0.036690909415483475, + -0.25589945912361145, + -0.11970376968383789, + -0.2082243710756302, + -0.22910167276859283, + -0.26949697732925415, + 0.3689024746417999, + 0.32058143615722656, + -0.4239586293697357, + -0.07353271543979645, + 0.12156892567873001, + -0.22333869338035583, + -0.20101632177829742, + -0.06726569682359695, + -0.37388283014297485, + 0.33694547414779663, + -0.05474402382969856, + -0.2278801053762436, + 0.08034788817167282, + -0.24536393582820892, + 0.11807370185852051, + 0.15784810483455658, + 0.07384534925222397, + 0.44827958941459656, + 0.1802339255809784, + 0.053415730595588684, + 0.4752578139305115, + 0.07408022880554199, + -0.05163595452904701, + 0.2263970673084259, + -0.01489220466464758, + 0.11164931207895279, + -0.13326396048069, + -0.18918675184249878, + 0.2881137728691101, + -0.24008001387119293, + 0.017847053706645966, + 0.24039219319820404, + 0.23311178386211395, + -0.4901817739009857, + -0.40220049023628235, + 0.012230409309267998, + -0.03174203261733055, + -0.023231299594044685, + -0.17308670282363892, + -0.2651897966861725, + -0.03122134879231453, + -0.1750163435935974, + -0.16663116216659546, + 0.3131754994392395, + 0.4662439227104187, + 0.1532408595085144, + 0.2069384902715683, + -0.27394938468933105, + -0.3539448380470276, + 0.18794472515583038, + 0.20758238434791565, + 0.15963761508464813, + -0.08640924841165543, + -0.23264583945274353, + 0.37114784121513367, + 0.4759943187236786, + -0.14757072925567627, + 0.047958310693502426, + 0.11256660521030426, + -0.014573823660612106, + 0.13800741732120514, + 0.02295101061463356, + -0.20576684176921844, + 0.018195323646068573, + -0.380094051361084, + 0.2328863888978958, + -0.29317909479141235, + -0.18156932294368744, + 0.16800563037395477, + -0.032914821058511734, + -0.5177411437034607, + -0.2488110214471817, + 0.3510724604129791, + -0.15607918798923492, + -0.09867240488529205, + 0.22018471360206604, + 0.4333863854408264, + 0.14446261525154114, + -0.32532328367233276, + 0.03614373505115509, + -0.48205000162124634, + -0.16096417605876923, + 0.15163753926753998, + -0.1432255357503891, + -0.09035832434892654, + -0.04294264689087868, + 0.39902570843696594, + 0.4454062581062317, + 0.1671011745929718, + -0.2351011484861374, + 0.08211175352334976, + 0.3034988343715668, + 0.2524162530899048, + -0.18156926333904266, + -10.762006759643555, + -0.14592768251895905, + -0.253853440284729, + 0.5869689583778381, + -0.18957209587097168, + 0.05521729961037636, + 0.23849312961101532, + -0.03640863671898842, + 0.15324296057224274, + 0.12518952786922455, + -0.16701294481754303, + 0.02260957472026348, + 0.3558577001094818, + 0.319719523191452, + 9.897981362883002e-05, + -0.0976332500576973, + -0.2451423555612564, + 0.1911085695028305, + 0.09918362647294998, + 0.21917954087257385, + 0.3449452519416809, + 0.4619852900505066, + -0.2624243497848511, + 0.19446516036987305, + -0.01851411908864975, + -0.31936803460121155, + -0.19016598165035248, + 0.6226457357406616, + 0.2877163290977478, + -0.301921010017395, + 0.2533606290817261, + 0.16141226887702942, + -0.23086364567279816, + 0.10981079936027527, + -0.08707976341247559, + -0.13567127287387848, + -0.10659296810626984, + 0.09787356853485107, + 0.14902850985527039, + -0.06700917333364487, + -0.01091080904006958, + -0.2019205242395401, + 0.25938141345977783, + 0.2418721467256546, + -0.07433436065912247, + -0.6163228154182434, + -0.189094677567482, + -1.624807357788086, + 0.29751163721084595, + 0.3411565124988556, + 0.35926735401153564, + 0.09449572116136551, + 0.26612645387649536, + 0.17533062398433685, + -0.4075483977794647, + -0.03598267585039139, + -0.24271151423454285, + -0.0990070253610611, + 0.09483333677053452, + -0.011217181570827961, + 0.14968831837177277, + -0.11055661737918854, + 0.5952299237251282, + -0.008566970936954021, + -0.27102991938591003, + 0.1513008028268814, + 0.13443483412265778, + -0.10219740867614746, + -0.10483658313751221, + -0.6270326972007751, + -0.6471126079559326, + -0.018335454165935516, + -0.059232670813798904, + 0.09001737087965012, + 0.37462642788887024, + -0.06301868706941605, + -0.304246723651886, + 0.3087085485458374, + 0.020992564037442207, + 0.351842999458313, + 0.1851048767566681, + 0.014869739301502705, + 0.11163853853940964, + -0.09392062574625015, + -0.29666247963905334, + -0.16072581708431244, + 0.08666288107633591, + 0.5329807996749878, + 0.07284241169691086, + -0.022023212164640427, + -0.1301341950893402, + 0.47861021757125854, + 0.07298403978347778, + -0.2088329941034317, + -0.4215949773788452, + 0.1055564358830452, + -0.07730000466108322, + 0.1267498880624771, + 0.042888328433036804, + -0.1842184215784073, + -0.17291368544101715, + -0.016733799129724503, + -0.039818260818719864, + -0.5295361280441284, + -0.4278663992881775, + 0.22105154395103455, + 0.13221736252307892, + 0.1635342240333557, + 0.024788588285446167, + -0.13592389225959778, + -0.22702556848526, + 0.004032918252050877, + 0.21240797638893127, + 0.5880923867225647, + 0.1824669986963272, + 0.02210739627480507, + -0.02677292935550213, + -0.22889898717403412, + -0.22626489400863647, + 0.06338854879140854, + 0.36331498622894287, + -0.19626453518867493, + 0.3129028081893921, + 0.6032834053039551, + -0.009738324210047722, + -0.10209986567497253, + 0.9311566948890686, + -0.2882600724697113, + 0.30083853006362915, + -0.16729091107845306, + 0.2787630558013916, + -0.02740929275751114, + -0.34643417596817017, + -0.07002197206020355, + 0.4803674519062042, + -0.3723117411136627, + 0.7538663148880005, + 0.23880721628665924, + -0.4755764603614807, + -0.01853349059820175, + -0.3872881531715393, + 0.5384923815727234, + 0.38153794407844543, + 0.27703750133514404, + -0.14233160018920898, + -0.28452613949775696, + -0.32556769251823425, + 0.13847297430038452, + -0.4264545440673828, + -0.2940461337566376, + -0.06874234974384308, + 0.10370154678821564, + 0.19563931226730347, + -0.2518042325973511, + 0.41201624274253845, + 0.1889844536781311, + -0.24337175488471985, + -0.24316948652267456, + -0.4608098268508911, + -0.008641954511404037, + 0.2593584954738617, + 0.7476592659950256, + -0.09565087407827377, + -0.02225889079272747, + -0.09001682698726654, + 0.1463794857263565, + -0.1314922422170639, + 0.24893686175346375, + 0.1432054191827774, + -0.08623763173818588, + -0.4624679386615753, + 0.21225954592227936, + 0.12379222363233566, + -0.30427664518356323, + -0.1385560929775238, + -0.13254867494106293, + -0.05852615460753441, + 0.07713782042264938, + -0.3416714072227478, + 0.04809129610657692, + 0.40662819147109985, + -0.11169688403606415, + -0.07529763877391815, + -0.24947215616703033, + -0.02488165721297264, + 0.1389564424753189, + 0.27902042865753174, + 0.1072269007563591, + -0.18563948571681976, + -0.2865413427352905, + -0.48267582058906555, + 0.25808268785476685, + -0.20624206960201263, + -0.09471286833286285, + 0.15300051867961884, + 0.17397376894950867, + -0.22994564473628998, + 0.09576177597045898, + -0.15919622778892517, + 0.07856888324022293, + -0.1563364565372467, + 0.2717364430427551, + 0.4111707806587219, + -0.24405409395694733, + 0.21035033464431763, + -0.1762838512659073, + 0.2774675786495209, + 0.021981405094265938, + -0.3391790986061096, + 0.1877278983592987, + -0.2832621932029724 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_010.json b/src/benchmark/output/results/results_graph_010.json new file mode 100644 index 0000000..41e4bf2 --- /dev/null +++ b/src/benchmark/output/results/results_graph_010.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 55-year-old female diagnosed with squamous cell carcinoma (SCC) of the esophagus. She underwent various treatments, including surgery, chemotherapy, radiation therapy, and immunotherapy, before being diagnosed with another type of cancer.\n\n**Timeline of Diagnoses:**\n\n1. **Step 1:** The patient was diagnosed with SCC of the esophagus (cT3N2M0, stage IIIB) at an unknown date.\n2. **Step 2:** Six months later, she underwent esophagectomy with gastric pull-up reconstruction.\n3. **Step 3:** Two years after her surgery, she received neo-adjuvant concurrent chemoradiation therapy (ypT2N1 stage IIB disease).\n4. **Step 4:** Six weeks after completing her chemotherapy and radiation therapy, she received a total of 50 Gray of radiation over 6 weeks, along with Carboplatin and Paclitaxel for 6 weeks.\n5. **Step 5:** Six years later, a CT scan revealed stage IA TTF-1 positive adenocarcinoma in the left upper lobe.\n6. **Step 6:** Two years after her diagnosis of adenocarcinoma, she underwent treatment with stereotactic radiotherapy.\n7. **Step 7:** Two years after her radiotherapy, squamous cell carcinoma of the right upper lobe was discovered.\n8. **Step 8:** The patient initiated Pembrolizumab with curative intent due to high PD-L1 expression.\n9. **Step 9:** A follow-up CT scan showed no biological response and a tumor diameter of 54 mm.\n10. **Step 10:** Salvage lobectomy including complete mediastinal lymph node dissection was performed.\n11. **Step 11:** Pre-operative positron emission tomography CT scan demonstrated the exact localization of the tumor in the right upper lobe.\n\n**Timeline of Treatments:**\n\n1. **Esophagectomy with gastric pull-up reconstruction (Step 2):**\n - Date: Unknown\n - Treatment: Surgery\n\n2. **Neo-adjuvant concurrent chemoradiation therapy (Step 3):**\n - Date: Two years after esophagectomy\n - Treatment: Chemotherapy and radiation therapy\n\n3. **Radiation therapy with Carboplatin and Paclitaxel (Step 4):**\n - Date: Six weeks after completing chemotherapy and radiation therapy\n - Treatment: Radiation therapy, chemotherapy, and medication\n\n4. **Stereotactic radiotherapy (Step 6):**\n - Date: Two years after diagnosis of adenocarcinoma\n - Treatment: Radiotherapy\n\n5. **Pembrolizumab (Step 8):**\n - Date: After diagnosis of squamous cell carcinoma of the right upper lobe\n - Treatment: Immunotherapy\n\n**Outcomes:**\n\n1. **Esophagectomy with gastric pull-up reconstruction:** The patient underwent successful surgery.\n2. **Neo-adjuvant concurrent chemoradiation therapy:** The patient received treatment for her cancer, but no further information is available on the effectiveness of this treatment.\n3. **Radiation therapy with Carboplatin and Paclitaxel:** No biological response was observed after completing this treatment.\n4. **Stereotactic radiotherapy:** No biological response was observed after completing this treatment.\n5. **Pembrolizumab:** The patient did not respond to Pembrolizumab, as indicated by a follow-up CT scan showing no biological response and a tumor diameter of 54 mm.\n\n**Conclusion:**\nThe patient underwent various treatments for her esophageal cancer before being diagnosed with another type of cancer. Despite receiving multiple treatments, she did not achieve a complete response to any treatment. Salvage lobectomy including complete mediastinal lymph node dissection was performed, but the outcome is unknown.", + "bertscore": { + "precision": [ + 0.6025055050849915 + ], + "recall": [ + 0.7357915043830872 + ], + "f1": [ + 0.6625112891197205 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 11, + "edge_count": 10, + "avg_in_degree": 0.9090909090909091, + "density": 0.09090909090909091 + }, + "trajectory_embedding": [ + 0.21590237319469452, + 0.1823497712612152, + -0.11964480578899384, + 0.07587544620037079, + 0.18606476485729218, + 0.21188677847385406, + -0.11044882982969284, + 0.41281792521476746, + 0.48045822978019714, + -0.37073710560798645, + -0.20201373100280762, + -0.17259280383586884, + -0.5821730494499207, + -0.11790329962968826, + -0.2575705647468567, + 0.43589040637016296, + -0.25557705760002136, + 0.2976360023021698, + -0.1255851835012436, + -0.3479345142841339, + -0.42114880681037903, + 0.2342861145734787, + -0.49920159578323364, + 0.053388942033052444, + 0.36746883392333984, + -0.12336592376232147, + 0.40533649921417236, + 0.47145435214042664, + 0.32052573561668396, + 0.3062628209590912, + 0.060986198484897614, + -0.2907654345035553, + 0.34394797682762146, + 0.0025140107609331608, + -0.34577620029449463, + 0.1963474601507187, + 0.2551204264163971, + 0.3567274808883667, + -0.11241114884614944, + 0.008462523110210896, + -0.057969581335783005, + 0.08375213295221329, + 0.9651418924331665, + 0.09407640248537064, + 0.294234037399292, + -0.864651083946228, + 0.021013660356402397, + 0.549808144569397, + -0.4663076102733612, + -0.4325103759765625, + 0.07601156085729599, + 0.7564382553100586, + 0.6105517148971558, + -0.5527001023292542, + 0.4612109363079071, + -0.29281437397003174, + -0.2601868212223053, + -0.3369051218032837, + -0.0942709669470787, + -0.0454891063272953, + 0.06313750892877579, + -0.42570894956588745, + 0.6730190515518188, + -0.29049554467201233, + -0.13298633694648743, + -0.18029017746448517, + -0.36059853434562683, + 0.23151804506778717, + -0.029649443924427032, + -0.4749322235584259, + -0.17641116678714752, + -0.12117630988359451, + 0.07174529880285263, + 0.13247133791446686, + 0.040357477962970734, + -0.14585012197494507, + 0.44345685839653015, + -0.0824585109949112, + 0.2532438039779663, + 0.34335774183273315, + -0.0770181268453598, + -0.27296867966651917, + -0.08578407019376755, + 0.32531020045280457, + -0.380910187959671, + -0.09985964745283127, + -0.10276868939399719, + -0.3483111262321472, + -0.3892504870891571, + 0.12806926667690277, + 0.2747079133987427, + -0.5248789191246033, + -0.040011920034885406, + -0.15131600201129913, + -0.006086945533752441, + 0.4184017479419708, + 0.7352264523506165, + 0.14150895178318024, + 0.9071729183197021, + -0.060770224779844284, + 0.1861913651227951, + -0.08676314353942871, + 0.1727498471736908, + -0.0030242407228797674, + 0.33739760518074036, + -0.06031491607427597, + 0.08220886439085007, + -0.4953893721103668, + 0.436631977558136, + 0.6962245106697083, + 0.23626847565174103, + -0.009914754889905453, + -8.520043775206432e-05, + -0.2581094801425934, + 0.28486135601997375, + 0.15629810094833374, + 0.11284124851226807, + 0.30738207697868347, + 0.44610920548439026, + -0.32457104325294495, + -0.28642943501472473, + 0.06683402508497238, + 0.22503350675106049, + 0.25068628787994385, + -0.5718020796775818, + -0.21503977477550507, + -0.15192455053329468, + -0.2313249260187149, + 0.11885866522789001, + -0.12040448188781738, + -0.503815233707428, + -0.2980988621711731, + -0.13322007656097412, + -0.03965024650096893, + -0.05886439234018326, + 0.3938021957874298, + -0.3212750256061554, + -0.2357817143201828, + -1.086217999458313, + 0.22418466210365295, + -0.403675377368927, + -0.12092361599206924, + -0.10353822261095047, + -0.5101791024208069, + -0.2993016242980957, + -0.19096218049526215, + -0.13450735807418823, + 0.2105664312839508, + -0.23272837698459625, + -0.06980859488248825, + 0.15782161056995392, + 0.049955107271671295, + 0.24539758265018463, + 0.6937840580940247, + 0.15109121799468994, + -0.03952617570757866, + -0.04447723925113678, + 0.142830953001976, + 0.011787771247327328, + -0.0088141318410635, + 0.07805755734443665, + 0.6065551042556763, + 0.35458824038505554, + 0.10089345276355743, + -0.2530367076396942, + -0.6255857348442078, + 0.0426565520465374, + -0.17884178459644318, + 0.10706183314323425, + 0.07893088459968567, + -0.1982448697090149, + -0.004573941230773926, + -0.45561400055885315, + 0.7102386951446533, + 0.011311220936477184, + 0.1981527954339981, + -0.026383014395833015, + -0.05192248523235321, + 0.07338760048151016, + 0.3007173538208008, + 0.2839224636554718, + -0.3822489082813263, + 0.7527574896812439, + 0.24243173003196716, + -0.2207026332616806, + 0.19979052245616913, + 0.22234949469566345, + 0.1908295750617981, + -0.18085280060768127, + 0.052776943892240524, + 0.6797260642051697, + -0.3959343135356903, + 0.7085362076759338, + -0.34702861309051514, + -0.1467304676771164, + 0.25778162479400635, + -0.13579301536083221, + -0.16440899670124054, + -0.10112521797418594, + -0.20624040067195892, + 0.1542985588312149, + 0.015027835965156555, + -0.5716752409934998, + 0.07781431823968887, + 0.21812938153743744, + -0.06461017578840256, + 0.13918548822402954, + -0.04052561894059181, + 0.15764157474040985, + 0.05454079806804657, + -0.14800725877285004, + 0.3894988000392914, + -0.22248126566410065, + 0.2159782499074936, + 0.04732801765203476, + -0.5005247592926025, + 0.17623524367809296, + -0.07339435815811157, + 0.04299303516745567, + 0.11912648379802704, + 0.018885206431150436, + -0.31233635544776917, + -0.3005068898200989, + 0.024661654606461525, + -0.7458246350288391, + 0.2947142422199249, + 0.08730471879243851, + 0.25584670901298523, + 0.3227587938308716, + -0.04480193182826042, + -0.0967700406908989, + -0.43592357635498047, + 0.3502056300640106, + -0.12611745297908783, + -0.1002458855509758, + -0.20970949530601501, + 0.44554415345191956, + -0.17481082677841187, + 0.40101996064186096, + 0.34196141362190247, + -0.0571710504591465, + -0.12144474685192108, + 0.16072238981723785, + -0.34354162216186523, + -0.18675561249256134, + -0.3795614242553711, + 0.03640662506222725, + 0.22029586136341095, + 0.15135325491428375, + 0.2890349328517914, + -0.052695706486701965, + -0.12853240966796875, + 0.12517811357975006, + -0.14526847004890442, + -0.5223375558853149, + -0.3590468764305115, + -0.03908499702811241, + -0.19553233683109283, + -0.8702585697174072, + 0.2009977400302887, + -0.1210380494594574, + -0.030405575409531593, + 0.14748002588748932, + -0.4756527841091156, + -0.10037972778081894, + 0.19319742918014526, + 0.11438903212547302, + 0.07027962058782578, + -0.2624141275882721, + 0.3148486018180847, + -0.14488649368286133, + -0.24938522279262543, + -0.20283173024654388, + 0.03396051004528999, + 0.06458678096532822, + -0.017872486263513565, + -0.35600942373275757, + -0.05896160751581192, + 0.05699622631072998, + -0.34331652522087097, + 0.10431026667356491, + 0.21210800111293793, + -0.2277608960866928, + 0.22937029600143433, + 0.13927359879016876, + 0.3286478817462921, + 0.28556978702545166, + 0.14501941204071045, + 0.10344479233026505, + 0.3135758340358734, + 0.5232022404670715, + -0.12015588581562042, + 0.048353735357522964, + -0.020848143845796585, + -0.1004922166466713, + -0.0619792677462101, + -0.3061378300189972, + 0.480991393327713, + 0.02188427932560444, + 0.08436595648527145, + -0.08969787508249283, + 0.3157120645046234, + 0.010198063217103481, + -0.13475917279720306, + 0.15670229494571686, + 0.4864586591720581, + 0.1618918925523758, + 0.2415582537651062, + 0.28244879841804504, + 0.21782447397708893, + 0.08219602704048157, + -0.24083980917930603, + 0.010587697848677635, + 0.24863901734352112, + -0.03379552438855171, + -0.27998507022857666, + -0.1042419970035553, + 0.25208818912506104, + 0.566378653049469, + -0.3394303619861603, + -0.3438229560852051, + -0.13283134996891022, + -0.32532942295074463, + 0.04778009653091431, + -0.3592623472213745, + -0.15757814049720764, + 0.29535365104675293, + -0.17852330207824707, + 0.3009174168109894, + 0.1418439894914627, + -0.12254238873720169, + 0.28147855401039124, + -0.5833076238632202, + -0.09236320853233337, + 0.22421836853027344, + -0.12967288494110107, + -0.4142408072948456, + 0.46086862683296204, + -0.21735717356204987, + 0.021204644814133644, + 0.4388979971408844, + -0.5074916481971741, + -0.08560466766357422, + 0.07725746929645538, + 0.40178030729293823, + -0.006670522503554821, + 0.09029139578342438, + 0.00365213374607265, + 0.1763836145401001, + 0.006295544095337391, + 0.6056994795799255, + 0.055184755474328995, + 0.2966027855873108, + 0.739279568195343, + 0.3945513069629669, + -0.4544866681098938, + 0.12829795479774475, + -0.13830822706222534, + 0.5085112452507019, + 0.003618975868448615, + -0.08832399547100067, + -0.15757626295089722, + 0.23373430967330933, + 0.141469344496727, + -0.4132903218269348, + 0.009987146593630314, + 0.17295542359352112, + 0.1110105961561203, + -0.10160476714372635, + 0.3964204788208008, + 0.13185428082942963, + -0.20239359140396118, + 0.6286218166351318, + -0.062239598482847214, + -0.10296947509050369, + 0.4334150552749634, + -0.28439539670944214, + 0.0605875700712204, + 0.12451266497373581, + -0.14610013365745544, + -0.293875128030777, + 0.11912915855646133, + -0.272060364484787, + -0.1503898650407791, + 0.06305347383022308, + -0.24081364274024963, + 0.2861063778400421, + -0.41631755232810974, + 0.005559006705880165, + 0.006819125730544329, + 0.11628010869026184, + 0.22329702973365784, + 0.24607442319393158, + 0.0553882010281086, + -0.15096598863601685, + 0.3314759433269501, + -0.019949622452259064, + -0.183464914560318, + -0.23240290582180023, + 0.023668430745601654, + -0.12780286371707916, + 0.7312068939208984, + 0.12836094200611115, + 0.058139726519584656, + 0.1797611266374588, + 0.020714445039629936, + -0.03492628037929535, + -0.3810606002807617, + -0.07285462319850922, + -0.25312089920043945, + 0.08072521537542343, + 0.17859703302383423, + 0.02869158796966076, + -0.45385029911994934, + -0.052854977548122406, + -0.10228786617517471, + -0.31381210684776306, + 0.20363011956214905, + -0.1839343160390854, + -0.34478700160980225, + 0.34845998883247375, + 0.2600806951522827, + 0.5304790139198303, + -0.48169466853141785, + 0.17187190055847168, + 0.06121542677283287, + -0.1790156066417694, + -0.12077934294939041, + -0.12641283869743347, + -0.4685874283313751, + -0.19879423081874847, + 0.3651999235153198, + 0.3620489835739136, + -0.07656969875097275, + -0.016773587092757225, + 0.1984638273715973, + 0.25676143169403076, + -0.3755060136318207, + -0.06233000382781029, + 0.25915491580963135, + 0.22407189011573792, + 0.3000026345252991, + 0.1267809271812439, + -0.6364288926124573, + -0.2246905416250229, + -0.1367657631635666, + -0.4588977098464966, + 0.09708669036626816, + 0.4115796387195587, + 0.13946032524108887, + -0.15444856882095337, + -0.0019916559103876352, + 0.052998971194028854, + -0.22925853729248047, + 0.39913761615753174, + -0.1431451290845871, + 0.3455853760242462, + 0.07208026200532913, + -0.2115941047668457, + -0.1737886220216751, + -0.2041017860174179, + -0.2656811773777008, + -0.24458765983581543, + 0.2784392535686493, + 0.31715381145477295, + -0.5012989640235901, + -0.06527727097272873, + 0.03430992364883423, + -0.061333153396844864, + -0.07604950666427612, + -0.002813592553138733, + -0.42847201228141785, + 0.36687374114990234, + -0.17704638838768005, + -0.362190842628479, + 0.07445082068443298, + 0.06805776059627533, + 0.010887187905609608, + 0.20469221472740173, + -0.0462353453040123, + 0.45758846402168274, + 0.01733853667974472, + -0.18237261474132538, + 0.6269033551216125, + -0.024406682699918747, + 0.2362523078918457, + 0.44672510027885437, + 0.018733007833361626, + 0.09249767661094666, + -0.36418282985687256, + -0.216614231467247, + 0.19839972257614136, + -0.3216416537761688, + -0.1985752433538437, + 0.20513653755187988, + 0.19407664239406586, + -0.425906777381897, + -0.2907130718231201, + 0.17222712934017181, + 0.17602160573005676, + -0.13269492983818054, + -0.0850786566734314, + -0.2737032473087311, + -0.27297234535217285, + -0.2863575220108032, + -0.03092205338180065, + 0.36809489130973816, + 0.6632392406463623, + 0.13107527792453766, + 0.35327014327049255, + -0.3204362690448761, + -0.2232578694820404, + 0.20471739768981934, + 0.1476530134677887, + 0.1250983625650406, + -0.09704925864934921, + -0.14115136861801147, + 0.44066759943962097, + 0.34541213512420654, + 0.05260004103183746, + 0.2024940848350525, + 0.06710478663444519, + 0.01844465732574463, + 0.24406331777572632, + 0.04498077929019928, + -0.28428733348846436, + -0.0852501392364502, + -0.4182281494140625, + 0.24348658323287964, + -0.27447760105133057, + 0.0449427105486393, + 0.2295486479997635, + -0.06275468319654465, + -0.5555527210235596, + -0.3637843132019043, + 0.1983642429113388, + -0.10650011897087097, + -0.3293856978416443, + 0.2616897225379944, + 0.24779215455055237, + -0.11454148590564728, + -0.4148692786693573, + -0.03152432665228844, + -0.6366443634033203, + -0.49154528975486755, + 0.1543934941291809, + -0.03131168708205223, + -0.23623046278953552, + 0.17196887731552124, + 0.6275867819786072, + 0.6269531846046448, + 0.303356796503067, + -0.1537037342786789, + -0.042672786861658096, + 0.39632874727249146, + 0.19053898751735687, + -0.1982375979423523, + -10.520903587341309, + -0.45543333888053894, + -0.4238056242465973, + 0.4959370493888855, + -0.26033610105514526, + 0.11924351006746292, + 0.2103087306022644, + -0.13614404201507568, + 0.031938258558511734, + 0.02957097813487053, + -0.1468767523765564, + -0.19613513350486755, + 0.1908685564994812, + 0.3430176079273224, + 0.06249995157122612, + 0.10130365192890167, + -0.37138041853904724, + 0.27020832896232605, + 0.06435931473970413, + 0.17015020549297333, + 0.16328643262386322, + 0.38614776730537415, + -0.3137998878955841, + 0.18528784811496735, + -0.057620856910943985, + -0.4933769404888153, + -0.25841954350471497, + 0.7841097116470337, + 0.5228127837181091, + -0.4163779318332672, + 0.05881595239043236, + 0.11414346098899841, + -0.13709606230258942, + 0.13486459851264954, + -0.19170890748500824, + -0.06518664211034775, + -0.034283317625522614, + 0.27914610505104065, + 0.46864527463912964, + -0.2280544638633728, + 0.03463822975754738, + -0.050573743879795074, + 0.4353070557117462, + 0.15129929780960083, + -0.12089471518993378, + -0.5003877282142639, + -0.1233668252825737, + -1.624966025352478, + 0.329545259475708, + 0.2612573802471161, + 0.20151901245117188, + 0.08569856733083725, + 0.12731987237930298, + 0.2936391830444336, + -0.3348862826824188, + -0.043426722288131714, + -0.26265597343444824, + -0.24289633333683014, + -0.01316000521183014, + 0.12560588121414185, + 0.008696120232343674, + -0.09595168381929398, + 0.7172963619232178, + 0.2271573543548584, + -0.24970601499080658, + 0.09322309494018555, + 0.03955945745110512, + -0.2601698338985443, + -0.3453007936477661, + -0.9648702144622803, + -0.5467386245727539, + 0.09752054512500763, + -0.28753143548965454, + -0.16136804223060608, + 0.23258493840694427, + -0.1290704905986786, + -0.14448848366737366, + 0.25413843989372253, + 0.06670472770929337, + 0.2808320224285126, + 0.24495282769203186, + 0.00383972586132586, + 0.19700171053409576, + -0.1484602838754654, + -0.19943566620349884, + -0.046106044203042984, + 0.2977018654346466, + 0.4696962237358093, + 0.06438077241182327, + -0.042949315160512924, + 0.10755424946546555, + 0.5550330281257629, + 0.07803688943386078, + -0.28718340396881104, + -0.44683074951171875, + -0.06381496787071228, + -0.031176209449768066, + 0.12648655474185944, + -0.10428597778081894, + -0.10076022148132324, + -0.1586959958076477, + 0.19724388420581818, + -0.02676946111023426, + -0.573161244392395, + -0.6854441165924072, + 0.2897382974624634, + 0.17305988073349, + 0.20174121856689453, + -0.11601892113685608, + -0.2899537682533264, + -0.38740718364715576, + 0.056517865508794785, + 0.16432657837867737, + 0.5992275476455688, + 0.24109534919261932, + -0.10421078652143478, + 0.05725301429629326, + -0.2598061263561249, + -0.2034962773323059, + -0.13817761838436127, + 0.4938572943210602, + -0.09090340882539749, + 0.12154055386781693, + 0.681384265422821, + -0.10799916088581085, + -0.03918606787919998, + 0.8796634078025818, + -0.41005846858024597, + 0.13608083128929138, + -0.10962557792663574, + 0.207235187292099, + -0.1725875735282898, + -0.5457109808921814, + 0.034471139311790466, + 0.6386486291885376, + -0.4264855682849884, + 1.0231140851974487, + 0.27568984031677246, + -0.3936195373535156, + -0.1718919426202774, + -0.24598270654678345, + 0.585798978805542, + 0.21429309248924255, + 0.1213797777891159, + -0.1344074159860611, + -0.2812458872795105, + -0.3619706332683563, + 0.04954996332526207, + -0.24513192474842072, + -0.41721728444099426, + -0.30665096640586853, + 0.12913966178894043, + 0.3485114872455597, + -0.28898847103118896, + 0.29065725207328796, + 0.24006104469299316, + -0.21690520644187927, + -0.3587509095668793, + -0.31044140458106995, + 0.11637648940086365, + 0.3949897885322571, + 1.014526128768921, + -0.018359819427132607, + -0.038108158856630325, + -0.003685867879539728, + -0.06152348220348358, + -0.3292338252067566, + 0.20332609117031097, + 0.05394000932574272, + -0.16492098569869995, + -0.505751371383667, + 0.3256921172142029, + 0.17891107499599457, + -0.16508711874485016, + -0.019382420927286148, + -0.0703776553273201, + -0.23023515939712524, + 0.17742003500461578, + -0.2121150642633438, + -0.05127786472439766, + 0.4847959578037262, + -0.2184029519557953, + -0.040687303990125656, + -0.14056028425693512, + -0.26539433002471924, + 0.2230241745710373, + 0.5399031043052673, + -0.04145977273583412, + -0.39322957396507263, + -0.26942670345306396, + -0.6696906685829163, + 0.319172739982605, + -0.46518391370773315, + -0.036665178835392, + 0.12934942543506622, + 0.15355736017227173, + -0.20464898645877838, + 0.14402543008327484, + 0.07539442181587219, + -0.007209260482341051, + -0.1798970103263855, + 0.31624922156333923, + 0.5696040987968445, + -0.1820838451385498, + 0.46405795216560364, + -0.11399805545806885, + 0.1447509080171585, + 0.19153818488121033, + -0.09939324855804443, + 0.12201487272977829, + -0.5398766994476318 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_011.json b/src/benchmark/output/results/results_graph_011.json new file mode 100644 index 0000000..a8b1bba --- /dev/null +++ b/src/benchmark/output/results/results_graph_011.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Patient Profile**\n\nThe patient is a [insert age]-year-old individual with a history of [insert relevant medical conditions or symptoms]. The patient's demographic information includes:\n\n* Name: [insert name]\n* Date of Birth: [insert date of birth]\n* Sex: [insert sex]\n\n**Diagnosis Timeline**\n\nThe patient's diagnosis timeline began on [insert date], when they presented to the clinic with [insert initial symptoms or concerns]. Following a series of diagnostic tests, including imaging studies and biopsies, the patient was diagnosed with [insert primary diagnosis].\n\nOver the next several months, the patient underwent various treatments, including:\n\n* First-line systemic therapy: The patient received treatment with [insert medication] from [insert start date] to [insert end date].\n* Maintenance therapy: Following completion of first-line therapy, the patient transitioned to maintenance therapy with pemetrexed from [insert start date] to [insert end date].\n* Second-line treatment: In response to disease progression, the patient received treatment with cabozantinib from [insert start date] to [insert end date], which was discontinued due to adverse effects.\n* Third-line treatment: The patient then transitioned to pembrolizumab, initiating treatment on [insert start date].\n\n**Treatment Timeline**\n\nThe patient's treatment timeline is as follows:\n\n| Treatment | Start Date | End Date |\n| --- | --- | --- |\n| First-line therapy | [insert start date] | [insert end date] |\n| Maintenance therapy | [insert start date] | [insert end date] |\n| Cabozantinib | [insert start date] | [insert end date] (discontinued) |\n| Pembrolizumab | [insert start date] | Ongoing |\n\n**Outcomes**\n\nThe patient's treatment outcomes have been as follows:\n\n* Partial tumor response: The patient experienced a partial tumor response to first-line therapy, which was observed on imaging studies.\n* Disease progression: Following completion of first-line therapy, the patient experienced disease progression, leading to the initiation of second-line treatment.\n* Adverse effects: The patient experienced adverse effects while receiving cabozantinib, leading to discontinuation of treatment.\n* Symptomatic improvement: The patient has experienced significant symptomatic improvement since initiating pembrolizumab, including complete hearing recovery and a substantial reduction in dizziness and headache complaints.\n\n**Current Status**\n\nThe patient is currently undergoing treatment with pembrolizumab, which was initiated on [insert start date]. The patient's current status includes:\n\n* Ongoing treatment with pembrolizumab\n* Continued monitoring for disease progression or adverse effects\n* Regular follow-up appointments to assess treatment outcomes and adjust treatment as needed\n\nOverall, the patient has undergone a complex treatment journey, involving multiple treatments and transitions. Despite challenges, the patient has experienced significant symptomatic improvement and is currently receiving ongoing treatment with pembrolizumab.", + "bertscore": { + "precision": [ + 0.5634559392929077 + ], + "recall": [ + 0.5314140915870667 + ], + "f1": [ + 0.5469661355018616 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 6, + "node_count": 16, + "edge_count": 10, + "avg_in_degree": 0.625, + "density": 0.041666666666666664 + }, + "trajectory_embedding": [ + 0.16245156526565552, + 0.1600143313407898, + -0.07061316072940826, + 0.19158999621868134, + 0.05907982587814331, + 0.1717534214258194, + 0.06727615743875504, + 0.25085461139678955, + 0.6407455801963806, + -0.26162946224212646, + -0.03981025144457817, + -0.11866048723459244, + -0.46796175837516785, + -0.20894984900951385, + -0.15915517508983612, + 0.2649320065975189, + -0.21555562317371368, + 0.3820728063583374, + -0.021528776735067368, + -0.27717623114585876, + -0.39110615849494934, + 0.1743275225162506, + -0.4355752766132355, + -0.0171490628272295, + 0.2160544991493225, + -0.03524874895811081, + 0.3605571985244751, + 0.45980265736579895, + 0.2619229853153229, + 0.4579738974571228, + 0.19228222966194153, + -0.18174847960472107, + 0.20433653891086578, + 0.10540352016687393, + -0.32221299409866333, + 0.13911373913288116, + 0.18993476033210754, + 0.39680156111717224, + -0.2436806559562683, + -0.09531586617231369, + -0.18699277937412262, + 0.09185943752527237, + 0.8638661503791809, + 0.08321192860603333, + 0.416931688785553, + -0.6076541543006897, + -0.006086857058107853, + 0.742171585559845, + -0.40258216857910156, + -0.44886454939842224, + 0.30314552783966064, + 0.6558233499526978, + 0.6408657431602478, + -0.5083865523338318, + 0.37826335430145264, + -0.18690016865730286, + -0.25506943464279175, + -0.3894357681274414, + -0.08891396969556808, + 0.0011250635143369436, + 0.19676822423934937, + -0.3200245797634125, + 0.3724333345890045, + -0.30866220593452454, + -0.17224334180355072, + -0.2494162917137146, + -0.31551557779312134, + 0.22387799620628357, + 0.117152139544487, + -0.26064589619636536, + -0.2537911832332611, + -0.23230360448360443, + -0.14073289930820465, + 0.0779939740896225, + -0.07943879812955856, + -0.11109791696071625, + 0.37159109115600586, + -0.11787549406290054, + 0.264809250831604, + 0.0703866109251976, + -0.033959079533815384, + -0.18957018852233887, + -0.1917015165090561, + 0.32271701097488403, + -0.25020113587379456, + 0.03848632797598839, + -0.1203107014298439, + -0.27800795435905457, + -0.4308099150657654, + 0.11843013018369675, + 0.12286663800477982, + -0.3775346875190735, + 0.11357871443033218, + -0.14681434631347656, + -0.08807821571826935, + 0.24711011350154877, + 0.5010116100311279, + 0.16630350053310394, + 0.8785226345062256, + 0.09974634647369385, + 0.04344193637371063, + -0.12789025902748108, + 0.19089391827583313, + 0.01997448317706585, + 0.428890585899353, + -0.19787494838237762, + 0.1801803857088089, + -0.5435901284217834, + 0.2729465365409851, + 0.4214964807033539, + 0.20293940603733063, + -0.3062528371810913, + 0.01664607785642147, + -0.23817436397075653, + 0.33383116126060486, + 0.2094971090555191, + 0.009084811434149742, + 0.3734797537326813, + 0.31777793169021606, + -0.48594850301742554, + -0.2855514585971832, + -0.1359705775976181, + 0.1983971893787384, + 0.23080818355083466, + -0.5031739473342896, + -0.11189668625593185, + -0.0542006753385067, + -0.04810883849859238, + 0.05927913263440132, + 0.0006070862291380763, + -0.5785590410232544, + -0.278917521238327, + -0.030001698061823845, + -0.037566859275102615, + -0.09188113361597061, + 0.33172470331192017, + -0.31583699584007263, + 0.07175884395837784, + -0.9909507036209106, + 0.119020476937294, + -0.36410704255104065, + -0.022763557732105255, + 0.11758037656545639, + -0.6215351223945618, + -0.26971104741096497, + -0.09321658313274384, + -0.1374003142118454, + 0.1704597771167755, + -0.20298784971237183, + 0.0763852596282959, + 0.1373308300971985, + -0.025474432855844498, + 0.30031707882881165, + 0.67862468957901, + 0.0007495105382986367, + -0.07678147405385971, + -0.03204861655831337, + 0.24855299293994904, + 0.0846346914768219, + -0.196183443069458, + 0.11495129019021988, + 0.5373055934906006, + 0.09238936007022858, + 0.06041057035326958, + -0.14419163763523102, + -0.5951148867607117, + -0.0798611268401146, + -0.25916871428489685, + 0.02695642225444317, + -0.061491210013628006, + -0.25564637780189514, + 0.012750999070703983, + -0.27353230118751526, + 0.7026057839393616, + -0.09857435524463654, + 0.32529523968696594, + -0.026297466829419136, + 0.15630412101745605, + 0.20306937396526337, + 0.08634381741285324, + 0.15534323453903198, + -0.2713169753551483, + 0.5717553496360779, + 0.13538406789302826, + -0.24871189892292023, + 0.17096397280693054, + 0.20481301844120026, + 0.14885635673999786, + -0.25734448432922363, + 0.024741964414715767, + 0.5564239621162415, + -0.283203125, + 0.6690607070922852, + -0.18619005382061005, + -0.01426878571510315, + 0.17602774500846863, + -0.14749585092067719, + -0.047437671571969986, + -0.2419000118970871, + -0.025392884388566017, + 0.309783935546875, + 0.0033604963682591915, + -0.477562814950943, + 0.02867126651108265, + 0.20586368441581726, + -0.10453956574201584, + 0.21134954690933228, + -0.07513932883739471, + 0.07223227620124817, + 0.034810442477464676, + -0.058812327682971954, + 0.22262254357337952, + -0.14241869747638702, + 0.3165176808834076, + 0.07775286585092545, + -0.4665459990501404, + 0.10352783650159836, + 0.11230264604091644, + -0.12250849604606628, + 0.12984977662563324, + -0.017463160678744316, + -0.2787351906299591, + -0.33644288778305054, + 0.10812408477067947, + -0.5682505369186401, + 0.3071981966495514, + 0.14078184962272644, + 0.21117588877677917, + 0.2862820327281952, + 0.06327229738235474, + -0.10339625924825668, + -0.3226338028907776, + 0.31105417013168335, + -0.1716984659433365, + -0.1241089329123497, + -0.3806838393211365, + 0.28730952739715576, + 0.010507351718842983, + 0.16846901178359985, + 0.35049453377723694, + -0.041265711188316345, + -0.20084095001220703, + 0.1492597609758377, + -0.28664031624794006, + -0.1353910118341446, + -0.41120415925979614, + -0.11244585365056992, + 0.3438543975353241, + 0.14637498557567596, + 0.23196211457252502, + -0.010446413420140743, + -0.06335321813821793, + 0.180773064494133, + -0.09338242560625076, + -0.48535019159317017, + -0.40611279010772705, + -0.18672305345535278, + -0.21179045736789703, + -0.6999671459197998, + 0.217674121260643, + 0.01753554865717888, + -0.03029773011803627, + 0.1277058869600296, + -0.2320680171251297, + -0.14082303643226624, + 0.04180663824081421, + 0.06477045267820358, + 0.11478924006223679, + -0.3187384307384491, + 0.05777837336063385, + -0.3452073335647583, + -0.2922958433628082, + -0.30748075246810913, + -0.01562795601785183, + 0.09567911922931671, + 0.060069140046834946, + -0.41079023480415344, + 0.04098355397582054, + 0.059345487505197525, + -0.31660306453704834, + -0.10614398121833801, + 0.2051360309123993, + -0.057914044708013535, + 0.10038500279188156, + -0.0613558292388916, + 0.2245662957429886, + 0.31220918893814087, + 0.09747075289487839, + 0.07767906785011292, + 0.3386450707912445, + 0.3851276636123657, + -0.08256098628044128, + -0.010707486420869827, + -0.05073433369398117, + -0.10731181502342224, + 0.01561440248042345, + -0.48184412717819214, + 0.42408692836761475, + -0.055638089776039124, + 0.10660780966281891, + 0.046430934220552444, + 0.24357345700263977, + 0.16865070164203644, + -0.05438386648893356, + 0.10387720912694931, + 0.47241976857185364, + 0.11271689832210541, + 0.21221022307872772, + 0.2705940902233124, + 0.16588911414146423, + 0.40247979760169983, + -0.18358273804187775, + 0.016978692263364792, + 0.20307636260986328, + -0.18915507197380066, + -0.241989865899086, + 0.07001299411058426, + 0.23857074975967407, + 0.589773416519165, + -0.01950402371585369, + -0.20245146751403809, + 0.054474472999572754, + -0.1335858851671219, + -0.09583098441362381, + -0.4321800768375397, + -0.2415412813425064, + 0.0770038291811943, + -0.14758621156215668, + 0.4208151698112488, + 0.2720576524734497, + 0.002531715203076601, + 0.3300319015979767, + -0.4187275469303131, + -0.10987110435962677, + 0.225368469953537, + -0.1325102150440216, + -0.39815929532051086, + 0.384732186794281, + -0.153453066945076, + 0.02423241175711155, + 0.27913838624954224, + -0.35957300662994385, + 0.0007714996463619173, + 0.138849675655365, + 0.4005502462387085, + -0.04827239364385605, + 0.0885753408074379, + -0.09135408699512482, + 0.19406361877918243, + -0.0006583700305782259, + 0.44764232635498047, + 0.06908275187015533, + 0.23763103783130646, + 0.5976005792617798, + 0.25941526889801025, + -0.4335401952266693, + 0.09858392179012299, + -0.16187770664691925, + 0.3733406662940979, + -0.13031376898288727, + -0.1488236039876938, + -0.11551103740930557, + 0.07429931312799454, + 0.04963960126042366, + -0.351158082485199, + 0.2407115399837494, + 0.16445809602737427, + 0.010365576483309269, + 0.0025012993719428778, + 0.38234883546829224, + 0.10678961873054504, + -0.16650933027267456, + 0.5129143595695496, + 0.023392103612422943, + -0.19645501673221588, + 0.41039225459098816, + -0.1551801711320877, + 0.10881633311510086, + 0.034511227160692215, + -0.13134299218654633, + -0.3230586051940918, + 0.052246276289224625, + -0.22134727239608765, + -0.21316103637218475, + 0.037701986730098724, + -0.34579575061798096, + 0.20042334496974945, + -0.20393651723861694, + 0.0869881883263588, + -0.0023645658511668444, + 0.1485261172056198, + 0.04056515544652939, + 0.3398059010505676, + 0.07087814807891846, + -0.12700890004634857, + 0.23298421502113342, + 0.08273950964212418, + -0.11697864532470703, + -0.3195975124835968, + -0.01608797162771225, + -0.14133517444133759, + 0.7711898684501648, + 0.19085493683815002, + 0.03091355413198471, + 0.20081333816051483, + -0.010870455764234066, + -0.18354524672031403, + -0.3269854187965393, + -0.02242014743387699, + -0.17676566541194916, + 0.047413069754838943, + 0.1330634504556656, + 0.08071282505989075, + -0.37875160574913025, + -0.15482810139656067, + -0.2328101545572281, + -0.0671430304646492, + 0.048319678753614426, + -0.09171833097934723, + -0.2341337502002716, + 0.3371189534664154, + 0.15241378545761108, + 0.4341224133968353, + -0.3700358271598816, + 0.24980831146240234, + 0.06248313933610916, + -0.40659916400909424, + -0.05996696278452873, + -0.11607363075017929, + -0.37493187189102173, + -0.12307775020599365, + 0.3208409547805786, + 0.3430353105068207, + -0.11905394494533539, + 0.08755329251289368, + 0.13721242547035217, + 0.13097620010375977, + -0.2746444046497345, + -0.06178935989737511, + 0.18429657816886902, + 0.20303602516651154, + 0.3103589117527008, + 0.21349811553955078, + -0.49614647030830383, + -0.274776428937912, + -0.12761662900447845, + -0.3798926770687103, + 0.02725476771593094, + 0.2739526629447937, + -0.016357962042093277, + -0.1415828913450241, + 0.08315490931272507, + 0.07899128645658493, + -0.16900239884853363, + 0.20980869233608246, + -0.13898847997188568, + 0.2676476836204529, + 0.07797494530677795, + -0.2538994550704956, + -0.15634888410568237, + -0.18480996787548065, + -0.3092120289802551, + -0.1522260159254074, + 0.08071649074554443, + 0.19048675894737244, + -0.32392701506614685, + -0.02081672102212906, + 0.048389602452516556, + -0.14120277762413025, + -0.18376563489437103, + -0.0017155189998447895, + -0.43115779757499695, + 0.3209339380264282, + -0.31359052658081055, + -0.21016925573349, + 0.03895113989710808, + -0.10737566649913788, + -0.07650454342365265, + 0.2830735146999359, + 0.07670741528272629, + 0.36396488547325134, + 0.04495328292250633, + -0.0018465628381818533, + 0.5355179309844971, + 0.08951808512210846, + 0.12100305408239365, + 0.4186916947364807, + 0.06465388089418411, + -0.005260893609374762, + -0.3078297972679138, + -0.13931836187839508, + 0.027160078287124634, + -0.4757441282272339, + -0.16003713011741638, + 0.16252021491527557, + 0.3289731740951538, + -0.3332098424434662, + -0.1891380399465561, + 0.1529703140258789, + 0.019018415361642838, + -0.14274261891841888, + -0.08100107312202454, + -0.2719969153404236, + -0.11481327563524246, + -0.23644065856933594, + -0.016506819054484367, + 0.16306978464126587, + 0.43404659628868103, + 0.2508237957954407, + 0.25189876556396484, + -0.2417704164981842, + -0.1930759847164154, + 0.3287059962749481, + 0.1651315689086914, + -0.07181573659181595, + -0.10282671451568604, + -0.0792161300778389, + 0.3777916133403778, + 0.31520289182662964, + -0.019154995679855347, + 0.21673813462257385, + 0.014757184311747551, + 0.0993335023522377, + 0.3360329568386078, + 0.16681329905986786, + -0.12398365885019302, + 0.05139445513486862, + -0.41673511266708374, + 0.14279310405254364, + -0.30060112476348877, + 0.012536918744444847, + 0.24960018694400787, + -0.22632098197937012, + -0.5404300093650818, + -0.19504639506340027, + 0.3774123787879944, + -0.10665451735258102, + -0.14708974957466125, + 0.26938241720199585, + 0.3281824290752411, + 0.012587044388055801, + -0.2604916989803314, + 0.04198538884520531, + -0.47093626856803894, + -0.20694318413734436, + 0.07113853842020035, + -0.14388355612754822, + -0.18418000638484955, + 0.08070231974124908, + 0.5169589519500732, + 0.4943906366825104, + 0.27048537135124207, + -0.02232401631772518, + 0.18135175108909607, + 0.4792899787425995, + 0.22551099956035614, + -0.3417358100414276, + -10.612969398498535, + -0.23583458364009857, + -0.3083089292049408, + 0.4867674708366394, + -0.2295663058757782, + 0.14240138232707977, + -0.031202634796500206, + -0.08864539116621017, + 0.03624901548027992, + 0.016107553616166115, + -0.1606530249118805, + -0.1502046138048172, + 0.15010227262973785, + 0.30066171288490295, + 0.02771230973303318, + 0.1821480542421341, + -0.2997840940952301, + 0.3419417440891266, + 0.006251112092286348, + 0.17480513453483582, + 0.21505513787269592, + 0.331558495759964, + -0.4022463262081146, + 0.019186489284038544, + -0.12365611642599106, + -0.5105155110359192, + -0.2717512249946594, + 0.7244556546211243, + 0.2511548399925232, + -0.27882707118988037, + 0.051846060901880264, + -0.007568527944386005, + -0.15154413878917694, + 0.13126392662525177, + -0.2907302975654602, + -0.07211855053901672, + 0.011965657584369183, + 0.18208487331867218, + 0.37152326107025146, + -0.16603466868400574, + -0.09436435252428055, + -0.04516251012682915, + 0.4002867639064789, + 0.030036546289920807, + -0.20653727650642395, + -0.7610589265823364, + -0.06475897878408432, + -1.60093355178833, + 0.30361273884773254, + 0.31187334656715393, + 0.26000887155532837, + 0.043115656822919846, + -0.001017667818814516, + 0.3027673661708832, + -0.42958736419677734, + -0.0931563526391983, + -0.3676496148109436, + -0.12975189089775085, + 0.13273227214813232, + 0.21343253552913666, + 0.06282711029052734, + -0.09698394685983658, + 0.599332869052887, + -0.05345505475997925, + -0.278120219707489, + 0.051881931722164154, + 0.13636283576488495, + -0.12086709588766098, + -0.30884993076324463, + -0.8131843209266663, + -0.570020318031311, + 0.06906065344810486, + -0.2309681624174118, + 0.01350134052336216, + 0.3473992645740509, + -0.013177391141653061, + -0.12457465380430222, + 0.2357025444507599, + 0.032397136092185974, + 0.31870728731155396, + 0.1343131959438324, + -0.10926651209592819, + 0.078617624938488, + -0.170307457447052, + -0.17320023477077484, + -0.04526785761117935, + 0.22200177609920502, + 0.38666069507598877, + -0.02993401326239109, + -0.04467448219656944, + 0.05063362792134285, + 0.3480444550514221, + 0.061648063361644745, + -0.12721116840839386, + -0.38754549622535706, + -0.08483155071735382, + -0.11407165974378586, + 0.06103251874446869, + -0.11673273891210556, + -0.07863239198923111, + -0.18443593382835388, + 0.256980836391449, + -0.03315865993499756, + -0.5444391369819641, + -0.4686245024204254, + 0.32892554998397827, + 0.1829226315021515, + 0.18527507781982422, + -0.026170967146754265, + -0.0825628787279129, + -0.24655309319496155, + 0.11517484486103058, + 0.14945384860038757, + 0.39595937728881836, + 0.3182738423347473, + 0.11714871972799301, + 0.04442942887544632, + -0.378705769777298, + -0.05602655187249184, + -0.024040378630161285, + 0.3787958323955536, + -0.1422569453716278, + 0.2779502868652344, + 0.6218904256820679, + 0.07571735978126526, + 0.024187447503209114, + 0.8384838104248047, + -0.2752505838871002, + 0.3071387708187103, + -0.011463401839137077, + 0.13295239210128784, + -0.08327719569206238, + -0.3586958050727844, + -0.032209012657403946, + 0.3978140950202942, + -0.2785652279853821, + 0.709858775138855, + 0.3140382766723633, + -0.4077271521091461, + -0.11811770498752594, + -0.31901615858078003, + 0.5046700239181519, + 0.2688835561275482, + 0.2533348798751831, + -0.1543290913105011, + -0.28520897030830383, + -0.28006991744041443, + 0.20231947302818298, + -0.2105804830789566, + -0.3378787338733673, + -0.06397655606269836, + 0.16288582980632782, + 0.1850431114435196, + -0.22425603866577148, + 0.3228513300418854, + 0.16201657056808472, + -0.1018156185746193, + -0.3589440882205963, + -0.31506431102752686, + 0.0256855096668005, + 0.0537852980196476, + 0.8486726880073547, + -0.01510709710419178, + -0.09814850240945816, + 0.16427114605903625, + 0.07269837707281113, + -0.3097020387649536, + 0.09929049760103226, + 0.17957067489624023, + -0.10508234798908234, + -0.4071674048900604, + 0.19892005622386932, + 0.14888890087604523, + -0.39404556155204773, + -0.0024191022384911776, + -0.027029216289520264, + -0.052089039236307144, + 0.32305586338043213, + -0.31200653314590454, + 0.034821320325136185, + 0.3923436105251312, + -0.1271146684885025, + 0.09398619085550308, + -0.20401090383529663, + -0.2753010094165802, + 0.17496135830879211, + 0.35346296429634094, + 0.08663932979106903, + -0.30915939807891846, + -0.2591710388660431, + -0.5727899670600891, + 0.33444511890411377, + -0.4370860159397125, + -0.0007108812569640577, + 0.18735988438129425, + 0.14898787438869476, + -0.010595777072012424, + 0.14697815477848053, + 0.02961094118654728, + -0.010038983076810837, + -0.1301976442337036, + 0.26193931698799133, + 0.40523019433021545, + -0.25720494985580444, + 0.43329671025276184, + -0.05697001516819, + 0.08231837302446365, + 0.09476158767938614, + -0.23526009917259216, + 0.058678608387708664, + -0.3299776613712311 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_012.json b/src/benchmark/output/results/results_graph_012.json new file mode 100644 index 0000000..f401ed8 --- /dev/null +++ b/src/benchmark/output/results/results_graph_012.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 79-year-old male with a height of 174 cm, weight of 65 kg, and BMI of 21.5 kg/m\u00b2. He has a significant smoking history, having consumed two packs per day for 55 years, which is reflected in his Brinkman Index score of 1100. Additionally, he has a history of total thyroidectomy five years prior due to papillary thyroid carcinoma (PTC).\n\n**Timeline of Diagnoses:**\n\n1. **Six years ago:** The patient was found to have left cervical lymphadenopathy of unknown origin, suspected to be cervical lymph node metastasis of PTC.\n2. **Five years ago:** The patient underwent total thyroidectomy and left cervical lymph node dissection, with histopathology revealing multiple papillary thyroid microcarcinomas (pT1a [m], pEx0, pN1b 4/10, pStage IVA) with negative surgical margins.\n3. **Two years prior to current encounter:** A nodule in the right upper lobe of the lung was identified and monitored with chest CT scans. Increase in nodule density observed compared to two years prior, prompting a transbronchial biopsy; however, no definitive diagnosis was made.\n\n**Timeline of Treatments:**\n\n1. **Five years ago:** The patient underwent total thyroidectomy and left cervical lymph node dissection.\n2. **Current encounter:** The patient was treated with radioiodine therapy (Iodine-131).\n\n**Timeline of Outcomes:**\n\n1. **Six years ago:** Left cervical lymphadenopathy of unknown origin, suspected to be cervical lymph node metastasis of PTC.\n2. **Five years ago:** Multiple papillary thyroid microcarcinomas (pT1a [m], pEx0, pN1b 4/10, pStage IVA) with negative surgical margins.\n3. **Current encounter:** Serum thyroglobulin levels showed a gradual increase over time, indicating progression of disease.\n\n**Clinical Findings:**\n\n* The patient's serum thyroglobulin levels have shown a gradual increase over time, indicating progression of disease.\n* Chest X-rays and CT scans revealed an irregular nodule measuring 15\u00d714 mm in the S1 segment of the right upper lobe.\n* Pulmonary function and electrocardiogram tests showed no abnormalities.\n\n**Surgical Plan:**\nA surgical plan was made to perform intraoperative rapid diagnosis, followed by right upper lobectomy.", + "bertscore": { + "precision": [ + 0.7508742809295654 + ], + "recall": [ + 0.7241371870040894 + ], + "f1": [ + 0.7372633814811707 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 7, + "edge_count": 6, + "avg_in_degree": 0.8571428571428571, + "density": 0.14285714285714285 + }, + "trajectory_embedding": [ + 0.34912702441215515, + -0.02949952892959118, + -0.1141456887125969, + 0.04978491738438606, + 0.08703146129846573, + 0.0669483095407486, + 0.02256781794130802, + 0.284852534532547, + 0.38056764006614685, + -0.44284701347351074, + -0.2560020983219147, + -0.03550972789525986, + -0.5788337588310242, + -0.1445084661245346, + -0.24920526146888733, + 0.2240239828824997, + 0.07581473886966705, + 0.2688005268573761, + 0.006481123622506857, + -0.20998379588127136, + -0.4488418996334076, + 0.18358050286769867, + -0.5051833391189575, + -0.13090825080871582, + 0.21088945865631104, + -0.1182168573141098, + 0.3503682017326355, + 0.4108595848083496, + 0.14657174050807953, + 0.3305985927581787, + -0.047380659729242325, + -0.028875555843114853, + -0.03075440041720867, + 0.04564068838953972, + -0.17507144808769226, + 0.21696984767913818, + 0.24659356474876404, + 0.21421027183532715, + -0.19461318850517273, + 0.11628194898366928, + -0.08906944841146469, + 0.0660843774676323, + 1.0212129354476929, + 0.3617345988750458, + 0.45793724060058594, + -0.8245080709457397, + 0.1244044229388237, + 0.5986994504928589, + -0.530306339263916, + -0.2822190821170807, + 0.05630314350128174, + 0.7602814435958862, + 0.6037783622741699, + -0.2708291709423065, + 0.5852006673812866, + -0.08884161710739136, + -0.2647480070590973, + -0.31245046854019165, + -0.23111963272094727, + 0.06027394160628319, + 0.043433062732219696, + -0.2634923756122589, + 0.32280173897743225, + -0.03592408448457718, + -0.1862800419330597, + -0.13577650487422943, + -0.15646091103553772, + 0.18510083854198456, + -0.012599676847457886, + -0.5517652630805969, + -0.33734774589538574, + -0.2450791597366333, + 0.01607285812497139, + 0.1967383176088333, + 0.19955874979496002, + -0.21433880925178528, + 0.3879709541797638, + -0.1173420175909996, + 0.09098713099956512, + 0.0624917633831501, + 0.021920502185821533, + -0.0988655537366867, + 0.022524211555719376, + 0.30643004179000854, + -0.47196075320243835, + 0.13867785036563873, + -0.05094168707728386, + -0.04814055189490318, + -0.27602967619895935, + 0.2499721348285675, + 0.1930617243051529, + -0.3913283050060272, + 0.10579882562160492, + -0.16372521221637726, + 0.14036870002746582, + 0.16836513578891754, + 0.4297027587890625, + 0.2321961373090744, + 1.0303356647491455, + 0.08436057716608047, + 0.15721552073955536, + 0.09022055566310883, + 0.27458569407463074, + -0.08807633072137833, + 0.4154239296913147, + -0.003092352766543627, + -0.03148782253265381, + -0.591769814491272, + -0.0019117210758849978, + 0.3443872630596161, + -0.08693529665470123, + -0.1702326387166977, + -0.14862915873527527, + -0.2792896032333374, + 0.10609530657529831, + 0.12266699224710464, + -0.0519021674990654, + 0.08607795089483261, + 0.2386460304260254, + -0.37170061469078064, + -0.23081375658512115, + -0.059534721076488495, + 0.4224798381328583, + 0.2547086775302887, + -0.4898169934749603, + -0.04685995727777481, + -0.19544875621795654, + 0.0259504783898592, + 0.0306636281311512, + 0.05665105581283569, + -0.5848091840744019, + -0.2513822019100189, + -0.09858478605747223, + 0.15667612850666046, + -0.10562200099229813, + 0.3138039708137512, + -0.48902803659439087, + 0.049352653324604034, + -1.0541898012161255, + 0.22616569697856903, + -0.44049856066703796, + -0.04880871996283531, + 0.0015412718057632446, + -0.48380210995674133, + -0.2588922083377838, + -0.24927107989788055, + -0.019146597012877464, + 0.11328625679016113, + -0.15966352820396423, + -0.08167292177677155, + -0.0450931079685688, + 0.03404774144291878, + 0.2052077054977417, + 0.3952527642250061, + 0.18712380528450012, + 0.07587383687496185, + 0.057035837322473526, + 0.17694725096225739, + 0.24866966903209686, + -0.04592056944966316, + -0.011520660482347012, + 0.3257269263267517, + 0.22446787357330322, + -0.06067768111824989, + -0.08734660595655441, + -0.698763906955719, + 0.12298839539289474, + -0.19496574997901917, + 0.32353490591049194, + 0.04254220053553581, + -0.03399810940027237, + 0.18894624710083008, + -0.2430749386548996, + 0.5954481363296509, + 0.2610640227794647, + 0.27750423550605774, + 0.2081575095653534, + -0.1408429890871048, + 0.23352769017219543, + 0.14471249282360077, + 0.13488861918449402, + -0.06867638230323792, + 0.6120306849479675, + 0.20315130054950714, + -0.2978260815143585, + 0.39537835121154785, + 0.28284427523612976, + -0.08538173139095306, + -0.13239069283008575, + -0.031643398106098175, + 0.5852556228637695, + -0.3002280592918396, + 0.5396333336830139, + -0.2753986418247223, + -0.00623607961460948, + 0.2320530265569687, + -0.13932274281978607, + -0.1922721564769745, + -0.038019031286239624, + -0.16758358478546143, + 0.15114101767539978, + -0.004590235184878111, + -0.3172590732574463, + 0.16954341530799866, + 0.2641846239566803, + -0.01461394876241684, + 0.22353710234165192, + 0.13508953154087067, + 0.05145808309316635, + 0.023270342499017715, + -0.15243622660636902, + 0.252886563539505, + -0.02915545366704464, + 0.24480369687080383, + 0.08687268942594528, + -0.39741426706314087, + 0.2764303982257843, + -0.1786734163761139, + -0.16349993646144867, + 0.38238978385925293, + -0.20401506125926971, + -0.13379734754562378, + 0.10524261742830276, + -0.11972670257091522, + -0.4784856140613556, + 0.2753630578517914, + 0.19757647812366486, + 0.24940665066242218, + 0.15966102480888367, + -0.053645409643650055, + -0.09984846413135529, + -0.37046170234680176, + 0.22912488877773285, + -0.16166189312934875, + -0.051615502685308456, + -0.32292619347572327, + 0.2529051601886749, + -0.1811572015285492, + 0.07145268470048904, + 0.38077035546302795, + -0.13668085634708405, + -0.22789020836353302, + 0.09857458621263504, + -0.3458169102668762, + -0.14620234072208405, + -0.3458803594112396, + 0.06859606504440308, + 0.22523094713687897, + 0.07779598236083984, + 0.33442798256874084, + 0.07891600579023361, + -0.16664385795593262, + 0.24716536700725555, + -0.16279128193855286, + -0.3939233422279358, + -0.37541550397872925, + -0.0756673589348793, + -0.04616222903132439, + -0.517883837223053, + 0.2069285809993744, + -0.0534944012761116, + -0.14819787442684174, + 0.1001494750380516, + -0.27998989820480347, + 0.002067770343273878, + 0.003959515132009983, + -0.04693029448390007, + 0.02733398787677288, + -0.17418095469474792, + 0.08961211144924164, + -0.26426148414611816, + -0.22724488377571106, + -0.22503675520420074, + 0.09272491931915283, + 0.2799288034439087, + 0.04561690613627434, + -0.28532204031944275, + 0.07959657907485962, + 0.18369926512241364, + -0.40514087677001953, + -0.3344474732875824, + 0.21275243163108826, + -0.29538407921791077, + 0.21573348343372345, + -0.06991275399923325, + 0.14933562278747559, + 0.30430111289024353, + -0.03246872499585152, + 0.11188304424285889, + 0.46682146191596985, + 0.5570749640464783, + 0.0537145733833313, + -0.0025517046451568604, + -0.04218192771077156, + -0.13471266627311707, + 0.0504104420542717, + -0.372021347284317, + 0.3152562081813812, + -0.023027360439300537, + 0.03293919190764427, + 0.15068911015987396, + 0.27848631143569946, + 0.014423404820263386, + -0.2786399722099304, + 0.02508571371436119, + 0.4770130217075348, + 0.14342975616455078, + 0.1388871669769287, + 0.25094056129455566, + 0.2749658524990082, + 0.522006094455719, + -0.030868591740727425, + -0.17360495030879974, + 0.1257772147655487, + -0.07723430544137955, + -0.2924761474132538, + -0.06445921212434769, + 0.09230276197195053, + 0.3389088213443756, + -0.0624522902071476, + -0.2924641966819763, + 0.03977290168404579, + -0.2626831531524658, + 0.033505089581012726, + -0.22059787809848785, + -0.012052314355969429, + 0.1259598582983017, + -0.18582427501678467, + 0.15497036278247833, + -0.009828724898397923, + 0.028030280023813248, + 0.33083996176719666, + -0.4208439886569977, + -0.10353244096040726, + 0.2841397821903229, + -0.08381066471338272, + -0.43060949444770813, + 0.3268898129463196, + -0.05870749428868294, + -0.026811877265572548, + 0.2847345471382141, + -0.3469688296318054, + -0.12066631764173508, + -0.016388650983572006, + 0.20288090407848358, + 0.0478665828704834, + -0.032469116151332855, + -0.11974936723709106, + -0.08826424926519394, + 0.15027663111686707, + 0.6676344275474548, + 0.139017254114151, + 0.154179647564888, + 0.572816789150238, + 0.06794752925634384, + -0.30073657631874084, + 0.00436066510155797, + 0.060047250241041183, + 0.31398770213127136, + -0.20698562264442444, + -0.16434547305107117, + -0.13860981166362762, + 0.0535019114613533, + 0.1551714986562729, + -0.23046518862247467, + 0.024460557848215103, + 0.16666863858699799, + 0.026447126641869545, + -0.02990804612636566, + 0.3802620470523834, + 0.11486423015594482, + -0.052223436534404755, + 0.5798689723014832, + -0.009377921931445599, + -0.1098940521478653, + 0.4223315119743347, + -0.23030082881450653, + 0.22301717102527618, + -0.10496322065591812, + -0.20494519174098969, + -0.5225878357887268, + 0.07972753047943115, + -0.3454532325267792, + -0.13595876097679138, + 0.010636774823069572, + 0.05786373093724251, + 0.17766988277435303, + -0.07888446003198624, + 0.16611576080322266, + 0.01453852653503418, + 0.18580545485019684, + 0.15223738551139832, + 0.3952200710773468, + 0.1183270588517189, + -0.21230557560920715, + 0.163146510720253, + 0.0805780366063118, + -0.011008723638951778, + -0.21883271634578705, + 0.05529912933707237, + -0.18993350863456726, + 0.48405179381370544, + 0.07167265564203262, + 0.10945974290370941, + 0.010476736351847649, + 0.039730753749608994, + -0.21236597001552582, + -0.42956897616386414, + -0.15992143750190735, + -0.08552392572164536, + -0.010301679372787476, + -0.04030225798487663, + 0.03176066651940346, + -0.37172502279281616, + -0.2008632868528366, + 0.008598200045526028, + 0.08835069090127945, + 0.20418262481689453, + -0.14018075168132782, + 0.04195110872387886, + 0.26043573021888733, + 0.12413877248764038, + 0.3675624430179596, + -0.3737724721431732, + 0.262431800365448, + 0.10910743474960327, + -0.2242717742919922, + -0.18791277706623077, + -0.12986454367637634, + -0.3620084822177887, + -0.12181329727172852, + 0.17927227914333344, + 0.40192297101020813, + 0.07194090634584427, + -0.04478076100349426, + 0.0951777920126915, + 0.22410431504249573, + -0.38217562437057495, + 0.023130280897021294, + 0.48125967383384705, + 0.10917042195796967, + 0.4884260296821594, + -0.03412669152021408, + -0.3717055320739746, + -0.19735373556613922, + 0.022388577461242676, + -0.46646079421043396, + 0.12390688806772232, + 0.37782129645347595, + -0.0387258306145668, + -0.02858060598373413, + -0.043513063341379166, + -0.0409785695374012, + -0.17857865989208221, + 0.2816339135169983, + -0.11379048973321915, + 0.1792859584093094, + -0.033952098339796066, + -0.3150966465473175, + 0.0072593530640006065, + -0.21882738173007965, + -0.4675885736942291, + -0.40899866819381714, + 0.27792543172836304, + 0.39745381474494934, + -0.24378658831119537, + 0.12360461801290512, + 0.09182281047105789, + -0.16513462364673615, + -0.21797500550746918, + 0.055653300136327744, + -0.24980108439922333, + 0.39607319235801697, + -0.19262538850307465, + -0.06227564066648483, + 0.11013676971197128, + -0.22036990523338318, + 0.1597326099872589, + 0.27755796909332275, + 0.10789460688829422, + 0.3922363221645355, + 0.16625027358531952, + 0.09647568315267563, + 0.5032820701599121, + 0.1534314900636673, + 0.08936967700719833, + 0.32384201884269714, + 0.031165635213255882, + 0.08457168191671371, + -0.18306802213191986, + -0.13306626677513123, + 0.3010052740573883, + -0.17369475960731506, + 0.02220235764980316, + 0.13540339469909668, + 0.21562834084033966, + -0.32154130935668945, + -0.38056617975234985, + 0.008013888262212276, + -0.06401778012514114, + -0.061384838074445724, + -0.16478140652179718, + -0.23393867909908295, + -0.0012538220034912229, + -0.3803446888923645, + -0.1289863884449005, + 0.324005126953125, + 0.3680182099342346, + 0.20178399980068207, + 0.17466284334659576, + -0.28998902440071106, + -0.24926969408988953, + 0.1451042741537094, + 0.3355887830257416, + 0.10344559699296951, + -0.0348132885992527, + -0.1671663224697113, + 0.36884886026382446, + 0.4820818305015564, + -0.05353472754359245, + 0.07481981813907623, + -0.10058970749378204, + -0.01891663298010826, + 0.020158635452389717, + 0.10136805474758148, + -0.2110435515642166, + -0.019238905981183052, + -0.43389803171157837, + 0.06986375898122787, + -0.26008644700050354, + -0.07571829110383987, + 0.2860575020313263, + -0.19814011454582214, + -0.45445480942726135, + -0.18006505072116852, + 0.29624074697494507, + -0.12175989896059036, + -0.10139206796884537, + 0.2061890810728073, + 0.2551634609699249, + 0.006098269484937191, + -0.24872300028800964, + -0.008317285217344761, + -0.5766156315803528, + -0.2174808233976364, + 0.04830077663064003, + -0.09829165041446686, + -0.05213158577680588, + 0.07611196488142014, + 0.3801928162574768, + 0.6902078986167908, + 0.3016752600669861, + -0.34682029485702515, + 0.00012837137910537422, + 0.3416616916656494, + 0.37189239263534546, + -0.3323756158351898, + -10.57846736907959, + -0.10384257882833481, + -0.29994210600852966, + 0.6008599996566772, + -0.1929602324962616, + 0.0525691919028759, + 0.1420503705739975, + -0.09228786081075668, + 0.06321951001882553, + 0.021961748600006104, + -0.2175065129995346, + 0.09034532308578491, + 0.2904525101184845, + 0.3302747309207916, + -0.054273128509521484, + -0.03558045253157616, + -0.37554749846458435, + 0.20507708191871643, + -0.16768446564674377, + 0.20007142424583435, + 0.07630275189876556, + 0.37696173787117004, + -0.16058634221553802, + 0.21219630539417267, + 0.00133796245791018, + -0.4706459045410156, + -0.261104017496109, + 0.524927020072937, + 0.2364773452281952, + -0.45299774408340454, + 0.3804377615451813, + 0.19451120495796204, + -0.19988247752189636, + 0.18239320814609528, + 0.004885929170995951, + -0.13724645972251892, + -0.10083391517400742, + 0.21629180014133453, + 0.2583012580871582, + -3.820232086582109e-05, + 0.15783634781837463, + -0.24397031962871552, + 0.21927669644355774, + 0.1769656240940094, + -0.20944233238697052, + -0.3838804066181183, + -0.2564419209957123, + -1.6516151428222656, + 0.2230798751115799, + 0.20410595834255219, + 0.35605907440185547, + 0.02410106174647808, + 0.12986193597316742, + 0.2378428876399994, + -0.24728284776210785, + 0.11483412235975266, + -0.2773919105529785, + -0.060972291976213455, + 0.06309967488050461, + 0.08956406265497208, + 0.17815935611724854, + -0.19210192561149597, + 0.3725724518299103, + -0.09898660331964493, + -0.2139996588230133, + 0.12628188729286194, + 0.038749005645513535, + -0.18604646623134613, + -0.424171507358551, + -0.5182550549507141, + -0.5384815335273743, + -0.05332527309656143, + -0.09635304659605026, + -0.08507629483938217, + 0.5718836784362793, + -0.14024926722049713, + -0.4287819564342499, + 0.15545354783535004, + 0.0014794979942962527, + 0.3291144073009491, + 0.18697579205036163, + 0.03824906796216965, + 0.11402428895235062, + -0.14842459559440613, + -0.21594016253948212, + -0.14107011258602142, + 0.33744654059410095, + 0.481460303068161, + 0.034050118178129196, + -0.09563392400741577, + 0.08926020562648773, + 0.28167349100112915, + -0.08176964521408081, + -0.12263821810483932, + -0.43963003158569336, + -0.0022131470032036304, + -0.015330599620938301, + 0.04596559330821037, + 0.010645076632499695, + -0.1596696823835373, + -0.10800908505916595, + -0.025477048009634018, + -0.08623572438955307, + -0.5266116857528687, + -0.46822887659072876, + 0.3009326159954071, + 0.2862165868282318, + 0.17628976702690125, + 0.11820138990879059, + 0.004915459547191858, + -0.06927520781755447, + -0.006213414017111063, + 0.3070330023765564, + 0.4315526783466339, + 0.29945704340934753, + -0.08815063536167145, + -0.10899823904037476, + -0.08312006294727325, + -0.3230603039264679, + -0.07957810908555984, + 0.48067113757133484, + -0.05445441976189613, + 0.034361328929662704, + 0.6462908983230591, + -0.0646815299987793, + -0.06650891155004501, + 0.8824979662895203, + -0.3547782897949219, + 0.22562280297279358, + -0.1433381885290146, + 0.2547093331813812, + -0.15317924320697784, + -0.2504928410053253, + -0.018617331981658936, + 0.4023151993751526, + -0.3056267201900482, + 0.5928489565849304, + 0.18466976284980774, + -0.28410980105400085, + 0.03158803656697273, + -0.2618817687034607, + 0.44646719098091125, + 0.19164946675300598, + 0.195534810423851, + -0.13493798673152924, + -0.29433685541152954, + -0.35262587666511536, + 0.01041866559535265, + -0.3445282280445099, + -0.3317458927631378, + -0.3547325134277344, + 0.08216866105794907, + 0.11067318916320801, + -0.19596758484840393, + 0.31631582975387573, + 0.09930415451526642, + -0.13905668258666992, + -0.21911326050758362, + -0.3050417900085449, + -0.07955537736415863, + 0.2565334439277649, + 0.8179190754890442, + 0.08944594115018845, + -0.1722370833158493, + -0.10371098667383194, + 0.14470167458057404, + -0.16642709076404572, + 0.22122301161289215, + -0.023443171754479408, + -0.04659540206193924, + -0.4497292637825012, + 0.20588989555835724, + 0.1110755205154419, + -0.3885223865509033, + -0.24612747132778168, + -0.26481425762176514, + -0.13152053952217102, + -0.07895217090845108, + -0.15108680725097656, + 0.25676029920578003, + 0.30707836151123047, + -0.08148007094860077, + 0.13577410578727722, + -0.2778380513191223, + 0.0019063694635406137, + 0.03889375552535057, + 0.37004026770591736, + -0.0022121795918792486, + -0.3124537765979767, + -0.46391841769218445, + -0.5121660232543945, + 0.2615920603275299, + -0.4142514765262604, + -0.05625532194972038, + 0.06885974854230881, + 0.16227827966213226, + -0.3209053575992584, + 0.0714024230837822, + -0.14051857590675354, + -0.035339634865522385, + -0.26284530758857727, + 0.25494813919067383, + 0.3801710605621338, + -0.42007240653038025, + 0.22609515488147736, + -0.00981009192764759, + 0.09631197899580002, + 0.13880892097949982, + -0.18120265007019043, + 0.09524141252040863, + -0.20740239322185516 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/graph_013.json b/src/benchmark/output/results/results_graph_013.json similarity index 99% rename from src/benchmark/output/results/graph_013.json rename to src/benchmark/output/results/results_graph_013.json index d9ea34d..d436e7d 100644 --- a/src/benchmark/output/results/graph_013.json +++ b/src/benchmark/output/results/results_graph_013.json @@ -3,13 +3,13 @@ "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is an adult with a diagnosis of stage III Non-Small Cell Lung Carcinoma (NSCLC) accompanied by an upper esophageal stricture. The patient's demographic information is not explicitly provided in the data, but based on the clinical presentation and treatment plan, it can be inferred that the patient is likely an older adult.\n\n**Timeline of Diagnoses:**\n\n1. **Step 1:** The patient was diagnosed with stage III NSCLC and upper esophageal stricture around the same time.\n2. **Step 2 (Two months later):** An initial MRI performed revealed no abnormalities, but the patient's diagnosis of NSCLC remained active.\n3. **Step 3 (One year after Step 1):** Follow-up CT scans showed metastatic spread throughout the brain after presentation to the ED with neurological weakness.\n4. **Step 4:** The patient was admitted to hospital and started on dexamethasone, continued treatment for hypokalemia, and placed on neutropenic precautions. Pantoprazole and enoxaparin sodium were initiated due to possible hemorrhages and deep vein thrombosis prophylaxis.\n5. **Step 5:** MRI confirmed multiple new brain metastases with vasogenic edema and possible hemorrhagic components. The patient's oncologist confirmed metastasis to the brain and bone, and dexamethasone was increased to 6 mg every eight hours. Enoxaparin sodium was discontinued due to possible hemorrhages; mechanical prophylaxis started with thromboembolic deterrent stockings and sequential compression devices.\n6. **Step 6:** The patient tolerated radiation therapy well and docetaxel was re-initiated.\n7. **Step 7 (Refractory disease):** CT scans revealed new developments in the liver and possibly pancreas, indicating refractory disease to second-line docetaxel.\n8. **Step 8 (Hospice care recommendation):** The oncologist discussed a third-line option and recommended hospice care.\n\n**Timeline of Treatments:**\n\n1. **Dexamethasone:** Initially started at 4 mg twice daily, increased to 6 mg every eight hours due to metastasis.\n2. **Docetaxel:** Re-initiated after radiation therapy, with no specified dosage or frequency.\n3. **Pantoprazole and Enoxaparin Sodium:** Initiated for possible hemorrhages and deep vein thrombosis prophylaxis.\n\n**Outcomes:**\n\n1. **Radiation Therapy:** The patient tolerated the treatment well, indicating a positive response to radiation therapy.\n2. **Hospice Care Recommendation:** The oncologist recommended hospice care due to refractory disease, indicating a poor prognosis for the patient's overall health and quality of life.\n\nIn conclusion, this patient was diagnosed with stage III NSCLC accompanied by an upper esophageal stricture and underwent multiple treatments, including radiation therapy, dexamethasone, docetaxel, pantoprazole, and enoxaparin sodium. Despite initial positive responses to treatment, the patient's disease progressed, leading to a recommendation for hospice care due to refractory disease.", "bertscore": { "precision": [ - 0.3270224332809448 + 0.5511878728866577 ], "recall": [ - 0.4040271043777466 + 0.5822768211364746 ], "f1": [ - 0.3614691495895386 + 0.5663059949874878 ] }, "topology": { diff --git a/src/benchmark/output/results/results_graph_014.json b/src/benchmark/output/results/results_graph_014.json new file mode 100644 index 0000000..de6b176 --- /dev/null +++ b/src/benchmark/output/results/results_graph_014.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient's demographic information is not explicitly provided in the data. However, based on the content of the clinical notes, it appears that the patient has been diagnosed with a malignancy affecting the right upper lobe of the lung.\n\n**Timeline of Diagnoses and Treatments:**\n\n1. **Initial Diagnosis:** The patient underwent an enhanced chest CT scan on March 3, 2023 (Node N2), which revealed an irregular thin-walled cystic lesion in the right upper lobe with fine line compartments, measuring approximately 32\u00d727 mm. Enlarged and moderately enhanced lymph nodes were also detected in the 10R, 4R, and 2R regions.\n2. **Treatment Initiation:** Vancomycin was administered for anti-infection and anti-viral treatment (Node N1) on an unspecified date prior to March 3, 2023.\n3. **Repeat Imaging:** A repeat enhanced chest CT scan was performed on May 29, 2023 (Node N2), which showed a significant reduction in the size of the solid component of the right upper lobe mass and similar-sized mediastinal lymph nodes compared to the previous CT scan.\n4. **Immunotherapy and Chemotherapy:** A second cycle of immunotherapy combined with chemotherapy was administered on June 27, 2023 (Node N3).\n\n**Outcomes:**\n\n1. **Partial Remission:** The patient's response assessment indicated partial remission following the repeat imaging study on May 29, 2023.\n2. **Treatment Tolerability:** The patient tolerated the immunotherapy and chemotherapy treatment well, as evidenced by the administration of a second cycle of these treatments.\n\n**Clinical Implications:**\n\nThe patient's clinical course suggests that the malignancy affecting the right upper lobe of the lung is responsive to immunotherapy and chemotherapy. However, further monitoring and follow-up are necessary to assess the durability of the partial remission and to identify potential side effects or toxicities associated with these treatments.\n\n**Future Directions:**\n\n1. **Regular Imaging:** Regular imaging studies should be performed to monitor the patient's response to treatment and to detect any signs of disease progression.\n2. **Dose Escalation:** The dose of immunotherapy and chemotherapy may need to be escalated in subsequent cycles to maintain efficacy and tolerability.\n3. **Combination Therapy:** Further investigation into combination therapies involving immunotherapy, chemotherapy, and targeted therapies may be warranted to optimize treatment outcomes.\n\nIn conclusion, the patient's clinical case report highlights the importance of regular imaging studies, effective treatment strategies, and careful monitoring to manage malignancies affecting the lung.", + "bertscore": { + "precision": [ + 0.5968338847160339 + ], + "recall": [ + 0.5870294570922852 + ], + "f1": [ + 0.5918910503387451 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": true, + "all_nodes_have_timestamps": true, + "weakly_connected_components": 1, + "node_count": 3, + "edge_count": 2, + "avg_in_degree": 0.6666666666666666, + "density": 0.3333333333333333 + }, + "trajectory_embedding": [ + 0.27679479122161865, + 0.12618878483772278, + 0.06410834938287735, + 0.07259220629930496, + 0.051831673830747604, + -0.047761719673871994, + -0.06988674402236938, + 0.16675150394439697, + 0.24480462074279785, + -0.23132383823394775, + -0.13387064635753632, + -0.039049163460731506, + -0.6928800940513611, + -0.08344907313585281, + -0.19096191227436066, + 0.10806896537542343, + -0.06820740550756454, + 0.26352909207344055, + -0.08120671659708023, + -0.3735276758670807, + -0.24116463959217072, + 0.2065410614013672, + -0.5051259994506836, + 0.0012382144341245294, + 0.06261781603097916, + 0.14203502237796783, + 0.20985770225524902, + 0.49529847502708435, + 0.23134948313236237, + 0.37051472067832947, + 0.31670892238616943, + 0.05085783079266548, + 0.10684212297201157, + 0.002364224521443248, + -0.07854381203651428, + 0.32216453552246094, + 0.10401471704244614, + 0.34007135033607483, + -0.10930722951889038, + 0.0519295372068882, + -0.2209366112947464, + 0.1273813098669052, + 0.8545814156532288, + 0.07992769032716751, + 0.4504881799221039, + -0.6817919611930847, + -0.060925792902708054, + 0.6630328297615051, + -0.5316515564918518, + -0.23018185794353485, + 0.2515213191509247, + 0.7087499499320984, + 0.6248883605003357, + -0.22057275474071503, + 0.5395660996437073, + -0.1684308499097824, + -0.47392240166664124, + -0.20602916181087494, + -0.10061100125312805, + -0.03121829777956009, + 0.12562845647335052, + -0.31086885929107666, + 0.19950099289417267, + -0.03786991909146309, + -0.30708739161491394, + -0.05163047835230827, + -0.15409062802791595, + 0.23749355971813202, + 0.01096398290246725, + -0.27745187282562256, + -0.14374859631061554, + -0.05299360677599907, + -0.26444506645202637, + 0.07693296670913696, + -0.021922366693615913, + -0.18057763576507568, + 0.37339434027671814, + -0.05024931952357292, + 0.08762291818857193, + -0.21892769634723663, + 0.06516865640878677, + -0.09712675958871841, + -0.004805462900549173, + 0.4370975196361542, + -0.03376588225364685, + 0.19879813492298126, + -0.329249769449234, + 0.025027751922607422, + -0.28995612263679504, + 0.21761202812194824, + 0.2727013826370239, + -0.18986694514751434, + -0.02583196759223938, + -0.14460568130016327, + 0.016965338960289955, + 0.1475137323141098, + 0.38819894194602966, + 0.26755577325820923, + 1.0292162895202637, + 0.002463751705363393, + 0.3255591094493866, + -0.07840409129858017, + 0.09589558839797974, + -0.05735135078430176, + 0.4885930120944977, + 0.02925599366426468, + 0.23097141087055206, + -0.4386206567287445, + 0.2566349506378174, + 0.37014040350914, + 0.18467263877391815, + -0.14619989693164825, + 0.17433099448680878, + 0.033484190702438354, + 0.12034621089696884, + 0.13527758419513702, + -0.22670197486877441, + 0.4806640148162842, + 0.09475499391555786, + -0.45028814673423767, + -0.04512825980782509, + -0.17038792371749878, + 0.19541440904140472, + 0.3800118863582611, + -0.2640606164932251, + -0.2376171499490738, + -0.1046384945511818, + -0.18447744846343994, + 0.2010146975517273, + -0.09428048133850098, + -0.3328667879104614, + -0.12174857407808304, + -0.04166221246123314, + 0.1328779011964798, + 0.10650335997343063, + 0.2286609262228012, + -0.09750965237617493, + 0.051554158329963684, + -1.0638278722763062, + 0.0668773427605629, + -0.413263201713562, + 0.014753547497093678, + -0.05007404088973999, + -0.5301017165184021, + -0.098699651658535, + 0.11111348867416382, + -0.06931860744953156, + 0.0368628203868866, + -0.1587170958518982, + -0.008111332543194294, + -0.08837559074163437, + 0.042673785239458084, + 0.21223211288452148, + 0.4080146253108978, + 0.12998352944850922, + -0.24962472915649414, + 0.0004037966427858919, + 0.2902468144893646, + 0.20929645001888275, + -0.2655467092990875, + 0.04093274101614952, + 0.30863046646118164, + -0.041205644607543945, + -0.16294892132282257, + -0.03004244528710842, + -0.6792353987693787, + 0.0426594577729702, + -0.0919528678059578, + 0.1862005740404129, + -0.06967917829751968, + -0.19178088009357452, + -0.08000696450471878, + -0.15852133929729462, + 0.5836230516433716, + 0.13843290507793427, + 0.5136252045631409, + -0.08173000067472458, + 0.04967617988586426, + 0.3093126118183136, + 0.15399375557899475, + 0.24573977291584015, + 0.063449926674366, + 0.4750452935695648, + 0.13490748405456543, + -0.37441667914390564, + 0.10103141516447067, + 0.2603847086429596, + 0.06290242820978165, + -0.009709857404232025, + -0.04046066105365753, + 0.28573882579803467, + -0.2640421390533447, + 0.4442528784275055, + -0.30492523312568665, + 0.023284271359443665, + 0.053438469767570496, + -0.3166077435016632, + -0.11086749285459518, + -0.0005651687388308346, + -0.08221239596605301, + 0.10236925631761551, + -0.0001946886332007125, + -0.23157937824726105, + 0.20808322727680206, + 0.1902700662612915, + -0.04687081277370453, + 0.17751772701740265, + 0.06442385911941528, + 0.06932586431503296, + -0.2429075390100479, + -0.11576718091964722, + 0.21667592227458954, + -0.052358973771333694, + 0.18139590322971344, + 0.07352574914693832, + -0.4045393466949463, + -0.0698242336511612, + 0.14627383649349213, + 0.07967320829629898, + 0.010323296301066875, + 0.10056743770837784, + -0.07472719252109528, + -0.024361303076148033, + 0.06330441683530807, + -0.34420880675315857, + 0.32381099462509155, + 0.09316466003656387, + 0.22887159883975983, + 0.21672451496124268, + 0.050610970705747604, + 0.09258028119802475, + -0.26909053325653076, + 0.375466912984848, + -0.13534407317638397, + 0.0397241972386837, + -0.1772078424692154, + 0.03661021217703819, + 0.042105477303266525, + 0.007648626808077097, + 0.1563829630613327, + -0.10942184180021286, + -0.0317070372402668, + 0.12305904179811478, + -0.0319063700735569, + 0.056604016572237015, + -0.29822465777397156, + 0.11449003219604492, + 0.36486899852752686, + 0.17365491390228271, + 0.20230047404766083, + 0.05721811577677727, + -0.03431251645088196, + 0.36714664101600647, + -0.22852003574371338, + -0.312507688999176, + -0.46473726630210876, + -0.2614840269088745, + -0.34238144755363464, + -0.5205318331718445, + -0.05343985557556152, + 0.04127506911754608, + -0.13117022812366486, + 0.21724413335323334, + -0.1875009983778, + -0.29381629824638367, + -0.04038449004292488, + 0.07693775743246078, + 0.1861618012189865, + -0.14896108210086823, + 0.22206945717334747, + -0.05329321697354317, + -0.24990566074848175, + -0.19792942702770233, + -0.02949179895222187, + 0.15711671113967896, + 0.15747611224651337, + -0.022253328934311867, + -0.14027275145053864, + -0.07822053879499435, + -0.30058568716049194, + -0.20757968723773956, + 0.26996275782585144, + -0.11570292711257935, + 0.1235208511352539, + -0.0665619745850563, + 0.4547291100025177, + 0.22234265506267548, + 0.14791616797447205, + -0.01122146937996149, + 0.0678667202591896, + 0.344651460647583, + 0.0899815559387207, + -0.20718109607696533, + -0.09427426010370255, + -0.05318191647529602, + -0.1111338660120964, + -0.2556239068508148, + 0.35056623816490173, + 0.07964632660150528, + 0.23832964897155762, + 0.0246121883392334, + 0.32887494564056396, + 0.1453317403793335, + 0.01320184301584959, + -0.19307227432727814, + 0.40156683325767517, + 0.21225236356258392, + 0.04999319836497307, + 0.12021594494581223, + 0.17970681190490723, + 0.441604882478714, + -0.05704985186457634, + -0.042021576315164566, + -0.1032443717122078, + -0.2320123165845871, + -0.2828953266143799, + -0.04472646117210388, + 0.19763337075710297, + 0.40467891097068787, + -0.07983356714248657, + -0.07960843294858932, + 0.1981615573167801, + -0.131442591547966, + -0.1654232293367386, + -0.18826806545257568, + -0.33340176939964294, + 0.06129930913448334, + -0.12150812149047852, + 0.47293147444725037, + 0.04380020126700401, + 0.06328459084033966, + 0.2956768274307251, + -0.3471057713031769, + -0.21680568158626556, + 0.01784111000597477, + -0.0695519968867302, + -0.42456844449043274, + 0.36384978890419006, + -0.23012472689151764, + -0.11912200599908829, + 0.20001626014709473, + -0.3702971935272217, + -0.1666375994682312, + -0.15023106336593628, + 0.3654572069644928, + 0.14009225368499756, + -0.023508617654442787, + -0.11044768244028091, + 0.2470555454492569, + 0.01955532468855381, + 0.36383605003356934, + 0.05502639338374138, + 0.2019302099943161, + 0.13316448032855988, + -0.03498097136616707, + -0.19249550998210907, + 0.09353720396757126, + 0.04357808828353882, + -0.06466036289930344, + -0.2618125379085541, + -0.146221324801445, + -0.14355574548244476, + 0.0959744080901146, + 0.13427844643592834, + -0.4750765860080719, + 0.14416474103927612, + 0.28550925850868225, + 0.09306600689888, + -0.017036939039826393, + 0.370781272649765, + 0.17031610012054443, + 0.0190906822681427, + 0.3595050871372223, + 0.019342904910445213, + -0.07493378221988678, + 0.2953473627567291, + 0.01306274626404047, + 0.15884017944335938, + 0.0009968876838684082, + -0.4273696839809418, + -0.2834527790546417, + 0.08715614676475525, + -0.14300477504730225, + -0.07442623376846313, + 0.020420486107468605, + -0.3000558316707611, + 0.09010418504476547, + -0.3193618953227997, + 0.055127907544374466, + -0.04916481301188469, + 0.14593560993671417, + 0.052162785083055496, + 0.3041764795780182, + -0.07939920574426651, + -0.15525050461292267, + 0.29369762539863586, + 0.062000762671232224, + 0.12035015225410461, + -0.0543101541697979, + -0.28199201822280884, + -0.02475348673760891, + 0.7319598197937012, + 0.050173070281744, + -0.19156140089035034, + 0.04697426036000252, + -0.09658347815275192, + -0.30366161465644836, + -0.21830220520496368, + -0.0689663365483284, + -0.31673464179039, + -0.04836093261837959, + -0.021496234461665154, + -0.0016167486319318414, + -0.22088532149791718, + -0.27171894907951355, + -0.18977642059326172, + -0.031083041802048683, + 0.012492716312408447, + 0.09031275659799576, + -0.30837568640708923, + 0.16883766651153564, + 0.08607671409845352, + 0.41132426261901855, + -0.18461525440216064, + 0.18155233561992645, + -0.12680839002132416, + -0.3434540331363678, + -0.04572116956114769, + 0.17495162785053253, + -0.2512817680835724, + -0.0063690789975225925, + 0.08377096056938171, + 0.12645137310028076, + -0.20827555656433105, + 0.2250029295682907, + 0.0899825468659401, + -0.02533005177974701, + -0.10225532203912735, + -0.04715387150645256, + 0.15249736607074738, + -0.12323033809661865, + 0.29295065999031067, + -0.09351879358291626, + -0.42179742455482483, + -0.10419949144124985, + -0.11433607339859009, + -0.1471673995256424, + 0.0026477184146642685, + 0.13630646467208862, + -0.03010624088346958, + -0.17058922350406647, + -0.004100287798792124, + 0.10173997282981873, + -0.02191179431974888, + 0.2599031627178192, + 0.11655479669570923, + 0.2709404230117798, + -0.04587378725409508, + -0.3610052168369293, + -0.10513880103826523, + -0.3275708258152008, + -0.13998375833034515, + -0.17367790639400482, + 0.2992000877857208, + -0.01680152863264084, + -0.28253844380378723, + -0.13146258890628815, + 0.02028496004641056, + -0.17221327126026154, + -0.17177975177764893, + -0.13927105069160461, + -0.1999528855085373, + 0.34796619415283203, + -0.2507767975330353, + -0.2681841552257538, + 0.13007612526416779, + -0.3177326023578644, + 0.2494804412126541, + 0.14459489285945892, + -0.018600741401314735, + 0.21674536168575287, + -0.07219605892896652, + -0.10554937273263931, + 0.36096081137657166, + -0.07216360419988632, + -0.08158066123723984, + 0.29566383361816406, + -0.06433480232954025, + 0.20521318912506104, + -0.1613079011440277, + -0.13310769200325012, + 0.23678374290466309, + -0.41320839524269104, + 0.20448648929595947, + -0.005529175046831369, + 0.39598870277404785, + -0.28862133622169495, + -0.2531064450740814, + 0.07823903113603592, + 0.005604463163763285, + -0.14403419196605682, + -0.3016914427280426, + -0.2123241424560547, + 0.0471818633377552, + -0.16554351150989532, + 0.2598092257976532, + 0.09658980369567871, + 0.41419628262519836, + 0.0071196905337274075, + 0.18518173694610596, + -0.020540595054626465, + -0.5993547439575195, + 0.11823168396949768, + 0.20067165791988373, + 0.05622433125972748, + -0.10937537997961044, + -0.09106176346540451, + 0.2717893123626709, + 0.2693256735801697, + -0.05731789395213127, + 0.04044942185282707, + -0.14990895986557007, + -0.35142090916633606, + 0.2149152308702469, + 0.20791476964950562, + -0.14390359818935394, + 0.1806323528289795, + -0.22661490738391876, + 0.1579340249300003, + -0.27953362464904785, + 0.008327390067279339, + 0.2217966467142105, + -0.38696369528770447, + -0.5885074734687805, + -0.018901722505688667, + 0.09458047896623611, + -0.0622105747461319, + -0.12541086971759796, + 0.4085380733013153, + 0.6781013607978821, + 0.22610647976398468, + -0.12758605182170868, + 0.16945146024227142, + -0.43694472312927246, + 0.04243253543972969, + 0.11634664982557297, + -0.08940566331148148, + -0.12994445860385895, + -0.019390501081943512, + 0.5450975894927979, + 0.22248990833759308, + 0.21730440855026245, + -0.2511000335216522, + 0.17787164449691772, + 0.3563788831233978, + 0.18705792725086212, + -0.15333785116672516, + -10.89339542388916, + -0.16207025945186615, + -0.13600347936153412, + 0.5155193209648132, + -0.3339745104312897, + 0.17372064292430878, + 0.13067792356014252, + -0.24535112082958221, + 0.12202385067939758, + 0.032493848353624344, + -0.19920921325683594, + 0.10847526043653488, + 0.2270018309354782, + 0.16949833929538727, + 0.005090049933642149, + -0.09686598181724548, + -0.1314041167497635, + 0.2035239189863205, + 0.08207152038812637, + 0.2944895327091217, + 0.14620724320411682, + 0.40934792160987854, + -0.14815761148929596, + 0.19816382229328156, + 0.10601142793893814, + -0.224819615483284, + -0.20963817834854126, + 0.50124591588974, + 0.2780187427997589, + -0.2980700433254242, + 0.07935493439435959, + -0.007513252552598715, + -0.02329307235777378, + -0.2005077600479126, + -0.05102143809199333, + -0.3055952191352844, + 0.0369572639465332, + -0.09867945313453674, + 0.2827214300632477, + -0.1284017711877823, + -0.15666189789772034, + -0.10051128268241882, + 0.24477370083332062, + 0.12502320110797882, + -0.12218720465898514, + -0.6264570355415344, + -0.11115021258592606, + -1.5540027618408203, + 0.33794161677360535, + 0.3328131139278412, + 0.35076841711997986, + 0.18569977581501007, + 0.13187533617019653, + 0.17771656811237335, + -0.45981767773628235, + 0.08770660310983658, + -0.08996972441673279, + 0.027752414345741272, + -0.0637783631682396, + -0.0697624608874321, + 0.23598463833332062, + -0.1220000758767128, + 0.5305712819099426, + -0.23270805180072784, + -0.31364646553993225, + 0.19776897132396698, + 0.025294503197073936, + -0.06054943799972534, + -0.2785826623439789, + -0.523565948009491, + -0.6455312967300415, + 0.011781626380980015, + -0.3032590448856354, + 0.16843664646148682, + 0.19932453334331512, + 0.03955701366066933, + -0.12797340750694275, + 0.07661990076303482, + -0.07141813635826111, + 0.1534172147512436, + 0.034129124134778976, + -0.04402122274041176, + 0.1742907017469406, + -0.12378737330436707, + -0.053658414632081985, + -0.031857773661613464, + 0.08642350882291794, + 0.6212309002876282, + 0.07201962918043137, + -0.05798890069127083, + 0.06143666431307793, + 0.48982834815979004, + 0.10239949077367783, + -0.24389950931072235, + -0.5377797484397888, + -0.057787712663412094, + -0.07590919733047485, + 0.10738164186477661, + 0.018894897773861885, + 0.09657532721757889, + -0.20313458144664764, + 0.08355448395013809, + -0.0604703314602375, + -0.36544275283813477, + -0.29742613434791565, + 0.38614240288734436, + 0.22175811231136322, + 0.16717952489852905, + 0.13993757963180542, + -0.04724356532096863, + 0.024508053436875343, + 0.21301986277103424, + 0.20699329674243927, + 0.5728276371955872, + 0.19763313233852386, + -0.015668509528040886, + -0.29365959763526917, + -0.20929193496704102, + -0.18135511875152588, + 0.26355138421058655, + 0.29317155480384827, + 0.05395033583045006, + 0.3725375831127167, + 0.4928360879421234, + -0.18985378742218018, + 0.0013224134454503655, + 0.9201081395149231, + -0.35347089171409607, + 0.30169492959976196, + -0.18208235502243042, + 0.3008313775062561, + -0.05140416696667671, + -0.28655147552490234, + -0.03058987855911255, + 0.41242900490760803, + -0.2723323106765747, + 0.29219335317611694, + 0.06439600139856339, + -0.28926917910575867, + 0.0034048433881253004, + -0.23658651113510132, + 0.5842421650886536, + 0.38788434863090515, + 0.4202174246311188, + -0.23137922585010529, + -0.6165726780891418, + -0.07921815663576126, + 0.33722934126853943, + -0.25492027401924133, + -0.36950406432151794, + 0.049048084765672684, + -0.12366709858179092, + 0.0654856488108635, + -0.28239962458610535, + 0.427400678396225, + -0.10967753082513809, + -0.07580512017011642, + -0.34793102741241455, + -0.41095396876335144, + 0.19219987094402313, + 0.22497260570526123, + 0.44071850180625916, + -0.07375030964612961, + -0.00441725505515933, + -0.07125037163496017, + 0.1109541729092598, + -0.1671902984380722, + 0.2430492639541626, + -0.05391496419906616, + -0.13366587460041046, + -0.5287448167800903, + 0.06070120260119438, + -0.004863540176302195, + -0.17156203091144562, + -0.16008049249649048, + -0.2058091163635254, + 0.23383741080760956, + 0.09073931723833084, + -0.1545603722333908, + 0.2652296721935272, + 0.34470391273498535, + 0.04135886952280998, + -0.1305282711982727, + -0.32562628388404846, + -0.15752385556697845, + 0.26156288385391235, + 0.15287484228610992, + 0.03937121853232384, + -0.1431366205215454, + -0.3567705452442169, + -0.40526118874549866, + 0.2897845506668091, + -0.2629670202732086, + -0.15560011565685272, + 0.37807345390319824, + 0.05456409230828285, + 0.022167153656482697, + 0.038214508444070816, + -0.2187020629644394, + -0.06740371137857437, + -0.12110123038291931, + 0.04156218841671944, + 0.4454265534877777, + -0.28361883759498596, + 0.20849967002868652, + -0.247344970703125, + 0.02466297149658203, + 0.009776592254638672, + -0.29319116473197937, + 0.33941009640693665, + -0.24472258985042572 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_015.json b/src/benchmark/output/results/results_graph_015.json new file mode 100644 index 0000000..ba741db --- /dev/null +++ b/src/benchmark/output/results/results_graph_015.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 76-year-old male with a history of metastatic non-small cell carcinoma of the lung and coronary artery disease status post coronary artery bypass grafting (CABG).\n\n**Timeline of Diagnoses:**\n\n* Metastatic non-small cell carcinoma of the lung: The patient's cancer was diagnosed, which led to further complications.\n* Coronary artery disease: The patient had a history of coronary artery disease, which required CABG surgery.\n* Intracardiac metastasis: The patient developed intracardiac metastasis, indicating that the cancer had spread to the heart.\n* Transient ischemic attack (TIA): The patient experienced a TIA, which is a temporary interruption in blood flow to part of the brain.\n\n**Timeline of Treatments:**\n\n* Coronary artery bypass grafting (CABG): The patient underwent CABG surgery as part of his treatment for coronary artery disease.\n* No specific treatments are mentioned for the metastatic non-small cell carcinoma or intracardiac metastasis in this case report.\n\n**Clinical Findings and Outcomes:**\n\nThe patient's clinical findings include:\n- Metastatic non-small cell carcinoma of the lung (diagnosis code C34.9)\n- Atherosclerotic heart disease of native coronary artery without angina pectoris (diagnosis code I25.10)\n- Chronic total occlusion of coronary artery (diagnosis code I25.82)\n- Cerebral infarction, unspecified (diagnosis code I63.9)\n\nThe patient's treatment for coronary artery disease involved CABG surgery.\n\n**Current Status:**\n\nThe patient is currently under the care of [insert name] and has a diagnosis of malignant neoplasm of unspecified part of bronchus or lung (C34.9) and cerebral infarction, unspecified (I63.9). The patient's history of coronary artery disease is noted as historical.\n\n**Prognosis:**\n\nThe prognosis for this patient is uncertain due to the presence of metastatic non-small cell carcinoma of the lung and intracardiac metastasis. Further treatment options should be discussed with a healthcare provider.\n\nNote: This narrative is based on the provided data and may not reflect the actual clinical case report or patient's current status.", + "bertscore": { + "precision": [ + 0.5106064677238464 + ], + "recall": [ + 0.5770247578620911 + ], + "f1": [ + 0.5417876243591309 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 1, + "edge_count": 0, + "avg_in_degree": 0.0, + "density": 0 + }, + "trajectory_embedding": [ + 0.2389703392982483, + 0.3098335266113281, + -0.3165978193283081, + -9.601563215255737e-05, + 0.38989344239234924, + 0.5903520584106445, + -0.588888943195343, + -0.03018897771835327, + -0.08889243006706238, + -0.6207064390182495, + -0.0009037437266670167, + 0.39261308312416077, + -0.7441316843032837, + -0.2979073226451874, + 0.16640852391719818, + 0.43679654598236084, + 0.048064105212688446, + 0.2997942864894867, + 0.020915057510137558, + -0.35394373536109924, + -0.12917307019233704, + -0.42669862508773804, + -0.38161155581474304, + 0.2666407525539398, + -0.013479489833116531, + -0.1443164050579071, + 0.20557120442390442, + 0.7344173789024353, + 0.2633451223373413, + 0.07479584217071533, + -0.3639359474182129, + -0.21168191730976105, + -0.17456236481666565, + -0.1412750631570816, + -0.45164915919303894, + 0.5824820399284363, + 0.2571425437927246, + 0.058434873819351196, + -0.3002069294452667, + -0.2177613377571106, + 0.09065016359090805, + 0.17029985785484314, + 0.4070374667644501, + 0.15395845472812653, + 0.4567863345146179, + -0.5053019523620605, + -0.3927955627441406, + 0.3735124468803406, + -0.5367979407310486, + -0.37738627195358276, + 0.5273672938346863, + 1.0248315334320068, + 0.9738489389419556, + -0.3364623188972473, + 0.6211707592010498, + -0.2080739140510559, + -0.05168095976114273, + -0.42788687348365784, + -0.40873366594314575, + 0.2244822382926941, + -0.10075759887695312, + -0.08978196978569031, + 0.20909132063388824, + -0.1566423624753952, + 0.2230314016342163, + -0.21731460094451904, + 0.01558227464556694, + 0.23005594313144684, + -0.14157332479953766, + -0.37254050374031067, + -0.2757347822189331, + -0.5918483734130859, + 0.16276821494102478, + -0.18808773159980774, + 0.10414617508649826, + 0.07445500791072845, + 0.35065507888793945, + -0.018077298998832703, + 0.08305726945400238, + 0.048546068370342255, + -0.3140362799167633, + 0.03994307667016983, + -0.30580392479896545, + 0.10322455316781998, + -0.608963131904602, + 0.009167537093162537, + -0.1288742870092392, + -0.385078489780426, + -0.33450910449028015, + 0.3499438762664795, + -0.1614782065153122, + -0.3701261281967163, + 0.3107415735721588, + -0.34904929995536804, + 0.6092851758003235, + -0.1511904001235962, + 0.7860685586929321, + -0.06480143964290619, + 0.9641114473342896, + -0.006230007857084274, + 0.02379695139825344, + -0.16553464531898499, + 0.2170470952987671, + -0.2713906466960907, + -0.034845832735300064, + -0.07268562912940979, + -0.006441563367843628, + -0.5543556213378906, + 0.17041689157485962, + 0.4779095947742462, + 0.0811966210603714, + -0.332575261592865, + 0.13267382979393005, + -0.6709529161453247, + 0.4110915958881378, + 0.10410167276859283, + -0.17547795176506042, + 0.14404325187206268, + 0.21824617683887482, + 0.029060691595077515, + -0.22877137362957, + 0.16716638207435608, + 0.4145357012748718, + -0.20713195204734802, + -0.5956100821495056, + 0.10063037276268005, + -0.3717871904373169, + 0.522958517074585, + -0.41824573278427124, + 0.1846962720155716, + -0.3072289824485779, + -0.03729293867945671, + 0.11981947720050812, + 0.10904988646507263, + -0.16605128347873688, + 0.06266038119792938, + -0.9482381343841553, + 0.385905385017395, + -0.8172354102134705, + 0.36645805835723877, + -0.623996376991272, + -0.6455236673355103, + -0.03590235486626625, + -0.5301195383071899, + -0.5014537572860718, + -0.4331091046333313, + 0.1935933232307434, + 0.43719929456710815, + -0.055473390966653824, + -0.45591259002685547, + 0.05647442489862442, + -0.22726359963417053, + 0.49288076162338257, + 0.17855969071388245, + 0.3157171905040741, + 0.31841742992401123, + 0.18921761214733124, + 0.3025393486022949, + -0.3827427625656128, + 0.012406319379806519, + 0.5429196953773499, + 0.6159993410110474, + 0.2306712567806244, + 0.06609383970499039, + -0.24710452556610107, + -0.6565123200416565, + 0.05291781201958656, + -0.2089766263961792, + 0.371540367603302, + 0.21041856706142426, + -0.15523123741149902, + 0.42610108852386475, + -0.18869426846504211, + 0.6318644285202026, + 0.4073850214481354, + 0.41544288396835327, + 0.4542121887207031, + 0.5432044267654419, + 0.09603576362133026, + 0.23949187994003296, + -0.027804303914308548, + -0.5558944940567017, + 0.45558831095695496, + 0.3140001893043518, + 0.1982312798500061, + 0.7465840578079224, + 0.23025968670845032, + 0.10403624176979065, + -0.29151567816734314, + -0.010634269565343857, + 0.6111639142036438, + -0.3232841193675995, + 0.4231526851654053, + -0.43725457787513733, + -0.3464846611022949, + 0.017061039805412292, + -0.2285699099302292, + -0.1876550018787384, + -0.2980075776576996, + 0.2594115436077118, + 0.133003830909729, + 0.07222534716129303, + -0.20265358686447144, + 0.32673364877700806, + 0.37002483010292053, + -0.01477870438247919, + 0.14647141098976135, + -0.007400058209896088, + 0.3505983054637909, + -0.016183264553546906, + -0.6536762714385986, + 0.6340172290802002, + -0.571021556854248, + 0.09194068610668182, + 0.04613776504993439, + -0.32175320386886597, + 0.13421142101287842, + -0.08016829192638397, + 0.07741203159093857, + 0.40549108386039734, + -0.029363662004470825, + -0.021499834954738617, + -0.2499600201845169, + -0.11491072177886963, + -0.16818147897720337, + 0.24380303919315338, + 0.01120261661708355, + 0.4374444782733917, + 0.1797056496143341, + -0.47466692328453064, + 0.015287317335605621, + -0.3805888891220093, + -0.016915656626224518, + 0.005951583385467529, + 0.09004507213830948, + -0.36537405848503113, + 0.1543998271226883, + -0.057106923311948776, + 0.22450803220272064, + -0.008389126509428024, + 0.05972324311733246, + -0.08909795433282852, + 0.11305461823940277, + -0.35245224833488464, + -0.018799209967255592, + -0.5273708701133728, + 0.17344793677330017, + 0.0860033631324768, + -0.2016955316066742, + 0.20644137263298035, + -0.033858995884656906, + 0.1698063313961029, + -0.18886756896972656, + -0.147933691740036, + -0.31989797949790955, + -0.32472655177116394, + -0.14421366155147552, + 0.26201221346855164, + -0.1793866753578186, + 0.23140989243984222, + -0.1385350227355957, + -0.03702983260154724, + 0.3329506814479828, + -0.44802021980285645, + -0.12889400124549866, + 0.15176373720169067, + -0.14790992438793182, + -0.12356607615947723, + -0.2684727907180786, + 0.12000677734613419, + -0.46702829003334045, + -0.049279674887657166, + -0.0700707882642746, + 0.10644999146461487, + 0.22632363438606262, + 0.16765142977237701, + -0.17514774203300476, + 0.2578108310699463, + 0.4613259732723236, + -0.4161635637283325, + -0.16292433440685272, + 0.5992622375488281, + -0.06727410107851028, + 0.7997097969055176, + 0.276291161775589, + 0.02702915295958519, + 0.28205782175064087, + -0.1051710918545723, + 0.43137118220329285, + 0.0883198231458664, + 0.6171201467514038, + 0.04202908277511597, + 0.03374591842293739, + 0.23114104568958282, + 0.0631459578871727, + -0.009284839034080505, + -0.2547362446784973, + 0.5557323694229126, + -0.4143935441970825, + 0.07173341512680054, + -0.5556164979934692, + -0.04506325349211693, + 0.0285508893430233, + -0.6258847117424011, + 0.1453758180141449, + 0.20794081687927246, + 0.32577255368232727, + 0.29005688428878784, + -0.3703134059906006, + 0.45825162529945374, + 0.3708838224411011, + 0.1895563155412674, + -0.4704546630382538, + -0.08926907181739807, + 0.20663368701934814, + -0.05621600151062012, + -0.27574488520622253, + 0.5411112904548645, + 0.12566693127155304, + -0.3637026846408844, + -0.10469653457403183, + 0.4923703670501709, + -0.49658769369125366, + 0.17811483144760132, + 0.1805437207221985, + 0.033693745732307434, + 0.10318517684936523, + -0.23825687170028687, + 0.14425522089004517, + -0.27074316143989563, + -0.060507506132125854, + 0.12243480980396271, + -0.13268448412418365, + -0.08557020872831345, + 0.40370067954063416, + 0.30130016803741455, + -0.618583619594574, + 0.22126927971839905, + 0.3465271592140198, + -0.014495469629764557, + 0.6946158409118652, + 0.1527618169784546, + 0.1356368362903595, + -0.31592026352882385, + -0.004844323731958866, + -0.2391519546508789, + -0.1071392372250557, + 0.2698078155517578, + -0.16164061427116394, + -0.06592604517936707, + 0.35281726717948914, + 0.18694272637367249, + 0.019529417157173157, + 0.6196505427360535, + -0.41608303785324097, + -0.40083959698677063, + -0.03867078572511673, + -0.31046736240386963, + 0.014953549951314926, + 0.21786372363567352, + -0.5568239688873291, + -0.5550671219825745, + -0.15971170365810394, + 0.03841513767838478, + -0.027597397565841675, + 0.09484322369098663, + 0.21285507082939148, + 0.28787460923194885, + -0.10962551087141037, + 0.26338711380958557, + 0.05503835156559944, + -0.3152390718460083, + 0.5449952483177185, + -0.13711729645729065, + -0.35061997175216675, + 0.14951394498348236, + -0.3936808407306671, + 0.30108407139778137, + -0.16283853352069855, + -0.2801792323589325, + -0.42588046193122864, + 0.03448659926652908, + -0.40357667207717896, + -0.7284085750579834, + 0.24703344702720642, + -0.45491668581962585, + 0.3542909622192383, + 0.29765307903289795, + 0.26006168127059937, + 0.28016453981399536, + 0.18972787261009216, + -0.22739890217781067, + 0.18606609106063843, + 0.1025865375995636, + -0.29099059104919434, + -0.14638546109199524, + -0.116187185049057, + 0.0714387521147728, + -0.0777483657002449, + 0.4307873249053955, + 0.21791532635688782, + 0.3522239327430725, + -0.16662029922008514, + -0.10012664645910263, + -0.03351317346096039, + 0.3161313533782959, + 0.2803148925304413, + -0.25653356313705444, + -0.10975254327058792, + -0.003858368843793869, + -0.03618452697992325, + 0.08194563537836075, + 0.3689180314540863, + -0.3240503966808319, + -0.5956764221191406, + -0.1468779593706131, + 0.07775306701660156, + 0.2198868989944458, + 0.12102263420820236, + -0.04229359328746796, + 0.35199928283691406, + 0.20200452208518982, + 0.41259610652923584, + -0.4956706464290619, + 0.3694636821746826, + -0.079969622194767, + -0.40642043948173523, + -0.38314715027809143, + -0.17921429872512817, + -0.13085292279720306, + -0.014782138168811798, + 0.24626626074314117, + 0.5360507965087891, + 0.31954294443130493, + -0.13702955842018127, + 0.33798158168792725, + -0.10651233792304993, + -0.42653709650039673, + 0.23125754296779633, + 0.3267395794391632, + -0.051813751459121704, + 0.19039073586463928, + 0.042733240872621536, + -0.4041391611099243, + -0.7801225781440735, + -0.1850864291191101, + -0.5212448239326477, + 0.48097535967826843, + 0.003191854804754257, + -0.3584572970867157, + -0.3347712457180023, + -0.46353498101234436, + -0.18914750218391418, + -0.3836524784564972, + -0.09465295821428299, + -0.23992778360843658, + 0.518112063407898, + 0.5191221237182617, + -0.11515665054321289, + 0.3566492199897766, + -0.14425210654735565, + -0.44946739077568054, + -0.33885300159454346, + 0.5608147382736206, + 0.4803211987018585, + -0.5010053515434265, + -0.1264108419418335, + -0.11029957234859467, + 0.11882941424846649, + -0.4111101031303406, + -0.21157428622245789, + 0.1516641527414322, + 0.46489036083221436, + 0.30386096239089966, + -0.3437502086162567, + -0.10685817152261734, + -0.016663722693920135, + -0.1269133985042572, + 0.06840302795171738, + 0.0034700408577919006, + 0.44815877079963684, + 0.40635213255882263, + 0.020577024668455124, + 0.48065972328186035, + 0.3182986080646515, + 0.2734185755252838, + 0.33232566714286804, + -0.10746391117572784, + 0.20910504460334778, + -0.5217775106430054, + -0.0855599120259285, + 0.08855283260345459, + -0.35151317715644836, + -0.1877375692129135, + -0.21275702118873596, + -0.14520278573036194, + -0.3594425320625305, + -0.2736580967903137, + 0.09262949228286743, + -0.3425097167491913, + -0.4552379846572876, + -0.02626919187605381, + 0.0339023619890213, + -0.0381702221930027, + 0.14885617792606354, + -0.17025981843471527, + 0.19888223707675934, + -0.26312315464019775, + -0.03204527497291565, + 0.0583663210272789, + -0.09758896380662918, + -0.053306903690099716, + -0.07854506373405457, + 0.5047153830528259, + 0.15904831886291504, + 0.340497225522995, + -0.06721927225589752, + 0.604390561580658, + 0.17915835976600647, + 0.0964708998799324, + -0.21578893065452576, + 0.18773609399795532, + 0.45928817987442017, + -0.08562985062599182, + 0.28325554728507996, + 0.07660016417503357, + 0.39923933148384094, + -0.30445486307144165, + 0.15936273336410522, + -0.04912811145186424, + -0.5333974361419678, + 0.23860691487789154, + -0.4876668155193329, + -0.5751733779907227, + 0.42516013979911804, + 0.5291058421134949, + 0.08667256683111191, + 0.1469327211380005, + 0.2787007987499237, + 0.6868070363998413, + -0.15365184843540192, + -0.5677317976951599, + -0.1178092360496521, + -0.319806307554245, + -0.39507097005844116, + -0.32486867904663086, + -0.0563889816403389, + 0.003801180049777031, + -0.07082203030586243, + 0.3203139007091522, + 0.7005394697189331, + 0.025692548602819443, + -0.1564420610666275, + 0.5258826017379761, + -0.06738251447677612, + 0.4000523090362549, + -0.0536981001496315, + -10.711305618286133, + -0.1449575126171112, + -0.6231441497802734, + 0.39226406812667847, + -0.714655876159668, + 0.0378347784280777, + -0.45853790640830994, + 0.21601159870624542, + 0.13231375813484192, + -0.34025105834007263, + -0.04726651310920715, + -0.036692265421152115, + 0.15629012882709503, + 0.16548781096935272, + 0.133566215634346, + 0.3076207637786865, + -0.4604633152484894, + 0.09870724380016327, + 0.12063025683164597, + 0.32105255126953125, + 0.3838058412075043, + 0.1058037281036377, + -0.3724234104156494, + 0.06379919499158859, + -0.011733680963516235, + -0.2047603875398636, + -0.03533114492893219, + 0.5476711392402649, + 0.3195372223854065, + -0.4195501208305359, + -0.02223062328994274, + 0.1635567545890808, + -0.3894299864768982, + 0.026286743581295013, + -0.2793394923210144, + -0.20398971438407898, + -0.3511773645877838, + 0.5380673408508301, + 0.3460114896297455, + -0.05018182098865509, + 0.38531118631362915, + -0.061097778379917145, + 0.14386464655399323, + 0.1530020833015442, + -0.22344166040420532, + -0.39629989862442017, + -0.06028113514184952, + -0.9311598539352417, + 0.1262911856174469, + 0.4711177945137024, + 0.3620136082172394, + 0.028508277609944344, + -0.24469590187072754, + 0.28008362650871277, + -0.5704947710037231, + 0.2661471664905548, + 0.06691775470972061, + -0.24330076575279236, + -0.0031814593821763992, + 0.08243328332901001, + -0.25633376836776733, + 0.03288063034415245, + 0.2929503321647644, + 0.08160365372896194, + -0.2454083263874054, + 0.26800525188446045, + -0.3297995328903198, + -0.17020776867866516, + -0.07999513298273087, + 0.06291785836219788, + -0.36410778760910034, + -0.4124906361103058, + -0.008598655462265015, + -0.11039707809686661, + 0.3039734959602356, + -0.15164630115032196, + -0.21235790848731995, + 0.3480929732322693, + 0.053720034658908844, + 0.48116323351860046, + 0.2768861651420593, + 0.23602229356765747, + -0.36102741956710815, + -0.06162703037261963, + -0.043666377663612366, + -0.21106478571891785, + 0.3418733477592468, + 0.03724270686507225, + -0.023518698289990425, + 0.13965801894664764, + 0.06488068401813507, + 0.5754842758178711, + 0.35106706619262695, + 0.14473360776901245, + -0.07573537528514862, + -0.02823122963309288, + 0.4051150977611542, + 0.21460549533367157, + 0.2992425560951233, + 0.1299932897090912, + -0.34851399064064026, + 0.30520641803741455, + -0.2706047594547272, + -0.46294325590133667, + -0.5099635720252991, + 0.5756202340126038, + -0.05299358442425728, + -0.2153313308954239, + -0.1415293961763382, + -0.6019071340560913, + 0.11131608486175537, + 0.054658420383930206, + 0.14690452814102173, + 0.13583894073963165, + 0.1392155885696411, + -0.06760229915380478, + 0.013267731294035912, + -0.15766541659832, + -0.17240901291370392, + -0.11290384829044342, + 0.7853330969810486, + 0.015672093257308006, + -0.07745862007141113, + 0.4994644820690155, + 0.07972700148820877, + 0.05725289136171341, + 0.9127302765846252, + -0.11025770753622055, + 0.3141229748725891, + 0.3418240547180176, + 0.2828817367553711, + -0.35764947533607483, + -0.3530988097190857, + 0.5672844648361206, + 0.39066243171691895, + -0.7800267934799194, + 0.7573832273483276, + 0.2109900563955307, + -0.33114784955978394, + -0.05240429937839508, + -0.2099815011024475, + 0.3776448369026184, + 0.16627627611160278, + 0.07136334478855133, + -0.13862623274326324, + -0.3808680474758148, + -0.4662131369113922, + 0.17233781516551971, + -0.16338245570659637, + 0.08264303207397461, + -0.16289584338665009, + -0.006147764623165131, + 0.2345556616783142, + 0.07044225931167603, + 0.42202916741371155, + 0.289324015378952, + -0.1625698208808899, + -0.07522528618574142, + -0.10786674916744232, + -0.27087754011154175, + -0.0075887590646743774, + 0.7138149738311768, + 0.13017895817756653, + 0.04552684724330902, + 0.11597730964422226, + 0.10303081572055817, + -0.055636048316955566, + -0.1403372883796692, + 0.17642050981521606, + 0.427278995513916, + -0.10313038527965546, + 0.18800871074199677, + 0.2491636574268341, + -0.32591599225997925, + 0.10489072650671005, + -0.6767205595970154, + -0.10484258085489273, + 0.21798337996006012, + 0.055985093116760254, + -0.07885462045669556, + 0.5883104205131531, + 0.41892603039741516, + 0.14416277408599854, + -0.096698097884655, + 0.11983804404735565, + 0.00701029971241951, + 0.2765469551086426, + -0.016873743385076523, + -0.4535837471485138, + -0.49388036131858826, + -0.7179098725318909, + -0.18648454546928406, + -0.3289138674736023, + -0.1417543888092041, + -0.024529799818992615, + -0.029816884547472, + -0.30814534425735474, + 0.14666488766670227, + 0.116928830742836, + -0.21834765374660492, + -0.2901517450809479, + 0.16573293507099152, + 0.5444180369377136, + -0.7286027073860168, + 0.35096311569213867, + -0.3314579427242279, + 0.36190342903137207, + 0.2605132460594177, + -0.5683344006538391, + -0.09386436641216278, + -0.05177345126867294 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_016.json b/src/benchmark/output/results/results_graph_016.json new file mode 100644 index 0000000..7574443 --- /dev/null +++ b/src/benchmark/output/results/results_graph_016.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 51-year-old female born in 1970. She presented with a subsolid pulmonary lesion incidentally detected during a routine follow-up for malignant melanoma.\n\n**Timeline of Diagnoses:**\n\n1. **April 2013:** The patient was diagnosed with malignant melanoma and underwent resection videothoracoscopically after preoperative labeling with a mixture of blue dye and contrast agent.\n2. **Late April 2013:** Left axillary dissection revealed metastasis in one of 19 lymph nodes, and molecular genetic testing confirmed a BRAF mutation at codon 600.\n3. **November 2017:** A routine CT scan detected a new asymptomatic 7 mm lesion in segment S10 of the right lower lobe with a density consistent with a pure ground glass nodule.\n4. **June 2020:** Follow-up CT scans showed the lesion changed character to a subsolid lesion with the presence of a solid component.\n5. **July 2020:** PET/CT scans confirmed the persistence of the lesion without increased metabolic activity.\n6. **April 2021:** Follow-up confirmed persistence and slight size progression of the solid component of the lesion, leading to indication for surgical resection.\n\n**Timeline of Treatments:**\n\n1. **April 2013:** Resection videothoracoscopically\n2. **Late April 2013:** Left axillary dissection and initiation of targeted therapy with BRAF inhibitors\n3. **November 2017:** No treatment mentioned\n4. **June 2020:** No treatment mentioned\n5. **July 2020:** No treatment mentioned\n6. **April 2021:** Surgical resection\n\n**Timeline of Outcomes:**\n\n1. **Late April 2013:** Metastasis in one of 19 lymph nodes confirmed, and targeted therapy with BRAF inhibitors initiated.\n2. **November 2017:** New asymptomatic lesion detected during routine CT scan\n3. **June 2020:** Lesion changed character to a subsolid lesion with the presence of a solid component.\n4. **July 2020:** Persistence of lesion without increased metabolic activity confirmed by PET/CT scans\n5. **April 2021:** Surgical resection performed, and follow-up confirmed persistence and slight size progression of the solid component of the lesion.\n\n**Conclusion:**\nThe patient was diagnosed with malignant melanoma in April 2013 and underwent resection videothoracoscopically. Following this, she developed metastasis in one of 19 lymph nodes and was treated with targeted therapy with BRAF inhibitors. In November 2017, a new asymptomatic lesion was detected during routine CT scan, which changed character to a subsolid lesion with the presence of a solid component by June 2020. The persistence of this lesion without increased metabolic activity was confirmed by PET/CT scans in July 2020. Finally, surgical resection was performed in April 2021, and follow-up confirmed persistence and slight size progression of the solid component of the lesion.", + "bertscore": { + "precision": [ + 0.4778168499469757 + ], + "recall": [ + 0.7119154334068298 + ], + "f1": [ + 0.5718348622322083 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 7, + "edge_count": 6, + "avg_in_degree": 0.8571428571428571, + "density": 0.14285714285714285 + }, + "trajectory_embedding": [ + 0.149007648229599, + 0.05697751045227051, + -0.07104989141225815, + 0.04486839473247528, + -0.15542572736740112, + -0.011686301790177822, + 0.04617166519165039, + 0.17946068942546844, + 0.2943315804004669, + -0.3095993399620056, + -0.16567997634410858, + 0.13099738955497742, + -0.5008986592292786, + -0.13083820044994354, + -0.32352951169013977, + 0.1127810999751091, + 0.0062797837890684605, + 0.2857533097267151, + 0.03578118607401848, + -0.2438744306564331, + -0.44955646991729736, + 0.09019305557012558, + -0.19413788616657257, + -0.18186815083026886, + 0.14855201542377472, + -0.10573150962591171, + 0.22670722007751465, + 0.3431566059589386, + 0.25918665528297424, + 0.4009040296077728, + 0.25138425827026367, + 0.21701757609844208, + -0.1275353878736496, + -0.041662055999040604, + -0.1936698704957962, + 0.39774492383003235, + 0.28334736824035645, + 0.3006748557090759, + -0.05811043456196785, + 0.099476158618927, + 0.024897025898098946, + 0.04008123278617859, + 0.7861876487731934, + 0.33442223072052, + 0.5511078238487244, + -0.5902429223060608, + 0.10700448602437973, + 0.4182768166065216, + -0.46466681361198425, + -0.16228441894054413, + 0.29604339599609375, + 0.6228020787239075, + 0.6718801856040955, + -0.0856071338057518, + 0.4806903302669525, + -0.1726718693971634, + -0.45378050208091736, + -0.27531421184539795, + -0.18921567499637604, + 0.001660780399106443, + -0.06694838404655457, + 0.006187962833791971, + 0.02872987650334835, + 0.06448187679052353, + -0.2927342653274536, + -0.23351627588272095, + -0.0652415081858635, + 0.09601820260286331, + -0.04088536277413368, + -0.4197840392589569, + -0.3027867078781128, + -0.31879428029060364, + -0.023790748789906502, + 0.15710191428661346, + 0.1020817682147026, + -0.26068592071533203, + 0.4140666723251343, + 0.09653288871049881, + 0.07721195369958878, + 0.10294198989868164, + 0.11773952096700668, + -0.026951700448989868, + 0.16670550405979156, + 0.13637231290340424, + -0.519151508808136, + 0.2775932252407074, + -0.00046344599104486406, + -0.22246699035167694, + -0.12537837028503418, + 0.15984176099300385, + 0.36777088046073914, + -0.26208433508872986, + 0.0554586797952652, + -0.07536662369966507, + 0.11229067295789719, + 0.016261518001556396, + 0.1107102707028389, + 0.44245752692222595, + 1.0226553678512573, + 0.10942617803812027, + 0.2453603595495224, + 0.08867114782333374, + 0.1637381911277771, + 0.01304391399025917, + 0.4720216989517212, + -0.1749333143234253, + 0.1800566166639328, + -0.5137348771095276, + -0.13287748396396637, + 0.4445939064025879, + 0.05004940554499626, + -0.006668818648904562, + 0.048609986901283264, + -0.30040109157562256, + 0.1704709529876709, + 0.17853577435016632, + -0.145791694521904, + 0.16842786967754364, + 0.017253974452614784, + -0.3570859432220459, + 0.020373128354549408, + -0.09356409311294556, + 0.2545779049396515, + 0.3598313629627228, + -0.3550417423248291, + -0.12489408254623413, + -0.16374334692955017, + 0.24083946645259857, + -0.01862839050590992, + 0.1879625916481018, + -0.2949100434780121, + -0.02791723422706127, + -0.004016424063593149, + 0.27251365780830383, + -0.17022550106048584, + 0.2353556901216507, + -0.48334452509880066, + 0.009961963631212711, + -1.1405383348464966, + 0.3128035366535187, + -0.4816643297672272, + -0.02448660135269165, + 0.06021618843078613, + -0.32783523201942444, + -0.11910342425107956, + -0.20099790394306183, + -0.18281759321689606, + 0.1917140632867813, + 0.0192653089761734, + -0.08564118295907974, + -0.14051686227321625, + 0.07632440328598022, + 0.15270088613033295, + 0.12322612851858139, + 0.13859768211841583, + 0.19256387650966644, + 0.13894349336624146, + 0.31800511479377747, + 0.07130169123411179, + -0.09077480435371399, + 0.07194185256958008, + 0.22424404323101044, + -0.16708149015903473, + -0.28174448013305664, + -0.024050967767834663, + -0.6272649168968201, + 0.25074413418769836, + -0.30784299969673157, + 0.4230305254459381, + 0.027091143652796745, + -0.2656240463256836, + 0.21628089249134064, + -0.18350084125995636, + 0.5172727704048157, + 0.3899320065975189, + 0.2974042594432831, + 0.1507805734872818, + -0.11765577644109726, + 0.11483273655176163, + 0.08034267276525497, + -0.029079964384436607, + 0.08371546864509583, + 0.5299779772758484, + 0.16074520349502563, + -0.28274765610694885, + 0.18512870371341705, + 0.35349830985069275, + -0.08689109236001968, + -0.16383282840251923, + -0.18638324737548828, + 0.5324181318283081, + -0.21633632481098175, + 0.23408548533916473, + -0.485595703125, + -0.044341180473566055, + -0.11767390370368958, + -0.22833393514156342, + -0.3595254123210907, + 0.07273086160421371, + -0.19727647304534912, + 0.08856060355901718, + 0.22125166654586792, + -0.26393067836761475, + 0.19978415966033936, + 0.1741233468055725, + -0.13679815828800201, + 0.33861806988716125, + 0.03460460156202316, + 0.07096666097640991, + -0.21560980379581451, + -0.22658932209014893, + 0.22366748750209808, + -0.07749990373849869, + 0.17199063301086426, + 0.011743745766580105, + -0.2402915358543396, + 0.29535284638404846, + -0.15165047347545624, + -0.08127845078706741, + 0.19690066576004028, + -0.04964834451675415, + -0.10646134614944458, + 0.20673716068267822, + -0.08133119344711304, + -0.4514186680316925, + 0.13141925632953644, + 0.17143623530864716, + 0.10138457268476486, + 0.2048143595457077, + -0.2293601781129837, + 0.11699935793876648, + -0.25878632068634033, + 0.3019300401210785, + -0.11675987392663956, + -0.20490455627441406, + -0.38961026072502136, + 0.1863611936569214, + -0.16779251396656036, + -0.3139910399913788, + 0.3562077581882477, + -0.2090889811515808, + -0.17176514863967896, + 0.16997289657592773, + -0.18476690351963043, + -0.024093022570014, + -0.3006589114665985, + -0.11506547778844833, + 0.3047492504119873, + 0.10178350657224655, + 0.4658617675304413, + 0.25754064321517944, + -0.01713309995830059, + 0.11407976597547531, + -0.40779078006744385, + -0.22889433801174164, + -0.35780858993530273, + -0.18386787176132202, + -0.1420406997203827, + -0.3163550794124603, + -0.14408431947231293, + 0.14728008210659027, + -0.28708189725875854, + 0.023967450484633446, + -0.4421789348125458, + -0.07866193354129791, + -0.04291430115699768, + -0.08899173140525818, + 0.11663661152124405, + -0.07704287767410278, + 0.21149499714374542, + -0.33184853196144104, + -0.33073291182518005, + -0.06890415400266647, + 0.04562417045235634, + 0.36256325244903564, + 0.21456176042556763, + 0.05299869552254677, + 0.15182499587535858, + 0.35609832406044006, + -0.4883159101009369, + -0.4211416244506836, + 0.25479933619499207, + -0.27316728234291077, + 0.19628626108169556, + -0.16280026733875275, + 0.1290157288312912, + 0.5500603318214417, + -0.08216161280870438, + 0.2718645930290222, + 0.45637276768684387, + 0.6205407977104187, + 0.07053525745868683, + -0.23062360286712646, + 0.019573288038372993, + 0.07509854435920715, + -0.08323037624359131, + -0.480135440826416, + 0.17558638751506805, + -0.0010581724345684052, + -0.08917411416769028, + -0.2953397035598755, + 0.18188220262527466, + 0.03344329074025154, + -0.4368859827518463, + -0.22266727685928345, + 0.7819164395332336, + 0.18446584045886993, + 0.005073959473520517, + 0.060471970587968826, + 0.4507676661014557, + 0.5521776080131531, + -0.028287597000598907, + -0.23836326599121094, + -0.06702963262796402, + -0.135664701461792, + -0.14731119573116302, + -0.17997999489307404, + 0.04193156957626343, + 0.2573223412036896, + -0.08895894885063171, + -0.04747382923960686, + 0.3244934380054474, + -0.15926189720630646, + -0.18268613517284393, + 0.029997989535331726, + 0.12768729031085968, + 0.05139603093266487, + -0.3358854353427887, + 0.3097713887691498, + -0.12237755209207535, + 0.008778358809649944, + 0.4478125274181366, + -0.2024850994348526, + -0.31536558270454407, + 0.4129892587661743, + -0.07838169485330582, + -0.4384450912475586, + 0.2800520658493042, + -0.17816059291362762, + -0.14930997788906097, + 0.30301350355148315, + 0.02044587768614292, + 0.08903608471155167, + -0.28684842586517334, + 0.06334658712148666, + 0.08009166270494461, + 0.13011053204536438, + -0.11726080626249313, + 0.04447104409337044, + 0.08492981642484665, + 0.6273911595344543, + 0.05128438398241997, + -0.0356660895049572, + 0.2713146507740021, + -0.07807900756597519, + -0.1936909407377243, + -0.06714644283056259, + 0.09671730548143387, + 0.11931876093149185, + -0.1588907688856125, + -0.2965388000011444, + -0.1887933760881424, + 0.21425509452819824, + 0.11581790447235107, + -0.2643400728702545, + -0.09745999425649643, + 0.20047511160373688, + 0.03081912361085415, + 0.05880020931363106, + 0.3479445278644562, + 0.3094443678855896, + -0.06010464206337929, + 0.4842193126678467, + 0.07414832711219788, + 0.059434741735458374, + 0.33504167199134827, + -0.11445585638284683, + 0.2179364413022995, + -0.12303794175386429, + -0.3619827330112457, + -0.37133118510246277, + 0.02734423615038395, + -0.08971305936574936, + -0.11990188807249069, + 0.09364838153123856, + -0.03146100416779518, + 0.1355171650648117, + -0.12323638051748276, + 0.3047865033149719, + 0.061490487307310104, + 0.22293590009212494, + -0.030570467934012413, + 0.4001728594303131, + -0.06571483612060547, + -0.4570596516132355, + 0.1613452434539795, + 0.04285292699933052, + 0.3343174159526825, + -0.14213846623897552, + -0.014229093678295612, + -0.17103296518325806, + 0.3143782913684845, + 0.07914572209119797, + -0.0579678900539875, + 0.08399105817079544, + -0.06174285337328911, + -0.23327653110027313, + -0.33439770340919495, + -0.05013931915163994, + -0.07882692664861679, + -0.24108530580997467, + -0.17518304288387299, + 0.2754305899143219, + -0.1648344248533249, + -0.23642277717590332, + -0.13911962509155273, + 0.21949927508831024, + 0.3323073089122772, + -0.16319380700588226, + 0.08721184730529785, + 0.21311324834823608, + 0.030476197600364685, + 0.2524578869342804, + -0.24762143194675446, + 0.17539478838443756, + -0.0546969473361969, + -0.16938011348247528, + -0.16302134096622467, + 0.09760161489248276, + -0.22073858976364136, + 0.11322716623544693, + 0.10706927627325058, + 0.1693253070116043, + 0.15796422958374023, + -0.005690584424883127, + 0.001867234124802053, + 0.2488340139389038, + -0.4359818398952484, + 0.04728331044316292, + 0.2851915657520294, + 0.13334141671657562, + 0.3754366338253021, + -0.028550080955028534, + -0.22848619520664215, + -0.04099491983652115, + -0.19737505912780762, + -0.425163596868515, + 0.24991482496261597, + 0.13335436582565308, + -0.2031845599412918, + 0.0011668031802400947, + -0.02215595543384552, + 0.08256707340478897, + -0.007839750498533249, + 0.19528000056743622, + 0.061652760952711105, + 0.15844516456127167, + -0.11049958318471909, + -0.33354783058166504, + -0.04695061966776848, + -0.25695955753326416, + -0.2144540399312973, + -0.37735700607299805, + 0.5394444465637207, + 0.3611312806606293, + -0.20879878103733063, + -0.019346101209521294, + 0.0793212428689003, + -0.3387911021709442, + -0.14294372498989105, + 0.03830769285559654, + 0.04001275822520256, + 0.5022501349449158, + 0.1165076494216919, + -0.22010208666324615, + 0.20333725214004517, + -0.3667992055416107, + 0.22271113097667694, + 0.24960047006607056, + 0.20079582929611206, + 0.43398669362068176, + 0.2691831886768341, + 0.17220944166183472, + 0.31041523814201355, + 0.03018771857023239, + -0.008522558957338333, + 0.32888588309288025, + -0.09168529510498047, + 0.0590447373688221, + -0.11439289897680283, + -0.20970843732357025, + 0.4053797721862793, + -0.3060360550880432, + 0.20626819133758545, + 0.17143411934375763, + 0.35203421115875244, + -0.26462939381599426, + -0.11910101026296616, + 0.05238369479775429, + -0.1582801789045334, + -0.2414531707763672, + -0.39464226365089417, + -0.19074887037277222, + 0.0827004611492157, + -0.14973881840705872, + -0.14191173017024994, + 0.3990061581134796, + 0.1976037472486496, + 0.31225305795669556, + 0.18471308052539825, + -0.297519326210022, + -0.471179336309433, + 0.005472133401781321, + 0.23930169641971588, + 0.11728083342313766, + -0.055923473089933395, + -0.17359934747219086, + 0.17742641270160675, + 0.4499150514602661, + -0.05114326998591423, + -0.17160773277282715, + 0.016612103208899498, + 0.01164229679852724, + -0.08964037150144577, + -0.022309033200144768, + -0.17685557901859283, + 0.048840731382369995, + -0.3607109487056732, + 0.16469454765319824, + -0.2612478733062744, + -0.2049931436777115, + 0.1359492987394333, + -0.10289991647005081, + -0.36701321601867676, + -0.20581389963626862, + 0.23771703243255615, + -0.24489180743694305, + -0.06095251813530922, + 0.14935438334941864, + 0.6309964060783386, + 0.16023217141628265, + -0.1311873346567154, + -0.0018406963208690286, + -0.436548113822937, + -0.011086353100836277, + 0.21615247428417206, + -0.1874493807554245, + 0.15074525773525238, + 0.14205308258533478, + 0.2843947112560272, + 0.2643941342830658, + 0.06968189775943756, + -0.5250326991081238, + -0.012063908390700817, + 0.20149286091327667, + 0.22135229408740997, + -0.2565729022026062, + -10.8950777053833, + -0.014275922439992428, + -0.1610095053911209, + 0.3567069470882416, + -0.2709408104419708, + 0.14687101542949677, + 0.067961186170578, + -0.15768249332904816, + 0.27950525283813477, + 0.09456899762153625, + -0.27138373255729675, + 0.21690122783184052, + 0.1255103498697281, + 0.06853402405977249, + -0.008888174779713154, + -0.2841257154941559, + -0.21313214302062988, + 0.11108551174402237, + 0.03102562390267849, + 0.0814855769276619, + 0.29929983615875244, + 0.47041916847229004, + -0.24838174879550934, + 0.39112576842308044, + 0.2612858712673187, + -0.22028137743473053, + -0.31997671723365784, + 0.6020379662513733, + 0.01608445681631565, + -0.4045555591583252, + 0.3231101930141449, + 0.17312417924404144, + -0.2591648995876312, + -0.13635623455047607, + -0.01277694571763277, + -0.14072541892528534, + -0.11625625938177109, + 0.018377259373664856, + -0.10914082080125809, + -0.045088425278663635, + 0.000920632213819772, + -0.2967469096183777, + 0.10532590001821518, + 0.3460637032985687, + -0.14897824823856354, + -0.3820381164550781, + -0.2983250319957733, + -1.4016674757003784, + 0.26880043745040894, + 0.3116580545902252, + 0.4638519287109375, + -0.027874866500496864, + 0.060319047421216965, + -0.08256819099187851, + -0.5507493615150452, + 0.1712900847196579, + -0.16875310242176056, + 0.1421382576227188, + 0.11727798730134964, + -0.0918300449848175, + 0.08475017547607422, + -0.1579543799161911, + 0.38024428486824036, + -0.1388607770204544, + -0.204164519906044, + 0.12698544561862946, + -0.17042918503284454, + 0.11051306128501892, + -0.1675906777381897, + -0.09794119000434875, + -0.5144696831703186, + -0.1455618292093277, + -0.09247380495071411, + 0.150482177734375, + 0.5692696571350098, + -0.004526566714048386, + -0.40319791436195374, + 0.07533236593008041, + 0.05501477047801018, + 0.25285276770591736, + -0.04087298363447189, + 0.08317755162715912, + 0.03346331790089607, + -0.07452282309532166, + -0.0284599456936121, + -0.09167101979255676, + -0.0057683982886374, + 0.37427613139152527, + -0.02662895806133747, + 0.1479039043188095, + -0.03818412497639656, + 0.20068590342998505, + -0.10632433742284775, + -0.30764999985694885, + -0.36150798201560974, + 0.17749850451946259, + -0.021376987919211388, + 0.029844874516129494, + -0.012457233853638172, + -0.09485349804162979, + -0.10275135189294815, + -0.16390644013881683, + -0.0011399040231481194, + -0.5165593028068542, + -0.2219998836517334, + 0.24507911503314972, + 0.1719716340303421, + 0.1918819397687912, + 0.04207620397210121, + 0.1438349038362503, + -0.0004373118281364441, + -0.024351486936211586, + 0.32816576957702637, + 0.5062565207481384, + 0.12524114549160004, + -0.15760143101215363, + -0.1365232914686203, + 0.0646929070353508, + -0.4370640814304352, + 0.026082945987582207, + 0.3360789716243744, + -0.1301776021718979, + 0.3196265995502472, + 0.5236454606056213, + -0.05504294112324715, + -0.27307501435279846, + 0.9474371075630188, + -0.10833009332418442, + 0.33625730872154236, + -0.2507100999355316, + 0.3430663049221039, + -0.16495995223522186, + -0.18020008504390717, + -0.020167561247944832, + 0.41105031967163086, + -0.38351163268089294, + 0.5739270448684692, + 0.02605474181473255, + -0.5437390208244324, + 0.14681516587734222, + -0.279568612575531, + 0.33418893814086914, + 0.292450875043869, + 0.3269631564617157, + -0.11713773012161255, + -0.30824846029281616, + -0.14510640501976013, + 0.01003886479884386, + -0.48418179154396057, + -0.3084162473678589, + -0.06875260919332504, + -0.040361519902944565, + 0.0021706235129386187, + -0.3749571740627289, + 0.347759872674942, + 0.0030957460403442383, + -0.20894260704517365, + -0.13570784032344818, + -0.4610741138458252, + -0.05976365506649017, + 0.33356180787086487, + 0.6913776397705078, + 0.10544293373823166, + -0.007619538810104132, + -0.15609662234783173, + 0.032743439078330994, + 0.004234522581100464, + 0.08795130997896194, + 0.14947186410427094, + -0.05471336841583252, + -0.4978923797607422, + 0.10482891649007797, + 0.07960840314626694, + -0.3150716722011566, + -0.2566353976726532, + -0.46026530861854553, + 0.14011268317699432, + 0.043455760926008224, + -0.14900940656661987, + 0.1598261594772339, + 0.30667534470558167, + -0.06878077238798141, + -0.07167943567037582, + -0.13321931660175323, + 0.2081092745065689, + 0.1455438882112503, + 0.07379525154829025, + 0.16254504024982452, + -0.1644214540719986, + -0.42043641209602356, + -0.3934575021266937, + 0.22928230464458466, + -0.06722743064165115, + -0.06020986661314964, + 0.08721967786550522, + 0.21020393073558807, + -0.30149802565574646, + 0.09720593690872192, + -0.2895645797252655, + 0.053723305463790894, + -0.21436144411563873, + 0.09759900718927383, + 0.3977299630641937, + -0.3412288427352905, + 0.037040602415800095, + -0.06027490273118019, + 0.29710695147514343, + 0.12309661507606506, + -0.23711462318897247, + 0.25581642985343933, + 0.03416205197572708 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_018.json b/src/benchmark/output/results/results_graph_018.json new file mode 100644 index 0000000..f950ec1 --- /dev/null +++ b/src/benchmark/output/results/results_graph_018.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 52-year-old male diagnosed with primary lung adenocarcinoma in 2023. He presented with severe, debilitating shoulder pain (VAS 9) in the low dorsal area, which prompted further investigation and diagnosis.\n\n**Timeline of Diagnoses:**\n\n1. **Primary Lung Adenocarcinoma Diagnosis:** The patient was diagnosed with primary lung adenocarcinoma in 2023.\n2. **Shoulder Pain Presentation:** The patient presented with severe, debilitating shoulder pain (VAS 9) in the low dorsal area, which prompted further investigation and diagnosis.\n3. **Compression Fracture Diagnosis:** A CT scan revealed a compression fracture of the T8 vertebral body with multiple fracture lines and a mixed lytic-sclerotic tumor component.\n4. **Pathological Fracture Diagnosis:** The patient was diagnosed with pathological fracture due to metastasis from lung adenocarcinoma.\n5. **Treatment of Pathological Fracture:** The patient underwent treatment for the pathological fracture, including microwave ablation and SpineJack system.\n\n**Timeline of Treatments:**\n\n1. **Microwave Ablation and SpineJack System Treatment:** The patient received treatment with microwave ablation and SpineJack system to manage the pathological fracture.\n2. **Initial CT Scan:** An initial CT scan was performed to assess the lesion's size, location, and radiological characteristics.\n3. **Conscious Sedation Administration:** Patient was positioned prone, and conscious sedation was administered using continuous intravenous infusion of fentanyl citrate.\n\n**Timeline of Outcomes:**\n\n1. **Pathological Fracture Management:** The patient's pathological fracture was successfully managed with microwave ablation and SpineJack system treatment.\n2. **Lesion Assessment:** The initial CT scan provided valuable information on the lesion's size, location, and radiological characteristics.\n3. **Patient Recovery:** The patient recovered from the procedure without any significant complications.\n\n**Conclusion:**\nThe patient underwent a comprehensive evaluation for severe shoulder pain, which led to the diagnosis of compression fracture due to metastasis from lung adenocarcinoma. Treatment with microwave ablation and SpineJack system was effective in managing the pathological fracture, and the initial CT scan provided valuable information on the lesion's characteristics. The patient recovered without any significant complications.\n\n**Recommendations:**\n\n1. **Regular Follow-up:** Regular follow-up appointments are recommended to monitor the patient's condition and adjust treatment as needed.\n2. **Imaging Studies:** Imaging studies should be performed regularly to assess the progression of the disease and the effectiveness of treatment.\n3. **Pain Management:** Pain management strategies should be implemented to ensure optimal pain control for the patient.\n\n**Limitations:**\nThis case report is limited by its retrospective nature, which may not capture all relevant information or outcomes. Further follow-up studies are necessary to fully evaluate the effectiveness of treatment and monitor long-term outcomes.", + "bertscore": { + "precision": [ + 0.6227207183837891 + ], + "recall": [ + 0.6329694986343384 + ], + "f1": [ + 0.6278032660484314 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 10, + "edge_count": 9, + "avg_in_degree": 0.9, + "density": 0.1 + }, + "trajectory_embedding": [ + 0.18080228567123413, + -0.01176790613681078, + 0.10657219588756561, + 0.21200677752494812, + 0.1496204435825348, + 0.09226961433887482, + -0.08451242744922638, + 0.22056791186332703, + 0.5967764258384705, + -0.16920879483222961, + -0.2202618569135666, + -0.1208207830786705, + -0.3906412720680237, + -0.08555690199136734, + -0.24673983454704285, + 0.1816776692867279, + 0.06529556214809418, + 0.02827569469809532, + -0.09853260964155197, + -0.2589186131954193, + -0.23060894012451172, + 0.1607668101787567, + -0.4982452988624573, + -0.12803354859352112, + 0.4065679609775543, + -0.054250918328762054, + 0.4879893660545349, + 0.47116923332214355, + 0.32868561148643494, + 0.3994295001029968, + 0.12956276535987854, + -0.16741320490837097, + 0.37050727009773254, + 0.008158018812537193, + -0.27188247442245483, + 0.30122601985931396, + 0.11358846724033356, + 0.4379844069480896, + -0.06921736896038055, + -0.058322757482528687, + 0.0398700088262558, + -0.018977338448166847, + 0.6379135847091675, + 0.07238949835300446, + 0.3782787024974823, + -1.0066730976104736, + -0.07919521629810333, + 0.6632041931152344, + -0.4872465133666992, + -0.22507886588573456, + 0.1191381961107254, + 0.9122927784919739, + 0.4148992598056793, + -0.31649288535118103, + 0.1749749779701233, + -0.04647786542773247, + -0.10799217224121094, + -0.33544838428497314, + -0.07086233049631119, + -0.06648202985525131, + -0.040213145315647125, + -0.2936286926269531, + 0.6395710706710815, + -0.12639407813549042, + -0.2798466086387634, + -0.2717442512512207, + -0.2166782170534134, + 0.02977166511118412, + 0.090509794652462, + -0.43489742279052734, + 0.01880752667784691, + -0.1073092669248581, + -0.1822459101676941, + -0.03869251534342766, + -0.012155568227171898, + -0.0800856500864029, + 0.44240719079971313, + -0.27236056327819824, + 0.06528262794017792, + 0.2615131735801697, + -0.1727137714624405, + -0.07845132797956467, + -0.14616914093494415, + 0.4488287568092346, + -0.41877931356430054, + -0.023292502388358116, + -0.1205289214849472, + -0.1838746964931488, + -0.4314506947994232, + 0.024112675338983536, + 0.4491371512413025, + -0.08627332001924515, + -0.11888758093118668, + -0.05572397634387016, + -0.17336609959602356, + 0.09026477485895157, + 0.4665488600730896, + 0.25556525588035583, + 0.8552974462509155, + -0.09775623679161072, + 0.22694818675518036, + 0.023394756019115448, + 0.07997588813304901, + -0.12623944878578186, + 0.6304507851600647, + 0.0905766636133194, + 0.2788030505180359, + -0.5239270925521851, + 0.1359589844942093, + 0.4220182001590729, + 0.047534264624118805, + -0.31927675008773804, + 0.12090591341257095, + -0.21242551505565643, + 0.27985817193984985, + 0.06889084726572037, + -0.029826965183019638, + 0.23574984073638916, + 0.35847771167755127, + -0.4014444351196289, + -0.21308934688568115, + 0.02410946972668171, + 0.1135321706533432, + 0.40135693550109863, + -0.21737270057201385, + 0.019315669313073158, + -0.09644161909818649, + -0.10575883090496063, + 0.25135594606399536, + -0.03173360973596573, + -0.5806550979614258, + -0.030823951587080956, + -0.06364428251981735, + 0.1700437366962433, + 0.01817057654261589, + 0.07863375544548035, + -0.25125327706336975, + -0.14459624886512756, + -1.0069786310195923, + 0.30785617232322693, + -0.20543141663074493, + -0.1808246374130249, + -0.07307955622673035, + -0.37389668822288513, + -0.1739678680896759, + -0.25672462582588196, + -0.056980349123477936, + -0.009938669390976429, + -0.09601225703954697, + -0.15805765986442566, + 0.1939161717891693, + 0.07921172678470612, + 0.1661098599433899, + 0.428825318813324, + 0.08629055321216583, + -0.13798007369041443, + -0.014471838250756264, + 0.2117127925157547, + 0.03313329070806503, + -0.2310362309217453, + 0.1552940160036087, + 0.3762097954750061, + 0.22943255305290222, + -0.10934446007013321, + -0.019935717806220055, + -0.5073190331459045, + 0.14993512630462646, + 0.02047419175505638, + 0.08063825219869614, + -0.01758430339396, + -0.14688755571842194, + 0.052874110639095306, + -0.5299620628356934, + 0.5163717269897461, + 0.14194446802139282, + 0.3084823787212372, + -0.05514836311340332, + -0.24508270621299744, + -0.052499353885650635, + 0.25067028403282166, + 0.232674241065979, + -0.23664537072181702, + 0.8400418162345886, + 0.02948017790913582, + -0.04404253885149956, + 0.16941367089748383, + 0.02503216825425625, + 0.14574596285820007, + 0.10063252598047256, + 0.16167397797107697, + 0.4748764932155609, + -0.4223252832889557, + 0.4751572012901306, + -0.4439395070075989, + -0.02406109683215618, + 0.023899894207715988, + -0.2207961082458496, + -0.18593929708003998, + 0.021083667874336243, + -0.09107114374637604, + 0.1557237207889557, + -0.08171699941158295, + -0.455692857503891, + 0.12328244745731354, + 0.0853915587067604, + -0.09796318411827087, + 0.24080348014831543, + 0.0092757698148489, + 0.06535378843545914, + -0.06035728380084038, + -0.24344511330127716, + 0.08912792056798935, + -0.31067895889282227, + 0.10331477969884872, + 0.08217747509479523, + -0.31495505571365356, + 0.32268670201301575, + 0.027277514338493347, + -0.046530582010746, + 0.15847209095954895, + -0.027692511677742004, + -0.2804194390773773, + -0.16271880269050598, + -0.14289097487926483, + -0.5133852362632751, + 0.22814197838306427, + -0.0018551737302914262, + 0.38071030378341675, + 0.2576569616794586, + -0.021414145827293396, + -0.04249856621026993, + -0.43571606278419495, + 0.3212115168571472, + -0.1930529624223709, + -0.06902634352445602, + -0.23078212141990662, + 0.32586660981178284, + -0.046510279178619385, + 0.19792813062667847, + 0.47486042976379395, + -0.12198323011398315, + -0.1150355115532875, + 0.1445361077785492, + -0.2828145921230316, + -0.10201382637023926, + -0.30554190278053284, + -0.03902518004179001, + 0.28339534997940063, + -0.13020867109298706, + 0.3814140260219574, + 0.14740443229675293, + -0.16865724325180054, + 0.04686436802148819, + -0.10992328077554703, + -0.2952519655227661, + -0.419279009103775, + -0.01984257623553276, + -0.02636871300637722, + -0.62844318151474, + 0.3164001405239105, + 0.22354421019554138, + -0.042722187936306, + 0.0024397671222686768, + -0.2095610797405243, + -0.10780356824398041, + 0.23694714903831482, + 0.1830405592918396, + 0.12091624736785889, + -0.07943491637706757, + 0.09637685120105743, + 0.061220504343509674, + -0.2557205855846405, + -0.08662181347608566, + -0.06079213693737984, + -0.15851108729839325, + 0.005804705433547497, + -0.20028109848499298, + -0.31456807255744934, + -0.01416665781289339, + -0.32673734426498413, + 0.0026571513153612614, + 0.30156320333480835, + 0.0163559727370739, + 0.12551644444465637, + 0.1689138114452362, + 0.4393697679042816, + 0.1511962115764618, + 0.004254430532455444, + -0.058884941041469574, + 0.4741742014884949, + 0.42894449830055237, + -0.04851292073726654, + -0.03823057562112808, + 0.0345749594271183, + -0.0689871683716774, + -0.083586685359478, + -0.3363313674926758, + 0.5168023109436035, + 0.1351577341556549, + 0.19023475050926208, + 0.001547901309095323, + 0.3912992775440216, + 0.09638214111328125, + -0.2628122568130493, + 0.1194857507944107, + 0.3332417607307434, + -0.050922941416502, + 0.24345159530639648, + 0.12254858016967773, + 0.32288235425949097, + 0.3163105249404907, + -0.09431519359350204, + 0.048666369169950485, + 0.10329260677099228, + -0.2740444242954254, + -0.37506094574928284, + -0.0034713209606707096, + 0.10616147518157959, + 0.4855469763278961, + -0.056008774787187576, + -0.20518632233142853, + -0.009745949879288673, + -0.45294389128685, + -0.0406918004155159, + -0.270822674036026, + -0.26217371225357056, + -0.0032680972944945097, + -0.09911789000034332, + 0.43520087003707886, + 0.21570630371570587, + -0.04201502352952957, + 0.3989032804965973, + -0.43160349130630493, + -0.16422918438911438, + 0.09664754569530487, + -0.2197050303220749, + -0.5856510400772095, + 0.22343280911445618, + -0.23632416129112244, + 0.04095623642206192, + 0.2782185673713684, + -0.20104317367076874, + -0.08752135187387466, + -0.037702567875385284, + 0.534119725227356, + -0.15990714728832245, + -0.17288538813591003, + -0.11948715150356293, + 0.22521451115608215, + 0.14077888429164886, + 0.4337480962276459, + 0.24267983436584473, + 0.22421208024024963, + 0.5820209383964539, + 0.21926827728748322, + -0.5478330850601196, + 0.054576385766267776, + -0.0816010981798172, + 0.3782133460044861, + 0.09617184847593307, + -0.052605561912059784, + -0.11833552271127701, + 0.1349993199110031, + 0.3371524214744568, + -0.511915385723114, + -0.07551680505275726, + 0.39216241240501404, + 0.1411595642566681, + -0.1559242308139801, + 0.1100635752081871, + 0.21536299586296082, + -0.1741642951965332, + 0.416384756565094, + -0.04623742029070854, + -0.11856915801763535, + 0.18833111226558685, + -0.11851085722446442, + 0.16858772933483124, + -0.08077974617481232, + -0.21286806464195251, + -0.42354297637939453, + 0.11213965713977814, + -0.23250934481620789, + -0.18660104274749756, + -0.008649994619190693, + -0.28246450424194336, + 0.12663178145885468, + -0.1894332617521286, + 0.1435701847076416, + 0.0703112930059433, + 0.250792920589447, + 0.04386848211288452, + 0.22878336906433105, + -0.009622213430702686, + -0.04477044567465782, + 0.2578672468662262, + 0.05461767315864563, + -0.059029899537563324, + -0.032909177243709564, + -0.12912902235984802, + -0.18240796029567719, + 0.6154057383537292, + 0.00046119242324493825, + 0.09849599748849869, + 0.15228970348834991, + 0.26632770895957947, + -0.0188828743994236, + -0.3420865535736084, + -0.21050135791301727, + -0.18494465947151184, + 0.17218001186847687, + -0.0790201872587204, + -0.038812629878520966, + -0.43654608726501465, + -0.35641151666641235, + -0.20081551373004913, + -0.23381778597831726, + 0.1923908293247223, + -0.1263551265001297, + -0.19449038803577423, + 0.16276882588863373, + 0.32101160287857056, + 0.40700221061706543, + -0.35479816794395447, + 0.04592689871788025, + 0.08842023462057114, + -0.17675676941871643, + -0.19122156500816345, + 0.07573790103197098, + -0.2681026756763458, + -0.2921406328678131, + 0.14372174441814423, + 0.32090166211128235, + 0.13443772494792938, + -0.10093607753515244, + 0.14338117837905884, + 0.12543842196464539, + -0.3955574929714203, + -0.00841659028083086, + 0.04087035357952118, + 0.3690086007118225, + 0.2569124102592468, + 0.06731332838535309, + -0.5220013856887817, + -0.36011242866516113, + -0.2295265644788742, + -0.3029358983039856, + -0.03752909228205681, + 0.18121106922626495, + -0.00933180470019579, + -0.1240331158041954, + 0.31577903032302856, + 0.08201666176319122, + -0.11488574743270874, + 0.4317074418067932, + 0.04024495184421539, + 0.16195061802864075, + -0.1131494864821434, + -0.14419274032115936, + -0.13691599667072296, + -0.2709304392337799, + -0.19742998480796814, + -0.17759399116039276, + 0.29617875814437866, + 0.405205100774765, + -0.5471307039260864, + 0.04830843582749367, + 0.16349990665912628, + -0.15345445275306702, + 0.0077515216544270515, + -0.08132295310497284, + -0.30772310495376587, + 0.1594967544078827, + -0.22749805450439453, + -0.19870468974113464, + -0.049899645149707794, + 0.01719614863395691, + 0.08701404929161072, + 0.06250052154064178, + -0.05188096687197685, + 0.3555279076099396, + 0.1670723557472229, + -0.06035251170396805, + 0.5705299973487854, + -0.016568515449762344, + 0.06468668580055237, + 0.310992956161499, + -0.17957276105880737, + 0.10827712714672089, + -0.14532606303691864, + -0.11435351520776749, + 0.277736634016037, + -0.16965775191783905, + 0.004729387350380421, + 0.3133980929851532, + 0.022419599816203117, + -0.47710490226745605, + -0.13033826649188995, + -0.049325961619615555, + 0.08594794571399689, + -0.13482394814491272, + -0.12601934373378754, + -0.10331179946660995, + -0.1629619598388672, + 0.04431350901722908, + -0.01611955277621746, + 0.32885029911994934, + 0.4294351041316986, + 0.12616273760795593, + -0.011064747348427773, + -0.18425029516220093, + -0.3806869387626648, + 0.08866606652736664, + 0.1951519101858139, + 0.021320397034287453, + -0.015601697377860546, + -0.2960579991340637, + 0.3382592499256134, + 0.3266311287879944, + -0.14992554485797882, + 0.17268522083759308, + -0.0631607323884964, + 0.057071030139923096, + 0.25652024149894714, + 0.183600515127182, + -0.15713392198085785, + 0.049168724566698074, + -0.29920709133148193, + 0.16166158020496368, + -0.324540913105011, + 0.16019423305988312, + 0.24177980422973633, + -0.07650451362133026, + -0.5726067423820496, + -0.23133628070354462, + 0.18832817673683167, + -0.11637101322412491, + -0.19521956145763397, + 0.19697049260139465, + 0.35131922364234924, + -0.020310310646891594, + -0.4405250549316406, + 0.03495339676737785, + -0.49165233969688416, + -0.06041143089532852, + 0.027465611696243286, + -0.01696046069264412, + -0.2719774544239044, + -0.02638258971273899, + 0.6542733907699585, + 0.4646313786506653, + 0.12896105647087097, + -0.15519416332244873, + -0.022978512570261955, + 0.34370020031929016, + 0.2596079409122467, + -0.08083067834377289, + -10.481201171875, + -0.25835418701171875, + -0.28384846448898315, + 0.5044430494308472, + -0.07726659625768661, + 0.12268976867198944, + 0.24901223182678223, + -0.2417420893907547, + 0.09939704835414886, + 0.08386819064617157, + -0.14737458527088165, + -0.047819431871175766, + 0.29613196849823, + 0.14676813781261444, + 0.004237097688019276, + -0.10682084411382675, + -0.3216649293899536, + 0.02120881713926792, + 0.08521019667387009, + 0.272356778383255, + 0.25631073117256165, + 0.40576857328414917, + -0.13181361556053162, + 0.21475112438201904, + -0.053637586534023285, + -0.3384622037410736, + -0.24540598690509796, + 0.6930016279220581, + 0.19857126474380493, + -0.3681641221046448, + 0.07673364877700806, + 0.2106361836194992, + -0.25972265005111694, + 0.16568109393119812, + -0.13793453574180603, + -0.17157354950904846, + 0.04621996358036995, + 0.22452235221862793, + 0.4387247562408447, + -0.06328455358743668, + 0.005709358025342226, + -0.058704208582639694, + 0.2392045557498932, + 0.30752044916152954, + -0.02021036669611931, + -0.5520853996276855, + -0.18461112678050995, + -1.5094987154006958, + 0.3585963845252991, + 0.33253711462020874, + 0.12430952489376068, + -0.007720676250755787, + 0.1369563341140747, + 0.02615961991250515, + -0.2912444472312927, + 0.21794895827770233, + -0.2232695370912552, + -0.1398496925830841, + -0.10798479616641998, + 0.13098354637622833, + 0.006744260899722576, + -0.08222191780805588, + 0.7388594746589661, + 0.18307524919509888, + -0.3886552155017853, + 0.14155837893486023, + 0.250388503074646, + -0.2318299114704132, + -0.3808532655239105, + -0.8916643857955933, + -0.4975194036960602, + 0.08829494565725327, + -0.3031240701675415, + -0.07554978877305984, + 0.4941633343696594, + 0.04941884055733681, + -0.16369780898094177, + 0.2346387803554535, + 0.11115541309118271, + 0.2628590166568756, + 0.15798088908195496, + -0.05106746032834053, + 0.07955525070428848, + -0.01571587473154068, + -0.28826338052749634, + 0.09093034267425537, + 0.15528491139411926, + 0.42871707677841187, + 0.0803108960390091, + 0.1980857253074646, + -0.05221964791417122, + 0.5418431758880615, + 0.08626648038625717, + -0.10329276323318481, + -0.29989713430404663, + -0.02142104133963585, + -0.2526542544364929, + -0.019726034253835678, + -0.024580899626016617, + -0.18294721841812134, + -0.21072547137737274, + 0.26553022861480713, + -0.09661936014890671, + -0.29525822401046753, + -0.555350661277771, + 0.19318172335624695, + 0.06072841212153435, + 0.23232145607471466, + 0.019771840423345566, + -0.17774201929569244, + -0.38739025592803955, + 0.0640963539481163, + 0.06612581759691238, + 0.5564566850662231, + 0.11645855009555817, + 0.08258692175149918, + -0.005765484180301428, + -0.5227267742156982, + -0.06448572129011154, + 0.029370281845331192, + 0.459303081035614, + -0.3825070858001709, + 0.21516692638397217, + 0.5109866261482239, + 0.005237954668700695, + -0.03321230784058571, + 0.9885676503181458, + -0.17053072154521942, + 0.2725587487220764, + -0.17094235122203827, + 0.12407808005809784, + -0.004757312126457691, + -0.36118602752685547, + 0.08850610256195068, + 0.4966040253639221, + -0.3652281165122986, + 0.5549978017807007, + 0.21066689491271973, + -0.33831900358200073, + -0.11580425500869751, + -0.2081233561038971, + 0.7061569690704346, + 0.44655150175094604, + 0.2644329071044922, + -0.05232151225209236, + -0.17664991319179535, + -0.2868686318397522, + -0.004061572253704071, + -0.4278712272644043, + -0.30717217922210693, + -0.10365542024374008, + 0.21857771277427673, + 0.21416731178760529, + -0.2505403161048889, + 0.31649595499038696, + 0.012409175746142864, + -0.1728948950767517, + -0.4973970055580139, + -0.38191190361976624, + 0.2325998842716217, + 0.2052634209394455, + 0.6408977508544922, + -0.06420251727104187, + 0.07117738574743271, + 0.1161578893661499, + -0.022071728482842445, + -0.11899296194314957, + 0.08358817547559738, + -0.19331997632980347, + -0.04534788057208061, + -0.5590869188308716, + 0.13242803514003754, + 0.134657621383667, + -0.2665143311023712, + -0.07427165657281876, + -0.010571402497589588, + -0.03759165480732918, + -0.16223645210266113, + -0.2110995352268219, + -0.17650088667869568, + 0.43182405829429626, + -0.052093155682086945, + -0.04779242351651192, + -0.45683997869491577, + 0.022001590579748154, + 0.15714818239212036, + 0.32170289754867554, + 0.014694523997604847, + -0.4049762189388275, + -0.20063170790672302, + -0.5217366814613342, + 0.0972893238067627, + -0.2650051712989807, + -0.004584124777466059, + 0.05918153002858162, + 0.033948786556720734, + -0.07111585885286331, + 0.04798559099435806, + -0.005485606379806995, + 0.05956367775797844, + -0.27138304710388184, + 0.3143259584903717, + 0.3504866063594818, + -0.04908745735883713, + 0.14431913197040558, + -0.13152949512004852, + 0.18396052718162537, + 0.06691806763410568, + -0.21878103911876678, + 0.1946871131658554, + -0.25770455598831177 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_019.json b/src/benchmark/output/results/results_graph_019.json new file mode 100644 index 0000000..5551d00 --- /dev/null +++ b/src/benchmark/output/results/results_graph_019.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 54-year-old male who presented with facial and dorsal hand edema. He was diagnosed with small-cell lung cancer (SCLC) with hilar, mediastinal lymph node, and pleural metastases (cT1N3M1a, extensive stage) and a Performance Status (PS) score of 1.\n\n**Timeline of Diagnoses:**\n\n* July 2023: The patient presented with facial and dorsal hand edema, leading to the diagnosis of small-cell lung cancer.\n* September 9, 2024: The patient was admitted to the gastroenterology department due to a 5-day period of no bowel movement, resulting in a diagnosis of constipation.\n\n**Timeline of Treatments:**\n\n* July 2023: The patient started chemotherapy with four cycles of intravenous etoposide 160 mg (days 1-3), carboplatin (400 mg) on day 1, and serplulimab 300 mg on day 1 (Q3W).\n* After 18 cycles of chemotherapy and serplulimab maintenance: The patient experienced a partial response (PR).\n\n**Timeline of Outcomes:**\n\n* After two cycles of serplulimab treatment: The patient intermittently experienced hard stools and occasional constipation, relieved with glycerin suppositories.\n* September 9, 2024: The patient was admitted to the gastroenterology department due to a 5-day period of no bowel movement, resulting in a diagnosis of constipation.\n* Abdominal CT revealed diffuse dilatation and gas accumulation in the bowel, particularly the colon, suggesting incomplete intestinal obstruction.\n* Gastroscopy showed chronic atrophic gastritis (C2) with bile reflux.\n* Colonoscopy revealed a subpedunculated polyp approximately 1.5 cm in size, 20 cm from the anus, with smooth mucosa in the sigmoid colon.\n\n**Clinical Course:**\n\nThe patient's clinical course was marked by a series of diagnostic and therapeutic challenges. Initially, the patient presented with symptoms suggestive of small-cell lung cancer, which led to the initiation of chemotherapy and serplulimab maintenance. However, despite this treatment, the patient experienced worsening constipation, prompting further evaluation.\n\nFurther investigation revealed chronic atrophic gastritis (C2) with bile reflux, as well as a subpedunculated polyp in the sigmoid colon. These findings suggested incomplete intestinal obstruction and gastrointestinal distress, which were exacerbated by the patient's underlying small-cell lung cancer.\n\nThe patient's clinical course was ultimately marked by a series of diagnostic and therapeutic challenges, including worsening constipation, chronic atrophic gastritis, and gastrointestinal distress. Despite these challenges, the patient received treatment for their underlying small-cell lung cancer, as well as management for their gastrointestinal symptoms.\n\n**Conclusion:**\n\nThis case highlights the complexities of managing patients with multiple comorbidities, particularly those with small-cell lung cancer. The patient's clinical course was marked by a series of diagnostic and therapeutic challenges, including worsening constipation, chronic atrophic gastritis, and gastrointestinal distress. Despite these challenges, the patient received treatment for their underlying small-cell lung cancer, as well as management for their gastrointestinal symptoms.", + "bertscore": { + "precision": [ + 0.7377782464027405 + ], + "recall": [ + 0.7519990801811218 + ], + "f1": [ + 0.744820773601532 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 9, + "edge_count": 8, + "avg_in_degree": 0.8888888888888888, + "density": 0.1111111111111111 + }, + "trajectory_embedding": [ + 0.19909723103046417, + 0.12390078604221344, + -0.27012550830841064, + 0.19638073444366455, + 0.11007723957300186, + 0.15321364998817444, + -0.10099908709526062, + 0.23281972110271454, + 0.6538661122322083, + -0.3013831377029419, + -0.03854934498667717, + -0.08443812280893326, + -0.5399647355079651, + -0.23934105038642883, + -0.10716229677200317, + 0.29621395468711853, + -0.2592211961746216, + 0.2792671024799347, + -0.25490981340408325, + -0.23020631074905396, + -0.29704248905181885, + 0.12899354100227356, + -0.5010572075843811, + 0.1330016404390335, + 0.18603765964508057, + 0.030646972358226776, + 0.4461609423160553, + 0.7296259999275208, + 0.10095615684986115, + 0.3112495243549347, + 0.14305222034454346, + -0.1818583607673645, + 0.1911737322807312, + 0.016829578205943108, + -0.26111307740211487, + 0.1700342744588852, + 0.17858237028121948, + 0.29006248712539673, + -0.1708105504512787, + 0.08543959259986877, + -0.15736167132854462, + -0.002793323714286089, + 0.8496239185333252, + 0.25984305143356323, + 0.20885822176933289, + -0.8013790249824524, + 0.029717378318309784, + 0.5803494453430176, + -0.34097912907600403, + -0.46418496966362, + 0.33596235513687134, + 0.7838987112045288, + 0.4716772437095642, + -0.49436071515083313, + 0.43013617396354675, + -0.33885571360588074, + -0.0917196124792099, + -0.24095644056797028, + -0.20423835515975952, + -0.0022659103851765394, + -0.05130799114704132, + -0.37365174293518066, + 0.42869213223457336, + -0.35488346219062805, + -0.17748013138771057, + -0.19142718613147736, + -0.33871763944625854, + 0.06410905718803406, + -0.01672314666211605, + -0.3155437409877777, + -0.11558156460523605, + -0.22111405432224274, + -0.13510248064994812, + 0.014290805906057358, + -0.04450581222772598, + 0.01796274073421955, + 0.4593769311904907, + -0.1122528687119484, + 0.23057852685451508, + 0.10651896893978119, + -0.15196967124938965, + -0.20288540422916412, + -0.14287078380584717, + 0.2750104069709778, + -0.3845120966434479, + -0.1304098665714264, + -0.12232924997806549, + -0.25440073013305664, + -0.45816025137901306, + 0.123037189245224, + -0.02416444569826126, + -0.5225105285644531, + 0.1453988254070282, + -0.17666690051555634, + -0.015996700152754784, + 0.2545388638973236, + 0.5004193782806396, + 0.06407417356967926, + 0.9713221788406372, + 0.07305207848548889, + 0.1709176003932953, + -0.09464304894208908, + 0.19971032440662384, + -0.15980851650238037, + 0.22772282361984253, + -0.1274232268333435, + 0.171792134642601, + -0.5795132517814636, + 0.35699597001075745, + 0.5003740787506104, + 0.028167052194476128, + -0.19489189982414246, + -0.10832971334457397, + -0.3410586714744568, + 0.3480602502822876, + 0.011513292789459229, + 0.12778586149215698, + 0.23461419343948364, + 0.370263934135437, + -0.3954519033432007, + -0.17107993364334106, + -0.1738090217113495, + 0.33467257022857666, + 0.10220269858837128, + -0.48203039169311523, + -0.025997359305620193, + -0.06695178151130676, + -0.22274062037467957, + -0.028841935098171234, + 0.04336724057793617, + -0.5167129635810852, + -0.3045061230659485, + -0.07856421917676926, + 0.0719352662563324, + -0.16233058273792267, + 0.3335307240486145, + -0.32254865765571594, + 0.07632079720497131, + -1.0536999702453613, + 0.1973331719636917, + -0.3294254541397095, + -0.048184093087911606, + -0.07108385115861893, + -0.6211445331573486, + -0.28156813979148865, + -0.19369074702262878, + -0.05635496601462364, + 0.26989278197288513, + -0.3016151785850525, + 0.01702713966369629, + -0.0030329700093716383, + -0.13547807931900024, + 0.3298708200454712, + 0.4940706789493561, + -0.0020518386736512184, + -0.027424639090895653, + 0.09221560508012772, + 0.3022794723510742, + 0.09920457750558853, + 0.02039874903857708, + 0.06653458625078201, + 0.4971488416194916, + 0.1996951699256897, + 0.09398715943098068, + -0.20150664448738098, + -0.6276114583015442, + -0.055517688393592834, + -0.08787989616394043, + -0.02679705247282982, + 0.21543125808238983, + -0.20122088491916656, + 0.1209706962108612, + -0.3471846282482147, + 0.6964630484580994, + 0.1169300377368927, + 0.3529699146747589, + -0.05458519980311394, + 0.144490584731102, + 0.12219730019569397, + 0.17748819291591644, + 0.09919121116399765, + -0.3622337877750397, + 0.7631471753120422, + 0.27162501215934753, + -0.23217150568962097, + 0.28127729892730713, + 0.4202446937561035, + 0.031117938458919525, + -0.13553720712661743, + 0.2113097757101059, + 0.5825421810150146, + -0.30400124192237854, + 0.6364341378211975, + -0.21627822518348694, + -0.048633743077516556, + 0.25614702701568604, + -0.08426525443792343, + 0.05715221166610718, + -0.23215490579605103, + -0.13997584581375122, + 0.28813278675079346, + 0.07745169848203659, + -0.5237348079681396, + 0.06048907712101936, + 0.2194172888994217, + 0.030357055366039276, + -0.07441368699073792, + -0.15125387907028198, + 0.24632014334201813, + 0.18284355103969574, + -0.07196968793869019, + 0.19174006581306458, + -0.05178814008831978, + 0.2552845776081085, + -0.11361205577850342, + -0.33625492453575134, + 0.19741231203079224, + 0.024253984913229942, + -0.08444301784038544, + 0.3008236289024353, + 0.08063642680644989, + -0.19854122400283813, + -0.17625990509986877, + -0.0370684415102005, + -0.5457280278205872, + 0.20227894186973572, + 0.1767687201499939, + 0.3832779824733734, + 0.22176629304885864, + 0.02016485296189785, + 0.029661409556865692, + -0.3565033972263336, + 0.2776525020599365, + -0.21078842878341675, + -0.12305029481649399, + -0.2142259031534195, + 0.2925986647605896, + 0.03596269339323044, + 0.27059492468833923, + 0.32430213689804077, + -0.03782106190919876, + -0.023007771000266075, + 0.09087443351745605, + -0.374246746301651, + -0.054388031363487244, + -0.3958289623260498, + 0.034103021025657654, + 0.2878572642803192, + 0.058158859610557556, + 0.15779772400856018, + -0.0729631707072258, + -0.1460275948047638, + 0.12360986322164536, + -0.09007097780704498, + -0.5609275102615356, + -0.2896277606487274, + -0.04321350157260895, + -0.07872996479272842, + -0.7075194120407104, + 0.3000930845737457, + -0.14442938566207886, + 0.08850523829460144, + -0.0016160367522388697, + -0.27469444274902344, + -0.09906518459320068, + 0.12652941048145294, + 0.07225087285041809, + 0.07707363367080688, + -0.2957340478897095, + 0.030236342921853065, + -0.2996215224266052, + -0.22972546517848969, + -0.25770580768585205, + -0.12797003984451294, + -0.08668201416730881, + 0.08507980406284332, + -0.5964611768722534, + 0.13568715751171112, + 0.045900508761405945, + -0.3548845052719116, + -0.040928736329078674, + 0.23933260142803192, + -0.07098934054374695, + 0.3368254601955414, + 0.15363581478595734, + 0.2875361144542694, + 0.2520596981048584, + 0.1488121747970581, + 0.06530972570180893, + 0.44233450293540955, + 0.45465293526649475, + -0.21719352900981903, + 0.06951471418142319, + 0.04662976786494255, + 0.06100882589817047, + -0.01784619502723217, + -0.3901360034942627, + 0.49434852600097656, + 0.03777149319648743, + 0.1055348664522171, + 0.06453415751457214, + 0.14601345360279083, + 0.09583877772092819, + -0.22637520730495453, + 0.041225992143154144, + 0.3744617700576782, + 0.25816094875335693, + 0.30146610736846924, + 0.06127047538757324, + 0.22721242904663086, + 0.12968900799751282, + -0.18046389520168304, + 0.19437377154827118, + 0.26255661249160767, + 0.021445807069540024, + -0.0770421177148819, + -0.05702552571892738, + 0.33875900506973267, + 0.4634922444820404, + -0.1466171145439148, + -0.3887169063091278, + 0.04515815153717995, + -0.06479458510875702, + -0.038190390914678574, + -0.37213587760925293, + -0.13165323436260223, + 0.06705917418003082, + -0.04306260123848915, + 0.34176501631736755, + -0.012059872969985008, + -0.010004495270550251, + 0.35177338123321533, + -0.5120624303817749, + -0.06462785601615906, + 0.06004807725548744, + -0.1645970195531845, + -0.2898377776145935, + 0.514485776424408, + -0.03791142255067825, + 0.122385673224926, + 0.38692912459373474, + -0.36577877402305603, + -0.0016772606177255511, + 0.14521604776382446, + 0.4538114368915558, + -0.20255176723003387, + 0.07069593667984009, + -0.029767479747533798, + 0.03076869249343872, + -0.016696177423000336, + 0.4388335049152374, + 0.15579372644424438, + 0.1804802119731903, + 0.6990742683410645, + 0.2816333770751953, + -0.41386669874191284, + 0.06855649501085281, + -0.1287926584482193, + 0.35342398285865784, + -0.12396196275949478, + 0.06573930382728577, + -0.18229785561561584, + 0.04983297362923622, + 0.0652749165892601, + -0.3443256616592407, + 0.16264183819293976, + 0.11601737886667252, + 0.16142447292804718, + -0.07182321697473526, + 0.37290337681770325, + -0.14761386811733246, + -0.16121891140937805, + 0.48058509826660156, + -0.10320034623146057, + -0.24009265005588531, + 0.3178821802139282, + -0.30285996198654175, + 0.19271664321422577, + -0.05298333615064621, + -0.05711605027318001, + -0.26488396525382996, + 0.04807160422205925, + -0.09244593977928162, + -0.29870474338531494, + -0.016153637319803238, + -0.25895798206329346, + 0.0975273996591568, + -0.22251290082931519, + 0.17424649000167847, + 0.03698086366057396, + 0.16909264028072357, + 0.13813263177871704, + 0.25904345512390137, + -0.005986137315630913, + -0.22493202984333038, + 0.14341993629932404, + -0.004422907251864672, + -0.17893844842910767, + -0.4690161347389221, + 0.02348335087299347, + 0.019819768145680428, + 0.6711062788963318, + 0.0439656563103199, + 0.1488417387008667, + 0.10140099376440048, + -0.11318286508321762, + 0.03121180646121502, + -0.45663800835609436, + -0.04500769451260567, + -0.1603698432445526, + 0.10206641256809235, + 0.1262248009443283, + 0.07850800454616547, + -0.3086963891983032, + -0.13689249753952026, + 0.02447224035859108, + -0.12349656224250793, + 0.06483553349971771, + -0.07712164521217346, + -0.17201219499111176, + 0.3911958932876587, + 0.3354993462562561, + 0.45734474062919617, + -0.2746765911579132, + 0.2080497145652771, + 0.17041002213954926, + -0.29049068689346313, + 0.07253152877092361, + -0.11837686598300934, + -0.5038295388221741, + -0.21005219221115112, + 0.25660941004753113, + 0.3902057409286499, + -0.028941048309206963, + -0.08184876292943954, + 0.023525679484009743, + 0.08218313753604889, + -0.2306618094444275, + -0.12661142647266388, + 0.49625247716903687, + 0.2756560444831848, + 0.12646642327308655, + 0.03982553631067276, + -0.5808138251304626, + -0.44855642318725586, + -0.10753795504570007, + -0.2619767487049103, + 0.07503499835729599, + 0.3632398247718811, + 0.004044032655656338, + -0.24119554460048676, + -0.033398084342479706, + -0.16890859603881836, + -0.1671431064605713, + 0.31312647461891174, + -0.15776854753494263, + 0.15734481811523438, + 0.10583211481571198, + -0.20047177374362946, + -0.0447390042245388, + -0.15319904685020447, + -0.43272683024406433, + -0.23819512128829956, + 0.14289496839046478, + 0.15092091262340546, + -0.32524579763412476, + -0.039750438183546066, + 0.06546007841825485, + -0.15324841439723969, + -0.08672139048576355, + 0.026160340756177902, + -0.345871239900589, + 0.3375440239906311, + -0.09580637514591217, + -0.13964727520942688, + 0.038095418363809586, + -0.10430708527565002, + -0.11868970841169357, + 0.22095555067062378, + 0.05759384110569954, + 0.5017678141593933, + 0.03804092854261398, + 0.16137215495109558, + 0.5594597458839417, + 0.028902731835842133, + 0.10458949208259583, + 0.31545424461364746, + 0.14177905023097992, + 0.08111873269081116, + -0.4019169211387634, + -0.3299172520637512, + 0.1645774245262146, + -0.4592001736164093, + -0.17618875205516815, + 0.1771056205034256, + 0.3601227402687073, + -0.4261142909526825, + -0.24805137515068054, + 0.03718184679746628, + 0.16099676489830017, + -0.0330050066113472, + -0.10186436772346497, + -0.18327705562114716, + -0.16637906432151794, + -0.2691357731819153, + 0.0019914847798645496, + 0.15452127158641815, + 0.548710286617279, + 0.19844776391983032, + 0.20770733058452606, + -0.4603167772293091, + -0.0875997468829155, + 0.33485472202301025, + 0.17505566775798798, + 0.04642563313245773, + -0.0016026728553697467, + -0.003409197786822915, + 0.2442578673362732, + 0.267121285200119, + -0.003769666887819767, + 0.09719066321849823, + -0.014339839108288288, + 0.06438358128070831, + 0.1902666687965393, + 0.08345533907413483, + -0.0773223489522934, + 0.043732158839702606, + -0.32588401436805725, + 0.0807325690984726, + -0.10127485543489456, + -0.10039543360471725, + 0.26209795475006104, + -0.09970222413539886, + -0.5285391807556152, + -0.1855221539735794, + 0.369540810585022, + -0.10455159842967987, + -0.10919353365898132, + 0.07852448523044586, + 0.19653929769992828, + -0.13951830565929413, + -0.1865592747926712, + 0.04539806395769119, + -0.43937981128692627, + -0.4277142286300659, + 0.10029187798500061, + 0.06945955753326416, + -0.21271030604839325, + -0.011490840464830399, + 0.4974828362464905, + 0.6609566807746887, + 0.32059991359710693, + -0.08826495707035065, + 0.300033837556839, + 0.49126747250556946, + 0.045913323760032654, + -0.2948635518550873, + -10.6453275680542, + -0.026239063590765, + -0.46502891182899475, + 0.48803603649139404, + -0.0635530948638916, + 0.019974367693066597, + 0.03302427753806114, + 0.10970905423164368, + 0.08611094206571579, + 0.028397269546985626, + -0.30255159735679626, + -0.14272035658359528, + 0.2923988401889801, + 0.3444305658340454, + 0.1327124387025833, + 0.09953495115041733, + -0.2801118791103363, + 0.12973006069660187, + 0.12572292983531952, + 0.12208294868469238, + 0.029554234817624092, + 0.2411179542541504, + -0.24112993478775024, + 0.06428408622741699, + -0.22956180572509766, + -0.3825181722640991, + -0.30170944333076477, + 0.6563892960548401, + 0.36797118186950684, + -0.23864033818244934, + 0.25227510929107666, + 0.07721731811761856, + -0.19981367886066437, + 0.2960242033004761, + -0.24150967597961426, + -0.0671287477016449, + -0.06080261245369911, + 0.2987983226776123, + 0.29808828234672546, + -0.15446864068508148, + -0.0790267288684845, + -0.21375370025634766, + 0.3488219976425171, + 0.0870993584394455, + -0.17020206153392792, + -0.5367139577865601, + -0.015563626773655415, + -1.4589170217514038, + 0.3219459354877472, + 0.31813108921051025, + 0.26541268825531006, + 0.1866665929555893, + 0.06806393712759018, + 0.29075542092323303, + -0.11094903945922852, + -4.5912132918601856e-05, + -0.43015357851982117, + -0.1292637288570404, + 0.10101264715194702, + 0.14830872416496277, + 0.09703104943037033, + -0.09465660154819489, + 0.553466260433197, + 0.014735119417309761, + -0.3499966859817505, + 0.08379123359918594, + 0.08724480122327805, + -0.08744580298662186, + -0.27693361043930054, + -0.7689602971076965, + -0.5867736339569092, + -0.045583054423332214, + -0.19767290353775024, + -0.11399487406015396, + 0.30802711844444275, + -0.019876232370734215, + -0.23401512205600739, + 0.33145058155059814, + -0.014609156176447868, + 0.23450326919555664, + 0.338288277387619, + -0.03132055327296257, + 0.22704410552978516, + -0.16944512724876404, + -0.12146801501512527, + -0.13622966408729553, + 0.23274898529052734, + 0.3675716817378998, + -0.05216458812355995, + 0.005810308735817671, + 0.057689785957336426, + 0.29633092880249023, + -0.16739092767238617, + -0.32240521907806396, + -0.41637489199638367, + -0.056138038635253906, + -0.07697215676307678, + 0.0481019951403141, + -0.11374317109584808, + -0.0998888611793518, + -0.2176859974861145, + 0.1016792580485344, + 0.008500780910253525, + -0.6118297576904297, + -0.584271252155304, + 0.371229350566864, + 0.03983033448457718, + 0.12032609432935715, + 0.0020116360392421484, + -0.22729730606079102, + -0.2585941553115845, + 0.09544052183628082, + 0.26489177346229553, + 0.42616117000579834, + 0.19450026750564575, + -0.045677971094846725, + 0.24193856120109558, + -0.5123358964920044, + -0.07548251003026962, + -0.09871569275856018, + 0.4066866934299469, + -0.029788251966238022, + -0.034812841564416885, + 0.5099251866340637, + 0.12809966504573822, + 0.023663179948925972, + 0.9343306422233582, + -0.3605087101459503, + 0.03144390881061554, + 0.12759487330913544, + 0.1631469875574112, + -0.21607862412929535, + -0.49202483892440796, + 0.20500046014785767, + 0.5751309990882874, + -0.37988948822021484, + 0.802206814289093, + 0.3865589499473572, + -0.19988945126533508, + 0.006565405055880547, + -0.34281590580940247, + 0.4420979619026184, + 0.1311047226190567, + 0.2935642600059509, + -0.18770861625671387, + -0.24266216158866882, + -0.1753983348608017, + 0.1093071922659874, + -0.26628923416137695, + -0.2550507187843323, + -0.14665892720222473, + 0.14498800039291382, + 0.10976126790046692, + -0.06511794775724411, + 0.22863514721393585, + 0.2512516379356384, + -0.11330869793891907, + -0.3603987693786621, + -0.3604857325553894, + 0.009053453803062439, + -0.034714434295892715, + 0.9433810710906982, + 0.0898495465517044, + -0.1004301980137825, + 0.05699677765369415, + 0.15536443889141083, + -0.2841053009033203, + 0.035080235451459885, + 0.10534774512052536, + -0.10900156944990158, + -0.3474469780921936, + 0.22728675603866577, + 0.2037973701953888, + -0.19832998514175415, + -0.010063092224299908, + -0.01222736295312643, + -0.15109913051128387, + 0.18324784934520721, + -0.32605409622192383, + -0.06760057806968689, + 0.35840532183647156, + -0.26426640152931213, + 0.05605033412575722, + -0.3325038552284241, + -0.10457861423492432, + 0.020052053034305573, + 0.45472443103790283, + -0.03129701316356659, + -0.39722779393196106, + -0.15162406861782074, + -0.6529621481895447, + 0.24892377853393555, + -0.42748919129371643, + -0.022422917187213898, + 0.216586172580719, + 0.23906299471855164, + -0.20437484979629517, + 0.16357572376728058, + 0.06086691841483116, + -0.022161515429615974, + -0.15703554451465607, + 0.231160506606102, + 0.43596112728118896, + -0.4192539155483246, + 0.42052313685417175, + -0.012064438313245773, + 0.14102450013160706, + 0.0819764956831932, + -0.16554062068462372, + 0.01683872938156128, + -0.27073824405670166 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_020.json b/src/benchmark/output/results/results_graph_020.json new file mode 100644 index 0000000..6195460 --- /dev/null +++ b/src/benchmark/output/results/results_graph_020.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "The patient in question is a male who was initially seen at the hospital with symptoms of toe redness and pain. This condition had been present for several weeks prior to his current encounter. The patient's vital signs were stable during this initial visit, but as time progressed, he began to experience coughing, expectoration, fever, and left lumbar/groin erythema/pain.\n\nFollowing a hospital admission, the patient underwent various tests, including cultures and CT scans, which initially suggested a possible bacterial infection. Despite treatment with piperacillin-tazobactam, the patient's condition worsened, leading to further hospitalization.\n\nDuring this period, the patient experienced significant changes in his vital signs and mental status, including stupor and hypoxia. His electrocardiogram revealed atrial fibrillation, and antimicrobial susceptibility testing indicated sensitivity to meropenem.\n\nThe patient's lab values continued to show abnormal results, with elevated white blood cell count, neutrophil percentage, albumin levels, C-reactive protein, procalcitonin, N-terminal pro b-type natriuretic peptide, alanine aminotransferase, aspartate aminotransferase, and creatinine.\n\nThroughout the patient's hospital stay, he received treatment with meropenem, which was found to be sensitive in antimicrobial susceptibility testing. Despite this, the patient continued to experience persistent symptoms and abnormal lab values.\n\nThe timeline of diagnoses and treatments for this patient can be summarized as follows:\n\n* Initial visit: Toe redness/pain (weeks prior)\n* Hospital admission: Coughing, expectoration, fever, left lumbar/groin erythema/pain\n* Treatment with piperacillin-tazobactam\n* Further hospitalization due to worsening condition\n* Development of stupor, hypoxia, and atrial fibrillation\n* Treatment with meropenem\n\nThe patient's outcomes are currently uncertain, as the narrative does not provide information on his current status or any subsequent treatments. However, it is clear that this patient has experienced a significant decline in his health status over time, requiring multiple hospitalizations and various treatments to manage his symptoms and lab values.", + "bertscore": { + "precision": [ + 0.510433554649353 + ], + "recall": [ + 0.565669059753418 + ], + "f1": [ + 0.5366336703300476 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 9, + "edge_count": 8, + "avg_in_degree": 0.8888888888888888, + "density": 0.1111111111111111 + }, + "trajectory_embedding": [ + 0.2106419950723648, + 0.10880613327026367, + -0.019303588196635246, + 0.17433996498584747, + 0.13737574219703674, + 0.09073399007320404, + 0.057045288383960724, + 0.16380244493484497, + 0.42614296078681946, + -0.31337109208106995, + -0.12151220440864563, + 0.03720476105809212, + -0.6054100394248962, + -0.16327770054340363, + -0.23895896971225739, + 0.11631965637207031, + 0.07228496670722961, + 0.3089013695716858, + -0.08493703603744507, + -0.21022090315818787, + -0.36365726590156555, + 0.15588967502117157, + -0.6294155716896057, + 0.02243931032717228, + 0.14175309240818024, + 0.028116196393966675, + 0.34108197689056396, + 0.5240073204040527, + 0.2693374752998352, + 0.39593401551246643, + 0.2061617076396942, + -0.0823725163936615, + -0.01497750822454691, + -0.11281473189592361, + -0.17413188517093658, + 0.2308027148246765, + 0.16070705652236938, + 0.25993311405181885, + -0.254983514547348, + -0.012941830791532993, + -0.12176794558763504, + 0.0334942527115345, + 0.748900294303894, + 0.2642892599105835, + 0.5050461292266846, + -0.6466915607452393, + -0.16702505946159363, + 0.6085689067840576, + -0.38124507665634155, + -0.17354196310043335, + 0.2572113275527954, + 0.7883853316307068, + 0.3161424696445465, + -0.23819337785243988, + 0.40180984139442444, + -0.16260910034179688, + -0.07393442839384079, + -0.3350485563278198, + -0.3879830539226532, + 0.08519802987575531, + 0.0686965137720108, + -0.21108095347881317, + 0.39452508091926575, + -0.24813801050186157, + -0.07792378962039948, + -0.07639443129301071, + -0.2561207413673401, + -0.04235279560089111, + -0.07110276818275452, + -0.2653505504131317, + -0.2081567943096161, + -0.29729583859443665, + -0.2592744529247284, + -0.0328715480864048, + 0.06224221736192703, + -0.11933320015668869, + 0.1404157429933548, + -0.21414032578468323, + 0.08842240273952484, + 0.019864855334162712, + -0.13814669847488403, + 0.05013658106327057, + -0.00995088741183281, + 0.2800530791282654, + -0.3295649290084839, + 0.04662759602069855, + -0.04814550280570984, + -0.01855117827653885, + -0.3901212513446808, + 0.030686549842357635, + 0.03157952055335045, + -0.37435856461524963, + 0.14389216899871826, + -0.2745380997657776, + -0.20200186967849731, + -0.038155313581228256, + 0.5022233128547668, + 0.15282216668128967, + 0.9131649732589722, + -0.021530376747250557, + 0.19801171123981476, + 0.1947164535522461, + 0.28294938802719116, + -0.04407372698187828, + 0.4101736843585968, + 0.04008377343416214, + 0.27078568935394287, + -0.43427789211273193, + 0.23837001621723175, + 0.4297575354576111, + -0.012920886278152466, + -0.3983277678489685, + 0.007414809428155422, + -0.2391667366027832, + 0.10856423527002335, + 0.08856745064258575, + -0.19410164654254913, + 0.21437537670135498, + 0.09220040589570999, + -0.19481675326824188, + 0.2031209021806717, + -0.2674005329608917, + 0.2941111922264099, + 0.24663108587265015, + -0.33615925908088684, + -0.12216104567050934, + 0.022472789511084557, + -0.1328117996454239, + 0.028869040310382843, + 0.18503564596176147, + -0.5876986980438232, + -0.2229851931333542, + 0.04128291830420494, + 0.22066853940486908, + -0.13331471383571625, + 0.2536861300468445, + -0.3597288727760315, + 0.20986202359199524, + -1.2085487842559814, + 0.1784917712211609, + -0.23913131654262543, + -0.10125952214002609, + 0.03965725004673004, + -0.6547300815582275, + -0.20017921924591064, + -0.1738467514514923, + -0.13050611317157745, + 0.0769798532128334, + -0.11141714453697205, + -0.12569600343704224, + -0.04234907403588295, + -0.06415896862745285, + 0.17401480674743652, + 0.4063470959663391, + 0.07412313669919968, + -0.0013055503368377686, + 0.08718417584896088, + 0.3166393041610718, + 0.12322766333818436, + -0.20843945443630219, + -0.17917610704898834, + 0.37217438220977783, + 0.1289624273777008, + 0.164078950881958, + -0.006611814256757498, + -0.691051721572876, + 0.06098173186182976, + -0.11591410636901855, + -0.010937662795186043, + 0.05780157074332237, + 0.038090869784355164, + 0.13337305188179016, + -0.24601279199123383, + 0.5995233654975891, + 0.09303423762321472, + 0.5979005098342896, + -0.09620755910873413, + -0.03145679458975792, + 0.1369025856256485, + 0.18680353462696075, + 0.14828112721443176, + -0.25307267904281616, + 0.44141536951065063, + 0.2667800188064575, + -0.2671961188316345, + 0.1362007111310959, + 0.4275444746017456, + -0.18255257606506348, + -0.3445335626602173, + -0.1323455274105072, + 0.19190388917922974, + -0.28857946395874023, + 0.3873940706253052, + -0.10226834565401077, + -0.005907071754336357, + 0.08240007609128952, + -0.29760873317718506, + -0.014471936970949173, + -0.04865902289748192, + 0.051368389278650284, + 0.22010141611099243, + -0.006548302248120308, + -0.139135479927063, + 0.08370070904493332, + 0.03029615432024002, + -0.05691031739115715, + 0.23927678167819977, + -0.00032897459459491074, + 0.02383904904127121, + 0.1396598219871521, + -0.06683990359306335, + 0.005486647132784128, + 0.0335293672978878, + 0.23604409396648407, + 0.05257992818951607, + -0.2611464262008667, + 0.27949732542037964, + -0.05187162384390831, + -0.24943383038043976, + 0.0999513566493988, + -0.026103181764483452, + -0.2645890712738037, + 0.08105620741844177, + -0.06066850200295448, + -0.3288972079753876, + 0.2152763456106186, + 0.26106521487236023, + 0.13299284875392914, + 0.06712249666452408, + -0.0036029228940606117, + -0.024390533566474915, + -0.39200952649116516, + 0.25125300884246826, + -0.09972210973501205, + -0.01672961935400963, + -0.4031425416469574, + 0.11387026309967041, + -0.010314497165381908, + 0.07092046737670898, + 0.2209128588438034, + 0.09548868238925934, + -0.0066885375417768955, + -0.0388578437268734, + -0.21163244545459747, + 0.10249677300453186, + -0.3668613135814667, + 0.02157323807477951, + 0.24533557891845703, + 0.08131830394268036, + 0.1166636273264885, + 0.028722962364554405, + -0.12230498343706131, + 0.2545979619026184, + -0.16561362147331238, + -0.344129353761673, + -0.41324448585510254, + -0.25268593430519104, + -0.004012306686490774, + -0.6349512934684753, + 0.2825089693069458, + -0.06362907588481903, + 0.11967791616916656, + 0.15481652319431305, + -0.11944307386875153, + -0.23064589500427246, + 0.004724820610135794, + 0.037951841950416565, + 0.2509922981262207, + -0.1105724573135376, + -0.029459217563271523, + -0.23905031383037567, + 0.05526715889573097, + -0.16028793156147003, + -0.08846305310726166, + 0.07943443208932877, + 0.04724115505814552, + -0.2919447720050812, + 0.10423599183559418, + -0.02120865322649479, + -0.4848921000957489, + -0.25769510865211487, + 0.039068277925252914, + -0.12566950917243958, + 0.32244065403938293, + -0.006217098794877529, + 0.25699612498283386, + 0.28179454803466797, + 0.0574057511985302, + 0.14040599763393402, + 0.46977704763412476, + 0.3829237222671509, + 0.01944318413734436, + 0.23722368478775024, + -0.02852700464427471, + -0.0552494078874588, + 0.047712769359350204, + -0.39025256037712097, + 0.4625300168991089, + -0.021601783111691475, + -0.05186959728598595, + 0.1796717792749405, + 0.27574384212493896, + 0.039285819977521896, + -0.40603864192962646, + -0.05720657855272293, + 0.23120254278182983, + 0.013557596132159233, + 0.2843467891216278, + 0.03118785284459591, + 0.12376386672258377, + 0.6033554673194885, + 0.01809762790799141, + 0.09081161022186279, + 0.22636277973651886, + -0.08533717691898346, + -0.11263079196214676, + 0.1082049310207367, + 0.09601285308599472, + 0.2585923969745636, + -0.08516531437635422, + -0.1704254150390625, + 0.27755099534988403, + -0.04964151233434677, + -0.23925775289535522, + -0.31483009457588196, + -0.2097657471895218, + -0.043941888958215714, + -0.24499072134494781, + 0.4660603702068329, + -0.11674865335226059, + 0.0035512621980160475, + 0.46072325110435486, + -0.16448718309402466, + -0.18456865847110748, + 0.2116323858499527, + 0.004152936860918999, + -0.5332901477813721, + 0.3758310377597809, + -0.25869661569595337, + 0.14831966161727905, + 0.10567215085029602, + -0.21225646138191223, + -0.21028804779052734, + -0.016575435176491737, + 0.3650599718093872, + -0.04673073813319206, + -0.06386672705411911, + -0.01176233310252428, + 0.0024944907054305077, + 0.13979898393154144, + 0.36130473017692566, + 0.1873580813407898, + 0.36930689215660095, + 0.502091646194458, + -0.12396284937858582, + -0.275184690952301, + 0.06207086518406868, + -0.10762478411197662, + 0.26644954085350037, + -0.2610054016113281, + 0.010221986100077629, + -0.10803590714931488, + 0.10237875580787659, + 0.04380020126700401, + -0.46530792117118835, + 0.11609501391649246, + 0.048537541180849075, + 0.034690458327531815, + -0.11273365467786789, + 0.5013396739959717, + 0.12820205092430115, + -0.01811562292277813, + 0.37537795305252075, + -0.02617756277322769, + -0.417361319065094, + 0.20435605943202972, + 0.057851552963256836, + 0.2426651269197464, + -0.025920942425727844, + -0.33280059695243835, + -0.3120358884334564, + 0.0036580199375748634, + -0.26735690236091614, + -0.22433406114578247, + 0.031395357102155685, + -0.17828482389450073, + -0.020577430725097656, + -0.1498924046754837, + -0.0015054108807817101, + 0.07858897745609283, + 0.2234927862882614, + 0.1780727505683899, + 0.5300737619400024, + 0.06557422876358032, + -0.23937126994132996, + 0.06533487886190414, + -0.14372606575489044, + -0.04926498234272003, + -0.06283512711524963, + 0.04361394792795181, + -0.1348077952861786, + 0.49056026339530945, + 0.16172295808792114, + -0.0380152091383934, + 0.01756528951227665, + -0.002001962624490261, + -0.06437436491250992, + -0.5427749156951904, + 0.0913388729095459, + -0.09944786876440048, + 0.046869829297065735, + 0.08029285073280334, + -0.01959826797246933, + -0.287925660610199, + -0.16743609309196472, + 0.0776854157447815, + 0.058170121163129807, + 0.047429487109184265, + -0.0467129610478878, + 0.004028946161270142, + 0.3432208299636841, + 0.05046764388680458, + 0.3982134163379669, + -0.15908339619636536, + 0.14505964517593384, + 0.15614759922027588, + -0.5210883617401123, + -0.07178674638271332, + -0.1250327229499817, + -0.42979878187179565, + -0.08908174186944962, + 0.2816658318042755, + 0.07305563986301422, + 0.09571482241153717, + -0.036772388964891434, + 0.01433420367538929, + 0.01667613536119461, + -0.2952002286911011, + -0.15986622869968414, + 0.32725703716278076, + -0.048746585845947266, + 0.4558311700820923, + 0.0642189085483551, + -0.554359495639801, + -0.21787665784358978, + 0.03771365061402321, + -0.30953097343444824, + 0.03352799639105797, + -0.024731462821364403, + -0.21345891058444977, + -0.08389066159725189, + 0.04913676530122757, + 0.001876132795587182, + -0.06407073140144348, + 0.26029089093208313, + -0.0849052295088768, + 0.22275573015213013, + 0.23937413096427917, + -0.2794078588485718, + 0.032483410090208054, + -0.2779526710510254, + -0.46873393654823303, + -0.03967384994029999, + 0.17431889474391937, + 0.14102889597415924, + -0.09394723922014236, + -0.027646789327263832, + 0.06408976018428802, + -0.15337562561035156, + -0.26637160778045654, + -0.11144962906837463, + -0.24772270023822784, + 0.3612811863422394, + -0.16475017368793488, + -0.07819262892007828, + 0.07063306868076324, + -0.1513233184814453, + 0.01993541419506073, + 0.10848093777894974, + 0.05637967586517334, + 0.2162838578224182, + 0.10294682532548904, + 0.04776406288146973, + 0.42827680706977844, + 0.1970646232366562, + 0.16319654881954193, + 0.08388814330101013, + -0.07115040719509125, + 0.035336270928382874, + -0.2576919496059418, + -0.12773118913173676, + 0.2690187692642212, + -0.29856836795806885, + -0.18090234696865082, + 0.1893032193183899, + 0.23560217022895813, + -0.3732868731021881, + -0.24898409843444824, + 0.004679245874285698, + 0.2064153552055359, + -0.11779399961233139, + -0.12840741872787476, + -0.12739640474319458, + 0.040899910032749176, + -0.13410554826259613, + -0.12014937400817871, + 0.1415196657180786, + 0.38951170444488525, + 0.19969764351844788, + 0.00902127381414175, + -0.15469568967819214, + -0.23547792434692383, + 0.23927658796310425, + 0.2202182412147522, + 0.03696039691567421, + -0.023240072652697563, + -0.012270305305719376, + 0.1277340203523636, + 0.5939412713050842, + 0.018129723146557808, + 0.008941730484366417, + 0.1182049885392189, + 0.11063812673091888, + -0.061624690890312195, + 0.07146619260311127, + 0.030123773962259293, + 0.12261079251766205, + -0.26300257444381714, + 0.01722853258252144, + -0.11200818419456482, + -0.3125417232513428, + 0.19035694003105164, + -0.2562330961227417, + -0.5949046611785889, + -0.03783639147877693, + 0.22862643003463745, + -0.13511858880519867, + -0.03775954991579056, + 0.14774495363235474, + 0.30907484889030457, + -0.015085216611623764, + -0.1509649157524109, + 0.16433508694171906, + -0.4784407615661621, + -0.030887149274349213, + 0.13038332760334015, + -0.17825466394424438, + -0.09779169410467148, + 0.16942480206489563, + 0.3118239641189575, + 0.46368545293807983, + 0.3189510107040405, + -0.14981594681739807, + 0.33393678069114685, + 0.3780025243759155, + 0.29118144512176514, + -0.19218090176582336, + -10.664474487304688, + 0.1653156280517578, + -0.3729970455169678, + 0.5418894290924072, + -0.18439900875091553, + -0.01135027315467596, + -0.026082856580615044, + 0.16700035333633423, + 0.17641745507717133, + 0.1791881024837494, + -0.2384231686592102, + 0.04542221501469612, + 0.29394057393074036, + 0.2608250379562378, + 0.0627342164516449, + 0.1665218472480774, + -0.14856934547424316, + 0.25972676277160645, + -0.01727714203298092, + 0.27669772505760193, + 0.2533832788467407, + 0.47019439935684204, + -0.2583813965320587, + 0.21632330119609833, + -0.1058894619345665, + -0.3098553717136383, + -0.2507351338863373, + 0.44931289553642273, + 0.16022315621376038, + -0.3592587113380432, + 0.268943190574646, + 0.07086031883955002, + -0.3500669598579407, + 0.23772910237312317, + -0.23403435945510864, + -0.1868886649608612, + -0.004067720379680395, + 0.1637546867132187, + 0.1208803653717041, + -0.10315802693367004, + -0.09091874957084656, + -0.21950823068618774, + 0.30612102150917053, + 0.17800267040729523, + -0.06381233781576157, + -0.5735015869140625, + -0.22828303277492523, + -1.4967691898345947, + 0.23377346992492676, + 0.5447242259979248, + 0.46675682067871094, + 0.08239992707967758, + 0.18533556163311005, + 0.3716229200363159, + -0.21887388825416565, + -0.06498956680297852, + -0.35945212841033936, + 0.0049874186515808105, + 0.10829704999923706, + 0.0706065222620964, + 0.13616807758808136, + -0.028316788375377655, + 0.537838339805603, + -0.15659059584140778, + -0.4233495593070984, + 0.10359988361597061, + 0.13554327189922333, + -0.1485866755247116, + -0.17028838396072388, + -0.6819295883178711, + -0.47188296914100647, + 0.049371153116226196, + -0.022138705477118492, + -0.08931586891412735, + 0.1411208063364029, + 0.051849015057086945, + -0.294107049703598, + 0.19275082647800446, + -0.005019370466470718, + 0.36029598116874695, + 0.3933006525039673, + -0.20219288766384125, + 0.18850451707839966, + -0.2755528688430786, + -0.19528096914291382, + -0.23470014333724976, + 0.03514869883656502, + 0.449699729681015, + 0.031063105911016464, + -0.09356974065303802, + -0.0036744277458637953, + 0.3233049809932709, + 0.0032861013896763325, + -0.05181475356221199, + -0.39285480976104736, + -0.049771443009376526, + 0.13946110010147095, + 0.07027340680360794, + 0.09844367206096649, + -0.0031550361309200525, + -0.3504365086555481, + 0.24938304722309113, + -0.12474925071001053, + -0.44034117460250854, + -0.45049625635147095, + 0.10239197313785553, + 0.30806633830070496, + 0.09706321358680725, + 0.1664925366640091, + -0.07769337296485901, + -0.07114646583795547, + 0.05691900476813316, + 0.2987230122089386, + 0.4158226549625397, + 0.12941177189350128, + -0.2177663892507553, + -0.040048278868198395, + -0.24905282258987427, + -0.1267763078212738, + 0.11009705811738968, + 0.293184757232666, + -0.1922222226858139, + 0.01451030746102333, + 0.5699648261070251, + -0.035883828997612, + 0.03697851300239563, + 0.8519302010536194, + -0.33734142780303955, + 0.41937506198883057, + -0.04599520564079285, + 0.15714877843856812, + 0.06544811278581619, + -0.37183910608291626, + 0.25773394107818604, + 0.23937958478927612, + -0.20910392701625824, + 0.4539826214313507, + 0.2718534767627716, + -0.1819753497838974, + 0.03914070874452591, + -0.19234038889408112, + 0.446667343378067, + 0.22861544787883759, + 0.09070474654436111, + -0.20197565853595734, + -0.32054442167282104, + -0.325752854347229, + 0.06719858944416046, + -0.2085573524236679, + -0.10946115851402283, + -0.10337796807289124, + 0.1261908859014511, + -0.021561887115240097, + 0.04795725643634796, + 0.26324981451034546, + 0.023370875045657158, + 0.014798513613641262, + -0.3700186014175415, + -0.3549252450466156, + -0.08499384671449661, + -0.0766405314207077, + 0.746932327747345, + -0.010739777237176895, + -0.1592572033405304, + -0.03287466987967491, + 0.23088687658309937, + -0.10033045709133148, + 0.20249146223068237, + 0.02324358932673931, + -0.059443797916173935, + -0.3397334814071655, + 0.25858521461486816, + 0.11550690233707428, + -0.3533007502555847, + -0.07568727433681488, + -0.1121782436966896, + 0.022715957835316658, + -0.09050838649272919, + -0.12819808721542358, + 0.22416141629219055, + 0.32218196988105774, + -0.10593453794717789, + 0.12955349683761597, + -0.44497668743133545, + 0.05902339518070221, + 0.1542040854692459, + 0.21490533649921417, + 0.0332803837954998, + -0.19498544931411743, + -0.20270460844039917, + -0.5063670873641968, + 0.17138439416885376, + -0.3961268663406372, + -0.03199204429984093, + 0.2578156888484955, + -0.024249456822872162, + -0.1954578012228012, + 0.1126016229391098, + -0.023953845724463463, + -0.04997359216213226, + -0.2592393755912781, + 0.3175237774848938, + 0.3671363294124603, + -0.2631262242794037, + 0.31645116209983826, + -0.08269727230072021, + 0.13271668553352356, + 0.03882494196295738, + -0.3732842803001404, + 0.1384139060974121, + -0.2786295711994171 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_022.json b/src/benchmark/output/results/results_graph_022.json new file mode 100644 index 0000000..98c102e --- /dev/null +++ b/src/benchmark/output/results/results_graph_022.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 77-year-old man with a history of hypertension, hyperlipidemia, and right-sided hearing loss due to chronic otitis media. He is a heavy smoker with no medical history of malignancy.\n\n**Initial Presentation (Step 1):**\nThe patient presented with left-sided hearing loss, otalgia, and a red mass in the left external auditory canal (EAC) that persisted for several weeks. Physical examination revealed a red, soft mass measuring approximately 20 mm occupying the left EAC.\n\n**Diagnostic Workup:**\nImaging studies, including CT scans and MRI, were performed to evaluate the extent of the mass. Laboratory tests showed normal Span-1 and DUPAN2 levels, elevated ProGRP (698 pg/mL) and NSE (31.1 ng/mL). Pure-tone audiometry revealed bilateral mixed hearing loss.\n\n**Diagnosis:**\nThe diagnosis was initially suspected to be carcinoma of the EAC based on imaging findings and laboratory results. However, further testing, including biopsies from the EAC mass, lung, and pancreas, confirmed the presence of small cell lung cancer (SCLC).\n\n**Treatment:**\nChemotherapy with carboplatin, etoposide, and zoledronic acid was initiated to treat bone metastases. The treatment resulted in a reduction in size of metastatic lesions in the EAC and middle ear, improvement in hearing impairment and otalgia, and a decrease in ProGRP levels.\n\n**Outcome:**\nThe patient experienced severe hearing loss but regained the ability to understand conversations as the tumor shrank. Otalgia resolved, and opioid therapy was discontinued. Unfortunately, the patient died 15 months later due to complications from SCLC.\n\n**Autopsy Findings:**\nAt autopsy, resolution of EAC lesions was observed grossly. CT imaging revealed mastoid destruction and tumor invasion into the EAC.\n\n**Conclusion:**\nThis case highlights the importance of comprehensive diagnostic workup and multidisciplinary treatment approaches for patients with suspected carcinoma of the EAC. Early detection and treatment can improve outcomes, but the disease is often aggressive, leading to poor prognosis in some cases.", + "bertscore": { + "precision": [ + 0.6627601981163025 + ], + "recall": [ + 0.6721744537353516 + ], + "f1": [ + 0.6674340963363647 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 6, + "edge_count": 5, + "avg_in_degree": 0.8333333333333334, + "density": 0.16666666666666666 + }, + "trajectory_embedding": [ + 0.14263400435447693, + -0.013967558741569519, + -0.2280512899160385, + 0.02719009481370449, + -0.11668924242258072, + -0.14093691110610962, + 0.10111647099256516, + 0.0954238548874855, + 0.22714979946613312, + -0.2350296974182129, + -0.3323439657688141, + 0.36267557740211487, + -0.6519513130187988, + 0.014573529362678528, + -0.52058345079422, + -0.19109226763248444, + 0.09013906866312027, + 0.25849395990371704, + 0.0019105846295133233, + -0.085513174533844, + -0.3053945004940033, + -0.014985094778239727, + -0.44441214203834534, + -0.3733973801136017, + 0.012094889767467976, + -0.17213447391986847, + 0.2521288990974426, + 0.38103732466697693, + 0.18762850761413574, + 0.3369557857513428, + 0.28039857745170593, + 0.13269275426864624, + -0.2109321802854538, + 0.026624105870723724, + -0.14454267919063568, + 0.378347784280777, + 0.3238556683063507, + 0.38173845410346985, + 0.03301335126161575, + 0.14019817113876343, + -0.013893429189920425, + -0.00844264030456543, + 0.7344319820404053, + 0.4458934962749481, + 0.6813879013061523, + -0.4836479723453522, + 0.06258084625005722, + 0.4463832378387451, + -0.4775741398334503, + -0.09614425152540207, + 0.24064618349075317, + 0.4909329116344452, + 0.7274518013000488, + -0.06812626123428345, + 0.42710113525390625, + -0.1063355877995491, + -0.4724377691745758, + -0.14793984591960907, + -0.3198566734790802, + 0.07773143798112869, + -0.11058685183525085, + -0.017126763239502907, + -0.04867764934897423, + 0.18652234971523285, + -0.3085411489009857, + -0.28183987736701965, + -0.15067940950393677, + 0.08860085159540176, + 0.026836806908249855, + -0.5083489418029785, + -0.22759635746479034, + -0.33625760674476624, + -0.1233116164803505, + 0.09633906930685043, + 0.2236749529838562, + -0.21123677492141724, + 0.31595247983932495, + 0.0187645573168993, + -0.05732910707592964, + -0.0105271702632308, + 0.25871405005455017, + 0.040202222764492035, + 0.07267433404922485, + 0.2021091729402542, + -0.41539713740348816, + 0.19434837996959686, + -0.1053701639175415, + -0.1784449964761734, + -0.11617955565452576, + 0.3612995147705078, + 0.3753054141998291, + -0.13045118749141693, + 0.016498982906341553, + -0.023300131782889366, + 0.2533210813999176, + -0.16480009257793427, + 0.22336417436599731, + 0.45945000648498535, + 1.073231816291809, + -0.0172868724912405, + 0.2346866875886917, + 0.15012632310390472, + 0.32151302695274353, + 0.010287362150847912, + 0.4225732386112213, + -0.05394242703914642, + 0.2426641434431076, + -0.38593652844429016, + -0.049994368106126785, + 0.23788189888000488, + -0.05269990488886833, + -0.06275355815887451, + 0.19462771713733673, + -0.5031318664550781, + -0.07803850620985031, + -0.026726817712187767, + -0.1625668853521347, + 0.13421104848384857, + 0.08291395753622055, + -0.402536004781723, + 0.037196263670921326, + -0.2469092607498169, + 0.3950437307357788, + 0.33380207419395447, + -0.38963091373443604, + 0.05624598264694214, + -0.07670390605926514, + 0.3195331394672394, + -0.0684373751282692, + 0.2322998195886612, + -0.3820244371891022, + -0.027936413884162903, + -0.013474990613758564, + 0.36200079321861267, + -0.22275769710540771, + 0.26239094138145447, + -0.5345274806022644, + 0.05793166533112526, + -1.1662644147872925, + 0.24915778636932373, + -0.5248550772666931, + -0.13557937741279602, + 0.16355261206626892, + -0.33764007687568665, + -0.13752518594264984, + -0.23485082387924194, + -0.19018171727657318, + 0.08590900897979736, + 0.27862659096717834, + -0.18283338844776154, + -0.2579822242259979, + 0.12817968428134918, + 0.10596403479576111, + 0.1177777647972107, + 0.09708749502897263, + 0.04826320335268974, + 0.0875403881072998, + 0.4118797481060028, + 0.2490370273590088, + -0.2016640454530716, + 0.020789114758372307, + 0.23313969373703003, + -0.19102288782596588, + -0.2374248057603836, + 0.052522968500852585, + -0.6940896511077881, + 0.33676788210868835, + -0.2718869149684906, + 0.1882142275571823, + 0.18219949305057526, + -0.14405351877212524, + 0.25275924801826477, + 0.07379674166440964, + 0.410624623298645, + 0.3487526476383209, + 0.47222718596458435, + -0.000444069504737854, + -0.041859086602926254, + 0.3834359645843506, + -0.04782509803771973, + 0.030522486194968224, + 0.16536222398281097, + 0.5314124226570129, + -0.019230825826525688, + -0.2920495569705963, + 0.25392016768455505, + 0.30274954438209534, + -0.1455223709344864, + -0.12706588208675385, + -0.238215371966362, + 0.4677692651748657, + -0.2808533012866974, + 0.32104650139808655, + -0.41079720854759216, + 0.024386964738368988, + -0.06672697514295578, + -0.3667617738246918, + -0.3351384699344635, + 0.1860668808221817, + -0.23425179719924927, + 0.31457921862602234, + 0.27680978178977966, + -0.19925864040851593, + 0.32063326239585876, + 0.095461905002594, + -0.002454414963722229, + 0.25662705302238464, + 0.16951984167099, + -0.002350362716242671, + -0.2267133742570877, + -0.10220292955636978, + 0.09658321738243103, + 0.04379658401012421, + 0.1875181645154953, + 0.10189547389745712, + -0.09258469194173813, + 0.2902921736240387, + -0.16729296743869781, + -0.07412782311439514, + 0.19305114448070526, + -0.15209262073040009, + 0.059456855058670044, + 0.4065520465373993, + -0.07519810646772385, + -0.27348092198371887, + 0.14677099883556366, + 0.07312337309122086, + 0.09485184401273727, + 0.06311219185590744, + -0.173783078789711, + 0.09116180986166, + -0.11250779777765274, + 0.4344259202480316, + -0.07776370644569397, + -0.22094595432281494, + -0.11717989295721054, + -0.00699470704421401, + -0.3443423807621002, + -0.2452765554189682, + 0.36058831214904785, + -0.2918640375137329, + -0.06476696580648422, + 0.07017479091882706, + -0.1306014209985733, + -0.18783533573150635, + -0.19026534259319305, + 0.08397919684648514, + 0.5696138739585876, + 0.17420321702957153, + 0.42639556527137756, + 0.2834916412830353, + -0.00813677441328764, + 0.20436836779117584, + -0.3348608911037445, + -0.057846084237098694, + -0.30112388730049133, + -0.130253404378891, + -0.2163717895746231, + -0.22372090816497803, + -0.04609327018260956, + 0.05644960328936577, + -0.26830312609672546, + 0.038906943053007126, + -0.3113308548927307, + -0.17096959054470062, + -0.012628472410142422, + -0.14673437178134918, + 0.12185537070035934, + -0.09331504255533218, + 0.09289703518152237, + -0.45535218715667725, + -0.2708885073661804, + -0.07045597583055496, + 0.008830440230667591, + 0.299381822347641, + 0.22943608462810516, + 0.005335009191185236, + 0.02736729383468628, + 0.18723881244659424, + -0.5697064995765686, + -0.5402962565422058, + 0.1659899353981018, + -0.44307419657707214, + 0.1457926481962204, + -0.1431875079870224, + 0.20127899944782257, + 0.48397621512413025, + -0.08031558990478516, + 0.04315729811787605, + 0.47172513604164124, + 0.6166759729385376, + 0.12520791590213776, + -0.13148976862430573, + -0.05134965851902962, + 0.048514384776353836, + -0.024920329451560974, + -0.42191219329833984, + 0.09434044361114502, + -0.13445593416690826, + 0.11218368262052536, + 0.052102331072092056, + 0.30143335461616516, + -0.05832936242222786, + -0.5497106909751892, + -0.1685875803232193, + 0.5849449634552002, + 0.3072609007358551, + -0.03890387341380119, + 0.00650314474478364, + 0.32299116253852844, + 0.6608852744102478, + -0.05233335494995117, + -0.47857144474983215, + 0.05955417454242706, + -0.20224042236804962, + -0.17796681821346283, + -0.14911261200904846, + -0.10554260015487671, + 0.21079343557357788, + 0.07488243281841278, + -0.10986461490392685, + 0.40088751912117004, + -0.19407276809215546, + -0.27904316782951355, + 0.045372992753982544, + -0.05334864556789398, + 0.059350788593292236, + -0.2784360349178314, + 0.3607245683670044, + -0.2549184262752533, + -0.00532691553235054, + 0.49520382285118103, + -0.10048238188028336, + -0.22394336760044098, + 0.30194392800331116, + 0.03614988178014755, + -0.23382902145385742, + 0.18731428682804108, + -0.07350298017263412, + -0.149375319480896, + 0.3451267182826996, + -0.018015749752521515, + -0.0681331679224968, + -0.19080893695354462, + 0.010501175187528133, + 0.15878276526927948, + -0.06580855697393417, + -0.3513306677341461, + 0.135676309466362, + 0.216532900929451, + 0.67995285987854, + 0.06578756868839264, + -0.02210354618728161, + 0.3613463342189789, + -0.280923992395401, + -0.16245709359645844, + -0.11651108413934708, + 0.22889924049377441, + 0.18944710493087769, + -0.4091402292251587, + -0.3709990680217743, + -0.5098230838775635, + 0.32766464352607727, + 0.19306272268295288, + -0.15183629095554352, + 0.05738084390759468, + 0.16719631850719452, + -0.10030317306518555, + 0.1294422447681427, + 0.1308947205543518, + 0.36838552355766296, + -0.013272752054035664, + 0.5209472179412842, + 0.15077461302280426, + -0.07293983548879623, + 0.2264697551727295, + 0.016163988038897514, + 0.41577985882759094, + -0.23550790548324585, + -0.38704678416252136, + -0.36177098751068115, + 0.012008328922092915, + -0.1024169996380806, + -0.13821591436862946, + -0.014633658342063427, + 0.12988923490047455, + -0.11960884183645248, + -0.05947687849402428, + 0.3747653067111969, + -0.17041254043579102, + 0.20024631917476654, + -0.06413153558969498, + 0.6005843281745911, + -0.015310402028262615, + -0.38573190569877625, + 0.01649341732263565, + -0.011321929283440113, + 0.39044925570487976, + -0.19996392726898193, + -0.04440264031291008, + -0.21982036530971527, + 0.37472236156463623, + -0.04276905581355095, + -0.09620026499032974, + 0.02908872626721859, + -0.09099507331848145, + -0.2753008306026459, + -0.3301914930343628, + -0.04791897535324097, + -0.15440554916858673, + -0.16816763579845428, + -0.06730172783136368, + 0.3915735185146332, + -0.09142514318227768, + -0.27188313007354736, + -0.0064256563782691956, + 0.24760763347148895, + 0.24148720502853394, + -0.19531966745853424, + 0.3006075918674469, + -0.04432208463549614, + 0.016827555373311043, + 0.31624773144721985, + -0.055343568325042725, + 0.051810842007398605, + 0.025378888472914696, + -0.09153778105974197, + -0.04661935940384865, + 0.08529358357191086, + -0.18797290325164795, + -0.006317213177680969, + -0.014395952224731445, + 0.13675059378147125, + 0.20835058391094208, + 0.05316430702805519, + -0.18120451271533966, + 0.22870458662509918, + -0.2968134880065918, + -0.04303964972496033, + 0.4027644395828247, + -0.045180436223745346, + 0.3334524631500244, + -0.10494107753038406, + -0.3927772343158722, + -0.13229545950889587, + -0.02299315668642521, + -0.4296928942203522, + 0.09050929546356201, + -0.11670929193496704, + -0.1279643028974533, + -0.14898915588855743, + 0.17724640667438507, + 0.03909764811396599, + 0.10060129314661026, + 0.15947546064853668, + 0.06152903661131859, + 0.14317896962165833, + -0.23866748809814453, + -0.43254828453063965, + -0.09901084750890732, + -0.38773587346076965, + -0.22253715991973877, + -0.3123810589313507, + 0.495396226644516, + 0.3451974391937256, + 0.027216836810112, + 0.30889615416526794, + 0.17671746015548706, + -0.3696812689304352, + -0.4285455048084259, + 0.09291333705186844, + 0.002520974725484848, + 0.6669923663139343, + 0.1204298809170723, + -0.1391136795282364, + 0.21396581828594208, + -0.35269927978515625, + 0.16999216377735138, + 0.11407909542322159, + 0.3363466262817383, + 0.2050272673368454, + 0.17792630195617676, + 0.18760748207569122, + 0.40716585516929626, + 0.04768723249435425, + -0.07181703299283981, + 0.26335182785987854, + -0.06776238977909088, + -0.07599229365587234, + 0.05318622663617134, + -0.26008141040802, + 0.4335303008556366, + -0.2083413451910019, + 0.2967942953109741, + 0.03481077775359154, + 0.40641748905181885, + -0.3295558989048004, + -0.2863113582134247, + -0.14955826103687286, + -0.19514746963977814, + -0.16241545975208282, + -0.3860439360141754, + -0.09196055680513382, + 0.035194072872400284, + -0.39686882495880127, + -0.02615247666835785, + 0.313225120306015, + 0.20985959470272064, + 0.22650933265686035, + 0.10929300636053085, + -0.18530885875225067, + -0.5958649516105652, + 0.11688381433486938, + 0.3786272704601288, + 0.06033504009246826, + -0.06098856404423714, + -0.21456551551818848, + 0.13519680500030518, + 0.5937404632568359, + -0.147824227809906, + -0.15363654494285583, + -0.15835800766944885, + -0.019994698464870453, + -0.15189863741397858, + 0.04986085370182991, + 0.13520026206970215, + 0.008173215202987194, + -0.2559444308280945, + 0.18466399610042572, + -0.21693170070648193, + -0.25183194875717163, + 0.10293535143136978, + -0.3428787291049957, + -0.4075143337249756, + -0.0813012421131134, + 0.2764708399772644, + -0.14183409512043, + 0.0046338909305632114, + 0.06969350576400757, + 0.40910664200782776, + 0.15494349598884583, + -0.08243357390165329, + 0.10991507768630981, + -0.5248034000396729, + 0.029160523787140846, + 0.17612718045711517, + -0.3105247914791107, + 0.2706470489501953, + -0.03267401456832886, + 0.18293577432632446, + 0.20804639160633087, + 0.07241339981555939, + -0.40840888023376465, + -0.08385428786277771, + 0.24835951626300812, + 0.22726011276245117, + -0.2244320660829544, + -10.831900596618652, + 0.1381629854440689, + -0.1419145166873932, + 0.4843686521053314, + 0.008148173801600933, + 0.24655388295650482, + -0.1386006623506546, + -0.16020391881465912, + 0.14758320152759552, + 0.16683460772037506, + -0.3707302510738373, + 0.15639722347259521, + 0.3231031000614166, + 0.14578105509281158, + 0.04817182943224907, + -0.15438298881053925, + -0.1909579485654831, + 0.18654601275920868, + -0.025016173720359802, + 0.23805248737335205, + 0.2697882056236267, + 0.42605042457580566, + -0.09362324327230453, + 0.4333173334598541, + 0.3440745770931244, + -0.41225871443748474, + -0.20885245501995087, + 0.4244694411754608, + -0.0009001542930491269, + -0.41644108295440674, + 0.38396862149238586, + 0.16719354689121246, + -0.20909343659877777, + -0.26766908168792725, + 0.125658318400383, + -0.2478829175233841, + -0.12063967436552048, + -0.06583867222070694, + -0.06625141948461533, + -0.16925008594989777, + 0.3026072680950165, + -0.23537801206111908, + 0.013111191801726818, + 0.4063257873058319, + -0.012322620488703251, + -0.4491974115371704, + -0.1948428899049759, + -1.5686559677124023, + 0.24957232177257538, + 0.2833564281463623, + 0.659206748008728, + -0.0719742551445961, + 0.20845049619674683, + -0.033496227115392685, + -0.42099812626838684, + 0.05533331632614136, + -0.19142358005046844, + 0.08809811621904373, + 0.14123114943504333, + -0.16483594477176666, + 0.18626272678375244, + -0.0611964613199234, + 0.34045663475990295, + -0.3796728551387787, + -0.26251330971717834, + 0.1821005791425705, + -0.16539882123470306, + 0.11766568571329117, + -0.07272273302078247, + -0.0325261615216732, + -0.5570471882820129, + -0.24050140380859375, + 0.06079098582267761, + 0.042218852788209915, + 0.6986186504364014, + -0.09289368987083435, + -0.6226604580879211, + 0.09811966866254807, + -0.09182079881429672, + 0.4755999743938446, + 0.0031919304747134447, + -0.014835499227046967, + 0.13750164210796356, + -0.170401930809021, + 0.028249362483620644, + -0.16577740013599396, + 0.033027153462171555, + 0.5239070653915405, + -0.13378073275089264, + 0.15647996962070465, + -0.052812982350587845, + 0.15455414354801178, + -0.23594321310520172, + -0.23997335135936737, + -0.5261127352714539, + 0.09306284785270691, + 0.10780894756317139, + -0.2664227783679962, + 0.2574707567691803, + -0.05846063792705536, + 0.15417315065860748, + -0.20315617322921753, + -0.10560189932584763, + -0.4453847408294678, + -0.319789856672287, + 0.36412957310676575, + 0.14279498159885406, + 0.2212648242712021, + 0.26385000348091125, + 0.29368487000465393, + 0.13152553141117096, + -0.14904069900512695, + 0.3844359219074249, + 0.6140542030334473, + 0.15995867550373077, + -0.10019343346357346, + -0.2933753430843353, + 0.06507351249456406, + -0.2785865366458893, + 0.2224576473236084, + 0.3866521418094635, + -0.24133612215518951, + 0.27513235807418823, + 0.46849003434181213, + -0.00592648983001709, + -0.29155170917510986, + 1.000962257385254, + -0.04557621479034424, + 0.33111485838890076, + -0.20990490913391113, + 0.26791682839393616, + -0.18381904065608978, + -0.31385475397109985, + 0.15310752391815186, + 0.17991626262664795, + -0.3248556852340698, + 0.5527488589286804, + 0.022951176390051842, + -0.4245847463607788, + 0.048204973340034485, + -0.31499767303466797, + 0.4523840844631195, + 0.3257444202899933, + 0.3073401153087616, + -0.05427958443760872, + -0.48438799381256104, + -0.15765132009983063, + -0.07379958778619766, + -0.37495508790016174, + -0.2840275466442108, + -0.34312787652015686, + 0.022317776456475258, + -0.057873573154211044, + -0.45010027289390564, + 0.34556588530540466, + -0.011164420284330845, + -0.126723513007164, + 0.05070757865905762, + -0.49313345551490784, + -0.08720388263463974, + 0.30873796343803406, + 0.47946181893348694, + 0.06861132383346558, + -0.08337995409965515, + -0.07410212606191635, + 0.2933086156845093, + 0.08885056525468826, + 0.13537798821926117, + 0.05270006135106087, + 0.08064326643943787, + -0.3264540731906891, + 0.030107364058494568, + 0.15699632465839386, + -0.28945884108543396, + -0.2642630338668823, + -0.4108756482601166, + 0.28373464941978455, + -0.20364826917648315, + -0.11685913056135178, + 0.32205578684806824, + 0.17525340616703033, + -0.030546369031071663, + 0.003553539514541626, + -0.175478994846344, + 0.3904249966144562, + 0.2324962168931961, + 0.08687630295753479, + 0.2173994928598404, + -0.2631611227989197, + -0.4131915271282196, + -0.17108672857284546, + 0.05756508186459541, + -0.20615601539611816, + -0.029633240774273872, + -0.07155118137598038, + 0.11545458436012268, + -0.2921455502510071, + 0.1385897397994995, + -0.4446395933628082, + -0.064232237637043, + -0.22451208531856537, + 0.0709381252527237, + 0.3895019590854645, + -0.313774973154068, + 0.010707773268222809, + -0.14516572654247284, + 0.26597046852111816, + 0.158262237906456, + -0.27256155014038086, + 0.2485845685005188, + -0.11817363649606705 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_023.json b/src/benchmark/output/results/results_graph_023.json new file mode 100644 index 0000000..333b710 --- /dev/null +++ b/src/benchmark/output/results/results_graph_023.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "Here is a coherent narrative based on the provided data:\n\n**Patient Demographics**\n\nThe patient is an adult male with no specified age or background information. However, it can be inferred that he has been diagnosed with multiple conditions over the years, including melanoma and choroidal neoplasms.\n\n**Timeline of Diagnoses**\n\nThe patient's journey began with a diagnosis of melanoma in 2015 (N1). He underwent lymph node scintigraphy and removal of four sentinel lymph nodes as part of his treatment plan. This was followed by yearly follow-up visits at the dermato-oncologist, which helped monitor his condition for any signs of recurrence or metastasis.\n\nIn 2018, the patient presented with worsening eyesight in one eye due to a pigmented choroidal tumor (N4). He underwent brachytherapy for this condition, which involved the placement of a ruthenium-106 plaque in the affected area. This treatment helped stabilize his visual function and reduce the size of the tumor.\n\nOver the next few years, the patient's oncologist conducted regular follow-up appointments to monitor his condition. In 2020, it was discovered that the patient had metastatic disease throughout his body, with a pattern characteristic of primary cutaneous melanoma (N6). As a result, he began systemic cancer treatment with ipilimumab and nivolumab.\n\n**Timeline of Treatments**\n\n* 2015: Melanoma diagnosis and lymph node scintigraphy\n* 2018: Brachytherapy for pigmented choroidal tumor\n* 2020: Systemic cancer treatment with ipilimumab and nivolumab\n\n**Outcomes**\n\nThe patient's treatment plan has been successful in managing his conditions. His melanoma was successfully treated, and he has not experienced any significant recurrence or metastasis.\n\nRegarding the pigmented choroidal tumor, brachytherapy helped stabilize his visual function and reduce the size of the tumor. However, a new lesion developed in 2022 (N13), which required further treatment with brachytherapy.\n\nThe patient's PET/CT scan in 2023 showed no pathological processes, indicating that his cancer is currently under control (N9).\n\n**Current Status**\n\nThe patient continues to receive regular follow-up appointments with his oncologist and dermato-oncologist. He is being monitored for any signs of recurrence or metastasis, and his treatment plan will be adjusted as needed.\n\nOverall, the patient's journey has been marked by a series of diagnoses, treatments, and outcomes that have helped manage his conditions. While there are still challenges ahead, his current status suggests that he is in good hands with his healthcare team.", + "bertscore": { + "precision": [ + 0.6081898808479309 + ], + "recall": [ + 0.6577727794647217 + ], + "f1": [ + 0.6320104002952576 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 6, + "node_count": 15, + "edge_count": 9, + "avg_in_degree": 0.6, + "density": 0.04285714285714286 + }, + "trajectory_embedding": [ + 0.10540588945150375, + 0.12294507771730423, + -0.10281980782747269, + 0.1525949388742447, + 0.008018000051379204, + 0.2466597855091095, + 0.03886903077363968, + 0.2453383058309555, + 0.4833277463912964, + -0.4130333662033081, + -0.19181455671787262, + -0.0784992128610611, + -0.5563032031059265, + -0.12875708937644958, + -0.3123818039894104, + 0.17844067513942719, + -0.15840710699558258, + 0.31354740262031555, + -0.14745765924453735, + -0.240568146109581, + -0.464466392993927, + 0.16392968595027924, + -0.39374905824661255, + -0.04934096708893776, + 0.25246602296829224, + 0.0075703272596001625, + 0.37210211157798767, + 0.4643633961677551, + 0.2504419982433319, + 0.2829122841358185, + 0.12600451707839966, + -0.1761774718761444, + 0.18925292789936066, + 0.09302253276109695, + -0.2530670464038849, + 0.24846512079238892, + 0.2726340889930725, + 0.38299861550331116, + -0.09979867935180664, + 0.0023724823258817196, + -0.1422460526227951, + 0.09549273550510406, + 1.027288556098938, + 0.30371010303497314, + 0.35415127873420715, + -0.8291339874267578, + 0.008024404756724834, + 0.6264019012451172, + -0.41103553771972656, + -0.2886418402194977, + 0.19630712270736694, + 0.7624396085739136, + 0.6848915815353394, + -0.4350857436656952, + 0.35974159836769104, + -0.16606314480304718, + -0.2499833106994629, + -0.3592289984226227, + -0.20999979972839355, + -0.006635516881942749, + 0.07873689383268356, + -0.23369191586971283, + 0.46184810996055603, + -0.13427786529064178, + -0.18867765367031097, + -0.26090386509895325, + -0.2681501805782318, + 0.14255958795547485, + -0.021527666598558426, + -0.4072338342666626, + -0.11869309842586517, + -0.23740968108177185, + -0.03936491906642914, + 0.09508902579545975, + 0.04448454827070236, + -0.19890199601650238, + 0.3945222795009613, + -0.07774818688631058, + 0.21929572522640228, + 0.1994362622499466, + 0.005626731086522341, + -0.2045866996049881, + -0.03131599351763725, + 0.24741867184638977, + -0.39298582077026367, + -0.056732725352048874, + -0.04114944487810135, + -0.22727933526039124, + -0.39814555644989014, + 0.16487666964530945, + 0.15080752968788147, + -0.37798598408699036, + 0.06828337162733078, + -0.1537623256444931, + -0.00990469753742218, + 0.22966314852237701, + 0.5380993485450745, + 0.2210903912782669, + 0.906589925289154, + 0.05429588258266449, + 0.15897169709205627, + -0.02602461911737919, + 0.22510765492916107, + -0.01638304628431797, + 0.4049730896949768, + -0.12167565524578094, + 0.11328090727329254, + -0.6095162034034729, + 0.2929658889770508, + 0.4818204939365387, + 0.09354675561189651, + -0.09756139665842056, + -0.03538217395544052, + -0.3579121530056, + 0.15963099896907806, + 0.15470843017101288, + 0.06172731891274452, + 0.163257896900177, + 0.3083570897579193, + -0.3331752419471741, + -0.24518485367298126, + -0.09150578081607819, + 0.24035212397575378, + 0.24193598330020905, + -0.5483623147010803, + -0.1894088238477707, + -0.17043711245059967, + 0.021301865577697754, + 0.058352913707494736, + 0.01715903729200363, + -0.6233609318733215, + -0.1832914650440216, + -0.08317866176366806, + 0.07934686541557312, + -0.15344296395778656, + 0.2177623212337494, + -0.3933328092098236, + -0.059993941336870193, + -1.0207817554473877, + 0.291503369808197, + -0.49341270327568054, + -0.10910160839557648, + 0.020654018968343735, + -0.48037466406822205, + -0.2224712073802948, + -0.23720809817314148, + -0.06059173494577408, + 0.1687273383140564, + -0.13882222771644592, + -0.03924066573381424, + 0.06718704104423523, + 0.09149619936943054, + 0.38316699862480164, + 0.47747451066970825, + 0.09038378298282623, + 0.019614534452557564, + 0.028186606243252754, + 0.32537707686424255, + 0.1358811855316162, + -0.06952391564846039, + -0.04559817537665367, + 0.4944629371166229, + 0.12570516765117645, + -0.023196183145046234, + -0.12377288192510605, + -0.5686734914779663, + 0.03422827646136284, + -0.2508287727832794, + 0.19657284021377563, + 0.10473105311393738, + -0.13839533925056458, + 0.14451926946640015, + -0.2842901051044464, + 0.5750104784965515, + 0.05717456713318825, + 0.36666908860206604, + 0.08807339519262314, + 0.11755558103322983, + 0.20649833977222443, + 0.2453908622264862, + 0.14470511674880981, + -0.25060492753982544, + 0.7956674098968506, + 0.17484737932682037, + -0.28887996077537537, + 0.25873568654060364, + 0.20764043927192688, + 0.12429597228765488, + -0.271107941865921, + -0.051201045513153076, + 0.6041942238807678, + -0.352491557598114, + 0.5640609264373779, + -0.3402418792247772, + -0.12430182844400406, + 0.19616474211215973, + -0.1318172961473465, + -0.16388756036758423, + -0.09876183420419693, + -0.2071043998003006, + 0.31041219830513, + 0.07279521971940994, + -0.37483087182044983, + 0.07370534539222717, + 0.17566488683223724, + -0.12789197266101837, + 0.1751793920993805, + -0.030174780637025833, + 0.17843356728553772, + -0.01687287911772728, + -0.03552335873246193, + 0.33537453413009644, + -0.192875474691391, + 0.21160462498664856, + 0.016802731901407242, + -0.34549659490585327, + 0.13406164944171906, + -0.12263575941324234, + -0.10731329768896103, + 0.19806906580924988, + -0.08674362301826477, + -0.2776440680027008, + -0.13555006682872772, + 0.03757258504629135, + -0.5905658006668091, + 0.32661813497543335, + 0.15398259460926056, + 0.24565400183200836, + 0.21549130976200104, + 0.004986894316971302, + -0.10407869517803192, + -0.4243234395980835, + 0.3127771317958832, + -0.19425766170024872, + -0.11120573431253433, + -0.2644818425178528, + 0.2955857813358307, + -0.29358914494514465, + 0.14961814880371094, + 0.3114207684993744, + -0.018594659864902496, + -0.17575189471244812, + 0.11870010942220688, + -0.3582589328289032, + -0.10156776756048203, + -0.4399971067905426, + -0.00157088041305542, + 0.24979476630687714, + 0.235335111618042, + 0.26279217004776, + 0.016557900235056877, + -0.16639743745326996, + 0.20357860624790192, + -0.02686806209385395, + -0.4637526273727417, + -0.4300419092178345, + -0.06695666909217834, + -0.11982548981904984, + -0.6362000107765198, + 0.22889503836631775, + -0.07727131247520447, + 0.05531517043709755, + 0.08499515056610107, + -0.3302699625492096, + -0.16438992321491241, + 0.10764308273792267, + 0.0494249127805233, + 0.08944695442914963, + -0.20453210175037384, + 0.1977028250694275, + -0.2303893119096756, + -0.15253441035747528, + -0.17145033180713654, + -0.03220642730593681, + 0.18061088025569916, + -0.09644664078950882, + -0.25604137778282166, + -0.031833868473768234, + 0.07496373355388641, + -0.35041046142578125, + -0.15845289826393127, + 0.20439700782299042, + -0.2330440878868103, + 0.20092608034610748, + 0.04754509776830673, + 0.28126204013824463, + 0.2688766121864319, + 0.023704219609498978, + 0.12472750246524811, + 0.37829363346099854, + 0.4846135377883911, + -0.050832267850637436, + 0.05144510418176651, + -0.13581392168998718, + -0.08318902552127838, + -0.04335296154022217, + -0.35636746883392334, + 0.4426424205303192, + -0.0073680938221514225, + -0.04162835702300072, + 0.05309077352285385, + 0.21295204758644104, + 0.04395555704832077, + -0.3232347071170807, + 0.03776474669575691, + 0.5808418989181519, + 0.06036875396966934, + 0.1372818946838379, + 0.09702330082654953, + 0.3045187294483185, + 0.2947564125061035, + -0.15899357199668884, + 0.04379658028483391, + 0.07026609033346176, + 0.010119128040969372, + -0.17713841795921326, + -0.12790073454380035, + 0.1939122974872589, + 0.4322517216205597, + -0.23470260202884674, + -0.28635936975479126, + 0.03168969601392746, + -0.20399382710456848, + 0.017741955816745758, + -0.293542742729187, + -0.10792018473148346, + 0.2653021812438965, + -0.11763367056846619, + 0.31381601095199585, + 0.004526435397565365, + -0.07504672557115555, + 0.34192556142807007, + -0.38925448060035706, + -0.11522834002971649, + 0.33429986238479614, + -0.10702872276306152, + -0.3208511769771576, + 0.46630755066871643, + -0.2657845616340637, + -0.03699672222137451, + 0.46819639205932617, + -0.338553786277771, + 0.03620921075344086, + -0.020941967144608498, + 0.2814064621925354, + -0.012520051561295986, + 0.03525084629654884, + 0.014351332560181618, + 0.10305849462747574, + 0.02191077545285225, + 0.622248649597168, + 0.0299111008644104, + 0.22913901507854462, + 0.6509575247764587, + 0.11966567486524582, + -0.40205392241477966, + 0.02945004589855671, + 0.008811768144369125, + 0.4460221230983734, + -0.22945356369018555, + -0.1987760365009308, + -0.16281132400035858, + 0.06571359932422638, + 0.137421116232872, + -0.3439699113368988, + -0.13022515177726746, + 0.1773623526096344, + 0.1496211439371109, + 0.025010693818330765, + 0.3171243667602539, + 0.13117240369319916, + -0.17258624732494354, + 0.5425522923469543, + -0.09149356931447983, + -0.13042902946472168, + 0.4048955738544464, + -0.26532939076423645, + 0.2410159409046173, + 0.01963857002556324, + -0.06822963058948517, + -0.3502468466758728, + 0.036000337451696396, + -0.27324965596199036, + -0.20855408906936646, + -0.00036915639066137373, + -0.12664860486984253, + 0.2492123544216156, + -0.20209312438964844, + 0.18984355032444, + -0.023039229214191437, + 0.0968957245349884, + 0.18058235943317413, + 0.3629196584224701, + 0.11933913826942444, + -0.2610386908054352, + 0.2077244073152542, + 0.003575290320441127, + -0.051995743066072464, + -0.2638947069644928, + 0.09006045013666153, + -0.17539477348327637, + 0.6198652982711792, + 0.10665176063776016, + -0.04038642346858978, + 0.15393748879432678, + -0.0005332917207852006, + -0.12166525423526764, + -0.45533448457717896, + -0.06451118737459183, + -0.13924480974674225, + 0.09588596224784851, + 0.08295547962188721, + 0.13122636079788208, + -0.4504825174808502, + -0.254278302192688, + -0.08515568822622299, + -0.013261860236525536, + 0.05260207876563072, + -0.23075418174266815, + -0.1282164752483368, + 0.2711666226387024, + 0.19158010184764862, + 0.5234825611114502, + -0.23971638083457947, + 0.20443391799926758, + 0.1009591743350029, + -0.24843372404575348, + -0.12269137054681778, + -0.0573158822953701, + -0.3664810359477997, + -0.035646744072437286, + 0.31044408679008484, + 0.259563148021698, + -0.04733399674296379, + 0.006295822095125914, + 0.1952313631772995, + 0.12567515671253204, + -0.24682599306106567, + -0.05689653009176254, + 0.297265887260437, + 0.20892806351184845, + 0.44249406456947327, + 0.05410837009549141, + -0.5714361071586609, + -0.2337433397769928, + -0.13934046030044556, + -0.3879508972167969, + 0.09951461851596832, + 0.30615949630737305, + -0.04025821387767792, + -0.10682633519172668, + 0.0612107589840889, + -0.059629034250974655, + -0.006856898311525583, + 0.25130030512809753, + -0.1468939185142517, + 0.16787134110927582, + 0.016428831964731216, + -0.28505510091781616, + -0.09632950276136398, + -0.22900022566318512, + -0.3894830346107483, + -0.2524265646934509, + 0.2745938003063202, + 0.33430683612823486, + -0.3580789268016815, + 0.023864872753620148, + 0.1575167030096054, + -0.09111759811639786, + -0.22547687590122223, + -0.08123160898685455, + -0.3247504234313965, + 0.39405861496925354, + -0.09096460789442062, + -0.16129444539546967, + 0.18877369165420532, + -0.12563948333263397, + 0.005846284795552492, + 0.2877874970436096, + 0.07605194300413132, + 0.47374430298805237, + 0.12929055094718933, + 0.10727591812610626, + 0.6219854950904846, + 0.03264620527625084, + 0.15305334329605103, + 0.37969112396240234, + 0.08025489747524261, + 0.09503491967916489, + -0.2763998806476593, + -0.18387603759765625, + 0.1978072077035904, + -0.2909025549888611, + -0.11386372148990631, + 0.224113330245018, + 0.31008103489875793, + -0.47914043068885803, + -0.38312312960624695, + 0.0913672223687172, + -0.014902893453836441, + -0.13913607597351074, + -0.13829882442951202, + -0.2270067036151886, + -0.20107460021972656, + -0.3130635619163513, + -0.046361956745386124, + 0.3646821975708008, + 0.5303696990013123, + 0.18667727708816528, + 0.34985432028770447, + -0.29128608107566833, + -0.21150325238704681, + 0.15369947254657745, + 0.2192392349243164, + 0.11378519237041473, + -0.016782617196440697, + -0.13254792988300323, + 0.2793768346309662, + 0.4502277076244354, + -0.0758567601442337, + -0.07392445206642151, + 0.13473327457904816, + 0.11926963180303574, + 0.12599562108516693, + 0.06355500966310501, + -0.16512838006019592, + 0.0979687049984932, + -0.40158045291900635, + 0.23024988174438477, + -0.22639204561710358, + -0.048249129205942154, + 0.19451647996902466, + -0.09980657696723938, + -0.5379163026809692, + -0.27807843685150146, + 0.35921797156333923, + -0.02428627200424671, + -0.09584607928991318, + 0.11113645136356354, + 0.25256115198135376, + 0.03493845462799072, + -0.3131742775440216, + 0.02731485292315483, + -0.5819074511528015, + -0.29746875166893005, + 0.07435032725334167, + -0.1648530662059784, + -0.1786605268716812, + -0.0399533286690712, + 0.36118289828300476, + 0.5316526889801025, + 0.20876045525074005, + -0.1711941510438919, + 0.05316804721951485, + 0.40342769026756287, + 0.2379724532365799, + -0.23538421094417572, + -10.623929977416992, + -0.26017510890960693, + -0.3488449156284332, + 0.540946900844574, + -0.17758601903915405, + 0.17842096090316772, + 0.022992338985204697, + -0.04153599590063095, + 0.02428966760635376, + -0.049408331513404846, + -0.0713285282254219, + 0.03228401020169258, + 0.3266829252243042, + 0.3734135925769806, + -0.02846616506576538, + 0.02300538308918476, + -0.35357388854026794, + 0.244655042886734, + -0.02367827109992504, + 0.17931996285915375, + 0.18457730114459991, + 0.3176308274269104, + -0.26505813002586365, + 0.18954713642597198, + 0.028089651837944984, + -0.4220680594444275, + -0.27149027585983276, + 0.7372685670852661, + 0.3427467346191406, + -0.45808425545692444, + 0.22815817594528198, + 0.19707633554935455, + -0.26014235615730286, + 0.1702694147825241, + -0.13480471074581146, + -0.12260546535253525, + -0.00746189383789897, + 0.21922212839126587, + 0.3099682629108429, + -0.11947111040353775, + 0.0020239194855093956, + -0.1375351846218109, + 0.19417990744113922, + 0.1811763346195221, + -0.06433601677417755, + -0.5704725980758667, + -0.1508082002401352, + -1.6320582628250122, + 0.2544516921043396, + 0.19476638734340668, + 0.3086756467819214, + -0.023497721180319786, + 0.07936050742864609, + 0.3015574812889099, + -0.4753776788711548, + -0.008248993195593357, + -0.34491968154907227, + -0.21359094977378845, + 0.2200906127691269, + 0.08279090374708176, + 0.09794500470161438, + -0.20005130767822266, + 0.5628446340560913, + 0.0028136095497757196, + -0.3437557518482208, + 0.1574714481830597, + 0.06340117007493973, + -0.15687288343906403, + -0.3473069369792938, + -0.8011226654052734, + -0.5776692032814026, + -0.08539724349975586, + -0.12839891016483307, + -0.02600221522152424, + 0.3583083748817444, + -0.06981637328863144, + -0.26374244689941406, + 0.15529952943325043, + -0.07142098993062973, + 0.401366263628006, + 0.27951952815055847, + -0.03975408151745796, + 0.1448942869901657, + -0.15060535073280334, + -0.20595379173755646, + -0.14473560452461243, + 0.2329442799091339, + 0.44619420170783997, + 0.04756370559334755, + 0.01109549030661583, + -0.004931437782943249, + 0.4391990005970001, + 0.04380490630865097, + -0.21931114792823792, + -0.3671543300151825, + -0.048517219722270966, + -0.02235555462539196, + 0.05229479447007179, + 0.011207119561731815, + -0.07917850464582443, + -0.12452850490808487, + 0.036820702254772186, + -0.02945583499968052, + -0.5879871845245361, + -0.634482741355896, + 0.3592011034488678, + 0.1528005748987198, + 0.2015140801668167, + -0.03147140517830849, + -0.15412244200706482, + -0.23307695984840393, + 0.08083023130893707, + 0.3005533516407013, + 0.4675835967063904, + 0.12514790892601013, + -0.026294536888599396, + 0.07941616326570511, + -0.21910913288593292, + -0.2745157480239868, + -0.04270196706056595, + 0.48088958859443665, + -0.16457298398017883, + 0.19873087108135223, + 0.7327362895011902, + -0.09735066443681717, + -0.11754926294088364, + 0.9171164035797119, + -0.3106139302253723, + 0.17107251286506653, + -0.15621306002140045, + 0.3079272508621216, + -0.14123736321926117, + -0.4331967234611511, + -0.004580462817102671, + 0.43857353925704956, + -0.48107585310935974, + 0.8163595795631409, + 0.3323533833026886, + -0.484063059091568, + -0.09240676462650299, + -0.31357043981552124, + 0.549168586730957, + 0.21792258322238922, + 0.15981420874595642, + -0.13272598385810852, + -0.3718981444835663, + -0.3920591175556183, + 0.10193683207035065, + -0.32276204228401184, + -0.3845391273498535, + -0.3087849020957947, + 0.005837361793965101, + 0.20779834687709808, + -0.27028197050094604, + 0.2845051884651184, + 0.21079584956169128, + -0.12711599469184875, + -0.36586621403694153, + -0.323087215423584, + -0.10290562361478806, + 0.23019053041934967, + 0.9724202752113342, + -0.02535000629723072, + -0.13651777803897858, + -0.0026215394027531147, + 0.012383543886244297, + -0.2120051085948944, + 0.19916346669197083, + 0.09989184886217117, + -0.14570428431034088, + -0.4238450229167938, + 0.25755029916763306, + 0.18661408126354218, + -0.1633668839931488, + -0.0990627259016037, + -0.21580679714679718, + -0.10193350166082382, + 0.07419272512197495, + -0.17382192611694336, + 0.15197031199932098, + 0.32341235876083374, + -0.18045124411582947, + 0.07654955238103867, + -0.06884613633155823, + -0.14268629252910614, + 0.16112728416919708, + 0.4973635673522949, + 0.13134917616844177, + -0.3417559266090393, + -0.31511548161506653, + -0.5136363506317139, + 0.42994651198387146, + -0.4218570291996002, + -0.0024242743384093046, + 0.15463702380657196, + 0.2214624136686325, + -0.21871942281723022, + 0.14731012284755707, + 0.05015827715396881, + -0.06620728224515915, + -0.13225476443767548, + 0.19293734431266785, + 0.4978739321231842, + -0.2862992286682129, + 0.2814665734767914, + -0.13345995545387268, + 0.1598857045173645, + 0.12978525459766388, + -0.25623899698257446, + 0.16946609318256378, + -0.3194625973701477 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_025.json b/src/benchmark/output/results/results_graph_025.json new file mode 100644 index 0000000..ed4dab8 --- /dev/null +++ b/src/benchmark/output/results/results_graph_025.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 68-year-old male who was admitted to the hospital in June 2022 with correct upper lung occupancy on physical examination.\n\n**Timeline of Diagnoses:**\n\n1. **Step 1 (June 2022):** The patient presented with initial symptoms, which led to further evaluation.\n2. **Step 2 (June 2022):** PET-CT findings revealed right upper lung cancer and multiple tiny nodules in both lungs, as well as thyroid isthmus occupancy.\n3. **Step 3 (June 2022):** Diagnosis of the right upper lung nodule via CT-guided puncture confirmed lung adenocarcinoma with a PD-L1 TPS of 2%. Diagnosis of the thyroid gland via fine-needle aspiration revealed papillary carcinoma.\n4. **Step 4 (July 2022):** Chest CT scans showed stable disease following treatments.\n5. **Step 5 (August 2022):** Post-surgery chest CT examination revealed no signs of tumor recurrence.\n6. **Step 6 (September 2022):** Thyroid color ultrasonography suggested isthmic thyroid nodules.\n7. **Step 7 (October 2022):** Postoperative thyroid ultrasound showed no signs of tumor recurrence.\n8. **Step 8 (November 2022):** PET-CT scans revealed a primary tumor mass in the right neck subcutaneous at the time of diagnosis.\n9. **Step 9 (December 2022):** Ultrasound results suggested a hypoechoic mass in the V region of the right neck.\n10. **Step 10 (January 2023):** Puncture biopsies revealed adenocarcinoma of lung, papillary carcinoma of thyroid, and a spindle cell.\n\n**Timeline of Treatments:**\n\n1. **CT-guided puncture (June 2022):** Used to diagnose the right upper lung nodule.\n2. **Fine-needle aspiration (June 2022):** Used to diagnose the thyroid gland.\n3. **Treatments (July 2022):** Administered following PET-CT findings.\n4. **Surgery (August 2022):** Performed to remove the tumor.\n5. **Postoperative care (September 2022):** Provided to monitor for tumor recurrence.\n\n**Outcomes:**\n\n1. **Lung adenocarcinoma:** Stable disease was observed following treatments, and no signs of tumor recurrence were seen on post-surgery chest CT examination.\n2. **Papillary carcinoma of thyroid:** No signs of tumor recurrence were seen on postoperative thyroid ultrasound.\n3. **Primary tumor mass in the right neck subcutaneous:** PET-CT scans revealed a primary tumor mass at the time of diagnosis, but no further treatment was mentioned.\n\n**Conclusion:**\nThe patient underwent a series of diagnostic tests and treatments for lung cancer and papillary carcinoma of the thyroid. Following these interventions, stable disease was observed in both conditions, with no signs of tumor recurrence seen on post-surgery chest CT examination and postoperative thyroid ultrasound. However, PET-CT scans revealed a primary tumor mass in the right neck subcutaneous at the time of diagnosis, which warrants further evaluation and treatment.", + "bertscore": { + "precision": [ + 0.6954405307769775 + ], + "recall": [ + 0.7023525238037109 + ], + "f1": [ + 0.6988794207572937 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 10, + "edge_count": 9, + "avg_in_degree": 0.9, + "density": 0.1 + }, + "trajectory_embedding": [ + 0.34409192204475403, + 0.07935971021652222, + 0.046093933284282684, + 0.01933947391808033, + -0.0402722992002964, + 0.1429879069328308, + 0.05653051286935806, + 0.2529970109462738, + 0.3755955100059509, + -0.32734960317611694, + -0.2119436264038086, + -0.10174901783466339, + -0.4879678785800934, + -0.0025561749935150146, + -0.42852139472961426, + 0.38021185994148254, + 0.006385275162756443, + 0.34415745735168457, + 0.034441545605659485, + -0.2897089719772339, + -0.6047749519348145, + 0.19311702251434326, + -0.3682791292667389, + -0.16228988766670227, + 0.3098732829093933, + -0.07636822760105133, + 0.491788387298584, + 0.32804110646247864, + 0.24615177512168884, + 0.43646949529647827, + 0.10637984424829483, + -0.16918689012527466, + 0.2964051365852356, + 0.16695259511470795, + -0.276353120803833, + 0.22060327231884003, + 0.09466035664081573, + 0.4242221713066101, + -0.04981246218085289, + 0.07084467262029648, + -0.09227023273706436, + -0.019749227911233902, + 0.9331127405166626, + 0.22261857986450195, + 0.38208872079849243, + -0.8041372299194336, + 0.014897430315613747, + 0.5418993830680847, + -0.4335913062095642, + -0.41148990392684937, + 0.05835535377264023, + 0.7718365788459778, + 0.5373396873474121, + -0.3264762759208679, + 0.35430845618247986, + -0.11880211532115936, + -0.2558634877204895, + -0.3408660292625427, + -0.1965479552745819, + -0.0837758332490921, + 0.017880480736494064, + -0.4171941876411438, + 0.24733512103557587, + -0.13585253059864044, + -0.235460564494133, + -0.12074846029281616, + -0.18350398540496826, + 0.07242180407047272, + 0.07565711438655853, + -0.39984697103500366, + -0.14674818515777588, + -0.08842828124761581, + -0.14150972664356232, + 0.10859277099370956, + 0.03293155878782272, + -0.19246013462543488, + 0.30841201543807983, + -0.07365747541189194, + 0.15263035893440247, + 0.2795923054218292, + -0.16655288636684418, + -0.13266092538833618, + 0.15200862288475037, + 0.3052229881286621, + -0.45141467452049255, + 0.0778149738907814, + -0.02274831011891365, + -0.33950066566467285, + -0.41491207480430603, + 0.13640737533569336, + 0.2692234218120575, + -0.2633920907974243, + -0.017579253762960434, + -0.10412584245204926, + 0.027988016605377197, + 0.21585381031036377, + 0.4556496739387512, + 0.37310370802879333, + 0.854825496673584, + 0.08096719533205032, + 0.2081153839826584, + 0.07202550023794174, + 0.3097875714302063, + 0.1759634017944336, + 0.42980772256851196, + -0.15672524273395538, + 0.14431779086589813, + -0.44745659828186035, + 0.2056637555360794, + 0.32284390926361084, + 0.045483194291591644, + -0.1305679976940155, + -0.16680963337421417, + -0.1074424609541893, + 0.2910589873790741, + 0.13408495485782623, + -0.040139101445674896, + 0.2597724199295044, + 0.35030680894851685, + -0.542816698551178, + -0.16513656079769135, + 0.10210822522640228, + 0.2839711606502533, + 0.3802012801170349, + -0.4399718642234802, + -0.039091385900974274, + -0.13053271174430847, + 0.006130659021437168, + 0.0908668264746666, + -0.03621388599276543, + -0.5616754293441772, + -0.13141697645187378, + 0.023215685039758682, + 0.0977773517370224, + -0.011099062860012054, + 0.21458613872528076, + -0.28988397121429443, + -0.2817309498786926, + -0.9829242825508118, + 0.19844935834407806, + -0.4716169834136963, + -0.002095638308674097, + 0.11036380380392075, + -0.3770889639854431, + -0.30345481634140015, + -0.3001001477241516, + -0.23194973170757294, + 0.24940530955791473, + -0.1867944747209549, + -0.09672097861766815, + 0.20561590790748596, + 0.053852248936891556, + 0.09751758724451065, + 0.497453510761261, + 0.11201523244380951, + 0.04626644775271416, + -0.10618264973163605, + 0.1737644523382187, + 0.02491249516606331, + -0.23452958464622498, + -0.04758279398083687, + 0.42864590883255005, + 0.2014569342136383, + -0.06885853409767151, + -0.014541953802108765, + -0.6110870838165283, + 0.0030451356433331966, + -0.1998884230852127, + 0.20489351451396942, + 0.008913328871130943, + -0.1612914353609085, + 0.1453096866607666, + -0.38109922409057617, + 0.5990554690361023, + 0.0004708290216512978, + 0.32069629430770874, + -0.08127111196517944, + -0.20718082785606384, + -0.1049957424402237, + 0.12326383590698242, + 0.03287368267774582, + -0.062451399862766266, + 0.7835549712181091, + 0.1420402228832245, + -0.20643334090709686, + 0.1744142323732376, + 0.3822079300880432, + 0.06196935847401619, + -0.091549351811409, + -0.006322438828647137, + 0.5237022042274475, + -0.36614546179771423, + 0.47939425706863403, + -0.5360676050186157, + -0.09666240215301514, + 0.21724390983581543, + -0.23145151138305664, + -0.1408461183309555, + 0.0891164094209671, + -0.05942437797784805, + 0.19733189046382904, + -0.1009359359741211, + -0.3478679060935974, + 0.056424010545015335, + 0.1409929394721985, + -0.13846060633659363, + 0.474956214427948, + -0.004076138138771057, + 0.20285344123840332, + -0.06576456129550934, + -0.07919222116470337, + 0.09500087052583694, + -0.20882615447044373, + 0.045426785945892334, + 0.0767301544547081, + -0.46769294142723083, + 0.3010626435279846, + -0.08968665450811386, + -0.1328880786895752, + 0.22241711616516113, + -0.1452939510345459, + -0.4185153543949127, + -0.06098669022321701, + 0.07440386712551117, + -0.6659349203109741, + 0.10032595694065094, + 0.07138638943433762, + 0.07103453576564789, + 0.2508361041545868, + 0.01482794713228941, + -0.06833046674728394, + -0.20987391471862793, + 0.2960635721683502, + -0.05147011950612068, + -0.14352816343307495, + -0.410299152135849, + 0.16407112777233124, + -0.41320133209228516, + -0.0030202940106391907, + 0.38813281059265137, + -0.10843093693256378, + -0.2296278476715088, + 0.26454225182533264, + -0.2560572028160095, + -0.2512972354888916, + -0.3155098855495453, + 0.11653057485818863, + 0.1998750865459442, + 0.028979569673538208, + 0.2590837776660919, + -0.04228191450238228, + -0.17696233093738556, + 0.06993643939495087, + -0.181122288107872, + -0.2765224277973175, + -0.4668980538845062, + -0.08445848524570465, + -0.09790284186601639, + -0.690933883190155, + 0.19455251097679138, + 0.1545882523059845, + -0.07782334089279175, + -0.07072602957487106, + -0.3016374409198761, + -0.07491268962621689, + 0.18130536377429962, + -0.1462041288614273, + 0.1440945863723755, + -0.3009297847747803, + 0.2703302502632141, + -0.2663566470146179, + -0.32695525884628296, + -0.1166166216135025, + 0.14757469296455383, + 0.07960231602191925, + -0.04991868510842323, + -0.24090361595153809, + -0.09846314787864685, + -0.0020150437485426664, + -0.3079786002635956, + -0.03730855882167816, + 0.09744799882173538, + -0.10019735246896744, + 0.07911550998687744, + 0.04703402519226074, + 0.19398897886276245, + 0.26273849606513977, + 0.008508743718266487, + 0.11639855057001114, + 0.40372371673583984, + 0.4914776682853699, + -0.005682068411260843, + 0.020495468750596046, + -0.03221295028924942, + -0.08210901916027069, + 0.038266442716121674, + -0.43393364548683167, + 0.43159928917884827, + 0.13229352235794067, + -0.0053727151826024055, + -0.005543805658817291, + 0.4211336672306061, + 0.11322933435440063, + -0.2521112561225891, + 0.024090563878417015, + 0.5546082258224487, + 0.09096264839172363, + 0.07495968043804169, + 0.22281956672668457, + 0.28867417573928833, + 0.3520870506763458, + -0.2197461575269699, + 0.071861632168293, + 0.15291914343833923, + -0.20332777500152588, + -0.28232207894325256, + -0.009587623178958893, + 0.06598182767629623, + 0.4142846465110779, + -0.15252399444580078, + -0.029657285660505295, + 0.028149837628006935, + -0.058664001524448395, + 0.004716440103948116, + -0.14159348607063293, + -0.12126047909259796, + 0.1179777979850769, + -0.2545616030693054, + 0.3017883598804474, + 0.2357698231935501, + 0.05737247318029404, + 0.3814779222011566, + -0.37081393599510193, + -0.21278893947601318, + 0.13215741515159607, + -0.18531961739063263, + -0.48333439230918884, + 0.34340569376945496, + -0.2364344596862793, + -0.033892810344696045, + 0.3948160707950592, + -0.22435832023620605, + -0.0025246411096304655, + 0.01225079596042633, + 0.3711504638195038, + -0.0692736953496933, + -0.008203865960240364, + -0.04927559196949005, + 0.1161004900932312, + 0.2468988597393036, + 0.6624588966369629, + 0.14349114894866943, + 0.16445644199848175, + 0.6924375295639038, + 0.20582973957061768, + -0.3519481420516968, + 0.026891911402344704, + 0.046080637723207474, + 0.4941091537475586, + -0.17551246285438538, + -0.012057828716933727, + -0.20368599891662598, + -0.018322955816984177, + 0.043531130999326706, + -0.39472728967666626, + -0.040171585977077484, + 0.29997286200523376, + -0.01228110771626234, + -0.074879489839077, + 0.24861589074134827, + 0.1451931893825531, + -0.0754944309592247, + 0.5172557234764099, + -0.101374052464962, + -0.0023236542474478483, + 0.37532758712768555, + -0.4061834216117859, + 0.2539873719215393, + -0.15625077486038208, + -0.23557698726654053, + -0.33536142110824585, + 0.008579796180129051, + -0.22273826599121094, + -0.18272042274475098, + 0.008866168558597565, + -0.14304885268211365, + 0.17577452957630157, + -0.24075035750865936, + 0.14130714535713196, + -0.10155601799488068, + 0.14121365547180176, + 0.2552831172943115, + 0.22026333212852478, + 0.11719175428152084, + -0.1879720240831375, + 0.3372076451778412, + 0.14899040758609772, + 0.05395301431417465, + -0.0854962021112442, + -0.06199127435684204, + -0.25143963098526, + 0.5644934773445129, + 0.16444604098796844, + 0.030761191621422768, + 0.22783879935741425, + 0.031267598271369934, + -0.18935878574848175, + -0.4006851315498352, + -0.10948963463306427, + -0.10813689231872559, + 0.027576467022299767, + 0.07774531841278076, + 0.03390905261039734, + -0.47600072622299194, + -0.21587494015693665, + -0.08590082079172134, + 0.05886228010058403, + 0.13644926249980927, + -0.14275924861431122, + -0.08506400138139725, + 0.2593744695186615, + 0.01818004995584488, + 0.29972559213638306, + -0.2499568909406662, + 0.1344267576932907, + -0.04311636835336685, + -0.2831535041332245, + -0.07384838163852692, + -0.010022329166531563, + -0.33818453550338745, + -0.2164638340473175, + 0.2741811275482178, + 0.22546514868736267, + 0.046541012823581696, + -0.030199944972991943, + 0.23237189650535583, + 0.354775607585907, + -0.40847092866897583, + -0.015232485719025135, + 0.24940447509288788, + 0.11734180152416229, + 0.4726150631904602, + 0.015054690651595592, + -0.41058310866355896, + -0.17148104310035706, + -0.13723528385162354, + -0.3704623878002167, + 0.06683990359306335, + 0.3820953965187073, + -0.08136661350727081, + -0.26948028802871704, + 0.07124471664428711, + -0.06682553887367249, + -0.05776023864746094, + 0.4192635118961334, + -0.22636520862579346, + 0.21376335620880127, + -0.061835139989852905, + -0.35631063580513, + -0.17632554471492767, + -0.20711317658424377, + -0.24012556672096252, + -0.21103760600090027, + 0.27389010787010193, + 0.283041387796402, + -0.32464277744293213, + 0.018890153616666794, + 0.2057572305202484, + -0.293113648891449, + -0.053482700139284134, + 0.06273233145475388, + -0.3687474727630615, + 0.25579553842544556, + -0.09641166776418686, + -0.19231979548931122, + 0.032758187502622604, + -0.08952455222606659, + 0.20893383026123047, + 0.22381393611431122, + 0.1503385603427887, + 0.4326072633266449, + 0.20687779784202576, + 0.181828111410141, + 0.5760985612869263, + 0.07617873698472977, + -0.007986955344676971, + 0.3772718906402588, + 0.012241259217262268, + 0.021846292540431023, + -0.29399779438972473, + -0.1638963520526886, + 0.17834100127220154, + -0.2398909330368042, + -0.21189014613628387, + 0.25835180282592773, + 0.09032551944255829, + -0.4970058500766754, + -0.24736516177654266, + 0.05954643338918686, + 0.02432127483189106, + -0.03677936643362045, + -0.1377820074558258, + -0.26550450921058655, + 0.012497449293732643, + -0.36105749011039734, + -0.08158467710018158, + 0.29838499426841736, + 0.5350936055183411, + 0.25577783584594727, + 0.29303640127182007, + -0.28418800234794617, + -0.347956120967865, + 0.1854005753993988, + 0.15456965565681458, + -0.024988342076539993, + 0.1787085384130478, + -0.20947763323783875, + 0.32720598578453064, + 0.5461069345474243, + -0.09576515108346939, + 0.13289324939250946, + 0.2532498240470886, + 0.07627270370721817, + 0.25088077783584595, + 0.10918164253234863, + -0.17603369057178497, + -0.13441535830497742, + -0.34993523359298706, + 0.3254307508468628, + -0.4216597080230713, + -0.15539418160915375, + 0.16309864819049835, + -0.02840730920433998, + -0.3832947313785553, + -0.32173284888267517, + 0.3797154724597931, + -0.2556803822517395, + -0.06783922016620636, + 0.18756526708602905, + 0.29791852831840515, + 0.11234061419963837, + -0.4010881781578064, + 0.09605614840984344, + -0.5894181728363037, + -0.24999651312828064, + 0.22488638758659363, + -0.07722201198339462, + -0.200343519449234, + 0.08094879984855652, + 0.4464428424835205, + 0.580985426902771, + 0.12446089088916779, + -0.24944142997264862, + 0.00395713746547699, + 0.32494980096817017, + 0.2490430623292923, + -0.19164036214351654, + -10.719809532165527, + -0.28037816286087036, + -0.23766520619392395, + 0.5722590088844299, + -0.15406028926372528, + 0.10810510814189911, + 0.4375247061252594, + -0.10058359056711197, + 0.09238986670970917, + 0.13223741948604584, + -0.12574058771133423, + 0.02017359621822834, + 0.22973613440990448, + 0.3159524202346802, + -0.04853753373026848, + 0.015586012974381447, + -0.3300420641899109, + 0.14735691249370575, + -0.08748709410429001, + 0.2801184058189392, + 0.18157437443733215, + 0.3689839839935303, + -0.34503477811813354, + 0.1497897207736969, + -0.06614295393228531, + -0.4300752282142639, + -0.2093162089586258, + 0.7996499538421631, + 0.1994819939136505, + -0.27349185943603516, + 0.181228905916214, + 0.30252283811569214, + -0.3012550473213196, + 0.2618922293186188, + -0.09177912026643753, + 0.03209279850125313, + -0.022567864507436752, + 0.023853156715631485, + 0.29842907190322876, + -0.014488110318779945, + 0.012513277120888233, + -0.27927127480506897, + 0.3046706020832062, + 0.22727170586585999, + -0.17537321150302887, + -0.5176021456718445, + -0.29607653617858887, + -1.6267896890640259, + 0.3918142318725586, + 0.2506522536277771, + 0.1999918818473816, + 0.0162439476698637, + 0.21058709919452667, + 0.23642131686210632, + -0.39403143525123596, + -0.032000117003917694, + -0.2630804181098938, + -0.09884863346815109, + 0.031005701050162315, + 0.020396003499627113, + 0.13653582334518433, + -0.13026437163352966, + 0.5809638500213623, + 0.018768150359392166, + -0.2692745625972748, + -0.008539858274161816, + 0.0506180115044117, + -0.060655124485492706, + -0.34331923723220825, + -0.7488459944725037, + -0.48889198899269104, + 0.06029236316680908, + -0.19356563687324524, + -0.0422576442360878, + 0.514449417591095, + -0.07548607885837555, + -0.2854832112789154, + 0.28808075189590454, + 0.00420514028519392, + 0.3575906753540039, + 0.17086265981197357, + -0.06726327538490295, + 0.12187683582305908, + -0.21642258763313293, + -0.35635828971862793, + -0.19169196486473083, + 0.15630075335502625, + 0.5570071935653687, + -0.1054021343588829, + -0.03666896000504494, + -0.05820795148611069, + 0.4585803151130676, + 0.15499809384346008, + -0.2217729538679123, + -0.44370460510253906, + -0.07051233947277069, + -0.0974617600440979, + 0.043272726237773895, + 0.0608094222843647, + -0.2630999684333801, + -0.10398498922586441, + 0.174899622797966, + 0.06965627521276474, + -0.6105327606201172, + -0.4679718017578125, + 0.16064637899398804, + 0.10954791307449341, + 0.32295510172843933, + -0.08100434392690659, + -0.17834551632404327, + -0.366799920797348, + -0.04057823866605759, + 0.11180444061756134, + 0.5728477239608765, + 0.24480099976062775, + -0.03796643763780594, + 0.19618460536003113, + -0.3340276777744293, + -0.1117417961359024, + -0.05488685518503189, + 0.44266581535339355, + -0.2886485159397125, + 0.36200928688049316, + 0.631848156452179, + -0.013224090449512005, + -0.1214633360505104, + 0.9277117848396301, + -0.27645379304885864, + 0.31531834602355957, + -0.1582862138748169, + 0.20786234736442566, + -0.009583498351275921, + -0.28730660676956177, + 0.10049152374267578, + 0.42687663435935974, + -0.17020033299922943, + 0.8544890284538269, + 0.20705577731132507, + -0.4946337342262268, + -0.06917104870080948, + -0.22447817027568817, + 0.582987904548645, + 0.3872864842414856, + 0.22073523700237274, + -0.10151442140340805, + -0.2294798344373703, + -0.2882838845252991, + 0.01950891874730587, + -0.35184407234191895, + -0.3255501091480255, + -0.1485951691865921, + 0.10961510986089706, + 0.2541681230068207, + -0.2835978865623474, + 0.41619929671287537, + 0.21731451153755188, + -0.16955626010894775, + -0.22002235054969788, + -0.5310488939285278, + 0.025228425860404968, + 0.2814035415649414, + 0.8641403913497925, + -0.14933882653713226, + 0.07477717101573944, + -0.08773703128099442, + -0.0044355555437505245, + -0.25800246000289917, + 0.2328629493713379, + 0.07287655025720596, + -0.025799136608839035, + -0.5032259225845337, + 0.3004910945892334, + 0.13352911174297333, + -0.33226221799850464, + -0.11714889854192734, + -0.12422938644886017, + -0.2771795690059662, + 0.052819348871707916, + -0.2660619020462036, + 0.03252536803483963, + 0.29139822721481323, + -0.043582651764154434, + 0.01010213978588581, + -0.2030608206987381, + -0.02938220463693142, + 0.15659920871257782, + 0.2298862636089325, + 0.10958423465490341, + -0.21968773007392883, + -0.33514198660850525, + -0.578795313835144, + 0.2538703978061676, + -0.17176306247711182, + -0.12786559760570526, + 0.19861629605293274, + 0.1920209527015686, + -0.2855006456375122, + 0.050087105482816696, + -0.08774010837078094, + 0.02333415113389492, + -0.19158443808555603, + 0.3568897843360901, + 0.3656992018222809, + -0.06405075639486313, + 0.21348002552986145, + -0.17402249574661255, + 0.11066842079162598, + 0.07497961819171906, + -0.18353129923343658, + 0.22881066799163818, + -0.2509893774986267 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_026.json b/src/benchmark/output/results/results_graph_026.json new file mode 100644 index 0000000..07e4091 --- /dev/null +++ b/src/benchmark/output/results/results_graph_026.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 73-year-old East Asian woman who was admitted to the Pulmonology Department in November 2022 for evaluation of an abnormal chest CT scan. She has a medical history of hypertension but no smoking or family history of cancer.\n\n**Initial Presentation (Step 1):**\nThe patient presented with an abnormal chest CT scan, which led to further investigation. The initial presentation was characterized by the absence of respiratory symptoms such as cough or dyspnea.\n\n**Diagnostic Findings (Step 2):**\nChest CT revealed a 1.1-cm spiculated nodule in the right middle lobe (RML), multiple pleural nodules with mild pleural thickening, and fibrotic lesions in the right upper lobe (RUL). These findings prompted further investigation.\n\n**Biopsy and Diagnosis (Step 3):**\nLinear endobronchial ultrasound-guided transbronchial needle aspiration (EBUS-TBNA) of enlarged lymph node 7 revealed metastatic adenocarcinoma with ALK rearrangement, wild type EGFR mutation, and echinoderm microtubule-associated protein-like 4 (EML 4)-ALK fusion. The first biopsy of the mediastinal 7th lymph node was positive for ALK stain.\n\n**Diagnosis Confirmation (Step 4):**\nPET-CT revealed pleural, multiple enhancing nodules with lymph nodes metastasis, leading to a diagnosis of stage IV lung cancer (T2N2M1a).\n\n**Treatment Initiation (Step 5):**\nTargeted mutation chemotherapy with alectinib was initiated and continued for a period of one and a half years. Follow-up chest CT scans during treatment with alectinib demonstrated a reduction in the lung mass and pleural metastatic lesions.\n\n**Follow-Up and Recurrence (Step 6):**\nIn July 2024, Chest CT showed the previously observed main mass in the RML, indicating recurrence of the disease.\n\n**Timeline:**\n\n* November 2022: Patient admitted to Pulmonology Department for evaluation of abnormal chest CT scan.\n* Step 2: Chest CT reveals abnormalities.\n* Step 3: EBUS-TBNA and biopsy confirm diagnosis of metastatic adenocarcinoma.\n* Step 4: Diagnosis confirmed with PET-CT.\n* Step 5: Targeted mutation chemotherapy with alectinib initiated.\n* July 2024: Follow-up chest CT shows recurrence of the disease.\n\n**Outcomes:**\nThe patient received targeted mutation chemotherapy with alectinib, which led to a reduction in lung mass and pleural metastatic lesions. However, the disease recurred in July 2024, indicating the need for further treatment options.", + "bertscore": { + "precision": [ + 0.5603240728378296 + ], + "recall": [ + 0.662941038608551 + ], + "f1": [ + 0.6073283553123474 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 6, + "edge_count": 5, + "avg_in_degree": 0.8333333333333334, + "density": 0.16666666666666666 + }, + "trajectory_embedding": [ + 0.4501422345638275, + 0.09562578797340393, + -0.1269008368253708, + 0.16001977026462555, + -0.027514860033988953, + 0.06566961854696274, + 0.10955768078565598, + 0.3071059286594391, + 0.3549204170703888, + -0.3344673812389374, + -0.10898244380950928, + 0.05722176656126976, + -0.6175083518028259, + -0.03839653357863426, + -0.21359169483184814, + 0.22728413343429565, + 0.024842113256454468, + 0.2667379677295685, + 0.009542305953800678, + -0.11258780211210251, + -0.5507663488388062, + 0.1800224781036377, + -0.38638362288475037, + -0.05595463886857033, + 0.1456666886806488, + -0.15480490028858185, + 0.31889936327934265, + 0.46971026062965393, + 0.26137715578079224, + 0.34365904331207275, + 0.09903979301452637, + -0.01648278534412384, + 0.051299091428518295, + 0.00457097589969635, + -0.3097016513347626, + 0.1687018722295761, + 0.20818541944026947, + 0.4008319675922394, + -0.13016052544116974, + 0.07486172765493393, + -0.06891664862632751, + -0.059714850038290024, + 0.9107353091239929, + 0.09585195779800415, + 0.4596134424209595, + -0.6749725341796875, + -0.028921015560626984, + 0.4022016227245331, + -0.6281091570854187, + -0.36265695095062256, + 0.15239647030830383, + 0.8753838539123535, + 0.6245620250701904, + -0.1476702243089676, + 0.5172297358512878, + -0.19877244532108307, + -0.34182295203208923, + -0.2149602323770523, + -0.19249854981899261, + -0.021628746762871742, + -0.05311864987015724, + -0.15832610428333282, + 0.23065213859081268, + -0.12874692678451538, + -0.2737572491168976, + -0.1385738104581833, + -0.232293501496315, + 0.060851771384477615, + -0.04737399145960808, + -0.3695635497570038, + -0.19755862653255463, + -0.19063514471054077, + -0.10763237625360489, + 0.21944354474544525, + 0.2626520097255707, + -0.21812565624713898, + 0.3535262644290924, + -0.07768859714269638, + 0.13766629993915558, + 0.21651001274585724, + -0.032457996159791946, + -0.06887236982584, + 0.18521831929683685, + 0.23234407603740692, + -0.43382224440574646, + 0.17178793251514435, + 0.013450603932142258, + -0.27634602785110474, + -0.21174919605255127, + 0.17586451768875122, + 0.19728267192840576, + -0.32902106642723083, + -0.1337021440267563, + -0.1853039413690567, + 0.03338559716939926, + 0.12404843419790268, + 0.3724311888217926, + 0.2948210835456848, + 0.9162103533744812, + 0.010878938250243664, + 0.18720991909503937, + 0.09872931987047195, + 0.2834450900554657, + 0.19974787533283234, + 0.38279175758361816, + -0.14101840555667877, + 0.23198463022708893, + -0.4529477655887604, + 0.1672142744064331, + 0.3307790756225586, + 0.025161998346447945, + -0.05620580539107323, + -0.07099274545907974, + -0.22404320538043976, + 0.15629468858242035, + 0.08322843164205551, + -0.11712554097175598, + 0.10033272951841354, + 0.2586618661880493, + -0.5694459080696106, + -0.17429190874099731, + 0.09299486130475998, + 0.3613235056400299, + 0.26930370926856995, + -0.5705505609512329, + -0.06236475706100464, + -0.1939399242401123, + 0.03502381965517998, + -0.06876348704099655, + 0.11793192476034164, + -0.47509464621543884, + -0.11755009740591049, + 0.0232273880392313, + 0.08519168943166733, + -0.19192622601985931, + 0.28796085715293884, + -0.30297377705574036, + -0.028616705909371376, + -1.1629446744918823, + 0.29409462213516235, + -0.5166786313056946, + -0.11431930214166641, + 0.06448110193014145, + -0.3499186336994171, + -0.22720246016979218, + -0.10451003909111023, + -0.2686537206172943, + 0.19228146970272064, + -0.1187182292342186, + -0.09664297848939896, + 0.038146063685417175, + -0.02585843950510025, + 0.13758055865764618, + 0.2509004473686218, + 0.13591410219669342, + 0.18140070140361786, + 0.14681605994701385, + 0.19296739995479584, + 0.2584473192691803, + -0.17902927100658417, + -0.0698343887925148, + 0.4438004195690155, + 0.15269380807876587, + 0.13550148904323578, + -0.056324053555727005, + -0.6904330849647522, + 0.08048930019140244, + -0.2380780428647995, + 0.1362389773130417, + 0.08641836047172546, + -0.19890807569026947, + 0.1225866973400116, + -0.36152341961860657, + 0.6075365543365479, + 0.0363333486020565, + 0.4819530248641968, + -0.12185198813676834, + -0.14988888800144196, + -0.02694200538098812, + 0.15831001102924347, + 0.031690504401922226, + -0.0036247398238629103, + 0.6608149409294128, + 0.24203141033649445, + -0.3686065673828125, + 0.30839794874191284, + 0.50325608253479, + -0.22730982303619385, + -0.11761458963155746, + -0.026354655623435974, + 0.5206037759780884, + -0.1880761831998825, + 0.35984572768211365, + -0.47289013862609863, + 0.07613779604434967, + 0.08644445985555649, + -0.28509047627449036, + -0.11956431716680527, + 0.1783626228570938, + -0.15433889627456665, + 0.1889193058013916, + 0.08756100386381149, + -0.2516356408596039, + -0.03587493672966957, + 0.09449688345193863, + -0.1332808881998062, + 0.3364076614379883, + 0.012887534685432911, + 0.0973072350025177, + -0.006557032465934753, + -0.08415103703737259, + 0.20305298268795013, + -0.025557836517691612, + 0.22448159754276276, + -0.008308197371661663, + -0.4001011848449707, + 0.29311811923980713, + -0.14956697821617126, + -0.22400617599487305, + 0.13079231977462769, + -0.09128264337778091, + -0.29588255286216736, + 0.06430140137672424, + 0.06682155281305313, + -0.5501290559768677, + 0.2160441130399704, + 0.13156002759933472, + 0.15290461480617523, + 0.1966697722673416, + -0.033534374088048935, + 0.0813697949051857, + -0.29577550292015076, + 0.273113489151001, + -0.011590763926506042, + -0.2098325490951538, + -0.3837961256504059, + 0.2316405326128006, + -0.2776704728603363, + -0.1403576135635376, + 0.43232330679893494, + -0.12863151729106903, + -0.15169429779052734, + 0.11625748127698898, + -0.3726930618286133, + -0.12798403203487396, + -0.24107098579406738, + -0.04510223865509033, + 0.17985565960407257, + 0.10808221250772476, + 0.22306163609027863, + 0.09716857224702835, + -0.2690381109714508, + 0.13154661655426025, + -0.3012259304523468, + -0.4106391370296478, + -0.371407151222229, + -0.10213314741849899, + -0.06441835314035416, + -0.5508189797401428, + 0.12402859330177307, + 0.05542406439781189, + -0.1675950437784195, + 0.15655283629894257, + -0.40309903025627136, + -0.1422019600868225, + 0.012194381095468998, + -0.16410526633262634, + 0.07242079824209213, + -0.26897767186164856, + 0.16271886229515076, + -0.29384803771972656, + -0.20111043751239777, + -0.09125963598489761, + 0.04300512745976448, + 0.22896887362003326, + 0.01813109777867794, + -0.25395527482032776, + 0.026161691173911095, + 0.15280403196811676, + -0.32732877135276794, + -0.25006571412086487, + 0.028868822380900383, + -0.318211168050766, + 0.1653290092945099, + -0.1862725019454956, + 0.24290025234222412, + 0.2848130464553833, + 0.12248361855745316, + 0.19719970226287842, + 0.467583566904068, + 0.5766310691833496, + 0.1387052685022354, + -0.03842921555042267, + -0.0564095564186573, + -0.04448119178414345, + -0.07105773687362671, + -0.35950735211372375, + 0.2514190077781677, + 0.05224107578396797, + -0.0225185826420784, + 0.050865691155195236, + 0.3346787691116333, + 0.18259668350219727, + -0.46528494358062744, + -0.16995267570018768, + 0.6158903241157532, + 0.07465942949056625, + -0.009228496812283993, + 0.06533697992563248, + 0.3969036638736725, + 0.4883432686328888, + 0.008767381310462952, + 0.01995314471423626, + 0.1010066568851471, + -0.1360502392053604, + -0.2027920037508011, + -0.14865131676197052, + 0.09445963054895401, + 0.3824962377548218, + -0.2161310315132141, + -0.09505478292703629, + 0.15174010396003723, + 0.013152527622878551, + -0.15457887947559357, + -0.1275433450937271, + -0.01288128923624754, + 0.08048652857542038, + -0.2784362733364105, + 0.29848888516426086, + 0.016662226989865303, + 0.03685905039310455, + 0.4451824128627777, + -0.15955646336078644, + -0.25327757000923157, + 0.29143860936164856, + -0.17458802461624146, + -0.5572208762168884, + 0.3915020227432251, + -0.17814482748508453, + -0.02780790627002716, + 0.3723861277103424, + -0.192971333861351, + -0.0837494358420372, + -0.03246885538101196, + 0.29193738102912903, + -0.04781178757548332, + 0.02769869565963745, + -0.1336691826581955, + 0.0011481394758448005, + 0.24792028963565826, + 0.6442661285400391, + 0.223867729306221, + 0.16891874372959137, + 0.5151352286338806, + -0.0056146979331970215, + -0.3491246700286865, + -0.06811079382896423, + -0.010860760696232319, + 0.3636118173599243, + -0.2463924139738083, + -0.19255013763904572, + -0.2536795139312744, + 0.07878539711236954, + -0.044262614101171494, + -0.1773948222398758, + -0.05752274766564369, + 0.19367210566997528, + 0.04242894425988197, + -0.005040695425122976, + 0.29846569895744324, + 0.2922879159450531, + -0.04041433706879616, + 0.5480990409851074, + -0.01127179991453886, + 0.001986562041565776, + 0.4103861153125763, + -0.32289180159568787, + 0.23295873403549194, + -0.055803149938583374, + -0.2742874026298523, + -0.40690407156944275, + 0.17212145030498505, + -0.3150964677333832, + -0.14670546352863312, + 0.08263347297906876, + -0.07185041159391403, + 0.07126832008361816, + -0.20459575951099396, + 0.21382279694080353, + -0.0007080187206156552, + 0.22243548929691315, + 0.157779723405838, + 0.43767955899238586, + 0.0264971312135458, + -0.3277517259120941, + 0.18689115345478058, + -0.08930730074644089, + 0.17967122793197632, + -0.09641164541244507, + 0.046274829655885696, + -0.2120467573404312, + 0.4090823233127594, + 0.10966751724481583, + -0.0065622515976428986, + 0.09756311029195786, + -0.06413782387971878, + -0.16609857976436615, + -0.4501456022262573, + -0.10585525631904602, + -0.005897548049688339, + -0.1420794427394867, + 0.0004635155200958252, + 0.09543595463037491, + -0.29633164405822754, + -0.20544858276844025, + 0.09537210315465927, + 0.2330450564622879, + 0.16166479885578156, + -0.16920936107635498, + 0.01736464537680149, + 0.32222092151641846, + 0.09612657874822617, + 0.33261871337890625, + -0.29502618312835693, + 0.16354377567768097, + 0.09775719046592712, + -0.1704750508069992, + 0.004505498800426722, + 0.03940922021865845, + -0.3624630272388458, + -0.04720170423388481, + 0.23229078948497772, + 0.15151366591453552, + 0.0482650063931942, + -0.004547671880573034, + 0.05726783350110054, + 0.29967400431632996, + -0.44914984703063965, + -0.04189733788371086, + 0.45126914978027344, + 0.02094917558133602, + 0.5141586661338806, + -0.07070904970169067, + -0.46352720260620117, + -0.10041651129722595, + -0.07422646135091782, + -0.39690855145454407, + 0.1662837415933609, + 0.30820029973983765, + -0.11263338476419449, + -0.09582009166479111, + -0.024622419849038124, + 0.05750381946563721, + -0.04882928729057312, + 0.23525190353393555, + -0.29718223214149475, + 0.10987704992294312, + 0.04123862460255623, + -0.32657936215400696, + -0.19163541495800018, + -0.2490503042936325, + -0.3812367022037506, + -0.2995447814464569, + 0.3582834303379059, + 0.23494364321231842, + -0.28173401951789856, + 0.030401239171624184, + 0.1378955841064453, + -0.3495148718357086, + -0.15969499945640564, + 0.0528997965157032, + -0.31683149933815, + 0.584238588809967, + 0.023191682994365692, + -0.20008043944835663, + 0.15535502135753632, + -0.3458968698978424, + 0.09884252399206161, + 0.15266357362270355, + 0.2174551635980606, + 0.3907606899738312, + 0.15372513234615326, + 0.09229766577482224, + 0.46047845482826233, + 0.11956637352705002, + -0.11282530426979065, + 0.1676998883485794, + -0.03576347231864929, + -0.020295634865760803, + -0.19300436973571777, + -0.33135437965393066, + 0.32984963059425354, + -0.3352862596511841, + -0.014801864512264729, + 0.19090096652507782, + 0.24498139321804047, + -0.38964971899986267, + -0.24420654773712158, + 0.014300316572189331, + -0.06965646892786026, + -0.08157148957252502, + -0.31890180706977844, + -0.21479104459285736, + 0.06354471296072006, + -0.3465263843536377, + -0.16138856112957, + 0.3174036741256714, + 0.5496646165847778, + 0.12802620232105255, + 0.25583696365356445, + -0.3663226366043091, + -0.4844869077205658, + 0.1827523559331894, + 0.25285395979881287, + 0.07394387573003769, + 0.034069474786520004, + -0.18862859904766083, + 0.3163810968399048, + 0.5154316425323486, + -0.10955053567886353, + 0.03131056949496269, + 0.1892220377922058, + 0.041061148047447205, + 0.03671647235751152, + 0.04664452001452446, + -0.14760172367095947, + -0.05134166404604912, + -0.4625049829483032, + 0.17648369073867798, + -0.3116316497325897, + -0.24471479654312134, + 0.26184695959091187, + -0.09181680530309677, + -0.43382528424263, + -0.3052256107330322, + 0.23441942036151886, + -0.29231756925582886, + -0.05361919477581978, + 0.08342354744672775, + 0.43767476081848145, + 0.07741333544254303, + -0.26163923740386963, + 0.1187414601445198, + -0.4204951822757721, + -0.25282999873161316, + 0.17314518988132477, + -0.170502707362175, + -0.09393260627985, + -0.10286331921815872, + 0.32265087962150574, + 0.45830079913139343, + 0.20102542638778687, + -0.15931475162506104, + 0.06588107347488403, + 0.31090375781059265, + 0.3565657138824463, + -0.10295185446739197, + -10.744647026062012, + -0.04604804888367653, + -0.3253835141658783, + 0.5708732604980469, + -0.17608116567134857, + -0.015280908904969692, + 0.10093840211629868, + -0.019073545932769775, + 0.23316258192062378, + 0.23653054237365723, + -0.17266350984573364, + -0.011805769987404346, + 0.1931038498878479, + 0.26210615038871765, + 0.0567018985748291, + -0.07715386897325516, + -0.22639034688472748, + 0.14499923586845398, + -0.025134040042757988, + 0.11174985766410828, + 0.3162493407726288, + 0.44248703122138977, + -0.3188457787036896, + 0.28646230697631836, + 0.07125282287597656, + -0.3011704385280609, + -0.14805853366851807, + 0.4793212115764618, + 0.2731318473815918, + -0.32419320940971375, + 0.32479235529899597, + 0.18022365868091583, + -0.24581323564052582, + 0.15265615284442902, + -0.045147452503442764, + -0.0704122856259346, + -0.13164792954921722, + 0.020780477672815323, + 0.25776323676109314, + -0.04539954289793968, + 0.016500992700457573, + -0.29970577359199524, + 0.4260568618774414, + 0.22366832196712494, + -0.19919495284557343, + -0.3446005582809448, + -0.2480676919221878, + -1.6446250677108765, + 0.29945895075798035, + 0.3834644854068756, + 0.3988116681575775, + 0.1287742555141449, + 0.26201483607292175, + 0.19236047565937042, + -0.3775355815887451, + -0.09549596160650253, + -0.306159108877182, + 0.09446334838867188, + 0.2201187014579773, + -0.0587490051984787, + 0.17177008092403412, + -0.14922095835208893, + 0.43180403113365173, + -0.02549036405980587, + -0.2360544353723526, + 0.1747494339942932, + 0.06465249508619308, + -0.11621014028787613, + -0.22130507230758667, + -0.5160310864448547, + -0.5501842498779297, + -0.04760590195655823, + 0.035927366465330124, + -0.030000776052474976, + 0.44601771235466003, + -0.12932388484477997, + -0.3180038034915924, + 0.23234279453754425, + 0.07652866095304489, + 0.37424615025520325, + 0.10407953709363937, + -0.024255292490124702, + 0.15776683390140533, + -0.08109629899263382, + -0.23260821402072906, + -0.11793095618486404, + 0.07974673062562943, + 0.6373133063316345, + -0.030546078458428383, + -0.09549999237060547, + -0.06161344423890114, + 0.33912894129753113, + -0.001531595946289599, + -0.17225803434848785, + -0.49504247307777405, + 0.09331392496824265, + 0.07523858547210693, + 0.0987900123000145, + -0.04662521556019783, + -0.354826420545578, + -0.15885266661643982, + -0.11887846142053604, + 0.06934697926044464, + -0.5674009919166565, + -0.38548603653907776, + 0.18011574447155, + 0.0920599177479744, + 0.2919769287109375, + 0.007054060697555542, + -0.09748048335313797, + -0.1496010571718216, + -0.12677150964736938, + 0.3822607100009918, + 0.6217686533927917, + 0.2730559706687927, + -0.047466639429330826, + -0.0481189489364624, + -0.11883082985877991, + -0.22721809148788452, + -0.07056159526109695, + 0.34676405787467957, + -0.18096135556697845, + 0.278670996427536, + 0.6308524012565613, + 0.039686430245637894, + -0.07487715035676956, + 0.8989226222038269, + -0.2927185893058777, + 0.28625836968421936, + -0.21907790005207062, + 0.15038010478019714, + 0.02180330455303192, + -0.47294649481773376, + 0.06025141477584839, + 0.4711678922176361, + -0.26200541853904724, + 0.7392508387565613, + 0.2501610815525055, + -0.5181857943534851, + 0.07812300324440002, + -0.31538140773773193, + 0.4983167350292206, + 0.2706756889820099, + 0.22215671837329865, + -0.16635039448738098, + -0.20372362434864044, + -0.32605117559432983, + -0.024273226037621498, + -0.37327179312705994, + -0.3957570791244507, + -0.1794571727514267, + 0.14078038930892944, + 0.1823965162038803, + -0.20667339861392975, + 0.35273948311805725, + 0.16405248641967773, + -0.24374733865261078, + -0.14357635378837585, + -0.6168113350868225, + -0.13354188203811646, + 0.30628255009651184, + 0.8692931532859802, + -0.009245254099369049, + 0.020604895427823067, + -0.15789224207401276, + 0.20088154077529907, + -0.08336320519447327, + 0.1585778445005417, + 0.15057136118412018, + -0.08243253082036972, + -0.5259096622467041, + 0.24818044900894165, + 0.11514371633529663, + -0.4331342875957489, + -0.15646643936634064, + -0.20817995071411133, + -0.13318465650081635, + 0.10125886648893356, + -0.09144661575555801, + 0.129685178399086, + 0.2349615842103958, + -0.01617295853793621, + 0.019459806382656097, + -0.23556256294250488, + -0.01983431726694107, + 0.27739250659942627, + 0.24977988004684448, + 0.2293311208486557, + -0.1947038173675537, + -0.4206688404083252, + -0.42323604226112366, + 0.28891125321388245, + -0.33473289012908936, + -0.11426708847284317, + 0.039415210485458374, + 0.2419389933347702, + -0.3461688756942749, + 0.07015485316514969, + -0.20464546978473663, + 0.04194565489888191, + -0.36970528960227966, + 0.25305435061454773, + 0.46422937512397766, + -0.2465406060218811, + 0.21775542199611664, + -0.08515599370002747, + 0.33335113525390625, + 0.07463822513818741, + -0.3180834650993347, + 0.24211089313030243, + -0.24701601266860962 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_027.json b/src/benchmark/output/results/results_graph_027.json new file mode 100644 index 0000000..50d7376 --- /dev/null +++ b/src/benchmark/output/results/results_graph_027.json @@ -0,0 +1,788 @@ +{ + "status": "partial", + "errors": [ + "Topology validation failed: '<' not supported between instances of 'NoneType' and 'str'" + ], + "reconstructed_narrative": "The patient in question is an elderly individual with a history of hypertension, carotid artery stenosis, cerebral artery stenosis, and primary malignant neoplasm of the lung. The patient's demographic information includes a 30-year history of hypertension, a 7-year history of carotid stenosis on the left side, and a 4-year history of right lung cancer surgery.\n\nThe patient's timeline of diagnoses began with the discovery of black stool on January 9, 2024. Upon presentation to the emergency department, the patient was found to have a hemoglobin level of 58 g/L. This marked the beginning of an acute upper gastrointestinal hemorrhage, which required immediate attention.\n\nFollowing stabilization, the patient's medical history and current medications were reviewed (N11). The patient had been managed with compound reserpine, nifedipine extended-release tablets, and captopril for their hypertension, as well as a 30-year history of hypertension. Additionally, the patient had undergone right lung cancer surgery 4 years prior and thermal ablation of a right lung tumor 5 months prior.\n\nThe patient's symptoms and laboratory results led to the diagnosis of gastrointestinal hemorrhage, unspecified (K92.2). The patient was subsequently admitted for further evaluation and management.\n\nIn the course of their treatment, the patient underwent several procedures, including CT-guided percutaneous lung nodule aspiration biopsy (N7), thermal ablation of a right lung tumor (N8), and regular follow-up with surveillance imaging (N9).\n\nThe patient's hemoglobin level was found to be 58 g/L upon presentation, indicating severe anemia. The patient's symptoms and laboratory results led to the diagnosis of gastrointestinal hemorrhage, unspecified (K92.2). The patient was subsequently admitted for further evaluation and management.\n\nIn the course of their treatment, the patient underwent several procedures, including CT-guided percutaneous lung nodule aspiration biopsy (N7), thermal ablation of a right lung tumor (N8), and regular follow-up with surveillance imaging (N9).\n\nThe patient's timeline of diagnoses is as follows:\n\n* January 9, 2024: Patient presents with black stool and is found to have a hemoglobin level of 58 g/L.\n* January 9, 2024: Acute upper gastrointestinal hemorrhage diagnosed (K92.2).\n* January 9-10, 2024: Patient's medical history and current medications reviewed (N11).\n* January 9-10, 2024: Patient undergoes CT-guided percutaneous lung nodule aspiration biopsy (N7).\n* January 9-10, 2024: Patient undergoes thermal ablation of a right lung tumor (N8).\n* January 9-10, 2024: Patient begins regular follow-up with surveillance imaging (N9).\n\nThe patient's treatment plan is focused on managing their acute upper gastrointestinal hemorrhage and addressing any underlying causes. The patient will require close monitoring and ongoing evaluation to ensure the best possible outcome.\n\nIn terms of outcomes, the patient has made significant progress in their management of acute upper gastrointestinal hemorrhage. However, further evaluation and follow-up are necessary to determine the long-term prognosis and potential complications.\n\nThe patient's history of hypertension, carotid artery stenosis, cerebral artery stenosis, and primary malignant neoplasm of the lung will require ongoing management and monitoring. The patient's treatment plan should take into account these comorbidities and ensure that they receive comprehensive care to address all aspects of their health.\n\nIn conclusion, the patient's timeline of diagnoses and treatments is complex and multifaceted. Ongoing evaluation and follow-up are necessary to determine the best course of action for this patient.", + "bertscore": { + "precision": [ + 0.4498176574707031 + ], + "recall": [ + 0.5712114572525024 + ], + "f1": [ + 0.5032980442047119 + ] + }, + "trajectory_embedding": [ + 0.1456865519285202, + 0.1314917504787445, + -0.0931175947189331, + 0.04623199999332428, + 0.059770286083221436, + 0.0806192085146904, + 0.04538099840283394, + 0.17417706549167633, + 0.28361740708351135, + -0.24916689097881317, + -0.11881931871175766, + 0.03163249418139458, + -0.5529548525810242, + -0.09358691424131393, + -0.20111314952373505, + 0.28860440850257874, + 0.023606710135936737, + 0.25683730840682983, + 0.03913749381899834, + -0.2733571231365204, + -0.39962542057037354, + 0.18289844691753387, + -0.3924703598022461, + -0.05127008259296417, + 0.24216043949127197, + -0.03098374605178833, + 0.3974739611148834, + 0.6353550553321838, + 0.28633245825767517, + 0.38187721371650696, + 0.1768408566713333, + -0.006388118024915457, + 0.10218223184347153, + 0.04264649748802185, + -0.32773956656455994, + 0.37446129322052, + 0.17846442759037018, + 0.32650306820869446, + -0.09868700057268143, + 0.04879933223128319, + -0.09238523989915848, + 0.0028494198340922594, + 0.7947121262550354, + 0.32945314049720764, + 0.39667072892189026, + -0.852902352809906, + 0.09494761377573013, + 0.5418190360069275, + -0.47906485199928284, + -0.25899210572242737, + 0.16957390308380127, + 0.7068095207214355, + 0.5470502972602844, + -0.3676629066467285, + 0.4368591010570526, + -0.10245154052972794, + -0.30749839544296265, + -0.30228909850120544, + -0.2028266191482544, + 0.07307341694831848, + -0.0061266012489795685, + -0.21166078746318817, + 0.3589807450771332, + -0.1613215059041977, + -0.3071132302284241, + -0.1701512187719345, + -0.15831218659877777, + 0.08565256744623184, + 0.02320142649114132, + -0.4816090166568756, + -0.21285772323608398, + -0.14641958475112915, + -0.0672348141670227, + -0.02256728522479534, + 0.03905874863266945, + -0.1586652249097824, + 0.4870498478412628, + -0.003189854323863983, + 0.11620896309614182, + 0.11106175184249878, + -0.1002475917339325, + -0.13584192097187042, + -0.01988532766699791, + 0.19341562688350677, + -0.32707735896110535, + -0.00033312165760435164, + -0.07443244010210037, + -0.22330127656459808, + -0.39778366684913635, + 0.09796155244112015, + 0.2143556922674179, + -0.39230379462242126, + 0.06043307110667229, + -0.1679074615240097, + 0.08282572031021118, + 0.04906846210360527, + 0.4001304805278778, + 0.3513607680797577, + 0.9803833365440369, + 0.05956466495990753, + 0.12142235040664673, + -0.009364907629787922, + 0.20885096490383148, + -0.03894999995827675, + 0.43731367588043213, + -0.07036209851503372, + 0.254342257976532, + -0.6092242002487183, + 0.13192592561244965, + 0.40354230999946594, + 0.002747446298599243, + -0.1721498817205429, + 0.02024925872683525, + -0.268901526927948, + 0.18018870055675507, + 0.05465313792228699, + -0.018751537427306175, + 0.21257908642292023, + 0.22365348041057587, + -0.28528401255607605, + -0.01722920499742031, + 0.002669932320713997, + 0.2271677702665329, + 0.3048597276210785, + -0.28496724367141724, + 0.038819339126348495, + -0.20163895189762115, + 0.029794767498970032, + 0.10579521209001541, + -0.04326478764414787, + -0.5616032481193542, + -0.22392888367176056, + -0.08776507526636124, + 0.2197716385126114, + -0.0523286908864975, + 0.20740608870983124, + -0.3483254909515381, + 0.1365949511528015, + -1.0272430181503296, + 0.2777925729751587, + -0.276108980178833, + -0.09999044984579086, + 0.04566652700304985, + -0.44236406683921814, + -0.23953621089458466, + -0.13241897523403168, + -0.17023469507694244, + 0.06917040795087814, + -0.049871329218149185, + -0.12991203367710114, + -0.0426776222884655, + 0.054062921553850174, + 0.31863483786582947, + 0.36094704270362854, + 0.12669967114925385, + 0.02208367921411991, + 0.003476159879937768, + 0.20276808738708496, + 0.08475767821073532, + 0.04299396649003029, + 0.009042073041200638, + 0.3302220106124878, + 0.040912315249443054, + -0.10304901003837585, + -0.1404067724943161, + -0.642652153968811, + 0.22903193533420563, + -0.19090072810649872, + 0.27073585987091064, + 0.08046158403158188, + -0.11143959313631058, + 0.17426829040050507, + -0.20966394245624542, + 0.5847271084785461, + 0.08104787766933441, + 0.2242364138364792, + 0.07130274176597595, + -0.05077098309993744, + 0.08135097473859787, + 0.12716151773929596, + 0.19586052000522614, + -0.1481284350156784, + 0.6229590773582458, + 0.07295738905668259, + -0.23359091579914093, + 0.1496940404176712, + 0.27710023522377014, + 0.1249055489897728, + -0.0018076598644256592, + 0.007867508567869663, + 0.5114795565605164, + -0.3218313753604889, + 0.444132536649704, + -0.38868653774261475, + 0.0038155510555952787, + 0.11930453777313232, + -0.18728090822696686, + -0.2189697027206421, + -0.08448368310928345, + -0.1119043156504631, + 0.06893245130777359, + 0.07687660306692123, + -0.4267411231994629, + 0.17516140639781952, + 0.19721275568008423, + -0.14966316521167755, + 0.32080355286598206, + 0.04634542763233185, + 0.08398887515068054, + -0.03497517108917236, + -0.2645931541919708, + 0.17420290410518646, + -0.20361113548278809, + 0.17484259605407715, + 0.05111941322684288, + -0.25983306765556335, + 0.3083758056163788, + -0.07119970768690109, + -0.04145408794283867, + 0.30363383889198303, + 0.020714180544018745, + -0.14646072685718536, + -0.07512076199054718, + -0.09198033809661865, + -0.4462071359157562, + 0.22019235789775848, + 0.05422640219330788, + 0.3733670711517334, + 0.3035283386707306, + -0.03602537140250206, + 0.08126861602067947, + -0.3514270782470703, + 0.17338156700134277, + -0.18341165781021118, + -0.04446536675095558, + -0.23178650438785553, + 0.23551370203495026, + -0.17833565175533295, + 0.11697745323181152, + 0.2779746651649475, + -0.06602258235216141, + -0.11505930870771408, + 0.16690389811992645, + -0.07576322555541992, + -0.031179353594779968, + -0.3555029332637787, + 0.05127062276005745, + 0.2643754482269287, + 0.10375352948904037, + 0.2189914584159851, + 0.0283151064068079, + -0.1077921912074089, + 0.030457856133580208, + -0.18756575882434845, + -0.3123209774494171, + -0.4759158194065094, + -0.2477906197309494, + -0.1012088730931282, + -0.4581577777862549, + 0.0591692216694355, + 0.060034919530153275, + 0.005756005644798279, + 0.016255894675850868, + -0.2651378810405731, + -0.16575740277767181, + 0.09995990246534348, + 0.10617075115442276, + 0.0035487457644194365, + -0.22720664739608765, + 0.19884765148162842, + -0.08566022664308548, + -0.33878228068351746, + -0.1956682950258255, + -0.011640033684670925, + 0.08494067937135696, + 0.017346994951367378, + -0.2524566352367401, + -0.07991459965705872, + 0.13054406642913818, + -0.34944677352905273, + -0.21528689563274384, + 0.27825093269348145, + -0.17588943243026733, + 0.2961503863334656, + 0.05171816423535347, + 0.20392589271068573, + 0.27571019530296326, + 0.04150038957595825, + 0.121763676404953, + 0.3898531198501587, + 0.48784253001213074, + -0.016386276111006737, + -0.05224965140223503, + -0.0580747127532959, + -0.16659437119960785, + -0.05606919527053833, + -0.4605311453342438, + 0.4538081884384155, + 0.08903919905424118, + 0.07433950155973434, + -0.0453120656311512, + 0.20793254673480988, + 0.07330016791820526, + -0.21291740238666534, + 0.052704617381095886, + 0.4244097173213959, + 0.18684370815753937, + 0.12645255029201508, + 0.09527713060379028, + 0.3833683431148529, + 0.34740743041038513, + -0.06742605566978455, + -0.08702494949102402, + 0.05778743699193001, + -0.06877122074365616, + -0.23252196609973907, + -0.0694444328546524, + 0.21840794384479523, + 0.26807650923728943, + -0.15564791858196259, + -0.07727193832397461, + 0.13270868360996246, + -0.14759473502635956, + -0.03282037377357483, + -0.13700325787067413, + -0.09479516744613647, + 0.08507516235113144, + -0.16519558429718018, + 0.17379824817180634, + -0.05981030687689781, + -0.01846577785909176, + 0.290958046913147, + -0.36613354086875916, + -0.21703828871250153, + 0.13892751932144165, + -0.1300927996635437, + -0.4425717294216156, + 0.3906426429748535, + -0.19005222618579865, + 0.04384079575538635, + 0.31150761246681213, + -0.11899270862340927, + 0.03313010185956955, + -0.1352318525314331, + 0.35255590081214905, + -0.07056339085102081, + 0.016723651438951492, + -0.19115149974822998, + 0.06532660126686096, + 0.08415171504020691, + 0.587148129940033, + 0.17484550178050995, + 0.17625387012958527, + 0.5032609701156616, + 0.10333690792322159, + -0.2731017768383026, + 0.06781316548585892, + -0.08061856776475906, + 0.3201659619808197, + -0.05493263900279999, + -0.14302729070186615, + -0.115841805934906, + 0.08114995807409286, + 0.05610566958785057, + -0.3605881631374359, + 0.08978766202926636, + 0.24558301270008087, + 0.07346049696207047, + -0.036549683660268784, + 0.3176606595516205, + 0.18691067397594452, + -0.043143611401319504, + 0.49736347794532776, + -0.009831356815993786, + -0.19282181560993195, + 0.3291984796524048, + -0.2406240701675415, + 0.2340090423822403, + -0.07583093643188477, + -0.24275445938110352, + -0.313197523355484, + 0.10515817999839783, + -0.11001095175743103, + -0.1765470951795578, + -0.02710620127618313, + -0.17280858755111694, + 0.14573536813259125, + -0.062231216579675674, + 0.2029387205839157, + 0.01637336239218712, + 0.2205265313386917, + 0.10514068603515625, + 0.2907162010669708, + -0.07567355036735535, + -0.22349245846271515, + 0.16413210332393646, + 0.0882098451256752, + -0.001840973854996264, + -0.2872975468635559, + -0.08066767454147339, + -0.0437224805355072, + 0.4805550277233124, + 0.07598024606704712, + 0.004904346074908972, + 0.1339031308889389, + -0.04897042736411095, + -0.08183867484331131, + -0.46962258219718933, + -0.1719799041748047, + -0.15634091198444366, + -0.026649797335267067, + -0.05149250850081444, + 0.012214132584631443, + -0.22071653604507446, + -0.21102964878082275, + -0.12023656815290451, + 0.016242047771811485, + 0.19576583802700043, + -0.03847000002861023, + -0.15261830389499664, + 0.23020879924297333, + 0.1786094456911087, + 0.2929471731185913, + -0.26996320486068726, + 0.14221154153347015, + 0.04611949250102043, + -0.286937952041626, + -0.2315778136253357, + 0.048685457557439804, + -0.23915302753448486, + -0.11337003856897354, + 0.24421876668930054, + 0.3439832627773285, + 0.03118002414703369, + -0.0004935488104820251, + 0.16900157928466797, + 0.08510393649339676, + -0.27768537402153015, + -0.12045791000127792, + 0.2888939380645752, + 0.14683187007904053, + 0.3536902666091919, + 0.005751257296651602, + -0.43354570865631104, + -0.2490624189376831, + -0.23274385929107666, + -0.30380716919898987, + 0.12710361182689667, + 0.19689007103443146, + -0.067035011947155, + -0.226173996925354, + 0.020940013229846954, + -0.05853469297289848, + -0.11257699877023697, + 0.2574267089366913, + -0.006628349423408508, + 0.2189132422208786, + -0.03264753893017769, + -0.35858383774757385, + -0.08925256878137589, + -0.15321530401706696, + -0.38582172989845276, + -0.29216650128364563, + 0.3347117602825165, + 0.23261390626430511, + -0.3103792369365692, + -0.06118205189704895, + 0.10441329330205917, + -0.18380415439605713, + -0.19705843925476074, + -0.030935483053326607, + -0.24023348093032837, + 0.42824622988700867, + -0.0050687468610703945, + -0.2153976559638977, + 0.10332120209932327, + -0.29307958483695984, + 0.14216895401477814, + 0.19994230568408966, + 0.005204456392675638, + 0.4634797275066376, + 0.1676253080368042, + 0.04117312654852867, + 0.5320867896080017, + 0.1630219668149948, + 0.040645722299814224, + 0.29016056656837463, + -0.012242565862834454, + 0.16559091210365295, + -0.23617921769618988, + -0.19502049684524536, + 0.19014115631580353, + -0.3019009828567505, + -0.020164499059319496, + 0.2904292047023773, + 0.23309071362018585, + -0.37177038192749023, + -0.26091209053993225, + 0.09889450669288635, + -0.03276386484503746, + -0.16040657460689545, + -0.17855501174926758, + -0.10786333680152893, + -0.009773570112884045, + -0.33548736572265625, + 0.016741370782256126, + 0.21504418551921844, + 0.33842960000038147, + 0.19651301205158234, + 0.12223843485116959, + -0.19775240123271942, + -0.4388163387775421, + 0.16261108219623566, + 0.2647019326686859, + 0.09102475643157959, + 0.10252735018730164, + -0.08886929601430893, + 0.36285051703453064, + 0.3331838548183441, + -0.006188944447785616, + 0.00013060122728347778, + 0.006612370256334543, + 0.08137377351522446, + 0.0749107226729393, + 0.0765034630894661, + -0.07213237881660461, + 0.16251368820667267, + -0.3062576353549957, + 0.20147567987442017, + -0.295575350522995, + -0.2113134264945984, + 0.19270890951156616, + -0.13237054646015167, + -0.45177605748176575, + -0.03781764209270477, + 0.27468180656433105, + -0.13139353692531586, + -0.07021848857402802, + 0.16158215701580048, + 0.38347241282463074, + 0.06387980282306671, + -0.29125380516052246, + -0.04651208594441414, + -0.5139647722244263, + -0.17882366478443146, + 0.15607987344264984, + -0.1656659096479416, + -0.10491762310266495, + 0.04341155290603638, + 0.519360363483429, + 0.4849184453487396, + 0.1527681201696396, + -0.3393360674381256, + 0.13002805411815643, + 0.179610013961792, + 0.2267676740884781, + -0.30960479378700256, + -10.76770305633545, + -0.04937170073390007, + -0.3144756257534027, + 0.5559359192848206, + -0.22271651029586792, + 0.06824704259634018, + 0.26861894130706787, + -0.06791994720697403, + 0.0932488739490509, + 0.012506638653576374, + -0.25134721398353577, + -0.07482770830392838, + 0.4211214780807495, + 0.25350603461265564, + -0.06278140097856522, + -0.028454726561903954, + -0.29718682169914246, + 0.12587870657444, + 0.09172939509153366, + 0.2248041033744812, + 0.2456715852022171, + 0.3040908873081207, + -0.18598616123199463, + 0.24188870191574097, + -0.015356623567640781, + -0.26846081018447876, + -0.27155861258506775, + 0.5686387419700623, + 0.2483949065208435, + -0.35778677463531494, + 0.15259380638599396, + 0.16765427589416504, + -0.15358369052410126, + 0.08377446979284286, + -0.06913278251886368, + -0.1062631830573082, + -0.05402091518044472, + 0.24496670067310333, + 0.26557594537734985, + -0.13601666688919067, + -0.01946587674319744, + -0.1461888551712036, + 0.1319034844636917, + 0.2366631031036377, + -0.07172257453203201, + -0.5348557829856873, + -0.25056496262550354, + -1.5187650918960571, + 0.2662450969219208, + 0.2669421136379242, + 0.26520630717277527, + 0.010563071817159653, + 0.10831289738416672, + 0.2196856290102005, + -0.31343069672584534, + 0.13128410279750824, + -0.30309221148490906, + 0.00030535459518432617, + 0.09254341572523117, + -0.020958438515663147, + 0.0912056490778923, + -0.18538832664489746, + 0.6305069327354431, + -0.03261744603514671, + -0.3663763105869293, + 0.09078571945428848, + -0.008106958121061325, + -0.06837084144353867, + -0.213918074965477, + -0.5108022093772888, + -0.44243016839027405, + -0.08162274956703186, + -0.20782405138015747, + -0.037791118025779724, + 0.36206209659576416, + -0.001504547894001007, + -0.3054998815059662, + 0.24004192650318146, + 0.009462706744670868, + 0.26303303241729736, + 0.12812991440296173, + -0.032632481306791306, + 0.10949200391769409, + -0.17787569761276245, + -0.2450656145811081, + -0.10470136255025864, + 0.10865121334791183, + 0.38953685760498047, + 0.017910795286297798, + -0.05046108737587929, + 0.009701061993837357, + 0.4855739176273346, + 0.045494794845581055, + -0.2022409290075302, + -0.4212040901184082, + 0.03443121537566185, + -0.09647548943758011, + 0.06134197115898132, + -0.07736583054065704, + -0.10336653143167496, + -0.12365701049566269, + 0.054490745067596436, + -0.04871400073170662, + -0.40506336092948914, + -0.4064514935016632, + 0.26581472158432007, + 0.1118243858218193, + 0.16083692014217377, + 0.017890188843011856, + -0.1338598132133484, + -0.08353841304779053, + 0.06646173447370529, + 0.15495800971984863, + 0.4732852280139923, + 0.1861763596534729, + -0.13592012226581573, + -0.07004982233047485, + -0.3298652172088623, + -0.14015543460845947, + -0.0014337599277496338, + 0.3097314238548279, + -0.08943361788988113, + 0.22116829454898834, + 0.5188443064689636, + -0.056084632873535156, + -0.02667474001646042, + 0.9474626183509827, + -0.2289573699235916, + 0.274119108915329, + -0.1333768218755722, + 0.2108960747718811, + -0.12451473623514175, + -0.2178516536951065, + 0.09490235894918442, + 0.4119732081890106, + -0.3296416699886322, + 0.5915488004684448, + 0.08589138835668564, + -0.34869304299354553, + -0.03709444776177406, + -0.2086176723241806, + 0.41479000449180603, + 0.3705427348613739, + 0.32061073184013367, + -0.10620670765638351, + -0.32496586441993713, + -0.2598907947540283, + 0.006103502120822668, + -0.3872876465320587, + -0.3781029284000397, + -0.1958344727754593, + 0.11598614603281021, + 0.07771259546279907, + -0.225832000374794, + 0.26441118121147156, + 0.07841621339321136, + -0.08558175712823868, + -0.34056082367897034, + -0.3741566836833954, + 0.013456110842525959, + 0.10599487274885178, + 0.7825827598571777, + -0.10218832641839981, + 0.000811133359093219, + -0.0759391263127327, + 0.1383369117975235, + -0.14752595126628876, + 0.2306026816368103, + 0.012646404094994068, + 0.011233169585466385, + -0.5192301869392395, + 0.21423853933811188, + 0.19742269814014435, + -0.23473374545574188, + -0.1318122148513794, + -0.24404285848140717, + -0.04313606023788452, + -0.021017730236053467, + -0.2269909828901291, + 0.11024106293916702, + 0.41027021408081055, + -0.08353698998689651, + -0.05839782953262329, + -0.22980402410030365, + 0.09159130603075027, + 0.100079245865345, + 0.2716154158115387, + 0.04788695648312569, + -0.24102318286895752, + -0.33940353989601135, + -0.5361133217811584, + 0.2896086275577545, + -0.2815565764904022, + -0.03329748287796974, + 0.2046552449464798, + 0.11463269591331482, + -0.2241598516702652, + 0.07360406965017319, + -0.14863188564777374, + 0.0010421733604744077, + -0.11007536202669144, + 0.23892128467559814, + 0.4111049473285675, + -0.39125728607177734, + 0.31197166442871094, + -0.17779521644115448, + 0.1642216145992279, + 0.08717682212591171, + -0.19608311355113983, + 0.1685820370912552, + -0.16227419674396515 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_028.json b/src/benchmark/output/results/results_graph_028.json new file mode 100644 index 0000000..ddbf1e1 --- /dev/null +++ b/src/benchmark/output/results/results_graph_028.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is an 84-year-old woman with a history of type 2 diabetes mellitus, arthritis, and hypertension. She presented to the clinic with an incidental finding of an enlarging solitary lung nodule.\n\n**Timeline of Diagnoses:**\n\n1. **Initial Presentation (Step 1):** The patient was diagnosed with an enlarging solitary lung nodule, which prompted further investigation.\n2. **Lung Nodule Measurement (Step 2):** A chest CT scan revealed a well-circumscribed lesion measuring 0.9 \u00d7 0.8 cm four years prior to the current presentation.\n3. **Recent Imaging (Step 2):** A recent chest CT scan showed a 1.3 \u00d7 1.2 cm well-circumscribed lesion, and a PET/CT scan revealed a 1.4 cm nodule with an avidity of 3.8 without any metastatic or nodal involvement.\n4. **Head CT Without Contrast (Step 3):** A head CT without contrast revealed mild white matter hypoattenuation, but no evidence of acute hemorrhage, mass effect, or extra-axial collection.\n5. **Differential Diagnoses and Treatment (Step 4):** Differential diagnoses included carcinoid tumor, non-small-cell lung cancer, or a hamartoma. The patient underwent a robotic-assisted left VATS wedge resection of the left upper lobe under general anesthesia to remove the nodule.\n\n**Outcomes:**\n\n1. **No Distant Metastasis:** No distant metastasis was observed after the surgical procedure.\n2. **Nodule Size and Growth:** The nodule was greater than 0.8 cm in size and increased in size over the preceding four years.\n3. **Post-Operative Period (Step 5):** The patient is currently in the post-operative period following robotic-assisted left VATS wedge resection.\n\n**Conclusion:**\nThe patient's clinical presentation, imaging findings, and treatment outcomes suggest a possible diagnosis of carcinoid tumor or non-small-cell lung cancer. Further investigation and surgical intervention were necessary to manage this condition. The patient's age, comorbidities, and nodule growth pattern warrant close follow-up to monitor for any signs of recurrence or metastasis.\n\n**Recommendations:**\n\n1. **Regular Follow-Up:** Regular follow-up appointments are recommended to monitor the patient's lung function, overall health, and any potential recurrences.\n2. **Imaging Surveillance:** Imaging surveillance, including chest CT scans and PET/CT scans, should be performed regularly to monitor the nodule for any changes or growth.\n3. **Comprehensive Cancer Screening:** Comprehensive cancer screening, including mammography, colonoscopy, and skin examination, is recommended due to the patient's age and comorbidities.\n\n**Limitations:**\nThis case report has several limitations, including the lack of detailed information on the patient's medical history, laboratory results, and long-term follow-up. Further investigation and data collection are necessary to provide a more comprehensive understanding of this clinical scenario.", + "bertscore": { + "precision": [ + 0.7183935642242432 + ], + "recall": [ + 0.7226868867874146 + ], + "f1": [ + 0.7205338478088379 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 5, + "edge_count": 4, + "avg_in_degree": 0.8, + "density": 0.2 + }, + "trajectory_embedding": [ + 0.24988213181495667, + 0.04165813326835632, + -0.10803090035915375, + 0.24811552464962006, + -0.10578621923923492, + 0.02792733535170555, + 0.1465204954147339, + 0.06951414048671722, + 0.26994967460632324, + -0.33724159002304077, + -0.28783297538757324, + 0.3368149995803833, + -0.748920202255249, + -0.056652992963790894, + -0.34884560108184814, + 0.025123193860054016, + 0.20900700986385345, + 0.30647820234298706, + 0.16403011977672577, + -0.24056905508041382, + -0.5396699905395508, + 0.07453572005033493, + -0.37687554955482483, + -0.1599014699459076, + 0.10857540369033813, + -0.19019807875156403, + 0.002367437817156315, + 0.441151887178421, + 0.2771269679069519, + 0.39614373445510864, + 0.1260596215724945, + 0.15626665949821472, + -0.20671449601650238, + 0.08241055905818939, + -0.03254906088113785, + 0.49300140142440796, + 0.42313554883003235, + 0.31458598375320435, + -0.055950894951820374, + 0.20752550661563873, + 0.023996805772185326, + -0.02388133853673935, + 0.6561620235443115, + 0.43024349212646484, + 0.7876812815666199, + -0.5390937924385071, + -0.04921523109078407, + 0.25373032689094543, + -0.6475976705551147, + -0.2266829013824463, + 0.19614575803279877, + 0.629033088684082, + 0.6878945827484131, + -0.14689123630523682, + 0.4091928005218506, + -0.03982734680175781, + -0.37421444058418274, + -0.28855448961257935, + -0.27741408348083496, + 0.1578247845172882, + -0.14264076948165894, + 0.054133057594299316, + -0.05268683284521103, + 0.011752783320844173, + -0.38190537691116333, + -0.10985147953033447, + -0.12343727797269821, + -0.08808933943510056, + -0.053731534630060196, + -0.48661091923713684, + -0.2602510452270508, + -0.31354638934135437, + -0.047760725021362305, + 0.016415659338235855, + 0.19678691029548645, + -0.20765042304992676, + 0.28304189443588257, + 0.11280994117259979, + -0.1535159796476364, + 0.18736112117767334, + 0.18949340283870697, + 0.013388917781412601, + 0.2651159167289734, + 0.21847812831401825, + -0.29957619309425354, + 0.14518333971500397, + 0.04775700718164444, + -0.051480792462825775, + -0.09006012231111526, + 0.3778984844684601, + 0.05007908493280411, + -0.06255543977022171, + 0.06388915330171585, + -0.2429647445678711, + 0.23963864147663116, + -0.16668182611465454, + 0.0683295726776123, + 0.4971874952316284, + 1.0385788679122925, + 0.03854465112090111, + 0.03941720724105835, + 0.21417783200740814, + 0.38597187399864197, + -0.09179486334323883, + 0.552760124206543, + -0.04010072723031044, + 0.10596469044685364, + -0.5964903831481934, + -0.17570026218891144, + 0.29510101675987244, + -0.18222549557685852, + -0.019581113010644913, + 0.11264835298061371, + -0.5163235664367676, + -0.08186056464910507, + -0.04308043792843819, + -0.0706762969493866, + -0.06449370086193085, + -0.06417985260486603, + -0.35346025228500366, + -0.1961788833141327, + -0.09441918134689331, + 0.3526613712310791, + 0.22500920295715332, + -0.4726870656013489, + 0.061542246490716934, + -0.4119330644607544, + 0.2873426675796509, + -0.15697376430034637, + 0.35182052850723267, + -0.6527619361877441, + -0.1532505750656128, + -0.054986998438835144, + 0.41105520725250244, + -0.13906626403331757, + 0.38883933424949646, + -0.5821400880813599, + 0.3734094798564911, + -1.0448148250579834, + 0.4298494756221771, + -0.39665651321411133, + -0.07176262140274048, + 0.13338087499141693, + -0.31489431858062744, + -0.18905577063560486, + -0.14524400234222412, + -0.2010194957256317, + 0.1261492371559143, + 0.23573482036590576, + -0.05266151949763298, + -0.38756895065307617, + 0.12492731213569641, + 0.35179299116134644, + -0.03773616626858711, + 0.09697072207927704, + 0.5479185581207275, + 0.18838346004486084, + 0.3274446129798889, + 0.23734913766384125, + -0.02722056210041046, + -0.054755840450525284, + 0.11886454373598099, + -0.12266896665096283, + -0.1384297013282776, + 0.161537766456604, + -0.761415421962738, + 0.37395888566970825, + -0.42707058787345886, + 0.36531537771224976, + 0.06110997498035431, + -0.26408684253692627, + 0.2967233657836914, + -0.19824998080730438, + 0.6136056780815125, + 0.27285850048065186, + 0.29862624406814575, + -0.011159747838973999, + -0.024548253044486046, + 0.21122494339942932, + 0.09457345306873322, + 0.10175056010484695, + 0.06594739854335785, + 0.7179597616195679, + -0.01110917329788208, + -0.3569522500038147, + 0.4279901385307312, + 0.48021355271339417, + -0.2694565951824188, + -0.21224075555801392, + -0.308268278837204, + 0.42844143509864807, + -0.24511966109275818, + 0.21259364485740662, + -0.3697514832019806, + -0.043424755334854126, + -0.05905310809612274, + -0.38086453080177307, + -0.3473367691040039, + 0.15921151638031006, + -0.05796431750059128, + 0.2699328362941742, + 0.03210911527276039, + -0.02575201913714409, + 0.10015124827623367, + -0.002884969115257263, + -0.14942947030067444, + 0.39105209708213806, + 0.07500222325325012, + 0.05315347760915756, + -0.12542083859443665, + -0.10714974254369736, + 0.15708103775978088, + -0.2556368112564087, + 0.22970902919769287, + 0.06194652244448662, + -0.2518940269947052, + 0.3208627998828888, + -0.13072383403778076, + -0.2693944573402405, + 0.3611364960670471, + -0.2598130404949188, + 0.08037535846233368, + 0.40833598375320435, + -0.01877836138010025, + -0.2058374434709549, + 0.16923287510871887, + 0.1367325633764267, + 0.36646342277526855, + 0.1603759378194809, + -0.08565084636211395, + 0.0646357387304306, + -0.3898411989212036, + 0.1853102147579193, + -0.17935343086719513, + -0.23266300559043884, + -0.4827398657798767, + 0.10309761762619019, + -0.3433033525943756, + -0.45442917943000793, + 0.39718109369277954, + -0.26731157302856445, + -0.37817034125328064, + 0.08806334435939789, + -0.37901997566223145, + -0.1540694683790207, + -0.3616562485694885, + -0.04405656084418297, + 0.3439060151576996, + 0.08407457917928696, + 0.3910491466522217, + 0.10212787985801697, + -0.08659480512142181, + 0.3117385804653168, + -0.333120733499527, + -0.11873139441013336, + -0.6026166677474976, + -0.04835689812898636, + 0.062148481607437134, + -0.1711754947900772, + 0.09840314835309982, + 0.11082879453897476, + -0.23742681741714478, + 0.06786245107650757, + -0.31647801399230957, + -0.19622588157653809, + -0.023910991847515106, + -0.13018369674682617, + 0.11915049701929092, + -0.05102436989545822, + 0.20286479592323303, + -0.4145895838737488, + -0.2159293293952942, + -0.18466685712337494, + -0.08267883956432343, + 0.4090767502784729, + 0.08698087185621262, + 0.006754912436008453, + 0.042074598371982574, + 0.33291223645210266, + -0.5579440593719482, + -0.6386004090309143, + 0.31109756231307983, + -0.3491000533103943, + 0.2129950076341629, + -0.13249072432518005, + 0.044969648122787476, + 0.21786004304885864, + -0.04421959072351456, + 0.12104171514511108, + 0.3809080123901367, + 0.6028088927268982, + 0.1566525250673294, + -0.16568368673324585, + 0.013802223838865757, + 0.09627717733383179, + -0.2585511803627014, + -0.5455210208892822, + 0.27302756905555725, + -0.02025097981095314, + -0.049181561917066574, + 0.14202918112277985, + 0.22363193333148956, + 0.06122303009033203, + -0.620705783367157, + -0.28261101245880127, + 0.6921907067298889, + 0.30897653102874756, + -0.13095495104789734, + 0.038894593715667725, + 0.4885551333427429, + 0.8991434574127197, + -0.009793994948267937, + -0.291365385055542, + -0.10257536917924881, + -0.16745911538600922, + 0.03227055445313454, + -0.12566159665584564, + -0.07582367211580276, + 0.10948953032493591, + -0.08031299710273743, + -0.001496812328696251, + 0.4108771085739136, + -0.15172725915908813, + -0.05784371495246887, + -0.02844110131263733, + 0.1364196240901947, + 0.06890656799077988, + -0.11680963635444641, + 0.2506498396396637, + -0.15618166327476501, + -0.054282352328300476, + 0.42413458228111267, + 0.10210828483104706, + -0.2648021876811981, + 0.08565498143434525, + -0.033764369785785675, + -0.48039793968200684, + 0.2330085039138794, + -0.22540771961212158, + -0.008325126022100449, + 0.39025717973709106, + 0.27285251021385193, + -0.05252488702535629, + -0.3510001301765442, + 0.38376742601394653, + 0.1496220976114273, + -0.27632826566696167, + -0.04951301962137222, + -0.09913429617881775, + 0.30488088726997375, + 0.631233811378479, + -0.09893051534891129, + 0.1089312955737114, + 0.24199941754341125, + -0.24416682124137878, + -0.19544020295143127, + -0.26655149459838867, + 0.2474132478237152, + 0.1718858778476715, + -0.3719154894351959, + -0.33020997047424316, + -0.20296333730220795, + 0.03985932096838951, + 0.11994127929210663, + -0.07495333254337311, + -0.02049437165260315, + 0.14593741297721863, + 0.16189604997634888, + 0.045800335705280304, + 0.12791183590888977, + 0.326564222574234, + 0.003236999735236168, + 0.5016437768936157, + 0.2258920669555664, + 0.01206602156162262, + 0.33470162749290466, + -0.19271308183670044, + 0.4043158292770386, + -0.2838933765888214, + -0.35749551653862, + -0.538527250289917, + -0.08889419585466385, + -0.2864341735839844, + -0.28615501523017883, + -0.010489385575056076, + -0.07575643062591553, + 0.17564426362514496, + 0.07608307152986526, + 0.48627933859825134, + 0.009794964455068111, + 0.1841098815202713, + -0.04366019368171692, + 0.6244029998779297, + -0.16167888045310974, + -0.4052530825138092, + -0.063870370388031, + -0.12027913331985474, + 0.29339897632598877, + -0.3412780463695526, + 0.0588264986872673, + -0.27009958028793335, + 0.17919597029685974, + 0.05519658327102661, + -0.2299697995185852, + 0.07593603432178497, + 0.0883258581161499, + -0.32639840245246887, + -0.43230384588241577, + -0.14468176662921906, + -0.0749778226017952, + -0.1294681280851364, + -0.23553383350372314, + 0.3178693652153015, + -0.09061311930418015, + -0.4092266857624054, + 0.16582244634628296, + 0.34682923555374146, + 0.1729491502046585, + -0.23025527596473694, + 0.3614092767238617, + 0.21790695190429688, + -0.021757274866104126, + 0.4046781659126282, + 0.05970476567745209, + 0.1626666635274887, + 0.1065303161740303, + -0.30168160796165466, + -0.09333296120166779, + 0.14914584159851074, + -0.09425300359725952, + -0.11435939371585846, + 0.16802722215652466, + 0.2642260193824768, + 0.08727394044399261, + 0.03393847495317459, + -0.04223345220088959, + 0.36773890256881714, + -0.3864034116268158, + -0.13297900557518005, + 0.36009785532951355, + -0.012147553265094757, + 0.42051243782043457, + -0.10084855556488037, + -0.1897163689136505, + -0.24470281600952148, + -0.049613360315561295, + -0.4489327073097229, + 0.07644712924957275, + 0.1263904869556427, + -0.178648442029953, + -0.03095049224793911, + 0.13470639288425446, + 0.1260073482990265, + 0.041757576167583466, + 0.01994745433330536, + -0.13755130767822266, + 0.08040015399456024, + -0.09657196700572968, + -0.5184705853462219, + -0.12362444400787354, + -0.28989753127098083, + -0.2749548554420471, + -0.27657684683799744, + 0.5791579484939575, + 0.5074058771133423, + -0.012112069875001907, + 0.17525579035282135, + 0.3119511008262634, + -0.31834089756011963, + -0.40215161442756653, + 0.055731967091560364, + -0.22586989402770996, + 0.6671525835990906, + 0.2209540158510208, + -0.07704392820596695, + 0.2672621011734009, + -0.42997488379478455, + 0.2415170669555664, + 0.32834523916244507, + 0.2545469105243683, + 0.4324030578136444, + 0.1807575821876526, + 0.16531457006931305, + 0.36100420355796814, + 0.07665898650884628, + -0.11054617911577225, + 0.19383278489112854, + 0.1509379893541336, + 0.030697427690029144, + -0.17564183473587036, + -0.16074466705322266, + 0.3573829233646393, + -0.19920189678668976, + 0.14963418245315552, + 0.10469672828912735, + 0.36890360713005066, + -0.34243521094322205, + -0.27980664372444153, + -0.18977858126163483, + -0.1723836362361908, + -0.22977794706821442, + -0.42820295691490173, + -0.08907686918973923, + 0.1436065435409546, + -0.3256458044052124, + -0.1669732630252838, + 0.30642956495285034, + 0.20507147908210754, + 0.005221404135227203, + 0.08225717395544052, + -0.37379932403564453, + -0.5571432113647461, + 0.010994002223014832, + 0.37657272815704346, + -0.03790885582566261, + 0.03367568552494049, + 0.012041637673974037, + 0.2583402991294861, + 0.5642861127853394, + -0.025817930698394775, + -0.06156376749277115, + 0.14910782873630524, + 0.16975723206996918, + -0.17064417898654938, + 0.10496899485588074, + 0.13446302711963654, + 0.29122859239578247, + -0.35499557852745056, + 0.3588106334209442, + -0.19667434692382812, + -0.46284395456314087, + 0.21075014770030975, + -0.3207918703556061, + -0.22155973315238953, + -0.11284134536981583, + 0.3416803479194641, + -0.07862832397222519, + 0.1549348384141922, + -0.03136681765317917, + 0.3869834244251251, + 0.28592994809150696, + -0.21571967005729675, + 0.07544198632240295, + -0.5512031316757202, + -0.0831262394785881, + 0.09452097117900848, + -0.2396325170993805, + 0.26245662569999695, + -0.3114672899246216, + 0.09836481511592865, + 0.4103238880634308, + 0.11073215305805206, + -0.47187137603759766, + -0.11948524415493011, + 0.25153106451034546, + 0.5818403363227844, + -0.23519408702850342, + -10.624322891235352, + 0.3269426226615906, + -0.10612601041793823, + 0.5663678050041199, + -0.24464499950408936, + 0.054410211741924286, + -0.18822874128818512, + -0.04137904942035675, + 0.17587362229824066, + 0.14251935482025146, + -0.2159690260887146, + 0.0735001191496849, + 0.2995039224624634, + 0.20136715471744537, + -0.06461650133132935, + -0.06055999547243118, + -0.3397282660007477, + 0.17649340629577637, + -0.10585691779851913, + 0.19900238513946533, + 0.4080880284309387, + 0.3479374647140503, + -0.34579867124557495, + 0.2792208194732666, + 0.4169769883155823, + -0.027352549135684967, + -0.09177891910076141, + 0.5199663639068604, + 0.06642578542232513, + -0.5249855518341064, + 0.2795584797859192, + 0.3627331554889679, + -0.3978032171726227, + -0.13832318782806396, + 0.04615655913949013, + -0.28699690103530884, + -0.21132409572601318, + -0.0734855979681015, + 0.1872953325510025, + -0.13160070776939392, + 0.053637370467185974, + -0.1522308886051178, + -0.011019296944141388, + 0.32306039333343506, + -0.27195197343826294, + -0.3403381109237671, + -0.17368409037590027, + -1.365607738494873, + 0.08369521796703339, + 0.19283510744571686, + 0.6310447454452515, + 0.041605886071920395, + 0.24419787526130676, + 0.09205684065818787, + -0.5366196632385254, + 0.21821197867393494, + -0.2580485939979553, + 0.07115389406681061, + 0.115046925842762, + -0.03062622621655464, + 0.11101993918418884, + -0.2671927511692047, + 0.2203294038772583, + -0.3489294648170471, + -0.39218270778656006, + 0.1703496277332306, + -0.02976548671722412, + 0.12372875958681107, + -0.14152362942695618, + -0.19081178307533264, + -0.4518090784549713, + -0.23518306016921997, + 0.17599017918109894, + 0.03501726686954498, + 0.586920976638794, + 0.11076638847589493, + -0.5714520812034607, + 0.25582367181777954, + -0.18436233699321747, + 0.4676063656806946, + -0.06299997121095657, + -0.05208819359540939, + 0.19359460473060608, + -0.05745904520153999, + -0.2507920563220978, + -0.23874062299728394, + 0.07631932944059372, + 0.535283088684082, + -0.0944284051656723, + -0.14412008225917816, + -0.025682605803012848, + 0.08455034345388412, + -0.156453475356102, + -0.09735377132892609, + -0.3482015132904053, + 0.17394469678401947, + -0.039378225803375244, + -0.031299326568841934, + 0.24428421258926392, + -0.07980446517467499, + 0.08333620429039001, + -0.24537129700183868, + -0.040994755923748016, + -0.5321431159973145, + -0.2895621657371521, + 0.268131822347641, + 0.10504809021949768, + 0.20934893190860748, + 0.305605947971344, + -0.03405064716935158, + 0.1315060257911682, + 0.03873268514871597, + 0.4050140380859375, + 0.4234151244163513, + -0.0024965833872556686, + -0.04109934717416763, + -0.2073049247264862, + 0.06758096814155579, + -0.4309483766555786, + 0.3075910210609436, + 0.37183982133865356, + -0.08383186161518097, + 0.2955496907234192, + 0.673592209815979, + 0.013524891808629036, + -0.18675564229488373, + 1.0520776510238647, + -0.23066453635692596, + 0.38603878021240234, + -0.23045065999031067, + 0.08601401001214981, + -0.0899546667933464, + -0.37613940238952637, + 0.10109558701515198, + 0.37093549966812134, + -0.444868803024292, + 0.48763543367385864, + 0.24651949107646942, + -0.48051196336746216, + 0.11792043596506119, + -0.2830681800842285, + 0.5411341190338135, + 0.28397414088249207, + 0.06386232376098633, + -0.0657220259308815, + -0.4055522680282593, + -0.34404832124710083, + -0.039463505148887634, + -0.40856966376304626, + -0.28635311126708984, + -0.16637295484542847, + 0.07177391648292542, + 0.01624847576022148, + -0.25796133279800415, + 0.37799912691116333, + 0.26031213998794556, + -0.13751450181007385, + -0.026012562215328217, + -0.49111542105674744, + -0.1955745369195938, + -0.016181878745555878, + 0.6326929926872253, + -0.06577854603528976, + 0.023203007876873016, + -0.24850453436374664, + 0.2804742157459259, + 0.046271394938230515, + 0.114347904920578, + -0.04138768091797829, + 0.03587115556001663, + -0.4854556918144226, + 0.018099479377269745, + 0.13255001604557037, + -0.34410300850868225, + -0.2092023342847824, + -0.5434504151344299, + 0.145143061876297, + 0.004886884242296219, + -0.046003881841897964, + 0.28410542011260986, + 0.4002301096916199, + -0.038889329880476, + 0.06524410843849182, + -0.1687408834695816, + 0.2878727316856384, + 0.1818474531173706, + 0.06496036797761917, + 0.29990100860595703, + -0.2852131724357605, + -0.4669058918952942, + -0.26640433073043823, + 0.1884451061487198, + -0.24581380188465118, + -0.002498416230082512, + -0.11721546947956085, + 0.10980923473834991, + -0.2691681385040283, + -0.03705187886953354, + -0.2889508008956909, + 0.04113560914993286, + -0.2978129982948303, + 0.14899519085884094, + 0.38782137632369995, + -0.294838011264801, + -0.031150314956903458, + -0.1887759417295456, + 0.3242749571800232, + 0.17932859063148499, + -0.4782394468784332, + 0.3271951973438263, + -0.1264503002166748 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/graph_029.json b/src/benchmark/output/results/results_graph_029.json similarity index 99% rename from src/benchmark/output/results/graph_029.json rename to src/benchmark/output/results/results_graph_029.json index 282be01..7b6ab3d 100644 --- a/src/benchmark/output/results/graph_029.json +++ b/src/benchmark/output/results/results_graph_029.json @@ -3,13 +3,13 @@ "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 65-year-old woman with a history of palmoplantar pustulosis. She presented with a breast mass and a chest mass, which led to further investigation and diagnosis.\n\n**Initial Diagnosis (Step 1):**\nThe patient's initial presentation was characterized by a breast mass and a chest mass. Histopathological analysis of biopsy specimens from both the lung mass and the breast mass revealed small cell carcinoma (SCLC) in both lesions. Comprehensive staging, including contrast-enhanced MRI of the brain and FDG-PET, led to a diagnosis of stage cT2aN3M1c SCLC with multiple bone, peritoneal, and skin metastases.\n\n**Timeline of Diagnoses:**\n\n* **Step 1 (N1):** Patient presented with breast mass and chest mass.\n* **Step 2 (N2):** Histopathological analysis revealed small cell carcinoma in both lesions. Comprehensive staging confirmed stage cT2aN3M1c SCLC.\n\n**Treatment Initiation (Step 3):**\nThe patient initiated first-line treatment with carboplatin, etoposide, and durvalumab. Administration sequence: durvalumab, followed by ETP, and then CBDCA. During the first course of treatment, the patient experienced anaphylactic shock while receiving an ETP infusion on day 1.\n\n**Treatment Modification (Step 4):**\nDue to anaphylactic shock during etoposide infusion, treatment was switched to combination therapy with cisplatin (CDDP) and irinotecan (CPT-11).\n\n**Current Status:**\nThe patient is currently undergoing treatment with a modified regimen. The patient's condition is being closely monitored for any signs of disease progression or adverse reactions.\n\n**Outcomes:**\nWhile the patient has experienced anaphylactic shock during treatment, they are still receiving ongoing care and management. Further follow-up will be necessary to assess the effectiveness of the current treatment regimen and make any necessary adjustments.\n\nNote: The case report is based on the provided data and may not reflect the actual clinical scenario or outcomes.", "bertscore": { "precision": [ - 0.33418387174606323 + 0.5255064368247986 ], "recall": [ - 0.4088182747364044 + 0.6934730410575867 ], "f1": [ - 0.3677525520324707 + 0.5979174375534058 ] }, "topology": { diff --git a/src/benchmark/output/results/results_graph_031.json b/src/benchmark/output/results/results_graph_031.json new file mode 100644 index 0000000..c1f1346 --- /dev/null +++ b/src/benchmark/output/results/results_graph_031.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 73-year-old male with a history of situs inversus totalis (SIT), ex-smoking, mild chronic obstructive pulmonary disease, type 2 diabetes mellitus, dyslipidemia, peptic ulcer disease, gastroesophageal reflux disease, diverticulosis, and colonic polyps.\n\n**Initial Presentation:**\nThe patient presented with fatigue and weight loss. This was his initial presentation, but the exact onset date is unknown.\n\n**Imaging Findings:**\nA CT thorax, abdomen, and pelvis revealed a 20x20 mm nodule in the right upper lobe with a 7x4 mm central solid component, and an 8 mm ground glass opacity with a central solid dot in the right lower lobe. No lymphadenopathy was detected.\n\n**PET Scan Results:**\nA PET scan showed mild FDG uptake in the solid component of the nodule and some calcification in mediastinal lymph nodules, with no obvious nodal or distant metastasis.\n\n**Diagnosis:**\nThe patient was diagnosed with stage 1a (cT1cN0M0) lung adenocarcinoma.\n\n**Treatment:**\nThe patient underwent VATS right upper lobectomy and right lower lobe superior segmentectomy. A wedge resection of the lower lobe nodule was also performed, which confirmed adenocarcinoma with no lymph node involvement.\n\n**Histology Results:**\nHistology results revealed moderately differentiated adenocarcinoma pT1cN0 in the right upper lobe and moderately differentiated adenocarcinoma pT1aN0 in the right lower lobe with clear margins for both.\n\n**Post-Operative Care:**\nThe patient was discharged post-operative Day 9. Two weeks post-discharge, he was reviewed and planned for surveillance with his respiratory physician. A post-operative CT thorax, abdomen, pelvis was performed.\n\n**Outcome:**\nThe patient has been doing well since discharge. He is currently undergoing surveillance for any potential recurrence of the cancer. The patient's overall prognosis appears to be good given the stage of the disease at diagnosis and the successful surgical resection of the tumors.\n\nIn summary, this 73-year-old male patient presented with fatigue and weight loss due to a lung nodule discovered on CT thorax, abdomen, and pelvis. He was diagnosed with stage 1a (cT1cN0M0) lung adenocarcinoma and underwent successful surgical resection of the tumors. The patient has been doing well since discharge and is currently undergoing surveillance for any potential recurrence of the cancer.", + "bertscore": { + "precision": [ + 0.7101747393608093 + ], + "recall": [ + 0.6973774433135986 + ], + "f1": [ + 0.7037178874015808 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 9, + "edge_count": 8, + "avg_in_degree": 0.8888888888888888, + "density": 0.1111111111111111 + }, + "trajectory_embedding": [ + 0.3697826564311981, + 0.19609995186328888, + -0.1348923295736313, + 0.03747766464948654, + 0.12103570997714996, + 0.073272705078125, + 0.015903718769550323, + 0.2722088396549225, + 0.2596035897731781, + -0.4026437997817993, + -0.28131622076034546, + -0.03189341723918915, + -0.7069400548934937, + -0.026304425671696663, + -0.28115373849868774, + 0.34657856822013855, + -0.022818274796009064, + 0.41499125957489014, + 0.028753221035003662, + -0.30176809430122375, + -0.49341854453086853, + 0.1066407784819603, + -0.39469826221466064, + -0.075465127825737, + 0.3288094997406006, + -0.14417067170143127, + 0.42869219183921814, + 0.47333696484565735, + 0.2780090868473053, + 0.2511032223701477, + 0.10974785685539246, + 0.006162088830024004, + 0.21304868161678314, + 0.18376584351062775, + -0.4152108430862427, + 0.3690645396709442, + 0.2104286402463913, + 0.35462090373039246, + -0.10598008334636688, + 0.06962116807699203, + -0.13885270059108734, + 0.09608525782823563, + 0.7915133833885193, + 0.3106226325035095, + 0.5643410682678223, + -0.79161137342453, + 0.05989881977438927, + 0.4865630567073822, + -0.5408673286437988, + -0.3450809717178345, + 0.014920915476977825, + 0.7476895451545715, + 0.5345423221588135, + -0.1588098704814911, + 0.5071175694465637, + -0.16952362656593323, + -0.4304543137550354, + -0.09673159569501877, + -0.1853494495153427, + 0.030143283307552338, + 0.006896132603287697, + -0.1595173180103302, + 0.2974131405353546, + -0.13517862558364868, + -0.25843337178230286, + -0.1148691177368164, + -0.015452567487955093, + 0.17032665014266968, + -0.11313072592020035, + -0.4675641655921936, + -0.2277473658323288, + -0.1495341658592224, + 0.10225360840559006, + 0.1509607881307602, + 0.16223299503326416, + -0.23015539348125458, + 0.4384829103946686, + 0.1105680987238884, + 0.21523992717266083, + 0.21277518570423126, + 0.013331320136785507, + -0.25399333238601685, + 0.09425727277994156, + 0.30836930871009827, + -0.30080026388168335, + 0.06872282177209854, + -0.19270582497119904, + -0.19294553995132446, + -0.22429654002189636, + 0.18260528147220612, + 0.22292597591876984, + -0.2975671589374542, + -0.12205103039741516, + -0.15385442972183228, + 0.15382598340511322, + 0.21923142671585083, + 0.3041161894798279, + 0.3964725732803345, + 0.8807991743087769, + 0.01354086585342884, + 0.154620960354805, + 0.10139217972755432, + 0.2588009834289551, + 0.06887999176979065, + 0.452123761177063, + -0.1524965763092041, + 0.17381919920444489, + -0.49079883098602295, + 0.1634930968284607, + 0.47645384073257446, + 0.0257046427577734, + -0.013913831673562527, + -0.09975789487361908, + -0.2595967948436737, + 0.1118735745549202, + 0.135367751121521, + -0.047593872994184494, + 0.24855194985866547, + 0.1982676386833191, + -0.42636406421661377, + -0.19789528846740723, + 0.09132948517799377, + 0.3202555775642395, + 0.21789008378982544, + -0.46170881390571594, + -0.026089169085025787, + -0.22087202966213226, + -0.04839082062244415, + 0.07240244001150131, + 0.04677942767739296, + -0.5017255544662476, + -0.21070048213005066, + 0.04474000632762909, + 0.20990708470344543, + -0.06900618970394135, + 0.3617778420448303, + -0.4104064106941223, + -0.030865537002682686, + -1.1198902130126953, + 0.18648114800453186, + -0.404807448387146, + -0.07363586127758026, + -0.04891021549701691, + -0.3701968789100647, + -0.29994267225265503, + -0.1886274218559265, + -0.23561613261699677, + 0.2366444319486618, + -0.10943439602851868, + -0.14722387492656708, + -0.021298183128237724, + 0.12871962785720825, + 0.1497456133365631, + 0.3462465703487396, + 0.10042071342468262, + 0.17111992835998535, + -0.041005540639162064, + 0.22981469333171844, + 0.17135845124721527, + -0.16482731699943542, + 0.014616304077208042, + 0.2689073383808136, + 0.12932810187339783, + 0.07366572320461273, + -0.19483612477779388, + -0.6876255869865417, + 0.26886752247810364, + -0.2972082793712616, + 0.12204360961914062, + 0.1963283121585846, + -0.17396432161331177, + 0.0812365859746933, + -0.37885692715644836, + 0.4865362346172333, + 0.0995936393737793, + 0.24487775564193726, + 0.057142965495586395, + -0.1220589205622673, + -0.047600917518138885, + 0.2250843644142151, + 0.038691334426403046, + -0.16024558246135712, + 0.6678360104560852, + 0.23763884603977203, + -0.3317858576774597, + 0.08275309205055237, + 0.5023273825645447, + -0.03461580350995064, + -0.04279591515660286, + -0.07906942069530487, + 0.6798598766326904, + -0.3628486692905426, + 0.35476064682006836, + -0.5480861663818359, + -0.13933059573173523, + 0.173926442861557, + -0.1268218755722046, + -0.2631697356700897, + 0.12309087812900543, + -0.18449264764785767, + 0.0796835720539093, + 0.09406445920467377, + -0.40906843543052673, + 0.21131907403469086, + 0.1542060673236847, + -0.10647586733102798, + 0.28829875588417053, + 0.003166377544403076, + 0.06642863154411316, + -0.1738675981760025, + -0.25272136926651, + 0.25918614864349365, + -0.0876401960849762, + 0.25480931997299194, + 0.10384929925203323, + -0.29522502422332764, + 0.19021882116794586, + -0.12200101464986801, + -0.033454928547143936, + 0.14165470004081726, + -0.14576798677444458, + -0.16690288484096527, + 0.2550133168697357, + -0.04218902811408043, + -0.47100120782852173, + 0.08485686779022217, + 0.13086377084255219, + 0.33648252487182617, + 0.2094462513923645, + -0.19004136323928833, + 0.10917697846889496, + -0.3851611018180847, + 0.31429699063301086, + -0.0831984132528305, + -0.2862119674682617, + -0.2248259335756302, + 0.2360478788614273, + -0.1153235137462616, + -0.03244773671030998, + 0.4338131844997406, + -0.3013601005077362, + -0.16717660427093506, + 0.13908769190311432, + -0.2965276837348938, + -0.08178984373807907, + -0.2240011990070343, + 0.06272008270025253, + 0.29147112369537354, + 0.19646257162094116, + 0.17573793232440948, + 0.06264994293451309, + -0.2110782265663147, + 0.12087108194828033, + -0.278161883354187, + -0.36375921964645386, + -0.35102102160453796, + -0.08151581883430481, + -0.18229278922080994, + -0.5768169164657593, + 0.053561095148324966, + 0.01457303948700428, + -0.11168766021728516, + 0.11913781613111496, + -0.34440216422080994, + -0.11630577594041824, + 0.07615706324577332, + -0.010458771139383316, + 0.08163152635097504, + -0.21560309827327728, + 0.283636212348938, + -0.19528450071811676, + -0.2667553424835205, + -0.2961684763431549, + 0.054365918040275574, + 0.1612497866153717, + 0.0566960908472538, + -0.22777888178825378, + 0.1014561802148819, + 0.1512075811624527, + -0.47853660583496094, + -0.16776055097579956, + 0.1422044038772583, + -0.24532034993171692, + 0.16442079842090607, + -0.0743652805685997, + 0.15314476191997528, + 0.5133076310157776, + 0.07968214154243469, + 0.21654029190540314, + 0.39112842082977295, + 0.5559797286987305, + 0.028153071179986, + -0.0268121175467968, + 0.01654326356947422, + -0.11304739117622375, + -0.09591708332300186, + -0.4868406653404236, + 0.24561132490634918, + 0.1806669533252716, + 0.07237409055233002, + 0.005553593393415213, + 0.19746248424053192, + 0.07214467972517014, + -0.26365840435028076, + -0.003919541835784912, + 0.5629309415817261, + 0.25785601139068604, + 0.12197831273078918, + 0.18856053054332733, + 0.2906949818134308, + 0.32285845279693604, + -0.045042648911476135, + -0.10527695715427399, + 0.09205750375986099, + -0.1679009348154068, + -0.22533372044563293, + -0.0414116308093071, + 0.12850721180438995, + 0.3372979760169983, + -0.2069520652294159, + -0.10942669957876205, + 0.05569581314921379, + -0.16978605091571808, + -0.019144952297210693, + -0.08256767690181732, + -0.017157629132270813, + 0.007270080968737602, + -0.23025915026664734, + 0.15898452699184418, + -0.036597371101379395, + -0.16704393923282623, + 0.28797948360443115, + -0.3519660234451294, + -0.2639324963092804, + 0.33166834712028503, + -0.1131729781627655, + -0.4299337863922119, + 0.4460394084453583, + -0.1846965253353119, + 0.026455754414200783, + 0.35784217715263367, + -0.22514070570468903, + 0.041314058005809784, + -0.006925428751856089, + 0.2616634666919708, + -0.055290110409259796, + 0.05971350148320198, + -0.12333334982395172, + -0.09827305376529694, + 0.06603017449378967, + 0.6271012425422668, + 0.12050451338291168, + 0.0847301185131073, + 0.5108376145362854, + 0.19565506279468536, + -0.28178346157073975, + 0.032268740236759186, + -0.0968635156750679, + 0.31165340542793274, + -0.08788338303565979, + -0.09172070771455765, + -0.14769496023654938, + 0.26150524616241455, + 0.00858307909220457, + -0.33132460713386536, + -0.04353092610836029, + 0.05599501356482506, + -0.06829975545406342, + -0.009204136207699776, + 0.3380727767944336, + 0.2527041435241699, + -0.09022273123264313, + 0.5870925188064575, + -0.02195315808057785, + -0.0484466589987278, + 0.4092849791049957, + -0.24631285667419434, + 0.16258841753005981, + -0.04581856355071068, + -0.27127906680107117, + -0.36692750453948975, + 0.05404847115278244, + -0.2380269169807434, + -0.08009808510541916, + 0.0050226785242557526, + -0.02744632214307785, + 0.13696640729904175, + -0.1697227954864502, + 0.13261198997497559, + 0.02653009258210659, + 0.14808712899684906, + 0.08409467339515686, + 0.3072088062763214, + -0.09232619404792786, + -0.286288857460022, + 0.17954595386981964, + 0.06369107216596603, + 0.09335431456565857, + -0.1622895896434784, + -0.06356772780418396, + -0.18063616752624512, + 0.36914798617362976, + -0.07457288354635239, + -0.01797143928706646, + 0.12127768993377686, + -0.15831121802330017, + -0.22136421501636505, + -0.4062422513961792, + -0.0074943238869309425, + -0.1363530457019806, + -0.09721151739358902, + -0.018899494782090187, + 0.14755932986736298, + -0.15040451288223267, + -0.07477488368749619, + 0.05319446325302124, + 0.1285730004310608, + 0.3859412670135498, + -0.12196008116006851, + -0.12442295998334885, + 0.3023284375667572, + 0.141222283244133, + 0.27504852414131165, + -0.3276461362838745, + 0.2144664227962494, + 0.0781470239162445, + -0.17761099338531494, + -0.10660935193300247, + 0.04526242986321449, + -0.41993606090545654, + -0.11111334711313248, + 0.223979651927948, + 0.24687279760837555, + -0.09355781227350235, + -0.029234088957309723, + 0.17868539690971375, + 0.3505677282810211, + -0.3152255117893219, + -0.15962104499340057, + 0.24638541042804718, + 0.10381578654050827, + 0.33139118552207947, + -0.05232090502977371, + -0.39500436186790466, + -0.2516057789325714, + -0.08784255385398865, + -0.3178817331790924, + 0.23436444997787476, + 0.2935011386871338, + -0.05015670508146286, + -0.2211654782295227, + -0.015363761223852634, + -0.03306214511394501, + -0.16824477910995483, + 0.3149333894252777, + -0.1606009602546692, + 0.23665255308151245, + 0.03452126681804657, + -0.33757129311561584, + -0.13267451524734497, + -0.2164536565542221, + -0.2687220573425293, + -0.33655524253845215, + 0.30852052569389343, + 0.2962885797023773, + -0.22015228867530823, + 0.011474956758320332, + 0.127544105052948, + -0.2829132080078125, + -0.1305532157421112, + 0.14067868888378143, + -0.21961259841918945, + 0.4276374280452728, + -0.04614878445863724, + -0.3132982552051544, + 0.19720570743083954, + -0.128032386302948, + 0.08820375055074692, + 0.1767762154340744, + 0.10899746417999268, + 0.3704427480697632, + 0.13740913569927216, + 0.0432010143995285, + 0.5722969770431519, + 0.1315174400806427, + 0.021352823823690414, + 0.29296743869781494, + -0.05699295550584793, + 0.17972281575202942, + -0.2809816598892212, + -0.12354474514722824, + 0.37016671895980835, + -0.3919154703617096, + 0.049939218908548355, + 0.11978212743997574, + 0.19037456810474396, + -0.31362950801849365, + -0.3697395622730255, + 0.10934705287218094, + 0.06326592713594437, + -0.05997639149427414, + -0.1671193540096283, + -0.2805365324020386, + 0.10457703471183777, + -0.38927575945854187, + -0.013289873488247395, + 0.20404976606369019, + 0.43132284283638, + 0.11240509152412415, + 0.1850920468568802, + -0.2577589750289917, + -0.4615776836872101, + 0.16118377447128296, + 0.2580166757106781, + 0.1053452268242836, + 0.059493500739336014, + -0.19789452850818634, + 0.40720900893211365, + 0.36573272943496704, + 0.06970306485891342, + 0.09010861814022064, + 0.08398407697677612, + -0.06769707798957825, + 0.053998302668333054, + 0.09437353163957596, + -0.15221920609474182, + -0.02671043761074543, + -0.2869802713394165, + 0.1573699563741684, + -0.28224503993988037, + -0.24204403162002563, + 0.20191949605941772, + -0.25763627886772156, + -0.4137832224369049, + -0.2294294834136963, + 0.12207619100809097, + -0.16805914044380188, + -0.19716721773147583, + 0.3200203478336334, + 0.30526047945022583, + 0.04732832685112953, + -0.19835160672664642, + 0.07490584254264832, + -0.6314283013343811, + -0.46789830923080444, + 0.21697528660297394, + -0.04023648798465729, + -0.16160906851291656, + -0.037307847291231155, + 0.5300576686859131, + 0.5295775532722473, + 0.2020769864320755, + -0.4169057309627533, + -0.09204494953155518, + 0.3661491274833679, + 0.2549128830432892, + -0.21655143797397614, + -10.661651611328125, + -0.18448513746261597, + -0.27032437920570374, + 0.5609920024871826, + -0.36923301219940186, + 0.08443209528923035, + 0.222934752702713, + 0.015099819749593735, + 0.1783679723739624, + 0.07984213531017303, + -0.16619889438152313, + -0.1300245225429535, + 0.1491018384695053, + 0.32230082154273987, + 0.018557947129011154, + -0.21569649875164032, + -0.3123495578765869, + 0.09861168265342712, + -0.03183881938457489, + 0.09618925303220749, + 0.20904308557510376, + 0.36614087224006653, + -0.18992938101291656, + 0.3643651604652405, + 0.15157292783260345, + -0.2008931189775467, + -0.09050384163856506, + 0.5083619952201843, + 0.23062430322170258, + -0.420088529586792, + 0.26889216899871826, + 0.20210595428943634, + -0.10068056732416153, + 0.03269609436392784, + 0.02042694389820099, + -0.0509195551276207, + -0.1229524314403534, + 0.08551332354545593, + 0.3391815721988678, + -0.10198480635881424, + 0.096035897731781, + -0.2422686666250229, + 0.2294788360595703, + 0.19653598964214325, + -0.17017096281051636, + -0.40807655453681946, + -0.21238118410110474, + -1.5663397312164307, + 0.3868834376335144, + 0.22654989361763, + 0.2625182867050171, + 0.06963644921779633, + 0.2473987191915512, + 0.17078271508216858, + -0.38398703932762146, + 0.12305010855197906, + -0.22779427468776703, + 0.13590170443058014, + -0.010771185159683228, + -0.06551637500524521, + 0.09049993008375168, + -0.19770443439483643, + 0.4968249499797821, + -0.05854060873389244, + -0.18058878183364868, + 0.09751717001199722, + 0.03404564410448074, + -0.09314293414354324, + -0.2157525271177292, + -0.5735065937042236, + -0.48243311047554016, + -0.02728729136288166, + -0.1418277621269226, + -0.03040929324924946, + 0.42933765053749084, + -0.09354189783334732, + -0.44926345348358154, + 0.2609744668006897, + 0.04126746952533722, + 0.23501208424568176, + 0.20551574230194092, + -0.0031080294866114855, + 0.131047785282135, + -0.1312607228755951, + -0.19768232107162476, + -0.07466723769903183, + -0.025992387905716896, + 0.40222692489624023, + 0.00854059774428606, + -0.07001695781946182, + 0.03517581522464752, + 0.4622504413127899, + -0.13522356748580933, + -0.34945279359817505, + -0.3814668357372284, + 0.05581161752343178, + -0.030482010915875435, + 0.12512509524822235, + 0.020747952163219452, + -0.29198697209358215, + -0.16342060267925262, + -0.04457448422908783, + 0.05434617027640343, + -0.5794942378997803, + -0.3400299549102783, + 0.31448426842689514, + 0.03418111801147461, + 0.3196766674518585, + 0.025876127183437347, + -0.12685047090053558, + -0.10794440656900406, + -0.09137366712093353, + 0.3698883056640625, + 0.6778817176818848, + 0.34457525610923767, + -0.07404451072216034, + -0.042727094143629074, + -0.16562753915786743, + -0.2712450921535492, + 0.04909805208444595, + 0.41542065143585205, + -0.020283987745642662, + 0.23293539881706238, + 0.6158717274665833, + 0.041186749935150146, + -0.04701481759548187, + 1.0431015491485596, + -0.3643035590648651, + 0.17415982484817505, + -0.09588183462619781, + 0.08445242792367935, + -0.19100815057754517, + -0.35804712772369385, + 0.05261896550655365, + 0.5908573865890503, + -0.2958029508590698, + 0.6930728554725647, + 0.13267165422439575, + -0.44082382321357727, + -0.04386676102876663, + -0.25435906648635864, + 0.5988790988922119, + 0.2634618580341339, + 0.22310441732406616, + -0.07704561203718185, + -0.32553979754447937, + -0.324832946062088, + -0.1488925814628601, + -0.34300461411476135, + -0.4031631648540497, + -0.24860304594039917, + 0.12848740816116333, + 0.004983303602784872, + -0.26557403802871704, + 0.461078017950058, + 0.1794387698173523, + -0.20780491828918457, + -0.28017255663871765, + -0.4313103258609772, + 0.07057425379753113, + 0.27453720569610596, + 0.6395695209503174, + 0.12648865580558777, + 0.05585707724094391, + -0.12713000178337097, + 0.13493968546390533, + -0.20965589582920074, + 0.22707483172416687, + 0.008347688242793083, + -0.03802194818854332, + -0.6027443408966064, + 0.19536246359348297, + 0.20065119862556458, + -0.32646068930625916, + -0.24204999208450317, + -0.2438545972108841, + -0.023013750091195107, + 0.1704641729593277, + -0.07539540529251099, + 0.1288243532180786, + 0.3757937550544739, + -0.12607216835021973, + -0.03299457207322121, + -0.18554465472698212, + 0.04713656008243561, + 0.20602501928806305, + 0.2736959457397461, + 0.06762748956680298, + -0.2343052476644516, + -0.34182754158973694, + -0.5501744151115417, + 0.2666982412338257, + -0.24952292442321777, + -0.24963654577732086, + 0.14439696073532104, + 0.21281787753105164, + -0.3710671067237854, + 0.009524781256914139, + -0.17009711265563965, + -0.09047951549291611, + -0.17192065715789795, + 0.30960410833358765, + 0.45647627115249634, + -0.22552227973937988, + 0.23416072130203247, + -0.16011345386505127, + 0.18875974416732788, + 0.19740884006023407, + -0.16878022253513336, + 0.18544641137123108, + -0.22281882166862488 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_032.json b/src/benchmark/output/results/results_graph_032.json new file mode 100644 index 0000000..897bdfa --- /dev/null +++ b/src/benchmark/output/results/results_graph_032.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 69-year-old male who presented to the Affiliated Hospital of Traditional Chinese Medicine of Southwest Medical University (SWMU) with chest pain. He has a history of coronary heart disease (CHD), gastroesophageal reflux disease (GERD), and pulmonary emphysema.\n\n**Timeline of Diagnoses:**\n\n1. **Step 1:** The patient presented to the hospital with chest pain affecting the subxiphoid process and posterior back, which lasted for several minutes.\n2. **Step 2:** Medical history revealed CHD, GERD, and pulmonary emphysema.\n3. **Step 3:** Current medications included indobufen, clopidogrel bisulfate, metoprolol succinate sustained-release, rosuvastatin calcium, vonoprazan fumarate, and rebamipide. The patient had a history of smoking for 30 years but had abstained for 20 years.\n4. **Step 4:** Physical examination revealed a palpably enlarged lymph node on the left supraclavicular bone, approximately 1.5 x 1.5 cm in size, hard, with poor mobility, ill-defined margins, and no tenderness. Hyperresonance on percussion sounds and weakened respiratory sounds without rales were also noted.\n\n**Timeline of Treatments:**\n\n1. **Step 3:** The patient's medications, social history, and physical exam were reviewed.\n2. **Step 4:** Physical exam and chest CT were performed.\n\n**Outcome:**\nThe patient underwent a chest CT scan, which revealed a nodule in the anterior segment of the upper lobe of the right lung. Further evaluation is needed to determine the nature and significance of this finding.\n\n**Conclusion:**\nThis case highlights the importance of thorough medical history review, physical examination, and imaging studies in diagnosing and managing complex conditions. The patient's history of smoking and CHD increases his risk for lung cancer, making further evaluation necessary to determine the cause of the nodule found on the chest CT scan.", + "bertscore": { + "precision": [ + 0.6696982383728027 + ], + "recall": [ + 0.7013179659843445 + ], + "f1": [ + 0.6851434111595154 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 5, + "edge_count": 4, + "avg_in_degree": 0.8, + "density": 0.2 + }, + "trajectory_embedding": [ + 0.31901928782463074, + -0.06873661279678345, + -0.07510910928249359, + 0.041425421833992004, + 0.10403101146221161, + 0.06021340936422348, + -0.02724645473062992, + 0.03207524120807648, + 0.42073389887809753, + -0.23793715238571167, + -0.3827399015426636, + 0.14158771932125092, + -0.6148425936698914, + -0.06542666256427765, + -0.16255712509155273, + 0.10072606801986694, + 0.03369670733809471, + -0.07027815282344818, + 0.1752215176820755, + 0.049448203295469284, + -0.2770465314388275, + 0.108904168009758, + -0.5084561109542847, + -0.11419861018657684, + 0.24694745242595673, + -0.17120061814785004, + 0.14972566068172455, + 0.6505931615829468, + 0.11529241502285004, + 0.5213634371757507, + -0.07934305816888809, + 0.07920245826244354, + -0.09716421365737915, + 0.10104615986347198, + -0.032815515995025635, + 0.20294493436813354, + 0.23475214838981628, + 0.35452955961227417, + -0.10215995460748672, + 0.02972644940018654, + -0.04981912672519684, + -0.023525863885879517, + 0.654321014881134, + 0.4688377380371094, + 0.5302110910415649, + -0.8168509006500244, + 0.03447433561086655, + 0.41577282547950745, + -0.4940091371536255, + -0.22192540764808655, + 0.10138699412345886, + 0.7037989497184753, + 0.6147356033325195, + -0.14592483639717102, + 0.5111383199691772, + -0.2421257644891739, + -0.3584728240966797, + -0.3563183546066284, + -0.29119664430618286, + 0.13465511798858643, + -0.2746813893318176, + -0.19388455152511597, + 0.276691734790802, + -0.05982865393161774, + -0.18148016929626465, + -0.03530311584472656, + 0.010457666590809822, + -0.05750156566500664, + 0.026613272726535797, + -0.3903506398200989, + -0.16324354708194733, + -0.16182653605937958, + 0.02362862043082714, + 0.01981363259255886, + 0.29526814818382263, + -0.16013213992118835, + 0.4840637743473053, + -0.048243582248687744, + -0.024182239547371864, + 0.196221724152565, + -0.050333570688962936, + 0.0589381605386734, + 0.07026602327823639, + 0.3201891779899597, + -0.3432542383670807, + 0.05437317490577698, + -0.01878480240702629, + -0.14999747276306152, + -0.32727909088134766, + 0.2216576784849167, + -0.1523689180612564, + -0.21019330620765686, + 0.013487542048096657, + -0.23366421461105347, + 0.22888334095478058, + 0.025260623544454575, + 0.16538473963737488, + 0.3983873426914215, + 1.0130972862243652, + -0.079024538397789, + 0.07586605846881866, + 0.19555824995040894, + 0.3432677984237671, + -0.12984830141067505, + 0.3021513819694519, + 0.04468041658401489, + 0.11931052058935165, + -0.6490710377693176, + 0.10944951325654984, + 0.4019078016281128, + -0.15469597280025482, + -0.13398206233978271, + -0.031180569902062416, + -0.5864899754524231, + 0.15030793845653534, + -0.06635363399982452, + -0.040003806352615356, + -0.06883411854505539, + 0.21152912080287933, + -0.3724733889102936, + -0.1864021122455597, + 0.07131930440664291, + 0.519938588142395, + 0.29023781418800354, + -0.49585020542144775, + 0.28815993666648865, + -0.22854450345039368, + 0.17222079634666443, + -0.18495525419712067, + 0.3431716561317444, + -0.7004998922348022, + -0.21973738074302673, + -0.17415516078472137, + 0.24823875725269318, + -0.10326783359050751, + 0.39230456948280334, + -0.4226386547088623, + 0.1118808314204216, + -1.1151622533798218, + 0.13966596126556396, + -0.3700428307056427, + -0.17851392924785614, + 0.06638769805431366, + -0.42746955156326294, + -0.18691043555736542, + -0.08990904688835144, + 0.03466825187206268, + 0.11395705491304398, + -0.08982399106025696, + -0.18071740865707397, + -0.27829837799072266, + -0.14771707355976105, + 0.32573699951171875, + 0.38914981484413147, + 0.1881484091281891, + 0.1151764839887619, + 0.3587973117828369, + 0.2974035143852234, + 0.18427006900310516, + 0.12693241238594055, + -0.07832752168178558, + 0.3173922300338745, + 0.053240519016981125, + -0.008220195770263672, + -0.011868009343743324, + -0.7103482484817505, + 0.19825772941112518, + -0.12957699596881866, + -0.01669127866625786, + 0.15802323818206787, + -0.10869075357913971, + 0.10279081761837006, + -0.45850977301597595, + 0.7589498162269592, + 0.16491106152534485, + 0.31608113646507263, + 0.015894640237092972, + -0.039057657122612, + 0.2441076934337616, + 0.25736820697784424, + 0.08419553935527802, + -0.026218079030513763, + 0.7656631469726562, + 0.05106762796640396, + -0.1574293076992035, + 0.52489173412323, + 0.24616871774196625, + -0.15964049100875854, + -0.10285046696662903, + 0.013744410127401352, + 0.4713722765445709, + -0.33762165904045105, + 0.38645416498184204, + -0.1792205274105072, + 0.02810532972216606, + 0.11949269473552704, + -0.15384134650230408, + -0.14651963114738464, + 0.03717249631881714, + 0.06352432072162628, + 0.2992584705352783, + 0.055698130279779434, + -0.258513480424881, + 0.10029599070549011, + -0.020157072693109512, + -0.03132732957601547, + 0.12127048522233963, + -0.04693116992712021, + 0.16063626110553741, + 0.08789249509572983, + -0.07846181094646454, + 0.11184590309858322, + 0.07003507018089294, + 0.23305806517601013, + -0.010940074920654297, + -0.2513292729854584, + 0.26107895374298096, + -0.23792260885238647, + -0.340495228767395, + 0.28292253613471985, + -0.185163676738739, + -0.04762949422001839, + 0.10594487935304642, + -0.05557563528418541, + -0.40914273262023926, + 0.16932784020900726, + 0.16747762262821198, + 0.27084600925445557, + -0.03136235475540161, + -0.025791890919208527, + 0.04580962657928467, + -0.28170710802078247, + 0.1609799563884735, + -0.26000186800956726, + -0.11207186430692673, + -0.26210376620292664, + 0.19968774914741516, + -0.40408483147621155, + -0.08123278617858887, + 0.1677221953868866, + -0.2081177830696106, + -0.26320770382881165, + -0.07736864686012268, + -0.3725631535053253, + -0.2142876833677292, + -0.3320339322090149, + 0.18860489130020142, + 0.33505138754844666, + 0.04624999687075615, + 0.4258134663105011, + 0.18571767210960388, + -0.12123902142047882, + 0.140569806098938, + -0.21558043360710144, + -0.12647293508052826, + -0.36641034483909607, + -0.058049414306879044, + 0.107510507106781, + -0.42181748151779175, + 0.1989029049873352, + -0.024110890924930573, + -0.17287321388721466, + 0.028216924518346786, + -0.08817070722579956, + -0.09503797441720963, + 0.005002222955226898, + -0.02745657227933407, + 0.1171465516090393, + -0.23263797163963318, + 0.017676427960395813, + -0.4095528721809387, + -0.22244074940681458, + 0.02283354476094246, + -0.05719910189509392, + 0.022143319249153137, + -0.03825162351131439, + -0.1597229242324829, + 0.14725947380065918, + 0.17763853073120117, + -0.48516416549682617, + -0.44427207112312317, + 0.10257123410701752, + -0.25081267952919006, + 0.4184616506099701, + -0.03224286437034607, + 0.2632615268230438, + 0.1174570769071579, + -0.02164474129676819, + -0.0622304305434227, + 0.7388560771942139, + 0.6303247213363647, + -0.026959583163261414, + -0.12069745361804962, + -0.020328955724835396, + 0.19767534732818604, + -0.0192244965583086, + -0.3345752954483032, + 0.3846442699432373, + 0.036352336406707764, + 0.01976083777844906, + 0.2987860143184662, + 0.23754245042800903, + 0.10463308542966843, + -0.36536040902137756, + -0.06661426275968552, + 0.5003076791763306, + 0.11204751580953598, + -0.06361961364746094, + -0.0443720668554306, + 0.5218935608863831, + 0.4692184329032898, + -0.16687951982021332, + -0.01803606003522873, + 0.019774936139583588, + -0.12256016582250595, + -0.04645782709121704, + -0.09527778625488281, + 0.22914442420005798, + 0.26944583654403687, + -0.0707894116640091, + -0.10994279384613037, + 0.052737362682819366, + -0.0715610682964325, + -0.09134906530380249, + -0.2871793210506439, + -0.07128554582595825, + 0.09794594347476959, + 0.010591771453619003, + 0.3954714834690094, + -0.17577025294303894, + 0.014565298333764076, + 0.3707349896430969, + -0.2658890187740326, + -0.07103350758552551, + 0.05772377550601959, + -0.03818207606673241, + -0.3669252097606659, + 0.3240475654602051, + -0.11130612343549728, + 0.016438696533441544, + 0.3753241300582886, + 0.0589669793844223, + -0.30514559149742126, + -0.1969059705734253, + 0.310879111289978, + -0.2583921551704407, + -0.20053155720233917, + -0.0656154677271843, + 0.0874486118555069, + 0.23680388927459717, + 0.5353515148162842, + 0.2315962314605713, + 0.16554395854473114, + 0.5056072473526001, + -0.16681277751922607, + -0.42593732476234436, + -0.011260956525802612, + 0.25313758850097656, + 0.19494472444057465, + -0.16552063822746277, + -0.30942314863204956, + -0.24936050176620483, + 0.14644652605056763, + 0.10212776809930801, + -0.029376449063420296, + 0.09727105498313904, + 0.07646553963422775, + 0.07665490359067917, + -0.0021072812378406525, + 0.3371374011039734, + 0.1432780921459198, + 0.06273528188467026, + 0.47100958228111267, + 0.08163383603096008, + -0.1742517501115799, + 0.30541446805000305, + -0.2701675593852997, + 0.26579612493515015, + -0.3453294634819031, + -0.24930059909820557, + -0.6306203603744507, + -0.01980091817677021, + -0.19966378808021545, + -0.4072286784648895, + -0.11560195684432983, + 0.02076626941561699, + 0.15757298469543457, + -0.07391822338104248, + 0.4774482846260071, + -0.1462635099887848, + 0.19459116458892822, + 0.0862087532877922, + 0.4026694595813751, + -0.15973688662052155, + -0.3437710404396057, + 0.009544845670461655, + -0.2267424464225769, + 0.110325887799263, + -0.2685973048210144, + -0.19963884353637695, + -0.15972380340099335, + 0.4118453562259674, + -0.15173140168190002, + 0.07342594861984253, + -0.007890157401561737, + 0.16188852488994598, + -0.08706134557723999, + -0.2601938843727112, + -0.340481698513031, + -0.14193545281887054, + -0.09412144869565964, + -0.22537869215011597, + 0.28510770201683044, + -0.2375616878271103, + -0.3717593550682068, + 0.032163143157958984, + 0.24330969154834747, + 0.1416257619857788, + -0.03383931890130043, + 0.3946128487586975, + 0.2842866778373718, + 0.19652718305587769, + 0.561444103717804, + -0.11140774190425873, + 0.01464509405195713, + 0.19051522016525269, + -0.2727469503879547, + -0.06331340968608856, + 0.07671015709638596, + -0.24237670004367828, + -0.22224798798561096, + 0.015128547325730324, + 0.3326447606086731, + 0.07534894347190857, + 0.06966685503721237, + -0.07223950326442719, + 0.17058700323104858, + -0.37919026613235474, + -0.08889725804328918, + 0.5165823698043823, + 0.07086005806922913, + 0.17427489161491394, + -0.1508132368326187, + -0.4152414798736572, + -0.32862478494644165, + -0.006803622469305992, + -0.3045071065425873, + 0.01491498202085495, + 0.208179771900177, + -0.012339044362306595, + 0.02628909796476364, + 0.12644599378108978, + -0.037045639008283615, + 0.07971110939979553, + 0.04634493216872215, + -0.19514712691307068, + -0.0313543938100338, + -0.07575313746929169, + -0.3767734467983246, + -0.0790431797504425, + -0.29254603385925293, + -0.3508901596069336, + -0.2426689863204956, + 0.23144856095314026, + 0.44591692090034485, + -0.14910432696342468, + 0.14345920085906982, + 0.1253993809223175, + -0.11988916248083115, + -0.3234860301017761, + 0.10162901133298874, + -0.20588979125022888, + 0.6605067849159241, + 0.14283165335655212, + 0.015117891132831573, + 0.03932494297623634, + -0.4488176107406616, + 0.19515453279018402, + 0.1707046627998352, + 0.16789962351322174, + 0.5134960412979126, + 0.3043840825557709, + 0.1854054033756256, + 0.4214616119861603, + -0.011156835593283176, + -0.073067307472229, + 0.0846296176314354, + 0.04666614159941673, + 0.034580979496240616, + -0.16883990168571472, + -0.1929706633090973, + 0.33795231580734253, + -0.32053908705711365, + -0.036665432155132294, + 0.17124173045158386, + 0.33155956864356995, + -0.44450926780700684, + -0.41650378704071045, + -0.07482258975505829, + -0.026465918868780136, + -0.042577266693115234, + -0.26148051023483276, + -0.05456582084298134, + 0.012220002710819244, + -0.5269604325294495, + -0.1640678346157074, + 0.17817117273807526, + 0.3049543499946594, + 0.17062945663928986, + -0.11413580924272537, + -0.3721097409725189, + -0.4084639549255371, + 0.039624832570552826, + 0.3214341998100281, + -0.13019484281539917, + 0.12998466193675995, + -0.1746923327445984, + 0.19341854751110077, + 0.501987099647522, + -0.25541168451309204, + -0.017652183771133423, + -0.010129809379577637, + 0.1466699093580246, + 0.01835322380065918, + 0.1326807737350464, + 0.030926313251256943, + 0.09870509803295135, + -0.2377074956893921, + 0.22913426160812378, + -0.21471251547336578, + -0.2825811505317688, + 0.18834954500198364, + -0.19141212105751038, + -0.28168800473213196, + -0.092449851334095, + 0.35411906242370605, + -0.07519829273223877, + -0.06327962875366211, + -0.03811381012201309, + 0.23301729559898376, + 0.048592254519462585, + -0.2044372856616974, + 0.12385863810777664, + -0.603821337223053, + -0.2472725659608841, + 0.05841566249728203, + -0.10876090824604034, + 0.02708740159869194, + -0.28748613595962524, + 0.26106905937194824, + 0.5698463916778564, + 0.012055043131113052, + -0.24857690930366516, + 0.0795917734503746, + 0.19578179717063904, + 0.3489235043525696, + -0.3281130790710449, + -10.682265281677246, + 0.24149857461452484, + -0.1480393260717392, + 0.6273286938667297, + 0.049767836928367615, + 0.13487312197685242, + 0.026327304542064667, + 0.05004820227622986, + 0.15184684097766876, + 0.24111361801624298, + -0.3574290871620178, + -0.0856979638338089, + 0.5103734135627747, + 0.17785920202732086, + 0.21440613269805908, + -0.09351807087659836, + -0.2305673360824585, + 0.2536824643611908, + -0.1060873344540596, + 0.2289230227470398, + 0.22705882787704468, + 0.3493140935897827, + -0.2633153200149536, + 0.026194140315055847, + 0.1458483636379242, + -0.259848028421402, + -0.1468621790409088, + 0.6071839928627014, + 0.028506023809313774, + -0.245283305644989, + 0.29054737091064453, + 0.25279948115348816, + -0.4234558939933777, + 0.21744607388973236, + -0.0015877969563007355, + -0.1850726157426834, + -0.1644163727760315, + 0.19607970118522644, + 0.18486611545085907, + -0.2546703815460205, + 0.046555954962968826, + -0.10956630110740662, + 0.27232304215431213, + 0.1508713662624359, + -0.16051214933395386, + -0.48381662368774414, + -0.1898616999387741, + -1.4432456493377686, + 0.033755671232938766, + 0.38715770840644836, + 0.4506153464317322, + 0.13044360280036926, + 0.40230128169059753, + 0.26198381185531616, + -0.37118273973464966, + 0.009521722793579102, + -0.2983689308166504, + 0.051853545010089874, + 0.32260265946388245, + 0.035490233451128006, + 0.029804319143295288, + -0.20580467581748962, + 0.26335906982421875, + -0.35241734981536865, + -0.5159322023391724, + 0.26787441968917847, + 0.12397418916225433, + 0.0077542588114738464, + -0.2547406852245331, + -0.3756146728992462, + -0.6648401618003845, + -0.23516008257865906, + 0.021061405539512634, + 0.019538436084985733, + 0.4562411904335022, + 0.0303946640342474, + -0.46706196665763855, + 0.20491167902946472, + 0.02235298790037632, + 0.42361435294151306, + 0.1378675103187561, + 0.05528303608298302, + 0.17969520390033722, + -0.27261799573898315, + -0.13272902369499207, + -0.22804474830627441, + 0.10616742074489594, + 0.6176806688308716, + -0.05132167041301727, + -0.14003446698188782, + -0.01940801367163658, + 0.2884393334388733, + -0.025333035737276077, + -0.12371278554201126, + -0.536709725856781, + -0.06523390114307404, + -0.0724184662103653, + 0.004302803426980972, + 0.1308768391609192, + -0.12126916646957397, + -0.05126870796084404, + -0.24687057733535767, + -0.0827379822731018, + -0.6207190155982971, + -0.4931887686252594, + 0.35662826895713806, + 0.04287086799740791, + 0.13096216320991516, + 0.23947027325630188, + -0.08768056333065033, + -0.07405966520309448, + -0.04779602214694023, + 0.28993964195251465, + 0.5211508870124817, + 0.10819096118211746, + 0.004637554287910461, + 0.12184587121009827, + -0.16711540520191193, + -0.16388854384422302, + 0.13414832949638367, + 0.4492797255516052, + 0.04640644043684006, + 0.07777717709541321, + 0.5374441146850586, + 0.10666224360466003, + -0.10612273216247559, + 1.0860695838928223, + -0.34391623735427856, + 0.11400242149829865, + -0.11603549122810364, + 0.10602554678916931, + -0.15829141438007355, + -0.29849347472190857, + 0.20418284833431244, + 0.41964191198349, + -0.4592821002006531, + 0.666392982006073, + 0.40676671266555786, + -0.36509960889816284, + -0.0595320425927639, + -0.1884332299232483, + 0.45994633436203003, + 0.19988170266151428, + 0.1554863005876541, + -0.0015921173617243767, + -0.30445006489753723, + -0.3298501968383789, + -0.06287911534309387, + -0.4084981381893158, + -0.25363051891326904, + -0.30456113815307617, + 0.03184209764003754, + 0.01677740551531315, + -0.047190696001052856, + 0.30283045768737793, + 0.3425282835960388, + -0.0231991708278656, + -0.14314617216587067, + -0.4367408752441406, + -0.10428041219711304, + -0.010550908744335175, + 0.8412999510765076, + -0.21502359211444855, + -0.046728361397981644, + -0.10254352539777756, + 0.22620658576488495, + 0.05123516917228699, + 0.13363422453403473, + 0.023692796006798744, + 0.0521576926112175, + -0.2564888298511505, + 0.11777336895465851, + 0.18473951518535614, + -0.2053784728050232, + -0.11783100664615631, + -0.10538530349731445, + -0.0553748644888401, + -0.142478808760643, + -0.13517992198467255, + 0.11310669034719467, + 0.4653163552284241, + 0.054109275341033936, + 0.04067550599575043, + -0.2935832142829895, + 0.32030266523361206, + -0.06284045428037643, + 0.2936175465583801, + 0.20003129541873932, + -0.31804701685905457, + -0.34935110807418823, + -0.38812360167503357, + 0.13915327191352844, + -0.3112402558326721, + 0.07836087048053741, + 0.053346458822488785, + 0.1413704752922058, + -0.2203589826822281, + -0.11281829327344894, + -0.2894502282142639, + 0.030319860205054283, + -0.2802214026451111, + 0.23733386397361755, + 0.3179011046886444, + -0.340139240026474, + 0.1817266345024109, + -0.12433017790317535, + 0.3183010518550873, + 0.10920943319797516, + -0.3740755319595337, + 0.19223164021968842, + -0.22673405706882477 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_033.json b/src/benchmark/output/results/results_graph_033.json new file mode 100644 index 0000000..05c340d --- /dev/null +++ b/src/benchmark/output/results/results_graph_033.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 66-year-old woman with no history of smoking or other medical history.\n\n**Initial Presentation (Step 1):**\nOn February 13, 2025, the patient presented to our institution with an initial presentation and imaging. A chest CT scan revealed an 18 mm nodule in the S9 region of the right lower lobe, suspected to be primary lung cancer.\n\n**Diagnosis and Treatment Planning (Steps 2-4):**\nFollowing the initial presentation, a biopsy was performed to confirm the diagnosis (Step 2). The biopsy results confirmed lung adenocarcinoma. Further staging with PET/CT was conducted to determine the extent of disease (Step 3). Preoperative imaging revealed a bronchobiliary fistula communicating with the right main bronchus below the tracheal bifurcation.\n\n**Surgical Intervention (Steps 5-7):**\nPlanned surgical intervention, including robotic thoracoscopic surgery for lobectomy, lymph node dissection, and fistula repair, was performed on February 13, 2025. The surgical team successfully ligated the bronchobiliary fistula with an absorbable thread.\n\n**Postoperative Follow-up (Steps 8-10):**\nAfter surgery, the patient was discharged without postoperative complications. Pathology showed no lymph node metastases. Follow-up imaging revealed no recurrence of lung cancer but possible fistula opening. Further follow-up imaging confirmed air in the bronchobiliary fistula.\n\n**Recanalization of the Fistula (Step 11):**\nInterpretation of subsequent imaging revealed recanalization of the bronchobiliary fistula due to hydrolysis of the absorbable thread used during initial ligation.\n\n**Outcome:**\nThe patient was diagnosed with p-T1bN0M0 stage IA2. The patient has been discharged and is under follow-up care for potential recurrence or complications related to the bronchobiliary fistula.\n\nIn summary, this patient presented with a suspected primary lung cancer diagnosis, underwent surgical intervention, and experienced postoperative complications related to the bronchobiliary fistula. Despite initial successful treatment, recanalization of the fistula was observed due to thread hydrolysis.", + "bertscore": { + "precision": [ + 0.6585608720779419 + ], + "recall": [ + 0.6755024194717407 + ], + "f1": [ + 0.6669241189956665 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": true, + "all_nodes_have_timestamps": true, + "weakly_connected_components": 1, + "node_count": 11, + "edge_count": 10, + "avg_in_degree": 0.9090909090909091, + "density": 0.09090909090909091 + }, + "trajectory_embedding": [ + 0.2997225522994995, + 0.17090150713920593, + -0.10900215804576874, + 0.02509145811200142, + 0.055551812052726746, + 0.048874031752347946, + -0.12217725068330765, + 0.34865593910217285, + 0.3681047260761261, + -0.33607274293899536, + -0.27610263228416443, + -0.04256090894341469, + -0.6373363733291626, + -0.002124435966834426, + -0.21471427381038666, + 0.3575226068496704, + -0.061674728989601135, + 0.29316145181655884, + -0.007329100277274847, + -0.338481068611145, + -0.446434885263443, + 0.12736739218235016, + -0.3065786063671112, + 0.07943716645240784, + 0.3626073896884918, + -0.11427546292543411, + 0.36102163791656494, + 0.4706002175807953, + 0.22037635743618011, + 0.2718674838542938, + 0.060059431940317154, + -0.042913660407066345, + 0.2407301366329193, + 0.03398311510682106, + -0.3496033847332001, + 0.27658167481422424, + 0.14493563771247864, + 0.41827765107154846, + -0.045093927532434464, + 0.058754757046699524, + 0.05706401169300079, + 0.06269468367099762, + 0.825115442276001, + 0.24495695531368256, + 0.4410022497177124, + -0.8883432149887085, + 0.13839922845363617, + 0.4445591866970062, + -0.4529447853565216, + -0.5545081496238708, + 0.09837093949317932, + 0.7796363830566406, + 0.5804545879364014, + -0.20938435196876526, + 0.5586570501327515, + -0.23712429404258728, + -0.24355755746364594, + -0.2589998245239258, + -0.17659364640712738, + -0.042044684290885925, + -0.1180228739976883, + -0.21488572657108307, + 0.384295254945755, + -0.1141478568315506, + -0.20323939621448517, + -0.16567254066467285, + -0.1618223339319229, + 0.2501082420349121, + -0.03723547235131264, + -0.510745644569397, + -0.1330345720052719, + -0.15812087059020996, + -0.016478227451443672, + 0.10303426533937454, + 0.1648416370153427, + -0.16437667608261108, + 0.4974811375141144, + -0.0005599260330200195, + 0.1416080892086029, + 0.3203790485858917, + -0.010559063404798508, + -0.17594315111637115, + 0.12281337380409241, + 0.2599126994609833, + -0.4487256705760956, + 0.051504623144865036, + -0.11626743525266647, + -0.302840918302536, + -0.26622119545936584, + 0.13635225594043732, + 0.29047372937202454, + -0.3432757556438446, + -0.06275419145822525, + -0.10540363937616348, + 0.19814568758010864, + 0.15841127932071686, + 0.4304793179035187, + 0.3933051824569702, + 0.8821763396263123, + 0.046080708503723145, + 0.09296758472919464, + 0.001818250515498221, + 0.33799171447753906, + 0.07349147647619247, + 0.276917964220047, + -0.18578022718429565, + 0.12829576432704926, + -0.5147936940193176, + 0.26023104786872864, + 0.43757227063179016, + 0.05431811511516571, + -0.01662052795290947, + -0.02641577646136284, + -0.22275404632091522, + 0.14159198105335236, + 0.13909512758255005, + 0.11439693719148636, + 0.2605668902397156, + 0.27952930331230164, + -0.4976736903190613, + -0.2553514242172241, + 0.13805271685123444, + 0.3218674659729004, + 0.19029591977596283, + -0.5184631943702698, + -0.018461862578988075, + -0.24943633377552032, + -0.10028506070375443, + 0.02570153959095478, + 0.012677615508437157, + -0.5237783789634705, + -0.11341481655836105, + -0.04644379764795303, + 0.17582036554813385, + -0.08462519198656082, + 0.26098501682281494, + -0.4669886529445648, + -0.046165112406015396, + -1.0700637102127075, + 0.22184433043003082, + -0.41823017597198486, + -0.035347700119018555, + -0.01125851646065712, + -0.3584998846054077, + -0.27295148372650146, + -0.23526443541049957, + -0.17689284682273865, + 0.20921240746974945, + -0.1779661476612091, + -0.01564732939004898, + 0.10913726687431335, + 0.10447347164154053, + 0.15363074839115143, + 0.3657700717449188, + 0.06330116093158722, + 0.15791310369968414, + -0.05431688204407692, + 0.1156902015209198, + 0.10946392267942429, + -0.016019506379961967, + -0.00376247544772923, + 0.3615684509277344, + 0.20679372549057007, + -0.05814424902200699, + -0.24078063666820526, + -0.5549667477607727, + 0.3034473657608032, + -0.18883471190929413, + 0.11528627574443817, + 0.19273827970027924, + -0.202925905585289, + 0.17901606857776642, + -0.32511574029922485, + 0.4714984595775604, + 0.0956103727221489, + 0.21715469658374786, + 0.08760140091180801, + -0.18319348990917206, + -0.10207431763410568, + 0.18298916518688202, + 0.0011868301080539823, + -0.19538764655590057, + 0.692261278629303, + 0.1919974833726883, + -0.29421278834342957, + 0.22741574048995972, + 0.3984483778476715, + -0.07129312306642532, + -0.001349232392385602, + 0.014379683881998062, + 0.5546229481697083, + -0.30573752522468567, + 0.43848666548728943, + -0.4834362864494324, + 0.008964118547737598, + 0.2524825930595398, + -0.14177829027175903, + -0.3111468255519867, + 0.11775079369544983, + -0.22897912561893463, + 0.07090859860181808, + 0.026990197598934174, + -0.4522155523300171, + 0.10988258570432663, + 0.15222316980361938, + -0.08408534526824951, + 0.32288530468940735, + -0.025860965251922607, + 0.2060614973306656, + -0.08072224259376526, + -0.17987237870693207, + 0.2014206498861313, + -0.16527830064296722, + 0.07658617198467255, + 0.02237684838473797, + -0.4217027425765991, + 0.3149559199810028, + -0.051016341894865036, + 0.045372672379016876, + 0.3172542452812195, + -0.05839608609676361, + -0.1602560132741928, + 0.05615941062569618, + -0.12087183445692062, + -0.5456336140632629, + 0.13563162088394165, + 0.09638059884309769, + 0.2629709541797638, + 0.26091453433036804, + -0.09315735846757889, + 0.11738035827875137, + -0.33225521445274353, + 0.26871949434280396, + -0.11191404610872269, + -0.18731524050235748, + -0.27306878566741943, + 0.2604295611381531, + -0.25728437304496765, + 0.014559563249349594, + 0.338029682636261, + -0.2529425024986267, + -0.15784813463687897, + 0.10982272028923035, + -0.3312305212020874, + -0.07607387751340866, + -0.18536566197872162, + 0.03341001644730568, + 0.1244906410574913, + 0.16204039752483368, + 0.22826838493347168, + 0.040377177298069, + -0.13465271890163422, + 0.15283985435962677, + -0.2621614634990692, + -0.40681153535842896, + -0.39622271060943604, + -0.04939678683876991, + -0.15855292975902557, + -0.5634518265724182, + 0.0030023781582713127, + 0.016089333221316338, + -0.0094521539285779, + -0.0015017037512734532, + -0.39902397990226746, + -0.10759475827217102, + 0.1583576500415802, + -0.02309199422597885, + 0.003714547958225012, + -0.1170600950717926, + 0.34147173166275024, + -0.17942991852760315, + -0.3103298842906952, + -0.23220282793045044, + 0.02330954559147358, + 0.18461471796035767, + 0.027636373415589333, + -0.24720872938632965, + -0.049284759908914566, + 0.1747806817293167, + -0.35249775648117065, + -0.22448967397212982, + 0.2406281977891922, + -0.21447442471981049, + 0.2357436567544937, + 0.06559675186872482, + 0.23464559018611908, + 0.3464064300060272, + 0.1277618557214737, + 0.2224847376346588, + 0.41434571146965027, + 0.4918871819972992, + 0.046534132212400436, + 0.0029910721350461245, + 0.02384844236075878, + -0.07515298575162888, + -0.07504881173372269, + -0.3333078622817993, + 0.33484938740730286, + 0.14666186273097992, + -0.011626636609435081, + -0.14931516349315643, + 0.27606865763664246, + 0.047426510602235794, + -0.35144755244255066, + 0.03155578672885895, + 0.6447765827178955, + 0.18663915991783142, + 0.10503526031970978, + 0.17239266633987427, + 0.3973771035671234, + 0.2972050905227661, + -0.10547533631324768, + -0.07397616654634476, + 0.11127133667469025, + -0.06647476553916931, + -0.2679343521595001, + -0.0674225389957428, + 0.23409156501293182, + 0.36988934874534607, + -0.26490601897239685, + -0.2123458981513977, + 0.08254454284906387, + -0.09218213707208633, + 0.027889365330338478, + -0.022257236763834953, + 0.058834612369537354, + 0.17198365926742554, + -0.2773451805114746, + 0.17218166589736938, + -0.03221498802304268, + -0.07179928570985794, + 0.39186403155326843, + -0.44597816467285156, + -0.19246569275856018, + 0.2693040668964386, + -0.31082916259765625, + -0.4523104429244995, + 0.3688596487045288, + -0.14703033864498138, + -0.011421114206314087, + 0.43818503618240356, + -0.1925327181816101, + 0.048756781965494156, + -0.07173275947570801, + 0.38047030568122864, + -0.0883413553237915, + 0.03746939077973366, + -0.14616459608078003, + 0.023532487452030182, + 0.12558074295520782, + 0.705162525177002, + 0.10967635363340378, + 0.1790972799062729, + 0.7122183442115784, + 0.33635759353637695, + -0.32552069425582886, + 0.020781302824616432, + -0.023438220843672752, + 0.41091424226760864, + -0.0605277419090271, + -0.12584322690963745, + -0.21313773095607758, + 0.09949696809053421, + 0.12283234298229218, + -0.16945210099220276, + -0.09053666144609451, + 0.22270208597183228, + 0.11872243881225586, + -0.06659874320030212, + 0.22076568007469177, + 0.14393197000026703, + -0.0366511195898056, + 0.5519142150878906, + -0.01133953407406807, + -0.05534100532531738, + 0.4552401602268219, + -0.37855222821235657, + 0.15171478688716888, + -0.0128722433000803, + -0.13833679258823395, + -0.3374013900756836, + 0.10086435824632645, + -0.19964461028575897, + -0.1313105970621109, + 0.005349848885089159, + -0.01551737543195486, + 0.151595339179039, + -0.20990648865699768, + 0.15902625024318695, + -0.014792162925004959, + 0.2314709722995758, + 0.07963289320468903, + 0.33777371048927307, + -0.012659451924264431, + -0.26802298426628113, + 0.15994176268577576, + -0.034493766725063324, + 0.07662896811962128, + -0.1596756875514984, + 0.01686912029981613, + -0.11103271692991257, + 0.5120946168899536, + 0.020111005753278732, + -0.06793037056922913, + 0.14226040244102478, + -0.07784996181726456, + -0.12951989471912384, + -0.3915475606918335, + -0.10702328383922577, + -0.10917985439300537, + -0.08030633628368378, + 0.06679794192314148, + 0.096513532102108, + -0.36836376786231995, + -0.13380640745162964, + -0.05202993378043175, + -0.03581785038113594, + 0.4412965476512909, + -0.1562989503145218, + -0.137541264295578, + 0.2399810254573822, + 0.1158212348818779, + 0.33506643772125244, + -0.3977501690387726, + 0.19513936340808868, + 0.07610291987657547, + -0.022276312112808228, + -0.1391570121049881, + 0.04632958397269249, + -0.43261298537254333, + -0.08430971205234528, + 0.22112326323986053, + 0.28513386845588684, + 0.07183095812797546, + 0.03921131044626236, + 0.13149286806583405, + 0.3169865608215332, + -0.39125317335128784, + 0.014617369510233402, + 0.26788008213043213, + 0.2254611849784851, + 0.3219054043292999, + -0.08285977691411972, + -0.29552480578422546, + -0.2527967095375061, + -0.07475844025611877, + -0.43570318818092346, + 0.28818535804748535, + 0.3357337713241577, + -0.0945499911904335, + -0.24876126646995544, + -0.09366600215435028, + -0.05640077590942383, + -0.18710023164749146, + 0.3195178210735321, + -0.18357215821743011, + 0.1530047506093979, + 0.0061488221399486065, + -0.29145973920822144, + -0.12983649969100952, + -0.0658794492483139, + -0.36496400833129883, + -0.43772536516189575, + 0.4082850515842438, + 0.3117547631263733, + -0.3094722032546997, + -0.006013867445290089, + 0.09305071830749512, + -0.24640005826950073, + -0.15627449750900269, + 0.10089605301618576, + -0.24185733497142792, + 0.48139849305152893, + -0.019655970856547356, + -0.24491997063159943, + 0.048342905938625336, + -0.10615459084510803, + 0.07299508899450302, + 0.17103733122348785, + 0.07051429152488708, + 0.5131105184555054, + 0.2119724601507187, + -0.0025714675430208445, + 0.5169672966003418, + 0.10118421912193298, + 0.009528460912406445, + 0.36977022886276245, + 0.003227691864594817, + 0.1846330612897873, + -0.2613828480243683, + -0.16661396622657776, + 0.29785048961639404, + -0.3860602080821991, + 0.06312645226716995, + 0.24486437439918518, + 0.16324564814567566, + -0.2989039123058319, + -0.2119496762752533, + 0.1391337364912033, + -0.005472011398524046, + -0.00867170188575983, + -0.11946684867143631, + -0.26622438430786133, + -0.08857852220535278, + -0.42394936084747314, + -0.004486138001084328, + 0.3332582116127014, + 0.5578845739364624, + 0.1002531573176384, + 0.2562064230442047, + -0.2969885468482971, + -0.43189704418182373, + 0.12109637260437012, + 0.1750391572713852, + 0.03045092336833477, + -0.0020621309522539377, + -0.20395714044570923, + 0.44905540347099304, + 0.4649224281311035, + 0.03747037798166275, + 0.09811275452375412, + 0.08403230458498001, + -0.04583323001861572, + 0.11168564110994339, + 0.01999879628419876, + -0.27097007632255554, + -0.03904890641570091, + -0.4011135995388031, + 0.16690851747989655, + -0.278456449508667, + -0.13861416280269623, + 0.246538445353508, + -0.18596701323986053, + -0.45073139667510986, + -0.32809218764305115, + 0.2822127640247345, + -0.2004898190498352, + -0.2759394645690918, + 0.20343376696109772, + 0.3746183514595032, + -0.02776939980685711, + -0.2617757022380829, + -0.05537048727273941, + -0.4704679548740387, + -0.3349171578884125, + 0.16396164894104004, + -0.025446008890867233, + -0.1499261111021042, + -0.029335184022784233, + 0.3566302955150604, + 0.573430597782135, + 0.19493108987808228, + -0.3237588703632355, + -0.12970437109470367, + 0.3151785135269165, + 0.1721557080745697, + -0.107560895383358, + -10.693236351013184, + -0.2694595158100128, + -0.2752366364002228, + 0.47404682636260986, + -0.2533549666404724, + 0.035995543003082275, + 0.3046395182609558, + -0.006059073377400637, + 0.20956355333328247, + 0.018966086208820343, + -0.27400732040405273, + -0.052737269550561905, + 0.23172660171985626, + 0.2946239411830902, + -0.003580165095627308, + -0.2171463519334793, + -0.295930415391922, + 0.13473321497440338, + 0.027279186993837357, + 0.11601874977350235, + 0.20378398895263672, + 0.30750221014022827, + -0.23918098211288452, + 0.3185611963272095, + 0.057022880762815475, + -0.4172568619251251, + -0.2487625628709793, + 0.5459169149398804, + 0.3092145323753357, + -0.3010522723197937, + 0.24522241950035095, + 0.23370812833309174, + -0.21174941956996918, + 0.12697261571884155, + 0.06490892171859741, + -0.04187906160950661, + -0.026336902752518654, + 0.1653374582529068, + 0.24631716310977936, + -0.030459724366664886, + 0.07943648844957352, + -0.2388458102941513, + 0.3200909197330475, + 0.31448519229888916, + -0.17489828169345856, + -0.36431849002838135, + -0.2230379581451416, + -1.5891869068145752, + 0.2805584669113159, + 0.3274981677532196, + 0.28881293535232544, + 0.08258548378944397, + 0.2648078203201294, + 0.1418108344078064, + -0.39738988876342773, + 0.05250029265880585, + -0.2547436058521271, + -0.0010083832312375307, + 0.001935625565238297, + 0.041414275765419006, + 0.0805279091000557, + -0.13530994951725006, + 0.5083628296852112, + -0.0015548460651189089, + -0.20925618708133698, + 0.15884575247764587, + -0.02191568911075592, + -0.0867772102355957, + -0.25979018211364746, + -0.5716881155967712, + -0.552763044834137, + 0.06132373586297035, + -0.005505269393324852, + -0.06055488809943199, + 0.4020821750164032, + -0.15663345158100128, + -0.4087689518928528, + 0.26854249835014343, + -0.02506018802523613, + 0.3296263515949249, + 0.13085484504699707, + 0.04221518337726593, + 0.0662723034620285, + -0.014447418041527271, + -0.24978452920913696, + -0.05940668657422066, + 0.15609832108020782, + 0.5100307464599609, + -0.021021589636802673, + 0.014885815791785717, + -0.004596708808094263, + 0.4106135070323944, + -0.1551225334405899, + -0.3008715510368347, + -0.4451250731945038, + 0.10635356605052948, + -0.029526298865675926, + 0.0949481949210167, + 0.0015926604392006993, + -0.2449842095375061, + -0.18031080067157745, + -0.03594546392560005, + -0.01180313155055046, + -0.5062963962554932, + -0.3755844831466675, + 0.27855756878852844, + 0.01596592739224434, + 0.38701391220092773, + -0.05055608972907066, + -0.11070921272039413, + -0.2869168519973755, + -0.0658712312579155, + 0.19688352942466736, + 0.6834115982055664, + 0.2693687677383423, + -0.16031862795352936, + 0.06435371190309525, + -0.23401302099227905, + -0.2715247869491577, + -0.1330697238445282, + 0.4132518470287323, + -0.09390867501497269, + 0.06777747720479965, + 0.6371964812278748, + 0.00781968329101801, + -0.13410110771656036, + 0.9845170378684998, + -0.28020086884498596, + 0.0947791263461113, + -0.26534977555274963, + 0.2895837426185608, + -0.2596656084060669, + -0.49054718017578125, + 0.09178698807954788, + 0.5611507892608643, + -0.3578782081604004, + 0.807757556438446, + 0.1288566142320633, + -0.44504210352897644, + 0.09009426087141037, + -0.28877949714660645, + 0.4583364427089691, + 0.2390129715204239, + 0.2374929040670395, + -0.12717896699905396, + -0.18473348021507263, + -0.1979197859764099, + -0.13705287873744965, + -0.35424187779426575, + -0.39350655674934387, + -0.30722731351852417, + 0.14513184130191803, + 0.14779119193553925, + -0.35405290126800537, + 0.41243085265159607, + 0.2103242725133896, + -0.2903916537761688, + -0.2843779921531677, + -0.48720598220825195, + -0.013453599065542221, + 0.3806743919849396, + 0.8109135031700134, + 0.05305461585521698, + -0.03595462813973427, + -0.10473506152629852, + 0.07926826179027557, + -0.1948712021112442, + 0.16459833085536957, + 0.08201012015342712, + -0.0015237462939694524, + -0.551294207572937, + 0.20163984596729279, + 0.2563650906085968, + -0.31874924898147583, + -0.24696913361549377, + -0.18018513917922974, + -0.14027398824691772, + 0.10167369246482849, + -0.17537502944469452, + 0.020219601690769196, + 0.3543131649494171, + -0.16741299629211426, + -0.009683135896921158, + -0.19856251776218414, + -0.05643867328763008, + 0.14254766702651978, + 0.3738085627555847, + 0.014908242970705032, + -0.34483635425567627, + -0.28751257061958313, + -0.6223263144493103, + 0.20732878148555756, + -0.354229599237442, + -0.09976624697446823, + 0.0010391175746917725, + 0.2528060972690582, + -0.3753974139690399, + 0.0704156681895256, + -0.17204946279525757, + -0.0981154665350914, + -0.20122060179710388, + 0.243259996175766, + 0.47789326310157776, + -0.3276210427284241, + 0.21513815224170685, + -0.1918114721775055, + 0.11960604041814804, + 0.07547300308942795, + -0.11973462253808975, + 0.26870232820510864, + -0.27581968903541565 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_034.json b/src/benchmark/output/results/results_graph_034.json new file mode 100644 index 0000000..367a715 --- /dev/null +++ b/src/benchmark/output/results/results_graph_034.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 60-year-old female who presented with worsening cough and fever in December 2021. Her demographic information is not explicitly mentioned in the provided data, but based on the clinical presentation, it can be inferred that she is likely an adult female.\n\n**Timeline of Diagnoses:**\n\n1. **December 2021:** The patient presented with worsening cough and fever, which led to a CT scan revealing a large right pulmonary upper lobe mass.\n2. **Postoperative histologic examination (date not specified):** After surgical resection of the lung mass, the patient was diagnosed with inflammatory myofibroblastic tumor (IMT) with positive surgical margins and pleural invasion.\n3. **Three months post-surgery (March 2022):** The patient presented with fever, cough, and weight loss, which confirmed locally recurrent disease and metastatic spread to the ileum, right supraclavicular fossa, and soft tissue of the right thigh.\n4. **Ileal metastasis removal for symptomatic relief (March 2022):** The patient underwent surgical removal of the ileal metastasis for symptomatic relief.\n5. **February 2023:** Analysis of the primary (treatment-naive) tumor from the right upper lobe (RUL) lung revealed enlarged nuclei, infiltrating lymphocytes and plasma cells visible on H&E staining. ALK immunohistochemical staining was positive.\n6. **June 2023:** A needle biopsy from the right supraclavicular fossa mass showed metastasis. Metastasectomy of the right apical lung showed visible necrosis post-alectinib treatment.\n\n**Timeline of Treatments:**\n\n1. **Surgical resection (date not specified):** The patient underwent surgical resection of the lung mass.\n2. **Ileal metastasis removal for symptomatic relief (March 2022):** The patient underwent surgical removal of the ileal metastasis for symptomatic relief.\n3. **Alectinib treatment (June 2023):** The patient received alectinib treatment, which showed visible necrosis.\n\n**Outcomes:**\n\n1. **Locally recurrent disease and metastatic spread:** The patient's condition worsened over time, with locally recurrent disease and metastatic spread to multiple sites.\n2. **Symptomatic relief:** Surgical removal of the ileal metastasis provided symptomatic relief for the patient.\n3. **ALK positivity:** The primary tumor was positive for ALK, which is a biomarker for anaplastic lymphoma kinase-positive tumors.\n\n**Conclusion:**\nThe patient's clinical course was marked by worsening symptoms and progression of disease over time. Despite surgical interventions and targeted therapies, the patient's condition continued to deteriorate. Further treatment options should be considered to improve the patient's prognosis.", + "bertscore": { + "precision": [ + 0.6936006546020508 + ], + "recall": [ + 0.6804064512252808 + ], + "f1": [ + 0.6869401931762695 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 8, + "edge_count": 7, + "avg_in_degree": 0.875, + "density": 0.125 + }, + "trajectory_embedding": [ + 0.24237029254436493, + 0.2363709807395935, + -0.13420656323432922, + 0.003546524792909622, + -0.0821806862950325, + 0.164741650223732, + 0.14038313925266266, + 0.17643733322620392, + 0.3006155490875244, + -0.43382182717323303, + -0.11638984084129333, + 0.14135542511940002, + -0.6119062304496765, + -0.12884022295475006, + -0.33409583568573, + 0.2769036889076233, + -0.1681082397699356, + 0.46048834919929504, + -0.172684907913208, + -0.15695005655288696, + -0.3954640030860901, + 0.17023928463459015, + -0.23225252330303192, + -0.027941163629293442, + 0.2199840545654297, + 0.012671729549765587, + 0.34993237257003784, + 0.3461514711380005, + 0.17673557996749878, + 0.37119433283805847, + 0.294079452753067, + 0.13907021284103394, + -0.06374695897102356, + -0.021210025995969772, + -0.2489638775587082, + 0.39103636145591736, + 0.27643275260925293, + 0.2447320520877838, + -0.10294844210147858, + -0.0018316511996090412, + 0.013656050898134708, + 0.20587672293186188, + 0.7822971343994141, + 0.21609586477279663, + 0.5209213495254517, + -0.716457724571228, + 0.05496058613061905, + 0.34897562861442566, + -0.4143941104412079, + -0.1348949670791626, + 0.12508118152618408, + 0.7785993814468384, + 0.5179581046104431, + -0.0018606185913085938, + 0.3762286603450775, + -0.22046443819999695, + -0.24983245134353638, + -0.15333715081214905, + -0.24139100313186646, + 0.15119819343090057, + 0.00486432109028101, + -0.06198757514357567, + 0.20785704255104065, + -0.12337975949048996, + -0.30828431248664856, + -0.1508456915616989, + -0.10622470825910568, + 0.11199989914894104, + -0.035388145595788956, + -0.33002543449401855, + -0.3235487639904022, + -0.1460617035627365, + -0.029551275074481964, + 0.1447633057832718, + 0.07711298763751984, + -0.10315606743097305, + 0.33821481466293335, + 0.12644821405410767, + 0.24694742262363434, + 0.13258130848407745, + -0.03752598538994789, + -0.06229719519615173, + -0.0543103888630867, + 0.1959184855222702, + -0.3900566101074219, + 0.07127948850393295, + -0.05283515527844429, + -0.015468493103981018, + -0.28103917837142944, + 0.11538907885551453, + 0.1993100941181183, + -0.33345329761505127, + -0.004853101447224617, + -0.138612300157547, + 0.04812413081526756, + 0.20100556313991547, + 0.3035227060317993, + 0.26518917083740234, + 0.9399998784065247, + 0.07394137978553772, + 0.17247119545936584, + 0.04488483443856239, + 0.18229952454566956, + 0.0560210756957531, + 0.3287569582462311, + -0.2369658201932907, + 0.3447822630405426, + -0.49539950489997864, + 0.2408488392829895, + 0.5724201202392578, + 0.08703374117612839, + -0.03615448251366615, + -0.07711422443389893, + -0.3011609613895416, + 0.1183524802327156, + 0.09242668747901917, + -0.07413643598556519, + 0.24499230086803436, + 0.16020886600017548, + -0.3189999759197235, + -0.0027941949665546417, + 0.020141590386629105, + 0.19155605137348175, + 0.18997913599014282, + -0.31579262018203735, + -0.12006382644176483, + -0.07265349477529526, + -0.020666765049099922, + 0.1156330406665802, + -0.016241589561104774, + -0.42247119545936584, + -0.15896739065647125, + -0.02509208954870701, + 0.12791822850704193, + -0.06133519858121872, + 0.29880964756011963, + -0.31640058755874634, + 0.006498439237475395, + -1.05268132686615, + 0.18605738878250122, + -0.24223224818706512, + -0.13570016622543335, + -0.05157841369509697, + -0.3352285325527191, + -0.23686817288398743, + -0.09409252554178238, + -0.12358324229717255, + 0.24573202431201935, + -0.057409606873989105, + 0.11419151723384857, + -0.03792278468608856, + 0.036405399441719055, + 0.1392202526330948, + 0.29047903418540955, + -0.03503396734595299, + 0.04856614023447037, + 0.09708697348833084, + 0.20540443062782288, + 0.10289180278778076, + -0.029000885784626007, + 0.001958312466740608, + 0.2645643353462219, + 0.05017825961112976, + -0.004631936550140381, + -0.19374041259288788, + -0.5717155933380127, + 0.16042672097682953, + -0.2563199996948242, + 0.3045199513435364, + 0.0358748696744442, + -0.13118664920330048, + 0.08229291439056396, + -0.2474469542503357, + 0.4049350917339325, + 0.2994776964187622, + 0.23898763954639435, + 0.029474124312400818, + -0.08680585026741028, + -0.1279851794242859, + 0.17757242918014526, + -0.06529698520898819, + 0.004023615270853043, + 0.5241823792457581, + 0.18787503242492676, + -0.3260097801685333, + 0.07609173655509949, + 0.43320515751838684, + -0.06679930537939072, + -0.20954087376594543, + -0.10176847130060196, + 0.34212934970855713, + -0.23370660841464996, + 0.3242056965827942, + -0.3124348521232605, + 0.02607763186097145, + 0.025175049901008606, + -0.263454794883728, + -0.1513345092535019, + 0.014549585059285164, + -0.1987314671278, + 0.061649009585380554, + 0.1253819763660431, + -0.35368281602859497, + 0.13303838670253754, + 0.2873440384864807, + -0.05823168158531189, + 0.28306642174720764, + 0.0028213486075401306, + 0.16744373738765717, + -0.1454620361328125, + -0.22136743366718292, + 0.23658815026283264, + 0.03351446986198425, + 0.21695272624492645, + 0.06954407691955566, + -0.26325681805610657, + 0.142268568277359, + -0.03135328367352486, + -0.13485145568847656, + 0.0847398117184639, + 0.04720153659582138, + -0.15508973598480225, + 0.16531193256378174, + 0.043843723833560944, + -0.4885926842689514, + 0.15838932991027832, + 0.2925708293914795, + 0.13770447671413422, + 0.07699048519134521, + -0.10937181115150452, + 0.03762861713767052, + -0.33969035744667053, + 0.3731597661972046, + -0.10201747715473175, + -0.24819684028625488, + -0.18589705228805542, + 0.22533169388771057, + 0.00861472636461258, + -0.0883750468492508, + 0.3922699987888336, + -0.1908557415008545, + -0.1527247279882431, + 0.039073534309864044, + -0.2400915026664734, + 0.01948782242834568, + -0.159138485789299, + -0.07206986844539642, + 0.24803787469863892, + 0.13086463510990143, + 0.18381862342357635, + 0.24983160197734833, + -0.050706587731838226, + 0.12638597190380096, + -0.2813067138195038, + -0.358850359916687, + -0.3725643754005432, + -0.2032947838306427, + -0.20558764040470123, + -0.5666476488113403, + 0.02318275161087513, + 0.010926492512226105, + -0.13121387362480164, + 0.16208656132221222, + -0.33510708808898926, + -0.10093862563371658, + -0.0413154661655426, + -0.049002476036548615, + 0.07181155681610107, + -0.37009090185165405, + 0.263321191072464, + -0.3198581039905548, + -0.18211351335048676, + -0.13098785281181335, + 0.053537994623184204, + 0.24806131422519684, + 0.16237810254096985, + -0.12601512670516968, + 0.22047528624534607, + 0.1556641161441803, + -0.387481689453125, + -0.17143015563488007, + 0.1276715099811554, + -0.26728758215904236, + 0.16010387241840363, + 0.019621960818767548, + 0.24519380927085876, + 0.5153416395187378, + 0.03305526450276375, + 0.21818649768829346, + 0.34840261936187744, + 0.42812296748161316, + 0.02671419084072113, + -0.09131153672933578, + 0.16400986909866333, + -0.03711162880063057, + -0.034944746643304825, + -0.37735891342163086, + 0.27533015608787537, + -0.027977995574474335, + -0.05632195994257927, + -0.1395300328731537, + 0.0783085972070694, + 0.12022730708122253, + -0.352393239736557, + -0.07461832463741302, + 0.5401055216789246, + 0.08455029875040054, + 0.12047901004552841, + 0.08082771301269531, + 0.32589221000671387, + 0.44736355543136597, + -0.06010829284787178, + -0.041368380188941956, + 0.1552565097808838, + -0.20202505588531494, + -0.20307035744190216, + -0.23991639912128448, + 0.11542762070894241, + 0.332023561000824, + -0.105803482234478, + -0.11806466430425644, + 0.18350180983543396, + -0.06818123161792755, + -0.21833480894565582, + 0.0696645975112915, + 0.05547991767525673, + -0.011024653911590576, + -0.26677435636520386, + 0.18454720079898834, + -0.1564193069934845, + 0.021401632577180862, + 0.4267149269580841, + -0.28614896535873413, + -0.29602837562561035, + 0.4107281267642975, + -0.08860182762145996, + -0.35458484292030334, + 0.35817810893058777, + -0.3065158426761627, + 0.02743811532855034, + 0.20691817998886108, + -0.21387676894664764, + -0.07563862949609756, + -0.06890200823545456, + 0.199899822473526, + -0.020410090684890747, + 0.031822193413972855, + -0.08194073289632797, + 0.007650814019143581, + 0.01776225119829178, + 0.4561966359615326, + -0.035610977560281754, + 0.03860767185688019, + 0.44408512115478516, + 0.06239765137434006, + -0.2706258296966553, + 0.05405202880501747, + -0.07112257927656174, + 0.1685868203639984, + -0.08870504051446915, + -0.17459999024868011, + -0.22440403699874878, + 0.1157616376876831, + -0.030936475843191147, + -0.27118638157844543, + -0.03556189313530922, + 0.14983659982681274, + -0.036913223564624786, + 0.007929123938083649, + 0.24133488535881042, + 0.29275262355804443, + -0.0778195858001709, + 0.4666089415550232, + 0.019908783957362175, + -0.06973311305046082, + 0.2957398295402527, + -0.03794165700674057, + 0.20321179926395416, + -0.021685762330889702, + -0.27271708846092224, + -0.42963212728500366, + 0.053282178938388824, + -0.15792639553546906, + -0.14277197420597076, + 0.18210895359516144, + -0.0381169468164444, + 0.15522736310958862, + -0.16692638397216797, + 0.20940203964710236, + -0.0618094876408577, + 0.10342034697532654, + 0.030586376786231995, + 0.28513303399086, + -0.15182854235172272, + -0.2674780786037445, + 0.2158762812614441, + -0.025880195200443268, + 0.09428046643733978, + -0.18396557867527008, + -0.018592651933431625, + -0.22855308651924133, + 0.4397832155227661, + 0.005936078727245331, + -0.08176758140325546, + -0.0028843730688095093, + -0.13024231791496277, + -0.17257079482078552, + -0.35869100689888, + 0.09618889540433884, + -0.07822050154209137, + -0.07750503718852997, + -0.01728813350200653, + 0.14635558426380157, + -0.07308750599622726, + -0.21776865422725677, + -0.009866233915090561, + 0.11434868723154068, + 0.3112042248249054, + -0.1603008359670639, + 0.013171982020139694, + 0.27365806698799133, + 0.0926012247800827, + 0.23813483119010925, + -0.26934048533439636, + 0.19878020882606506, + -0.09139367938041687, + -0.2510448694229126, + -0.03759394586086273, + 0.033086586743593216, + -0.3892764449119568, + 0.0074541568756103516, + 0.14938151836395264, + 0.18138034641742706, + 0.025029996410012245, + -0.03829371556639671, + 0.020750554278492928, + 0.12251197546720505, + -0.3466969132423401, + -0.011196838691830635, + 0.19853439927101135, + -0.026878684759140015, + 0.3634965419769287, + -0.006123748607933521, + -0.3161609172821045, + -0.10868071019649506, + -0.21079692244529724, + -0.2758084833621979, + 0.1984379142522812, + 0.15728288888931274, + -0.036123521625995636, + -0.11072134971618652, + -0.04714746028184891, + 0.03680207580327988, + -0.13568991422653198, + 0.21126426756381989, + -0.0768728256225586, + 0.2071148008108139, + 0.08575046062469482, + -0.37960532307624817, + -0.12202827632427216, + -0.3106124699115753, + -0.2752760946750641, + -0.30671942234039307, + 0.42536643147468567, + 0.078725665807724, + -0.15455612540245056, + -0.048375725746154785, + 0.1286676973104477, + -0.31244146823883057, + -0.04127316549420357, + 0.006859399378299713, + -0.16135556995868683, + 0.45088082551956177, + 0.0446796715259552, + -0.1789412498474121, + 0.19094344973564148, + -0.15766078233718872, + 0.09439123421907425, + 0.1195729672908783, + 0.12067930400371552, + 0.34285491704940796, + 0.18705695867538452, + 0.02433175966143608, + 0.4262446165084839, + 0.18738213181495667, + 0.09192177653312683, + 0.1931905746459961, + -0.020821932703256607, + 0.045674458146095276, + -0.2896275222301483, + -0.2188575714826584, + 0.2904517948627472, + -0.4311187267303467, + 0.07275079190731049, + 0.1690751016139984, + 0.21907085180282593, + -0.24159713089466095, + -0.13509075343608856, + 0.04595588147640228, + -0.07433567196130753, + -0.20454062521457672, + -0.2736913561820984, + -0.24703264236450195, + 0.09698740392923355, + -0.33645784854888916, + -0.04454181343317032, + 0.35543715953826904, + 0.2983163893222809, + 0.18863022327423096, + -0.0058694928884506226, + -0.14175692200660706, + -0.37408268451690674, + 0.15606051683425903, + 0.15503579378128052, + 0.10245317220687866, + -0.011156924068927765, + -0.1338862031698227, + 0.20483911037445068, + 0.3858543634414673, + -0.024389436468482018, + 0.05183064565062523, + 0.023419659584760666, + -0.11110609024763107, + -0.005419330671429634, + -0.00966641865670681, + -0.38883405923843384, + -0.18845322728157043, + -0.2525588572025299, + 0.1274828463792801, + -0.27796870470046997, + -0.2523069381713867, + 0.12733066082000732, + -0.2241588532924652, + -0.4040215313434601, + -0.2805541455745697, + 0.12827882170677185, + -0.17570233345031738, + -0.14784367382526398, + 0.2078154981136322, + 0.5947222113609314, + 0.1468171328306198, + -0.12323127686977386, + 0.038675688207149506, + -0.42076215147972107, + -0.1751076728105545, + 0.2527959942817688, + -0.10160218924283981, + -0.09128620475530624, + 0.14387330412864685, + 0.42131802439689636, + 0.3556409478187561, + 0.24963849782943726, + -0.37525424361228943, + 0.03847194090485573, + 0.3298828899860382, + 0.14732491970062256, + -0.2423604279756546, + -10.850854873657227, + -0.10586756467819214, + -0.3027735650539398, + 0.31946611404418945, + -0.25729066133499146, + 0.10181444138288498, + 0.15456515550613403, + -0.024249302223324776, + 0.2581278681755066, + 0.1505487561225891, + -0.2823396325111389, + 0.023186344653367996, + 0.006364243105053902, + 0.19229909777641296, + 0.02737503871321678, + -0.032305292785167694, + -0.19592486321926117, + 0.21466770768165588, + 0.031105775386095047, + 0.1285131573677063, + 0.1319018304347992, + 0.48927292227745056, + -0.1287427544593811, + 0.3014511466026306, + 0.06575638055801392, + -0.260750949382782, + -0.2162771075963974, + 0.41402044892311096, + 0.1683340221643448, + -0.4302253723144531, + 0.19395200908184052, + 0.05233839154243469, + -0.07534226775169373, + 0.028991607949137688, + -0.06927990913391113, + -0.08029456436634064, + -0.00652080774307251, + 0.18020334839820862, + 0.12096644937992096, + -0.20954880118370056, + -0.015781858935952187, + -0.17561620473861694, + 0.25077736377716064, + 0.3093898594379425, + -0.11489473283290863, + -0.37830206751823425, + -0.214482843875885, + -1.3964431285858154, + 0.32017189264297485, + 0.21487200260162354, + 0.44482287764549255, + 0.15831874310970306, + 0.10684788972139359, + 0.11518069356679916, + -0.440194308757782, + 0.08963073790073395, + -0.12223505228757858, + 0.11353399604558945, + 0.16471867263317108, + 0.07119426131248474, + 0.14085443317890167, + -0.12334807217121124, + 0.4083344340324402, + -0.0502874031662941, + -0.13003791868686676, + 0.20324940979480743, + -0.12707629799842834, + -0.02141425386071205, + -0.08427514880895615, + -0.4861825108528137, + -0.4077373743057251, + 0.00435496773570776, + -0.09852736443281174, + 0.06946811825037003, + 0.40911954641342163, + -0.06004926189780235, + -0.3728499710559845, + 0.30930671095848083, + 0.10396711528301239, + 0.2953256368637085, + 0.23108920454978943, + 0.043643977493047714, + 0.04285284876823425, + -0.18073011934757233, + -0.11386881023645401, + -0.08886649459600449, + 0.04916437342762947, + 0.3323889970779419, + -0.0350208543241024, + -0.020046282559633255, + -0.09957048296928406, + 0.2884463369846344, + -0.08841228485107422, + -0.22652311623096466, + -0.30172911286354065, + 0.0006027729250490665, + 0.014256244525313377, + 0.1661597192287445, + 0.0014365464448928833, + -0.1328757405281067, + -0.21642009913921356, + 0.03864220902323723, + 0.12713375687599182, + -0.42900919914245605, + -0.34364020824432373, + 0.23637141287326813, + 0.17426104843616486, + 0.24076078832149506, + 0.07566837221384048, + 0.13263247907161713, + -0.05527009442448616, + -0.10966812819242477, + 0.2920474410057068, + 0.5575556755065918, + 0.27740561962127686, + -0.13476698100566864, + 0.0021363161504268646, + -0.06417505443096161, + -0.28456759452819824, + -0.007397511973977089, + 0.3347529172897339, + 0.035630963742733, + 0.23990921676158905, + 0.37262454628944397, + 0.0037117870524525642, + -0.1269049495458603, + 1.0391371250152588, + -0.257726788520813, + 0.18905843794345856, + -0.03724151849746704, + 0.20750148594379425, + -0.1499556601047516, + -0.2839234471321106, + 0.06278104335069656, + 0.4499482214450836, + -0.287700891494751, + 0.6020014882087708, + 0.16759687662124634, + -0.39773550629615784, + 0.09484604001045227, + -0.31220704317092896, + 0.38713300228118896, + 0.3185044229030609, + 0.204804927110672, + -0.14237068593502045, + -0.25665172934532166, + -0.26628416776657104, + 0.024964164942502975, + -0.3853726089000702, + -0.3730936050415039, + -0.21609218418598175, + 0.18079181015491486, + -0.07745721936225891, + -0.29644569754600525, + 0.2884235978126526, + 0.13539093732833862, + -0.1869397759437561, + -0.22642481327056885, + -0.48328813910484314, + -0.12274934351444244, + 0.21588578820228577, + 0.7016806602478027, + 0.12359582632780075, + -0.11619015038013458, + -0.04742156341671944, + 0.07175279408693314, + -0.1660573035478592, + 0.020167050883173943, + 0.07115453481674194, + -0.01128400769084692, + -0.5280985832214355, + 0.1674066036939621, + 0.14971673488616943, + -0.37622252106666565, + -0.16319498419761658, + -0.17148464918136597, + 0.06545991450548172, + 0.0846799686551094, + -0.08740612119436264, + 0.1644885241985321, + 0.2601078748703003, + -0.07577840238809586, + -0.06247124448418617, + -0.27311021089553833, + 0.1580091118812561, + 0.11153072118759155, + 0.2745862603187561, + 0.07697097957134247, + -0.16656410694122314, + -0.31730279326438904, + -0.3780134618282318, + 0.3243669271469116, + -0.3121802508831024, + -0.20141266286373138, + 0.13483035564422607, + 0.23742564022541046, + -0.25464165210723877, + -0.02801688015460968, + -0.12445501983165741, + 0.07065156102180481, + -0.2480458915233612, + 0.08234398066997528, + 0.40223222970962524, + -0.25739794969558716, + 0.12739552557468414, + -0.187395840883255, + 0.24203746020793915, + 0.15306290984153748, + -0.1510384976863861, + 0.2166929990053177, + -0.27506476640701294 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_035.json b/src/benchmark/output/results/results_graph_035.json new file mode 100644 index 0000000..7e17493 --- /dev/null +++ b/src/benchmark/output/results/results_graph_035.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 78-year-old male with a significant smoking history (25-pack-year). He was diagnosed with clinical stage IIA lung cancer in the left upper lobe.\n\n**Timeline of Diagnoses and Treatments:**\n\n1. **Initial Diagnosis:** The patient was diagnosed with clinical stage IIA lung cancer in the left upper lobe.\n2. **Surgical Intervention:** Following diagnosis, the patient underwent lobectomy combined with chest wall resection (Step 2).\n3. **Histopathological Examination:** Post-surgical histopathological examination revealed pleomorphic carcinoma of the lung (pT3N0M0, stage IIB, with chest wall invasion). The tumor was positive for the BRAF-V600E mutation.\n4. **New Symptoms:** Two months post-lobectomy, the patient presented with new abdominal symptoms, initially suspected to be appendicitis (Step 4).\n5. **Further Imaging and Diagnosis:** Abdominal pain and difficulty eating prompted further imaging, which revealed jejunal intussusception, dilatation of the upper small intestine, mass lesions in the pancreatic head, appendix, and hepatic flexure, and multiple enlarged abdominal lymph nodes (Step 5).\n6. **Electrolyte Levels Assessment:** Electrolyte levels were assessed to determine if there were any abnormalities (Step 6).\n7. **Enteroscopy and Diagnosis:** Enteroscopy was performed to investigate the cause of abdominal symptoms and CT findings, which revealed a neoplastic lesion in the upper jejunum with a narrowed lumen. Histology confirmed malignant lesion consistent with metastatic pleomorphic carcinoma of the lung.\n\n**Outcomes:**\n\n1. **Initial Surgery:** The patient underwent successful lobectomy combined with chest wall resection.\n2. **Post-Surgical Complications:** The patient developed new abdominal symptoms, initially suspected to be appendicitis, which required further investigation and treatment.\n3. **Intussusception and Malignant Lesion:** Further imaging revealed jejunal intussusception, dilatation of the upper small intestine, mass lesions in the pancreatic head, appendix, and hepatic flexure, and multiple enlarged abdominal lymph nodes. Histology confirmed malignant lesion consistent with metastatic pleomorphic carcinoma of the lung.\n4. **Enteroscopy and Treatment:** Enteroscopy was performed to investigate the cause of abdominal symptoms and CT findings, which revealed a neoplastic lesion in the upper jejunum with a narrowed lumen. The intussusception was reduced, and an ileus tube was placed.\n\n**Conclusion:**\nThe patient's clinical course has been marked by significant challenges following initial diagnosis and treatment for lung cancer. Despite successful surgical intervention, the patient developed new abdominal symptoms, which required further investigation and treatment. Ultimately, enteroscopy revealed a neoplastic lesion in the upper jejunum with a narrowed lumen, confirming metastatic pleomorphic carcinoma of the lung. The patient's prognosis remains uncertain at this time.", + "bertscore": { + "precision": [ + 0.7222839593887329 + ], + "recall": [ + 0.7161093950271606 + ], + "f1": [ + 0.7191834449768066 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 7, + "edge_count": 6, + "avg_in_degree": 0.8571428571428571, + "density": 0.14285714285714285 + }, + "trajectory_embedding": [ + 0.26367637515068054, + 0.048176705837249756, + -0.2154717743396759, + 0.09709109365940094, + 0.15133313834667206, + 0.11292798072099686, + -0.15835356712341309, + 0.21911518275737762, + 0.3441311717033386, + -0.3593378961086273, + -0.1768045276403427, + 0.055697981268167496, + -0.7211228609085083, + -0.14588463306427002, + -0.32662948966026306, + 0.18636056780815125, + -0.03485988453030586, + 0.3550634980201721, + -0.0623752661049366, + -0.31354016065597534, + -0.3823505938053131, + 0.10191021859645844, + -0.44576528668403625, + -0.03433436155319214, + 0.20647485554218292, + 0.052926305681467056, + 0.3503561019897461, + 0.5004863142967224, + 0.2639497220516205, + 0.2079770267009735, + 0.054727159440517426, + -0.10874438285827637, + 0.02508053183555603, + -0.06723034381866455, + -0.3305467665195465, + 0.3164825737476349, + 0.25427624583244324, + 0.20953835546970367, + -0.16920702159404755, + 0.10252491384744644, + -0.10152190923690796, + -0.019739553332328796, + 0.825546145439148, + 0.2970251441001892, + 0.5253682732582092, + -0.9268602132797241, + 0.07763757556676865, + 0.5993531942367554, + -0.4951746165752411, + -0.4112546741962433, + 0.1170085072517395, + 0.8495710492134094, + 0.5978049039840698, + -0.26562660932540894, + 0.5536863207817078, + -0.2107943594455719, + -0.20749345421791077, + -0.1956603229045868, + -0.3153260350227356, + 0.10206307470798492, + -0.04633107781410217, + -0.23282606899738312, + 0.2553304433822632, + -0.07428460568189621, + -0.2271665632724762, + -0.06366129219532013, + -0.3269701898097992, + 0.1434250921010971, + -0.09974527359008789, + -0.4858466684818268, + -0.18079932034015656, + -0.15483060479164124, + -0.13648192584514618, + -0.04963322728872299, + 0.13289426267147064, + -0.050083644688129425, + 0.3013920187950134, + 0.013408088125288486, + 0.12621358036994934, + 0.1623779833316803, + -0.015037762001156807, + -0.20776908099651337, + -0.021395649760961533, + 0.31833362579345703, + -0.4040749967098236, + -0.0073650735430419445, + -0.15956464409828186, + -0.17060641944408417, + -0.3324948847293854, + 0.14997485280036926, + 0.07341399043798447, + -0.30214881896972656, + 0.04657912999391556, + -0.19396628439426422, + 0.1211518719792366, + 0.07473649084568024, + 0.4785465896129608, + 0.33849114179611206, + 0.9650000929832458, + -0.033908452838659286, + 0.2486945241689682, + 0.0474131740629673, + 0.3759557902812958, + -0.030329067260026932, + 0.375460684299469, + -0.010672705247998238, + 0.11453807353973389, + -0.516088604927063, + 0.23890535533428192, + 0.4391511380672455, + 0.016528120264410973, + -0.14482520520687103, + 0.01259241160005331, + -0.2875552475452423, + 0.21400086581707, + 0.05319174751639366, + -0.12038993090391159, + 0.24414587020874023, + 0.21481692790985107, + -0.27524253726005554, + -0.021561790257692337, + -0.11951722204685211, + 0.36043581366539, + 0.13756878674030304, + -0.4818015992641449, + 0.011960494332015514, + -0.1381303369998932, + -0.011047827079892159, + 0.025360286235809326, + 0.02148537151515484, + -0.5142020583152771, + -0.13058771193027496, + -0.015643078833818436, + 0.17149360477924347, + -0.053242795169353485, + 0.2714352011680603, + -0.4371272623538971, + 0.10069214552640915, + -1.0930465459823608, + 0.16704954206943512, + -0.3853028118610382, + -0.09317038208246231, + -0.03483106568455696, + -0.5520843863487244, + -0.261414110660553, + -0.2191941738128662, + -0.10704045742750168, + 0.24270357191562653, + -0.08016303926706314, + -0.01283736526966095, + -0.10287600755691528, + 0.07669997215270996, + 0.185138538479805, + 0.30539628863334656, + 0.2073126882314682, + 0.10010631382465363, + 0.1790449321269989, + 0.243938609957695, + 0.08663559705018997, + -0.09823954105377197, + -0.030956124886870384, + 0.435149222612381, + 0.10379458963871002, + -0.03670407459139824, + -0.08091031759977341, + -0.7236076593399048, + 0.20303641259670258, + -0.14431419968605042, + 0.12507636845111847, + 0.10269588977098465, + -0.10577156394720078, + 0.10721725970506668, + -0.14168314635753632, + 0.6176190376281738, + 0.2606644034385681, + 0.34523656964302063, + 0.06204739585518837, + -0.041453707963228226, + 0.09803355485200882, + 0.16627158224582672, + 0.1633601039648056, + -0.195724755525589, + 0.577901303768158, + 0.19729936122894287, + -0.24194809794425964, + 0.2083078920841217, + 0.39551210403442383, + 0.011209050193428993, + -0.0754472091794014, + -0.044786762446165085, + 0.5327540040016174, + -0.2767825424671173, + 0.5223562717437744, + -0.3016781806945801, + -0.061180856078863144, + 0.20239917933940887, + -0.14658737182617188, + -0.05267323926091194, + 0.04460075870156288, + -0.09599912166595459, + 0.16033805906772614, + 0.05135471001267433, + -0.3419322371482849, + 0.16747458279132843, + 0.1425715535879135, + 0.014990425668656826, + 0.2158341109752655, + 0.030288109555840492, + 0.02575424686074257, + 0.10041394084692001, + -0.27617529034614563, + 0.2767980992794037, + -0.021382054314017296, + 0.14902694523334503, + 0.09670872986316681, + -0.41769513487815857, + 0.27342087030410767, + -0.0073138573206961155, + 0.013851702213287354, + 0.18614710867404938, + -0.020694341510534286, + -0.1495913714170456, + 0.05278085917234421, + -0.14652502536773682, + -0.4609500467777252, + 0.1858759969472885, + 0.14508987963199615, + 0.25713998079299927, + 0.31191110610961914, + -0.0673680305480957, + 0.04839605838060379, + -0.5039416551589966, + 0.2567088305950165, + -0.04183363914489746, + -0.02425752580165863, + -0.19425848126411438, + 0.16814061999320984, + -0.1144481971859932, + 0.12266509234905243, + 0.422315388917923, + -0.058221783488988876, + -0.007118482608348131, + 0.17276427149772644, + -0.30720043182373047, + -0.032304007560014725, + -0.3483777642250061, + 0.12562814354896545, + 0.3021952509880066, + 0.045553386211395264, + 0.26608118414878845, + 0.037222061306238174, + -0.08733604848384857, + 0.13259588181972504, + -0.2698078155517578, + -0.3026108741760254, + -0.4202382266521454, + -0.11895482987165451, + -0.12427578866481781, + -0.4856295585632324, + 0.19330117106437683, + -0.12733934819698334, + -0.04010988026857376, + 0.20476844906806946, + -0.3823299705982208, + -0.14120379090309143, + 0.07184554636478424, + 0.014332869090139866, + 0.016553731635212898, + -0.11087831109762192, + 0.1566164493560791, + -0.1798570305109024, + -0.17090392112731934, + -0.17681419849395752, + -0.04232543706893921, + 0.10573237389326096, + 0.1124519556760788, + -0.17589738965034485, + 0.044352468103170395, + 0.10174260288476944, + -0.4261125922203064, + -0.2859351336956024, + 0.30395904183387756, + -0.17235806584358215, + 0.30461910367012024, + 0.13674460351467133, + 0.27799472212791443, + 0.39154696464538574, + 0.08176745474338531, + 0.1402559131383896, + 0.3746100962162018, + 0.5237788558006287, + 0.061968155205249786, + 0.08954394608736038, + -0.06494670361280441, + -0.06615713983774185, + -0.06982745975255966, + -0.39971670508384705, + 0.3896321654319763, + -0.06382781267166138, + 0.015199712477624416, + 0.0009070123778656125, + 0.21233275532722473, + -0.027387630194425583, + -0.3505243957042694, + -0.08762837201356888, + 0.3786598742008209, + 0.2461361587047577, + 0.17190144956111908, + 0.09034208208322525, + 0.19577565789222717, + 0.3864634335041046, + -0.05548859387636185, + -0.044401850551366806, + 0.11642272025346756, + 0.07043582201004028, + -0.2615503668785095, + -0.05945565924048424, + 0.1753360778093338, + 0.40019962191581726, + -0.09456854313611984, + -0.19419200718402863, + 0.06432364135980606, + -0.15855105221271515, + -0.017040152102708817, + -0.21125541627407074, + -0.04380294308066368, + 0.0824279710650444, + -0.2759086787700653, + 0.3164060413837433, + -0.0778120905160904, + -0.05720840021967888, + 0.41777944564819336, + -0.3501738905906677, + -0.22583164274692535, + 0.2497851848602295, + -0.05178454518318176, + -0.46815916895866394, + 0.3462750315666199, + -0.0281272791326046, + -0.035898420959711075, + 0.39775896072387695, + -0.20493756234645844, + -0.1451864391565323, + -0.15395762026309967, + 0.3214016854763031, + -0.0007088780403137207, + 0.012811516411602497, + -0.02787075750529766, + 0.013090627267956734, + 0.21375982463359833, + 0.612976610660553, + 0.09666085243225098, + 0.2000362128019333, + 0.5911549925804138, + 0.10437057167291641, + -0.13167546689510345, + -0.007617514114826918, + -0.022030310705304146, + 0.23068472743034363, + -0.11277952045202255, + -0.09987913072109222, + -0.1995953470468521, + 0.11865883320569992, + 0.2306796759366989, + -0.29442933201789856, + -0.007965735159814358, + 0.15121586620807648, + 0.048466991633176804, + -0.017325112596154213, + 0.3105219006538391, + 0.22490143775939941, + -0.11994929611682892, + 0.5684388279914856, + -0.03263520076870918, + -0.1643795222043991, + 0.33628901839256287, + -0.2454565316438675, + 0.1779405027627945, + 0.01328512467443943, + -0.2939531207084656, + -0.374634325504303, + -0.0030266190879046917, + -0.23024095594882965, + -0.21842244267463684, + -0.0533255934715271, + -0.11790748685598373, + 0.0739058256149292, + -0.2217341959476471, + 0.05350112169981003, + 0.1217028945684433, + 0.26977601647377014, + 0.19499698281288147, + 0.35089948773384094, + 0.009212540462613106, + -0.34125661849975586, + 0.15764521062374115, + -0.017691481858491898, + 0.005653989966958761, + -0.08324495702981949, + -0.019195199012756348, + -0.0535406768321991, + 0.5679190754890442, + -0.054166506975889206, + 0.0133430827409029, + 0.03241809085011482, + -0.08832405507564545, + -0.15045571327209473, + -0.4577508866786957, + -0.06303201615810394, + -0.17879025638103485, + 0.05808735638856888, + 0.15435217320919037, + 0.11188488453626633, + -0.24792326986789703, + -0.17106327414512634, + -0.043231163173913956, + -0.011110684834420681, + 0.14811845123767853, + -0.10222721844911575, + -0.05742453411221504, + 0.3017112910747528, + 0.12147621065378189, + 0.43410173058509827, + -0.27961793541908264, + 0.08383768051862717, + 0.06349080801010132, + -0.3641655743122101, + -0.12110984325408936, + -0.06214771047234535, + -0.3881685435771942, + -0.11609654128551483, + 0.23257803916931152, + 0.29488393664360046, + -0.0178816057741642, + -0.03251179680228233, + 0.07553087919950485, + 0.16103895008563995, + -0.3254483640193939, + -0.07450295984745026, + 0.19226765632629395, + 0.17536762356758118, + 0.37501975893974304, + -0.025337358936667442, + -0.48070722818374634, + -0.24059703946113586, + -0.009424812160432339, + -0.3612661361694336, + 0.21655051410198212, + 0.18071866035461426, + -0.08509962260723114, + -0.15587687492370605, + -0.009846575558185577, + -0.1860634982585907, + -0.09066420048475266, + 0.1964496672153473, + -0.041065093129873276, + 0.307549387216568, + 0.011439068242907524, + -0.3218701183795929, + 3.6101257137488574e-05, + -0.20650658011436462, + -0.39621099829673767, + -0.1530836671590805, + 0.37734588980674744, + 0.2291632443666458, + -0.15881864726543427, + -0.04175961762666702, + 0.037115540355443954, + -0.22609277069568634, + -0.2753196358680725, + 0.07546082884073257, + -0.214421346783638, + 0.3947100043296814, + -0.09825844317674637, + -0.21710167825222015, + 0.11865855008363724, + -0.2514086365699768, + 0.05432453379034996, + 0.16592036187648773, + 0.019837437197566032, + 0.3350663483142853, + 0.16508731245994568, + 0.14133793115615845, + 0.4618324637413025, + 0.16800090670585632, + 0.1308952122926712, + 0.2610411047935486, + 0.041305433958768845, + 0.03668886423110962, + -0.26634734869003296, + -0.14032462239265442, + 0.3489757180213928, + -0.2770255506038666, + -0.01593068614602089, + 0.1536695510149002, + 0.2334093302488327, + -0.3478948175907135, + -0.3072466254234314, + 0.012269808910787106, + -0.06873487681150436, + -0.11498061567544937, + -0.26849350333213806, + -0.19852115213871002, + -0.04582706466317177, + -0.25253286957740784, + -0.09817782789468765, + 0.15455926954746246, + 0.3588576018810272, + 0.11117369681596756, + 0.10120289772748947, + -0.23112353682518005, + -0.30686622858047485, + 0.19748078286647797, + 0.22688592970371246, + 0.05778252333402634, + -0.036498188972473145, + -0.13458369672298431, + 0.26805001497268677, + 0.48100996017456055, + -0.01482084859162569, + -0.0071162814274430275, + -0.008503790013492107, + -0.06627122312784195, + -0.0937274694442749, + 0.11715925484895706, + -0.17045393586158752, + 0.05024878308176994, + -0.3430708050727844, + 0.1521095186471939, + -0.23651985824108124, + -0.19734278321266174, + 0.25913485884666443, + -0.26288411021232605, + -0.40088650584220886, + -0.23784871399402618, + 0.21869294345378876, + -0.08259259164333344, + -0.03804517909884453, + 0.10477829724550247, + 0.47259846329689026, + -0.004700360354036093, + -0.19043084979057312, + 0.017405148595571518, + -0.48736515641212463, + -0.2523077130317688, + 0.037511520087718964, + -0.048525888472795486, + -0.04319681599736214, + -0.00787732657045126, + 0.4427487850189209, + 0.5377885699272156, + 0.27027228474617004, + -0.333481103181839, + 0.10959271341562271, + 0.3255690932273865, + 0.2843661904335022, + -0.2505546510219574, + -10.654647827148438, + 0.031194070354104042, + -0.28193727135658264, + 0.6017528176307678, + -0.3235602378845215, + 0.06077531352639198, + 0.07019718736410141, + 0.0005207232316024601, + 0.06482665985822678, + 0.02499311976134777, + -0.27480170130729675, + -0.015362952835857868, + 0.204981729388237, + 0.348693311214447, + -0.021253900602459908, + -0.056552622467279434, + -0.2774498164653778, + 0.22319473326206207, + -0.01947801001369953, + 0.16658854484558105, + 0.10807299613952637, + 0.3027319312095642, + -0.21747533977031708, + 0.2739013135433197, + 0.049374036490917206, + -0.359483540058136, + -0.18652136623859406, + 0.47224846482276917, + 0.19934959709644318, + -0.33093908429145813, + 0.2813141942024231, + 0.2580116391181946, + -0.27672162652015686, + 0.07787070423364639, + -0.10773653537034988, + -0.075515016913414, + -0.0011001399252563715, + 0.09695673733949661, + 0.25531238317489624, + -0.056221265345811844, + 0.10402145236730576, + -0.21145184338092804, + 0.21088121831417084, + 0.3229428231716156, + -0.08466954529285431, + -0.4198654294013977, + -0.1657135933637619, + -1.6373947858810425, + 0.27488353848457336, + 0.3420321047306061, + 0.4814308285713196, + 0.07519418746232986, + 0.06128164753317833, + 0.2092587798833847, + -0.28377801179885864, + 0.1669389307498932, + -0.30006498098373413, + 0.02715397998690605, + 0.07749271392822266, + -0.05941170081496239, + 0.12979952991008759, + -0.22432170808315277, + 0.38847869634628296, + -0.10659105330705643, + -0.267580509185791, + 0.03963467851281166, + 0.037354711443185806, + -0.15561354160308838, + -0.26063862442970276, + -0.4386267364025116, + -0.4540724456310272, + 0.00944515224546194, + -0.0529281422495842, + -0.16354961693286896, + 0.2677425742149353, + -0.008236007764935493, + -0.48771634697914124, + 0.19996246695518494, + -0.036350902169942856, + 0.42238861322402954, + 0.26536720991134644, + -0.041730888187885284, + 0.05506131052970886, + -0.1061139777302742, + -0.27652889490127563, + -0.1462090015411377, + 0.11351436376571655, + 0.433709055185318, + -0.06417831033468246, + 0.03161386027932167, + 0.02727504074573517, + 0.40715596079826355, + -0.12358409911394119, + -0.20463064312934875, + -0.44660684466362, + 0.05458930507302284, + -0.038213979452848434, + 0.08127031475305557, + 0.05821714922785759, + -0.0911908969283104, + -0.1765953153371811, + 0.09240232408046722, + -0.13600783050060272, + -0.4405636787414551, + -0.48714178800582886, + 0.24027864634990692, + 0.09284399449825287, + 0.22925077378749847, + 0.18903973698616028, + -0.09158915281295776, + -0.1211928203701973, + 0.10753107815980911, + 0.2434326559305191, + 0.559352695941925, + 0.1600734442472458, + -0.08093452453613281, + -0.07386124134063721, + -0.2094700187444687, + -0.2189013957977295, + 0.05447763204574585, + 0.3791797459125519, + -0.08042730391025543, + 0.13882394134998322, + 0.5987772345542908, + -0.06865216046571732, + 0.008198936469852924, + 1.0333914756774902, + -0.3397672474384308, + 0.163704052567482, + -0.13775701820850372, + 0.16877523064613342, + -0.137618288397789, + -0.5134156942367554, + 0.16551412642002106, + 0.4436151087284088, + -0.34808090329170227, + 0.7037791013717651, + 0.15576942265033722, + -0.234120175242424, + 0.026723021641373634, + -0.20293639600276947, + 0.567287027835846, + 0.19554366171360016, + 0.17156434059143066, + -0.09365095943212509, + -0.38292649388313293, + -0.17347107827663422, + 0.11217623203992844, + -0.32200565934181213, + -0.18555739521980286, + -0.2189493179321289, + 0.0856126993894577, + 0.040070705115795135, + -0.2532980144023895, + 0.3874683082103729, + 0.1905737668275833, + -0.18037164211273193, + -0.2791435122489929, + -0.32822731137275696, + 0.0050958432257175446, + 0.13290508091449738, + 0.8165057897567749, + 0.03624973073601723, + -0.14220911264419556, + -0.15468361973762512, + 0.07723230123519897, + -0.16569530963897705, + 0.20368942618370056, + 0.0948202833533287, + 0.06273921579122543, + -0.5311828255653381, + 0.1821000874042511, + 0.15737369656562805, + -0.3652972877025604, + -0.1978296935558319, + -0.32589974999427795, + 0.03277477249503136, + -0.05508926138281822, + -0.14538607001304626, + 0.10450243949890137, + 0.364676296710968, + -0.007008946500718594, + 0.01040777750313282, + -0.2666504681110382, + 0.08394039422273636, + 0.06845252960920334, + 0.25433942675590515, + 0.005795760545879602, + -0.28979581594467163, + -0.37099844217300415, + -0.47360292077064514, + 0.29306164383888245, + -0.39265182614326477, + -0.15206895768642426, + 0.07584644109010696, + 0.1432015597820282, + -0.34454235434532166, + 0.1134193018078804, + -0.14534731209278107, + -0.14329001307487488, + -0.19986331462860107, + 0.1553807258605957, + 0.4451756775379181, + -0.3014802038669586, + 0.24748924374580383, + -0.22440750896930695, + 0.11168720573186874, + 0.09002811461687088, + -0.3058636784553528, + 0.2002572864294052, + -0.1841491311788559 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_037.json b/src/benchmark/output/results/results_graph_037.json new file mode 100644 index 0000000..7b05f26 --- /dev/null +++ b/src/benchmark/output/results/results_graph_037.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "The patient in question is a 55-year-old female who was diagnosed with lung adenocarcinoma. The patient's demographic information includes her age, sex, and the fact that she has never smoked.\n\nOver the course of several years, the patient underwent a series of diagnostic tests and treatments for her cancer. Initially, she experienced symptoms such as coughing and shortness of breath, which led to her diagnosis with lung adenocarcinoma (N1). Following this diagnosis, the patient underwent molecular testing to assess suitability for targeted therapies.\n\nThe results of these tests revealed that the patient had a mutation in the EGFR gene, specifically an exon 19 deletion. Based on this information, the patient was started on a regimen of cisplatin, pemetrexed, and pembrolizumab (N6). This treatment was initiated after a partial response to initial chemotherapy was observed on CT scans (N7).\n\nHowever, over time, the patient's cancer progressed, and she experienced a decline in her overall health. As a result, the treatment regimen was discontinued due to progressive disease (N8). Further analysis of the patient's tumor revealed an EGFR exon 19 variant, which is a specific type of mutation that can be targeted by certain therapies.\n\nDespite this new information, the patient did not respond to further treatment with targeted therapies. Her cancer continued to progress, and she experienced significant decline in her overall health. The patient's case highlights the challenges of treating lung cancer, particularly when it comes to identifying effective treatments for patients with specific genetic mutations.\n\nThroughout her treatment journey, the patient underwent a range of diagnostic tests and procedures, including CT scans, biopsies, and molecular testing. These tests helped guide her treatment plan and provided valuable information about the progression of her disease.\n\nIn summary, the patient's case is characterized by a complex and challenging treatment journey. Despite initial responses to targeted therapies, the patient ultimately did not respond to further treatment due to progressive disease. Her case highlights the importance of ongoing monitoring and adaptation in cancer treatment, as well as the need for continued research into effective treatments for patients with specific genetic mutations.\n\nTimeline:\n\n* N1: Patient diagnosed with lung adenocarcinoma\n* N2-N3: Molecular testing performed to assess suitability for targeted therapies\n* N4: Further characterization of tumor with PD-L1 expression and CT imaging for staging\n* N5: Pulmonary embolism detected, requiring anticoagulation. Staging revised.\n* N6: Initiation of immunochemotherapy with cisplatin, pemetrexed, and pembrolizumab\n* N7: Partial response to initial chemotherapy observed on CT scans\n* N8: Treatment discontinued due to progressive disease\n* N9: Further analysis of patient's tumor reveals EGFR exon 19 variant\n\nOutcomes:\n\n* Initial partial response to targeted therapies (N7)\n* Progressive disease despite treatment with targeted therapies (N8)\n* No further response to treatment with targeted therapies (N9)\n\nNote: The narrative is written in a coherent and concise manner, including the patient's demographic information, timeline of diagnoses, treatments, and outcomes.", + "bertscore": { + "precision": [ + 0.5877186059951782 + ], + "recall": [ + 0.5473370552062988 + ], + "f1": [ + 0.5668094754219055 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 2, + "node_count": 10, + "edge_count": 8, + "avg_in_degree": 0.8, + "density": 0.08888888888888889 + }, + "trajectory_embedding": [ + 0.2973478436470032, + 0.213597372174263, + -0.26652461290359497, + 0.14265039563179016, + -0.09238506853580475, + 0.058098435401916504, + 0.16162094473838806, + 0.17003603279590607, + 0.4512329697608948, + -0.4327089190483093, + -0.21140940487384796, + 0.13165901601314545, + -0.6449852585792542, + -0.04919489100575447, + -0.39067476987838745, + 0.09079138934612274, + -0.04448368027806282, + 0.2947588562965393, + -0.09124978631734848, + -0.22092291712760925, + -0.4013097286224365, + 0.16147540509700775, + -0.36732733249664307, + -0.07645691931247711, + 0.10481147468090057, + -0.1215447336435318, + 0.3616701662540436, + 0.5082522034645081, + 0.1629190593957901, + 0.31117504835128784, + 0.08973740041255951, + 0.06223168224096298, + -0.07807830721139908, + 0.09531733393669128, + -0.16955727338790894, + 0.29393118619918823, + 0.21584458649158478, + 0.2537279725074768, + -0.11761125177145004, + 0.09570920467376709, + -0.1760079711675644, + 0.050082217901945114, + 0.8954157829284668, + 0.25541022419929504, + 0.3878576457500458, + -0.5051566362380981, + -0.05349203199148178, + 0.47098201513290405, + -0.48809513449668884, + 0.0024508386850357056, + 0.221343994140625, + 0.6111078858375549, + 0.6481034159660339, + -0.07303118705749512, + 0.4072049558162689, + -0.15507812798023224, + -0.38532429933547974, + -0.17310844361782074, + -0.14275242388248444, + 0.05447354167699814, + 0.046874724328517914, + -0.0348333939909935, + 0.17956112325191498, + -0.047438256442546844, + -0.20832940936088562, + -0.18655821681022644, + -0.1803850680589676, + 0.0523335337638855, + -0.07601999491453171, + -0.34485745429992676, + -0.3074684739112854, + -0.3965626358985901, + -0.1764480173587799, + 0.24516117572784424, + 0.170719176530838, + -0.26435622572898865, + 0.2646937966346741, + 0.09200415760278702, + 0.15559960901737213, + 0.21181431412696838, + 0.1924770623445511, + -0.14759990572929382, + 0.08006152510643005, + 0.2910420894622803, + -0.3429906964302063, + 0.10225282609462738, + -0.013849297538399696, + -0.17029643058776855, + -0.3592832684516907, + 0.21575042605400085, + 0.1993679255247116, + -0.2658345103263855, + -0.11619627475738525, + -0.16343644261360168, + 0.004971387796103954, + 0.2087996006011963, + 0.20657765865325928, + 0.39146196842193604, + 0.8019098043441772, + 0.01737063005566597, + 0.16552743315696716, + 0.12958519160747528, + 0.19294001162052155, + 0.07133597135543823, + 0.4281597137451172, + -0.16402967274188995, + 0.14510966837406158, + -0.2977446913719177, + 0.15746696293354034, + 0.495241641998291, + 0.038712989538908005, + -0.26821693778038025, + -0.010437739081680775, + -0.2725454866886139, + 0.009451168589293957, + 0.10854083299636841, + -0.11238207668066025, + 0.15970543026924133, + 0.19025513529777527, + -0.5451871156692505, + -0.08637170493602753, + -0.06512601673603058, + 0.28337159752845764, + 0.32532745599746704, + -0.46347957849502563, + -0.22820024192333221, + -0.06759292632341385, + 0.01915283128619194, + -0.019707363098859787, + 0.16894379258155823, + -0.47493499517440796, + -0.2021845579147339, + 0.05014742165803909, + 0.12899740040302277, + -0.15750335156917572, + 0.4687170088291168, + -0.43115004897117615, + 0.00222128932364285, + -1.1725469827651978, + 0.13302549719810486, + -0.4249756932258606, + -0.11209161579608917, + 0.018784333020448685, + -0.5223278403282166, + -0.17774038016796112, + -0.10537439584732056, + -0.05421264097094536, + 0.15576796233654022, + -0.1559542566537857, + -0.09126315265893936, + 0.024734515696763992, + -0.03133287653326988, + 0.06073453277349472, + 0.4140976071357727, + 0.07258490473031998, + 0.12791317701339722, + -0.03050878271460533, + 0.27307912707328796, + 0.11075305938720703, + -0.19481100142002106, + 0.01591655984520912, + 0.412691205739975, + -0.03220333904027939, + 0.026956405490636826, + 0.060401421040296555, + -0.5861829519271851, + 0.10715758800506592, + -0.21102610230445862, + 0.07973615825176239, + 0.12372688949108124, + -0.1854279339313507, + 0.08971013873815536, + -0.20292463898658752, + 0.609667181968689, + 0.1571153849363327, + 0.5700043439865112, + -0.12571534514427185, + -0.013475027866661549, + 0.11781152337789536, + 0.142976775765419, + 0.09768368303775787, + -0.06703364849090576, + 0.5550130605697632, + 0.28725486993789673, + -0.36831629276275635, + 0.07751074433326721, + 0.508210301399231, + -0.2861294746398926, + -0.21691632270812988, + -0.1253993809223175, + 0.46061915159225464, + -0.1888410747051239, + 0.2803370952606201, + -0.382000207901001, + -0.06865362823009491, + 0.09472014009952545, + -0.26802757382392883, + -0.18275415897369385, + 0.11181322485208511, + -0.2345077097415924, + 0.18389199674129486, + 0.17216119170188904, + -0.2985478937625885, + 0.14144939184188843, + 0.11846604198217392, + -0.11264567077159882, + 0.12347477674484253, + 0.11150451004505157, + 0.011584704741835594, + -0.16619789600372314, + -0.18064825236797333, + 0.15645132958889008, + -0.008765440434217453, + 0.3310428261756897, + 0.0614660307765007, + -0.33525675535202026, + 0.21181175112724304, + -0.09236069768667221, + -0.3500283658504486, + 0.051085926592350006, + -0.08758890628814697, + -0.14285150170326233, + 0.24453215301036835, + 0.10465411841869354, + -0.36580219864845276, + 0.28598910570144653, + 0.23143625259399414, + 0.22953660786151886, + 0.01871364191174507, + -0.2009701281785965, + 0.06678597629070282, + -0.21763975918293, + 0.3575296998023987, + -0.0789748877286911, + -0.2550181448459625, + -0.3563215136528015, + 0.22337131202220917, + -0.14263352751731873, + -0.1901821494102478, + 0.49777641892433167, + -0.19807183742523193, + -0.058700717985630035, + 0.08448483794927597, + -0.2789837718009949, + -0.11738188564777374, + -0.2510851323604584, + -0.02987564727663994, + 0.3571155071258545, + 0.010183041915297508, + 0.353248655796051, + 0.1966777890920639, + -0.13223674893379211, + 0.14124663174152374, + -0.33031079173088074, + -0.27848559617996216, + -0.22934982180595398, + -0.10922446101903915, + -0.10035461187362671, + -0.5089799761772156, + -0.024540742859244347, + 0.2082904577255249, + -0.20562133193016052, + 0.21504418551921844, + -0.3874787390232086, + -0.07064901292324066, + -0.03493073210120201, + -0.014895627275109291, + 0.2860996723175049, + -0.21455781161785126, + 0.11338420957326889, + -0.41343894600868225, + -0.2761160731315613, + -0.11668294668197632, + 0.02228325605392456, + 0.23291876912117004, + -0.0399942621588707, + -0.1813070923089981, + 0.26624444127082825, + 0.1562185436487198, + -0.4010644555091858, + -0.24476781487464905, + -0.046863723546266556, + -0.27363523840904236, + 0.17972047626972198, + -0.2614172101020813, + 0.23991632461547852, + 0.4640532433986664, + 0.08323635160923004, + 0.23543235659599304, + 0.39431342482566833, + 0.5862389802932739, + -0.05206901580095291, + -0.012436216697096825, + -0.05129052326083183, + -0.061137668788433075, + 0.06973104178905487, + -0.39175665378570557, + 0.18626460433006287, + -0.05618595331907272, + 0.009050287306308746, + 0.0759764239192009, + 0.22606368362903595, + 0.06770393997430801, + -0.27815598249435425, + -0.13576015830039978, + 0.5364671945571899, + 0.16922199726104736, + 0.14975401759147644, + 0.09235069900751114, + 0.20343372225761414, + 0.40856271982192993, + 0.022928863763809204, + -0.11065566539764404, + 0.1398947536945343, + -0.29040345549583435, + -0.20986270904541016, + -0.04363910108804703, + 0.045766279101371765, + 0.364615261554718, + -0.06531036645174026, + -0.16994979977607727, + 0.25446227192878723, + -0.17777885496616364, + -0.2554882764816284, + -0.2144250124692917, + -0.11850105226039886, + 0.0324387326836586, + -0.3016135096549988, + 0.22730514407157898, + -0.06062645837664604, + -0.033094823360443115, + 0.5622068643569946, + -0.28498393297195435, + -0.2379269152879715, + 0.2500808835029602, + -0.09614171087741852, + -0.33580026030540466, + 0.3652879595756531, + -0.1803927719593048, + 0.01848425529897213, + 0.26712673902511597, + -0.23106904327869415, + -0.09390359371900558, + -0.0019821436144411564, + 0.10353271663188934, + -0.0643811747431755, + 0.09111706912517548, + -0.10355448722839355, + 0.1396629363298416, + 0.08426008373498917, + 0.5377449989318848, + 0.030694177374243736, + -0.026042599231004715, + 0.4147464632987976, + 0.04717271775007248, + -0.3038320541381836, + 0.07666710764169693, + -0.046703290194272995, + 0.15105560421943665, + -0.20138518512248993, + -0.12935759127140045, + -0.19987863302230835, + 0.23017458617687225, + 0.06214697286486626, + -0.24626168608665466, + 0.10661985725164413, + 0.08055945485830307, + -0.13787630200386047, + -0.04283718019723892, + 0.3989357352256775, + 0.19997480511665344, + 0.012587687000632286, + 0.5725971460342407, + 0.14587512612342834, + -0.0548894889652729, + 0.43835654854774475, + -0.07325377315282822, + 0.22422996163368225, + -0.045496616512537, + -0.32483819127082825, + -0.4419119954109192, + 0.0265636146068573, + -0.15983964502811432, + -0.13791406154632568, + -0.03825017809867859, + 0.024120474234223366, + -0.007683011703193188, + -0.18670760095119476, + 0.1150592789053917, + -0.12860457599163055, + 0.07255706191062927, + 0.057273030281066895, + 0.4032866060733795, + -0.08005695790052414, + -0.29634037613868713, + 0.13799817860126495, + 0.006743135862052441, + 0.24499090015888214, + -0.15817740559577942, + -0.08799348026514053, + -0.24228839576244354, + 0.4525067210197449, + -0.1212744265794754, + 0.09071303904056549, + 0.042748063802719116, + -0.0765172690153122, + -0.28938910365104675, + -0.46453237533569336, + 0.021910443902015686, + -0.02915680967271328, + -0.05457048490643501, + -0.17508363723754883, + 0.15402619540691376, + -0.04426188766956329, + -0.0745949000120163, + 0.09148772060871124, + 0.2803412973880768, + 0.23326678574085236, + -0.039588190615177155, + -0.06698165833950043, + 0.21509341895580292, + 0.12744097411632538, + 0.2930554747581482, + -0.32917895913124084, + 0.1767800748348236, + 0.0920964926481247, + -0.22417306900024414, + -0.03471262380480766, + -0.057953130453825, + -0.3101775050163269, + -0.03905202075839043, + 0.1290661096572876, + 0.13012287020683289, + 0.08808144927024841, + -0.022642692551016808, + 0.06921499222517014, + 0.2892024517059326, + -0.38980361819267273, + 0.04063274338841438, + 0.5117343664169312, + -0.14894169569015503, + 0.3270763158798218, + 0.027538836002349854, + -0.3831321597099304, + -0.09090112149715424, + -0.07629010081291199, + -0.37587255239486694, + 0.15296564996242523, + 0.2712826132774353, + -0.11867306381464005, + 0.03917580470442772, + 0.131465345621109, + 0.04729241877794266, + 0.01785494200885296, + 0.20670528709888458, + -0.029845058917999268, + 0.09780724346637726, + 0.07928798347711563, + -0.2560034990310669, + -0.10519541800022125, + -0.3386109471321106, + -0.33001118898391724, + -0.34942856431007385, + 0.294278085231781, + 0.1615186482667923, + -0.14234912395477295, + 0.15182936191558838, + 0.14393678307533264, + -0.25144854187965393, + -0.15611104667186737, + 0.11422040313482285, + -0.10238836705684662, + 0.5891097784042358, + 0.007394374813884497, + -0.21312138438224792, + 0.09602656215429306, + -0.16908420622348785, + 0.1631808578968048, + 0.08169858902692795, + 0.23632323741912842, + 0.2923133373260498, + 0.10109759867191315, + 0.11452126502990723, + 0.5235501527786255, + 0.15824057161808014, + 0.04312866926193237, + 0.37589818239212036, + -0.13536080718040466, + 0.052887000143527985, + -0.1610853374004364, + -0.20490813255310059, + 0.4927009046077728, + -0.423657089471817, + 0.09103773534297943, + 0.06869743764400482, + 0.30930647253990173, + -0.350879043340683, + -0.24091704189777374, + -0.038427017629146576, + 0.0063919080421328545, + -0.04856549948453903, + -0.28427934646606445, + -0.2623208165168762, + -0.06848406791687012, + -0.3110581040382385, + 0.040416356176137924, + 0.2509314715862274, + 0.3714333474636078, + 0.22620555758476257, + 0.09557143598794937, + -0.2422196865081787, + -0.44983309507369995, + 0.18362456560134888, + 0.32792988419532776, + -0.0027221888303756714, + 0.00204869220033288, + -0.16000083088874817, + 0.2171756476163864, + 0.5056746006011963, + -0.040909506380558014, + 0.002422693418338895, + -0.034768469631671906, + -0.13322417438030243, + -0.018557976931333542, + 0.05730031058192253, + -0.12884724140167236, + -0.07118363678455353, + -0.39532214403152466, + -0.05097319558262825, + -0.23715421557426453, + -0.18845930695533752, + 0.14217384159564972, + -0.187659353017807, + -0.40690869092941284, + -0.15335458517074585, + 0.06428486108779907, + -0.1709611564874649, + -0.21363499760627747, + 0.2198450118303299, + 0.36419227719306946, + 0.10657863318920135, + -0.1191234439611435, + 0.19758570194244385, + -0.4217056334018707, + -0.20196814835071564, + 0.22621753811836243, + -0.1609797179698944, + 0.08323772251605988, + 0.1843278706073761, + 0.31647956371307373, + 0.5150335431098938, + 0.35291439294815063, + -0.4961211085319519, + 0.09716646373271942, + 0.31784433126449585, + 0.24514997005462646, + -0.2021578997373581, + -10.58022689819336, + 0.005444732494652271, + -0.265595018863678, + 0.4934682250022888, + -0.09411946684122086, + 0.04887791723012924, + 0.062089819461107254, + 0.004052475094795227, + 0.16391341388225555, + 0.2929508686065674, + -0.3008149266242981, + -0.002367305802181363, + 0.15883943438529968, + 0.3216325044631958, + 0.06972253322601318, + 0.1690843105316162, + -0.18157540261745453, + 0.24679982662200928, + -0.08996591717004776, + 0.10121452808380127, + 0.2354227602481842, + 0.3276650011539459, + -0.19483743607997894, + 0.19064810872077942, + 0.124934121966362, + -0.26368585228919983, + -0.2707363963127136, + 0.44860273599624634, + 0.18514588475227356, + -0.39377567172050476, + 0.31197792291641235, + 0.1126205325126648, + -0.04166038706898689, + -0.03555299714207649, + -0.03155214339494705, + -0.13588352501392365, + -0.12299750000238419, + 0.06515569239854813, + 0.1015859842300415, + -0.15831699967384338, + 0.10040418058633804, + -0.3544919192790985, + 0.25091999769210815, + 0.24154695868492126, + -0.04679108411073685, + -0.4619430601596832, + -0.19225957989692688, + -1.5464177131652832, + 0.20526275038719177, + 0.17336954176425934, + 0.4919271469116211, + 0.02159770391881466, + 0.20877256989479065, + 0.18739715218544006, + -0.36831727623939514, + 0.07567764818668365, + -0.23463666439056396, + 0.16263660788536072, + 0.08419414609670639, + -0.10430750995874405, + 0.10333720594644547, + -0.04357994347810745, + 0.4601929783821106, + -0.2945036292076111, + -0.1644243746995926, + 0.17097538709640503, + -0.09466743469238281, + 0.05683464556932449, + -0.186793714761734, + -0.4027867317199707, + -0.5264387130737305, + 0.018406063318252563, + -0.05152442306280136, + -0.013640833087265491, + 0.39025214314460754, + -0.11472894251346588, + -0.4678116738796234, + 0.1675339639186859, + 0.1444229632616043, + 0.2968531847000122, + 0.11648932844400406, + 0.016348857432603836, + 0.13745588064193726, + -0.1719651073217392, + -0.08935602009296417, + -0.11625640094280243, + 0.08322218060493469, + 0.4513916075229645, + -0.10350003093481064, + -0.0703771784901619, + -0.0277300663292408, + 0.27957993745803833, + -0.2072618007659912, + -0.24752464890480042, + -0.5470784306526184, + 0.15738996863365173, + 0.06665913015604019, + 0.04071533679962158, + -0.049143172800540924, + -0.11508007347583771, + -0.17451879382133484, + -0.13020919263362885, + -0.0753975361585617, + -0.6041489839553833, + -0.351938396692276, + 0.28922176361083984, + 0.19882933795452118, + 0.18434293568134308, + 0.05909193679690361, + 0.02635478973388672, + -0.05624305084347725, + -0.06870351731777191, + 0.43173718452453613, + 0.5605422258377075, + 0.22557029128074646, + -0.08129461109638214, + -0.03435127064585686, + -0.13852140307426453, + -0.30092865228652954, + -0.04569672420620918, + 0.3390794098377228, + 0.0709572583436966, + 0.3220478594303131, + 0.5347108840942383, + 0.03689277544617653, + -0.11817999184131622, + 0.8385425806045532, + -0.42226800322532654, + 0.24951677024364471, + -0.09464509785175323, + 0.18243902921676636, + 0.07340744137763977, + -0.23596234619617462, + 0.005514123942703009, + 0.3640301525592804, + -0.2906130254268646, + 0.5534473657608032, + 0.04018903896212578, + -0.42959514260292053, + -0.0274212546646595, + -0.17367762327194214, + 0.3885131776332855, + 0.17389187216758728, + 0.25799280405044556, + -0.18639126420021057, + -0.384760320186615, + -0.368904709815979, + 0.06469441950321198, + -0.2645883858203888, + -0.2184680700302124, + -0.242640420794487, + 0.11357139050960541, + -0.10655967891216278, + -0.10258479416370392, + 0.36288535594940186, + 0.08958837389945984, + -0.16098830103874207, + -0.1333162784576416, + -0.42179951071739197, + -0.0239111240953207, + 0.2437087744474411, + 0.6975666284561157, + 0.18152295053005219, + -0.19107434153556824, + -0.1566355675458908, + 0.23030658066272736, + -0.15923252701759338, + 0.12921693921089172, + 0.055664945393800735, + -0.038543809205293655, + -0.44299501180648804, + 0.16891300678253174, + 0.213231161236763, + -0.3842950463294983, + -0.12327797710895538, + -0.2993555963039398, + 0.21591690182685852, + -0.08203113079071045, + -0.24864032864570618, + 0.19900526106357574, + 0.24735553562641144, + -0.12726765871047974, + 0.11446864902973175, + -0.2274194210767746, + 0.01693538948893547, + 0.20020437240600586, + 0.3488924503326416, + 0.16091245412826538, + -0.1850658655166626, + -0.36891740560531616, + -0.4010939598083496, + 0.0974682867527008, + -0.26090818643569946, + -0.10710962116718292, + 0.18155668675899506, + 0.1300736665725708, + -0.22400347888469696, + 0.2102278172969818, + -0.18260139226913452, + -0.009944267570972443, + -0.27348706126213074, + 0.22790125012397766, + 0.30052268505096436, + -0.34951770305633545, + 0.1577243059873581, + -0.10395818948745728, + 0.42517250776290894, + 0.24142396450042725, + -0.17577549815177917, + 0.23884205520153046, + -0.27828699350357056 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_038.json b/src/benchmark/output/results/results_graph_038.json new file mode 100644 index 0000000..ccf2a61 --- /dev/null +++ b/src/benchmark/output/results/results_graph_038.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is an adult with a history of grade 3-4 cutaneous toxicity induced by PD-1 inhibitors. The exact age, sex, and medical history are not provided in the data, but it can be inferred that the patient has undergone significant treatment for this condition.\n\n**Timeline of Diagnoses and Treatments:**\n\n1. **Grade 3-4 Cutaneous Toxicity Induced by PD-1 Inhibitors (N1)**:\nThe patient experienced severe cutaneous toxicity due to PD-1 inhibitors, which led to stabilization with Traditional Chinese Medicine (TCM) intervention and initiation of glucocorticoid reduction.\n\n2. **Stabilization with TCM Intervention and Glucocorticoid Reduction (N2)**:\nAfter experiencing grade 3-4 cutaneous toxicity, the patient stabilized with TCM intervention and initiated glucocorticoid reduction.\n\n3. **Tapering Off Methylprednisolone (80mg/day Intravenously for Ten Days) Over Four Months (N3)**:\nThe patient tapered off methylprednisolone over four months to stop new blister formation, along with topical ointment.\n\n4. **Development of Pulmonary Fungal Infection Suspected to be Related to Prolonged Glucocorticoid Use (N4)**:\nAfter tapering off methylprednisolone, the patient developed a pulmonary fungal infection, which was suspected to be related to prolonged glucocorticoid use.\n\n5. **Initial TCM Prescription with Yu-Ping-Feng (N5)**:\nThe patient initially received a TCM prescription with Yu-Ping-Feng after developing a pulmonary fungal infection.\n\n6. **Development of Thirst, Self-Consciousness of Dryness and Heat, Hyperphagia, and Irritability After Intravenous Methylprednisolone Sodium Succinate (N6)**:\nAfter a week of intravenous methylprednisolone sodium succinate, the patient developed symptoms such as thirst, self-consciousness of dryness and heat, hyperphagia, and irritability.\n\n7. **Changes to TCM Prescriptions with Bubali Cornu, Sophorae Flavescentis Radix, Mori Cortex, Aurantii Fructus, and Ophiopogonis Radix (N7)**:\nDamp-dispelling herbs were removed to protect Yin, and herbs clearing the Qi system were replaced with Bubali Cornu, Sophorae Flavescentis Radix, Mori Cortex, Aurantii Fructus, and Ophiopogonis Radix to enhance the removal of heat-toxin.\n\n8. **Safe Switch from Intravenous Methylprednisolone to Oral Prednisone Dosed Once-Daily (N8)**:\nThe patient's stable status and normal liver function allowed a safe switch from intravenous methylprednisolone to oral prednisone, dosed once-daily.\n\n**Outcomes:**\nThe patient's symptoms improved significantly after the changes to TCM prescriptions. The patient was able to tolerate oral prednisone without any adverse effects, and their liver function remained normal. However, the exact outcome of the treatment is not explicitly stated in the data.\n\nIn conclusion, this clinical case report highlights the complexities of treating patients with grade 3-4 cutaneous toxicity induced by PD-1 inhibitors. The patient's response to TCM intervention and glucocorticoid reduction was significant, but further treatment was necessary to manage the development of a pulmonary fungal infection and subsequent symptoms. The safe switch from intravenous methylprednisolone to oral prednisone demonstrates the importance of careful medication management in this patient population.", + "bertscore": { + "precision": [ + 0.5299550294876099 + ], + "recall": [ + 0.5345411896705627 + ], + "f1": [ + 0.5322381854057312 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 2, + "node_count": 9, + "edge_count": 7, + "avg_in_degree": 0.7777777777777778, + "density": 0.09722222222222222 + }, + "trajectory_embedding": [ + 0.11096694320440292, + 0.09814351052045822, + -0.15955545008182526, + 0.21349959075450897, + -0.02232399582862854, + 0.10406240075826645, + -0.16111865639686584, + 0.38304680585861206, + 0.6322689652442932, + -0.14967861771583557, + -0.019383201375603676, + -0.15255877375602722, + -0.48460114002227783, + -0.21101084351539612, + -0.18652847409248352, + 0.2237519919872284, + -0.35093915462493896, + 0.1792953759431839, + -0.2576954662799835, + -0.2629040479660034, + -0.13744591176509857, + 0.09256409108638763, + -0.579329788684845, + 0.052764132618904114, + 0.13591617345809937, + 0.031127307564020157, + 0.42838770151138306, + 0.755632758140564, + 0.06690151989459991, + 0.1595149040222168, + 0.10755161195993423, + -0.36243513226509094, + 0.2540861964225769, + -0.06710419803857803, + -0.33676305413246155, + 0.0544854998588562, + 0.22047190368175507, + 0.3467787206172943, + -0.12434180825948715, + -0.12060920894145966, + -0.2097601741552353, + 0.17709583044052124, + 0.9916751384735107, + 0.11805779486894608, + 0.21766889095306396, + -0.7694767117500305, + -0.1776343286037445, + 0.7524600028991699, + -0.37611979246139526, + -0.21556955575942993, + 0.27681195735931396, + 0.741287887096405, + 0.46259161829948425, + -0.5294979810714722, + 0.36156395077705383, + -0.15170904994010925, + -0.1131741851568222, + -0.3664877414703369, + -0.1744987964630127, + 0.09441085904836655, + 0.039002321660518646, + -0.3585163354873657, + 0.6711829304695129, + -0.273953914642334, + -0.047657836228609085, + -0.16615942120552063, + -0.23273932933807373, + 0.1425238698720932, + 0.0133562833070755, + -0.06516207754611969, + -0.07814106345176697, + -0.2662438452243805, + -0.13350264728069305, + 0.01828160509467125, + 0.005746646784245968, + -0.039629243314266205, + 0.43344414234161377, + -0.1815211921930313, + 0.3491738736629486, + 0.05949518457055092, + -0.11100511252880096, + -0.1031826063990593, + -0.27858731150627136, + 0.4201260209083557, + -0.30853503942489624, + -0.14857137203216553, + -0.3463233709335327, + -0.28507688641548157, + -0.3797454833984375, + 0.08532949537038803, + 0.1489504873752594, + -0.5008118152618408, + 0.17384938895702362, + -0.21591925621032715, + -0.14692895114421844, + 0.21281230449676514, + 0.673583447933197, + 0.06252697110176086, + 0.8609883189201355, + -0.057698629796504974, + 0.2908778786659241, + -0.11706838756799698, + 0.06050891801714897, + -0.08376114070415497, + 0.2629138231277466, + -0.06184472143650055, + 0.2532044053077698, + -0.4844442307949066, + 0.6310205459594727, + 0.682339072227478, + 0.031184760853648186, + -0.29941612482070923, + 0.08408540487289429, + -0.29507267475128174, + 0.3315143287181854, + 0.1786646991968155, + 0.06837114691734314, + 0.2536500096321106, + 0.3460349142551422, + -0.44823315739631653, + -0.21103838086128235, + -0.16849379241466522, + 0.3967326283454895, + 0.17946377396583557, + -0.36605024337768555, + -0.16460900008678436, + -0.025369038805365562, + -0.30198848247528076, + 0.15868231654167175, + 0.0263055469840765, + -0.5414605736732483, + -0.1632300615310669, + -0.07523421943187714, + -0.09640850126743317, + -0.03423990309238434, + 0.32866355776786804, + -0.161454439163208, + 0.051369860768318176, + -1.1143746376037598, + 0.2703211009502411, + -0.32900726795196533, + -0.19918721914291382, + -0.2194431573152542, + -0.704869270324707, + -0.20532503724098206, + -0.09950397908687592, + -0.11974433064460754, + 0.24888649582862854, + -0.40598511695861816, + 0.0549132414162159, + 0.08925364166498184, + -0.14703470468521118, + 0.3031095564365387, + 0.7340222001075745, + 0.04809822142124176, + -0.11288221180438995, + -0.11447307467460632, + 0.28821462392807007, + -0.03792644292116165, + -0.17417235672473907, + 0.20009610056877136, + 0.6038960814476013, + 0.14381863176822662, + 0.0445111058652401, + -0.13135214149951935, + -0.6046182513237, + -0.060972779989242554, + -0.0433608740568161, + 0.04829806089401245, + 0.06018994376063347, + -0.14848746359348297, + 0.04731335490942001, + -0.3612442910671234, + 0.7616428136825562, + -0.009236741811037064, + 0.45653530955314636, + 0.0034330924972891808, + 0.10930517315864563, + 0.24168092012405396, + 0.10067349672317505, + 0.1797146052122116, + -0.44450342655181885, + 0.5396683216094971, + 0.2514190971851349, + -0.19511288404464722, + 0.2423475831747055, + 0.19131073355674744, + 0.11378435045480728, + -0.20376867055892944, + 0.1808992624282837, + 0.4481717348098755, + -0.32256361842155457, + 0.6695543527603149, + -0.11566244065761566, + 0.14011964201927185, + 0.1273634135723114, + -0.10531384497880936, + 0.09148245304822922, + -0.285336434841156, + -0.07201946526765823, + 0.21050135791301727, + -0.041381847113370895, + -0.49066871404647827, + 0.06509243696928024, + 0.19474393129348755, + -0.04685936123132706, + -0.014967622235417366, + -0.1208847239613533, + 0.17745167016983032, + 0.13065661489963531, + -0.03692469745874405, + 0.2549859583377838, + -0.0825638622045517, + 0.359502375125885, + -0.029934650287032127, + -0.5379395484924316, + 0.11898196488618851, + 0.06324734538793564, + -0.011243489570915699, + 0.1004447340965271, + 0.276100754737854, + -0.3831581771373749, + -0.4770384728908539, + -0.06171063333749771, + -0.6023484468460083, + 0.24894316494464874, + 0.06558867543935776, + 0.29727670550346375, + 0.1439036875963211, + 0.17516174912452698, + 0.0061292145401239395, + -0.48459625244140625, + 0.2847411334514618, + -0.2535456120967865, + 0.0738820880651474, + -0.34903353452682495, + 0.31892189383506775, + 0.043691497296094894, + 0.4093663692474365, + 0.2525218725204468, + 0.15005594491958618, + -0.011220934800803661, + 0.13622871041297913, + -0.30878153443336487, + 0.02639634907245636, + -0.37762904167175293, + -0.11157353967428207, + 0.39494460821151733, + 0.1346600353717804, + 0.31426963210105896, + -0.0512457974255085, + -0.14548484981060028, + -0.032387662678956985, + -0.012404661625623703, + -0.5061594247817993, + -0.2941829562187195, + -0.040210265666246414, + -0.1909799724817276, + -0.730292797088623, + 0.38014236092567444, + 0.013451246544718742, + 0.08305002748966217, + 0.17208699882030487, + -0.21115560829639435, + -0.16167691349983215, + 0.07301309704780579, + 0.14842045307159424, + 0.0018437132239341736, + -0.2882061004638672, + -0.10533105581998825, + -0.09379182755947113, + -0.11429034173488617, + -0.2890179455280304, + -0.1314859837293625, + -0.0662643164396286, + 0.08160379528999329, + -0.5475301742553711, + 0.08358155190944672, + 0.11002501100301743, + -0.5335209369659424, + 0.05014076828956604, + 0.11922504007816315, + -0.0724244937300682, + 0.27119022607803345, + 0.0008462816476821899, + 0.4298717975616455, + 0.11349082738161087, + 0.22242143750190735, + 0.03489365428686142, + 0.5496230125427246, + 0.3988177180290222, + -0.27687838673591614, + 0.068184994161129, + -0.10560987889766693, + -0.08835184574127197, + -0.07959674298763275, + -0.2745913863182068, + 0.47444215416908264, + 0.1377435326576233, + 0.17711810767650604, + -0.1148691326379776, + 0.18417204916477203, + 0.1399654895067215, + -0.11958423256874084, + 0.2141556292772293, + 0.43207335472106934, + 0.11886775493621826, + 0.36992737650871277, + 0.24998249113559723, + 0.19101251661777496, + 0.24274900555610657, + -0.11485454440116882, + 0.15419620275497437, + 0.2181653082370758, + -0.09062042832374573, + -0.1570902019739151, + 0.03500900790095329, + 0.32365700602531433, + 0.5392236709594727, + -0.12707245349884033, + -0.38798201084136963, + -0.06203055754303932, + -0.12979844212532043, + -0.03885314241051674, + -0.5121693015098572, + -0.3091830015182495, + 0.025215934962034225, + -0.05099369212985039, + 0.3145470917224884, + 0.1441710740327835, + 0.025112999603152275, + 0.2815128266811371, + -0.5567547082901001, + -0.10302325338125229, + 0.0544283390045166, + -0.2472984790802002, + -0.35698750615119934, + 0.4556542634963989, + -0.15897229313850403, + 0.17166799306869507, + 0.22226981818675995, + -0.4391813576221466, + -0.05752166360616684, + 0.24191179871559143, + 0.386435329914093, + -0.10345914214849472, + 0.1257966309785843, + -0.18372994661331177, + 0.1973131000995636, + 0.06875592470169067, + 0.4368525743484497, + 0.20346803963184357, + 0.24414783716201782, + 0.703770637512207, + 0.2957010865211487, + -0.47173628211021423, + 0.20721769332885742, + -0.19453784823417664, + 0.34137412905693054, + -0.11981765180826187, + -0.048545725643634796, + -0.014322983101010323, + 0.1358354687690735, + 0.11356864869594574, + -0.37876829504966736, + 0.07289796322584152, + 0.10795333981513977, + 0.20826824009418488, + -0.10505754500627518, + 0.34612539410591125, + 0.016716670244932175, + -0.1105029359459877, + 0.44028207659721375, + -0.010290775448083878, + -0.17428046464920044, + 0.20569120347499847, + -0.15599007904529572, + 0.0924995094537735, + 0.08477663993835449, + -0.1603730320930481, + -0.1837363839149475, + 0.1687627136707306, + 0.02060273103415966, + -0.10788537561893463, + 0.021213017404079437, + -0.30608057975769043, + 0.07894399762153625, + -0.3232616186141968, + -0.03879879042506218, + 0.04067128896713257, + 0.19302017986774445, + 0.15682083368301392, + 0.22395163774490356, + 0.012915283441543579, + -0.09035996347665787, + 0.19163623452186584, + 0.1806972771883011, + -0.16807974874973297, + -0.3369539678096771, + 0.15517465770244598, + 0.03164779394865036, + 0.8229939341545105, + -0.07109613716602325, + 0.155751034617424, + 0.13962937891483307, + 0.0810731053352356, + -0.01533176563680172, + -0.30034998059272766, + 0.014433245174586773, + -0.10671631991863251, + 0.2275461107492447, + 0.11868398636579514, + -0.05935805290937424, + -0.42534053325653076, + -0.12232070416212082, + -0.12567710876464844, + -0.24731716513633728, + 0.04778143763542175, + -0.08576403558254242, + -0.3601688742637634, + 0.5160072445869446, + 0.3394938111305237, + 0.5518644452095032, + -0.4092137813568115, + 0.23642325401306152, + 0.16249312460422516, + -0.3679523468017578, + 0.059654027223587036, + -0.15197888016700745, + -0.4722755253314972, + -0.15543650090694427, + 0.21686992049217224, + 0.2835230529308319, + -0.12861743569374084, + -0.19731689989566803, + 0.10224252194166183, + 0.002561945468187332, + -0.19397491216659546, + -0.11094260960817337, + 0.26066267490386963, + 0.17770659923553467, + 0.20020407438278198, + 0.2578105628490448, + -0.643285870552063, + -0.3662745952606201, + -0.2263249307870865, + -0.33929187059402466, + -0.08539041876792908, + 0.36861303448677063, + 0.0329151451587677, + -0.23427444696426392, + 0.03748493641614914, + -0.005659520626068115, + -0.14696209132671356, + 0.3249629735946655, + -0.2003791779279709, + 0.2861466705799103, + 0.1490027755498886, + -0.030332934111356735, + 0.051328305155038834, + -0.1915437877178192, + -0.451997309923172, + -0.16619235277175903, + -0.0159862469881773, + 0.14825797080993652, + -0.4700322449207306, + -0.07689876854419708, + -0.004128515720367432, + -0.07696730643510818, + -0.13726696372032166, + -0.07669428735971451, + -0.24930283427238464, + 0.21970811486244202, + -0.26336386799812317, + -0.06546687334775925, + -0.038677748292684555, + 0.047630392014980316, + -0.14021289348602295, + 0.05542994663119316, + 0.00925268605351448, + 0.36258944869041443, + 0.023375254124403, + 0.013200799003243446, + 0.5848636627197266, + -0.03397350758314133, + 0.12850910425186157, + 0.249134361743927, + -0.06773443520069122, + 0.007326561026275158, + -0.33818209171295166, + -0.1918242871761322, + 0.22405779361724854, + -0.3834340274333954, + -0.22623328864574432, + 0.2603299617767334, + 0.21954506635665894, + -0.4137365221977234, + -0.3747904598712921, + 0.06569091230630875, + 0.15098923444747925, + -0.14535775780677795, + -0.12062754482030869, + -0.12038781493902206, + -0.3364497423171997, + 0.011840693652629852, + -0.09318909794092178, + 0.05130903795361519, + 0.5499911308288574, + 0.11659352481365204, + 0.2312263548374176, + -0.29081013798713684, + -0.15017548203468323, + 0.2609476149082184, + 0.241740420460701, + 0.15475061535835266, + -0.09763891994953156, + -0.04313323646783829, + 0.24155838787555695, + 0.23877249658107758, + -0.08607077598571777, + 0.04964008182287216, + -0.029097972437739372, + 0.026845388114452362, + 0.2042059451341629, + 0.0319802425801754, + -0.1718970537185669, + 0.026244910433888435, + -0.4237222969532013, + 0.013146087527275085, + -0.1217045933008194, + -0.03758666664361954, + 0.2828989624977112, + -0.13097050786018372, + -0.7107792496681213, + -0.16487878561019897, + 0.15665856003761292, + -0.010773349553346634, + -0.34868282079696655, + 0.2068217694759369, + 0.1961439698934555, + -0.12811104953289032, + -0.2734467685222626, + -0.009252842515707016, + -0.41786468029022217, + -0.4276168942451477, + 0.20965245366096497, + -0.15660621225833893, + -0.2852913737297058, + 0.1328853815793991, + 0.4524427056312561, + 0.43457522988319397, + 0.3481961190700531, + 0.15849855542182922, + 0.39898014068603516, + 0.5404787063598633, + 0.05831765756011009, + -0.33472853899002075, + -10.690675735473633, + -0.12175184488296509, + -0.5052552819252014, + 0.5061363577842712, + -0.24360069632530212, + 0.06319490820169449, + -0.027486158534884453, + -0.02688586339354515, + 0.08235159516334534, + 0.024208614602684975, + -0.2632926106452942, + -0.12705197930335999, + 0.27933013439178467, + 0.3239613473415375, + 0.11557584255933762, + 0.1086951494216919, + -0.338029682636261, + 0.20706868171691895, + 0.1669113039970398, + 0.202029287815094, + 0.15471629798412323, + 0.3520072102546692, + -0.20970746874809265, + 0.02428145706653595, + -0.20384734869003296, + -0.4645908772945404, + -0.2659758925437927, + 0.6552196741104126, + 0.44598761200904846, + -0.18846583366394043, + 0.07041559368371964, + -0.11500140279531479, + -0.12824378907680511, + 0.15561388432979584, + -0.2648186683654785, + -0.10466533899307251, + 0.07148435711860657, + 0.17968548834323883, + 0.22748112678527832, + -0.24144452810287476, + 0.014875241555273533, + -0.033248171210289, + 0.5287392139434814, + -0.01612205058336258, + -0.08771215379238129, + -0.6826621890068054, + 0.0005677696317434311, + -1.5700268745422363, + 0.13552691042423248, + 0.33249109983444214, + 0.39049699902534485, + 0.048757992684841156, + 0.05047227814793587, + 0.3394201695919037, + -0.21072854101657867, + -0.02948516234755516, + -0.3667293190956116, + -0.3285808563232422, + 0.07594062387943268, + 0.1799970120191574, + 0.05310840532183647, + -0.0946166068315506, + 0.7834311723709106, + 0.1815943419933319, + -0.34315595030784607, + 0.09401436895132065, + 0.06810681521892548, + -0.1468716710805893, + -0.3171771466732025, + -0.8587921857833862, + -0.6261554956436157, + 0.030539242550730705, + -0.21497994661331177, + -0.05516273155808449, + 0.2202373594045639, + 0.02397376112639904, + -0.002575100865215063, + 0.33367323875427246, + 0.04274710267782211, + 0.14394353330135345, + 0.3810845911502838, + -0.12063077092170715, + 0.2364615499973297, + -0.3306020498275757, + -0.009717948734760284, + 0.03818528354167938, + 0.2320069670677185, + 0.4278271198272705, + 0.015379279851913452, + -0.03090599924325943, + -0.08970489352941513, + 0.44773298501968384, + 0.022385532036423683, + -0.1460280865430832, + -0.4332210421562195, + -0.16035903990268707, + -0.15441471338272095, + 0.08315452188253403, + -0.1814793199300766, + 0.018221497535705566, + -0.2508696913719177, + 0.25444597005844116, + -0.0796620100736618, + -0.4472338855266571, + -0.6823177337646484, + 0.3885980546474457, + 0.1994829773902893, + 0.015292505733668804, + -0.07266910374164581, + -0.23983082175254822, + -0.3492426872253418, + 0.21960298717021942, + 0.270746648311615, + 0.5150718688964844, + 0.18175512552261353, + -0.09883274137973785, + 0.1588912457227707, + -0.45678818225860596, + -0.0055758897215127945, + -0.08421012759208679, + 0.3726358115673065, + -0.04651102423667908, + 0.014289340004324913, + 0.5736133456230164, + 0.09863191097974777, + 0.04548337310552597, + 0.8351206183433533, + -0.3235526382923126, + 0.0525103434920311, + -0.012787502259016037, + 0.3183976411819458, + -0.08871971815824509, + -0.4553624391555786, + 0.18709442019462585, + 0.43001794815063477, + -0.3537280261516571, + 0.6873456239700317, + 0.4378923177719116, + -0.20680013298988342, + -0.08436137437820435, + -0.33991026878356934, + 0.41905662417411804, + 0.1667064130306244, + 0.19572392106056213, + -0.22820523381233215, + -0.1808469593524933, + -0.24664641916751862, + 0.18706469237804413, + -0.18884293735027313, + -0.30400994420051575, + 0.018797993659973145, + 0.06035887077450752, + 0.08677218854427338, + 0.07467712461948395, + 0.19512805342674255, + 0.19869594275951385, + 0.012934391386806965, + -0.4812888503074646, + -0.023788467049598694, + -0.034423038363456726, + 0.012547534890472889, + 0.9531716108322144, + -0.07288215309381485, + -0.11775800585746765, + 0.13574953377246857, + 0.057777367532253265, + -0.12285026162862778, + 0.19876959919929504, + 0.063735730946064, + -0.12402965128421783, + -0.26350656151771545, + 0.3101603090763092, + 0.1768718659877777, + -0.15372294187545776, + -0.02668958157300949, + 0.10332687199115753, + -0.023025479167699814, + 0.11884379386901855, + -0.3789295554161072, + -0.019750431180000305, + 0.43193697929382324, + -0.06126437336206436, + 0.09098167717456818, + -0.3124237358570099, + -0.27811193466186523, + 0.11091872304677963, + 0.4868679940700531, + -0.11697974056005478, + -0.40750396251678467, + -0.070494145154953, + -0.6241505146026611, + 0.18725699186325073, + -0.47423285245895386, + -0.018415994942188263, + 0.2208288311958313, + 0.05832655727863312, + -0.07445141673088074, + 0.25042498111724854, + 0.12965932488441467, + -0.07615204900503159, + -0.1966966837644577, + 0.3753678500652313, + 0.4871078133583069, + -0.32861563563346863, + 0.470686674118042, + -0.054696694016456604, + 0.10116127133369446, + 0.0433979295194149, + -0.24663206934928894, + 0.0072199683636426926, + -0.3791124224662781 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_039.json b/src/benchmark/output/results/results_graph_039.json new file mode 100644 index 0000000..6016707 --- /dev/null +++ b/src/benchmark/output/results/results_graph_039.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is an 80-year-old male with a history of hypertension, diabetes, and chronic obstructive pulmonary disease (COPD). He is a current smoker with a significant smoking history of 90 pack-years. There is no asbestos exposure in his medical history.\n\n**Initial Presentation:**\nThe patient presented to the hospital with a week-long history of shortness of breath. His symptoms began approximately one week ago, and he has not experienced any improvement since then. The patient's comorbidities include hypertension, diabetes, and COPD, which may have contributed to his respiratory symptoms.\n\n**Diagnostic Findings:**\nA chest X-ray revealed a large mass in the right lower lung field, which was not present one year prior. A non-contrast CT scan further confirmed the presence of a 60x50x80 mm mass with heterogeneous internal density in the right lower lobe. The patient's white blood cell count (WBC) was elevated at 9130/\\u00b5L, and his C-Reactive Protein (CRP) concentration was also elevated at 2.5 mg/dL.\n\n**Initial Treatment:**\nThe patient underwent intercostal tube drainage due to the presence of moderate pleural effusion. The pleural fluid was yellow and cloudy, and cytology revealed a diagnosis of class \\u2161, leading to a diagnosis of pulmonary suppuration with empyema. Antibiotic treatment was initiated.\n\n**Progression of Disease:**\nDespite two weeks of antibiotic treatment, the patient's inflammatory reaction worsened (WBC count and CRP concentration increased), and CT images showed that the mass had increased in size. The patient's condition did not improve, and he was referred for surgical intervention after three weeks of antibiotic treatment.\n\n**Blood Examination:**\nA blood examination revealed a high inflammatory reaction (WBC count and CRP concentration increased). However, tumor markers such as carcinoembryonic antigen, cytokeratin-19 fragment, and pro-gastrin-releasing peptide were not elevated. Markers of infectious disease such as tuberculosis, aspergillus, and fungus were also not elevated.\n\n**Surgical Intervention:**\nChest CT showed that the right lower lobe lesion had increased in size, with fluids within the mass. The diagnosis was pulmonary suppuration or lung cancer with infection, and surgical intervention was planned to control infection. Complete resection of the tumor was performed.\n\n**Outcome:**\nThe patient underwent successful surgical intervention, which controlled the infection. However, the outcome of the surgery is not yet known, as this information is not provided in the case report.", + "bertscore": { + "precision": [ + 0.6976175904273987 + ], + "recall": [ + 0.7103872895240784 + ], + "f1": [ + 0.7039445638656616 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 8, + "edge_count": 7, + "avg_in_degree": 0.875, + "density": 0.125 + }, + "trajectory_embedding": [ + 0.26108381152153015, + 0.10956008732318878, + -0.16029071807861328, + 0.027429969981312752, + 0.007913028821349144, + 0.08848574012517929, + 0.08643864095211029, + 0.2547394335269928, + 0.32366758584976196, + -0.4072262942790985, + -0.2856261730194092, + 0.0938202515244484, + -0.6436994671821594, + -0.09698508679866791, + -0.2764435410499573, + 0.16657090187072754, + 0.040932681411504745, + 0.3293660283088684, + 0.006018600892275572, + -0.27940264344215393, + -0.5322431921958923, + 0.08336814492940903, + -0.46076273918151855, + 0.02193072810769081, + 0.15864019095897675, + 0.004260247573256493, + 0.31802815198898315, + 0.505253255367279, + 0.2959457039833069, + 0.32208141684532166, + 0.1826891452074051, + -0.06416049599647522, + 0.001767970621585846, + 0.12592974305152893, + -0.2745921015739441, + 0.308141827583313, + 0.13212665915489197, + 0.41367417573928833, + -0.12898023426532745, + -0.01326046884059906, + 0.03202363848686218, + 0.045633673667907715, + 0.9199668765068054, + 0.24128061532974243, + 0.4769904613494873, + -0.8402373194694519, + 0.0331241674721241, + 0.49156954884529114, + -0.43149012327194214, + -0.37405404448509216, + 0.212617889046669, + 0.7396342754364014, + 0.538451611995697, + -0.2360236942768097, + 0.5396133661270142, + -0.23917993903160095, + -0.2316078543663025, + -0.3461512625217438, + -0.25714606046676636, + 0.12097959965467453, + -0.01364058256149292, + -0.263628751039505, + 0.15222007036209106, + -0.10793325304985046, + -0.24043555557727814, + -0.0003581168130040169, + -0.11521720886230469, + 0.18773521482944489, + -0.12374664098024368, + -0.4154062569141388, + -0.12005002796649933, + -0.206128790974617, + -0.05823666974902153, + 0.06777523458003998, + 0.09989593923091888, + -0.14829814434051514, + 0.3378392159938812, + 0.008703187108039856, + 0.13725383579730988, + 0.10783153772354126, + 0.0015741195529699326, + -0.11645939946174622, + 0.0743425190448761, + 0.31447458267211914, + -0.2658509314060211, + 0.02984762378036976, + -0.1517682522535324, + -0.16403637826442719, + -0.2839863896369934, + 0.1464269906282425, + -0.10478072613477707, + -0.3411523103713989, + 0.17801880836486816, + -0.20802906155586243, + 0.08668603003025055, + 0.15026292204856873, + 0.350862056016922, + 0.3626784086227417, + 0.9124852418899536, + 0.01606186106801033, + 0.13945719599723816, + 0.0620109848678112, + 0.2403155416250229, + -0.014615166932344437, + 0.28376898169517517, + -0.04775137081742287, + -0.04200923442840576, + -0.5334618091583252, + 0.12338021397590637, + 0.38850343227386475, + -0.04399586468935013, + -0.14367319643497467, + -0.004328500013798475, + -0.31254008412361145, + 0.04470028728246689, + 0.0496356301009655, + -0.08447247743606567, + 0.13141106069087982, + 0.0867786556482315, + -0.30087631940841675, + -0.017644893378019333, + -0.11784262210130692, + 0.33577868342399597, + 0.28908926248550415, + -0.38879695534706116, + -0.06971995532512665, + -0.12312028557062149, + -0.06331991404294968, + 0.17852790653705597, + 0.012833002023398876, + -0.7115823030471802, + -0.23463010787963867, + -0.008514540269970894, + 0.1880863606929779, + -0.1255132108926773, + 0.2688579559326172, + -0.39156508445739746, + 0.17819435894489288, + -1.066145896911621, + 0.16971296072006226, + -0.3950832486152649, + -0.006549840793013573, + -0.06114785745739937, + -0.524884045124054, + -0.26640045642852783, + -0.14146821200847626, + -0.19315102696418762, + 0.10373226553201675, + -0.14990116655826569, + 0.11369626969099045, + -0.10591395199298859, + 0.038807112723588943, + 0.22576190531253815, + 0.30733147263526917, + 0.08999641239643097, + 0.1521606743335724, + 0.0937381312251091, + 0.21061444282531738, + 0.13733132183551788, + -0.1382201910018921, + -0.07313410937786102, + 0.4010327160358429, + 0.07816857099533081, + 0.005521022714674473, + -0.1084146499633789, + -0.7234862446784973, + 0.14900684356689453, + -0.09972699731588364, + 0.26137909293174744, + 0.1347416192293167, + -0.20740903913974762, + 0.24665461480617523, + -0.24871379137039185, + 0.5462079048156738, + 0.1849108338356018, + 0.38951265811920166, + 0.1323326975107193, + -0.08376731723546982, + 0.0907968059182167, + 0.14496326446533203, + 0.1303991675376892, + -0.15082582831382751, + 0.5348730087280273, + 0.1911633163690567, + -0.4373701214790344, + 0.2820042371749878, + 0.479567289352417, + -0.1106085330247879, + -0.08432793617248535, + -0.14042387902736664, + 0.4303503632545471, + -0.22412559390068054, + 0.4713036119937897, + -0.2655247449874878, + -0.01709180325269699, + 0.07877364754676819, + -0.2142161726951599, + -0.06659610569477081, + 0.12511667609214783, + -0.087378591299057, + 0.10496803373098373, + -0.05519299954175949, + -0.172188401222229, + 0.11668449640274048, + 0.12576726078987122, + -0.057960283011198044, + 0.288836807012558, + -0.09773363918066025, + 0.15416881442070007, + -0.057143356651067734, + -0.1943022906780243, + 0.13287067413330078, + 0.060951750725507736, + 0.19307969510555267, + 0.13664168119430542, + -0.3554212152957916, + 0.2746574282646179, + -0.04259118437767029, + -0.09635819494724274, + 0.26359236240386963, + -0.04609980806708336, + -0.2062235176563263, + 0.063067726790905, + -0.01562793180346489, + -0.4547211229801178, + 0.19445200264453888, + 0.19321784377098083, + 0.2963288426399231, + 0.24512207508087158, + -0.03495975583791733, + 0.016590919345617294, + -0.38268256187438965, + 0.19702191650867462, + -0.1930912584066391, + -0.02492673695087433, + -0.3309885859489441, + 0.21460838615894318, + -0.08942128717899323, + -0.05529002845287323, + 0.2815519869327545, + -0.06929220259189606, + -0.05566215142607689, + 0.09188288450241089, + -0.2191166877746582, + 0.02704840525984764, + -0.17564058303833008, + 0.07481201738119125, + 0.2767612636089325, + 0.1425887495279312, + 0.28439342975616455, + 0.08139618486166, + -0.16298353672027588, + 0.10020460933446884, + -0.26223206520080566, + -0.21401049196720123, + -0.28438156843185425, + -0.12668076157569885, + -0.053119558840990067, + -0.5303084850311279, + 0.1517026573419571, + 0.05643362179398537, + -0.13650073111057281, + 0.10047369450330734, + -0.24921973049640656, + -0.20158854126930237, + 0.04695931077003479, + 0.022687522694468498, + -0.03254319727420807, + -0.06655892729759216, + 0.04624108225107193, + -0.23403345048427582, + -0.23345068097114563, + -0.1891750693321228, + -0.09573490917682648, + 0.23035943508148193, + 0.14415748417377472, + -0.3242157995700836, + 0.11186838895082474, + 0.12470215559005737, + -0.5318878889083862, + -0.31235796213150024, + 0.13329309225082397, + -0.2542419731616974, + 0.26559311151504517, + -0.026422657072544098, + 0.1930312067270279, + 0.33164069056510925, + 0.12118130922317505, + 0.18555685877799988, + 0.3553202748298645, + 0.3906884789466858, + -0.020364118739962578, + -0.04364766553044319, + -0.02025676518678665, + -0.14987768232822418, + -0.11193013191223145, + -0.4421951174736023, + 0.26006612181663513, + 0.0988776832818985, + -0.017480723559856415, + 0.0209624283015728, + 0.06539316475391388, + 0.10664348304271698, + -0.2472868412733078, + -0.088677778840065, + 0.49532899260520935, + 0.17661628127098083, + 0.1897870898246765, + 0.1464899182319641, + 0.3725239038467407, + 0.6254552602767944, + -0.05980955809354782, + -0.1639251708984375, + 0.05510258674621582, + -0.021347003057599068, + -0.11150425672531128, + 0.01486741378903389, + 0.1449670046567917, + 0.24062049388885498, + -0.14611665904521942, + -0.15488022565841675, + 0.11839546263217926, + -0.10642119497060776, + -0.0671810433268547, + -0.2549738883972168, + -0.017378639429807663, + 0.021671492606401443, + -0.26182764768600464, + 0.18211987614631653, + -0.07587289065122604, + 0.054152924567461014, + 0.25321924686431885, + -0.25455442070961, + -0.2658650875091553, + 0.17432817816734314, + -0.08007606863975525, + -0.45224663615226746, + 0.29709678888320923, + -0.11230533570051193, + 0.0768725797533989, + 0.3159419298171997, + -0.22780461609363556, + -0.021077385172247887, + -0.13842882215976715, + 0.37560585141181946, + -0.03367835655808449, + -0.03984193503856659, + -0.06632819026708603, + -0.13812501728534698, + 0.046138472855091095, + 0.5267994403839111, + 0.11226652562618256, + 0.06067535653710365, + 0.4457501471042633, + 0.07567295432090759, + -0.1957673728466034, + 0.034947916865348816, + 0.04490593075752258, + 0.2540675401687622, + -0.10197637230157852, + -0.11440776288509369, + -0.1500861942768097, + 0.16174443066120148, + 0.09807275235652924, + -0.28936266899108887, + 0.001110265962779522, + 0.01826828345656395, + 0.03836604952812195, + -0.11105979979038239, + 0.30882829427719116, + 0.07811032235622406, + -0.050577323883771896, + 0.5023103356361389, + 0.0601067841053009, + -0.21810145676136017, + 0.46265819668769836, + -0.20442968606948853, + 0.22336886823177338, + -0.01728568971157074, + -0.3222353458404541, + -0.389247328042984, + 0.05282651633024216, + -0.1537177413702011, + -0.11851619929075241, + -0.05921453237533569, + -0.039351433515548706, + 0.05760842189192772, + -0.12906339764595032, + 0.1824972927570343, + 0.1607268750667572, + 0.18587319552898407, + 0.14578574895858765, + 0.3652949333190918, + 0.08483246713876724, + -0.2645277976989746, + 0.1764509081840515, + -0.04818684607744217, + 0.02191002480685711, + -0.20937880873680115, + 0.07265955209732056, + -0.09518080204725266, + 0.4670676290988922, + -0.09033649414777756, + -0.010685251094400883, + 0.01981467939913273, + -0.08180395513772964, + -0.21471771597862244, + -0.37222984433174133, + 0.06566443294286728, + -0.098701111972332, + 0.012952522374689579, + 0.080662801861763, + 0.10607190430164337, + -0.32191216945648193, + -0.13531136512756348, + -0.08266860991716385, + 0.13191373646259308, + 0.19093836843967438, + -0.06758609414100647, + 0.02686997875571251, + 0.43397265672683716, + 0.08747178316116333, + 0.36986133456230164, + -0.21281063556671143, + 0.1861838549375534, + 0.09240783751010895, + -0.313646525144577, + -0.11604557931423187, + 0.024277906864881516, + -0.40692657232284546, + -0.02962636575102806, + 0.28134000301361084, + 0.2548559308052063, + -0.018261007964611053, + -0.012916240841150284, + 0.013372186571359634, + 0.189580038189888, + -0.2641013264656067, + -0.0823037400841713, + 0.38128170371055603, + 0.16726981103420258, + 0.41611602902412415, + -0.004165036603808403, + -0.3889404237270355, + -0.20949597656726837, + -0.07746655493974686, + -0.4250255525112152, + 0.15334174036979675, + 0.14663474261760712, + -0.023561742156744003, + -0.07911445945501328, + 0.02039201743900776, + -0.12477793544530869, + -0.08474144339561462, + 0.19284556806087494, + -0.14169526100158691, + 0.10896138101816177, + 0.12253233045339584, + -0.30720993876457214, + 0.02614348568022251, + -0.21727265417575836, + -0.4362068176269531, + -0.2241993099451065, + 0.3153983950614929, + 0.16387391090393066, + -0.20168554782867432, + -0.06994151324033737, + 0.18013262748718262, + -0.1882546991109848, + -0.3054368197917938, + 0.08707079291343689, + -0.15048030018806458, + 0.43799182772636414, + -0.1639455407857895, + -0.15713751316070557, + 0.04085534065961838, + -0.2574590742588043, + -0.011981097981333733, + 0.29828083515167236, + 0.1373225599527359, + 0.32341915369033813, + 0.16783566772937775, + 0.08083796501159668, + 0.37970924377441406, + 0.05350526422262192, + 0.12852443754673004, + 0.27364063262939453, + 0.07545080780982971, + 0.09822984039783478, + -0.27264851331710815, + -0.08880683034658432, + 0.4294930398464203, + -0.24933531880378723, + -0.05493703857064247, + 0.236446812748909, + 0.18813207745552063, + -0.32617810368537903, + -0.313213974237442, + 0.017831820994615555, + 0.021409127861261368, + -0.13986080884933472, + -0.19779004156589508, + -0.21191392838954926, + -0.0014556869864463806, + -0.25542184710502625, + -0.10628100484609604, + 0.13828647136688232, + 0.35715171694755554, + 0.057517554610967636, + 0.17822960019111633, + -0.23447009921073914, + -0.288011372089386, + 0.23305024206638336, + 0.3053782284259796, + 0.06717413663864136, + 0.019271481782197952, + -0.14902366697788239, + 0.3754567503929138, + 0.5130892395973206, + 0.07700489461421967, + 0.029752517119050026, + -0.04851246625185013, + 0.009241607040166855, + 0.06977184116840363, + 0.09742352366447449, + -0.052695468068122864, + 0.02381199598312378, + -0.40898996591567993, + 0.08436466753482819, + -0.11502960324287415, + -0.24442771077156067, + 0.18658778071403503, + -0.28718918561935425, + -0.3865501880645752, + -0.17907220125198364, + 0.3491918742656708, + -0.16290299594402313, + -0.01541578583419323, + 0.19542428851127625, + 0.3533684015274048, + 0.11393529921770096, + -0.22780780494213104, + 0.12423772364854813, + -0.4107705354690552, + -0.22534945607185364, + 0.1658276915550232, + -0.17730659246444702, + -0.04979734122753143, + 0.0209437757730484, + 0.30823957920074463, + 0.46903112530708313, + 0.29410773515701294, + -0.4213334918022156, + 0.11066675931215286, + 0.18551596999168396, + 0.2716827988624573, + -0.24508464336395264, + -10.740010261535645, + 0.07963219285011292, + -0.3055938184261322, + 0.4902179539203644, + -0.2831987142562866, + 0.03760141506791115, + 0.047090671956539154, + 0.09099259227514267, + 0.157918781042099, + 0.11956615746021271, + -0.25362706184387207, + 0.02217896655201912, + 0.3105844557285309, + 0.3568098545074463, + -0.11784039437770844, + -0.034573331475257874, + -0.15697123110294342, + 0.19858042895793915, + 0.016173288226127625, + 0.23168113827705383, + 0.1906142383813858, + 0.37407058477401733, + -0.2861088514328003, + 0.31984931230545044, + 0.09358207881450653, + -0.3077656626701355, + -0.2435898333787918, + 0.381186306476593, + 0.24108999967575073, + -0.3488410711288452, + 0.37144899368286133, + 0.1369529366493225, + -0.3326784372329712, + 0.1434841901063919, + -0.11145655810832977, + -0.13578113913536072, + -0.05350462347269058, + 0.20498992502689362, + 0.10372006148099899, + -0.059461671859025955, + 0.06093297153711319, + -0.17912572622299194, + 0.15637089312076569, + 0.23629595339298248, + -0.10228956490755081, + -0.33637508749961853, + -0.15283715724945068, + -1.5333231687545776, + 0.2607783377170563, + 0.30958032608032227, + 0.35814979672431946, + -0.04854445159435272, + 0.156670942902565, + 0.12752415239810944, + -0.316053181886673, + 0.07937970757484436, + -0.12375317513942719, + -0.004670258611440659, + 0.06078098341822624, + 0.03278311342000961, + 0.1640997976064682, + -0.27453744411468506, + 0.4591664671897888, + -0.2083195000886917, + -0.2759118378162384, + -0.007028764579445124, + 0.057477518916130066, + -0.129147008061409, + -0.23688432574272156, + -0.41172510385513306, + -0.4899739623069763, + -0.0762920081615448, + -0.017580505460500717, + -0.033423129469156265, + 0.3550511300563812, + -0.050940051674842834, + -0.42321455478668213, + 0.1725136786699295, + -0.048147208988666534, + 0.3803832232952118, + 0.23392558097839355, + -0.061555974185466766, + 0.041112203150987625, + -0.16832204163074493, + -0.33770275115966797, + -0.14280271530151367, + 0.1012912318110466, + 0.4825150966644287, + -0.04116811603307724, + -0.09034464508295059, + 0.050947945564985275, + 0.35335880517959595, + -0.00016191229224205017, + -0.2038704752922058, + -0.49043434858322144, + 0.06416571140289307, + 0.07357064634561539, + 0.15775752067565918, + -0.044531259685754776, + 0.009753544814884663, + -0.17763139307498932, + -0.0045500583946704865, + -0.09285283833742142, + -0.4826565980911255, + -0.45712780952453613, + 0.3056493103504181, + 0.188239187002182, + 0.16020309925079346, + 0.17628473043441772, + 0.04517633467912674, + -0.16594888269901276, + -0.007752992212772369, + 0.30505436658859253, + 0.5245564579963684, + 0.22786878049373627, + -0.12712806463241577, + -0.11479922384023666, + -0.1837502270936966, + -0.25407180190086365, + 0.08694951236248016, + 0.3028848171234131, + -0.03592965379357338, + 0.054662853479385376, + 0.6697776317596436, + -0.013575810007750988, + 0.011852584779262543, + 0.9225382804870605, + -0.2942582964897156, + 0.22683663666248322, + -0.11016172170639038, + 0.28608939051628113, + -0.10988981276750565, + -0.29542094469070435, + 0.10999923199415207, + 0.3883325457572937, + -0.2932502329349518, + 0.5186895728111267, + 0.1500958353281021, + -0.20667341351509094, + 0.05070701241493225, + -0.2535325884819031, + 0.5289908647537231, + 0.18570666015148163, + 0.23127515614032745, + -0.2028467208147049, + -0.29255354404449463, + -0.24322441220283508, + 0.07289934158325195, + -0.2591104209423065, + -0.25314757227897644, + -0.22186021506786346, + 0.10917772352695465, + -0.022797726094722748, + -0.2212141454219818, + 0.3110937476158142, + 0.22157369554042816, + -0.07133779674768448, + -0.30420202016830444, + -0.28645506501197815, + -0.09675527364015579, + 0.07180184870958328, + 0.8153170347213745, + 0.03291159123182297, + -0.24832026660442352, + -0.021695323288440704, + 0.1472565084695816, + -0.04786333441734314, + 0.14455097913742065, + 0.06527700275182724, + -0.04368188977241516, + -0.3844417333602905, + 0.19373361766338348, + 0.10792029649019241, + -0.41064929962158203, + -0.27405422925949097, + -0.24848634004592896, + 0.0927194282412529, + -0.05318191275000572, + -0.059866826981306076, + 0.22515085339546204, + 0.3909287750720978, + -0.0762612447142601, + 0.063418447971344, + -0.31868693232536316, + 0.08533719927072525, + 0.15523822605609894, + 0.28232869505882263, + 0.009727497585117817, + -0.214608833193779, + -0.3480148911476135, + -0.5524943470954895, + 0.30919426679611206, + -0.4412634074687958, + -0.16634061932563782, + 0.17567962408065796, + 0.12418901920318604, + -0.36208298802375793, + 0.04950477182865143, + -0.18972346186637878, + -0.13723085820674896, + -0.17865291237831116, + 0.2519596219062805, + 0.4251895844936371, + -0.3188205063343048, + 0.2255503386259079, + -0.13314136862754822, + 0.13665547966957092, + 0.05011523887515068, + -0.3031379282474518, + 0.16244915127754211, + -0.19290731847286224 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_040.json b/src/benchmark/output/results/results_graph_040.json new file mode 100644 index 0000000..bcfdd19 --- /dev/null +++ b/src/benchmark/output/results/results_graph_040.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is an elderly female with no provided demographic information. However, based on the clinical data, it appears that she had undergone surgery for an enlarged right paratracheal node (4R) 5 months prior to presentation.\n\n**Timeline of Diagnoses and Treatments:**\n\n1. **Step 1:** The patient presented with an enlarged right paratracheal node (4R), which was identified on a restaging CT scan 5 months after surgery.\n2. **Step 2 (23 days post-EBUS-TBNA):** The patient developed hypotension, elevated leukocyte count, lactate, creatinine, and liver enzymes, indicating sepsis.\n3. **Step 3:** A chest X-ray revealed new opacities in the left lower lung field, leading to a diagnosis of pneumosepsis.\n4. **Step 4:** The patient developed unstable, narrow complex tachycardia.\n5. **Step 5:** Bedside echocardiogram diagnosed a large pericardial effusion and features of tamponade.\n6. **Step 6:** Emergent pericardiocentesis with insertion of pericardial drain was performed to evacuate purulent fluid.\n7. **Step 7:** Pericardial fluid cytology was negative, but cultures grew Streptococcus mitis-group, Actinomyces odontolyticus, Prevotella melaninogenica, and Lancefieldella rimae.\n8. **Step 8:** Repeat CT scan revealed a large loculated rim-enhancing fluid collection within the mediastinum and pericardium.\n9. **Step 9:** The patient developed progressive septic shock due to inability to obtain source control.\n10. **Step 10:** HRCT of the chest demonstrated large loculated fluid collection within the mediastinum, with multiple internal locules of gas and thickening with enhancement in the pericardium and mediastinal soft tissue.\n11. **Step 11:** Due to limited benefit-to-risk ratio for sternotomy and surgical drainage, the patient opted for palliative measures and passed away surrounded by her family.\n\n**Outcomes:**\nThe patient's condition progressed rapidly from an initial diagnosis of sepsis to a life-threatening situation with progressive septic shock. Despite multiple interventions, including pericardiocentesis and HRCT scans, the patient's condition did not improve significantly. Ultimately, the benefit-to-risk ratio for surgical intervention was deemed limited, and the patient opted for palliative care, passing away surrounded by her family.\n\n**Conclusion:**\nThis case highlights the importance of early recognition and management of sepsis, particularly in patients with underlying conditions such as pericardial effusion. The rapid progression of this patient's condition underscores the need for prompt intervention and careful consideration of treatment options to avoid further complications and improve outcomes.", + "bertscore": { + "precision": [ + 0.4804054796695709 + ], + "recall": [ + 0.6300804615020752 + ], + "f1": [ + 0.5451561212539673 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 12, + "edge_count": 11, + "avg_in_degree": 0.9166666666666666, + "density": 0.08333333333333333 + }, + "trajectory_embedding": [ + 0.28669193387031555, + 0.1691989153623581, + 0.019546089693903923, + -0.006544489413499832, + 0.12655074894428253, + 0.013121272437274456, + -0.1376185119152069, + 0.220974400639534, + 0.35357120633125305, + -0.13875794410705566, + -0.21811778843402863, + -0.0012483556056395173, + -0.5973541140556335, + -0.09496092051267624, + -0.24451704323291779, + 0.21331942081451416, + -0.01850639097392559, + 0.2408425360918045, + -0.08629199117422104, + -0.3109051287174225, + -0.3078397214412689, + 0.05068157985806465, + -0.4263876974582672, + 0.013189909048378468, + 0.17969514429569244, + 0.0028065491933375597, + 0.3465745449066162, + 0.40784239768981934, + 0.30199941992759705, + 0.36116981506347656, + 0.21482956409454346, + -0.04552584886550903, + 0.1663714349269867, + 0.04968811571598053, + -0.2264309674501419, + 0.28703972697257996, + 0.09475972503423691, + 0.5029977560043335, + -0.025729024782776833, + 0.007432017475366592, + 0.13865697383880615, + 0.06931067258119583, + 0.6747732758522034, + 0.06543879956007004, + 0.5356878638267517, + -0.8260799050331116, + -0.01202256977558136, + 0.5933248400688171, + -0.38372620940208435, + -0.46364542841911316, + 0.21553699672222137, + 0.7847979664802551, + 0.5796515345573425, + -0.17979292571544647, + 0.4322079122066498, + -0.20980535447597504, + -0.30280011892318726, + -0.3927961587905884, + -0.20376132428646088, + -0.07360654324293137, + -0.06386234611272812, + -0.21882058680057526, + 0.3052499294281006, + -0.06577533483505249, + -0.23158816993236542, + -0.0515180379152298, + -0.17486773431301117, + 0.22433018684387207, + -0.04340830072760582, + -0.35976889729499817, + -0.10883883386850357, + -0.20218081772327423, + -0.10752991586923599, + -0.05051349103450775, + -0.030051440000534058, + -0.11319702863693237, + 0.34640100598335266, + -0.15357957780361176, + 0.24591030180454254, + 0.052823249250650406, + -0.10555503517389297, + -0.027631668373942375, + 0.08385086804628372, + 0.4019663631916046, + -0.31141433119773865, + 0.012286531738936901, + -0.3138699233531952, + -0.13192100822925568, + -0.15999947488307953, + 0.14233355224132538, + 0.09314149618148804, + -0.2415354698896408, + 0.07506590336561203, + -0.085874043405056, + -0.03155766427516937, + 0.021568814292550087, + 0.29421308636665344, + 0.36821356415748596, + 0.9221912026405334, + -0.1390026956796646, + 0.12554529309272766, + 0.14942355453968048, + 0.2106071561574936, + 0.0886673554778099, + 0.31348326802253723, + -0.1185976043343544, + 0.12584827840328217, + -0.5578426718711853, + 0.138259619474411, + 0.36028537154197693, + 0.15888573229312897, + -0.1609366089105606, + 0.07229257375001907, + -0.14975973963737488, + 0.16213852167129517, + 0.19394175708293915, + -0.048996906727552414, + 0.2236260324716568, + -0.0095315957441926, + -0.38075995445251465, + -0.01841447688639164, + -0.06999660283327103, + 0.2630979120731354, + 0.2617112100124359, + -0.40843692421913147, + -0.05383364483714104, + -0.07420371472835541, + 0.005121608730405569, + 0.22903817892074585, + -0.05214007571339607, + -0.49988678097724915, + -0.037973564118146896, + -0.01628163456916809, + 0.18328963220119476, + 0.0718599483370781, + 0.24039645493030548, + -0.23588208854198456, + 0.13739533722400665, + -1.0868237018585205, + 0.1353054940700531, + -0.4249314069747925, + -0.07639597356319427, + 0.04215191677212715, + -0.520112931728363, + -0.27079206705093384, + -0.12117540836334229, + -0.19783902168273926, + 0.1884072870016098, + -0.1896921992301941, + 0.02419360913336277, + 0.014572027139365673, + 0.1534244865179062, + 0.15855737030506134, + 0.3265019655227661, + 0.05376647040247917, + 0.03961685672402382, + -0.004613223019987345, + 0.24374927580356598, + -0.003412604331970215, + -0.21475613117218018, + 0.050643086433410645, + 0.42922309041023254, + 0.040430620312690735, + -0.08765348792076111, + -0.19080179929733276, + -0.7116320133209229, + 0.16399654746055603, + -0.11907307058572769, + 0.1419195681810379, + 0.0400998592376709, + -0.30110105872154236, + 0.22079302370548248, + -0.3581848442554474, + 0.6236982941627502, + 0.209325909614563, + 0.46697887778282166, + 0.1469735950231552, + -0.15091200172901154, + -0.020106399431824684, + 0.1106165274977684, + 0.13190074265003204, + -0.1848374456167221, + 0.5411767959594727, + 0.06484044343233109, + -0.22837883234024048, + 0.11190006881952286, + 0.28079184889793396, + -0.010322482325136662, + -0.2372659295797348, + -0.038122113794088364, + 0.3101612329483032, + -0.2686740756034851, + 0.3785570561885834, + -0.22402171790599823, + -0.006461057811975479, + 0.07098260521888733, + -0.3295261561870575, + -0.24605965614318848, + 0.18706519901752472, + 0.045462582260370255, + 0.1824706792831421, + -0.15605348348617554, + -0.27233314514160156, + 0.06170235946774483, + 0.06722339987754822, + -0.07103795558214188, + 0.30365556478500366, + -0.2193838208913803, + 0.14082218706607819, + -0.11834023147821426, + -0.16000615060329437, + 0.02617289125919342, + -0.2162739634513855, + 0.21900467574596405, + 0.1531858742237091, + -0.3681906461715698, + 0.23178185522556305, + 0.041241612285375595, + -0.09126796573400497, + 0.15578247606754303, + -0.039845060557127, + -0.15267397463321686, + 0.04427572712302208, + -0.08277977257966995, + -0.3639785945415497, + 0.1864762157201767, + 0.1462380588054657, + 0.2494494915008545, + 0.39185941219329834, + -0.04628115892410278, + 0.09356730431318283, + -0.29051804542541504, + 0.07171998172998428, + -0.09823546558618546, + -0.061662692576646805, + -0.3894146978855133, + 0.14118805527687073, + -0.17086265981197357, + 0.017774203792214394, + 0.19957618415355682, + -0.11985643953084946, + -0.10975765436887741, + 0.02056412398815155, + -0.07530368119478226, + -0.04976620897650719, + -0.30624550580978394, + 0.06348299980163574, + 0.21748828887939453, + 0.21417862176895142, + 0.19527415931224823, + -0.11502816528081894, + -0.07707829028367996, + 0.05915222689509392, + -0.2793203592300415, + -0.22302822768688202, + -0.36246511340141296, + -0.08793774247169495, + -0.013654434122145176, + -0.4969799518585205, + 0.10282141715288162, + 0.20606772601604462, + -0.06401608139276505, + 0.0692179724574089, + -0.272441565990448, + -0.20785988867282867, + 0.05761973187327385, + -0.01220112293958664, + 0.00779695063829422, + -0.055667076259851456, + 0.11257278919219971, + -0.13053114712238312, + -0.14200228452682495, + -0.24395447969436646, + -0.0484749861061573, + 0.11776158213615417, + 0.14962710440158844, + -0.27830591797828674, + -0.08560391515493393, + 0.03429291024804115, + -0.4583478271961212, + -0.20286570489406586, + 0.3457643985748291, + -0.08061511069536209, + 0.22190706431865692, + -0.04228323698043823, + 0.2897568941116333, + 0.37156781554222107, + 0.040269188582897186, + 0.08758101612329483, + 0.3575168550014496, + 0.3711719512939453, + 0.1348014920949936, + 0.010586276650428772, + 0.058917462825775146, + -0.14736883342266083, + -0.13646730780601501, + -0.3680027425289154, + 0.432133287191391, + 0.10910732299089432, + 0.05955199897289276, + -0.13387660682201385, + 0.10775426030158997, + 0.129435732960701, + -0.25937047600746155, + -0.15835824608802795, + 0.46602025628089905, + 0.08226340264081955, + 0.11333569884300232, + 0.15931934118270874, + 0.27244317531585693, + 0.5506207346916199, + 0.056283872574567795, + -0.1177898645401001, + -0.002952082082629204, + -0.07795939594507217, + -0.3460918366909027, + -0.011193588376045227, + 0.20395559072494507, + 0.3868861198425293, + -0.1949620097875595, + -0.05413620546460152, + 0.2519850432872772, + -0.10437778383493423, + -0.07473907619714737, + -0.1767989844083786, + -0.15528874099254608, + -0.0036493216175585985, + -0.22104544937610626, + 0.2881387174129486, + 0.05212321877479553, + -0.061581164598464966, + 0.37195953726768494, + -0.31546276807785034, + -0.285865843296051, + 0.21102358400821686, + -0.10048932582139969, + -0.4610379636287689, + 0.35625675320625305, + -0.20660400390625, + 0.009336382150650024, + 0.3097992241382599, + 0.01823459006845951, + -0.06572092324495316, + -0.3018536865711212, + 0.4998917579650879, + -0.004818825516849756, + 0.009323135018348694, + -0.08686176687479019, + -0.02157263457775116, + 0.2092926949262619, + 0.48598727583885193, + 0.2776576578617096, + 0.26407870650291443, + 0.5021997094154358, + 0.05292866751551628, + -0.3201847970485687, + -0.010293897241353989, + 0.01930142007768154, + 0.2083577662706375, + 0.017872212454676628, + -0.0997745469212532, + -0.20195096731185913, + 0.14135365188121796, + 0.04806727170944214, + -0.2895495593547821, + -0.15765996277332306, + 0.10300830006599426, + 0.09191104024648666, + -0.08991285413503647, + 0.1347222775220871, + 0.16443021595478058, + -0.15019647777080536, + 0.40873590111732483, + 0.11141914129257202, + -0.17986440658569336, + 0.34716007113456726, + -0.13305944204330444, + 0.14498968422412872, + 0.026542412117123604, + -0.45693281292915344, + -0.2622758150100708, + 0.06299177557229996, + -0.1966027468442917, + -0.12339267879724503, + 0.03564261272549629, + -0.24511955678462982, + -0.01212288811802864, + -0.21585287153720856, + 0.08216943591833115, + 0.07222449034452438, + 0.2090044617652893, + 0.026764845475554466, + 0.25210943818092346, + -0.0023519210517406464, + -0.20214329659938812, + 0.15313361585140228, + -0.03482188656926155, + 0.08518984168767929, + -0.07289893180131912, + -0.0211122278124094, + 0.02887655794620514, + 0.4490208923816681, + 0.009322263300418854, + -0.11700824648141861, + 0.07086643576622009, + 0.12725088000297546, + -0.17704255878925323, + -0.2755112946033478, + -0.09371540695428848, + -0.236525759100914, + -0.2079169750213623, + 0.034852463752031326, + 0.03758084401488304, + -0.24843399226665497, + -0.0992543175816536, + -0.25878316164016724, + -0.037078987807035446, + 0.28418463468551636, + -0.025112511590123177, + -0.05046451464295387, + 0.43166181445121765, + 0.09265180677175522, + 0.23948855698108673, + -0.23897288739681244, + 0.1966056078672409, + 0.08644597977399826, + -0.2653413712978363, + -0.07257384806871414, + 0.09416624903678894, + -0.32036101818084717, + -0.09898167848587036, + 0.22344045341014862, + 0.273017942905426, + 0.017721040174365044, + 0.036064062267541885, + 0.06076476350426674, + 0.07160507887601852, + -0.3513258695602417, + -0.07528113573789597, + 0.12602455914020538, + 0.12180140614509583, + 0.43987786769866943, + 0.025460751727223396, + -0.41810885071754456, + -0.3014187216758728, + -0.1187405064702034, + -0.29285570979118347, + 0.14673706889152527, + 0.10816717147827148, + -0.11559494584798813, + -0.24644286930561066, + 0.1052325963973999, + -0.07540644705295563, + -0.10527638345956802, + 0.2645913064479828, + -0.11605269461870193, + 0.3188770115375519, + 0.09409498423337936, + -0.19941453635692596, + -0.1022973284125328, + -0.1055799201130867, + -0.24548138678073883, + -0.25419721007347107, + 0.4329320192337036, + 0.3032919466495514, + -0.27796268463134766, + -0.07650706171989441, + 0.036344319581985474, + -0.2901868224143982, + -0.21843081712722778, + -0.0613754503428936, + -0.15664418041706085, + 0.33196431398391724, + -0.061947375535964966, + -0.2609763443470001, + 0.04778829216957092, + -0.2321608066558838, + 0.05074295029044151, + 0.1350148469209671, + 0.05381980910897255, + 0.3563493490219116, + 0.20404304563999176, + -0.025042623281478882, + 0.23857776820659637, + 0.004135454539209604, + 0.025717640295624733, + 0.2688048481941223, + -0.10267829149961472, + 0.09762250632047653, + -0.2286939024925232, + -0.2117881327867508, + 0.16100965440273285, + -0.2713029682636261, + 0.11191627383232117, + 0.27136677503585815, + 0.1811058521270752, + -0.36082980036735535, + -0.3445775806903839, + -0.005027507897466421, + 0.010264168493449688, + -0.032476745545864105, + -0.1523899883031845, + -0.15726633369922638, + 0.07943437248468399, + -0.09339185804128647, + 0.0037190094590187073, + 0.14203356206417084, + 0.28511372208595276, + 0.03123265504837036, + 0.133090540766716, + -0.1909346729516983, + -0.4292370080947876, + 0.17778263986110687, + 0.20621556043624878, + -0.03376324847340584, + -0.07205662876367569, + -0.17686057090759277, + 0.3579288423061371, + 0.44633862376213074, + 0.08407029509544373, + 0.1676807999610901, + 0.022384310141205788, + -0.06089625135064125, + 0.1562354415655136, + 0.13147391378879547, + -0.04968927800655365, + 0.06171289458870888, + -0.3743605613708496, + 0.20814953744411469, + -0.17842815816402435, + -0.12424423545598984, + 0.1923644095659256, + -0.22653888165950775, + -0.4925333261489868, + -0.13193318247795105, + 0.37536486983299255, + -0.1783449798822403, + -0.16527535021305084, + 0.07734335213899612, + 0.630209743976593, + 0.05140430107712746, + -0.24980837106704712, + 0.07699554413557053, + -0.2638345956802368, + -0.040261417627334595, + 0.21359920501708984, + -0.1522991806268692, + -0.12676411867141724, + 0.03392794355750084, + 0.47888946533203125, + 0.3501335382461548, + 0.12325694411993027, + -0.2346516251564026, + 0.08157730847597122, + 0.1257614940404892, + 0.24519479274749756, + -0.21286970376968384, + -10.757946014404297, + -0.009291473776102066, + -0.22756892442703247, + 0.46466031670570374, + -0.5423631072044373, + -0.03934992477297783, + 0.23613341152668, + 0.021213358268141747, + 0.11404453963041306, + 0.096432626247406, + -0.31364408135414124, + -0.09043208509683609, + 0.19289661943912506, + 0.19799643754959106, + 0.0043192096054553986, + -0.09787527471780777, + -0.05964788421988487, + 0.21032612025737762, + 0.08695843070745468, + 0.4032469689846039, + 0.26899588108062744, + 0.4587112367153168, + -0.23318754136562347, + 0.341040700674057, + 0.21177931129932404, + -0.25358524918556213, + -0.12999172508716583, + 0.5090702772140503, + 0.07904168218374252, + -0.18045590817928314, + 0.11377272754907608, + 0.17934560775756836, + -0.2743142545223236, + 0.013526692986488342, + -0.13727936148643494, + -0.1518496870994568, + 0.012820740230381489, + 0.06898484379053116, + 0.20319044589996338, + -0.0939151868224144, + -0.12128333002328873, + -0.2013530731201172, + 0.3259390890598297, + 0.20313094556331635, + -0.0603552907705307, + -0.5567485094070435, + -0.13571934401988983, + -1.37828528881073, + 0.38680556416511536, + 0.5511536598205566, + 0.35951435565948486, + 0.08233394473791122, + 0.22801177203655243, + -0.0017556833336129785, + -0.37520062923431396, + 0.12067506462335587, + -0.25915592908859253, + -0.11339420080184937, + -0.05997457727789879, + 0.08562613278627396, + 0.1080334484577179, + -0.17564284801483154, + 0.4797980487346649, + -0.04734033718705177, + -0.24698187410831451, + 0.16455458104610443, + 0.00929794181138277, + -0.0011195391416549683, + -0.07806984335184097, + -0.32204949855804443, + -0.4876185655593872, + -0.06845023483037949, + 0.03131493926048279, + 0.016115590929985046, + 0.32492128014564514, + 0.0673675611615181, + -0.2671377658843994, + 0.281017005443573, + -0.04551045969128609, + 0.4274679124355316, + 0.11368148773908615, + -0.05841197073459625, + -0.04343247041106224, + -0.0510886125266552, + -0.2187102884054184, + -0.029945336282253265, + 0.05999518930912018, + 0.46895530819892883, + -0.05037398263812065, + -0.014261121861636639, + 0.07995612174272537, + 0.3651233911514282, + 0.09619594365358353, + -0.17362524569034576, + -0.3903440535068512, + 0.0940576121211052, + -0.08401218056678772, + 0.14387647807598114, + 0.029259881004691124, + -0.04417150840163231, + -0.2874564230442047, + 0.1145460233092308, + -0.013347026892006397, + -0.32140982151031494, + -0.3475984036922455, + 0.30111679434776306, + 0.14320456981658936, + 0.3390086591243744, + 0.11561665683984756, + -0.11282595992088318, + -0.22065280377864838, + 0.03474399819970131, + 0.0077105555683374405, + 0.6209810972213745, + 0.16166694462299347, + -0.10412747412919998, + -0.176285982131958, + -0.33293312788009644, + -0.17426474392414093, + 0.11394864320755005, + 0.31655171513557434, + -0.1508679836988449, + 0.20785969495773315, + 0.5534442067146301, + 0.03234969079494476, + 0.01733877696096897, + 1.0026479959487915, + -0.20979785919189453, + 0.2232944220304489, + -0.17640984058380127, + 0.31670764088630676, + -0.1273670792579651, + -0.42214158177375793, + -0.023469025269150734, + 0.441837877035141, + -0.3642885684967041, + 0.5917609930038452, + 0.08573174476623535, + -0.33090928196907043, + 0.0764731913805008, + -0.25858157873153687, + 0.4330381155014038, + 0.3999634087085724, + 0.32319486141204834, + -0.05311533436179161, + -0.20762354135513306, + -0.13541756570339203, + 0.10195139050483704, + -0.30530500411987305, + -0.1826472133398056, + -0.05373845621943474, + 0.1036587730050087, + 0.12404946237802505, + -0.43034979701042175, + 0.4102342426776886, + 0.10685396194458008, + -0.17151479423046112, + -0.3259042203426361, + -0.4469379484653473, + 0.07509299367666245, + 0.19275915622711182, + 0.5745915770530701, + -0.13430829346179962, + 0.025235487148165703, + -0.021532373502850533, + 0.09058181196451187, + 0.013817716389894485, + 0.24007266759872437, + 0.07725784927606583, + -0.040274929255247116, + -0.43460020422935486, + 0.21327219903469086, + -0.0029008935671299696, + -0.34916043281555176, + -0.16649727523326874, + -0.27635350823402405, + 0.07394051551818848, + 0.0357169546186924, + -0.19677084684371948, + 0.11489633470773697, + 0.3298250734806061, + 0.026993470266461372, + 0.005799110978841782, + -0.2985101342201233, + 0.09543661028146744, + 0.16362468898296356, + 0.23410403728485107, + 0.030738964676856995, + -0.25139448046684265, + -0.29827189445495605, + -0.6339108347892761, + 0.16044828295707703, + -0.30021023750305176, + -0.13482405245304108, + 0.10022813081741333, + 0.1504742056131363, + -0.3053823411464691, + -0.010070654563605785, + -0.23116815090179443, + -0.14159628748893738, + -0.1473172903060913, + 0.19586355984210968, + 0.46674203872680664, + -0.164049431681633, + 0.15731263160705566, + -0.29288679361343384, + 0.1594003140926361, + -0.025764748454093933, + -0.2894532382488251, + 0.24564482271671295, + -0.14940187335014343 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_041.json b/src/benchmark/output/results/results_graph_041.json new file mode 100644 index 0000000..eae3de1 --- /dev/null +++ b/src/benchmark/output/results/results_graph_041.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is an adult male with no specified age or background information provided. However, based on the clinical data, it appears that the patient has a history of recurrent abdominal pain and was diagnosed with small intestinal malignancy and lung cancer.\n\n**Timeline of Diagnoses:**\n\n1. **April 2021:** The patient presented with recurrent lower abdominal pain persisting for 6 months.\n2. **April 2021:** Gastrointestinal color Doppler ultrasound and abdominal CT at an external hospital suggested a space-occupying lesion in the small intestine, indicative of a potential malignant tumor.\n3. **April 2021:** Contrast-enhanced abdominal CT at a tertiary (3A) hospital in Chongqing showed thickening of the small intestinal wall in the left mid-to-lower abdomen, accompanied by mass formation and multiple surrounding lesions, suggestive of small intestinal malignancy with lymph node metastasis and possible pelvic peritoneal involvement.\n4. **April 2021:** Comprehensive chest CT identified a space-occupying lesion in the apical-posterior segment of the left upper lobe, highly indicative of lung cancer, with enlarged mediastinal lymph nodes, suggesting potential metastasis.\n\n**Timeline of Treatments:**\n\n1. **Needle biopsies were performed on the lung, mediastinal lymph nodes, and the small intestinal mass:** All three lesions demonstrated features of high-grade neuroendocrine carcinoma, with suspected small-cell carcinoma based on morphological and immunohistochemical (IHC) findings.\n\n**Outcomes:**\nThe patient was diagnosed with small intestinal malignancy and lung cancer. The needle biopsies revealed high-grade neuroendocrine carcinoma, with suspected small-cell carcinoma. The patient's condition is currently active, with ongoing management of the malignancies.\n\n**Clinical Implications:**\nThis case highlights the importance of comprehensive imaging and diagnostic testing in identifying complex malignancies. The patient's presentation with recurrent abdominal pain led to further investigation, which ultimately revealed a diagnosis of small intestinal malignancy and lung cancer. The use of needle biopsies provided valuable information for diagnosis and management.\n\n**Conclusion:**\nThe patient's case demonstrates the need for careful consideration of multiple diagnoses and treatments in complex clinical scenarios. Further evaluation and management are necessary to ensure optimal outcomes for this patient.", + "bertscore": { + "precision": [ + 0.7356710433959961 + ], + "recall": [ + 0.6987081170082092 + ], + "f1": [ + 0.7167133092880249 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 6, + "edge_count": 5, + "avg_in_degree": 0.8333333333333334, + "density": 0.16666666666666666 + }, + "trajectory_embedding": [ + 0.30444931983947754, + 0.006148719694465399, + -0.020611906424164772, + 0.2112845629453659, + 0.04926128312945366, + 0.13728223741054535, + -0.0046950229443609715, + 0.26030847430229187, + 0.554278552532196, + -0.25159505009651184, + -0.08644217997789383, + -0.03688650205731392, + -0.6071491837501526, + -0.13639317452907562, + -0.18794214725494385, + 0.255354106426239, + 0.018570443615317345, + 0.3529287576675415, + -0.0292422566562891, + -0.10695735365152359, + -0.38087329268455505, + 0.16114011406898499, + -0.45488348603248596, + -0.022126339375972748, + 0.17385315895080566, + -0.04319499060511589, + 0.31062307953834534, + 0.47933781147003174, + 0.1913629025220871, + 0.34049686789512634, + 0.06065914407372475, + -0.03895307704806328, + 0.3099106550216675, + -0.07724110037088394, + -0.19021804630756378, + 0.19070327281951904, + 0.2158805876970291, + 0.3263753354549408, + -0.16358424723148346, + 0.08872426301240921, + -0.11923124641180038, + -0.02594313956797123, + 0.8924152255058289, + 0.16465145349502563, + 0.5067108273506165, + -0.6147108674049377, + 0.035269010812044144, + 0.48096713423728943, + -0.6432845592498779, + -0.3640672266483307, + 0.2969453036785126, + 0.9229333996772766, + 0.5794750452041626, + -0.3079588711261749, + 0.34281763434410095, + -0.08395107835531235, + -0.09220344573259354, + -0.3326992690563202, + -0.2840777337551117, + 0.042298391461372375, + -0.01765001006424427, + -0.3581271469593048, + 0.2612505853176117, + -0.22212429344654083, + -0.14039196074008942, + -0.13119292259216309, + -0.28255531191825867, + -0.10580545663833618, + -0.09806380420923233, + -0.29444313049316406, + -0.22714722156524658, + -0.2693648040294647, + -0.16948725283145905, + -0.0007233383948914707, + 0.1431458443403244, + -0.0934605598449707, + 0.37149012088775635, + -0.2216903120279312, + 0.1340092271566391, + 0.21820513904094696, + -0.24443423748016357, + -0.08248379081487656, + 0.10772529989480972, + 0.22480452060699463, + -0.5160013437271118, + 0.020863406360149384, + 0.0022128454875200987, + -0.26790690422058105, + -0.5027165412902832, + 0.12430763244628906, + 0.21313418447971344, + -0.3951311409473419, + -0.05263325944542885, + -0.17984895408153534, + -0.03142170608043671, + 0.06214052811264992, + 0.4918539524078369, + 0.2069437950849533, + 0.7984214425086975, + 0.0700187161564827, + 0.1832888126373291, + 0.039212312549352646, + 0.274178147315979, + 0.12993934750556946, + 0.4045471251010895, + 0.12273794412612915, + 0.18495221436023712, + -0.43898558616638184, + 0.2276018261909485, + 0.318191796541214, + 0.08985934406518936, + -0.3099229037761688, + -0.08233393728733063, + -0.2398369163274765, + 0.28303098678588867, + 0.025178534910082817, + -0.06817688792943954, + 0.13791577517986298, + 0.2812778055667877, + -0.44555583596229553, + -0.20539362728595734, + -0.13564391434192657, + 0.3893418312072754, + 0.3463900089263916, + -0.47483423352241516, + -0.02179686166346073, + -0.16696439683437347, + -0.01214887946844101, + -0.002025596797466278, + 0.21532867848873138, + -0.5002408623695374, + -0.32181844115257263, + -0.021876120939850807, + 0.1852828860282898, + -0.19096696376800537, + 0.17262887954711914, + -0.33545157313346863, + 0.021956196054816246, + -1.056033968925476, + 0.3122813403606415, + -0.2791072428226471, + -0.14266450703144073, + 0.13835079967975616, + -0.506390392780304, + -0.25919875502586365, + -0.2618001103401184, + -0.19948847591876984, + 0.24988268315792084, + -0.21026234328746796, + -0.025773974135518074, + 0.05344414338469505, + -0.0931263193488121, + 0.26468929648399353, + 0.35140061378479004, + 0.039396751672029495, + 0.1885678768157959, + 0.18540626764297485, + 0.2692510783672333, + 0.16111555695533752, + -0.012185454368591309, + -0.026385998353362083, + 0.4496593177318573, + 0.2337803691625595, + -0.029982587322592735, + 0.011976358480751514, + -0.6196801662445068, + -0.08217547833919525, + -0.2398442029953003, + 0.18498434126377106, + 0.036636460572481155, + -0.20689032971858978, + 0.04482651874423027, + -0.40754234790802, + 0.7139418125152588, + -0.009868025779724121, + 0.3622608482837677, + -0.16539287567138672, + -0.037632137537002563, + 0.039667412638664246, + 0.10138120502233505, + 0.07370016723871231, + -0.00611361488699913, + 0.7575839161872864, + 0.20178945362567902, + -0.18210189044475555, + 0.27738118171691895, + 0.3998847007751465, + 0.04084714129567146, + -0.2534026503562927, + 0.07988137751817703, + 0.371152400970459, + -0.39684322476387024, + 0.3362520933151245, + -0.3905141353607178, + -0.07642965763807297, + 0.11023340374231339, + -0.24483756721019745, + 0.04785129055380821, + -0.09020569175481796, + -0.013117658905684948, + 0.4007265269756317, + 0.09082914143800735, + -0.2717071771621704, + -0.018066564574837685, + 0.14314240217208862, + -0.06518880277872086, + 0.34539520740509033, + 0.07815980911254883, + 0.22026914358139038, + 0.1050342321395874, + -0.028370097279548645, + 0.21403586864471436, + -0.27480804920196533, + 0.1927311271429062, + -0.0955771803855896, + -0.4404812157154083, + 0.2970745265483856, + 0.029632292687892914, + -0.37322986125946045, + 0.21108366549015045, + -0.022920817136764526, + -0.3405972421169281, + -0.08165919035673141, + 0.07364395260810852, + -0.5523554682731628, + 0.18252336978912354, + 0.17434632778167725, + 0.2562771737575531, + 0.24669437110424042, + 0.11531581729650497, + -0.03303714096546173, + -0.4176623821258545, + 0.17865632474422455, + -0.04672049358487129, + -0.06918483227491379, + -0.4708064794540405, + 0.18723107874393463, + -0.15054015815258026, + 0.04950685426592827, + 0.47623422741889954, + 0.06712380796670914, + -0.14521940052509308, + 0.3006499707698822, + -0.3246456980705261, + -0.1354231834411621, + -0.46253564953804016, + -0.01633404567837715, + 0.1654849797487259, + -0.010873846709728241, + 0.16212640702724457, + 0.032451435923576355, + -0.20895487070083618, + 0.11191460490226746, + -0.19119377434253693, + -0.4182208478450775, + -0.44818270206451416, + -0.0025364782195538282, + 0.0068997666239738464, + -0.6253132224082947, + 0.2408476024866104, + 0.0479496605694294, + 0.12324211746454239, + -0.06413545459508896, + -0.30534180998802185, + -0.04952164366841316, + 0.10177504271268845, + -0.17027784883975983, + 0.08001428097486496, + -0.23682801425457, + 0.07406959682703018, + -0.30724063515663147, + -0.1402813047170639, + -0.16625487804412842, + -0.033153776079416275, + 0.013500084169209003, + 0.05284463241696358, + -0.27310362458229065, + 0.02987676113843918, + 0.08581081032752991, + -0.2991199791431427, + -0.12384138256311417, + 0.22327731549739838, + -0.05065109208226204, + 0.2236112803220749, + 0.07284777611494064, + 0.19818389415740967, + 0.07360146194696426, + -0.05433400347828865, + 0.03627709671854973, + 0.4331296384334564, + 0.45089077949523926, + 0.05217534676194191, + -0.04589804634451866, + -0.009615320712327957, + 0.03836708143353462, + -0.012824398465454578, + -0.42284658551216125, + 0.6141651272773743, + 0.18734614551067352, + 0.009260669350624084, + 0.004965019878000021, + 0.34772226214408875, + 0.0950869619846344, + -0.5887722373008728, + -0.07243833690881729, + 0.44805195927619934, + 0.22268271446228027, + 0.10217782855033875, + 0.09170948714017868, + 0.358333945274353, + 0.48717963695526123, + -0.1511884480714798, + 0.18778403103351593, + 0.10757309943437576, + -0.06427612900733948, + -0.047633539885282516, + -0.03943520411849022, + 0.009121266193687916, + 0.4501710832118988, + -0.023565126582980156, + -0.13157977163791656, + 0.005113040562719107, + -0.03177742660045624, + -0.14882640540599823, + -0.2571975290775299, + -0.1495993286371231, + 0.07313957810401917, + -0.11296123266220093, + 0.40896472334861755, + 0.0762522742152214, + -0.039601996541023254, + 0.5266361832618713, + -0.30094683170318604, + -0.15773415565490723, + 0.08998563885688782, + -0.24260520935058594, + -0.6098172068595886, + 0.3632773160934448, + -0.1268906146287918, + 0.08715053647756577, + 0.38993844389915466, + -0.1404844969511032, + -0.0275037232786417, + -0.011800660751760006, + 0.47239282727241516, + -0.06554708629846573, + -0.09342939406633377, + -0.030095987021923065, + -0.024251788854599, + 0.27482256293296814, + 0.4917822778224945, + 0.2155463695526123, + 0.35911181569099426, + 0.6020757555961609, + 0.14325813949108124, + -0.4743221700191498, + -0.0849204882979393, + -0.08339674025774002, + 0.5545393824577332, + -0.15834124386310577, + 0.0045108795166015625, + -0.17158234119415283, + -0.18110479414463043, + 0.016027240082621574, + -0.24640847742557526, + 0.060869913548231125, + 0.19582845270633698, + 0.1104227676987648, + 0.001631366671063006, + 0.33998653292655945, + 0.217234805226326, + -0.060860633850097656, + 0.3779362440109253, + -0.19866569340229034, + -0.06605822592973709, + 0.19021575152873993, + -0.30627137422561646, + 0.28145933151245117, + -0.1921641081571579, + -0.17014116048812866, + -0.37121525406837463, + -0.07470063120126724, + -0.22013790905475616, + -0.2916069030761719, + 0.09934493899345398, + -0.2262372225522995, + 0.24052095413208008, + -0.2031622678041458, + 0.19712810218334198, + 0.0374314971268177, + 0.22443974018096924, + 0.08369354158639908, + 0.21870796382427216, + 0.10906540602445602, + -0.2427939623594284, + 0.25505974888801575, + -0.08961344510316849, + -0.049828145653009415, + -0.042969804257154465, + 0.11021926999092102, + -0.16626115143299103, + 0.5141099691390991, + 0.32706594467163086, + -0.05500895157456398, + 0.11451997607946396, + 0.022258758544921875, + -0.018676405772566795, + -0.5041034817695618, + -0.19305311143398285, + -0.06704789400100708, + 0.14567503333091736, + 0.12242142111063004, + 0.04108719527721405, + -0.48506584763526917, + -0.3251029849052429, + -0.01945662684738636, + -0.02414090372622013, + -0.06035957857966423, + -0.17038653790950775, + -0.046822864562273026, + 0.2846166491508484, + 0.19154292345046997, + 0.4806869328022003, + -0.21407096087932587, + -0.04099218174815178, + 0.22916929423809052, + -0.30115312337875366, + -0.09253551810979843, + -0.0006849666242487729, + -0.4004303514957428, + -0.18804192543029785, + 0.17893235385417938, + 0.23328594863414764, + 0.0970485582947731, + -0.0643523707985878, + 0.10600432753562927, + 0.18999671936035156, + -0.466577410697937, + -0.22481556236743927, + 0.27017688751220703, + 0.18388251960277557, + 0.42199158668518066, + 0.019580280408263206, + -0.4013277590274811, + -0.2561156451702118, + -0.16564956307411194, + -0.3570898771286011, + 0.02255196124315262, + 0.2678517997264862, + -0.12221016734838486, + -0.12416303157806396, + 0.08655786514282227, + -0.05185982957482338, + -0.18796586990356445, + 0.23892159759998322, + -0.2473694235086441, + 0.1769278645515442, + 0.04884357750415802, + -0.28820934891700745, + -0.07720305770635605, + -0.20078523457050323, + -0.35594961047172546, + -0.12753050029277802, + 0.29869842529296875, + 0.2541065514087677, + -0.2823350727558136, + 0.07289289683103561, + 0.15148453414440155, + -0.18966080248355865, + -0.17110520601272583, + -0.09432125091552734, + -0.344870924949646, + 0.35822296142578125, + -0.0355808325111866, + -0.11803972721099854, + 0.10400390625, + -0.30159470438957214, + 0.16323436796665192, + 0.1279233992099762, + 0.11932297796010971, + 0.40000447630882263, + 0.16959452629089355, + 0.15890492498874664, + 0.5155372023582458, + 0.15445812046527863, + -0.024118982255458832, + 0.28242015838623047, + 0.06040565297007561, + -0.05152406916022301, + -0.2924273908138275, + -0.3050910532474518, + 0.28235629200935364, + -0.3471207618713379, + -0.20656134188175201, + 0.238897904753685, + 0.23410765826702118, + -0.546714723110199, + -0.25597119331359863, + -0.019604427739977837, + 0.01014996599406004, + -0.05783141031861305, + -0.28189751505851746, + -0.2620813548564911, + -0.038990676403045654, + -0.314668208360672, + -0.13775570690631866, + 0.30791059136390686, + 0.5520555377006531, + 0.19147740304470062, + 0.10137524455785751, + -0.4236726760864258, + -0.32559242844581604, + 0.1396380215883255, + 0.23868192732334137, + 0.05183298513293266, + 0.09206753224134445, + -0.2343614548444748, + 0.1743973046541214, + 0.46334776282310486, + -0.14249153435230255, + 0.18911488354206085, + 0.17258362472057343, + 0.23789972066879272, + 0.10186377912759781, + 0.06508586555719376, + -0.23495805263519287, + 0.07157877832651138, + -0.3077786862850189, + 0.328418105840683, + -0.2931845486164093, + -0.1655489206314087, + 0.19326068460941315, + -0.026658939197659492, + -0.48385629057884216, + -0.2675700783729553, + 0.43084803223609924, + -0.24279634654521942, + 0.00864074844866991, + 0.11004549264907837, + 0.3287257254123688, + 0.05707958713173866, + -0.4006049931049347, + 0.14712657034397125, + -0.5278785228729248, + -0.2744484543800354, + 0.13916929066181183, + -0.16277123987674713, + -0.1344803422689438, + -0.10934121161699295, + 0.30858954787254333, + 0.5813243985176086, + 0.3015866279602051, + -0.052073102444410324, + 0.32112106680870056, + 0.5261365175247192, + 0.36959195137023926, + -0.18850016593933105, + -10.730534553527832, + -0.0708615854382515, + -0.3673832416534424, + 0.5539219975471497, + -0.2215234637260437, + 0.04103736951947212, + -0.019703200086951256, + -0.07160046696662903, + 0.18566738069057465, + 0.06301019340753555, + -0.15237058699131012, + 0.016628960147500038, + 0.25163474678993225, + 0.3467964828014374, + 0.15247754752635956, + 0.0056220307014882565, + -0.28603681921958923, + 0.0821026936173439, + 0.046313751488924026, + 0.10677725821733475, + 0.25656983256340027, + 0.2772279679775238, + -0.34696272015571594, + 0.20607340335845947, + -0.06868680566549301, + -0.25486722588539124, + -0.26402974128723145, + 0.752619743347168, + 0.19968532025814056, + -0.3243994414806366, + 0.24373872578144073, + 0.21412618458271027, + -0.22057366371154785, + 0.3235640525817871, + -0.18494249880313873, + 0.0010357698192819953, + -0.04803740605711937, + 0.16697990894317627, + 0.34204497933387756, + -0.0044882893562316895, + -0.0889766588807106, + -0.22437135875225067, + 0.3465684652328491, + 0.13068701326847076, + -0.22928257286548615, + -0.6267004609107971, + -0.10688800364732742, + -1.593137264251709, + 0.29281461238861084, + 0.39948412775993347, + 0.33917248249053955, + 0.29968854784965515, + 0.0845453143119812, + 0.24865089356899261, + -0.36609458923339844, + -0.11906927078962326, + -0.24041865766048431, + -0.024461349472403526, + 0.11180273443460464, + 0.060140084475278854, + 0.049247175455093384, + -0.06128822639584541, + 0.6248126029968262, + -0.017972350120544434, + -0.4071972370147705, + 0.10678403824567795, + 0.14071334898471832, + -0.14433418214321136, + -0.2388710230588913, + -0.7463133931159973, + -0.6173333525657654, + -0.03395998105406761, + -0.16049452126026154, + -0.12471389770507812, + 0.4761318266391754, + 0.17905636131763458, + -0.20474974811077118, + 0.2829602360725403, + -0.06888570636510849, + 0.3597242534160614, + 0.2990966737270355, + -0.045687273144721985, + 0.2761387825012207, + -0.19643114507198334, + -0.37670040130615234, + -0.24287362396717072, + 0.16618947684764862, + 0.5839872360229492, + 0.15417195856571198, + 0.011940829455852509, + -0.05107298493385315, + 0.29189422726631165, + -0.009147892706096172, + -0.1692267805337906, + -0.378591924905777, + 0.02532440610229969, + -0.09168845415115356, + 0.09745490550994873, + 0.02221209742128849, + -0.332234650850296, + -0.16111986339092255, + 0.2007821649312973, + -0.08203088492155075, + -0.6269351840019226, + -0.44170525670051575, + 0.22449319064617157, + 0.14554975926876068, + 0.07123468071222305, + 0.03528293967247009, + -0.2921448349952698, + -0.20748262107372284, + 0.0266004279255867, + 0.17636388540267944, + 0.48992180824279785, + 0.11791204661130905, + -0.021128976717591286, + 0.06944285333156586, + -0.4364292621612549, + -0.08674383908510208, + -0.04822637140750885, + 0.3690490424633026, + -0.3274513781070709, + 0.24739038944244385, + 0.6773386001586914, + 0.11457597464323044, + -0.14864380657672882, + 0.9107500910758972, + -0.21528442203998566, + 0.2635842263698578, + -0.05684453248977661, + 0.10948190838098526, + -0.025602400302886963, + -0.40036359429359436, + 0.2605412006378174, + 0.47099781036376953, + -0.36715424060821533, + 0.8704816699028015, + 0.403118759393692, + -0.3874496519565582, + 0.0940251275897026, + -0.37551936507225037, + 0.40201130509376526, + 0.23748748004436493, + 0.18106471002101898, + -0.09214673191308975, + -0.22057150304317474, + -0.2621111571788788, + 0.13304631412029266, + -0.4304714500904083, + -0.3130161464214325, + -0.04137923941016197, + 0.2878616154193878, + 0.2829015552997589, + -0.06744743138551712, + 0.27781134843826294, + 0.22156965732574463, + -0.08226055651903152, + -0.2263639122247696, + -0.5534052848815918, + -0.149614617228508, + 0.029097318649291992, + 0.9729077816009521, + -0.09425804764032364, + 0.055647049099206924, + -0.07625884562730789, + 0.14813709259033203, + -0.2152082473039627, + 0.08070487529039383, + 0.13397134840488434, + -0.12320569902658463, + -0.45756617188453674, + 0.16502054035663605, + 0.10859443992376328, + -0.35189089179039, + -0.09274943917989731, + -0.08054706454277039, + -0.2427108883857727, + 0.17539434134960175, + -0.2347908765077591, + -0.0715331956744194, + 0.39140722155570984, + -0.0908501073718071, + 0.09455703943967819, + -0.38132593035697937, + -0.05619875714182854, + 0.1364186853170395, + 0.23979268968105316, + 0.17700563371181488, + -0.40335068106651306, + -0.336508184671402, + -0.5706771612167358, + 0.3133560121059418, + -0.3139462471008301, + 0.009091004729270935, + 0.06701447814702988, + 0.12172123789787292, + -0.2826508581638336, + 0.0670294463634491, + -0.0831211730837822, + 0.13625100255012512, + -0.3051292598247528, + 0.34360718727111816, + 0.3293860852718353, + -0.216498002409935, + 0.32716473937034607, + -0.02775339037179947, + 0.15987886488437653, + -0.045110415667295456, + -0.3444202244281769, + 0.13037140667438507, + -0.288843035697937 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_042.json b/src/benchmark/output/results/results_graph_042.json new file mode 100644 index 0000000..d25aca4 --- /dev/null +++ b/src/benchmark/output/results/results_graph_042.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 55-year-old male with an 80-pack year smoking history and a positive family history of lung cancer. He presented to the emergency department with symptoms of fevers, productive cough, dyspnea, and wheeze.\n\n**Timeline of Diagnoses:**\n\n1. **Initial Presentation (Step 1):**\nThe patient was treated with oral amoxicillin and oral prednisone for his initial presentation of community-acquired pneumonia. However, his symptoms deteriorated, leading to a worsening consolidation on repeat chest X-ray.\n2. **Chest X-ray and Diagnosis (Step 2):**\nA chest X-ray revealed right middle and lower lobe consolidation with associated moderate pleural effusion, confirming the diagnosis of community-acquired pneumonia. The patient was admitted and treated for SIADH (Syndrome of Inappropriate Antidiuretic Hormone).\n3. **CT Scan and Diagnosis (Step 3):**\nA CT scan of the thorax revealed a right hilar mass with mediastinal involvement and right-sided hilar adenopathy with superimposed extensive air space consolidation, leading to a diagnosis of small cell lung cancer.\n\n**Timeline of Treatments:**\n\n1. **Initial Treatment (Step 1):**\nThe patient was treated with oral amoxicillin and oral prednisone for community-acquired pneumonia.\n2. **Intravenous Piperacillin-Tazobactam and Oral Clarithromycin (Step 2):**\nDespite treatment, the patient's condition deteriorated, and he was transferred to the intensive care unit, intubated, and ventilated.\n3. **Bronchoscopy with Biopsy (Step 3):**\nA biopsy during bronchoscopy revealed histologically monotonous, small cells with dark ovoid nuclei, no nucleoli, and several mitotic figures, confirming the diagnosis of small cell lung cancer.\n\n**Outcome:**\n\nThe patient was diagnosed with extensive stage disease with adrenal metastases. Full staging consisting of a CT-scan of the brain and Thorax-Abdomen-Pelvis confirmed the extent of the disease. The patient's condition continued to deteriorate, and he required ongoing treatment for small cell lung cancer.\n\n**Conclusion:**\n\nThis case highlights the importance of early diagnosis and aggressive treatment in patients with small cell lung cancer. Despite initial treatment for community-acquired pneumonia, the patient's symptoms worsened, leading to a delayed diagnosis of small cell lung cancer. Early intervention with bronchoscopy and biopsy is crucial in confirming the diagnosis and initiating appropriate treatment.", + "bertscore": { + "precision": [ + 0.7257970571517944 + ], + "recall": [ + 0.6911720037460327 + ], + "f1": [ + 0.7080615162849426 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 3, + "edge_count": 2, + "avg_in_degree": 0.6666666666666666, + "density": 0.3333333333333333 + }, + "trajectory_embedding": [ + 0.176760733127594, + 0.1953790932893753, + -0.051017407327890396, + 0.14911989867687225, + 0.029277389869093895, + -0.0038739393930882215, + -0.07321859896183014, + 0.11192312836647034, + 0.3296187222003937, + -0.43098923563957214, + -0.27918359637260437, + 0.277006596326828, + -0.8611040115356445, + -0.04954497516155243, + -0.2710709273815155, + -0.19137026369571686, + 0.1420251578092575, + 0.4031757414340973, + 0.10346460342407227, + -0.22770468890666962, + -0.3608964681625366, + 0.03099057264626026, + -0.5080804824829102, + -0.07784568518400192, + 0.05579877272248268, + 0.01793581247329712, + 0.1847047656774521, + 0.5364610552787781, + 0.3066644072532654, + 0.11463487893342972, + 0.11377624422311783, + 0.09345194697380066, + -0.3991524279117584, + 0.09671714901924133, + 0.0026664312463253736, + 0.47183895111083984, + 0.22618961334228516, + 0.19951260089874268, + -0.04075576737523079, + 0.07840671390295029, + 0.0052877566777169704, + 0.06341569870710373, + 0.617622435092926, + 0.35639631748199463, + 0.7551865577697754, + -0.5256202220916748, + 0.0021676868200302124, + 0.4564478397369385, + -0.5953836441040039, + -0.16581304371356964, + 0.17912375926971436, + 0.7993693351745605, + 0.5948236584663391, + 0.019268540665507317, + 0.5925260186195374, + -0.016624385491013527, + -0.3558383285999298, + 0.08631757646799088, + -0.27802327275276184, + 0.1422765851020813, + 0.11728540807962418, + 0.03832729533314705, + -0.036142852157354355, + 0.023794079199433327, + -0.3296973407268524, + -0.07221303135156631, + -0.25971147418022156, + 0.1371050775051117, + -0.13026796281337738, + -0.6547752022743225, + -0.21225517988204956, + -0.332579106092453, + -0.3397000730037689, + 0.2052355259656906, + 0.2875135838985443, + -0.3090141713619232, + 0.0012041330337524414, + -0.0013058781623840332, + -0.11375304311513901, + -0.2560129463672638, + 0.2976473867893219, + 0.07212474197149277, + 0.20104221999645233, + 0.30518805980682373, + -0.20540392398834229, + 0.17234499752521515, + -0.21182261407375336, + 0.13605709373950958, + 0.020500915125012398, + 0.24396371841430664, + -0.06944471597671509, + -0.05467161163687706, + 0.14779908955097198, + -0.1364244669675827, + 0.4281114637851715, + -0.3787524402141571, + 0.20131908357143402, + 0.3505699932575226, + 0.9610412120819092, + -0.11861929297447205, + 0.1679016500711441, + 0.15708953142166138, + 0.4255848228931427, + 0.07983220368623734, + 0.45402953028678894, + -0.06933274120092392, + 0.26480138301849365, + -0.3294649124145508, + -0.004628519061952829, + 0.050210271030664444, + 0.036194976419210434, + -0.1681593656539917, + 0.18578600883483887, + -0.30561795830726624, + -0.14128059148788452, + 0.08334984630346298, + -0.2851807475090027, + 0.018453950062394142, + -0.3289964199066162, + -0.19804048538208008, + 0.14542773365974426, + -0.3856911361217499, + 0.18717539310455322, + 0.06334962695837021, + -0.5010031461715698, + -0.13175028562545776, + -0.08844069391489029, + 0.033652182668447495, + -0.0029546990990638733, + 0.14489586651325226, + -0.44844546914100647, + -0.1317819356918335, + 0.14936427772045135, + 0.4307573139667511, + -0.08657777309417725, + 0.21823585033416748, + -0.5918814539909363, + 0.41923364996910095, + -1.3499425649642944, + 0.1190687045454979, + -0.3193255662918091, + 0.02653350867331028, + -0.024259373545646667, + -0.6500796675682068, + -0.09716632962226868, + 0.013658921234309673, + -0.16403459012508392, + 0.049708668142557144, + 0.10704775899648666, + 0.04599747434258461, + -0.359287291765213, + 0.1533820778131485, + 0.02779846452176571, + -0.02463662624359131, + 0.10845767706632614, + 0.18330542743206024, + 0.29589682817459106, + 0.45472416281700134, + 0.3848477900028229, + -0.2159098982810974, + -0.20531630516052246, + 0.2351929396390915, + -0.12688887119293213, + -0.12528391182422638, + 0.05640178918838501, + -0.689354419708252, + 0.3644484579563141, + -0.13600732386112213, + 0.15285834670066833, + -0.011670471169054508, + 0.051672324538230896, + 0.24712301790714264, + 0.12494352459907532, + 0.304101824760437, + 0.2736234664916992, + 0.4137122631072998, + 0.10276854038238525, + 0.08590883016586304, + 0.4124111235141754, + 0.10651130229234695, + 0.1396188586950302, + -0.09126026183366776, + 0.42278575897216797, + 0.206817626953125, + -0.4564301073551178, + 0.09470834583044052, + 0.46839380264282227, + -0.2693515717983246, + -0.39169231057167053, + -0.3115884065628052, + 0.2925197184085846, + -0.08546879142522812, + 0.17808695137500763, + -0.2727504372596741, + 0.15435650944709778, + 0.08746976405382156, + -0.39952540397644043, + -0.12534818053245544, + 0.346821665763855, + -0.04405486211180687, + 0.14733943343162537, + 0.1411191076040268, + 0.10362551361322403, + -0.05016171559691429, + 0.11964450031518936, + -0.209400475025177, + 0.46075424551963806, + 0.12432900071144104, + -0.018589450046420097, + -0.16844654083251953, + -0.08816959708929062, + 0.2965429127216339, + 0.19664736092090607, + 0.3215891718864441, + 0.0178938377648592, + -0.2796410620212555, + 0.188285231590271, + -0.0052331886254251, + -0.20459836721420288, + -0.051705848425626755, + -0.13801994919776917, + 0.044523030519485474, + 0.5482098460197449, + -0.08471328765153885, + -0.028035184368491173, + 0.20628733932971954, + 0.40967774391174316, + 0.21446162462234497, + 0.16855184733867645, + -0.044506046921014786, + 0.05750409886240959, + -0.46756669878959656, + 0.29467102885246277, + -0.10089502483606339, + -0.1413004845380783, + -0.4109868109226227, + 0.0672823116183281, + -0.1269810050725937, + -0.2562849819660187, + 0.21275724470615387, + -0.0876331552863121, + 0.06560695916414261, + 0.05654078349471092, + -0.20784306526184082, + 0.24041442573070526, + -0.3613337278366089, + 0.12500035762786865, + 0.616300106048584, + 0.10365105420351028, + 0.15147890150547028, + 0.10427824407815933, + -0.06110277771949768, + 0.4667545258998871, + -0.4844733774662018, + -0.24172718822956085, + -0.20445966720581055, + -0.2697950303554535, + -0.05595904588699341, + -0.17320246994495392, + 0.22019989788532257, + -0.337723970413208, + -0.08011826127767563, + 0.3359011113643646, + -0.20389066636562347, + -0.11227845400571823, + -0.18794380128383636, + 0.10551958531141281, + 0.22360821068286896, + 0.19195719063282013, + 0.00779077410697937, + -0.25294092297554016, + -0.09578210115432739, + -0.03647639602422714, + -0.1060033068060875, + 0.29585540294647217, + 0.42808738350868225, + -0.03658367320895195, + 0.15350563824176788, + 0.27926725149154663, + -0.5604315400123596, + -0.41471102833747864, + 0.14428895711898804, + -0.3980361521244049, + 0.27606824040412903, + -0.07569596916437149, + 0.009504512883722782, + 0.4999682903289795, + -0.05888872221112251, + 0.05150116980075836, + 0.19976115226745605, + 0.3974734842777252, + 0.27117249369621277, + -0.045356765389442444, + -0.08909095078706741, + -0.24926887452602386, + -0.020168231800198555, + -0.417531818151474, + 0.32412901520729065, + -0.03255428373813629, + -0.06625912338495255, + 0.3134082853794098, + 0.14072097837924957, + -0.08817127346992493, + -0.39243069291114807, + -0.31279775500297546, + 0.37170663475990295, + 0.12233477830886841, + -0.03529100492596626, + 0.04317374899983406, + 0.2573303282260895, + 0.89295893907547, + 0.07392948120832443, + -0.27497604489326477, + -0.014985700137913227, + -0.029071403667330742, + -0.22791443765163422, + 0.07956498861312866, + -0.1362917423248291, + 0.08953604847192764, + -0.20919257402420044, + -0.11047200113534927, + 0.5780686736106873, + -0.24313819408416748, + -0.019021116197109222, + 0.15542905032634735, + 0.09759455919265747, + -0.14222872257232666, + -0.2825522720813751, + 0.30805858969688416, + -0.5111961960792542, + -0.2703641653060913, + 0.5282735824584961, + -0.024953065440058708, + -0.18077902495861053, + 0.3839209973812103, + 0.10003919154405594, + -0.6877467036247253, + 0.05104682222008705, + -0.24696798622608185, + 0.01559971272945404, + 0.2788621485233307, + -0.008360214531421661, + -0.19113872945308685, + -0.403539776802063, + 0.06188927963376045, + 0.2664903998374939, + 0.051772892475128174, + -0.07798878103494644, + -0.25968730449676514, + 0.4350776672363281, + 0.40839776396751404, + -0.03997641056776047, + 0.15586845576763153, + 0.06610652804374695, + -0.35201239585876465, + 0.01364248525351286, + -0.29486972093582153, + 0.2955475151538849, + 0.0634290799498558, + -0.43355831503868103, + -0.27381500601768494, + -0.3912229835987091, + 0.20843924582004547, + 0.11445034295320511, + -0.15392738580703735, + -0.2048659324645996, + -0.025825968012213707, + -0.15386046469211578, + 0.037808600813150406, + 0.45052245259284973, + 0.2948647439479828, + -0.019571436569094658, + 0.567939043045044, + 0.023282736539840698, + -0.20568548142910004, + 0.2070475071668625, + -0.08443775773048401, + 0.19174475967884064, + -0.099333256483078, + -0.5209765434265137, + -0.4246678054332733, + -0.04948423430323601, + -0.47326698899269104, + -0.04744750261306763, + -0.024361511692404747, + 0.2183607965707779, + -0.20858126878738403, + 0.01522951852530241, + -0.017802583053708076, + 0.3053441643714905, + 0.28690871596336365, + -0.04408945143222809, + 0.7120891213417053, + 0.23640896379947662, + -0.26640576124191284, + 0.0014102855930104852, + -0.3209123909473419, + 0.05637433007359505, + 0.0466746985912323, + 0.15954428911209106, + -0.22269035875797272, + 0.325716108083725, + -0.15379256010055542, + -0.41118502616882324, + -0.18634571135044098, + -0.28260573744773865, + -0.25647491216659546, + -0.39370647072792053, + 0.1004372239112854, + -0.1269788146018982, + -0.17018036544322968, + 0.16157053411006927, + 0.12490684539079666, + 0.1283322274684906, + -0.1097780093550682, + 0.13323421776294708, + 0.46153607964515686, + 0.15318118035793304, + 0.04895490035414696, + 0.1789567470550537, + 0.1648648977279663, + -0.06159451603889465, + 0.3219197690486908, + 0.025522267445921898, + 0.23592786490917206, + 0.19767038524150848, + -0.5436839461326599, + 0.04449917748570442, + 0.008271892555058002, + -0.2718560993671417, + 0.1464080661535263, + 0.28075283765792847, + 0.012192651629447937, + -0.05324164032936096, + -0.1414031833410263, + -0.16207380592823029, + 0.11525227874517441, + -0.2502630650997162, + -0.1339118331670761, + 0.4359862804412842, + -0.16172578930854797, + 0.6355075836181641, + -0.14171887934207916, + -0.37877917289733887, + -0.15431591868400574, + 0.21045853197574615, + -0.37274932861328125, + 0.21095125377178192, + -0.25941893458366394, + -0.4650915563106537, + -0.10340850800275803, + 0.08325918018817902, + -0.06945455819368362, + -0.06968525052070618, + 0.13126736879348755, + -0.05673785135149956, + 0.26779162883758545, + 0.055392712354660034, + -0.4166419208049774, + 0.03647809848189354, + -0.47522807121276855, + -0.4738325774669647, + -0.09521538019180298, + 0.4758619964122772, + 0.11976557970046997, + 0.07454589754343033, + 0.006608337163925171, + 0.05471857264637947, + -0.15914873778820038, + -0.5294473767280579, + -0.14684784412384033, + 0.10514563322067261, + 0.4952622354030609, + -0.09489969164133072, + -0.14742045104503632, + 0.27939850091934204, + -0.334784597158432, + 0.028686678037047386, + 0.23571622371673584, + 0.1252385675907135, + 0.05279863253235817, + 0.09560441225767136, + 0.22002921998500824, + 0.12166499346494675, + 0.28376397490501404, + 0.13331301510334015, + 0.05580762028694153, + -0.0864090844988823, + 0.09063669294118881, + 0.059817779809236526, + -0.20827162265777588, + 0.45342445373535156, + -0.31427082419395447, + 0.3520161211490631, + -0.09930475801229477, + 0.5307863354682922, + -0.33972644805908203, + -0.3655671179294586, + -0.1881479024887085, + -0.18258804082870483, + -0.127990260720253, + -0.40887418389320374, + -0.1714436411857605, + 0.262963205575943, + -0.14577850699424744, + -0.05530623719096184, + 0.3025950789451599, + 0.16022606194019318, + 0.12745222449302673, + 0.0077459439635276794, + -0.2655176818370819, + -0.632535994052887, + 0.1538219004869461, + 0.49684441089630127, + 0.19823694229125977, + -0.34642505645751953, + -0.09009170532226562, + 0.28932783007621765, + 0.4393061697483063, + 0.11179962754249573, + -0.19989784061908722, + -0.1259882003068924, + 0.01101820170879364, + -0.3703646659851074, + -0.056064192205667496, + -0.1558464914560318, + 0.22711406648159027, + -0.32530638575553894, + 0.01644144020974636, + 0.08265962451696396, + -0.3949767053127289, + 0.23712849617004395, + -0.5054845213890076, + -0.5108644366264343, + 0.11063441634178162, + -0.028105640783905983, + -0.04547194764018059, + 0.05530448257923126, + 0.2863953113555908, + 0.45693543553352356, + 0.030841201543807983, + -0.033988796174526215, + 0.2957148551940918, + -0.47486379742622375, + 0.2359715849161148, + 0.17620253562927246, + -0.09015596657991409, + 0.23344407975673676, + 0.0012347897281870246, + 0.33786121010780334, + 0.27197620272636414, + 0.14999990165233612, + -0.49232470989227295, + 0.201588436961174, + 0.08742823451757431, + 0.39287471771240234, + -0.1673954278230667, + -10.671639442443848, + 0.38340577483177185, + -0.09533160924911499, + 0.47304537892341614, + -0.25323596596717834, + -0.17169515788555145, + -0.2515290677547455, + 0.17949140071868896, + 0.04081028699874878, + 0.19899797439575195, + -0.22160349786281586, + 0.24038934707641602, + 0.2943352460861206, + 0.4289005994796753, + -0.0772964134812355, + 0.0583774708211422, + -0.02861029841005802, + 0.3841901123523712, + -0.23587171733379364, + 0.24684830009937286, + 0.2615526616573334, + 0.3133337199687958, + -0.16772590577602386, + 0.5396270155906677, + 0.2792489230632782, + -0.27337634563446045, + -0.15890295803546906, + 0.09174960106611252, + 0.07703473418951035, + -0.5801268219947815, + 0.5248361229896545, + 0.22420674562454224, + -0.2239551693201065, + -0.1485213190317154, + 0.10806968808174133, + -0.4040209949016571, + -0.10093700885772705, + -0.11034881323575974, + 0.21808882057666779, + 0.08912518620491028, + 0.24358980357646942, + -0.36630353331565857, + -0.1102854534983635, + 0.3008137345314026, + -0.18784068524837494, + -0.31603947281837463, + -0.32549622654914856, + -1.5355390310287476, + 0.1900397092103958, + 0.4430789053440094, + 0.5844447016716003, + 0.09567203372716904, + 0.0803869292140007, + 0.25372055172920227, + -0.26404860615730286, + 0.2008887678384781, + -0.36325278878211975, + 0.13599081337451935, + 0.17971085011959076, + -0.26277604699134827, + 0.18849825859069824, + -0.2315889596939087, + 0.16898703575134277, + -0.4930959641933441, + -0.3613952398300171, + 0.08705425262451172, + -0.12067624181509018, + -0.14602230489253998, + -0.17770004272460938, + -0.15405301749706268, + -0.3939475119113922, + 0.019526440650224686, + 0.18451924622058868, + -0.16590403020381927, + 0.326973557472229, + 0.06615959107875824, + -0.6035897731781006, + 0.1961844563484192, + -0.2545764744281769, + 0.431539922952652, + 0.35627272725105286, + 0.0010225375881418586, + 0.04850681126117706, + -0.19375044107437134, + -0.2871033251285553, + -0.1466614305973053, + -0.09381990879774094, + 0.4194973409175873, + 0.19034157693386078, + 0.10091809183359146, + 0.11657927185297012, + 0.10435723513364792, + -0.33405789732933044, + -0.09452996402978897, + -0.43706297874450684, + 0.3594597578048706, + 0.1551724374294281, + 0.1706889420747757, + 0.12404068559408188, + 0.01611391454935074, + -0.2693396508693695, + -0.016864558681845665, + -0.18417353928089142, + -0.21909146010875702, + -0.11883008480072021, + 0.19189679622650146, + 0.29081234335899353, + 0.09379366785287857, + 0.46491947770118713, + 0.2151120901107788, + 0.2995355427265167, + 0.068540558218956, + 0.46501049399375916, + 0.49218252301216125, + 0.12894625961780548, + -0.2741226851940155, + -0.3826291859149933, + 0.025669187307357788, + -0.2856440842151642, + 0.2849830090999603, + 0.1671065241098404, + 0.060206856578588486, + 0.1865176409482956, + 0.5717129707336426, + -0.05836807191371918, + 0.06237626448273659, + 0.9824534058570862, + -0.3012833297252655, + 0.4209674596786499, + -0.008629280142486095, + 0.19291043281555176, + 0.06605979055166245, + -0.4317258894443512, + 0.029167592525482178, + 0.27556514739990234, + -0.2667998969554901, + 0.4749845564365387, + 0.10919895768165588, + -0.21581274271011353, + 0.04922570660710335, + -0.34519684314727783, + 0.37242913246154785, + 0.12207848578691483, + 0.16078944504261017, + -0.30542969703674316, + -0.37706276774406433, + -0.17368878424167633, + 0.0968138799071312, + -0.35141775012016296, + -0.08435503393411636, + -0.19869549572467804, + 0.003198837162926793, + -0.0310613214969635, + -0.41230401396751404, + 0.42263761162757874, + 0.019141511991620064, + -0.15781597793102264, + -0.07599152624607086, + -0.461268812417984, + -0.1550312042236328, + 0.001110504032112658, + 0.37515008449554443, + 0.27536654472351074, + -0.2189927101135254, + -0.2458224892616272, + 0.33492311835289, + -0.08430560678243637, + 0.059805672615766525, + 0.023478565737605095, + 0.09936013072729111, + -0.5733371376991272, + 0.25314828753471375, + 0.11184410005807877, + -0.5116942524909973, + -0.42027080059051514, + -0.40867987275123596, + 0.40452876687049866, + -0.016795402392745018, + 0.06636976450681686, + 0.6065109372138977, + 0.21969683468341827, + -0.010983326472342014, + 0.16668827831745148, + -0.3131900727748871, + 0.10839418321847916, + 0.14119262993335724, + -0.08084989339113235, + 0.20771722495555878, + -0.2592562437057495, + -0.35060128569602966, + -0.33079805970191956, + 0.2536146938800812, + -0.3335017263889313, + 0.017967144027352333, + -0.18372531235218048, + 0.09738472104072571, + -0.4425588846206665, + 0.15516291558742523, + -0.1677524298429489, + -0.14607693254947662, + -0.33311915397644043, + 0.07226600497961044, + 0.3769802153110504, + -0.35753121972084045, + 0.11794805526733398, + -0.23631729185581207, + 0.18605948984622955, + 0.12442031502723694, + -0.50091153383255, + 0.2867233157157898, + -0.11931165307760239 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_043.json b/src/benchmark/output/results/results_graph_043.json new file mode 100644 index 0000000..4903810 --- /dev/null +++ b/src/benchmark/output/results/results_graph_043.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 45-year-old female with a history of smoking (25 years, averaging 20 cigarettes per day) and no comorbidities. She has an Eastern Cooperative Oncology Group Performance Status of 1 (ECOG PS 1).\n\n**Timeline of Diagnoses:**\n\n* July 2023: The patient experiences frequent headaches, forgetfulness, and uncontrollable hand tremors.\n* August 2023: A metastatic lung cancer diagnosis is made with brain lesions. Imaging reveals an expansive frontal lesion in diameter of 3.9 \u00d7 3.4 \u00d7 3.8 cm, bordered by extensive perifocal vasogenic edema with a compressive effect on the surrounding brain parenchyma.\n* August 2023: A family history positive for malignancy (mother suffered from lung and cervical cancer) is noted.\n\n**Timeline of Treatments:**\n\n* August 2023: The patient undergoes surgery for a tumor in the frontal region of the left hemisphere of the brain.\n* September 2023: The cerebellar tumor is treated with X-knife radiosurgery. Pathohistological analysis reveals primary lung adenocarcinoma, and Pembrolizumab treatment is initiated due to PD-L1 expression > 50%.\n* October 2023: Follow-up imaging shows immune unconfirmed progressive disease (iUPD) in the upper left lobe, lymph node conglomerate, pericardial effusion, and stable disease in the endocranium.\n\n**Timeline of Outcomes:**\n\n* August 2023: The patient is diagnosed with metastatic lung cancer and brain lesions.\n* September 2023: The cerebellar tumor is treated successfully with X-knife radiosurgery.\n* October 2023: Follow-up imaging shows immune unconfirmed progressive disease (iUPD) in the upper left lobe, indicating a potential recurrence of the cancer.\n\n**Clinical Progression:**\nThe patient's clinical progression has been marked by an initial presentation of symptoms suggestive of neurological involvement (headaches, forgetfulness, hand tremors), followed by a diagnosis of metastatic lung cancer with brain lesions. The patient underwent surgery for a tumor in the frontal region of the left hemisphere of the brain and was treated with X-knife radiosurgery for the cerebellar tumor. Despite these interventions, follow-up imaging has revealed immune unconfirmed progressive disease (iUPD) in the upper left lobe, indicating a potential recurrence of the cancer.\n\n**Conclusion:**\nThis patient's clinical case highlights the complexities of managing metastatic lung cancer with brain lesions. The patient's initial presentation and subsequent diagnosis were marked by significant neurological involvement, which required prompt intervention. While the patient has undergone several treatments, including surgery and X-knife radiosurgery, follow-up imaging has revealed a potential recurrence of the cancer. Further management strategies will be necessary to address this emerging issue.", + "bertscore": { + "precision": [ + 0.40210187435150146 + ], + "recall": [ + 0.5993436574935913 + ], + "f1": [ + 0.48129868507385254 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 6, + "edge_count": 5, + "avg_in_degree": 0.8333333333333334, + "density": 0.16666666666666666 + }, + "trajectory_embedding": [ + 0.09525909274816513, + 0.09550046175718307, + -0.20907330513000488, + 0.1778288334608078, + -0.01808859594166279, + -0.017407741397619247, + 0.1336432248353958, + 0.2776424288749695, + 0.3049672544002533, + -0.5186644196510315, + -0.39235493540763855, + 0.13863205909729004, + -0.6392437219619751, + -0.09407756477594376, + -0.36295297741889954, + -0.03038630820810795, + 0.13283970952033997, + 0.26260003447532654, + -0.005716294050216675, + -0.1553003042936325, + -0.42395004630088806, + 0.08819957822561264, + -0.43013647198677063, + -0.15254174172878265, + 0.2930234372615814, + -0.09525247663259506, + 0.2066822648048401, + 0.4679269790649414, + 0.2818489968776703, + 0.20123203098773956, + 0.14681705832481384, + 0.03852735087275505, + -0.12049124389886856, + 0.0010110443690791726, + -0.03518563508987427, + 0.3390667140483856, + 0.40244463086128235, + 0.2594294548034668, + -0.06875213235616684, + 0.07848862558603287, + -0.0702722892165184, + 0.23162691295146942, + 0.7816303372383118, + 0.4180329740047455, + 0.5912573933601379, + -0.530232846736908, + 0.05792836844921112, + 0.46866393089294434, + -0.565815269947052, + -0.19378648698329926, + 0.0774909257888794, + 0.6212816834449768, + 0.6538401246070862, + -0.09370245784521103, + 0.49504420161247253, + -0.11058912426233292, + -0.3751920759677887, + -0.13758356869220734, + -0.17873086035251617, + 0.10599756240844727, + -0.09670057147741318, + 0.09471055865287781, + 0.1734563112258911, + 0.07272247970104218, + -0.24201028048992157, + -0.312794953584671, + -0.19031043350696564, + 0.1045469418168068, + -0.016497353091835976, + -0.501361072063446, + -0.3281736671924591, + -0.2012891173362732, + -0.09983757138252258, + 0.13818290829658508, + 0.30403706431388855, + -0.29739320278167725, + 0.3016909956932068, + 0.031920790672302246, + -0.11211105436086655, + 0.14282028377056122, + 0.295123428106308, + -0.16561834514141083, + 0.007161051034927368, + 0.20809270441532135, + -0.363174170255661, + 0.15119221806526184, + -0.09141770005226135, + -0.14454706013202667, + -0.2314302921295166, + 0.316809743642807, + 0.22135423123836517, + -0.21415914595127106, + -0.11266795545816422, + -0.09321215003728867, + 0.2281026989221573, + -0.017894569784402847, + 0.19705061614513397, + 0.5171425938606262, + 1.1243793964385986, + 0.03885626792907715, + 0.22470365464687347, + 0.08844824880361557, + 0.2244553565979004, + -0.00871605146676302, + 0.5624383091926575, + -0.07938951998949051, + 0.13358695805072784, + -0.5366116762161255, + -0.029276179149746895, + 0.3883516788482666, + 0.0010936235776171088, + -0.08579659461975098, + 0.15381455421447754, + -0.5134308338165283, + -0.09461348503828049, + 0.1553531438112259, + -0.12409541010856628, + 0.02394341491162777, + 0.030190065503120422, + -0.42640796303749084, + -0.1338324397802353, + -0.2208145260810852, + 0.4372215270996094, + 0.30920493602752686, + -0.6668525338172913, + -0.06948386132717133, + -0.23411144316196442, + 0.3144535720348358, + -0.026524623855948448, + 0.1361847072839737, + -0.5228275060653687, + -0.03873586654663086, + -0.1162203773856163, + 0.27695176005363464, + -0.24489302933216095, + 0.3557276427745819, + -0.5206514000892639, + 0.13910776376724243, + -1.1145668029785156, + 0.3693017065525055, + -0.4768098294734955, + -0.1623704731464386, + 0.10079312324523926, + -0.4389355182647705, + -0.15953339636325836, + -0.2504326403141022, + -0.08854974061250687, + 0.08887997269630432, + 0.044769495725631714, + -0.10872507840394974, + -0.1022803857922554, + 0.22332735359668732, + 0.2131807655096054, + 0.3020921051502228, + 0.08886826038360596, + 0.2041633278131485, + 0.0937061533331871, + 0.3795553743839264, + 0.34449532628059387, + -0.11926808208227158, + 0.05457328259944916, + 0.20861704647541046, + 0.05513465031981468, + -0.15487004816532135, + 0.19973981380462646, + -0.7281115055084229, + 0.35998186469078064, + -0.48408615589141846, + 0.18382520973682404, + 0.12717343866825104, + -0.09318947792053223, + 0.1630433052778244, + -0.09214235097169876, + 0.48308658599853516, + 0.34685277938842773, + 0.400411993265152, + 0.13527299463748932, + -0.12398535758256912, + 0.21059846878051758, + 0.14224332571029663, + 0.14225418865680695, + -0.10271662473678589, + 0.6476855278015137, + 0.1890830546617508, + -0.26332470774650574, + 0.23012302815914154, + 0.23844265937805176, + -0.22579850256443024, + -0.1814236044883728, + -0.24198400974273682, + 0.6755089163780212, + -0.33379510045051575, + 0.4035644233226776, + -0.4386764466762543, + 0.010704636573791504, + 0.14577649533748627, + -0.15491344034671783, + -0.32322564721107483, + 0.10033613443374634, + -0.40082892775535583, + 0.2794477045536041, + 0.0634000226855278, + -0.22455008327960968, + 0.10140854120254517, + 0.12052998691797256, + -0.11810001730918884, + 0.1337466686964035, + 0.15499281883239746, + 0.03131266310811043, + -0.13363775610923767, + -0.17178797721862793, + 0.3085792362689972, + -0.02657986618578434, + 0.25174999237060547, + 0.03444848954677582, + -0.308789998292923, + 0.18227632343769073, + -0.12396339327096939, + -0.2197050303220749, + 0.15430690348148346, + -0.152048259973526, + 0.1337318867444992, + 0.3735392391681671, + -0.11107132583856583, + -0.3768274784088135, + 0.3608436584472656, + 0.21080486476421356, + 0.2642073333263397, + 0.145765483379364, + -0.07784359902143478, + 0.12721042335033417, + -0.41665422916412354, + 0.3751732110977173, + -0.13365386426448822, + -0.24480558931827545, + -0.3582226037979126, + 0.30804872512817383, + -0.21378298103809357, + -0.13692019879817963, + 0.4645352065563202, + -0.1631310135126114, + -0.2575817406177521, + 0.15171414613723755, + -0.29432713985443115, + -0.10679741948843002, + -0.41790375113487244, + -0.00319768488407135, + 0.35343053936958313, + 0.22240833938121796, + 0.2929988205432892, + 0.2728756368160248, + -0.1451963633298874, + 0.35025152564048767, + -0.3279496729373932, + -0.28556808829307556, + -0.3299705982208252, + -0.07106142491102219, + -0.13497528433799744, + -0.30763232707977295, + 0.07954829186201096, + 0.014240212738513947, + -0.17747503519058228, + 0.259063184261322, + -0.3960525691509247, + -0.17260287702083588, + -0.04773559048771858, + -0.046419043093919754, + 0.13940703868865967, + -0.044593941420316696, + 0.24297146499156952, + -0.3277141749858856, + -0.39064016938209534, + -0.08779734373092651, + 0.023568013682961464, + 0.2961314618587494, + 0.1148843988776207, + 0.024307338520884514, + 0.033912286162376404, + 0.30754098296165466, + -0.41299644112586975, + -0.44720473885536194, + 0.27055177092552185, + -0.34258463978767395, + 0.2459760159254074, + -0.10893374681472778, + 0.3512541353702545, + 0.3531181514263153, + -0.034446075558662415, + 0.14790184795856476, + 0.4121835231781006, + 0.5353427529335022, + 0.08829069137573242, + -0.06143955513834953, + -0.02482522279024124, + -0.007702801376581192, + -0.16190774738788605, + -0.3395914137363434, + 0.17034243047237396, + -0.22750897705554962, + 0.16759192943572998, + 0.1356017142534256, + 0.2028847187757492, + 0.06350953876972198, + -0.517906129360199, + -0.10738358646631241, + 0.6667197346687317, + 0.1691632717847824, + 0.037839896976947784, + -0.05136692151427269, + 0.4450501501560211, + 0.5249065160751343, + 0.007340277079492807, + -0.3306441903114319, + -0.009493349120020866, + -0.06430380791425705, + -0.16328896582126617, + -0.2803487479686737, + 0.13696956634521484, + 0.22404222190380096, + -0.06747622042894363, + -0.3030094504356384, + 0.31825482845306396, + -0.27668923139572144, + -0.07380122691392899, + 0.01650739461183548, + 0.07529415190219879, + 0.168110653758049, + -0.17041702568531036, + 0.2555415630340576, + -0.17788666486740112, + -0.08755576610565186, + 0.570432186126709, + -0.17577219009399414, + -0.19930122792720795, + 0.4915766716003418, + -0.18205863237380981, + -0.4425560534000397, + 0.3090628981590271, + -0.20726893842220306, + -0.20070767402648926, + 0.3741373121738434, + -0.13651378452777863, + 0.017651302739977837, + -0.2737968862056732, + 0.11020190268754959, + 0.1302887350320816, + 0.003572646528482437, + -0.20874559879302979, + -0.004113053437322378, + 0.15316803753376007, + 0.6786465644836426, + 0.018732987344264984, + 0.06185932829976082, + 0.4203014075756073, + -0.11499608308076859, + -0.3057328164577484, + -0.09067092090845108, + 0.07244453579187393, + 0.30383774638175964, + -0.311058908700943, + -0.3524237871170044, + -0.36338141560554504, + 0.21940337121486664, + 0.17009277641773224, + -0.1095595732331276, + -0.09802025556564331, + 0.10814189910888672, + -0.012437346391379833, + 0.10475149750709534, + 0.2615726590156555, + 0.3095625340938568, + -0.06085452809929848, + 0.6036781668663025, + 0.06224172189831734, + -0.057407621294260025, + 0.2052885740995407, + -0.10321997851133347, + 0.3524329364299774, + -0.1934761255979538, + -0.2528340518474579, + -0.536365270614624, + 0.057307515293359756, + -0.4155358076095581, + -0.11181557178497314, + -0.03543207049369812, + 0.052159786224365234, + 0.1058875024318695, + 0.0655241459608078, + 0.19983959197998047, + 0.09082623571157455, + 0.13807253539562225, + -0.0781714990735054, + 0.6763191819190979, + -0.0028358970303088427, + -0.4592268168926239, + 0.054480019956827164, + -0.06566111743450165, + 0.2707873284816742, + -0.22144867479801178, + 0.02520383894443512, + -0.2331681251525879, + 0.35534587502479553, + -0.05164376273751259, + -0.17912553250789642, + -0.06126204505562782, + -0.02977651357650757, + -0.2634107768535614, + -0.5233835577964783, + -0.07791954278945923, + -0.01286820974200964, + -0.06538339704275131, + -0.014107778668403625, + 0.23272742331027985, + -0.26258257031440735, + -0.2913316786289215, + 0.07348854094743729, + 0.3264302909374237, + 0.28274598717689514, + -0.2698136866092682, + 0.18986044824123383, + 0.11581862717866898, + 0.14617927372455597, + 0.5362180471420288, + -0.19385333359241486, + 0.13332805037498474, + 0.24237030744552612, + -0.15043944120407104, + -0.09583289176225662, + 0.04404716566205025, + -0.27873632311820984, + 0.01804291643202305, + 0.16146320104599, + 0.17648302018642426, + 0.19123680889606476, + 0.06625751405954361, + 0.016465460881590843, + 0.2488224357366562, + -0.3326088488101959, + 0.031383734196424484, + 0.4730178415775299, + 0.07189471274614334, + 0.5191131234169006, + -0.12896524369716644, + -0.29288408160209656, + -0.185959592461586, + -0.016157394275069237, + -0.45811179280281067, + 0.1441950649023056, + 0.09145832061767578, + -0.16910462081432343, + -0.05055128410458565, + 0.10060884803533554, + 0.1372537612915039, + 0.10982144623994827, + 0.19215022027492523, + -0.12495272606611252, + 0.0020723144989460707, + -0.1678815633058548, + -0.37175431847572327, + -0.023162325844168663, + -0.26127299666404724, + -0.3706505298614502, + -0.3697110116481781, + 0.5079489350318909, + 0.4564405381679535, + -0.15140655636787415, + 0.17129985988140106, + 0.15173883736133575, + -0.19758932292461395, + -0.40609297156333923, + 0.054612964391708374, + -0.05562881752848625, + 0.6642163991928101, + 0.04661300778388977, + -0.1879602074623108, + 0.3275156021118164, + -0.2709139883518219, + 0.1818741112947464, + 0.17545635998249054, + 0.13700933754444122, + 0.41310739517211914, + 0.24256926774978638, + 0.18925808370113373, + 0.5659263730049133, + 0.16788816452026367, + 0.010269984602928162, + 0.33547651767730713, + -0.06713671237230301, + 0.03555089980363846, + 0.03223928436636925, + -0.1653062105178833, + 0.4727550745010376, + -0.2796788215637207, + 0.29398563504219055, + 0.06562589108943939, + 0.323544979095459, + -0.35793235898017883, + -0.4239784777164459, + -0.12615498900413513, + -0.20450246334075928, + -0.1271847039461136, + -0.21514225006103516, + -0.09260322898626328, + -0.0009155869483947754, + -0.34380897879600525, + -0.023843316361308098, + 0.3352773189544678, + 0.28108829259872437, + 0.15740536153316498, + 0.21506689488887787, + -0.3025817573070526, + -0.40007829666137695, + -0.0010334737598896027, + 0.35335230827331543, + 0.0674835667014122, + -0.07668166607618332, + -0.1503458172082901, + 0.19994334876537323, + 0.5326314568519592, + -0.1191307008266449, + -0.21396292746067047, + -0.002778073074296117, + 0.009433877654373646, + -0.11832737922668457, + 0.12917560338974, + -0.20948851108551025, + 0.09871751815080643, + -0.39094018936157227, + 0.0658707395195961, + -0.18459124863147736, + -0.2053675800561905, + 0.26418718695640564, + -0.2483014017343521, + -0.4517703056335449, + -0.2017059177160263, + 0.2568487524986267, + -0.1521771103143692, + -0.1356159895658493, + 0.17099298536777496, + 0.31242015957832336, + 0.012497381307184696, + -0.16275222599506378, + 0.03929504379630089, + -0.5324494242668152, + -0.06600645184516907, + 0.08828868716955185, + -0.2327049970626831, + 0.17292095720767975, + -0.11559615284204483, + 0.19002516567707062, + 0.42871272563934326, + 0.14057065546512604, + -0.4558219909667969, + -0.17123158276081085, + 0.391100138425827, + 0.2776581645011902, + -0.18214933574199677, + -10.70256519317627, + -0.024449797347187996, + -0.1813431978225708, + 0.5516294240951538, + -0.12300056964159012, + 0.13342295587062836, + -0.15039943158626556, + -0.043130144476890564, + 0.08451690524816513, + 0.03566787764430046, + -0.293976753950119, + 0.09247811883687973, + 0.2773444354534149, + 0.23217929899692535, + 0.11016100645065308, + -0.07389677315950394, + -0.34550943970680237, + 0.22127236425876617, + -0.19098417460918427, + 0.07597266882658005, + 0.12664009630680084, + 0.32337531447410583, + -0.21354947984218597, + 0.4016430675983429, + 0.2746007442474365, + -0.3939281404018402, + -0.16705016791820526, + 0.36346349120140076, + 0.24572108685970306, + -0.48732051253318787, + 0.4727989733219147, + 0.19823813438415527, + -0.1509220451116562, + -0.20888535678386688, + 0.17655380070209503, + -0.20186835527420044, + -0.11027917265892029, + 0.06701631098985672, + 0.08921521157026291, + -0.016171181574463844, + 0.27644768357276917, + -0.2612874507904053, + 0.0026395146269351244, + 0.4797150790691376, + -0.157114639878273, + -0.40081313252449036, + -0.19162620604038239, + -1.5974453687667847, + 0.12117483466863632, + 0.16665641963481903, + 0.6035687923431396, + -0.05501393973827362, + 0.21268051862716675, + 0.1707991361618042, + -0.5372670292854309, + 0.10222750157117844, + -0.24073141813278198, + 0.0768231749534607, + 0.2692219614982605, + -0.10774337500333786, + 0.02425704151391983, + -0.13518595695495605, + 0.2956274151802063, + -0.27093371748924255, + -0.24596565961837769, + 0.25455477833747864, + -0.09962616115808487, + -0.11272549629211426, + -0.1394905298948288, + -0.39257630705833435, + -0.6048027873039246, + -0.148551806807518, + 0.03970241919159889, + -0.08336308598518372, + 0.5661895275115967, + -0.14280717074871063, + -0.598362922668457, + 0.03717902675271034, + -0.11945304274559021, + 0.4401933252811432, + 0.08606108278036118, + 0.07183074206113815, + 0.058848973363637924, + 0.049645423889160156, + -0.14604312181472778, + -0.10111034661531448, + 0.17163006961345673, + 0.42448511719703674, + -0.06756223738193512, + 0.06883104890584946, + 0.10000089555978775, + 0.2961301803588867, + -0.2568218410015106, + -0.1182146668434143, + -0.38412240147590637, + 0.162176251411438, + 0.019004812464118004, + -0.04749155044555664, + 0.12719710171222687, + -0.087901271879673, + -0.06408625841140747, + -0.23437148332595825, + -0.23866675794124603, + -0.3585752546787262, + -0.36637961864471436, + 0.2380337119102478, + 0.1721259206533432, + 0.1006702110171318, + 0.2322978526353836, + 0.11195039004087448, + 0.04324770346283913, + -0.06280314922332764, + 0.4888695180416107, + 0.5146237015724182, + 0.1527283936738968, + -0.049920398741960526, + -0.2123621702194214, + 0.053516313433647156, + -0.4882737696170807, + 0.08011145144701004, + 0.5055177807807922, + -0.042962681502103806, + 0.2023872286081314, + 0.5114120841026306, + -0.05642039701342583, + -0.2017393261194229, + 1.1306227445602417, + -0.30909761786460876, + 0.214499831199646, + -0.3102737367153168, + 0.24262993037700653, + -0.16454657912254333, + -0.44077059626579285, + -0.12830527126789093, + 0.38467660546302795, + -0.4769868850708008, + 0.659824788570404, + 0.10313216596841812, + -0.4822559356689453, + 0.013273775577545166, + -0.2966170310974121, + 0.3982210159301758, + 0.22480671107769012, + 0.20150329172611237, + -0.10485976934432983, + -0.3869105279445648, + -0.36076846718788147, + 0.009654332883656025, + -0.4856027364730835, + -0.42252036929130554, + -0.38543403148651123, + 0.05345264449715614, + -0.032841455191373825, + -0.30861330032348633, + 0.3658311367034912, + 0.01062408834695816, + -0.2842189371585846, + -0.10713676363229752, + -0.5582472681999207, + -0.2581392228603363, + 0.15885162353515625, + 0.689320981502533, + 0.13512583076953888, + -0.20383308827877045, + -0.19608111679553986, + 0.22843199968338013, + -0.07894566655158997, + 0.07426539808511734, + -0.013954506255686283, + -0.02115006558597088, + -0.5382094383239746, + 0.07599659264087677, + 0.24509330093860626, + -0.38768383860588074, + -0.2890462875366211, + -0.4272282123565674, + 0.156494602560997, + 0.0048865810967981815, + 0.04524322226643562, + 0.3338363468647003, + 0.2932804524898529, + -0.05237109586596489, + 0.09623139351606369, + -0.08224257081747055, + 0.1166127547621727, + 0.13835734128952026, + 0.38503310084342957, + 0.22785723209381104, + -0.3324199318885803, + -0.4339541494846344, + -0.2408454418182373, + 0.2723948061466217, + -0.4089561998844147, + -0.0048524304293096066, + -0.18746109306812286, + 0.2237868458032608, + -0.3778100907802582, + 0.17141394317150116, + -0.29279792308807373, + 0.01189874392002821, + -0.22544653713703156, + 0.21580083668231964, + 0.5462278127670288, + -0.25721874833106995, + 0.07724293321371078, + -0.18359194695949554, + 0.2354123592376709, + 0.16073282063007355, + -0.22593700885772705, + 0.30614998936653137, + -0.15799112617969513 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/graph_044.json b/src/benchmark/output/results/results_graph_044.json similarity index 99% rename from src/benchmark/output/results/graph_044.json rename to src/benchmark/output/results/results_graph_044.json index 97dffb3..a0075b9 100644 --- a/src/benchmark/output/results/graph_044.json +++ b/src/benchmark/output/results/results_graph_044.json @@ -3,13 +3,13 @@ "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 44-year-old man with a significant smoking history of 24 years. He has no other notable medical history.\n\n**Initial Presentation (Step 1):**\nThe patient presented to the emergency department due to cough, dyspnea, and throat pain. This was his first visit to the hospital in two weeks, during which he had undergone noncontrast CT scans that showed a 5.0 x 5.0 cm tumor in the superior-to-anterior mediastinum.\n\n**Imaging Findings (Step 2):**\nFollow-up imaging revealed an enlarged shadow in the right upper mediastinum on chest radiography, which was later confirmed by CT scan to be a mediastinal mass.\n\n**Progression of Disease (Steps 3-5):**\nOver two weeks, the tumor grew from 5.0 x 5.0 cm to 9.0 x 7.0 cm in size, causing compression and narrowing of the right brachiocephalic vein and superior vena cava, as well as left deviation of the trachea.\n\n**Symptom Onset (Step 4):**\nThe patient developed respiratory symptoms, including cough, dyspnea, and throat pain, which prompted further imaging to evaluate the cause of these symptoms.\n\n**Imaging Evaluation (Steps 5-6):**\nNoncontrast CT scans two weeks prior to admission showed a tumor in the superior-to-anterior mediastinum. Dynamic CT scans at admission revealed a weakly enhanced tumor in the superior-to-middle mediastinum, which had grown to 9.0 x 7.0 cm over two weeks.\n\n**Laboratory Findings (Step 6):**\nLaboratory tests revealed slightly elevated levels of lactate dehydrogenase (LDH) and C-reactive protein (CRP), indicating inflammation or infection. Tumor markers, including CYFRA, pro-GRP, CEA, and CA19-9, were all negative.\n\n**Current Status:**\nThe patient is currently undergoing further evaluation and treatment for the mediastinal mass. The exact treatment plan has not been disclosed in this report.\n\n**Outcomes:**\nThe patient's current condition and potential outcomes are unknown at this time. Further follow-up will be necessary to determine the effectiveness of any treatments and to monitor for any changes in the patient's condition.", "bertscore": { "precision": [ - 0.32771092653274536 + 0.692764401435852 ], "recall": [ - 0.4161722660064697 + 0.7154231071472168 ], "f1": [ - 0.3666817843914032 + 0.7039114236831665 ] }, "topology": { diff --git a/src/benchmark/output/results/results_graph_045.json b/src/benchmark/output/results/results_graph_045.json new file mode 100644 index 0000000..71bc4a0 --- /dev/null +++ b/src/benchmark/output/results/results_graph_045.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 67-year-old male with a significant smoking history (25-pack-year). He presented with left focal motor seizure and expressive aphasia, which led to the diagnosis of Seizure (C0003638) and Aphasia, Expressive (C0003684).\n\n**Timeline of Diagnoses:**\n\n1. **Initial Presentation:** The patient was diagnosed with Seizure (C0003638) and Aphasia, Expressive (C0003684) upon presentation.\n2. **Brain MRI:** A brain MRI revealed innumerable supra- and infratentorial peripheral enhancing lesions with edema, suggesting intracranial metastases (N2).\n3. **PET-CT:** Further investigation with PET-CT identified the primary cancer source as a hypermetabolic left lung mass and mediastinal and supraclavicular lymph nodes compatible with lung cancer (N3).\n4. **Lung Mass Biopsy:** Endobronchial biopsy of the lung mass revealed adenocarcinoma, with PD-L1 IHC testing showing 100% positivity and HER2 amplification (N4).\n\n**Timeline of Treatments:**\n\n1. **Pembrolizumab:** The patient was started on pembrolizumab due to high PD-L1 expression.\n2. **WBRT:** Whole-brain radiation therapy (WBRT) was recommended for brain metastases, but the treatment was discontinued after 1 cycle due to worsening of brain metastases.\n3. **T-DXd and Bevacizumab:** The patient's treatment was changed to T-DXd and bevacizumab due to disease progression and cerebral edema.\n\n**Timeline of Outcomes:**\n\n1. **Follow-up Brain MRI:** A repeat brain MRI 6 weeks after starting T-DXd revealed remarkable improvement in cerebral edema and metastases.\n2. **Repeat CT Chest:** A repeat CT chest scan showed a decrease in size of the previously noted spiculated left lower lung mass.\n\n**Conclusion:**\nThe patient's clinical course was marked by significant progression of brain metastases, which led to changes in treatment. Despite initial worsening, T-DXd and bevacizumab treatment resulted in remarkable improvement in cerebral edema and metastases, suggesting a positive response to therapy.", + "bertscore": { + "precision": [ + 0.6492398977279663 + ], + "recall": [ + 0.6405829787254333 + ], + "f1": [ + 0.6448824405670166 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 7, + "edge_count": 6, + "avg_in_degree": 0.8571428571428571, + "density": 0.14285714285714285 + }, + "trajectory_embedding": [ + 0.2637527883052826, + 0.15972600877285004, + -0.13202765583992004, + 0.0957951694726944, + -0.04258505254983902, + 0.0973554328083992, + -0.016224455088377, + 0.34089890122413635, + 0.39410585165023804, + -0.33490127325057983, + -0.20745256543159485, + 0.13487695157527924, + -0.6351459622383118, + -0.0365443155169487, + -0.3216632008552551, + 0.12383513897657394, + -0.04760764166712761, + 0.31662067770957947, + -0.06834237277507782, + -0.24286700785160065, + -0.37497809529304504, + 0.16411073505878448, + -0.43277332186698914, + -0.07514923065900803, + 0.06403642892837524, + -0.020005354657769203, + 0.2891775965690613, + 0.4582820534706116, + 0.22687070071697235, + 0.18308284878730774, + 0.18474015593528748, + -0.2568388283252716, + 0.19740566611289978, + 0.011691286228597164, + -0.16997148096561432, + 0.13903766870498657, + 0.17487506568431854, + 0.4176679253578186, + -0.15436698496341705, + 0.017137208953499794, + -0.011626942083239555, + 0.048110801726579666, + 0.8511399626731873, + 0.035195719450712204, + 0.5597261786460876, + -0.6147104501724243, + -0.07765679061412811, + 0.6431477665901184, + -0.4261336326599121, + -0.36867809295654297, + 0.229380264878273, + 0.7217655777931213, + 0.6602807641029358, + -0.15820109844207764, + 0.5177961587905884, + -0.1491081863641739, + -0.23740649223327637, + -0.2248646765947342, + -0.19848905503749847, + -0.056266844272613525, + 0.019042667001485825, + -0.20766322314739227, + 0.36757853627204895, + -0.038557298481464386, + -0.17710256576538086, + -0.2060033231973648, + -0.32802411913871765, + 0.09531055390834808, + -0.12682174146175385, + -0.2203969955444336, + -0.20830987393856049, + -0.31587299704551697, + -0.06893990188837051, + 0.23850920796394348, + 0.14400969445705414, + -0.11313515156507492, + 0.3342128396034241, + -0.1472698301076889, + 0.12926934659481049, + 0.19706390798091888, + 0.012676345184445381, + -0.02184647135436535, + -0.06154792383313179, + 0.34769007563591003, + -0.39192500710487366, + -0.014913676306605339, + -0.03524230048060417, + -0.22039905190467834, + -0.2709943950176239, + 0.3129062354564667, + 0.15639899671077728, + -0.34709206223487854, + 0.036033958196640015, + -0.16157105565071106, + -0.017415408045053482, + 0.17977771162986755, + 0.3931047320365906, + 0.16289864480495453, + 0.9117298722267151, + 0.0013929770793765783, + 0.2624664902687073, + 0.06068174168467522, + 0.3065105378627777, + 0.22417746484279633, + 0.46222397685050964, + -0.1442607343196869, + 0.24867503345012665, + -0.48799949884414673, + 0.27146345376968384, + 0.4364672303199768, + 0.037431444972753525, + -0.206253781914711, + 0.04022981971502304, + -0.28229907155036926, + 0.20460005104541779, + 0.1434260904788971, + -0.0176934152841568, + 0.15191173553466797, + 0.26090261340141296, + -0.4999381899833679, + -0.2115931212902069, + -0.2053930014371872, + 0.34489282965660095, + 0.309303343296051, + -0.45342567563056946, + -0.1935085505247116, + -0.1126754954457283, + 0.12421313673257828, + -0.049952130764722824, + 0.09485150128602982, + -0.39121586084365845, + -0.12530088424682617, + -0.009347187355160713, + 0.083448126912117, + -0.19457602500915527, + 0.205155611038208, + -0.31584784388542175, + 0.02956199273467064, + -1.1532951593399048, + 0.2815471589565277, + -0.430154949426651, + -0.03833770006895065, + 0.03226082772016525, + -0.6268243193626404, + -0.22153650224208832, + -0.1255929172039032, + -0.19101296365261078, + 0.11373525112867355, + 0.007232058327645063, + 0.05552083998918533, + 0.08721967041492462, + -0.0992443636059761, + 0.22382180392742157, + 0.34708285331726074, + 0.08398731797933578, + 0.1591593325138092, + 0.0587204173207283, + 0.3365333676338196, + 0.17984867095947266, + -0.23264136910438538, + 0.11239274591207504, + 0.46427610516548157, + 0.09222613275051117, + 0.06498251110315323, + -0.13669796288013458, + -0.7199097275733948, + -0.021586906164884567, + -0.18329082429409027, + 0.14229771494865417, + 0.06944538652896881, + -0.1886615753173828, + 0.11794548481702805, + -0.2587200701236725, + 0.544649064540863, + 0.07818958908319473, + 0.5304498672485352, + -0.18079236149787903, + -0.053740475326776505, + 0.2642553150653839, + 0.08616920560598373, + 0.01999683305621147, + -0.21340325474739075, + 0.6605494618415833, + 0.29717132449150085, + -0.26265785098075867, + 0.27423804998397827, + 0.311699241399765, + -0.001036086236126721, + -0.29678651690483093, + -0.10100467503070831, + 0.5553122162818909, + -0.18075333535671234, + 0.4518263339996338, + -0.4147214889526367, + -0.0034423598553985357, + 0.05800507590174675, + -0.20979823172092438, + -0.14451228082180023, + 0.06419872492551804, + -0.10712110996246338, + 0.2841126322746277, + 0.030792955309152603, + -0.3180393874645233, + 0.023522982373833656, + 0.12839145958423615, + -0.10140885412693024, + 0.18859948217868805, + 0.11593180149793625, + 0.10533011704683304, + 0.01946941390633583, + -0.07527224719524384, + 0.1365254670381546, + -0.14860615134239197, + 0.26855456829071045, + -0.009721837006509304, + -0.3767549991607666, + 0.10302142798900604, + -0.047712188214063644, + -0.23280011117458344, + 0.05171123519539833, + -0.06059455871582031, + -0.2602473795413971, + 0.05232662707567215, + -0.05336546525359154, + -0.5786672234535217, + 0.2160010039806366, + 0.1444745808839798, + 0.1140553280711174, + 0.16545473039150238, + -0.0035833269357681274, + -0.056768592447042465, + -0.27592307329177856, + 0.3437183201313019, + -0.07896008342504501, + -0.18098406493663788, + -0.4656810760498047, + 0.11493153870105743, + -0.1449211686849594, + 0.0034292936325073242, + 0.3769422471523285, + 0.040099237114191055, + -0.09804553538560867, + 0.18380889296531677, + -0.3745386004447937, + -0.0044115399941802025, + -0.4124279320240021, + -0.06304947286844254, + 0.3213532865047455, + 0.04136717692017555, + 0.26136744022369385, + 0.06261925399303436, + -0.2485232651233673, + 0.09210673719644547, + -0.26061758399009705, + -0.3736634850502014, + -0.3312024772167206, + -0.0318279042840004, + -0.08023025840520859, + -0.6199169754981995, + 0.1957211196422577, + 0.04584003612399101, + -0.03906792402267456, + 0.2552802860736847, + -0.39121267199516296, + -0.1781294196844101, + -0.015399664640426636, + -0.10242144018411636, + 0.12071461230516434, + -0.22393164038658142, + 0.13019175827503204, + -0.3749783933162689, + -0.2053486406803131, + -0.17232564091682434, + 0.047892410308122635, + 0.12914982438087463, + 0.15930365025997162, + -0.3059995770454407, + 0.16997560858726501, + 0.1808319389820099, + -0.37324258685112, + -0.27394071221351624, + 0.11035378277301788, + -0.24858367443084717, + 0.12700006365776062, + -0.01957264170050621, + 0.17109377682209015, + 0.2831864655017853, + 0.09330098330974579, + 0.2010422646999359, + 0.432858943939209, + 0.4787144958972931, + -0.047952957451343536, + -0.021694811061024666, + -0.15334513783454895, + -0.05889565125107765, + -0.0704054981470108, + -0.385530948638916, + 0.2582003176212311, + -0.07181493937969208, + 0.05231761187314987, + 0.11586909741163254, + 0.3327983319759369, + 0.08703934401273727, + -0.43144282698631287, + -0.04570610076189041, + 0.6240317225456238, + 0.02538215182721615, + 0.09686533361673355, + 0.1127510517835617, + 0.3463146388530731, + 0.5116881132125854, + -0.08836204558610916, + -0.013095702044665813, + 0.12576892971992493, + -0.12213891744613647, + -0.22938813269138336, + -0.0769309252500534, + 0.09046809375286102, + 0.4409720003604889, + -0.07795362174510956, + -0.2778860032558441, + 0.15930700302124023, + -0.08664760738611221, + -0.14723923802375793, + -0.14835111796855927, + -0.093327097594738, + 0.05378052964806557, + -0.2364777773618698, + 0.3124886453151703, + 0.0418986976146698, + 0.00939310621470213, + 0.4885781407356262, + -0.24560263752937317, + -0.14027772843837738, + 0.3196834921836853, + -0.09336373955011368, + -0.4874247610569, + 0.4141414165496826, + -0.13485676050186157, + -0.1001845970749855, + 0.37420058250427246, + -0.22730396687984467, + 0.00928629282861948, + -0.10739663988351822, + 0.30588290095329285, + -0.05714850500226021, + 0.07800091803073883, + -0.13693810999393463, + 0.005378518719226122, + 0.16613569855690002, + 0.5570912957191467, + 0.16769035160541534, + 0.13775865733623505, + 0.5849872827529907, + -0.06542567908763885, + -0.33793362975120544, + 0.060642652213573456, + -0.014186031185090542, + 0.36246150732040405, + -0.33592769503593445, + -0.20529766380786896, + -0.31354084610939026, + 0.08161328732967377, + 0.048976968973875046, + -0.17789551615715027, + 0.028911912813782692, + 0.1808389127254486, + 0.10076800733804703, + -0.0009220232022926211, + 0.30937886238098145, + 0.21956171095371246, + -0.2059270292520523, + 0.4281466007232666, + 0.022237194702029228, + -0.1602182537317276, + 0.3684556782245636, + -0.16353966295719147, + 0.26192668080329895, + -0.07123000174760818, + -0.2690967917442322, + -0.2597518563270569, + 0.11440259218215942, + -0.3152306079864502, + -0.19585253298282623, + -0.0339721143245697, + -0.23695333302021027, + 0.010022210888564587, + -0.19625461101531982, + 0.12993116676807404, + 0.10266727209091187, + 0.21011866629123688, + 0.0202326737344265, + 0.4409562945365906, + 0.21631334722042084, + -0.27948686480522156, + 0.09791842848062515, + -0.07134319841861725, + 0.2166842669248581, + -0.29761356115341187, + 0.1403992921113968, + -0.1599283218383789, + 0.5187095999717712, + 0.02781805396080017, + -0.058076974004507065, + 0.07819662988185883, + -0.018465561792254448, + -0.21467988193035126, + -0.457146018743515, + 0.01073733065277338, + -0.06304458528757095, + -0.0010013665305450559, + -0.02185508981347084, + 0.12238343805074692, + -0.23991276323795319, + -0.14299596846103668, + -0.02987738512456417, + 0.10046664625406265, + 0.06958045810461044, + -0.17561854422092438, + -0.09605572372674942, + 0.3901654779911041, + 0.1312832534313202, + 0.4573516249656677, + -0.2683428227901459, + 0.14714206755161285, + 0.0652875155210495, + -0.37555932998657227, + -0.05103660002350807, + -0.05366930738091469, + -0.3715563118457794, + -0.07986108213663101, + 0.21332654356956482, + 0.179373636841774, + 0.007311542052775621, + 0.001032271538861096, + -0.00010280683636665344, + 0.3239199221134186, + -0.2767238914966583, + -0.049160685390233994, + 0.530314028263092, + 0.12989477813243866, + 0.4905761182308197, + 0.004146810155361891, + -0.5527881383895874, + -0.22600515186786652, + 0.031683918088674545, + -0.41813912987709045, + 0.12095123529434204, + 0.21629633009433746, + -0.19794057309627533, + -0.19331757724285126, + 0.0949043408036232, + 0.05562594160437584, + -0.04136047512292862, + 0.21197029948234558, + -0.2531126141548157, + 0.12098496407270432, + 0.07788611203432083, + -0.1887999325990677, + -0.017728522419929504, + -0.254666268825531, + -0.34406372904777527, + -0.13412807881832123, + 0.31496280431747437, + 0.18840788304805756, + -0.2499838024377823, + 0.10926063358783722, + 0.18608450889587402, + -0.17826566100120544, + -0.3046448826789856, + -0.04454020783305168, + -0.18970942497253418, + 0.551347553730011, + -0.08273109048604965, + -0.19173946976661682, + 0.28548452258110046, + -0.11262212693691254, + 0.06890810281038284, + 0.17221508920192719, + 0.16801312565803528, + 0.3690635561943054, + 0.15949463844299316, + 0.19221487641334534, + 0.5538449883460999, + 0.08934397995471954, + 0.06078023090958595, + 0.2536282539367676, + 0.06985469907522202, + -0.04857928678393364, + -0.2065393030643463, + -0.2484283149242401, + 0.29207712411880493, + -0.38521578907966614, + -0.008189703337848186, + -0.015269530937075615, + 0.21376968920230865, + -0.39759543538093567, + -0.30834290385246277, + -0.081883504986763, + 0.028478655964136124, + -0.15560348331928253, + -0.26889750361442566, + -0.15018899738788605, + -0.056336574256420135, + -0.22019515931606293, + -0.106744185090065, + 0.3347203731536865, + 0.48884087800979614, + 0.190956249833107, + 0.2549979090690613, + -0.2988419830799103, + -0.3802010715007782, + 0.11378878355026245, + 0.2821696102619171, + 0.07678768783807755, + -0.10542363673448563, + -0.21799468994140625, + 0.19259928166866302, + 0.530512273311615, + -0.1731937676668167, + -0.013003485277295113, + 0.09567994624376297, + -0.0677076131105423, + 0.06797543913125992, + -0.031116720288991928, + -0.09281259775161743, + 0.06805676966905594, + -0.4920804500579834, + 0.23916271328926086, + -0.1083448976278305, + -0.2104412019252777, + 0.27111950516700745, + -0.21855852007865906, + -0.5184774994850159, + -0.1265622079372406, + 0.2419375330209732, + -0.20211681723594666, + -0.14468839764595032, + 0.1924026906490326, + 0.4019602835178375, + 0.04507601261138916, + -0.20694197714328766, + 0.0886058434844017, + -0.5126371383666992, + -0.21900807321071625, + 0.16007192432880402, + -0.13521035015583038, + -0.04983597621321678, + 0.007017518859356642, + 0.2386220544576645, + 0.3893115222454071, + 0.18145941197872162, + -0.1922331154346466, + 0.14157900214195251, + 0.5028610825538635, + 0.36395135521888733, + -0.19748075306415558, + -10.717467308044434, + -0.14767269790172577, + -0.25542184710502625, + 0.509068489074707, + -0.20895706117153168, + 0.07010151445865631, + 0.023230237886309624, + -0.045165419578552246, + 0.1871204376220703, + 0.2113236039876938, + -0.14502492547035217, + -0.014968454837799072, + 0.24801072478294373, + 0.28149133920669556, + -0.011811167001724243, + 0.13910724222660065, + -0.2954607605934143, + 0.2671447694301605, + 0.007963201031088829, + 0.22624894976615906, + 0.19095899164676666, + 0.41713374853134155, + -0.36062756180763245, + 0.21348626911640167, + 0.0687461718916893, + -0.3522712290287018, + -0.1540302038192749, + 0.5286874771118164, + 0.2612105906009674, + -0.3893272876739502, + 0.22630809247493744, + 0.09640133380889893, + -0.1321679800748825, + -0.02455376461148262, + -0.054253049194812775, + -0.13033358752727509, + -0.09656483680009842, + 0.133830264210701, + 0.2701391577720642, + -0.177614226937294, + 0.12847605347633362, + -0.16909202933311462, + 0.35832494497299194, + 0.23327329754829407, + -0.19464504718780518, + -0.5269423127174377, + -0.09118587523698807, + -1.675971269607544, + 0.3057993948459625, + 0.2951194643974304, + 0.5006667971611023, + -0.04268503934144974, + 0.2271026223897934, + 0.1632169932126999, + -0.4504690170288086, + -0.1289357990026474, + -0.3015478551387787, + -0.04091610386967659, + 0.16493450105190277, + -0.043372996151447296, + 0.16545049846172333, + -0.020705411210656166, + 0.5153104662895203, + -0.2186545580625534, + -0.16885803639888763, + 0.0722784474492073, + -0.0008209847728721797, + -0.05834666267037392, + -0.24107812345027924, + -0.5792292356491089, + -0.5673157572746277, + 0.06863474100828171, + 0.006406003143638372, + -0.09822483360767365, + 0.4548388123512268, + -0.0030777044594287872, + -0.29057884216308594, + 0.2774486839771271, + -0.10641195625066757, + 0.46444377303123474, + 0.3257273733615875, + -0.13071709871292114, + 0.07945980876684189, + -0.19545210897922516, + -0.2553441524505615, + -0.13610242307186127, + 0.1599007546901703, + 0.5419639348983765, + -0.08192604780197144, + -0.0570390485227108, + -0.02456311695277691, + 0.3714301288127899, + -0.11653799563646317, + -0.0926886796951294, + -0.4074513018131256, + 0.0068917651660740376, + 0.0073386915028095245, + 0.031838733702898026, + -0.0035169762559235096, + -0.10699260234832764, + -0.2188466489315033, + -0.025023801252245903, + -0.09684360027313232, + -0.5786617994308472, + -0.5661852955818176, + 0.23602087795734406, + 0.21873930096626282, + 0.17109178006649017, + 0.05161571875214577, + -0.07227950543165207, + -0.17798876762390137, + -0.005457459948956966, + 0.31478866934776306, + 0.545839250087738, + 0.16239574551582336, + 0.04875868558883667, + -0.13044869899749756, + -0.1900259107351303, + -0.18313400447368622, + 0.02145831473171711, + 0.4335358440876007, + -0.0728669986128807, + 0.2807242274284363, + 0.6965659856796265, + 0.026387104764580727, + -0.14012061059474945, + 1.0217301845550537, + -0.271355003118515, + 0.2382143884897232, + -0.16125039756298065, + 0.20323047041893005, + -0.03228753060102463, + -0.3927547037601471, + 0.09548906981945038, + 0.372710257768631, + -0.3653051555156708, + 0.7228313684463501, + 0.21654793620109558, + -0.5085169076919556, + 0.032327450811862946, + -0.4331655204296112, + 0.42982953786849976, + 0.25772780179977417, + 0.2714661955833435, + -0.2287147045135498, + -0.2991470992565155, + -0.3384869396686554, + 0.15062685310840607, + -0.3403807282447815, + -0.324948787689209, + -0.13339149951934814, + 0.11199881881475449, + 0.1223236471414566, + -0.1844135820865631, + 0.2829793095588684, + 0.21342121064662933, + -0.1674823760986328, + -0.3533896803855896, + -0.4094894826412201, + -0.213298961520195, + 0.058607518672943115, + 0.7778774499893188, + 0.032708700746297836, + -0.10342276096343994, + -0.04681689664721489, + 0.1619551032781601, + -0.19435203075408936, + 0.11240453273057938, + 0.20556488633155823, + -0.06238192319869995, + -0.41855505108833313, + 0.23142662644386292, + 0.1846342235803604, + -0.4124789237976074, + -0.14119097590446472, + -0.1496214121580124, + -0.028181463479995728, + 0.12397100776433945, + -0.16651932895183563, + 0.17961028218269348, + 0.21722204983234406, + 0.007520813960582018, + 0.07293646037578583, + -0.15725800395011902, + -0.04658053442835808, + 0.2346431016921997, + 0.2886977791786194, + 0.1455422192811966, + -0.3175258934497833, + -0.42687568068504333, + -0.43980544805526733, + 0.20059509575366974, + -0.4005231261253357, + -0.12408202886581421, + 0.07013263553380966, + 0.19881834089756012, + -0.21606789529323578, + 0.13770337402820587, + -0.12290889769792557, + -0.07209273427724838, + -0.18376101553440094, + 0.22134855389595032, + 0.5125210881233215, + -0.16460299491882324, + 0.30647435784339905, + -0.0637965202331543, + 0.26974478363990784, + 0.11607911437749863, + -0.34786686301231384, + 0.07689502090215683, + -0.1913035809993744 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_046.json b/src/benchmark/output/results/results_graph_046.json new file mode 100644 index 0000000..2cb557e --- /dev/null +++ b/src/benchmark/output/results/results_graph_046.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "The patient in question is a 55-year-old male who was initially diagnosed with intermittent dry cough and left temporal headaches. Over time, his symptoms progressed to subacute vertigo, nausea, vomiting, and ataxia. These symptoms led to hospital admission, where initial investigations including cranial MRI and CSF analysis were unremarkable.\n\nFollowing the progression of symptoms, negative paraneoplastic antibody profiles and anti-neuronal surface antigen antibody spectrum in blood and CSF were found, indicating that symptomatic therapy was ineffective. The patient's condition continued to deteriorate, leading to hospital admission with positive Romberg sign and gait ataxia. A CT scan revealed a solid mass shadow in the upper lobe of the right lung, along with multiple enlarged lymph nodes in both hilum and mediastinum.\n\nAbnormal serum tumor markers, including SCCAg, NSE, and Cyfra21-1, were detected, and the patient was diagnosed with squamous cell lung carcinoma. Contrast-enhanced MRI of the head showed no obvious abnormality, but PET-CT revealed a malignant lesion in the upper lobe of the right lung with multiple lymph node metastasis.\n\nThe histological and immunohistochemical results confirmed that the patient had squamous cell lung carcinoma. Following this diagnosis, oral prednisone was initiated to alleviate symptoms such as vertigo, nausea, and vomiting. Intravenous immunoglobulin (IVIG) was also started, which led to an improvement in these symptoms.\n\nThe patient's treatment plan included three courses of intravenous etoposide and cisplatin, with radiotherapy administered at a dose of 50.4 Gy. The timeline for the patient's diagnosis and treatment is as follows:\n\n* Initial symptoms: intermittent dry cough and left temporal headaches\n* Progression of symptoms: subacute vertigo, nausea, vomiting, and ataxia (hospital admission)\n* Diagnosis: squamous cell lung carcinoma with multiple lymph node metastasis\n* Treatment:\n\t+ Oral prednisone initiated to alleviate symptoms\n\t+ Intravenous immunoglobulin (IVIG) started to alleviate symptoms\n\t+ Three courses of intravenous etoposide and cisplatin\n\t+ Radiotherapy administered at a dose of 50.4 Gy\n\nThe patient's current status is not explicitly stated in the provided data, but it can be inferred that they are receiving ongoing treatment for their squamous cell lung carcinoma. The timeline suggests that the patient has been under treatment for several weeks, with some improvement in symptoms and potentially some progression or stabilization of the disease.\n\nIt is worth noting that the patient's demographics, including age and sex, are not explicitly stated in the provided data. However, based on the information provided, it can be inferred that the patient is a 55-year-old male who has been diagnosed with squamous cell lung carcinoma.", + "bertscore": { + "precision": [ + 0.5163893103599548 + ], + "recall": [ + 0.6056607365608215 + ], + "f1": [ + 0.5574737191200256 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 2, + "node_count": 9, + "edge_count": 7, + "avg_in_degree": 0.7777777777777778, + "density": 0.09722222222222222 + }, + "trajectory_embedding": [ + 0.21283334493637085, + 0.2261987030506134, + -0.18569672107696533, + 0.07250019162893295, + -0.07191392034292221, + 0.026674848049879074, + 0.13202348351478577, + 0.17625777423381805, + 0.3370841145515442, + -0.3352464735507965, + -0.19530074298381805, + 0.2723828852176666, + -0.5447418689727783, + -0.1018790602684021, + -0.38133886456489563, + 0.0197188351303339, + -0.013194016180932522, + 0.2992449104785919, + -0.11195860803127289, + -0.15697285532951355, + -0.24436324834823608, + 0.10384102165699005, + -0.3071918785572052, + -0.1414511799812317, + 0.024036221206188202, + 0.044095903635025024, + 0.31548312306404114, + 0.39260685443878174, + 0.14768189191818237, + 0.28036460280418396, + 0.3064742088317871, + 0.18841558694839478, + -0.0862426608800888, + -0.041264329105615616, + -0.16962404549121857, + 0.31783565878868103, + 0.25215375423431396, + 0.2695865035057068, + -0.042982976883649826, + 0.03094445914030075, + -0.030378904193639755, + 0.06392259150743484, + 0.6801570057868958, + 0.21543031930923462, + 0.5389238595962524, + -0.605004608631134, + -0.043979160487651825, + 0.4234747886657715, + -0.33355647325515747, + -0.001393609563820064, + 0.2408851832151413, + 0.6266682147979736, + 0.5581599473953247, + -0.007645789068192244, + 0.363479346036911, + -0.16565929353237152, + -0.2857747972011566, + -0.2333429902791977, + -0.18875747919082642, + 0.16070450842380524, + 0.020091155543923378, + -0.015242391265928745, + 0.004262878559529781, + 0.0805559754371643, + -0.225491464138031, + -0.08067435771226883, + -0.10134094208478928, + 0.07511609047651291, + -0.036051489412784576, + -0.14822736382484436, + -0.3002973198890686, + -0.36176469922065735, + -0.10734054446220398, + 0.19100052118301392, + 0.08973736315965652, + -0.2704123556613922, + 0.27427226305007935, + 0.011898607015609741, + 0.13745014369487762, + 0.14464294910430908, + 0.07898195832967758, + 0.03388437256217003, + -0.002102586906403303, + 0.19303452968597412, + -0.3502916693687439, + 0.14056171476840973, + -0.06496694684028625, + -0.0340188704431057, + -0.2515440583229065, + 0.25466108322143555, + 0.2112123668193817, + -0.2544920742511749, + -0.06839431822299957, + -0.15561389923095703, + -0.008667134679853916, + 0.0018484062748029828, + 0.07454684376716614, + 0.42554399371147156, + 0.9718409776687622, + 0.03468671813607216, + 0.18116915225982666, + 0.13545650243759155, + 0.2403615564107895, + 0.04644368961453438, + 0.4630066454410553, + -0.289556086063385, + 0.23708555102348328, + -0.46381527185440063, + 0.12591427564620972, + 0.3964519500732422, + 0.01366723608225584, + -0.10981326550245285, + -0.0507669672369957, + -0.23785100877285004, + -0.0004187557497061789, + 0.02311922051012516, + -0.14743798971176147, + 0.2172967791557312, + 0.06545457243919373, + -0.37822937965393066, + 0.007886763662099838, + -0.2027176171541214, + 0.16810692846775055, + 0.30216607451438904, + -0.31726202368736267, + -0.09446362406015396, + -0.04623013734817505, + 0.07307060807943344, + 0.06007042154669762, + 0.14948076009750366, + -0.265523225069046, + -0.09516588598489761, + 0.02646833285689354, + 0.21589338779449463, + -0.12413574755191803, + 0.31536081433296204, + -0.46508774161338806, + 0.08332397788763046, + -1.0640779733657837, + 0.13872206211090088, + -0.33625900745391846, + -0.07653570175170898, + 0.09586820006370544, + -0.45436224341392517, + -0.09874200820922852, + -0.1680566370487213, + -0.19887857139110565, + 0.13407449424266815, + -0.043161749839782715, + -0.019084269180893898, + -0.03355707600712776, + -0.045656006783246994, + 0.0748986080288887, + 0.07378706336021423, + -0.018580952659249306, + 0.1397104114294052, + 0.19816569983959198, + 0.3265959918498993, + 0.17126215994358063, + -0.17007790505886078, + -0.011945413425564766, + 0.33434587717056274, + -0.1633022427558899, + 0.03446871414780617, + 0.02192101441323757, + -0.5796559453010559, + 0.1331268548965454, + -0.28031033277511597, + 0.19753162562847137, + -0.06252069026231766, + -0.14420628547668457, + 0.15576739609241486, + -0.09634782373905182, + 0.48831450939178467, + 0.33430176973342896, + 0.46575137972831726, + -0.049799975007772446, + -0.01480710506439209, + 0.10451763868331909, + 0.040878474712371826, + -0.07442136853933334, + -0.024852236732840538, + 0.43379896879196167, + 0.12939031422138214, + -0.3333817720413208, + 0.10121433436870575, + 0.41327017545700073, + -0.21703380346298218, + -0.16962268948554993, + -0.10190442204475403, + 0.28198665380477905, + -0.22347715497016907, + 0.22554223239421844, + -0.2476748824119568, + -0.06317707896232605, + -0.011066824197769165, + -0.29848989844322205, + -0.25970691442489624, + 0.13536418974399567, + -0.09653794765472412, + 0.16976243257522583, + 0.09345123916864395, + -0.24072140455245972, + 0.16812534630298615, + 0.16770689189434052, + -0.11964637786149979, + 0.23136168718338013, + 0.05894629284739494, + 0.07916602492332458, + -0.16929058730602264, + -0.27491092681884766, + 0.15414299070835114, + 0.1325346827507019, + 0.2680622935295105, + 0.04969082027673721, + -0.14524608850479126, + 0.15766379237174988, + -0.06972102075815201, + -0.11582052707672119, + 0.08449088037014008, + -0.033755555748939514, + -0.07581183314323425, + 0.24828237295150757, + 0.05252065137028694, + -0.30359601974487305, + 0.1934724599123001, + 0.15098494291305542, + 0.09961482137441635, + 0.010259062051773071, + -0.16212156414985657, + 0.0635111853480339, + -0.24676460027694702, + 0.31443431973457336, + -0.11933349072933197, + -0.26863938570022583, + -0.2714122533798218, + 0.09790021926164627, + -0.025338806211948395, + -0.22963809967041016, + 0.3331666886806488, + -0.0713672935962677, + -0.13498127460479736, + 0.17511877417564392, + -0.21284346282482147, + -0.050672683864831924, + -0.13277965784072876, + -0.02451874129474163, + 0.35359668731689453, + 0.14838196337223053, + 0.35270678997039795, + 0.20181067287921906, + -0.057285111397504807, + 0.1375797986984253, + -0.3551873564720154, + -0.13520625233650208, + -0.28147387504577637, + -0.05275240167975426, + -0.09671392291784286, + -0.4379449784755707, + -0.10087770968675613, + 0.14222633838653564, + -0.250449538230896, + 0.15648314356803894, + -0.3380715847015381, + -0.0799122005701065, + -0.1471976637840271, + -0.10669047385454178, + 0.1332779973745346, + -0.25184744596481323, + 0.02016431652009487, + -0.3227500021457672, + -0.1776902973651886, + -0.0762394517660141, + 0.09082266688346863, + 0.20542031526565552, + 0.1545739620923996, + 0.02847827784717083, + 0.2123955339193344, + 0.13280418515205383, + -0.4918714761734009, + -0.407980352640152, + 0.09903141111135483, + -0.30152398347854614, + 0.32844293117523193, + -0.1322653889656067, + 0.23518212139606476, + 0.5350030064582825, + 0.03905997425317764, + 0.19683937728405, + 0.33506685495376587, + 0.49745315313339233, + 0.12021812051534653, + -0.1583317220211029, + 0.005540571175515652, + 0.0022256742231547832, + -0.003721402259543538, + -0.42594677209854126, + 0.18814119696617126, + -0.20640332996845245, + -0.10578683018684387, + -0.04623890668153763, + 0.1836135983467102, + 0.08455851674079895, + -0.3398422300815582, + -0.22167637944221497, + 0.5941989421844482, + 0.045187801122665405, + 0.06291237473487854, + 0.0490005761384964, + 0.32379281520843506, + 0.50832599401474, + 0.061645057052373886, + -0.19589084386825562, + -0.03434114158153534, + -0.23751074075698853, + -0.1602248102426529, + -0.23692086338996887, + 0.04062122851610184, + 0.2064872533082962, + 0.01689378172159195, + -0.09402807801961899, + 0.3246709704399109, + -0.03264154866337776, + -0.33337417244911194, + 0.019046170637011528, + -0.03687463328242302, + -0.040471598505973816, + -0.34209638833999634, + 0.2732621729373932, + -0.12541009485721588, + 0.010057424195110798, + 0.4563547670841217, + -0.16165989637374878, + -0.24885593354701996, + 0.27481141686439514, + 0.09622248262166977, + -0.3593529760837555, + 0.288421630859375, + -0.21253246068954468, + 0.00503713870421052, + 0.18412859737873077, + -0.1113007590174675, + -0.02591375820338726, + -0.16554638743400574, + 0.16822431981563568, + 0.10946062207221985, + 0.027460826560854912, + -0.13611605763435364, + 0.04138593375682831, + 0.005130467936396599, + 0.4780403673648834, + 0.11630149930715561, + -0.017535844817757607, + 0.3281402587890625, + -0.13995331525802612, + -0.20071503520011902, + 0.07032229006290436, + 0.009234660305082798, + 0.06395798921585083, + -0.28026992082595825, + -0.1801179051399231, + -0.24279287457466125, + 0.24337822198867798, + 0.04438222944736481, + -0.2879486680030823, + 0.013043173588812351, + 0.0997292697429657, + -0.08866995573043823, + -0.0069495271891355515, + 0.20371156930923462, + 0.3201078772544861, + -0.00961106363683939, + 0.3998523950576782, + 0.015987148508429527, + -0.06414195895195007, + 0.1502019613981247, + 0.020884687080979347, + 0.26524603366851807, + -0.08179717510938644, + -0.4002271294593811, + -0.3346138894557953, + 0.05195220559835434, + -0.08302678167819977, + -0.12294937670230865, + 0.052113279700279236, + -0.0507148802280426, + -0.028813868761062622, + -0.10453584790229797, + 0.21591179072856903, + -0.10600656270980835, + 0.12666364014148712, + -0.08397616446018219, + 0.3688596189022064, + -0.09853846579790115, + -0.3165881037712097, + 0.05747140198945999, + 0.050059668719768524, + 0.21534447371959686, + -0.1537393182516098, + -0.06781406700611115, + -0.11774025857448578, + 0.26112401485443115, + -0.12978605926036835, + -0.048902615904808044, + -4.07341867685318e-05, + -0.0012700326042249799, + -0.2337864488363266, + -0.38982418179512024, + 0.0813867598772049, + -0.06676480919122696, + -0.19045819342136383, + -0.20997051894664764, + 0.23356352746486664, + -0.058150988072156906, + -0.19093768298625946, + 0.0025059713516384363, + 0.26999032497406006, + 0.20945996046066284, + -0.06236864626407623, + 0.12354644387960434, + 0.27220234274864197, + -0.04315519705414772, + 0.21787072718143463, + -0.1447262167930603, + 0.17601896822452545, + -0.03411378338932991, + -0.26682984828948975, + 0.0814981535077095, + 0.009347396902740002, + -0.21583884954452515, + -0.019352883100509644, + 0.02298767864704132, + 0.13206809759140015, + 0.05135887861251831, + -0.007022013887763023, + -0.0631742924451828, + 0.05752534419298172, + -0.2853194773197174, + 0.0693616047501564, + 0.4101787507534027, + -0.03222912922501564, + 0.31939446926116943, + -0.05273374170064926, + -0.3583529591560364, + -0.07946258038282394, + -0.11275181174278259, + -0.3122475743293762, + 0.1589924544095993, + 0.06508535891771317, + -0.181715726852417, + -0.06236620247364044, + 0.09195244312286377, + 0.12129002064466476, + -0.024573825299739838, + 0.19135305285453796, + 0.04742388054728508, + 0.05829234421253204, + -0.011050757020711899, + -0.281404584646225, + -0.01098252460360527, + -0.36622852087020874, + -0.18200738728046417, + -0.33202052116394043, + 0.35880517959594727, + 0.1444559097290039, + -0.04766280576586723, + 0.06378807872533798, + 0.05220311880111694, + -0.3367024064064026, + -0.13326400518417358, + 0.03771273419260979, + -0.06240672618150711, + 0.5404244661331177, + 0.18733787536621094, + -0.15763355791568756, + 0.18037450313568115, + -0.316437304019928, + 0.009263915941119194, + 0.20572476089000702, + 0.16431133449077606, + 0.28605031967163086, + 0.20958532392978668, + 0.2013704478740692, + 0.4319247007369995, + 0.20126846432685852, + -0.005891015287488699, + 0.3217604458332062, + -0.027137458324432373, + 0.007510947063565254, + -0.13873188197612762, + -0.1854327917098999, + 0.37591949105262756, + -0.3473818004131317, + 0.14400824904441833, + 0.1279822140932083, + 0.2321036458015442, + -0.2766396403312683, + -0.23293399810791016, + -0.0751987174153328, + -0.049745071679353714, + -0.16147270798683167, + -0.4183061420917511, + -0.14531849324703217, + 0.08848855644464493, + -0.3244529664516449, + 0.048147521913051605, + 0.3318268060684204, + 0.20140165090560913, + 0.20443791151046753, + 0.08305230736732483, + -0.18334899842739105, + -0.44337591528892517, + 0.14690585434436798, + 0.2870486080646515, + 0.015619761310517788, + -0.11644724011421204, + -0.1881403625011444, + 0.08180245012044907, + 0.49300214648246765, + -0.08759057521820068, + -0.1492140144109726, + -0.10097543150186539, + -0.09030762314796448, + -0.019598310813307762, + 0.009156394749879837, + -0.10598734021186829, + -0.12093382328748703, + -0.29830437898635864, + 0.14583489298820496, + -0.20407335460186005, + -0.3196157217025757, + 0.11356539279222488, + -0.23035423457622528, + -0.3347676992416382, + -0.07506687194108963, + 0.2951148748397827, + -0.1841394305229187, + -0.08473078906536102, + 0.057009320706129074, + 0.5688856840133667, + 0.15249386429786682, + 0.024907313287258148, + 0.09165069460868835, + -0.3258637487888336, + 0.0017414229223504663, + 0.21541738510131836, + -0.1512048840522766, + 0.16125212609767914, + 0.12769708037376404, + 0.26745450496673584, + 0.2590113878250122, + 0.20553970336914062, + -0.4713110327720642, + 0.12736015021800995, + 0.26676782965660095, + 0.16526669263839722, + -0.2720050513744354, + -10.899870872497559, + 0.045490071177482605, + -0.14056718349456787, + 0.48876774311065674, + -0.15082964301109314, + 0.11659985035657883, + 0.1083529070019722, + 0.03025604598224163, + 0.22857099771499634, + 0.2745342254638672, + -0.33267533779144287, + 0.059894442558288574, + 0.1682625561952591, + 0.11300323903560638, + 0.051654599606990814, + 0.014451961033046246, + -0.10297545790672302, + 0.2783627510070801, + 0.08534044772386551, + 0.2424316704273224, + 0.11571012437343597, + 0.4719645082950592, + -0.11004272848367691, + 0.29751279950141907, + 0.1504238396883011, + -0.25993359088897705, + -0.2020144760608673, + 0.3196897506713867, + 0.05853502079844475, + -0.3853840231895447, + 0.20245157182216644, + 0.03566883131861687, + -0.1107543557882309, + -0.10815233737230301, + -0.0011197924613952637, + -0.25315192341804504, + -0.05670708417892456, + -0.048502445220947266, + -0.04860137030482292, + -0.17308034002780914, + 0.006812499836087227, + -0.20557016134262085, + 0.14916878938674927, + 0.20557747781276703, + -0.06213407218456268, + -0.3531949818134308, + -0.2083752304315567, + -1.4600480794906616, + 0.3418825566768646, + 0.35777875781059265, + 0.5423658490180969, + 0.060710079967975616, + 0.21327579021453857, + 0.14046257734298706, + -0.4543054401874542, + 0.12098178267478943, + -0.20515523850917816, + 0.11073673516511917, + 0.1942926049232483, + -0.02554556354880333, + 0.12231021374464035, + -0.09081941097974777, + 0.40735042095184326, + -0.25884416699409485, + -0.1699652224779129, + 0.1723531037569046, + -0.18658211827278137, + 0.05605747923254967, + -0.027085013687610626, + -0.23952047526836395, + -0.41727176308631897, + -0.027840005233883858, + -0.008344557136297226, + 0.17404943704605103, + 0.48877158761024475, + 0.048919107764959335, + -0.34051406383514404, + 0.2041877806186676, + -0.05990995466709137, + 0.2882596254348755, + 0.13159213960170746, + 0.020799560472369194, + 0.045565515756607056, + -0.149105504155159, + -0.008681552484631538, + -0.24527771770954132, + -0.07267572730779648, + 0.43082869052886963, + -0.09393588453531265, + 0.006248306017369032, + -0.012732194736599922, + 0.17859205603599548, + -0.10465846210718155, + -0.14659176766872406, + -0.4048817455768585, + 0.05939580500125885, + 0.002015696605667472, + -0.041262369602918625, + -0.004457493778318167, + 0.014516751281917095, + -0.17552635073661804, + -0.07980498671531677, + 0.02432759292423725, + -0.44587981700897217, + -0.2516319751739502, + 0.3019556701183319, + 0.2567998766899109, + 0.22570385038852692, + 0.16664236783981323, + 0.2512465715408325, + 0.05109352618455887, + -0.07403482496738434, + 0.3565337359905243, + 0.4589897692203522, + 0.16411586105823517, + -0.10788187384605408, + -0.1400454342365265, + -0.02829481102526188, + -0.2165587991476059, + 0.04056546464562416, + 0.4594404995441437, + -0.008534431457519531, + 0.2554766535758972, + 0.3977060317993164, + 0.02593780681490898, + -0.20805838704109192, + 0.9135934114456177, + -0.20856255292892456, + 0.26527053117752075, + -0.11175020784139633, + 0.1500868797302246, + -0.06991802155971527, + -0.2677736282348633, + 0.13384991884231567, + 0.33276790380477905, + -0.2025960236787796, + 0.4392930865287781, + 0.09262576699256897, + -0.3638356626033783, + 0.06772565096616745, + -0.22991813719272614, + 0.36017489433288574, + 0.188194140791893, + 0.2976173758506775, + -0.15880116820335388, + -0.2994076907634735, + -0.18980084359645844, + 0.04826117306947708, + -0.43584704399108887, + -0.2398812472820282, + -0.14241263270378113, + 0.039177801460027695, + -0.08267208188772202, + -0.23236876726150513, + 0.2714538872241974, + 0.08902620524168015, + -0.16783401370048523, + -0.11827147006988525, + -0.5969451069831848, + -0.14278316497802734, + 0.07921724766492844, + 0.5476028919219971, + 0.06470826268196106, + -0.07706396281719208, + -0.03389648720622063, + 0.17959539592266083, + -0.031061602756381035, + 0.01697085052728653, + 0.030577894300222397, + -0.04744522273540497, + -0.44362449645996094, + 0.15526634454727173, + 0.03123527765274048, + -0.32432401180267334, + -0.1853085160255432, + -0.3158264458179474, + 0.188261479139328, + -0.0017749584512785077, + -0.15611261129379272, + 0.3042958974838257, + 0.2432161420583725, + 0.0450713112950325, + 0.023609524592757225, + -0.19505208730697632, + 0.26095151901245117, + 0.2553902268409729, + 0.18188053369522095, + 0.12970411777496338, + -0.13089893758296967, + -0.379459023475647, + -0.3980197608470917, + 0.2006080150604248, + -0.28226834535598755, + -0.0964260995388031, + 0.0914294645190239, + 0.1325417011976242, + -0.2629554271697998, + 0.10421829670667648, + -0.26234742999076843, + 0.036127373576164246, + -0.2396201491355896, + 0.14727406203746796, + 0.3077162206172943, + -0.2678605318069458, + 0.0037977034226059914, + -0.20072217285633087, + 0.34394168853759766, + 0.16432230174541473, + -0.22313080728054047, + 0.13270944356918335, + -0.055142730474472046 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_047.json b/src/benchmark/output/results/results_graph_047.json new file mode 100644 index 0000000..82a79f9 --- /dev/null +++ b/src/benchmark/output/results/results_graph_047.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 70-year-old male with a history of asbestos exposure and former smoking (20 pack-years).\n\n**Timeline of Diagnoses:**\n\n1. **2023:** The patient was diagnosed with large-cell squamous carcinoma of the left upper lobe with mediastinal lymph node metastases (cT4 cN3 cM0, stage IIIC).\n2. **2023:** The patient underwent treatment with curative intent, consisting of four cycles of vinorelbine/carboplatin, one cycle of durvalumab, and radiotherapy (total dose: 60 Gy).\n\n**Timeline of Treatments:**\n\n1. **2023:** The patient received four cycles of vinorelbine/carboplatin.\n2. **2023:** The patient received one cycle of durvalumab.\n3. **2023:** The patient underwent radiotherapy.\n\n**Timeline of Outcomes:**\n\n1. **After treatment (2023):** The patient's bilateral radiation pneumonitis progression was monitored.\n2. **After treatment (2023):** A CT scan showed regression of the left central tumor, mediastinal, and right hilar lymph nodes, along with a trend toward resolution of bipulmonary pneumonitis.\n3. **After treatment (2023):** Bronchoscopy revealed marked tumor regression in the left upper lobe, with histology showing bronchial wall reserve cell hyperplasia and mucosal changes, but no recurrence of the previously diagnosed poorly differentiated squamous cell carcinoma or evidence of malignancy.\n4. **After treatment (2023):** A CT scan revealed a new lesion suspicious for malignancy in liver segments V and VI, consistent with metastasis from the known squamous cell carcinoma of the lung.\n\n**Current Status:**\nThe patient is currently undergoing evaluation for surgical resection of solitary centrally located hepatic metastasis. The pulmonary tumor board has recommended this course of action based on imaging findings.\n\nIn summary, the patient was diagnosed with stage IIIC large-cell squamous carcinoma of the left upper lobe in 2023 and underwent treatment with curative intent. Following treatment, there were significant improvements in lung function and tumor regression, but a new lesion suspicious for malignancy was detected in the liver. The patient is now being evaluated for surgical resection of the hepatic metastasis.", + "bertscore": { + "precision": [ + 0.7259575724601746 + ], + "recall": [ + 0.749750554561615 + ], + "f1": [ + 0.7376622557640076 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 8, + "edge_count": 7, + "avg_in_degree": 0.875, + "density": 0.125 + }, + "trajectory_embedding": [ + 0.23916545510292053, + 0.0230923630297184, + -0.08824869245290756, + 0.20278996229171753, + 0.04306795075535774, + 0.1345890760421753, + 0.015297275967895985, + 0.4002745747566223, + 0.5124368071556091, + -0.3175220787525177, + -0.045064736157655716, + -0.16486221551895142, + -0.5308375358581543, + -0.10607318580150604, + -0.2521823048591614, + 0.38863450288772583, + -0.037071093916893005, + 0.2851150929927826, + 0.018904972821474075, + -0.19477026164531708, + -0.47042977809906006, + 0.13593415915966034, + -0.4420822858810425, + 0.009708592668175697, + 0.2584648132324219, + -0.03729706630110741, + 0.39717987179756165, + 0.4403141140937805, + 0.3876214027404785, + 0.3821466565132141, + -0.049008093774318695, + -0.25582513213157654, + 0.26447319984436035, + 0.1338401436805725, + -0.37289562821388245, + 0.19368356466293335, + 0.15885013341903687, + 0.3817512094974518, + -0.13554736971855164, + 0.006086982786655426, + -0.2432585209608078, + 0.016892213374376297, + 0.8058010339736938, + 0.08626192063093185, + 0.5061189532279968, + -0.7485342025756836, + -0.04848037660121918, + 0.633547306060791, + -0.5691675543785095, + -0.3443128168582916, + 0.04448810964822769, + 0.841015100479126, + 0.5138186812400818, + -0.3893077075481415, + 0.40973517298698425, + -0.09072116017341614, + -0.213058739900589, + -0.20061297714710236, + -0.17622539401054382, + 0.01604689285159111, + 0.1056060865521431, + -0.49434196949005127, + 0.5643545389175415, + -0.3151908218860626, + -0.1822681725025177, + -0.21250919997692108, + -0.23800277709960938, + 0.1030765250325203, + -0.03802601248025894, + -0.5116323232650757, + -0.29254502058029175, + -0.19391736388206482, + -0.11960951238870621, + 0.15392082929611206, + 0.09672687947750092, + -0.1783643662929535, + 0.34146153926849365, + -0.04866170138120651, + 0.23927748203277588, + 0.2640075087547302, + -0.12428838014602661, + -0.25246673822402954, + -0.16459450125694275, + 0.28464609384536743, + -0.29049500823020935, + 0.08885020017623901, + -0.07627468556165695, + -0.2656208872795105, + -0.4493290185928345, + 0.15903203189373016, + 0.18786358833312988, + -0.345028281211853, + -0.061763737350702286, + -0.14254821836948395, + -0.013278767466545105, + 0.3473942279815674, + 0.65049809217453, + 0.1609984040260315, + 0.8541498184204102, + 0.07158741354942322, + 0.15381012856960297, + -0.0981658324599266, + 0.23000434041023254, + 0.1067076027393341, + 0.42738673090934753, + -0.11173161119222641, + 0.23492659628391266, + -0.45706427097320557, + 0.2904343008995056, + 0.5158804059028625, + 0.1607303023338318, + -0.25217539072036743, + -0.059543635696172714, + -0.09460222721099854, + 0.2728523015975952, + 0.19561836123466492, + 0.016242103651165962, + 0.2902768552303314, + 0.37699025869369507, + -0.5121920704841614, + -0.31924423575401306, + -0.0025723539292812347, + 0.2821520268917084, + 0.3053229749202728, + -0.534160852432251, + -0.06154714524745941, + -0.1291109174489975, + -0.04548010975122452, + -0.04747118428349495, + 0.03312918543815613, + -0.4919358193874359, + -0.26127490401268005, + -0.0075714364647865295, + -0.05427156016230583, + -0.10557722300291061, + 0.2518463730812073, + -0.2499013990163803, + -0.01850511133670807, + -1.069656252861023, + 0.27897733449935913, + -0.36940649151802063, + -0.10615763813257217, + -0.01936846412718296, + -0.41995441913604736, + -0.32895535230636597, + -0.11551427096128464, + -0.16118542850017548, + 0.1899474859237671, + -0.19357386231422424, + -0.015926243737339973, + 0.11461936682462692, + 0.024804159998893738, + 0.21615669131278992, + 0.7853617668151855, + 0.08007519692182541, + 0.05699310451745987, + -0.012561127543449402, + 0.11941462755203247, + 0.1282266080379486, + -0.08349186182022095, + 0.014021685346961021, + 0.5199325680732727, + 0.33884796500205994, + 0.0853668600320816, + -0.1701793074607849, + -0.5042878985404968, + -0.00989300012588501, + -0.19875264167785645, + -0.0014421450905501842, + 0.10112608969211578, + -0.10305187851190567, + 0.09125569462776184, + -0.48077112436294556, + 0.6939082741737366, + -0.10595937073230743, + 0.17632851004600525, + -0.11461243778467178, + -0.052738502621650696, + 0.11999131739139557, + 0.22470800578594208, + 0.20191341638565063, + -0.30140095949172974, + 0.6688401103019714, + 0.18269459903240204, + -0.2808096408843994, + 0.21060001850128174, + 0.311078280210495, + 0.1429791897535324, + -0.1396367847919464, + 0.08299676328897476, + 0.6329383254051208, + -0.33071354031562805, + 0.550216019153595, + -0.3539048433303833, + -0.12094932794570923, + 0.27331990003585815, + -0.017761703580617905, + -0.0038242973387241364, + -0.14559796452522278, + -0.1315731257200241, + 0.26408910751342773, + 0.07293840497732162, + -0.5072392225265503, + -0.016257930546998978, + 0.1891871839761734, + -0.07932303845882416, + 0.2373342365026474, + 0.03519657999277115, + 0.0522322878241539, + 0.08119183778762817, + -0.03141401335597038, + 0.27265000343322754, + -0.2881734371185303, + 0.2721598744392395, + 0.028905320912599564, + -0.4228232800960541, + 0.2643834352493286, + 0.003331054002046585, + -0.15850666165351868, + 0.17926450073719025, + -0.009748805314302444, + -0.32150959968566895, + -0.1287781000137329, + 0.06742924451828003, + -0.6642765998840332, + 0.1319436877965927, + 0.034188564866781235, + 0.2950955629348755, + 0.276382714509964, + -0.01744288019835949, + -0.14421921968460083, + -0.36711204051971436, + 0.4551778733730316, + -0.08603548258543015, + -0.201155886054039, + -0.3019055128097534, + 0.279215544462204, + -0.17544490098953247, + 0.16002945601940155, + 0.4527830481529236, + -0.07686503231525421, + -0.14373202621936798, + 0.09858730435371399, + -0.2869427800178528, + -0.2016579508781433, + -0.38160017132759094, + -0.012671157717704773, + 0.34799814224243164, + 0.019776195287704468, + 0.1877691000699997, + 0.09789854288101196, + -0.23447027802467346, + 0.16238880157470703, + -0.15985991060733795, + -0.45827415585517883, + -0.46151238679885864, + -0.03140532597899437, + -0.22493813931941986, + -0.683695375919342, + 0.182869553565979, + -0.08783626556396484, + -0.04191240668296814, + 0.1721004694700241, + -0.23982855677604675, + -0.0641641765832901, + 0.1367921233177185, + -0.06810329854488373, + 0.001751813106238842, + -0.37681809067726135, + 0.24769265949726105, + -0.20568883419036865, + -0.28103840351104736, + -0.2688092887401581, + 0.03259442746639252, + 0.10483285784721375, + -0.06590881943702698, + -0.39494168758392334, + -0.07504241168498993, + 0.12199659645557404, + -0.25332510471343994, + 0.0020755608566105366, + 0.1859305202960968, + -0.08978505432605743, + 0.13364790380001068, + 0.07839521020650864, + 0.2208636850118637, + 0.11190396547317505, + -0.04260125756263733, + 0.042628321796655655, + 0.3449624478816986, + 0.48940905928611755, + -0.21866746246814728, + 0.06838104873895645, + -0.05458301305770874, + -0.03437357395887375, + -0.0042863450944423676, + -0.44777849316596985, + 0.39815208315849304, + 0.09851765632629395, + 0.07063926756381989, + 0.07985954731702805, + 0.2961411476135254, + 0.05039303004741669, + -0.1432095468044281, + 0.12772899866104126, + 0.4197957217693329, + 0.05026201158761978, + 0.18824194371700287, + 0.1270054429769516, + 0.2243354171514511, + 0.23185107111930847, + -0.20890329778194427, + 0.0867835283279419, + 0.33312249183654785, + -0.10439618676900864, + -0.29665976762771606, + 0.0401923768222332, + 0.12260034680366516, + 0.5354807376861572, + -0.19739985466003418, + -0.19240960478782654, + -0.14141829311847687, + -0.3047819435596466, + -0.008016234263777733, + -0.3746032118797302, + -0.25688785314559937, + 0.1265971064567566, + -0.2793007493019104, + 0.3787802457809448, + 0.18748435378074646, + -0.10201786458492279, + 0.3285340368747711, + -0.4618520140647888, + -0.11969727277755737, + 0.19547995924949646, + -0.20717766880989075, + -0.4529758095741272, + 0.4938090443611145, + -0.140267476439476, + -0.017146294936537743, + 0.381991982460022, + -0.4191562533378601, + -0.0011249706149101257, + 0.1729729175567627, + 0.31922033429145813, + -0.1018112301826477, + 0.07167018204927444, + -0.09922455251216888, + 0.11736948043107986, + 0.1284363567829132, + 0.5605899691581726, + 0.09406490623950958, + 0.3356720805168152, + 0.6863611340522766, + 0.3335127830505371, + -0.40812984108924866, + 0.038330331444740295, + -0.1938192993402481, + 0.4838044345378876, + -0.09166642278432846, + -0.10729428380727768, + -0.21923017501831055, + 0.08228041231632233, + 0.05134449154138565, + -0.4769124686717987, + 0.17687159776687622, + 0.17856737971305847, + 0.11245335638523102, + -0.10231593251228333, + 0.3954057991504669, + 0.11438082158565521, + -0.11861132830381393, + 0.5594603419303894, + -0.0075246915221214294, + -0.1524541676044464, + 0.39226430654525757, + -0.26632678508758545, + 0.12958218157291412, + 0.009744266048073769, + -0.0960906594991684, + -0.37086981534957886, + 0.07494677603244781, + -0.3257332444190979, + -0.17820055782794952, + 0.005342049524188042, + -0.2660077214241028, + 0.26408451795578003, + -0.27889934182167053, + 0.0432979017496109, + -0.0657203420996666, + 0.21732458472251892, + 0.2024593949317932, + 0.28990885615348816, + 0.005886562168598175, + -0.1550672948360443, + 0.2148192673921585, + 0.0015115812420845032, + -0.06681744754314423, + -0.18324996531009674, + -0.03741396963596344, + -0.1521233767271042, + 0.7285904884338379, + 0.18593727052211761, + 0.04043383151292801, + 0.21845121681690216, + -0.08911292999982834, + -0.1325589120388031, + -0.3723185658454895, + -0.16868582367897034, + -0.11426837742328644, + 0.1486630141735077, + 0.10422483086585999, + 0.10153140872716904, + -0.46194273233413696, + -0.21856406331062317, + -0.060465067625045776, + -0.09730280935764313, + -0.021878190338611603, + -0.1325068175792694, + -0.22135767340660095, + 0.18732614815235138, + 0.29881227016448975, + 0.4374503493309021, + -0.41367796063423157, + 0.11229455471038818, + -0.0002710586413741112, + -0.24133408069610596, + -0.12433796375989914, + -0.03534567356109619, + -0.3819577693939209, + -0.22154533863067627, + 0.2849128544330597, + 0.40452176332473755, + -0.06325969099998474, + -0.049002375453710556, + 0.17511479556560516, + 0.3053179979324341, + -0.3844383955001831, + -0.07662883400917053, + 0.26200243830680847, + 0.16683663427829742, + 0.3666679561138153, + 0.03493577241897583, + -0.4416690170764923, + -0.25778740644454956, + -0.16799700260162354, + -0.3037862777709961, + -0.021426640450954437, + 0.4362791180610657, + 0.03571189567446709, + -0.21172034740447998, + -0.0811365470290184, + 0.038668207824230194, + -0.14651688933372498, + 0.3068229854106903, + -0.2044486105442047, + 0.22866614162921906, + -0.04144268482923508, + -0.2558550238609314, + -0.16902348399162292, + -0.10302722454071045, + -0.3275451362133026, + -0.2208402305841446, + 0.11180940270423889, + 0.28104057908058167, + -0.34812524914741516, + -0.027566388249397278, + 0.10804525017738342, + -0.0959005355834961, + -0.06651468575000763, + -0.02577967941761017, + -0.3739625811576843, + 0.2859920263290405, + -0.180495947599411, + -0.10680633038282394, + 0.10557601600885391, + -0.08656129240989685, + 0.1028042584657669, + 0.0967804342508316, + 0.1276516616344452, + 0.33789464831352234, + 0.08203957229852676, + 0.00387607142329216, + 0.5865333080291748, + 0.1344289630651474, + 0.05920006334781647, + 0.36273401975631714, + 0.09247457981109619, + 0.10208229720592499, + -0.34571799635887146, + -0.22338548302650452, + 0.15807968378067017, + -0.37924081087112427, + -0.18483760952949524, + 0.0900421291589737, + 0.237489715218544, + -0.3945906162261963, + -0.26531246304512024, + 0.054495684802532196, + 0.07848251610994339, + -0.01681666634976864, + -0.10847945511341095, + -0.25728121399879456, + -0.17053720355033875, + -0.3721294105052948, + -0.05608925595879555, + 0.28020715713500977, + 0.5741140842437744, + 0.2486969232559204, + 0.18071886897087097, + -0.3345600366592407, + -0.3132767379283905, + 0.28371867537498474, + 0.260001003742218, + 0.11227370798587799, + 0.025435443967580795, + -0.1776626706123352, + 0.4133024215698242, + 0.2735271155834198, + -0.01336791180074215, + 0.19291508197784424, + 0.17389336228370667, + 0.14605510234832764, + 0.2845494747161865, + 0.17875203490257263, + -0.22361686825752258, + -0.02501485124230385, + -0.4463793933391571, + 0.17412002384662628, + -0.3153131902217865, + -0.05125986039638519, + 0.2922404110431671, + -0.13809095323085785, + -0.48151740431785583, + -0.3123106360435486, + 0.284854918718338, + -0.22633789479732513, + -0.1700834333896637, + 0.2542152404785156, + 0.25463560223579407, + -0.01636194810271263, + -0.37074896693229675, + 0.005656082183122635, + -0.6684494614601135, + -0.4096358120441437, + 0.10456229001283646, + 0.03701178729534149, + -0.2163981795310974, + -0.007624402642250061, + 0.5075787901878357, + 0.6817411780357361, + 0.28864145278930664, + -0.034330084919929504, + 0.10676489770412445, + 0.518778920173645, + 0.30994075536727905, + -0.16890737414360046, + -10.590301513671875, + -0.201033353805542, + -0.3370797634124756, + 0.542715847492218, + -0.2142484486103058, + 0.07573401927947998, + 0.18965254724025726, + -0.04836706817150116, + 0.008721616119146347, + 0.12023971229791641, + -0.12402694672346115, + -0.09447978436946869, + 0.16497579216957092, + 0.38085848093032837, + -0.012033773586153984, + 0.09906738996505737, + -0.4826853275299072, + 0.17155183851718903, + -0.050074994564056396, + 0.12218914926052094, + 0.20745059847831726, + 0.3177463710308075, + -0.3625527024269104, + 0.11794580519199371, + -0.10254329442977905, + -0.44881588220596313, + -0.26241692900657654, + 0.6618045568466187, + 0.32269206643104553, + -0.421120285987854, + 0.22773770987987518, + 0.1575206071138382, + -0.26591265201568604, + 0.29699644446372986, + -0.12249276041984558, + 0.08275548368692398, + -0.06796081364154816, + 0.20312267541885376, + 0.42439669370651245, + -0.19628728926181793, + -0.015452743507921696, + -0.10041250288486481, + 0.346131831407547, + 0.16988737881183624, + -0.1442452371120453, + -0.47870659828186035, + -0.1753164380788803, + -1.7188913822174072, + 0.3596162796020508, + 0.18570177257061005, + 0.18797504901885986, + 0.029428336769342422, + 0.14211221039295197, + 0.3416958153247833, + -0.32210758328437805, + -0.06409884989261627, + -0.28580808639526367, + -0.06817889213562012, + 0.022880181670188904, + 0.12477768957614899, + 0.057793404906988144, + -0.004381187260150909, + 0.5921834707260132, + 0.14404599368572235, + -0.3381609618663788, + 0.06214451044797897, + 0.1597573161125183, + -0.24752022325992584, + -0.4016862213611603, + -0.884687066078186, + -0.5153358578681946, + 0.09142717719078064, + -0.22958526015281677, + -0.0415487065911293, + 0.3864733576774597, + -0.1049053966999054, + -0.16927625238895416, + 0.22574736177921295, + 0.14636912941932678, + 0.3017677068710327, + 0.24858558177947998, + -0.021927732974290848, + 0.24723584949970245, + -0.21714502573013306, + -0.31538715958595276, + -0.10662338137626648, + 0.30110156536102295, + 0.5044937133789062, + 0.06342962384223938, + -0.13150478899478912, + 0.04200959950685501, + 0.45574551820755005, + 0.07219965755939484, + -0.16015474498271942, + -0.3810471296310425, + 0.013091824017465115, + -0.05510357767343521, + 0.15148821473121643, + -0.10503404587507248, + -0.2777521014213562, + -0.12041417509317398, + 0.13931074738502502, + 0.0038018710911273956, + -0.6154782176017761, + -0.5535193085670471, + 0.23641686141490936, + 0.10951529443264008, + 0.24948666989803314, + -0.04708016663789749, + -0.3074757158756256, + -0.33928537368774414, + -0.03250422328710556, + 0.1706535816192627, + 0.5144854187965393, + 0.3807712197303772, + -0.01118164137005806, + 0.1425674557685852, + -0.35734373331069946, + -0.1791289746761322, + -0.053970951586961746, + 0.39644381403923035, + -0.2435230016708374, + 0.3315151333808899, + 0.699695348739624, + 0.036628659814596176, + -0.04486513137817383, + 0.853065013885498, + -0.3219931721687317, + 0.341957688331604, + -0.09745914489030838, + 0.1111777126789093, + -0.07859998196363449, + -0.41244250535964966, + 0.1211860179901123, + 0.46449172496795654, + -0.30081796646118164, + 0.8033382296562195, + 0.3214571177959442, + -0.40712040662765503, + -0.07522925734519958, + -0.2641802430152893, + 0.5094892978668213, + 0.2626941204071045, + 0.24601514637470245, + -0.06743049621582031, + -0.31681814789772034, + -0.4083525836467743, + 0.13787397742271423, + -0.30240774154663086, + -0.42868757247924805, + -0.13032883405685425, + 0.13760055601596832, + 0.33177149295806885, + -0.2348630130290985, + 0.31368833780288696, + 0.2298021763563156, + -0.24536295235157013, + -0.3245990574359894, + -0.3302265703678131, + 0.07708606123924255, + 0.2903745472431183, + 0.874649703502655, + -0.0920020192861557, + -0.05545302480459213, + 0.035961199551820755, + 0.08331318199634552, + -0.36245790123939514, + 0.18016792833805084, + 0.12763799726963043, + -0.13697591423988342, + -0.4677819609642029, + 0.2779429256916046, + 0.15159916877746582, + -0.31069982051849365, + -0.01924152672290802, + -0.009670075960457325, + -0.3061944842338562, + 0.19513867795467377, + -0.27031609416007996, + -0.07804754376411438, + 0.41443678736686707, + -0.09974159300327301, + 0.03737006336450577, + -0.2673841118812561, + -0.26906025409698486, + 0.15568692982196808, + 0.33988505601882935, + 0.024549271911382675, + -0.3064970076084137, + -0.24274270236492157, + -0.5429519414901733, + 0.27536195516586304, + -0.32771047949790955, + -0.09318261593580246, + 0.2167423665523529, + 0.1457623392343521, + -0.1423267126083374, + 0.15250545740127563, + -0.01623339019715786, + -0.0032391436398029327, + -0.19003593921661377, + 0.32480764389038086, + 0.4902690351009369, + -0.16600196063518524, + 0.42654579877853394, + 0.019208291545510292, + 0.09474597871303558, + 0.14433564245700836, + -0.17818982899188995, + 0.16263402998447418, + -0.4094008803367615 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_048.json b/src/benchmark/output/results/results_graph_048.json new file mode 100644 index 0000000..e62129b --- /dev/null +++ b/src/benchmark/output/results/results_graph_048.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 68-year-old female who presented with cough and headache in May 2024. She was diagnosed with lung adenocarcinoma, which had metastasized to the brain, mediastinal lymph nodes, and other parts of her body.\n\n**Timeline of Diagnoses:**\n\n1. **May 2024:** The patient presented with cough and headache, leading to a biopsy of the right supraclavicular lymph node (N2). The biopsy confirmed lung adenocarcinoma.\n2. **May 2024:** A diagnosis of advanced lung adenocarcinoma was made, with multiple brain metastases (N3).\n3. **May 2024:** Initial imaging revealed multiple brain metastases, pulmonary lesions, and mediastinal lymphadenopathy.\n\n**Timeline of Treatments:**\n\n1. **May 2024:** The patient underwent whole-brain radiotherapy.\n2. **June 2024:** Next-generation sequencing (NGS) detected a ROS1 fusion and TP53 mutations. The patient started entrectinib therapy.\n3. **July 2024:** The patient experienced significant improvements in headache and insomnia symptoms, indicating a partial response to entrectinib treatment.\n\n**Timeline of Outcomes:**\n\n1. **July 2024:** Imaging showed a reduction in lung nodule size, mediastinal lymph nodes, and intracranial metastatic lesion size, indicating a partial response to entrectinib.\n2. **August 2024:** The patient experienced grade 2 blurred vision and oral mucositis.\n\n**Current Status:**\nThe patient's lung and brain lesions have consistently remained in a state of partial response since starting entrectinib therapy. However, the patient has experienced new symptoms, including blurred vision and oral mucositis, which may indicate a need for further treatment adjustments or additional therapies.\n\nThis clinical case report highlights the importance of personalized medicine approaches, such as targeted therapy with entrectinib, in managing advanced lung cancer with brain metastases.", + "bertscore": { + "precision": [ + 0.6425099968910217 + ], + "recall": [ + 0.6081539392471313 + ], + "f1": [ + 0.6248600482940674 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 8, + "edge_count": 7, + "avg_in_degree": 0.875, + "density": 0.125 + }, + "trajectory_embedding": [ + 0.14966541528701782, + 0.2221803069114685, + -0.19240516424179077, + 0.08077575266361237, + -0.02466701529920101, + 0.20474261045455933, + -0.0013346318155527115, + 0.23096227645874023, + 0.5076491236686707, + -0.410561740398407, + -0.19279606640338898, + 0.06629909574985504, + -0.6102768182754517, + -0.13243712484836578, + -0.3075253367424011, + 0.08040007203817368, + -0.1899433434009552, + 0.2449004352092743, + -0.09295471012592316, + -0.3203767240047455, + -0.37075814604759216, + 0.19448061287403107, + -0.4349818825721741, + -0.041269220411777496, + 0.21338310837745667, + 0.026771236211061478, + 0.3829358220100403, + 0.5876777172088623, + 0.21540428698062897, + 0.31802278757095337, + 0.10701864212751389, + -0.07597276568412781, + 0.080228790640831, + 0.026402857154607773, + -0.2959792912006378, + 0.3052590489387512, + 0.24379383027553558, + 0.23812590539455414, + -0.15856392681598663, + 0.04393874853849411, + -0.19312871992588043, + 0.18494360148906708, + 0.8416618704795837, + 0.2957839369773865, + 0.4321128726005554, + -0.7661833167076111, + -0.059204570949077606, + 0.40680021047592163, + -0.5490126013755798, + -0.1329321712255478, + 0.16410110890865326, + 0.6877588033676147, + 0.7257632613182068, + -0.39265066385269165, + 0.4182553291320801, + -0.327140748500824, + -0.2638970613479614, + -0.20179536938667297, + -0.1879032552242279, + 0.11053405702114105, + -0.00790945440530777, + -0.15319649875164032, + 0.35262438654899597, + -0.1678994596004486, + -0.14073026180267334, + -0.19237345457077026, + -0.2559381425380707, + -0.01022861897945404, + -0.01022962387651205, + -0.30871886014938354, + -0.12903502583503723, + -0.3100150227546692, + -0.03286907076835632, + 0.047581400722265244, + 0.12958477437496185, + -0.13006862998008728, + 0.4655739367008209, + -2.650078386068344e-05, + 0.1600201427936554, + 0.2462025284767151, + 0.07535600662231445, + -0.03262091428041458, + -0.14214198291301727, + 0.2881300449371338, + -0.39257240295410156, + 0.033486198633909225, + -0.06062737852334976, + -0.3609837293624878, + -0.4934014678001404, + 0.18431469798088074, + 0.13876578211784363, + -0.4963354468345642, + -0.007755663245916367, + -0.3198193311691284, + 0.05727698653936386, + 0.1270906925201416, + 0.42905372381210327, + 0.2753284275531769, + 1.0231908559799194, + 0.01168445311486721, + 0.17147968709468842, + 0.00883689895272255, + 0.3151686489582062, + -0.09211920201778412, + 0.3520906865596771, + -0.05493555963039398, + 0.16101008653640747, + -0.5193175077438354, + 0.40484780073165894, + 0.5066609382629395, + 0.023486629128456116, + -0.1306096613407135, + -0.029842006042599678, + -0.47159960865974426, + 0.1999700367450714, + 0.00868641585111618, + -0.004242550581693649, + 0.21268533170223236, + 0.22996659576892853, + -0.39017513394355774, + -0.21297958493232727, + -0.07519520819187164, + 0.3500320613384247, + 0.09663345664739609, + -0.6577458381652832, + -0.09034504741430283, + -0.14407029747962952, + 0.013760283589363098, + -0.0762048214673996, + 0.11406022310256958, + -0.4410538971424103, + -0.16260935366153717, + 0.006210539489984512, + 0.09438003599643707, + -0.17592106759548187, + 0.36640724539756775, + -0.39055371284484863, + -0.04375765100121498, + -1.113560438156128, + 0.28143739700317383, + -0.41744470596313477, + -0.2071913331747055, + -0.049886107444763184, + -0.5039052367210388, + -0.14809955656528473, + -0.09470503032207489, + -0.0655423104763031, + 0.29676926136016846, + -0.10690620541572571, + -0.15369364619255066, + -0.10252248495817184, + -0.12341412901878357, + 0.25864312052726746, + 0.45934349298477173, + 0.1208864375948906, + 0.06827418506145477, + 0.16117902100086212, + 0.32768329977989197, + 0.12742964923381805, + -0.15516196191310883, + 0.12348759174346924, + 0.3954579830169678, + 0.11865823715925217, + 0.023074284195899963, + -0.05963245406746864, + -0.6919969320297241, + -0.0629894807934761, + -0.2279326319694519, + 0.03778563067317009, + 0.015611687675118446, + -0.168528214097023, + 0.15991446375846863, + -0.2959767282009125, + 0.6005589962005615, + 0.1415327936410904, + 0.36508315801620483, + 0.12411679327487946, + 0.17255698144435883, + 0.22601726651191711, + 0.2752682566642761, + 0.11442600190639496, + -0.22074559330940247, + 0.7139566540718079, + 0.14659857749938965, + -0.18170620501041412, + 0.23043982684612274, + 0.30862271785736084, + -0.02431338280439377, + -0.1866346299648285, + -0.06116188317537308, + 0.6012552976608276, + -0.369964063167572, + 0.4033125042915344, + -0.31239941716194153, + -0.07184378057718277, + 0.1109662801027298, + -0.21895462274551392, + -0.09756544232368469, + -0.022591430693864822, + -0.10628204047679901, + 0.24357163906097412, + 0.058583229780197144, + -0.3314272165298462, + 0.060163818299770355, + 0.08720235526561737, + -0.16738876700401306, + 0.07735578715801239, + 0.03268592804670334, + 0.082100510597229, + -0.04631967097520828, + -0.1347777247428894, + 0.39574727416038513, + -0.007662732154130936, + 0.2506340742111206, + 0.09382070600986481, + -0.23156620562076569, + 0.04106605052947998, + -0.03970330208539963, + -0.005714173428714275, + 0.053621917963027954, + -0.015405518934130669, + -0.1627756506204605, + 0.06775444746017456, + 0.020024331286549568, + -0.5150232911109924, + 0.293191522359848, + 0.1893663853406906, + 0.2214912325143814, + 0.04300299286842346, + -0.06880903244018555, + 0.2100725769996643, + -0.4320003092288971, + 0.33475950360298157, + -0.2494293749332428, + -0.1188528761267662, + -0.2381303906440735, + 0.26598674058914185, + -0.2048133909702301, + 0.1102459728717804, + 0.20611214637756348, + 0.0015713870525360107, + -0.18390093743801117, + 0.13734285533428192, + -0.3716282248497009, + -0.10421121120452881, + -0.35344430804252625, + 0.028611907735466957, + 0.35775089263916016, + 0.1252744197845459, + 0.26168376207351685, + 0.041001878678798676, + -0.12618005275726318, + 0.19299019873142242, + -0.3003186285495758, + -0.44419705867767334, + -0.39347749948501587, + 0.01206064224243164, + -0.06137144938111305, + -0.5047451257705688, + 0.14586102962493896, + -0.11919607222080231, + -0.09853411465883255, + 0.17868906259536743, + -0.3945505917072296, + -0.20919030904769897, + 0.06539192795753479, + 0.029946383088827133, + 0.16423113644123077, + -0.3658868968486786, + 0.15530513226985931, + -0.37145504355430603, + -0.16940844058990479, + -0.11256575584411621, + -0.08767106384038925, + 0.08966058492660522, + 0.08268541842699051, + -0.23496395349502563, + 0.10549978911876678, + 0.1430770307779312, + -0.45286375284194946, + -0.1597563624382019, + 0.28214678168296814, + -0.20383206009864807, + 0.34975260496139526, + 0.024494178593158722, + 0.21344563364982605, + 0.3967927396297455, + 0.025586603209376335, + 0.20134910941123962, + 0.43563312292099, + 0.506211519241333, + 0.019012099131941795, + -0.019461151212453842, + -0.17752185463905334, + 0.013395741581916809, + -0.12360015511512756, + -0.5413646101951599, + 0.4100223779678345, + -0.2578169107437134, + 0.11095612496137619, + 0.039350926876068115, + 0.1751149445772171, + 0.09956784546375275, + -0.2817384600639343, + 0.1285194605588913, + 0.503248393535614, + 0.09906671941280365, + 0.1466788947582245, + 0.10587963461875916, + 0.298248827457428, + 0.35454419255256653, + -0.1312607377767563, + 0.08815548568964005, + 0.14608928561210632, + -0.0773802250623703, + -0.1357904076576233, + -0.12428709119558334, + 0.2663770020008087, + 0.41708460450172424, + -0.20405879616737366, + -0.26876136660575867, + 0.1692616045475006, + -0.204240620136261, + -0.09646928310394287, + -0.284659743309021, + -0.05400034040212631, + 0.1428770273923874, + -0.1144208312034607, + 0.3089889585971832, + -0.13333512842655182, + -0.07272183150053024, + 0.30432629585266113, + -0.3129817247390747, + -0.13805627822875977, + 0.24138188362121582, + 0.09373613446950912, + -0.35262376070022583, + 0.44554904103279114, + -0.19689060747623444, + -0.061121366918087006, + 0.4779767096042633, + -0.23004205524921417, + -0.14514708518981934, + -0.054542578756809235, + 0.20165501534938812, + -0.030881229788064957, + 0.02686215192079544, + -0.09550876915454865, + 0.03694058582186699, + -0.08501984179019928, + 0.43144291639328003, + 0.06662503629922867, + 0.15278424322605133, + 0.5706176161766052, + 0.0002505369484424591, + -0.3425573706626892, + 0.024810979142785072, + -0.11436178535223007, + 0.385290265083313, + -0.26779094338417053, + -0.20542795956134796, + -0.2295825183391571, + 0.24912382662296295, + -0.002022676169872284, + -0.18241669237613678, + 0.04846886545419693, + 0.06800426542758942, + 0.109351247549057, + 0.05069086700677872, + 0.44035500288009644, + 0.19157017767429352, + -0.2200274020433426, + 0.594021737575531, + -0.043430913239717484, + -0.08334025740623474, + 0.19627267122268677, + -0.09714414924383163, + 0.15777507424354553, + -0.01707877218723297, + -0.2894008755683899, + -0.407664030790329, + -4.3550506234169006e-05, + -0.14226371049880981, + -0.22250407934188843, + -0.00654911482706666, + -0.20683586597442627, + -0.010101859457790852, + -0.18304188549518585, + 0.1976441740989685, + -0.010327748022973537, + 0.1379888355731964, + 0.09076844155788422, + 0.4483475685119629, + -0.036712050437927246, + -0.22585119307041168, + 0.13708139955997467, + -0.07501131296157837, + 0.0924864336848259, + -0.370386004447937, + 0.10438291728496552, + -0.13176597654819489, + 0.4846189022064209, + -0.06380312144756317, + 0.11329922825098038, + 0.0026508159935474396, + 0.03457438573241234, + -0.04822884500026703, + -0.35917261242866516, + 0.026810241863131523, + -0.02438564971089363, + 0.09568949788808823, + -0.029696432873606682, + 0.19559037685394287, + -0.13150209188461304, + -0.19173374772071838, + -0.07646674662828445, + 0.0045642186887562275, + 0.09102612733840942, + -0.10593002289533615, + -0.07891631871461868, + 0.30214744806289673, + 0.20381468534469604, + 0.4647851288318634, + -0.16512057185173035, + 0.18576651811599731, + 0.026329604908823967, + -0.2904147803783417, + -0.08493931591510773, + -0.019690237939357758, + -0.2850853204727173, + -0.11248733103275299, + 0.1711881309747696, + 0.26951056718826294, + -0.05718488618731499, + -0.05659814924001694, + 0.13644389808177948, + 0.19095468521118164, + -0.29542630910873413, + -0.1384412944316864, + 0.41569817066192627, + 0.06373850256204605, + 0.2924818992614746, + -0.007768442388623953, + -0.5678085088729858, + -0.35601022839546204, + -0.0842316746711731, + -0.4524388909339905, + 0.06464432924985886, + 0.15538640320301056, + -0.021561825647950172, + -0.11072149872779846, + 0.1354161500930786, + -0.014118971303105354, + 0.043292317539453506, + 0.19208016991615295, + -0.1139904037117958, + 0.1905052363872528, + 0.04501256346702576, + -0.31513941287994385, + 0.03016841970384121, + -0.24742701649665833, + -0.345145046710968, + -0.23504333198070526, + 0.3023112714290619, + 0.21320348978042603, + -0.33193373680114746, + 0.1133820042014122, + 0.19751062989234924, + -0.08840218931436539, + -0.32704833149909973, + -0.013786576688289642, + -0.25966235995292664, + 0.5695237517356873, + 0.0567924901843071, + -0.18429242074489594, + 0.1445784866809845, + -0.11065153777599335, + -0.015289515256881714, + 0.2557915151119232, + 0.1430688500404358, + 0.39630138874053955, + 0.19235341250896454, + 0.05142012983560562, + 0.5619776844978333, + 0.10736338049173355, + 0.11684907972812653, + 0.3790512979030609, + -0.039779115468263626, + 0.055291444063186646, + -0.28229016065597534, + -0.21135340631008148, + 0.3470136225223541, + -0.4683031141757965, + -0.005368540063500404, + 0.0926886647939682, + 0.30812782049179077, + -0.4597792327404022, + -0.4176681339740753, + -0.024655140936374664, + -0.017000507563352585, + -0.20942449569702148, + -0.20450031757354736, + -0.13103391230106354, + -0.13029994070529938, + -0.3240031599998474, + -0.012553970329463482, + 0.32128679752349854, + 0.31167441606521606, + 0.21355314552783966, + 0.21402513980865479, + -0.28694090247154236, + -0.36128032207489014, + 0.2381001114845276, + 0.3938139081001282, + 0.055453334003686905, + -0.016684412956237793, + -0.10000140964984894, + 0.32438939809799194, + 0.4642491936683655, + -0.012610716745257378, + 0.013737127184867859, + 0.012792088091373444, + 0.13102605938911438, + 0.12909531593322754, + 0.17196452617645264, + -0.07374931126832962, + 0.17042674124240875, + -0.37482234835624695, + 0.1920088827610016, + -0.20639921724796295, + -0.20803508162498474, + 0.21300765872001648, + -0.16843223571777344, + -0.4143609404563904, + -0.17532691359519958, + 0.1929808259010315, + -0.007040489464998245, + -0.12906740605831146, + 0.10519835352897644, + 0.32449790835380554, + -0.10926434397697449, + -0.17264600098133087, + 0.11232449114322662, + -0.5689476132392883, + -0.4172149896621704, + 0.1307932734489441, + -0.1958656907081604, + -0.026341043412685394, + 0.023414790630340576, + 0.3475375771522522, + 0.5672762393951416, + 0.18663430213928223, + -0.18513363599777222, + 0.10585611313581467, + 0.32829996943473816, + 0.2961902320384979, + -0.2198614925146103, + -10.638339042663574, + -0.0739673599600792, + -0.3041830062866211, + 0.4259847104549408, + -0.10994547605514526, + 0.16257116198539734, + -0.027415189892053604, + 0.0534093864262104, + -0.07739919424057007, + 0.14332978427410126, + -0.19419726729393005, + -0.117185078561306, + 0.3646639585494995, + 0.21652483940124512, + 0.08345313370227814, + 0.20746874809265137, + -0.36171582341194153, + 0.28390833735466003, + 0.08692587167024612, + 0.11962375044822693, + 0.20049208402633667, + 0.2956159710884094, + -0.3215198516845703, + 0.04845777526497841, + -0.0018270835280418396, + -0.2882210910320282, + -0.23891784250736237, + 0.6405126452445984, + 0.2456986904144287, + -0.41783785820007324, + 0.05034326761960983, + 0.06034671142697334, + -0.19491896033287048, + 0.026775969192385674, + -0.051451586186885834, + -0.22969479858875275, + -0.1533937007188797, + 0.16796258091926575, + 0.16341368854045868, + -0.2718676030635834, + 0.09145835041999817, + -0.02376924455165863, + 0.2650795876979828, + 0.20736318826675415, + -0.20817722380161285, + -0.5138792991638184, + -0.08464653789997101, + -1.5049083232879639, + 0.16791746020317078, + 0.2245664745569229, + 0.5308889150619507, + 0.0734504908323288, + 0.1364365518093109, + 0.28174835443496704, + -0.43945789337158203, + -0.024213140830397606, + -0.28019118309020996, + -0.00847858376801014, + 0.28887051343917847, + -0.035099972039461136, + -0.022902648895978928, + -0.08247129619121552, + 0.6465133428573608, + -0.14090994000434875, + -0.32290542125701904, + 0.17023837566375732, + 0.0067533645778894424, + -0.0832960456609726, + -0.22810254991054535, + -0.6376392245292664, + -0.5995692610740662, + -0.08181829005479813, + -0.029628843069076538, + -0.06445953249931335, + 0.37535983324050903, + -0.03062507137656212, + -0.3205689489841461, + 0.2184622585773468, + -0.07381074130535126, + 0.32256031036376953, + 0.3817598819732666, + -0.12714900076389313, + 0.13476376235485077, + -0.26167482137680054, + -0.07668367773294449, + -0.1318744271993637, + 0.15226471424102783, + 0.4663717746734619, + -0.10950806736946106, + -0.11556690186262131, + 0.024246307089924812, + 0.45822155475616455, + 0.03728944808244705, + -0.0973939374089241, + -0.4063909649848938, + -0.034082405269145966, + 0.13942012190818787, + 0.02964545413851738, + -0.03073517233133316, + -0.04527437314391136, + -0.12643451988697052, + -0.05883917212486267, + -0.12613961100578308, + -0.5989838242530823, + -0.6215231418609619, + 0.34288308024406433, + 0.16070376336574554, + 0.08287262916564941, + -0.015481297858059406, + -0.1288774162530899, + -0.10205477476119995, + 0.060824524611234665, + 0.3325900733470917, + 0.5101323127746582, + 0.1698959320783615, + -0.0647248774766922, + 0.03736015781760216, + -0.19609101116657257, + -0.17227181792259216, + -0.04472753405570984, + 0.3804851472377777, + -0.02569371648132801, + 0.28930431604385376, + 0.660843014717102, + -0.014928244054317474, + -0.14437253773212433, + 1.0558335781097412, + -0.41141843795776367, + 0.20400133728981018, + -0.031535230576992035, + 0.09716594964265823, + -0.13566482067108154, + -0.3750981390476227, + 0.13285744190216064, + 0.42504554986953735, + -0.4485510587692261, + 0.8858206272125244, + 0.374646931886673, + -0.38048213720321655, + -0.10933957993984222, + -0.31743675470352173, + 0.4393463134765625, + 0.19627241790294647, + 0.07276028394699097, + -0.14247649908065796, + -0.2841607928276062, + -0.39769619703292847, + 0.09268984943628311, + -0.2921658754348755, + -0.23729048669338226, + -0.296286404132843, + 0.06872104108333588, + 0.16713783144950867, + -0.11236144602298737, + 0.24047315120697021, + 0.19762103259563446, + -0.10464349389076233, + -0.1395609974861145, + -0.378463476896286, + -0.23470954596996307, + -0.057504162192344666, + 0.8576208353042603, + 0.06534650921821594, + -0.06479459255933762, + -0.09595497697591782, + 0.17840203642845154, + -0.09516694396734238, + 0.15356625616550446, + 0.11358857899904251, + 0.15398520231246948, + -0.4165397584438324, + 0.2905920445919037, + 0.27694785594940186, + -0.22059354186058044, + -0.07014444470405579, + -0.14063358306884766, + -0.10354846715927124, + 0.13549460470676422, + -0.11148326098918915, + 0.21553994715213776, + 0.37739983201026917, + -0.04671525955200195, + 0.024623950943350792, + -0.16066741943359375, + 0.0537964329123497, + 0.15883591771125793, + 0.35720112919807434, + 0.0945616215467453, + -0.2452256679534912, + -0.34032902121543884, + -0.48537296056747437, + 0.31968408823013306, + -0.44905394315719604, + -0.053177669644355774, + 0.1114051416516304, + 0.2789613902568817, + -0.18967163562774658, + 0.06674695014953613, + 0.03033033013343811, + -0.10336960107088089, + -0.20916886627674103, + 0.2114836573600769, + 0.47148627042770386, + -0.26277849078178406, + 0.25276702642440796, + -0.22746258974075317, + 0.25335800647735596, + 0.1808404177427292, + -0.25227323174476624, + 0.17246077954769135, + -0.4024060070514679 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_049.json b/src/benchmark/output/results/results_graph_049.json new file mode 100644 index 0000000..9b11714 --- /dev/null +++ b/src/benchmark/output/results/results_graph_049.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 66-year-old man with a history of smoking 20 cigarettes per day until the age of 50, after which he abstained for the past 16 years. He has cerebral infarction and takes 25 mg of clopidogrel.\n\n**Timeline of Diagnoses:**\n\n1. **Step 1:** The patient's history and routine checkup revealed a 3 cm mass in the left middle lung field during chest radiography.\n2. **Step 2:** Further investigation with CT imaging and blood tests was conducted, which showed a ground-glass nodule with a maximum diameter of 4.6 cm and a solid component measuring 4 cm located in S9/10 of the left lower lobe.\n3. **Step 3:** Pulmonary function tests indicated normal respiratory capacity, but follow-up CT imaging revealed a part-solid nodule measuring 1.6 \u00d7 1.4 cm with a 1.5 cm solid component in the same location.\n4. **Step 4:** PET-CT and MRI of the head were conducted to evaluate the lung nodule and rule out metastasis, showing mild accumulation in the mass with an SUVmax of 2.04.\n5. **Step 5:** Bronchoscopy and biopsy were performed to determine the nature of the lung nodule, leading to a suspected diagnosis of stage IB primary lung cancer.\n\n**Timeline of Treatments:**\n\n1. **Step 6:** Surgical lobectomy was planned following the surgical biopsy.\n\n**Outcomes:**\n\nThe patient underwent bronchoscopy and biopsy, which led to a suspected diagnosis of stage IB primary lung cancer. The patient is scheduled for surgical lobectomy. Further follow-up will be necessary to monitor the patient's condition and assess the effectiveness of treatment.\n\nNote: This narrative is based on the provided data and may not reflect the actual clinical case report or outcomes.", + "bertscore": { + "precision": [ + 0.659263551235199 + ], + "recall": [ + 0.6760050058364868 + ], + "f1": [ + 0.6675293445587158 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 6, + "edge_count": 5, + "avg_in_degree": 0.8333333333333334, + "density": 0.16666666666666666 + }, + "trajectory_embedding": [ + 0.2567644715309143, + 0.054647695273160934, + -0.025133753195405006, + 0.027657220140099525, + 0.0567028634250164, + -0.047446608543395996, + 0.08157778531312943, + 0.12755827605724335, + 0.3595859110355377, + -0.3565047085285187, + -0.2112758755683899, + 0.1016974225640297, + -0.5609835982322693, + -0.06822846084833145, + -0.41357529163360596, + 0.09834272414445877, + 0.2301262617111206, + 0.30650249123573303, + 0.23083041608333588, + -0.25639793276786804, + -0.4508514106273651, + 0.10909075289964676, + -0.37323257327079773, + -0.17521654069423676, + 0.26630499958992004, + -0.06100469455122948, + 0.23391740024089813, + 0.3831678628921509, + 0.3318760097026825, + 0.3661697804927826, + 0.18243010342121124, + 0.10102397203445435, + 0.08750001341104507, + 0.09491461515426636, + -0.15478600561618805, + 0.24837768077850342, + 0.29393264651298523, + 0.4305003881454468, + 0.012244741432368755, + 0.18666161596775055, + -0.07575502246618271, + -0.09277432411909103, + 0.7130119800567627, + 0.2930741012096405, + 0.6534185409545898, + -0.628726065158844, + -0.014942511916160583, + 0.40638241171836853, + -0.5615766048431396, + -0.3384920358657837, + 0.15534049272537231, + 0.7424958348274231, + 0.5820599794387817, + -0.13016420602798462, + 0.4049873352050781, + -0.10209625959396362, + -0.3915539085865021, + -0.21328912675380707, + -0.18580351769924164, + 0.061684105545282364, + -0.034710343927145004, + -0.11146549135446548, + 0.04748772457242012, + 0.015314791351556778, + -0.32906869053840637, + -0.20495788753032684, + -0.12581847608089447, + 0.08674752712249756, + -0.03597379848361015, + -0.4479992687702179, + -0.2631644904613495, + -0.1706678718328476, + -0.16941969096660614, + 0.13451983034610748, + 0.14708197116851807, + -0.16877788305282593, + 0.39201653003692627, + -0.06782414764165878, + -0.011311913840472698, + 0.20590484142303467, + 0.044855888932943344, + -0.10129227489233017, + 0.17574341595172882, + 0.21457819640636444, + -0.41236400604248047, + 0.16965098679065704, + 0.12907831370830536, + -0.24311614036560059, + -0.19260239601135254, + 0.09645482897758484, + 0.3634212017059326, + -0.17252831161022186, + -0.08624999970197678, + -0.18047039210796356, + 0.10848585516214371, + -0.0634133368730545, + 0.13066242635250092, + 0.5581034421920776, + 0.9562094211578369, + -0.01895514875650406, + 0.22670423984527588, + 0.21381665766239166, + 0.2516179382801056, + 0.014214918948709965, + 0.6349357962608337, + -0.033967021852731705, + 0.07173444330692291, + -0.5029047727584839, + -0.07316675782203674, + 0.3638746738433838, + -0.014512906782329082, + -0.1694277971982956, + 0.08649471402168274, + -0.23585927486419678, + 0.04690052941441536, + 0.16347908973693848, + -0.20878833532333374, + 0.18634293973445892, + 0.12257172912359238, + -0.48823681473731995, + -0.09186337143182755, + -0.028479771688580513, + 0.3324275314807892, + 0.5146360993385315, + -0.35747480392456055, + 0.026537781581282616, + -0.16074584424495697, + 0.08699318766593933, + 0.08551987260580063, + 0.01365471351891756, + -0.49736177921295166, + -0.15070444345474243, + 0.012297066859900951, + 0.3595079481601715, + -0.1623847931623459, + 0.1916723996400833, + -0.4807084798812866, + -0.03362792357802391, + -1.1671077013015747, + 0.2633489668369293, + -0.393343061208725, + 0.019191227853298187, + 0.1794801503419876, + -0.3998546302318573, + -0.19515573978424072, + -0.2935968339443207, + -0.3726128339767456, + 0.1387694627046585, + 0.0897676944732666, + -0.12214385718107224, + 0.012520882301032543, + 0.1258244514465332, + 0.20884542167186737, + 0.20610950887203217, + 0.19021809101104736, + 0.24265961349010468, + 0.16213645040988922, + 0.12403691560029984, + 0.11398787051439285, + -0.06022300198674202, + -0.006209204439073801, + 0.2989065647125244, + 0.020074477419257164, + -0.1387871354818344, + 0.09396535158157349, + -0.8062517046928406, + 0.20646345615386963, + -0.32049885392189026, + 0.22402840852737427, + -0.01954949088394642, + -0.20140105485916138, + 0.11741650104522705, + -0.2536066472530365, + 0.6072469353675842, + 0.12195799499750137, + 0.3998850882053375, + -0.10260409116744995, + -0.19156809151172638, + 0.04294634982943535, + -0.0018441478023305535, + 0.014206391759216785, + 0.020715733990073204, + 0.7414531707763672, + 0.11567020416259766, + -0.2832781970500946, + 0.25940418243408203, + 0.3683091700077057, + -0.18443144857883453, + 0.019958844408392906, + -0.13507908582687378, + 0.4497736394405365, + -0.29400524497032166, + 0.3067609369754791, + -0.5533306002616882, + 0.024636728689074516, + 0.03246603161096573, + -0.22620779275894165, + -0.2284907102584839, + 0.18188397586345673, + -0.1465589851140976, + 0.2109435796737671, + 0.06699205189943314, + -0.1407681107521057, + 0.18527407944202423, + 0.0024786144495010376, + -0.16265909373760223, + 0.397862046957016, + 0.12031110376119614, + 0.0013976246118545532, + -0.10048040002584457, + -0.2039431780576706, + 0.051571886986494064, + -0.16632777452468872, + 0.1711951494216919, + 0.04296974837779999, + -0.20839251577854156, + 0.3698556125164032, + -0.022856688126921654, + -0.24172669649124146, + 0.2169945240020752, + -0.21191225945949554, + -0.10892332345247269, + 0.19794750213623047, + -0.0921207070350647, + -0.3723834455013275, + 0.09389778226613998, + 0.025864146649837494, + 0.24160484969615936, + 0.1264984905719757, + -0.11732038110494614, + 0.07025247812271118, + -0.2659688889980316, + 0.28220027685165405, + 0.024390168488025665, + -0.19264738261699677, + -0.42175212502479553, + 0.14417444169521332, + -0.23507827520370483, + -0.23875193297863007, + 0.3745476007461548, + -0.16679322719573975, + -0.16459442675113678, + 0.1405930072069168, + -0.25853627920150757, + -0.17076946794986725, + -0.28174009919166565, + 0.0788956806063652, + 0.4072481691837311, + 0.09300778061151505, + 0.41231289505958557, + 0.14781196415424347, + -0.09328743815422058, + 0.18840138614177704, + -0.3491116762161255, + -0.16819220781326294, + -0.35879895091056824, + -0.15572570264339447, + 0.014808326959609985, + -0.4225861132144928, + -0.0033341199159622192, + 0.25102004408836365, + -0.12959618866443634, + -0.023023219779133797, + -0.2553872764110565, + -0.06757350265979767, + 0.04816959425806999, + -0.061303988099098206, + 0.1592148095369339, + 0.0009159992332570255, + 0.2541206181049347, + -0.32678619027137756, + -0.4095669090747833, + -0.0890570655465126, + -0.012893512845039368, + 0.18513844907283783, + 0.08613903075456619, + -0.11660867184400558, + 0.04846123978495598, + 0.18121004104614258, + -0.38220855593681335, + -0.3468528091907501, + 0.19498582184314728, + -0.25394976139068604, + 0.03253226727247238, + -0.25787946581840515, + 0.18279342353343964, + 0.35620227456092834, + -0.1328677535057068, + 0.16482537984848022, + 0.3580454885959625, + 0.5171672701835632, + 0.14697910845279694, + -0.154265359044075, + 0.061135198920965195, + 0.010888803750276566, + -0.045767202973365784, + -0.425426721572876, + 0.20599491894245148, + 0.13548362255096436, + -0.06953422725200653, + 0.043080881237983704, + 0.2773016691207886, + 0.18362011015415192, + -0.46928250789642334, + -0.20541580021381378, + 0.7687499523162842, + 0.036430057138204575, + -0.05291818082332611, + 0.05840182676911354, + 0.5254464149475098, + 0.6934916973114014, + -0.02786218374967575, + -0.24638254940509796, + 0.039297234266996384, + -0.16627417504787445, + -0.1860509067773819, + 0.04168695583939552, + -0.08493759483098984, + 0.3096385896205902, + -0.025141268968582153, + 0.0032154687214642763, + 0.27051040530204773, + -0.20187075436115265, + -0.10908608883619308, + 0.014324337244033813, + -0.024342982098460197, + -0.07883320748806, + -0.3017563819885254, + 0.39838096499443054, + -0.049979209899902344, + -0.09823311120271683, + 0.42287859320640564, + -0.15677838027477264, + -0.3211692273616791, + 0.27475103735923767, + -0.201103076338768, + -0.6143441796302795, + 0.26540499925613403, + -0.07149770110845566, + -0.027679426595568657, + 0.3769514560699463, + 0.04318079352378845, + -0.04428985342383385, + -0.29216524958610535, + 0.3416769504547119, + 0.11279866099357605, + -0.07905539870262146, + -0.14408640563488007, + 0.05060046911239624, + 0.21931642293930054, + 0.619964599609375, + 0.13614660501480103, + 0.08426513522863388, + 0.384540319442749, + -0.12463974952697754, + -0.341552734375, + -0.0968519076704979, + 0.15099714696407318, + 0.19977520406246185, + -0.2067735344171524, + -0.1936662346124649, + -0.23055405914783478, + 0.04354266822338104, + 0.1083572581410408, + -0.34287071228027344, + -0.010666747577488422, + 0.12098294496536255, + -0.10312426090240479, + -0.07402093708515167, + 0.17969083786010742, + 0.3437140882015228, + 0.02284686453640461, + 0.4255564212799072, + 0.03445722907781601, + 0.001605341793037951, + 0.2862929403781891, + -0.26226311922073364, + 0.3411618769168854, + -0.22642694413661957, + -0.3738151490688324, + -0.3267021179199219, + -0.07017236202955246, + -0.2934410870075226, + -0.21541263163089752, + -0.0178332831710577, + -0.11434977501630783, + -0.016070468351244926, + -0.26695945858955383, + 0.28414276242256165, + 0.1044958233833313, + 0.267194539308548, + 0.11671946197748184, + 0.36977124214172363, + 0.04042429104447365, + -0.4122868776321411, + 0.15105390548706055, + -0.0566176176071167, + 0.09019996970891953, + -0.08880605548620224, + -0.08643335103988647, + -0.29347696900367737, + 0.3613191545009613, + 0.11735422164201736, + -0.012280023656785488, + 0.12057303637266159, + -0.09611748903989792, + -0.23868714272975922, + -0.44654905796051025, + -0.12312587350606918, + -0.19569122791290283, + -0.028962934389710426, + -0.11758724600076675, + 0.15953195095062256, + -0.17363320291042328, + -0.2520342767238617, + -0.00026544928550720215, + 0.3615114688873291, + 0.23229365050792694, + -0.06938732415437698, + 0.09161273390054703, + 0.23469217121601105, + 0.009865929372608662, + 0.2783743441104889, + -0.06156933307647705, + 0.06356468796730042, + 0.016839690506458282, + -0.3949708044528961, + -0.15408755838871002, + 0.12373312562704086, + -0.19214241206645966, + -0.06290382891893387, + 0.2230714112520218, + 0.2244025468826294, + 0.08108693361282349, + -0.02778303623199463, + 0.010971516370773315, + 0.4503476321697235, + -0.4929099977016449, + -0.07192618399858475, + 0.30564892292022705, + 0.18236331641674042, + 0.510549008846283, + -0.006905071437358856, + -0.3393498659133911, + -0.062112484127283096, + -0.055349837988615036, + -0.4637646973133087, + 0.13325883448123932, + 0.1284475326538086, + -0.20420551300048828, + -0.12513527274131775, + 0.18135331571102142, + 0.09901738911867142, + 0.01033159252256155, + 0.07760990411043167, + -0.0384158194065094, + 0.21602775156497955, + -0.12376264482736588, + -0.39367201924324036, + -0.07645947486162186, + -0.17857308685779572, + -0.17772233486175537, + -0.2982494533061981, + 0.4295850992202759, + 0.34239235520362854, + -0.19945590198040009, + 0.1160731315612793, + 0.12300371378660202, + -0.2330305427312851, + -0.20542879402637482, + 0.018699610605835915, + -0.16400735080242157, + 0.46508729457855225, + -0.022740961983799934, + -0.2985071837902069, + 0.17199455201625824, + -0.455716609954834, + 0.2083752155303955, + 0.1953922063112259, + 0.19823966920375824, + 0.40497246384620667, + 0.15362046658992767, + 0.22892439365386963, + 0.35686060786247253, + 0.020942693576216698, + -0.07616151124238968, + 0.2713387906551361, + 0.010906979441642761, + 0.056140199303627014, + -0.08816027641296387, + -0.17018313705921173, + 0.31824979186058044, + -0.29802653193473816, + 0.11504767090082169, + 0.23575150966644287, + 0.29233282804489136, + -0.43991947174072266, + -0.12221308797597885, + -0.06714961677789688, + -0.16299580037593842, + -0.1522783637046814, + -0.42884087562561035, + -0.15537361800670624, + 0.12757658958435059, + -0.217074915766716, + -0.1924450844526291, + 0.4016702175140381, + 0.28122270107269287, + 0.15393279492855072, + 0.11671632528305054, + -0.3184525668621063, + -0.5127158761024475, + 0.11280230432748795, + 0.28736191987991333, + 0.08120352029800415, + 0.07242023944854736, + -0.10548578947782516, + 0.2469063550233841, + 0.582009494304657, + -0.029357826337218285, + 0.02673153020441532, + 0.0655505433678627, + 0.0030315157491713762, + -0.020229792222380638, + -0.03533201292157173, + -0.1612560898065567, + 0.12458962202072144, + -0.4030732214450836, + 0.2934851050376892, + -0.33430686593055725, + -0.2764648497104645, + 0.17947256565093994, + -0.11697950214147568, + -0.36205124855041504, + -0.17168311774730682, + 0.37642404437065125, + -0.27187395095825195, + -0.02921135164797306, + 0.12633703649044037, + 0.498738557100296, + 0.1609475463628769, + -0.2681986093521118, + -0.026569461449980736, + -0.47176268696784973, + -0.12062794715166092, + 0.11078733205795288, + -0.09782484173774719, + 0.0023211936932057142, + -0.169968843460083, + 0.3880041837692261, + 0.3578130900859833, + 0.11763940006494522, + -0.4813665449619293, + -0.10347896814346313, + 0.24357981979846954, + 0.3724425733089447, + -0.14462046325206757, + -10.616826057434082, + 0.013704407960176468, + -0.18380360305309296, + 0.5865207314491272, + -0.152750164270401, + 0.07400861382484436, + 0.1438300460577011, + -0.12722571194171906, + 0.16061021387577057, + 0.24059909582138062, + -0.17251212894916534, + 0.11196237802505493, + 0.4147752821445465, + 0.23892711102962494, + -0.06638500839471817, + -0.2527748644351959, + -0.30901190638542175, + 0.11179125308990479, + -0.09630758315324783, + 0.3143559396266937, + 0.26752933859825134, + 0.42435094714164734, + -0.3073941469192505, + 0.3584843575954437, + 0.2610261142253876, + -0.2650402784347534, + -0.1594763845205307, + 0.6285990476608276, + 0.08410970121622086, + -0.3022899329662323, + 0.36601200699806213, + 0.2684483826160431, + -0.2657216787338257, + 0.07662360370159149, + 0.006730282213538885, + -0.14872890710830688, + -0.02853289805352688, + 0.005274981260299683, + 0.11725449562072754, + -0.046378474682569504, + -0.035843219608068466, + -0.2058020383119583, + 0.13137951493263245, + 0.2607768476009369, + -0.0712469145655632, + -0.531154453754425, + -0.23718954622745514, + -1.4782066345214844, + 0.3222294747829437, + 0.3831448554992676, + 0.34081220626831055, + -0.006653102580457926, + 0.28010889887809753, + 0.014179840683937073, + -0.401740700006485, + 0.10215827077627182, + -0.2815476953983307, + 0.08820632845163345, + 0.08024688065052032, + -0.02609177492558956, + 0.20321226119995117, + -0.20275743305683136, + 0.3069598376750946, + -0.2695642411708832, + -0.338731050491333, + 0.08329558372497559, + 0.0186556875705719, + -0.07772798836231232, + -0.22380895912647247, + -0.46594616770744324, + -0.49291571974754333, + 0.018415803089737892, + -0.02680712379515171, + 0.021801531314849854, + 0.7258334755897522, + -0.01567288674414158, + -0.3567058742046356, + 0.20597468316555023, + 0.060889095067977905, + 0.4025122821331024, + 0.06056283041834831, + 0.003497886238619685, + 0.11631568521261215, + -0.13262121379375458, + -0.2576778829097748, + -0.12096837908029556, + 0.07407429069280624, + 0.5627965927124023, + -0.003220031736418605, + 0.07800175994634628, + -0.06158817186951637, + 0.43035635352134705, + -0.07872545719146729, + -0.18353402614593506, + -0.4382437765598297, + 0.17848354578018188, + -0.17031890153884888, + 0.11069171875715256, + 0.010168418288230896, + -0.21929140388965607, + -0.12307421118021011, + -0.13713203370571136, + -0.09890935570001602, + -0.5486672520637512, + -0.21980005502700806, + 0.08008436113595963, + 0.14192621409893036, + 0.2843337953090668, + 0.14715386927127838, + 0.007925912737846375, + -0.0637773722410202, + 0.003764241933822632, + 0.28281792998313904, + 0.4673670828342438, + 0.08164247125387192, + -0.08871052414178848, + -0.14729805290699005, + -0.1027877926826477, + -0.22942261397838593, + 0.16007305681705475, + 0.3888063430786133, + -0.1884269267320633, + 0.28113219141960144, + 0.6444199085235596, + -0.12033288925886154, + -0.2786875069141388, + 0.9409419894218445, + -0.20997263491153717, + 0.46836018562316895, + -0.2564603090286255, + 0.14908039569854736, + -0.10539919137954712, + -0.17819423973560333, + 0.1059143915772438, + 0.35121849179267883, + -0.2444978952407837, + 0.5245700478553772, + 0.038106560707092285, + -0.44227203726768494, + 0.11036250740289688, + -0.3603193759918213, + 0.5390539765357971, + 0.3152288496494293, + 0.2517121732234955, + -0.02332683652639389, + -0.23814786970615387, + -0.30149975419044495, + -0.056807469576597214, + -0.5429525375366211, + -0.3235109746456146, + -0.1181982234120369, + 0.2399153709411621, + 0.18090225756168365, + -0.4014083445072174, + 0.3968798816204071, + 0.1201978325843811, + -0.2105562686920166, + -0.21742452681064606, + -0.607570469379425, + -0.007181110326200724, + 0.16441118717193604, + 0.6403666138648987, + -0.01992282271385193, + 0.11760757118463516, + -0.12061230093240738, + 0.12311587482690811, + -0.08899597078561783, + 0.05671534314751625, + 0.10128848999738693, + -0.03540448099374771, + -0.5646531581878662, + 0.13876895606517792, + 0.1328868418931961, + -0.4247245788574219, + -0.18939344584941864, + -0.33714163303375244, + -0.008449741639196873, + -0.011848400346934795, + -0.25716808438301086, + 0.14446556568145752, + 0.3791041076183319, + -0.09448457509279251, + -0.04921277239918709, + -0.2370712012052536, + 0.11256077140569687, + 0.11598029732704163, + 0.11212000995874405, + 0.28194934129714966, + -0.22438853979110718, + -0.4330560863018036, + -0.2993071675300598, + 0.16982102394104004, + -0.05377756431698799, + -0.012679293751716614, + 0.10639557242393494, + 0.15050260722637177, + -0.301895409822464, + -0.007256550248712301, + -0.3482191860675812, + 0.06449958682060242, + -0.24084468185901642, + 0.285435289144516, + 0.26688438653945923, + -0.1868153065443039, + 0.11883104592561722, + -0.07296127080917358, + 0.21374869346618652, + 0.0485217459499836, + -0.2740878462791443, + 0.29664984345436096, + -0.12676501274108887 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_050.json b/src/benchmark/output/results/results_graph_050.json new file mode 100644 index 0000000..ee9df6c --- /dev/null +++ b/src/benchmark/output/results/results_graph_050.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics**\n\nThe patient is a 67-year-old man with a history of 40 pack-years of smoking. He presented to the clinic in February 2022 with chest tightness.\n\n**Initial Diagnosis (Step 1)**\n\nUpon physical examination, left supraclavicular lymphadenopathy was noted, measuring approximately 1 cm in size. Chest CT revealed a 2 cm mass in the posterior basal segment of the left lower lobe, with multiple burrs on the edge and enhancement. Mediastinal lymph nodes were enlarged and fused, surrounding the left main bronchus. Abdominal enhanced CT showed enlargement of the left adrenal gland, considered to be a metastatic lesion.\n\nImaging studies, including whole-body bone imaging and brain-enhanced MRI, did not reveal any obvious abnormalities. Immunohistochemical markers (CK-pan and P40) were positive, suggesting a diagnosis of lung cancer.\n\n**Biopsy and Diagnosis (Step 2)**\n\nOn March 10, 2022, a CT-guided lung puncture biopsy was performed to further characterize the tumor. Pathology suggested poorly differentiated carcinoma. Immunohistochemical markers were CK-pan (+), CK7 (-), TTF-1 (-), P40 (+), BRG-1 (-), and Syn (-). PD-L1 staining revealed a tumor proportion score (TPS) of 8%.\n\n**Diagnosis Confirmation and Treatment (Step 3)**\n\nBased on immunohistochemistry and genetic testing, a diagnosis of SMARCA4-deficient non-small cell lung cancer (SMARCA4-dNSCLC) was made. First-line treatment with tislelizumab combined with fruquintinib was initiated.\n\n**Treatment Outcomes (Step 4)**\n\nFollowing initial treatment, the patient experienced cervical lymph node progression. Subsequent biopsy confirmed the diagnosis, and the patient was treated with local radiotherapy and previous systemic therapy. The patient achieved more than two years of disease control without grade \u22653 adverse events.\n\n**Timeline**\n\n* February 2022: Patient presents to clinic with chest tightness.\n* March 10, 2022: CT-guided lung puncture biopsy is performed.\n* March 2022: Diagnosis of SMARCA4-dNSCLC is confirmed via subsequent biopsy.\n* April 1, 2022: Initial treatment with tislelizumab and fruquintinib begins.\n* April 1, 2022: Patient undergoes local radiotherapy and previous systemic therapy.\n\n**Outcomes**\n\nThe patient achieved more than two years of disease control without grade \u22653 adverse events. The diagnosis of SMARCA4-dNSCLC was confirmed via subsequent biopsy, and the patient responded well to first-line treatment with tislelizumab combined with fruquintinib.", + "bertscore": { + "precision": [ + 0.7477017045021057 + ], + "recall": [ + 0.7287452816963196 + ], + "f1": [ + 0.7381017804145813 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 4, + "edge_count": 3, + "avg_in_degree": 0.75, + "density": 0.25 + }, + "trajectory_embedding": [ + 0.28611698746681213, + 0.13427646458148956, + -0.17884783446788788, + 0.06759999692440033, + -0.12707366049289703, + 0.07035525888204575, + 0.17056792974472046, + -0.0935962051153183, + 0.17258435487747192, + -0.4768597185611725, + -0.167130708694458, + 0.24880175292491913, + -0.5263209342956543, + 0.07364700734615326, + -0.45961248874664307, + 0.04494486376643181, + -0.026198312640190125, + 0.3359876871109009, + 0.012521790340542793, + -0.26034823060035706, + -0.41108110547065735, + 0.037916794419288635, + -0.3372756242752075, + -0.25214606523513794, + 0.0999106913805008, + -0.11487384885549545, + 0.28169575333595276, + 0.5982757210731506, + 0.15346869826316833, + 0.26648271083831787, + 0.17303115129470825, + 0.2140756994485855, + -0.17565792798995972, + 0.08639498054981232, + -0.09855536371469498, + 0.26307201385498047, + 0.2998790144920349, + 0.13723576068878174, + -0.08768844604492188, + 0.011026464402675629, + -0.2002849280834198, + -0.048587024211883545, + 0.878470778465271, + 0.4011160731315613, + 0.5819730162620544, + -0.4260130226612091, + 0.011033251881599426, + 0.4375970959663391, + -0.7640367746353149, + -0.12306598573923111, + 0.15911906957626343, + 0.5300086140632629, + 0.8712754249572754, + -0.1643335223197937, + 0.4470507502555847, + -0.2173643708229065, + -0.4557937979698181, + -0.0844617411494255, + -0.21899664402008057, + 0.0742630586028099, + 0.13631054759025574, + 0.16249915957450867, + -0.09851536899805069, + 0.0505608394742012, + -0.2905880808830261, + -0.21038293838500977, + -0.39228636026382446, + -0.010893747210502625, + 0.06424669921398163, + -0.501523494720459, + -0.3400188982486725, + -0.40115177631378174, + -0.1286676824092865, + 0.24838244915008545, + 0.1508217304944992, + -0.34514880180358887, + 0.29071101546287537, + -0.05093805119395256, + 0.0051512084901332855, + 0.0868554562330246, + 0.3020612895488739, + -0.050956450402736664, + 0.13252362608909607, + 0.21917816996574402, + -0.48753684759140015, + 0.13600105047225952, + 0.14534994959831238, + -0.2028047889471054, + -0.22278347611427307, + 0.27956125140190125, + 0.3308485746383667, + -0.1514054834842682, + 0.05407838895916939, + -0.16169729828834534, + 0.2651010751724243, + -0.037498943507671356, + 0.11191870272159576, + 0.4537842571735382, + 0.8735491633415222, + -0.06848015636205673, + 0.3412664532661438, + 0.12493781745433807, + 0.33396536111831665, + -0.035614121705293655, + 0.4351556897163391, + -0.05037370324134827, + 0.3503718376159668, + -0.33370694518089294, + 0.11448526382446289, + 0.3839879035949707, + -0.07083563506603241, + -0.19810566306114197, + 0.1066712886095047, + -0.3637048602104187, + 0.08103729039430618, + 0.25520825386047363, + -0.2815818786621094, + 0.08018158376216888, + 0.08865801990032196, + -0.4253826141357422, + -0.09739439934492111, + -0.14829817414283752, + 0.5049974322319031, + 0.13626214861869812, + -0.43955790996551514, + -0.0019403360784053802, + -0.10275361686944962, + 0.18361759185791016, + -0.18384690582752228, + 0.11932960152626038, + -0.48526132106781006, + -0.14824563264846802, + 0.15075623989105225, + 0.14106670022010803, + -0.3923092484474182, + 0.3413350582122803, + -0.4033099412918091, + 0.05596005171537399, + -1.1557360887527466, + 0.17026367783546448, + -0.3898908793926239, + -0.0009445361793041229, + 0.1861003190279007, + -0.3648298978805542, + -0.13174337148666382, + -0.1422368586063385, + -0.1551688015460968, + 0.16327136754989624, + 0.10406364500522614, + -0.15309861302375793, + -0.12624764442443848, + -0.02770388498902321, + 0.1016465425491333, + 0.16573543846607208, + 0.14634031057357788, + 0.09266834706068039, + 0.14615139365196228, + 0.2753906846046448, + 0.21327972412109375, + -0.2331511229276657, + -0.08298072218894958, + 0.4351575970649719, + -0.14475589990615845, + -0.20079879462718964, + 0.23498594760894775, + -0.6575887799263, + 0.15307697653770447, + -0.24700656533241272, + 0.35997551679611206, + 0.04937354847788811, + -0.12082144618034363, + 0.12923043966293335, + 0.0557987354695797, + 0.5082664489746094, + 0.26311948895454407, + 0.5054872035980225, + 0.013673227280378342, + 0.009112924337387085, + 0.12733131647109985, + 0.16569937765598297, + 0.00310705229640007, + -0.08176115900278091, + 0.4182768166065216, + 0.2179679125547409, + -0.30778276920318604, + 0.25560349225997925, + 0.4322963058948517, + -0.4572395384311676, + -0.16039693355560303, + -0.12213903665542603, + 0.5717853307723999, + -0.2520174980163574, + 0.3979622721672058, + -0.47662776708602905, + 0.013381663709878922, + -0.018789071589708328, + -0.3408171534538269, + -0.280231237411499, + 0.10877002030611038, + -0.16022472083568573, + 0.07480621337890625, + 0.24456706643104553, + -0.20619921386241913, + 0.29714328050613403, + 0.20191602408885956, + -0.17042505741119385, + 0.26733195781707764, + 0.32364046573638916, + 0.036039434373378754, + -0.19135543704032898, + -0.22775527834892273, + 0.1766640692949295, + 0.10322166979312897, + 0.2048116773366928, + 0.011436711996793747, + -0.26955655217170715, + 0.24534083902835846, + -0.09736577421426773, + -0.2338249385356903, + 0.19743533432483673, + -0.25545522570610046, + -0.15769422054290771, + 0.39490509033203125, + 0.057777270674705505, + -0.3223835527896881, + 0.30582237243652344, + 0.20960485935211182, + 0.1412213295698166, + -0.013808518648147583, + -0.030449647456407547, + 0.08296868205070496, + -0.12145452201366425, + 0.3112379014492035, + -0.06933535635471344, + -0.1435001790523529, + -0.3136235177516937, + 0.15269654989242554, + -0.21046385169029236, + -0.3846070170402527, + 0.3341795802116394, + -0.0763542652130127, + -0.05320972204208374, + 0.061510443687438965, + -0.3148258626461029, + -0.20902186632156372, + -0.13835537433624268, + 0.1127195730805397, + 0.5595144033432007, + 0.010520918294787407, + 0.4197878837585449, + 0.2708355784416199, + -0.12647435069084167, + 0.20740364491939545, + -0.46402645111083984, + -0.2240506112575531, + -0.3230225145816803, + -0.15311935544013977, + -0.20417216420173645, + -0.5147440433502197, + 0.015085883438587189, + 0.07050317525863647, + -0.3042822480201721, + 0.17397169768810272, + -0.26245105266571045, + -0.12953199446201324, + -0.1489570587873459, + 0.03644797205924988, + 0.361921101808548, + -0.14653226733207703, + 0.11346759647130966, + -0.5632423162460327, + -0.4179075360298157, + 0.004305437207221985, + -0.008211316540837288, + 0.1934705674648285, + 0.19282713532447815, + 0.14203518629074097, + 0.25611960887908936, + 0.3151339888572693, + -0.412030965089798, + -0.36540257930755615, + 0.050604447722435, + -0.45540377497673035, + 0.09515400230884552, + -0.37448975443840027, + 0.14557713270187378, + 0.550338864326477, + -0.13654349744319916, + 0.30999845266342163, + 0.4467751085758209, + 0.5205051898956299, + 0.23446506261825562, + -0.11501815915107727, + -0.06679169833660126, + 0.02285410463809967, + 0.028809456154704094, + -0.4496556520462036, + 0.1144946739077568, + -0.23425181210041046, + -0.08715091645717621, + 0.31243640184402466, + 0.3895567059516907, + 0.08900932222604752, + -0.45884788036346436, + -0.21385839581489563, + 0.7885830402374268, + 0.27527695894241333, + -0.18858632445335388, + -0.028043732047080994, + 0.29875603318214417, + 0.7054168581962585, + 0.07107377052307129, + -0.16307532787322998, + 0.03757654130458832, + -0.18278731405735016, + -0.13380441069602966, + -0.04871849715709686, + 0.06552621722221375, + 0.17830991744995117, + 0.0657883882522583, + -0.12852227687835693, + 0.29549968242645264, + -0.1116783544421196, + -0.0679718405008316, + -0.041574180126190186, + 0.012001711875200272, + 0.0022985711693763733, + -0.16856612265110016, + 0.20106177031993866, + -0.20944277942180634, + 0.013970524072647095, + 0.5270072817802429, + -0.056031424552202225, + -0.2767646014690399, + 0.4002992510795593, + 0.03616563230752945, + -0.5012728571891785, + 0.22156104445457458, + -0.2022896409034729, + -0.018658190965652466, + 0.28121212124824524, + -0.1479737013578415, + -0.09649447351694107, + -0.15575730800628662, + -0.14630237221717834, + 0.21232230961322784, + 0.1045440137386322, + -0.14755134284496307, + 0.09750846028327942, + 0.12608152627944946, + 0.6075655221939087, + -0.0491010881960392, + -0.15878045558929443, + 0.36383017897605896, + -0.303674578666687, + -0.139631450176239, + 0.017303448170423508, + 0.1479826271533966, + 0.10025434195995331, + -0.4083082377910614, + -0.30561330914497375, + -0.40813252329826355, + 0.06945443898439407, + 0.06091393530368805, + -0.1910412609577179, + -0.047186195850372314, + 0.21456490457057953, + -0.1141955554485321, + 0.11537095904350281, + 0.40348875522613525, + 0.34748774766921997, + 0.07191719114780426, + 0.5059363842010498, + 0.25959986448287964, + -0.02637544646859169, + 0.3511104881763458, + -0.02535049244761467, + 0.22289957106113434, + -0.026455219835042953, + -0.36932793259620667, + -0.49803292751312256, + 0.11723490804433823, + -0.2919188439846039, + -0.13946878910064697, + 0.11761865764856339, + 0.09952259063720703, + -0.07412463426589966, + -0.08564862608909607, + 0.16367147862911224, + 0.018953701481223106, + 0.15992528200149536, + -0.0596538782119751, + 0.529747486114502, + -0.036212317645549774, + -0.4240519106388092, + 0.1747322976589203, + 0.01459946297109127, + 0.27978062629699707, + -0.19594606757164001, + -0.09019763767719269, + -0.37640586495399475, + 0.4065615236759186, + 0.003042500466108322, + -0.08811837434768677, + 0.05574090778827667, + -0.16220590472221375, + -0.4509143531322479, + -0.4442014694213867, + -0.05911988019943237, + -0.04536598175764084, + -0.08711369335651398, + -0.20615258812904358, + 0.28761693835258484, + -0.11493343114852905, + -0.15314644575119019, + 0.18207456171512604, + 0.5431855320930481, + 0.18065589666366577, + -0.18394294381141663, + -0.10792461037635803, + 0.08106616884469986, + 0.2082202434539795, + 0.45270657539367676, + -0.2531249523162842, + 0.19319702684879303, + 0.050442904233932495, + -0.38391873240470886, + -0.08642759919166565, + 0.032898519188165665, + -0.3828655183315277, + 0.17220157384872437, + 0.20545430481433868, + 0.10500820726156235, + 0.08463238924741745, + 0.10580836981534958, + 0.0359724760055542, + 0.3080650866031647, + -0.43123912811279297, + -0.05305764824151993, + 0.30112752318382263, + -0.1331443190574646, + 0.500444233417511, + -0.11753887683153152, + -0.311636358499527, + -0.0955292358994484, + -0.03531794250011444, + -0.47755569219589233, + 0.2135458141565323, + -0.036886703222990036, + -0.13463351130485535, + 0.13409295678138733, + 0.24143600463867188, + 0.14437252283096313, + 0.06905212253332138, + -0.05057410150766373, + -0.04990082606673241, + 0.05424710735678673, + -0.08028794825077057, + -0.517091691493988, + -0.06076958030462265, + -0.34456807374954224, + -0.3337685167789459, + -0.27521225810050964, + 0.5027885437011719, + 0.19781309366226196, + 0.018157340586185455, + 0.21312889456748962, + 0.20783403515815735, + -0.26342150568962097, + -0.46998780965805054, + 0.17756298184394836, + 0.09235695749521255, + 0.8029807806015015, + 0.03478199988603592, + -0.22001612186431885, + 0.08366791903972626, + -0.5377001762390137, + 0.18756717443466187, + 0.2371927797794342, + 0.17131154239177704, + 0.2717122435569763, + 0.15818588435649872, + 0.3033129870891571, + 0.3824073076248169, + 0.2087305784225464, + -0.09367642551660538, + 0.23282885551452637, + -0.17755545675754547, + -0.20320512354373932, + 0.12113910913467407, + -0.05998587608337402, + 0.5657732486724854, + -0.46463334560394287, + 0.23911577463150024, + -0.031010426580905914, + 0.4292449653148651, + -0.15956278145313263, + -0.2705172002315521, + -0.039062805473804474, + -0.3034370243549347, + -0.13700655102729797, + -0.3776121735572815, + -0.24670469760894775, + 0.02542027086019516, + -0.3266569972038269, + 0.006663868203759193, + 0.3107166886329651, + 0.2237526923418045, + 0.30320122838020325, + 0.13753119111061096, + -0.23212677240371704, + -0.5131415724754333, + -0.0292116217315197, + 0.48148781061172485, + 0.22850051522254944, + -0.0349501296877861, + -0.15351517498493195, + 0.14526182413101196, + 0.7079096436500549, + 0.05395514518022537, + -0.12520454823970795, + -0.15301859378814697, + -0.06865004450082779, + 0.01030103862285614, + -0.00728218350559473, + -0.0619417205452919, + 0.16871026158332825, + -0.34539008140563965, + -0.0584397166967392, + -0.21137507259845734, + -0.3909897804260254, + 0.22458739578723907, + -0.4177096486091614, + -0.31723251938819885, + -0.17922085523605347, + 0.13097426295280457, + -0.15707644820213318, + -0.017049606889486313, + 0.21073544025421143, + 0.5532355308532715, + 0.24607297778129578, + -0.10640455037355423, + 0.12368571758270264, + -0.5548756122589111, + -0.0694003701210022, + 0.26647886633872986, + -0.19097845256328583, + 0.18057143688201904, + 0.0916849672794342, + 0.2498811036348343, + 0.24502527713775635, + 0.23572248220443726, + -0.45633813738822937, + 0.13080842792987823, + 0.18696050345897675, + 0.40971940755844116, + -0.14450708031654358, + -10.72884750366211, + -0.08436558395624161, + -0.17222632467746735, + 0.3722347319126129, + -0.005003519356250763, + 0.08569922298192978, + -0.2880721688270569, + 0.14975649118423462, + 0.08099672198295593, + 0.2767045795917511, + -0.1416490077972412, + 0.22035539150238037, + 0.31024396419525146, + 0.3281044065952301, + -0.00700637511909008, + 0.09197277575731277, + -0.2828317880630493, + 0.36237338185310364, + -0.2018129825592041, + 0.08031363040208817, + 0.29958000779151917, + 0.5100498199462891, + -0.24878625571727753, + 0.316982626914978, + 0.16252052783966064, + -0.3794524669647217, + -0.16013485193252563, + 0.3249574899673462, + 0.15042707324028015, + -0.4480612576007843, + 0.4206530451774597, + 0.06914687901735306, + -0.12947405874729156, + -0.17984142899513245, + 0.04047023504972458, + -0.18042239546775818, + -0.2634485363960266, + -0.13561904430389404, + -0.010061487555503845, + -0.049630045890808105, + 0.07044035196304321, + -0.2805670499801636, + 0.046354323625564575, + 0.3614566922187805, + -0.18569093942642212, + -0.4011118710041046, + -0.146980881690979, + -1.5222930908203125, + 0.26466691493988037, + 0.28200364112854004, + 0.5429244637489319, + 0.04674656689167023, + 0.24689969420433044, + 0.0596962571144104, + -0.6062489748001099, + 0.043502502143383026, + -0.0716652125120163, + 0.294344425201416, + 0.323344886302948, + -0.07167421281337738, + 0.1381332278251648, + -0.20218941569328308, + 0.33652880787849426, + -0.5205097198486328, + -0.24576926231384277, + 0.15342357754707336, + -0.13860425353050232, + -0.01793592981994152, + -0.23604585230350494, + -0.19331979751586914, + -0.5147315859794617, + -0.07783228904008865, + 0.020054936408996582, + 0.003683023154735565, + 0.5302668213844299, + -0.14905905723571777, + -0.6215678453445435, + -0.04693080112338066, + 0.03177265077829361, + 0.43928441405296326, + 0.20044471323490143, + 0.053440943360328674, + 0.03512869030237198, + -0.25870904326438904, + 0.0456407368183136, + -0.10165692120790482, + 0.10231848061084747, + 0.6454752087593079, + -0.06057240813970566, + -0.02014753967523575, + -0.0805678740143776, + 0.3307194709777832, + -0.21311278641223907, + -0.12919773161411285, + -0.5383883714675903, + 0.19735124707221985, + 0.10391107946634293, + -0.1251986026763916, + -0.04085569828748703, + -0.04879387468099594, + -0.1310943365097046, + -0.24909880757331848, + 0.0552033931016922, + -0.40416133403778076, + -0.2569256126880646, + 0.31423652172088623, + 0.32732781767845154, + 0.10698288679122925, + 0.1568198949098587, + 0.13665547966957092, + 0.039797551929950714, + -0.010011918842792511, + 0.45069649815559387, + 0.4661501348018646, + 0.2840852737426758, + -0.08953103423118591, + -0.22950732707977295, + 0.07077176868915558, + -0.2921951711177826, + 0.052205778658390045, + 0.32449954748153687, + 0.0655127540230751, + 0.2779186964035034, + 0.6569525003433228, + -0.09968475252389908, + -0.15900298953056335, + 0.7934086918830872, + -0.313374400138855, + 0.3700951337814331, + -0.1288086622953415, + 0.1459966003894806, + 0.0017610639333724976, + -0.21991565823554993, + 0.03200221434235573, + 0.1541668325662613, + -0.2301967740058899, + 0.51127028465271, + -0.04711591452360153, + -0.5631332993507385, + -0.09498932212591171, + -0.3220555782318115, + 0.3919947147369385, + 0.20188823342323303, + 0.19454336166381836, + -0.18447835743427277, + -0.3446812629699707, + -0.15064498782157898, + 0.06562292575836182, + -0.5549658536911011, + -0.25142520666122437, + -0.18479636311531067, + 0.06086111068725586, + -0.07113157212734222, + -0.21488645672798157, + 0.44719141721725464, + 0.040575891733169556, + -0.23016901314258575, + 0.016948353499174118, + -0.4576629102230072, + -0.2774576246738434, + 0.19591179490089417, + 0.7523588538169861, + 0.15914063155651093, + -0.3030513525009155, + -0.11176756024360657, + 0.2445915937423706, + -0.0673903077840805, + -0.011832956224679947, + 0.026855669915676117, + 0.08922559022903442, + -0.5653276443481445, + 0.07565314322710037, + 0.3082425594329834, + -0.5675989985466003, + -0.23595665395259857, + -0.4375462830066681, + 0.2345152199268341, + -0.19853003323078156, + -0.18320170044898987, + 0.4040122628211975, + 0.1327686309814453, + 0.09642577916383743, + 0.1718791127204895, + -0.25090765953063965, + 0.07952342182397842, + 0.1694749891757965, + 0.13337859511375427, + 0.26768943667411804, + -0.08014815300703049, + -0.5359716415405273, + -0.2287704050540924, + 0.27064019441604614, + -0.36046329140663147, + -0.1262928545475006, + 0.1026020348072052, + 0.12672147154808044, + -0.271016389131546, + 0.09319630265235901, + -0.26792603731155396, + 0.017616063356399536, + -0.3463478684425354, + 0.06339090317487717, + 0.27214208245277405, + -0.33809763193130493, + 0.20576338469982147, + -0.14227889478206635, + 0.2541172206401825, + 0.21700401604175568, + -0.2943233251571655, + 0.17018800973892212, + -0.1988847255706787 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_051.json b/src/benchmark/output/results/results_graph_051.json new file mode 100644 index 0000000..9dd7c9a --- /dev/null +++ b/src/benchmark/output/results/results_graph_051.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 65-year-old male with a 20-year history of chronic obstructive pulmonary disease (COPD).\n\n**Initial Presentation:**\nOn [date], the patient was admitted to hospital with sudden massive hemoptysis, which he denied experiencing any chest pain, dyspnea, or fever. No other significant comorbidities were present at the time of presentation.\n\n**Diagnosis and Timeline:**\n\n1. **Step 1 (N1):**\nThe patient's history of COPD was noted, with a diagnosis code of \"233936005\" for Chronic obstructive lung disease, which is historical in nature.\n2. **Step 2 (N2):**\nTwo months prior to admission, an enhanced CT scan revealed a tumor in the right upper lung.\n3. **Step 3 (N3):**\nBiopsy confirmed that the tumor was squamous cell carcinoma of the lung (SCC), with a TNM stage of T2bNXM1c1.\n4. **Step 4 (N4):**\nThe patient received two cycles of albumin-bound paclitaxel, nedaplatin, and tislelizumab as treatment for SCC.\n\n**Follow-up and Complications:**\n\n5. **Step 5 (N5):**\nA follow-up CT scan showed partial remission of the tumor with cavitation.\n6. **Step 6 (N6):**\nThe patient presented with hemoptysis, which led to further evaluation, including lab tests and imaging.\n7. **Step 7 (N7):**\nEmergency endovascular intervention was performed due to pseudoaneurysm formation in the right upper pulmonary artery located at the SCC cavity wall with an intraluminal hematoma.\n8. **Step 8 (N8):**\nThe patient underwent emergency endovascular intervention, which included embolization using microcoils to occlude the PAP and proximal artery.\n9. **Step 9 (N9):**\nPost-procedure angiography confirmed the disappearance of the pulmonary artery pseudoaneurysm (PAP).\n10. **Step 10 (N10):**\nThe patient experienced no active bleeding postoperatively, and follow-up over 6 months showed no recurrence of hemoptysis.\n11. **Step 11 (N11):**\nA CT scan 3 months post-embolization showed absorption of the tumor cavity with significant tumor reduction.\n\n**Outcomes:**\n\nThe patient's treatment for SCC was successful, with partial remission of the tumor and disappearance of the pulmonary artery pseudoaneurysm. The patient experienced no active bleeding postoperatively and no recurrence of hemoptysis over 6 months. Follow-up imaging showed absorption of the tumor cavity with significant tumor reduction.\n\n**Conclusion:**\nThis case highlights the importance of early diagnosis and treatment for SCC, particularly in patients with a history of COPD. The successful outcome of this patient's treatment underscores the effectiveness of endovascular intervention in managing complications associated with SCC.", + "bertscore": { + "precision": [ + 0.6436575055122375 + ], + "recall": [ + 0.6487551927566528 + ], + "f1": [ + 0.6461962461471558 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 12, + "edge_count": 11, + "avg_in_degree": 0.9166666666666666, + "density": 0.08333333333333333 + }, + "trajectory_embedding": [ + 0.19094891846179962, + 0.14106714725494385, + -0.031158799305558205, + 0.13212095201015472, + -0.034361883997917175, + 0.11214422434568405, + 0.008480226621031761, + 0.27649667859077454, + 0.44355106353759766, + -0.3264440596103668, + -0.24161100387573242, + -0.02264360710978508, + -0.5586544275283813, + -0.07856817543506622, + -0.13135342299938202, + 0.2850583493709564, + -0.02288839966058731, + 0.2912149727344513, + 0.003512168535962701, + -0.31964847445487976, + -0.3711169958114624, + 0.1159251481294632, + -0.4533284306526184, + 0.038472980260849, + 0.24174714088439941, + -0.030941514298319817, + 0.3462403118610382, + 0.5779390931129456, + 0.2785898447036743, + 0.3189777135848999, + 0.14821793138980865, + 0.015613364987075329, + 0.16177898645401, + 0.0635412409901619, + -0.2472148984670639, + 0.3098788559436798, + 0.12770746648311615, + 0.3534388840198517, + -0.037386197596788406, + -0.054510749876499176, + -0.0025609703734517097, + 0.0313134603202343, + 0.8939815163612366, + 0.23854190111160278, + 0.32405316829681396, + -0.8171070218086243, + 0.0318169966340065, + 0.5683367848396301, + -0.48634955286979675, + -0.3582748472690582, + 0.1165669858455658, + 0.7459186315536499, + 0.567617654800415, + -0.2915267050266266, + 0.4774470329284668, + -0.23445822298526764, + -0.2539263367652893, + -0.42970606684684753, + -0.14772860705852509, + 0.033471111208200455, + -0.04910167306661606, + -0.2052757292985916, + 0.31284111738204956, + -0.1733635514974594, + -0.22471214830875397, + -0.1454334706068039, + -0.16022424399852753, + 0.08478660881519318, + 0.018503820523619652, + -0.4332069158554077, + -0.1765756458044052, + -0.19817395508289337, + -0.09132220596075058, + 0.06759564578533173, + 0.11315162479877472, + -0.18721602857112885, + 0.4069445729255676, + -0.08486670255661011, + 0.11253757029771805, + 0.1453879028558731, + -0.1293947547674179, + -0.14425037801265717, + 0.01777280867099762, + 0.24056577682495117, + -0.4250442683696747, + 0.07426676154136658, + -0.06154009327292442, + -0.15809665620326996, + -0.3489093780517578, + 0.11119237542152405, + 0.20891395211219788, + -0.3485325872898102, + 0.07850185036659241, + -0.13518120348453522, + 0.13621823489665985, + 0.14744067192077637, + 0.4469539523124695, + 0.29965150356292725, + 0.9332895278930664, + 0.07178158313035965, + 0.10418141633272171, + -0.04303005710244179, + 0.22302748262882233, + 0.02683250978589058, + 0.3797377347946167, + -0.16346760094165802, + 0.1096019521355629, + -0.5771856904029846, + 0.13077057898044586, + 0.44911858439445496, + 0.025568801909685135, + -0.15841908752918243, + 0.006335198879241943, + -0.2211894392967224, + 0.1398351788520813, + 0.0879717543721199, + 0.00398073298856616, + 0.19677186012268066, + 0.20679594576358795, + -0.40137407183647156, + -0.16071675717830658, + -0.06497296690940857, + 0.30343544483184814, + 0.2966051399707794, + -0.4089924693107605, + 0.008863494731485844, + -0.20866107940673828, + 0.021763013675808907, + 0.004102692473679781, + 0.06657807528972626, + -0.4731425940990448, + -0.17991520464420319, + -0.08739478141069412, + 0.1031360924243927, + -0.15920963883399963, + 0.22302298247814178, + -0.34198296070098877, + 0.04968779906630516, + -1.0663485527038574, + 0.10440728813409805, + -0.3866520822048187, + -0.018199682235717773, + 0.014895658940076828, + -0.49616190791130066, + -0.25237366557121277, + -0.1474708616733551, + -0.1502130627632141, + 0.10663757473230362, + -0.20781637728214264, + -0.11339282244443893, + -0.0027344971895217896, + 0.08031895756721497, + 0.2411370873451233, + 0.3774353861808777, + 0.07304146885871887, + 0.09206283092498779, + 0.029945863410830498, + 0.28016722202301025, + 0.10834024101495743, + -0.08094920963048935, + 0.04222196713089943, + 0.4482365548610687, + 0.08113250881433487, + -0.00809185765683651, + -0.026369599625468254, + -0.6576817631721497, + 0.15983717143535614, + -0.14143669605255127, + 0.2476421743631363, + 0.08759968727827072, + -0.1594245284795761, + 0.05932655557990074, + -0.2781563401222229, + 0.5673711895942688, + 0.05853328853845596, + 0.3078257143497467, + 0.10266649723052979, + -0.08796900510787964, + 0.06542083621025085, + 0.19804805517196655, + 0.0569678395986557, + -0.18759411573410034, + 0.6016750335693359, + 0.19346891343593597, + -0.2672523856163025, + 0.22446174919605255, + 0.33883944153785706, + -0.03287084400653839, + -0.1990729719400406, + -0.018878616392612457, + 0.4933117628097534, + -0.31329214572906494, + 0.4603515565395355, + -0.4358474612236023, + 0.008301946334540844, + 0.20370358228683472, + -0.23555879294872284, + -0.18351620435714722, + -0.018741071224212646, + -0.13888464868068695, + 0.11807167530059814, + 0.026254886761307716, + -0.2636762857437134, + 0.14814221858978271, + 0.15412123501300812, + -0.15580083429813385, + 0.2938325107097626, + -0.0890255719423294, + 0.18235860764980316, + -0.10037370026111603, + -0.08933348953723907, + 0.21167907118797302, + -0.18058249354362488, + 0.1372062712907791, + -0.010980512946844101, + -0.32624194025993347, + 0.21716003119945526, + -0.08167710900306702, + -0.039732400327920914, + 0.26160016655921936, + 0.002250573132187128, + -0.22661751508712769, + -0.10921990126371384, + -0.013210299424827099, + -0.5326783657073975, + 0.25696709752082825, + 0.10750465840101242, + 0.28419411182403564, + 0.297998309135437, + -0.01609373278915882, + 0.04446385055780411, + -0.37519943714141846, + 0.28912636637687683, + -0.19353193044662476, + -0.10305824875831604, + -0.3192024230957031, + 0.25994062423706055, + -0.23299647867679596, + 0.015665993094444275, + 0.1651689112186432, + -0.07293307036161423, + -0.17282937467098236, + 0.1346348375082016, + -0.2649390995502472, + 0.0018071356462314725, + -0.310137003660202, + 0.060303423553705215, + 0.27184101939201355, + 0.17266370356082916, + 0.23124371469020844, + 0.024022696539759636, + -0.08349869400262833, + 0.19501905143260956, + -0.1497233361005783, + -0.3982785940170288, + -0.47297728061676025, + -0.1038932353258133, + -0.02060980349779129, + -0.5805975198745728, + 0.08674362301826477, + -0.05290735885500908, + -0.0549015998840332, + -0.00790991447865963, + -0.29442891478538513, + -0.136831596493721, + 0.07148788124322891, + 0.021244853734970093, + 0.06239302083849907, + -0.17239466309547424, + 0.12096230685710907, + -0.09722525626420975, + -0.22580766677856445, + -0.12006731331348419, + -0.05214909091591835, + 0.14095324277877808, + 0.0040327636525034904, + -0.20288728177547455, + -7.873638242017478e-05, + 0.08176250755786896, + -0.3332521617412567, + -0.16884587705135345, + 0.16540077328681946, + -0.25601914525032043, + 0.3336305022239685, + -0.06304765492677689, + 0.17451544106006622, + 0.2424243986606598, + 0.048303019255399704, + 0.20669297873973846, + 0.32897791266441345, + 0.4673144221305847, + 0.04896167293190956, + -0.005703209433704615, + 0.02857513539493084, + -0.0198189839720726, + -0.027272425591945648, + -0.3427080512046814, + 0.4115428924560547, + 0.05080471932888031, + 0.0016239593969658017, + -0.044011205434799194, + 0.28814399242401123, + 0.1063091829419136, + -0.2920747697353363, + -0.039684999734163284, + 0.6049829721450806, + 0.12567752599716187, + 0.08993291854858398, + 0.11041045188903809, + 0.3999946713447571, + 0.3928902745246887, + -0.03851931169629097, + -0.08497002720832825, + 0.030264396220445633, + -0.11007676273584366, + -0.14249195158481598, + -0.10249415040016174, + 0.18465657532215118, + 0.39143607020378113, + -0.22170978784561157, + -0.07035940140485764, + 0.06377561390399933, + -0.043343305587768555, + 0.029087640345096588, + -0.25997525453567505, + -0.06446229666471481, + 0.11766389012336731, + -0.18083275854587555, + 0.3022649586200714, + -0.06595628708600998, + -0.11083913594484329, + 0.39614880084991455, + -0.286289781332016, + -0.19291196763515472, + 0.1384749561548233, + -0.10130176693201065, + -0.4696400463581085, + 0.3791688084602356, + -0.1880205273628235, + 0.10157148540019989, + 0.32650890946388245, + -0.23785170912742615, + 0.07592041045427322, + -0.05216998979449272, + 0.32650554180145264, + 0.024744482710957527, + 0.01702575571835041, + -0.09327530115842819, + 0.06496191024780273, + 0.06579211354255676, + 0.5461304187774658, + 0.2267688810825348, + 0.18436168134212494, + 0.5087961554527283, + 0.0668533518910408, + -0.42412450909614563, + 0.014898168854415417, + -0.03307408466935158, + 0.35356244444847107, + -0.09419333189725876, + -0.16072210669517517, + -0.13200615346431732, + 0.053954459726810455, + 0.15426093339920044, + -0.29224255681037903, + 0.01019919291138649, + 0.1613394170999527, + 0.0855192244052887, + -0.12590287625789642, + 0.317500501871109, + 0.14517813920974731, + -0.09934082627296448, + 0.4981444180011749, + -0.051182009279727936, + -0.10979887843132019, + 0.3576841652393341, + -0.2112240344285965, + 0.22816157341003418, + -0.08570058643817902, + -0.2278006672859192, + -0.2525404691696167, + 0.11332028359174728, + -0.23273593187332153, + -0.17832408845424652, + 0.01875140145421028, + -0.18520431220531464, + 0.11991856247186661, + -0.2380026876926422, + 0.1449422985315323, + 0.03122391551733017, + 0.2285527139902115, + 0.0872030183672905, + 0.3563791513442993, + 0.061768367886543274, + -0.2637602388858795, + 0.24822677671909332, + -0.041144367307424545, + 0.015523252077400684, + -0.28305864334106445, + 0.020409511402249336, + -0.12434007972478867, + 0.4844158887863159, + -0.012193693779408932, + -0.04268227890133858, + 0.03554869815707207, + -0.033881865441799164, + -0.13600239157676697, + -0.382303923368454, + -0.15320897102355957, + -0.15577943623065948, + -0.0022908824030309916, + 0.03735930100083351, + 0.11865749955177307, + -0.3134608566761017, + -0.15268541872501373, + -0.0664103701710701, + -0.045090582221746445, + 0.2200946807861328, + -0.12978920340538025, + -0.1365133374929428, + 0.3668656349182129, + 0.17513738572597504, + 0.40399169921875, + -0.34162676334381104, + 0.20498956739902496, + 0.12280737608671188, + -0.3162277936935425, + -0.11437566578388214, + -0.01992126926779747, + -0.3349311351776123, + -0.08125343918800354, + 0.2670181691646576, + 0.3032830059528351, + 0.0002204768970841542, + -0.018182771280407906, + 0.1633535623550415, + 0.1505696177482605, + -0.3155216872692108, + -0.05801606550812721, + 0.34460437297821045, + 0.09821174293756485, + 0.36374855041503906, + 0.004542629234492779, + -0.4936901330947876, + -0.24061916768550873, + -0.0952354222536087, + -0.488727867603302, + 0.1617792546749115, + 0.21668098866939545, + -0.17562973499298096, + -0.12557779252529144, + -0.00882737897336483, + -0.019892053678631783, + -0.12603463232517242, + 0.2967451810836792, + -0.11472491919994354, + 0.16318480670452118, + -0.07745308429002762, + -0.28813308477401733, + -0.12840117514133453, + -0.1803760677576065, + -0.35747459530830383, + -0.3566107451915741, + 0.33845219016075134, + 0.27148178219795227, + -0.3039121925830841, + 0.03499644994735718, + 0.14564304053783417, + -0.14873789250850677, + -0.1862473040819168, + -0.06093388795852661, + -0.3023805320262909, + 0.4018360376358032, + -0.06756354123353958, + -0.20657537877559662, + 0.045960236340761185, + -0.19606180489063263, + -0.011831795796751976, + 0.3075883686542511, + 0.05089161545038223, + 0.483248233795166, + 0.18867100775241852, + 0.05045071989297867, + 0.5045363903045654, + 0.02315126731991768, + 0.05543635040521622, + 0.27923834323883057, + 0.07450801879167557, + 0.17183344066143036, + -0.2827977240085602, + -0.14327391982078552, + 0.2875491976737976, + -0.33328911662101746, + -0.007631499785929918, + 0.25081583857536316, + 0.2756015658378601, + -0.3667318522930145, + -0.2791220247745514, + 0.12183677405118942, + -0.0853201374411583, + -0.13226182758808136, + -0.1633516550064087, + -0.13688145577907562, + -0.0546460784971714, + -0.25458475947380066, + -0.07069426774978638, + 0.18920527398586273, + 0.5055086016654968, + 0.1569167971611023, + 0.3079119026660919, + -0.30343368649482727, + -0.3728949725627899, + 0.16967229545116425, + 0.23135291039943695, + 0.025669120252132416, + -0.04772617667913437, + -0.15766897797584534, + 0.31426894664764404, + 0.40961599349975586, + -0.037370599806308746, + 0.029563497751951218, + 0.054615579545497894, + 0.04578715190291405, + 0.16311107575893402, + 0.05636230483651161, + -0.10584265738725662, + 0.10434482246637344, + -0.32156771421432495, + 0.21709097921848297, + -0.17347122728824615, + -0.1449459046125412, + 0.1969769150018692, + -0.12468148022890091, + -0.4720155596733093, + -0.15959085524082184, + 0.32757118344306946, + -0.1419375240802765, + -0.14879679679870605, + 0.2481510192155838, + 0.3887300491333008, + 0.060037992894649506, + -0.3401050567626953, + -0.03990919888019562, + -0.51358562707901, + -0.09461970627307892, + 0.2344813346862793, + -0.12724849581718445, + -0.14003024995326996, + 0.03205497935414314, + 0.4611909091472626, + 0.4070449769496918, + 0.15769757330417633, + -0.28918197751045227, + 0.12555362284183502, + 0.2676740288734436, + 0.2350650429725647, + -0.2624610364437103, + -10.745993614196777, + -0.12893487513065338, + -0.32608330249786377, + 0.5240890979766846, + -0.21350574493408203, + 0.06783820688724518, + 0.11104471236467361, + -0.037054240703582764, + 0.12012320011854172, + 0.04536654055118561, + -0.211399644613266, + -0.030445706099271774, + 0.3239701986312866, + 0.2166062891483307, + -0.014118357561528683, + -0.04215191304683685, + -0.3600086271762848, + 0.21030449867248535, + 0.006253220606595278, + 0.1975545436143875, + 0.23634415864944458, + 0.31936293840408325, + -0.20811577141284943, + 0.25351229310035706, + -0.09517870098352432, + -0.3012394905090332, + -0.1784743219614029, + 0.6404629945755005, + 0.31051743030548096, + -0.26683947443962097, + 0.16186566650867462, + 0.15097258985042572, + -0.19489231705665588, + 0.07882729172706604, + -0.07526905834674835, + -0.15495212376117706, + 4.2407435103086755e-05, + 0.14460092782974243, + 0.21992658078670502, + -0.03809976950287819, + 0.024773769080638885, + -0.2210741937160492, + 0.1896129995584488, + 0.13687807321548462, + -0.1779307723045349, + -0.5710297226905823, + -0.1892595887184143, + -1.4844306707382202, + 0.18588615953922272, + 0.3354470729827881, + 0.3098658323287964, + 0.09357399493455887, + 0.11811672896146774, + 0.22004319727420807, + -0.42688044905662537, + 0.04660094901919365, + -0.2603687047958374, + -0.0898217260837555, + 0.11243734508752823, + 0.15578092634677887, + 0.10758467018604279, + -0.11934950202703476, + 0.5527052283287048, + -0.07071653008460999, + -0.38405874371528625, + 0.09534880518913269, + 0.030234219506382942, + -0.05046984180808067, + -0.2867332398891449, + -0.5873365998268127, + -0.5103051662445068, + -0.022636985406279564, + -0.16433854401111603, + -0.029490606859326363, + 0.41554415225982666, + -0.07572385668754578, + -0.30972030758857727, + 0.24150176346302032, + -0.045552004128694534, + 0.3215571641921997, + 0.16260553896427155, + 0.020533697679638863, + 0.09548033028841019, + -0.09123978018760681, + -0.21215996146202087, + -0.15280377864837646, + 0.15199264883995056, + 0.5069378018379211, + 0.05625903233885765, + -0.009921767748892307, + -0.05812028795480728, + 0.41037943959236145, + 0.043372929096221924, + -0.18998365104198456, + -0.461628794670105, + -0.07817098498344421, + -0.022916944697499275, + 0.1410103291273117, + -0.008755980990827084, + -0.07745662331581116, + -0.21702809631824493, + 0.035010382533073425, + 0.06267145276069641, + -0.47814443707466125, + -0.41153475642204285, + 0.2928331196308136, + 0.10875929147005081, + 0.14258962869644165, + -0.0014272765256464481, + -0.14417269825935364, + -0.06225234642624855, + -0.018146462738513947, + 0.18877467513084412, + 0.5126664638519287, + 0.2560887038707733, + -0.07243573665618896, + -0.020360363647341728, + -0.224511057138443, + -0.1826852262020111, + 0.005298877600580454, + 0.323956698179245, + -0.051439687609672546, + 0.1424778401851654, + 0.6224844455718994, + -0.021091625094413757, + -0.03393978253006935, + 0.8963201642036438, + -0.2472096085548401, + 0.2320713996887207, + -0.10943920165300369, + 0.22820572555065155, + -0.04009385406970978, + -0.3376707136631012, + 0.04805195331573486, + 0.44219323992729187, + -0.3386395573616028, + 0.7483369708061218, + 0.19872498512268066, + -0.36432406306266785, + -0.013159104622900486, + -0.2789859175682068, + 0.47885072231292725, + 0.37096917629241943, + 0.285831481218338, + -0.12348324805498123, + -0.21833211183547974, + -0.29422858357429504, + 0.044767603278160095, + -0.39564695954322815, + -0.3398112952709198, + -0.1327308863401413, + 0.08455590903759003, + 0.1674269288778305, + -0.23312824964523315, + 0.3644222319126129, + 0.16214518249034882, + -0.19494442641735077, + -0.20102228224277496, + -0.4217049777507782, + -0.07246432453393936, + 0.2085323929786682, + 0.8311479091644287, + -0.04884607717394829, + -0.0358612984418869, + -0.07514459639787674, + 0.1149691641330719, + -0.21547217667102814, + 0.19622308015823364, + 0.0970342680811882, + -0.007679974660277367, + -0.4775974452495575, + 0.2435050904750824, + 0.11554893851280212, + -0.3277517557144165, + -0.1424865573644638, + -0.12860864400863647, + -0.03809446841478348, + 0.16011835634708405, + -0.271041601896286, + 0.123362235724926, + 0.4564916789531708, + -0.16954384744167328, + 0.007680540904402733, + -0.20490258932113647, + -0.07409235835075378, + 0.16346803307533264, + 0.2577599287033081, + 0.0392175167798996, + -0.28559020161628723, + -0.2841348946094513, + -0.5293683409690857, + 0.3451726734638214, + -0.37702476978302, + -0.08774478733539581, + 0.07544264197349548, + 0.24123243987560272, + -0.2973092794418335, + 0.08464527875185013, + -0.07614510506391525, + 0.010685469955205917, + -0.1582186371088028, + 0.289948970079422, + 0.4170743227005005, + -0.38005006313323975, + 0.2592196762561798, + -0.15659330785274506, + 0.14205040037631989, + 0.07462868094444275, + -0.29018911719322205, + 0.15791089832782745, + -0.19333161413669586 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_052.json b/src/benchmark/output/results/results_graph_052.json new file mode 100644 index 0000000..337a1ea --- /dev/null +++ b/src/benchmark/output/results/results_graph_052.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 61-year-old male with a history of intermittent cough for over two years, worsening in the last month. He has also experienced pneumonia caused by Legionella pneumophila, hypertension, severe anemia, smoking, and alcohol use.\n\n**Timeline of Diagnoses:**\n\n1. **Step 1 (N1):**\nThe patient presented with symptoms of a persistent cough, which had worsened over time. His medical history revealed previous episodes of pneumonia, hypertension, anemia, smoking, and alcohol use.\n2. **Step 2 (N2):** One month prior to presentation, the patient developed a Pasteurella pneumotropica infection at an outside facility, as confirmed by bronchoscopy and alveolar lavage fluid mNGS analysis. Despite treatment with anti-infective medications for over two weeks, the patient did not show improvement.\n3. **Step 3 (N3):** The patient presented with a palpable lump on the right thoracic wall, localized pain, and coarse breath sounds in both lungs. Laboratory tests revealed abnormalities in white blood cell count, red blood cell count, hemoglobin, total protein, globulin, albumin, glucose, C-reactive protein, and squamous cell carcinoma antigen.\n4. **Step 4 (N4):** Enhanced CT scans showed a new mass in the left lower lung, multiple enlarged lymph nodes, and bone destruction in the right tenth rib, leading to suspicion of lung cancer with metastasis. Bronchoscopy did not reveal tumor cells.\n\n**Treatments:**\n\n1. **Anti-infective treatment:** The patient received anti-infective medications for over two weeks following the diagnosis of Pasteurella pneumotropica infection.\n2. **Imaging studies:** Enhanced CT scans were performed to evaluate the new mass in the left lower lung and multiple enlarged lymph nodes.\n\n**Outcomes:**\n\n1. **Lung cancer with metastasis:** The patient's symptoms and imaging results suggested a diagnosis of lung cancer with metastasis.\n2. **No tumor cells found on bronchoscopy:** Despite the high suspicion of lung cancer, no tumor cells were found during bronchoscopy.\n3. **Negative antibody tests:** Antibody tests for HIV, HBV, HCV, EBV, and TP were negative, indicating that these infections were not contributing to the patient's condition.\n\n**Conclusion:**\nThe patient presented with a complex clinical picture, including a history of pneumonia, hypertension, anemia, smoking, and alcohol use. The development of Pasteurella pneumotropica infection led to progression in his diagnosis, ultimately resulting in suspicion of lung cancer with metastasis. Despite the high suspicion of lung cancer, no tumor cells were found on bronchoscopy, and antibody tests for common infections were negative. Further evaluation and treatment are necessary to determine the best course of action for this patient.", + "bertscore": { + "precision": [ + 0.5771618485450745 + ], + "recall": [ + 0.6398134231567383 + ], + "f1": [ + 0.606874942779541 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 4, + "edge_count": 3, + "avg_in_degree": 0.75, + "density": 0.25 + }, + "trajectory_embedding": [ + 0.3750039041042328, + -0.018641069531440735, + -0.2502043545246124, + 0.05081702023744583, + -0.05105207860469818, + 0.0839003473520279, + 0.2023211419582367, + 0.19112949073314667, + 0.2581161558628082, + -0.5016443729400635, + -0.10917043685913086, + 0.22764131426811218, + -0.6944714784622192, + -0.16388894617557526, + -0.19019311666488647, + -0.02061181329190731, + 0.21072253584861755, + 0.36244553327560425, + 0.1649523675441742, + -0.19564396142959595, + -0.4511476755142212, + 0.20265279710292816, + -0.3970683515071869, + -0.07290428876876831, + 0.06168309599161148, + -0.09458416700363159, + 0.14242085814476013, + 0.5246515870094299, + 0.2932756245136261, + 0.2652825117111206, + 0.06448846310377121, + 0.1772792637348175, + -0.20149506628513336, + 0.16522261500358582, + -0.25548550486564636, + 0.4062054753303528, + 0.14651307463645935, + 0.10961253941059113, + -0.18582983314990997, + 0.05126669257879257, + -0.1780514419078827, + 0.0277843214571476, + 0.6572881937026978, + 0.427096962928772, + 0.731152355670929, + -0.6117132306098938, + -0.037707939743995667, + 0.37013891339302063, + -0.5210444927215576, + -0.024334007874131203, + 0.13324706256389618, + 0.8416606187820435, + 0.46486666798591614, + 0.09050995856523514, + 0.5590276718139648, + -0.03726061061024666, + -0.2525431215763092, + -0.06953722983598709, + -0.2951086163520813, + 0.21630530059337616, + -0.003851592540740967, + -0.25878116488456726, + 0.084021657705307, + -0.02554335445165634, + -0.18547093868255615, + -0.0071035330183804035, + -0.10002142935991287, + -0.022179020568728447, + -0.16623756289482117, + -0.4337896704673767, + -0.28635454177856445, + -0.23838165402412415, + -0.0745307207107544, + 0.14370892941951752, + 0.12053336948156357, + -0.3137984871864319, + 0.15123985707759857, + 0.10516850650310516, + -0.10271459072828293, + 0.07256560027599335, + 0.06432320922613144, + 0.11226767301559448, + 0.13952317833900452, + 0.10879547894001007, + -0.20519058406352997, + 0.11949052661657333, + 0.0489501878619194, + -0.06891728937625885, + -0.306130051612854, + 0.19894450902938843, + 0.013912171125411987, + -0.2484026998281479, + -0.015323575586080551, + -0.2818257808685303, + 0.07071297615766525, + -0.12937968969345093, + 0.265982061624527, + 0.33658355474472046, + 0.9003799557685852, + -0.029388174414634705, + 0.12319771945476532, + 0.38167083263397217, + 0.4185314476490021, + -0.08359169960021973, + 0.43835651874542236, + -0.09264031797647476, + 0.18517109751701355, + -0.3304045796394348, + -0.025782013311982155, + 0.4000227451324463, + -0.21055254340171814, + -0.21370747685432434, + 0.0004560612142086029, + -0.3826911449432373, + -0.2137700915336609, + 0.0007847361266613007, + -0.3079833388328552, + 0.005332674831151962, + 0.06937509775161743, + -0.31980860233306885, + 0.1354016661643982, + -0.1521102637052536, + 0.3260740339756012, + 0.13874965906143188, + -0.477588951587677, + 0.129996195435524, + -0.1010374054312706, + -0.02798978053033352, + -0.05269686505198479, + 0.24253839254379272, + -0.5391861200332642, + -0.26594796776771545, + 0.11924968659877777, + 0.2704978585243225, + -0.13381721079349518, + 0.22580784559249878, + -0.5472376346588135, + 0.2593297064304352, + -1.3018028736114502, + 0.11757175624370575, + -0.4669552743434906, + -0.03903498873114586, + -0.015594881027936935, + -0.5755515694618225, + -0.24181075394153595, + -0.12715989351272583, + -0.1480318158864975, + 0.17188116908073425, + -0.09114311635494232, + -0.04409800097346306, + -0.19648411870002747, + -0.03167814016342163, + 0.05811990797519684, + 0.14378733932971954, + 0.06015128642320633, + 0.2832489609718323, + 0.20626427233219147, + 0.2108088880777359, + 0.2910540699958801, + -0.20453929901123047, + -0.17753660678863525, + 0.17088258266448975, + -0.03704344108700752, + 0.09050876647233963, + 0.03505607694387436, + -0.7488185167312622, + 0.24450576305389404, + -0.24621155858039856, + 0.24071085453033447, + 0.03053906559944153, + 0.027132824063301086, + 0.23277997970581055, + -0.1849484145641327, + 0.5160245299339294, + 0.12026375532150269, + 0.3551260828971863, + -0.0612788051366806, + -0.03043258935213089, + 0.2101808786392212, + 0.07654383778572083, + 0.031165091320872307, + 0.013304777443408966, + 0.43383294343948364, + 0.15458561480045319, + -0.44488441944122314, + 0.12800030410289764, + 0.5983635783195496, + -0.3576675355434418, + -0.23850134015083313, + -0.30051931738853455, + 0.33574387431144714, + -0.16317453980445862, + 0.20916450023651123, + -0.2582557499408722, + -0.023145239800214767, + 0.1016504317522049, + -0.2705596685409546, + -0.1513102650642395, + 0.16109776496887207, + -0.021233662962913513, + 0.1400686502456665, + 0.06246664747595787, + -0.060198843479156494, + 0.10760002583265305, + 0.07032246887683868, + -0.14529147744178772, + 0.24459832906723022, + 0.24535557627677917, + -0.11421000212430954, + -0.1129978820681572, + -0.30976128578186035, + 0.18432126939296722, + 0.05019228160381317, + 0.2384565770626068, + 0.12331455945968628, + -0.25998473167419434, + 0.17488107085227966, + -0.06560686230659485, + -0.23357824981212616, + 0.15521836280822754, + -0.16593274474143982, + -0.1576358675956726, + 0.4989814758300781, + 0.05092253535985947, + -0.08330187201499939, + 0.15839987993240356, + 0.3273718059062958, + 0.1789856106042862, + 0.021622417494654655, + -0.08829770982265472, + 0.00846201553940773, + -0.4490392804145813, + 0.2554747462272644, + -0.08211470395326614, + -0.149913027882576, + -0.4093863368034363, + 0.10268251597881317, + -0.09163713455200195, + -0.2408151924610138, + 0.4805627465248108, + -0.18071678280830383, + -0.048656970262527466, + -0.03038608655333519, + -0.15858371555805206, + 0.03689543157815933, + -0.25902968645095825, + 0.1336105316877365, + 0.37157315015792847, + 0.06220059469342232, + 0.21135851740837097, + 0.1647842675447464, + -0.06509989500045776, + 0.34585052728652954, + -0.3354659080505371, + -0.33058521151542664, + -0.29961922764778137, + -0.14873506128787994, + -0.01010885275900364, + -0.35397595167160034, + 0.01279933750629425, + -0.06509362906217575, + 0.01087331771850586, + 0.23828469216823578, + -0.1385555863380432, + -0.2002955973148346, + -0.12080001085996628, + -0.09788139164447784, + 0.1841183602809906, + -0.1585860252380371, + 0.16171488165855408, + -0.40340036153793335, + 0.009950034320354462, + -0.28218626976013184, + -0.03077949956059456, + 0.3286609351634979, + 0.023091565817594528, + -0.21082238852977753, + 0.29606693983078003, + 0.06933808326721191, + -0.48805296421051025, + -0.4823635220527649, + 0.06469932943582535, + -0.31950074434280396, + 0.30493563413619995, + -0.21087253093719482, + 0.0875583216547966, + 0.4066821336746216, + -0.0853029415011406, + 0.2061665654182434, + 0.3255894184112549, + 0.49005091190338135, + 0.05144333839416504, + 0.1125626191496849, + 0.0013696402311325073, + -0.10166411101818085, + 0.04174596071243286, + -0.44953781366348267, + 0.045084863901138306, + 0.05771317705512047, + -0.08910995721817017, + 0.2623455226421356, + 0.24640654027462006, + 0.11367761343717575, + -0.32870692014694214, + -0.09174969792366028, + 0.32928982377052307, + 0.1261325180530548, + 0.1458982527256012, + -0.046844232827425, + 0.2645372152328491, + 0.7887958884239197, + 0.038384050130844116, + -0.1966702938079834, + 0.16988855600357056, + -0.1961507946252823, + -0.1110076904296875, + 0.25232040882110596, + -0.10560067743062973, + 0.23622725903987885, + -0.08181202411651611, + -0.048231080174446106, + 0.3462892770767212, + -0.07239373028278351, + -0.14689849317073822, + -0.1532508283853531, + 0.0557711161673069, + -0.033861108124256134, + -0.45571064949035645, + 0.26195764541625977, + -0.25430983304977417, + -0.09292025119066238, + 0.4105997681617737, + -0.13970857858657837, + -0.2790803909301758, + 0.07117658108472824, + 0.18175937235355377, + -0.5349920988082886, + 0.2550427317619324, + -0.07486564666032791, + 0.1134282648563385, + 0.24906429648399353, + -0.04243599250912666, + -0.23666946589946747, + -0.0027700886130332947, + 0.20715011656284332, + -4.1719526052474976e-05, + -0.12619619071483612, + -0.03286398947238922, + -0.128810852766037, + 0.1990654021501541, + 0.4536164402961731, + -0.0015131477266550064, + 0.17493194341659546, + 0.34009402990341187, + -0.1793300360441208, + -0.11215025931596756, + -0.04416448995471001, + -0.05121298134326935, + 0.24006140232086182, + -0.31121349334716797, + -0.2717509865760803, + -0.19144973158836365, + 0.2488461136817932, + -0.04174831137061119, + -0.2528179883956909, + 0.20812097191810608, + -0.030365241691470146, + -0.056994277983903885, + -0.1414940506219864, + 0.4065503180027008, + 0.17571111023426056, + 0.009257098659873009, + 0.6271113157272339, + 0.04087134078145027, + -0.16922305524349213, + 0.3091869354248047, + -0.17213496565818787, + 0.2699822783470154, + -0.08422352373600006, + -0.37675726413726807, + -0.30431613326072693, + -0.09750919044017792, + -0.18563100695610046, + -0.13736270368099213, + -0.03263430669903755, + 0.054255589842796326, + -0.1422896534204483, + -0.07827696204185486, + 0.11504770815372467, + -0.0009004438761621714, + 0.14770765602588654, + 0.1936701536178589, + 0.5093162059783936, + -0.07697384059429169, + -0.3184918761253357, + 0.033418118953704834, + -0.16829243302345276, + 0.1554146558046341, + -0.039780013263225555, + 0.015141483396291733, + -0.3109550178050995, + 0.3239828944206238, + -0.19746467471122742, + 0.07195942103862762, + -0.022807709872722626, + -0.1506001055240631, + -0.27553820610046387, + -0.40653306245803833, + 0.06227269768714905, + 0.006492896005511284, + -0.08410124480724335, + 0.010814206674695015, + 0.2038450688123703, + 0.04493845999240875, + -0.23208191990852356, + 0.11181776225566864, + 0.3160119652748108, + 0.16281871497631073, + -0.00028581544756889343, + 0.2481541931629181, + 0.1376548707485199, + -0.13691338896751404, + 0.22288841009140015, + -0.00031397491693496704, + 0.12424523383378983, + 0.09831471741199493, + -0.41922247409820557, + -0.09688174724578857, + 0.05529389902949333, + -0.3952501714229584, + -0.06656894832849503, + 0.23003879189491272, + 0.061884332448244095, + 0.003401000052690506, + -0.09492473304271698, + -0.07218591868877411, + 0.23426181077957153, + -0.43210482597351074, + -0.10506930947303772, + 0.4241871237754822, + -0.17007039487361908, + 0.4095035791397095, + 0.016066819429397583, + -0.286850243806839, + -0.16375477612018585, + 0.08804114907979965, + -0.3778175711631775, + 0.21149899065494537, + 0.0860079675912857, + -0.22953258454799652, + -0.09721724689006805, + -0.15336279571056366, + -0.11439813673496246, + -0.055991992354393005, + 0.06729795783758163, + 0.20628632605075836, + 0.048323169350624084, + 0.19144345819950104, + -0.35162487626075745, + 0.10775546729564667, + -0.319551944732666, + -0.42717263102531433, + -0.20851175487041473, + 0.23914705216884613, + 0.023892007768154144, + -0.023760763928294182, + 0.07325327396392822, + 0.027908936142921448, + -0.22596696019172668, + -0.32983237504959106, + 0.01151999831199646, + -0.18768593668937683, + 0.6030633449554443, + 0.03443092107772827, + -0.094368577003479, + 0.17755207419395447, + -0.24652066826820374, + 0.14295069873332977, + 0.14117196202278137, + 0.2862781882286072, + 0.16126519441604614, + 0.20174260437488556, + 0.21768182516098022, + 0.3508859872817993, + 0.3642650246620178, + 0.06048420071601868, + 0.11228246241807938, + -0.01619621179997921, + 0.04915003478527069, + -0.16038154065608978, + -0.14777955412864685, + 0.4062119424343109, + -0.38699546456336975, + 0.06568989902734756, + 0.08522632718086243, + 0.10896672308444977, + -0.24720799922943115, + -0.14860254526138306, + 0.02438458800315857, + 0.03181155025959015, + -0.07101091742515564, + -0.3253816068172455, + -0.25519171357154846, + 0.12036871910095215, + -0.416866660118103, + -0.09823688864707947, + 0.17580446600914001, + 0.23086783289909363, + 0.13085639476776123, + -0.014502979815006256, + -0.06492513418197632, + -0.4745086133480072, + 0.2985357344150543, + 0.3817300796508789, + -0.0046818070113658905, + 0.12240583449602127, + -0.07319547981023788, + 0.250882089138031, + 0.497036337852478, + -0.0006879791617393494, + -0.12899065017700195, + 0.03423226252198219, + -0.011099658906459808, + -0.0590672492980957, + 0.0592232346534729, + -0.11508695781230927, + 0.015379764139652252, + -0.38003501296043396, + 0.020966289564967155, + -0.1184057742357254, + -0.5067121386528015, + 0.09947311878204346, + -0.32564812898635864, + -0.3854447305202484, + -0.02750253677368164, + 0.0954226478934288, + -0.1266884207725525, + 0.14535966515541077, + 0.21293872594833374, + 0.463053822517395, + 0.14017099142074585, + 0.021533723920583725, + 0.25957775115966797, + -0.510695219039917, + -0.18367788195610046, + 0.18255847692489624, + -0.050550997257232666, + 0.1913098692893982, + 0.02761061117053032, + 0.30185237526893616, + 0.4022231101989746, + 0.431317001581192, + -0.3444938659667969, + 0.2470586746931076, + 0.2515931725502014, + 0.2559956908226013, + -0.37206217646598816, + -10.831937789916992, + 0.24646838009357452, + -0.14392134547233582, + 0.5180757641792297, + -0.14971095323562622, + -0.03557116538286209, + -0.02863197773694992, + 0.15279504656791687, + 0.21674880385398865, + 0.2877245545387268, + -0.24807164072990417, + 0.060724351555109024, + 0.3617299199104309, + 0.32060056924819946, + -0.12450279295444489, + 0.04984812065958977, + -0.17435088753700256, + 0.1971028745174408, + -0.2029043287038803, + 0.16108888387680054, + 0.18725277483463287, + 0.3026028275489807, + -0.24498075246810913, + 0.29923421144485474, + 0.12469060719013214, + -0.05368555337190628, + -0.2760915458202362, + 0.31406059861183167, + -0.06642401218414307, + -0.44017544388771057, + 0.32242220640182495, + 0.1829984486103058, + -0.20154017210006714, + 0.24639548361301422, + -0.06700929254293442, + -0.13153594732284546, + -0.03024989366531372, + 0.010064341127872467, + 0.09532149136066437, + -0.05738985538482666, + 0.06875564157962799, + -0.073263019323349, + 0.028717659413814545, + 0.29055947065353394, + -0.17149873077869415, + -0.2919727563858032, + -0.3191659450531006, + -1.3544580936431885, + 0.18604397773742676, + 0.27028942108154297, + 0.35888671875, + 0.0461045503616333, + 0.23725414276123047, + 0.2954067885875702, + -0.27310559153556824, + 0.007919851690530777, + -0.22170592844486237, + 0.22358232736587524, + 0.10117414593696594, + -0.20946954190731049, + 0.2748386263847351, + -0.18665048480033875, + 0.20294475555419922, + -0.47866290807724, + -0.2365807145833969, + 0.10222537070512772, + -0.03457706421613693, + -0.017110517248511314, + -0.10610051453113556, + -0.2230035960674286, + -0.444757342338562, + -0.05684872344136238, + 0.17132651805877686, + -0.043878305703401566, + 0.3603177070617676, + -0.0768551230430603, + -0.4540203809738159, + 0.20816829800605774, + -0.002235580235719681, + 0.2262583076953888, + 0.2741658687591553, + -0.04602742940187454, + 0.22836074233055115, + -0.16489854454994202, + -0.18109923601150513, + -0.3006269633769989, + 0.08404020965099335, + 0.38976383209228516, + -0.09542255848646164, + -0.16560132801532745, + 0.0863485336303711, + 0.18521104753017426, + -0.0032340139150619507, + -0.0783798098564148, + -0.4946853518486023, + 0.10106542706489563, + 0.18657535314559937, + 0.011812053620815277, + 0.11058761179447174, + -0.20258143544197083, + -0.24303673207759857, + -0.06153615936636925, + -0.20401030778884888, + -0.5645541548728943, + -0.24207338690757751, + 0.284088671207428, + 0.2871110439300537, + 0.15522363781929016, + 0.11855602264404297, + 0.11679840832948685, + 0.17434605956077576, + -0.10265945643186569, + 0.5012632608413696, + 0.40620702505111694, + 0.14352789521217346, + -0.18981163203716278, + -0.1582859754562378, + 0.008393794298171997, + -0.2276940792798996, + 0.09434521198272705, + 0.33295339345932007, + 0.04517092555761337, + 0.25691020488739014, + 0.6408071517944336, + -0.06869882345199585, + 0.023283392190933228, + 0.9037225842475891, + -0.38384512066841125, + 0.5766766667366028, + -0.015866786241531372, + 0.10324790328741074, + 0.014261778444051743, + -0.11121969670057297, + 0.22141292691230774, + 0.180240660905838, + -0.16019640862941742, + 0.42217200994491577, + 0.13101716339588165, + -0.32906538248062134, + 0.08930487930774689, + -0.20802795886993408, + 0.4570109248161316, + 0.13498859107494354, + 0.0578104704618454, + -0.13888096809387207, + -0.2891021966934204, + -0.3635624945163727, + 0.015923835337162018, + -0.14917075634002686, + -0.10793698579072952, + -0.11837610602378845, + 0.21120737493038177, + -0.043733999133110046, + -0.14604198932647705, + 0.30076873302459717, + 0.07965907454490662, + 0.026789143681526184, + -0.0994078665971756, + -0.42464298009872437, + -0.12217742204666138, + 0.0050747692584991455, + 0.5033242702484131, + 0.2736607789993286, + -0.08555269241333008, + -0.26413995027542114, + 0.34121304750442505, + -0.10038420557975769, + 0.17320673167705536, + 0.19697876274585724, + 0.013582564890384674, + -0.3914993703365326, + 0.17125779390335083, + 0.006498765200376511, + -0.40618833899497986, + -0.17143946886062622, + -0.30856558680534363, + 0.15081411600112915, + -0.17511332035064697, + -0.013049963861703873, + 0.47596991062164307, + 0.2743627727031708, + 0.03840314969420433, + 0.10192780941724777, + -0.3956719636917114, + 0.31400951743125916, + 0.19255207479000092, + 0.16658376157283783, + 0.20138844847679138, + -0.047207776457071304, + -0.41338497400283813, + -0.30670416355133057, + 0.0767974853515625, + -0.19766026735305786, + -0.12404906004667282, + 0.23401625454425812, + 0.1205226331949234, + -0.14431576430797577, + 0.050111185759305954, + -0.2666166424751282, + -0.07771646976470947, + -0.3870171010494232, + 0.2369057834148407, + 0.16285769641399384, + -0.49654126167297363, + 0.10719437897205353, + -0.0726730152964592, + 0.3677505552768707, + 0.18041354417800903, + -0.4210672378540039, + 0.3003746271133423, + -0.17996804416179657 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_053.json b/src/benchmark/output/results/results_graph_053.json new file mode 100644 index 0000000..fe46680 --- /dev/null +++ b/src/benchmark/output/results/results_graph_053.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "The patient in question is a [age]-year-old individual who was initially diagnosed with lung and mediastinal lesions. The diagnosis was made in [year] and marked the beginning of a complex treatment journey.\n\nFollowing the initial diagnosis, the patient transitioned to radiotherapy for the lung and mediastinal lesions (N1 to N2). This marked an important step in the patient's care, as it aimed to alleviate symptoms and slow disease progression. However, this was followed by another significant change when the patient began chemotherapy with albumin-bound paclitaxel and cisplatin, with recombinant human endostatin added in the 4th cycle (N2 to N3). Unfortunately, treatment was not completed due to cardiac reactions, resulting in stable disease.\n\nThe patient's condition continued to evolve as they developed symptoms of chest tightness and shortness of breath. These symptoms persisted despite hospitalization for worsening shortness of breath (N5 to N6), where ECG abnormalities and lab results indicating elevated troponin, BNP, and myoglobin were noted. The initial treatment included a range of medications aimed at managing these complications.\n\nDespite the efforts to manage symptoms, the patient's condition continued to deteriorate. A coronary angiography revealed significant stenosis in the left main trunk (N6 to N7), which further complicated the patient's care. Notably, anticoagulant therapy was not initiated due to concerns about gastrointestinal bleeding secondary to long-term aspirin use.\n\nThroughout this journey, the patient has been managed with a range of treatments, including medications and procedures aimed at addressing complications such as cardiac reactions, chest tightness, and shortness of breath. The timeline of diagnoses and treatments is complex, reflecting the evolving nature of the patient's condition.\n\nThe patient's age and demographic information are not explicitly stated in the provided data, but based on the treatment journey described, it can be inferred that this individual has been living with a serious health condition for several years.", + "bertscore": { + "precision": [ + 0.6489934921264648 + ], + "recall": [ + 0.6017652750015259 + ], + "f1": [ + 0.6244877576828003 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 7, + "edge_count": 6, + "avg_in_degree": 0.8571428571428571, + "density": 0.14285714285714285 + }, + "trajectory_embedding": [ + 0.17100100219249725, + 0.01172204501926899, + -0.21289609372615814, + 0.19774876534938812, + 0.11490162461996078, + 0.15191338956356049, + -0.03697091341018677, + 0.23890110850334167, + 0.5338540077209473, + -0.3338589072227478, + -0.10677526146173477, + 0.1514439433813095, + -0.44707658886909485, + -0.2678467631340027, + 0.006834420841187239, + 0.15527208149433136, + -0.11113017052412033, + 0.2591327130794525, + -0.09351473301649094, + -0.20768888294696808, + -0.16499637067317963, + 0.09954027831554413, + -0.4701754152774811, + -0.020324762910604477, + 0.11852780729532242, + -0.06426599621772766, + 0.33649319410324097, + 0.6274865865707397, + 0.18352051079273224, + 0.30850425362586975, + 0.08665106445550919, + -0.03726126626133919, + -0.08848248422145844, + 0.013605847023427486, + -0.20068073272705078, + 0.14376775920391083, + 0.1463918834924698, + 0.012711933813989162, + -0.21329282224178314, + 0.06016463786363602, + -0.13615386188030243, + 0.10873724520206451, + 0.7263768911361694, + 0.2762015461921692, + 0.3738660514354706, + -0.4993719756603241, + -0.07149950414896011, + 0.6947835087776184, + -0.4605201184749603, + -0.1495877057313919, + 0.3336849808692932, + 0.6468313932418823, + 0.47226986289024353, + -0.36773309111595154, + 0.3829520642757416, + -0.24915626645088196, + -0.10759878158569336, + -0.3838324248790741, + -0.1543833166360855, + 0.15415135025978088, + 0.08567430824041367, + -0.10774904489517212, + 0.3047535717487335, + -0.22125987708568573, + -0.14934059977531433, + -0.20016419887542725, + -0.2885456383228302, + 0.02380061335861683, + 0.05224994570016861, + -0.14045299589633942, + -0.28438031673431396, + -0.3955760896205902, + -0.159181609749794, + 0.1616220623254776, + 0.23758140206336975, + -0.1629956066608429, + 0.3648713231086731, + -0.23331484198570251, + 0.08615858107805252, + 0.07766558974981308, + -0.08805838972330093, + 0.0022421765606850386, + -0.12579445540905, + 0.29239121079444885, + -0.47865670919418335, + -0.0019257919630035758, + -0.03364467993378639, + -0.3095218539237976, + -0.3319779336452484, + 0.2068275362253189, + 0.004538444336503744, + -0.5003085732460022, + 0.0974946841597557, + -0.15187697112560272, + 0.11915046721696854, + 0.10334234684705734, + 0.3709621727466583, + 0.2474813610315323, + 0.8601303696632385, + 0.006439132150262594, + 0.20540118217468262, + -0.049783919006586075, + 0.11110716313123703, + -0.16807867586612701, + 0.298078715801239, + -0.21528120338916779, + 0.1959475427865982, + -0.44597768783569336, + 0.17520877718925476, + 0.38327616453170776, + -0.05869729071855545, + -0.33759233355522156, + 0.04677050560712814, + -0.42605504393577576, + 0.16364312171936035, + 0.08517057448625565, + 0.0027300757355988026, + 0.1446908563375473, + 0.23417554795742035, + -0.5083310604095459, + -0.13706664741039276, + -0.1675989329814911, + 0.43946439027786255, + 0.28368955850601196, + -0.5352855920791626, + -0.008423960767686367, + -0.09388279914855957, + 0.0690157413482666, + -0.20451389253139496, + 0.17577232420444489, + -0.48916059732437134, + -0.2847658097743988, + -0.07840248197317123, + 0.02749628759920597, + -0.28859391808509827, + 0.38677874207496643, + -0.3567811846733093, + 0.24413646757602692, + -1.092475175857544, + 0.23130880296230316, + -0.4474027156829834, + -0.17902925610542297, + 0.1882493942975998, + -0.625089168548584, + -0.16087977588176727, + -0.11653619259595871, + -0.19434748589992523, + 0.11690963804721832, + -0.20534853637218475, + -0.18866467475891113, + 0.10551813989877701, + -0.13814431428909302, + 0.2587955892086029, + 0.4571447968482971, + 0.06362473964691162, + 0.09472285211086273, + 0.06336577981710434, + 0.3045656681060791, + 0.18465708196163177, + -0.12187506258487701, + 0.13138042390346527, + 0.6344067454338074, + 0.01855069026350975, + 0.03687042370438576, + -0.03251279518008232, + -0.7075977921485901, + -0.031911078840494156, + -0.24646680057048798, + 0.08599924296140671, + 0.05160089209675789, + -0.07021670043468475, + 0.08312087506055832, + -0.14292344450950623, + 0.6327731013298035, + 0.11689610034227371, + 0.5186426043510437, + 0.05964914709329605, + 0.24154837429523468, + 0.23561908304691315, + 0.1754046380519867, + 0.07956383377313614, + -0.25514426827430725, + 0.6309335827827454, + 0.32216963171958923, + -0.10558386892080307, + 0.4341564476490021, + 0.3129425644874573, + -0.26681748032569885, + -0.14742815494537354, + 0.05094332620501518, + 0.451366662979126, + -0.2527161240577698, + 0.3837912082672119, + -0.1897650808095932, + -0.004625398200005293, + 0.10092123597860336, + -0.15214654803276062, + -0.18263672292232513, + -0.151779904961586, + -0.029724320396780968, + 0.1512133777141571, + 0.08459486067295074, + -0.32088378071784973, + 0.11378102004528046, + 0.20025239884853363, + -0.1299767941236496, + 0.10940182209014893, + 0.09048126637935638, + 0.07911936193704605, + 0.06689372658729553, + -0.20037414133548737, + 0.14459848403930664, + 0.03134804591536522, + 0.20343337953090668, + -0.026495469734072685, + -0.31806373596191406, + 0.2294769138097763, + -0.02291073463857174, + -0.24677526950836182, + 0.17867790162563324, + -0.061832062900066376, + -0.08554155379533768, + -0.07250199466943741, + 0.02048652432858944, + -0.4265856146812439, + 0.23360513150691986, + 0.18275348842144012, + 0.28285831212997437, + 0.10267741978168488, + 0.02285960502922535, + 0.0520843043923378, + -0.49216774106025696, + 0.2752619981765747, + -0.19124498963356018, + -0.03228912875056267, + -0.3726004958152771, + 0.27938953042030334, + 0.03446498140692711, + 0.061065685003995895, + 0.2689950168132782, + 0.08788073807954788, + -0.1657726913690567, + 0.11356303840875626, + -0.3225928843021393, + -0.1917956918478012, + -0.388960063457489, + 0.10789813101291656, + 0.1842545121908188, + 0.0646943673491478, + 0.29498744010925293, + 0.03642653673887253, + -0.032270386815071106, + 0.13051283359527588, + -0.21828405559062958, + -0.3837900161743164, + -0.2880827486515045, + -0.05526581034064293, + -0.018391774967312813, + -0.528144896030426, + 0.2281871736049652, + 0.02687625028192997, + -0.10383328050374985, + 0.19207577407360077, + -0.33357974886894226, + -0.15060199797153473, + -0.10420278459787369, + 0.06376777589321136, + 0.03733211010694504, + -0.21956856548786163, + -0.0700782909989357, + -0.4142184853553772, + -0.1542847454547882, + 0.05535644292831421, + 0.01932511106133461, + -0.017645327374339104, + 0.06497722864151001, + -0.22565290331840515, + 0.08997087925672531, + 0.3061147630214691, + -0.40247780084609985, + -0.09383560717105865, + 0.2400093823671341, + -0.25934213399887085, + 0.3796001076698303, + -0.168920636177063, + 0.16842913627624512, + 0.2331302911043167, + 0.06186581403017044, + 0.09495898336172104, + 0.5970635414123535, + 0.43322300910949707, + -0.009353501722216606, + 0.0644209235906601, + 0.05224369093775749, + 0.015331150032579899, + -0.022899020463228226, + -0.40473678708076477, + 0.4006102383136749, + -0.281204491853714, + -0.04212673753499985, + 0.0903128907084465, + 0.2303827553987503, + 0.1565549373626709, + -0.2792680561542511, + 0.03031235933303833, + 0.3822140097618103, + 0.1373763531446457, + 0.12471430003643036, + -0.09068803489208221, + 0.4138628840446472, + 0.49196815490722656, + 0.07891718298196793, + -0.06529351323843002, + 0.06035742536187172, + 0.06364093720912933, + -0.15560516715049744, + -0.09094028919935226, + 0.3771493434906006, + 0.45136094093322754, + -0.15570054948329926, + -0.26267415285110474, + 0.2630266547203064, + -0.21795889735221863, + -0.1303381472826004, + -0.1863185316324234, + -0.11796443909406662, + 0.03457719460129738, + -0.1228424683213234, + 0.37951841950416565, + 0.031170835718512535, + 0.00246279570274055, + 0.41730207204818726, + -0.31318336725234985, + -0.13298830389976501, + 0.31936630606651306, + -0.11588530242443085, + -0.5356836915016174, + 0.2674857974052429, + -0.044302936643362045, + 0.026165321469306946, + 0.23012959957122803, + -0.28225386142730713, + -0.1280623972415924, + -0.07541272789239883, + 0.18717481195926666, + -0.02904072031378746, + 0.12683121860027313, + -0.10298130661249161, + 0.08049675077199936, + -0.05848463252186775, + 0.489097535610199, + 0.15787816047668457, + 0.10409598797559738, + 0.6004343628883362, + -0.1780608594417572, + -0.4649643301963806, + 0.0772586241364479, + -0.06998047977685928, + 0.2506263256072998, + -0.22562482953071594, + -0.19465772807598114, + -0.22446107864379883, + 0.10364481061697006, + 0.21837303042411804, + -0.14856888353824615, + 0.0031958334147930145, + 0.21666717529296875, + -0.007610406260937452, + -0.032290246337652206, + 0.35074546933174133, + 0.10883370786905289, + -0.07031030207872391, + 0.547732949256897, + -0.11237557977437973, + -0.17616544663906097, + 0.31050896644592285, + -0.17020276188850403, + 0.19927635788917542, + -0.19449540972709656, + -0.20777522027492523, + -0.4680130183696747, + 0.13593627512454987, + -0.3009422719478607, + -0.17046581208705902, + 0.009019889868795872, + -0.07510928809642792, + 0.07159510999917984, + -0.10804851353168488, + 0.15755628049373627, + 0.08155161887407303, + 0.08600945770740509, + -0.02825811877846718, + 0.34424927830696106, + -0.003742153523489833, + -0.3586452305316925, + 0.07235796749591827, + -0.007372724357992411, + 0.11125193536281586, + -0.2928902804851532, + 0.17747437953948975, + -0.043546710163354874, + 0.5521405339241028, + 0.02815089002251625, + 0.14051099121570587, + 0.05909854918718338, + 0.020304983481764793, + -0.07132837176322937, + -0.33573269844055176, + -0.06728563457727432, + -0.04354606196284294, + -0.11208877712488174, + -2.932335701189004e-05, + 0.11677627265453339, + -0.2652531564235687, + -0.2824511229991913, + -0.09639781713485718, + 0.10138951987028122, + 0.1350623071193695, + -0.0869540125131607, + -0.06912440061569214, + 0.4026637375354767, + 0.2285010665655136, + 0.4918633997440338, + -0.37914684414863586, + 0.2500379681587219, + 0.18726885318756104, + -0.3283156752586365, + -0.08630543202161789, + -0.06418611109256744, + -0.32360735535621643, + 0.005279677454382181, + 0.16871704161167145, + 0.3007362484931946, + 0.12491422146558762, + -0.05362760275602341, + 0.13641060888767242, + 0.06280901283025742, + -0.2879883348941803, + 0.02127690240740776, + 0.4871537387371063, + 0.0629173293709755, + 0.39538416266441345, + -0.011763920076191425, + -0.42817214131355286, + -0.23108455538749695, + -0.11256667226552963, + -0.37668153643608093, + 0.08490006625652313, + 0.24711458384990692, + -0.13663576543331146, + -0.1400398164987564, + 0.1589566171169281, + 0.03949296474456787, + -0.06337105482816696, + 0.11664221435785294, + -0.1760568916797638, + 0.24378632009029388, + 0.10223359614610672, + -0.30523091554641724, + 0.12192542850971222, + -0.2233382612466812, + -0.533306896686554, + -0.25841790437698364, + 0.31091830134391785, + 0.19524700939655304, + -0.288938045501709, + -0.038094453513622284, + 0.1019466295838356, + -0.026005038991570473, + -0.2828468382358551, + 0.10415085405111313, + -0.10341385751962662, + 0.5106364488601685, + -0.020691562443971634, + -0.15194548666477203, + 0.06794970482587814, + -0.300289124250412, + -0.07811343669891357, + 0.08984720706939697, + 0.013593414798378944, + 0.444155752658844, + 0.1953645944595337, + 0.2376483529806137, + 0.46534332633018494, + 0.22318466007709503, + 0.020042750984430313, + 0.3159398138523102, + 0.0052218311466276646, + 0.06239974871277809, + -0.06658835709095001, + -0.21927247941493988, + 0.2775903642177582, + -0.4601425528526306, + -0.006048652809113264, + 0.15806253254413605, + 0.3728953003883362, + -0.37755754590034485, + -0.39288315176963806, + 0.07657933235168457, + -0.24903453886508942, + -0.08021024614572525, + -0.07371076196432114, + -0.0528247095644474, + -0.1615319401025772, + -0.2654031217098236, + 0.10253708809614182, + 0.1720353364944458, + 0.31135082244873047, + 0.16231386363506317, + 0.013995245099067688, + -0.37161439657211304, + -0.2250300943851471, + 0.17971684038639069, + 0.2776537537574768, + -0.01491178385913372, + 0.005444915033876896, + -0.08520027250051498, + 0.2877308428287506, + 0.36741966009140015, + -0.0857776403427124, + -0.05094502493739128, + -0.001286128768697381, + 0.19180725514888763, + 0.19552956521511078, + 0.030790627002716064, + -0.20318198204040527, + 0.23981483280658722, + -0.3726024329662323, + -0.0009107972728088498, + -0.049984853714704514, + -0.18804553151130676, + 0.35033801198005676, + -0.213377445936203, + -0.5057328343391418, + 0.0018925443291664124, + 0.2909131646156311, + -0.099146768450737, + -0.1993604600429535, + 0.05558851361274719, + 0.38665562868118286, + -0.027765026316046715, + -0.15315087139606476, + -0.025464508682489395, + -0.3749809265136719, + -0.1438710242509842, + 0.0754445418715477, + -0.08469874411821365, + 0.058662328869104385, + 0.051381487399339676, + 0.35544610023498535, + 0.4800654351711273, + 0.266383558511734, + -0.2524513900279999, + 0.37617596983909607, + 0.3144438564777374, + 0.2590644955635071, + -0.3073919713497162, + -10.73615550994873, + -0.14148171246051788, + -0.4415019154548645, + 0.4704132378101349, + -0.18455982208251953, + 0.08499276638031006, + -0.26629844307899475, + 0.05361584201455116, + 0.12853150069713593, + 0.10459945350885391, + -0.19463495910167694, + -0.046458806842565536, + 0.18511120975017548, + 0.3033631145954132, + 0.21903565526008606, + 0.23645640909671783, + -0.29071542620658875, + 0.24516674876213074, + 0.010741723701357841, + 0.1828749179840088, + 0.25786033272743225, + 0.39176324009895325, + -0.287773460149765, + 0.09634155035018921, + -0.1945691555738449, + -0.4117409586906433, + -0.2066155970096588, + 0.4852396547794342, + 0.26736006140708923, + -0.18429994583129883, + 0.32252365350723267, + 0.08467023819684982, + -0.2598281502723694, + 0.03414541482925415, + -0.08408021181821823, + -0.16580632328987122, + -0.1256483495235443, + 0.32154157757759094, + 0.1343560367822647, + -0.0898323580622673, + 0.06353811174631119, + -0.21296975016593933, + 0.20939742028713226, + 0.07985307276248932, + -0.14449474215507507, + -0.5243708491325378, + -0.14403867721557617, + -1.5034592151641846, + 0.04413445666432381, + 0.3742007911205292, + 0.35636359453201294, + 0.035002660006284714, + 0.09784924983978271, + 0.34718984365463257, + -0.39871707558631897, + -0.0130897993221879, + -0.26208317279815674, + -0.07611887902021408, + 0.2885091006755829, + 0.092270128428936, + -0.013246892020106316, + -0.04186173155903816, + 0.48246297240257263, + -0.0046471888199448586, + -0.3662783205509186, + 0.3224092423915863, + -0.11527599394321442, + -0.1642409861087799, + -0.23173284530639648, + -0.47847214341163635, + -0.7642673850059509, + -0.039810873568058014, + -0.01895822398364544, + 0.08913274109363556, + 0.3285217881202698, + 0.003354056505486369, + -0.2411489486694336, + 0.17458154261112213, + 0.03856223449110985, + 0.28193092346191406, + 0.2344440370798111, + 0.13761982321739197, + 0.0316561758518219, + -0.18293459713459015, + 0.0007082947413437068, + -0.10183478146791458, + 0.29677852988243103, + 0.48663806915283203, + 0.016980256885290146, + 0.00042689271504059434, + 0.07147838175296783, + 0.2905617356300354, + -0.0540410652756691, + -0.05438515543937683, + -0.4179891049861908, + 0.09178335219621658, + -0.037066392600536346, + 0.13005496561527252, + -0.14459240436553955, + -0.18306554853916168, + -0.20466716587543488, + 0.03651946038007736, + -0.12245716899633408, + -0.511111319065094, + -0.4696480333805084, + 0.36203640699386597, + 0.3340136408805847, + -0.08825206756591797, + 0.02906821109354496, + -0.18552137911319733, + 0.03877456113696098, + 0.026951655745506287, + 0.3871261477470398, + 0.3181215822696686, + 0.3022526204586029, + 0.01529880054295063, + -0.042525459080934525, + -0.23556050658226013, + -0.012458854354918003, + -0.20570513606071472, + 0.43123674392700195, + -0.029536444693803787, + -0.015221425332129002, + 0.5441558361053467, + -0.009173333644866943, + -0.035774923861026764, + 0.7406247854232788, + -0.3937263488769531, + 0.39137062430381775, + -0.013164905831217766, + 0.0961257740855217, + -0.17442461848258972, + -0.43023523688316345, + 0.09774846583604813, + 0.3492068946361542, + -0.43372392654418945, + 0.6945797204971313, + 0.2833877503871918, + -0.2448021024465561, + -0.0571584515273571, + -0.3274467885494232, + 0.2153135985136032, + 0.19341155886650085, + 0.23870344460010529, + -0.20771363377571106, + -0.11539062112569809, + -0.2974030375480652, + -0.002839918714016676, + -0.3126678466796875, + -0.1707625538110733, + -0.14578597247600555, + 0.046418897807598114, + 0.006933932658284903, + 0.020693322643637657, + 0.20589579641819, + 0.18723252415657043, + -0.163631409406662, + -0.13990086317062378, + -0.357511967420578, + -0.25564637780189514, + 0.020241592079401016, + 0.7646552324295044, + 0.04144992306828499, + -0.14769421517848969, + 0.023255493491888046, + 0.21928749978542328, + -0.04082940146327019, + 0.03222467750310898, + 0.1012636050581932, + 0.03582748770713806, + -0.3437248170375824, + 0.12110476940870285, + 0.1621411293745041, + -0.4145309627056122, + -0.14715680480003357, + -0.133422389626503, + -0.016409102827310562, + 0.06696154922246933, + -0.18553867936134338, + 0.19406889379024506, + 0.34697484970092773, + 0.054065264761447906, + 0.11948585510253906, + -0.15907779335975647, + -0.09753081947565079, + 0.009691094048321247, + 0.40486088395118713, + 0.07232224941253662, + -0.3861137926578522, + -0.3529038429260254, + -0.48146969079971313, + 0.19582390785217285, + -0.4145156741142273, + 0.09389970451593399, + -0.047726165503263474, + 0.1124381497502327, + -0.23491093516349792, + 0.17927539348602295, + -0.14224475622177124, + 0.1265493929386139, + -0.35552749037742615, + 0.1961769014596939, + 0.41992321610450745, + -0.4877544939517975, + 0.4726913273334503, + -0.08445429801940918, + 0.19499151408672333, + -0.009040338918566704, + -0.2341529130935669, + 0.008638948202133179, + -0.19954811036586761 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_054.json b/src/benchmark/output/results/results_graph_054.json new file mode 100644 index 0000000..d7b8fe9 --- /dev/null +++ b/src/benchmark/output/results/results_graph_054.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 49-year-old male with a significant smoking history (37 pack-years). He was admitted to the local hospital with acute abdominal pain, which marked the beginning of his clinical journey.\n\n**Timeline of Diagnoses and Treatments:**\n\n1. **Initial Presentation:** The patient presented with acute abdominal pain, which led to an enhanced CT scan revealing a 4.0 cm soft tissue mass within the small intestine and mid-lower intestine intussusception (N2).\n2. **Surgical Intervention:** Admitted to the general surgery ward, the patient underwent intussusception surgery on April 8, 2019 (N3). During surgery, an irregular, hard, solid white mass involving the intestine was identified.\n3. **Initial Pathological Diagnosis:** The resected specimen showed a multinodular mass with a tan-white cut surface and firm consistency, thin envelope observed in the periphery of the mass (N4).\n4. **Detailed Pathology and Immunohistochemistry Results:** Histological examination revealed tumor located within the submucosa and lamina propria of the intestinal wall with mucosal erosion, neoplastic cells embedded within the inflammatory background. Immunohistochemistry results confirmed ALK-positive inflammatory myofibroblastic tumor (IMT), highly suspicious for epithelioid inflammatory myofibroblastic sarcoma (EIMS) (N5).\n\n**Diagnosis and Treatment Outcomes:**\n\nThe patient was diagnosed with a suspected case of epithelioid inflammatory myofibroblastic sarcoma (EIMS). Given the ALK-positive status, treatment options were considered. However, no specific treatment details are provided in this data.\n\n**Conclusion:**\nThis clinical case report highlights the importance of a thorough diagnostic workup and the significance of molecular testing in identifying rare and aggressive tumors like EIMS. Further investigation into the patient's treatment plan is necessary to determine the most effective course of action for this unique diagnosis.\n\n**Recommendations:**\n\n1. **Multidisciplinary Team Approach:** Collaboration between surgeons, pathologists, radiologists, and oncologists is crucial for managing complex cases like this.\n2. **Molecular Testing:** Regular molecular testing can help identify potential biomarkers for targeted therapies in EIMS patients.\n3. **Clinical Trials Participation:** Patients with rare tumors like EIMS should be considered for participation in clinical trials to explore new treatment options.\n\n**Future Directions:**\n\n1. **Research on EIMS:** Further studies are needed to understand the biology and behavior of EIMS, as well as to identify potential therapeutic targets.\n2. **Development of New Treatment Strategies:** Researchers should focus on developing novel treatments for EIMS, including targeted therapies and immunotherapies.\n\nBy sharing this clinical case report, we aim to raise awareness about the importance of accurate diagnosis and treatment planning in managing rare and aggressive tumors like EIMS.", + "bertscore": { + "precision": [ + 0.6755951046943665 + ], + "recall": [ + 0.7064059972763062 + ], + "f1": [ + 0.6906570792198181 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 5, + "edge_count": 4, + "avg_in_degree": 0.8, + "density": 0.2 + }, + "trajectory_embedding": [ + 0.2819657325744629, + 0.01156010851264, + -0.19529643654823303, + -0.042242903262376785, + 0.0824071615934372, + -0.062329452484846115, + 0.08502864092588425, + -0.14531011879444122, + 0.2912984788417816, + -0.3691332936286926, + -0.4327576160430908, + 0.2096576988697052, + -0.7493955492973328, + 0.01814318634569645, + -0.5375791788101196, + 0.016119401901960373, + 0.22100715339183807, + 0.18724648654460907, + 0.03841910511255264, + -0.21638181805610657, + -0.48673343658447266, + 0.07024292647838593, + -0.3643311858177185, + -0.23545090854167938, + 0.14727391302585602, + 0.009976985864341259, + 0.22331109642982483, + 0.46797052025794983, + 0.31234797835350037, + 0.1649298369884491, + 0.187848761677742, + 0.28659406304359436, + -0.19404426217079163, + 0.08399435132741928, + -0.2307843267917633, + 0.5273750424385071, + 0.3137717545032501, + 0.3533502519130707, + -0.01034017838537693, + 0.16888263821601868, + 0.025408577173948288, + 0.06290604174137115, + 0.6615124940872192, + 0.5666652917861938, + 0.5595418214797974, + -0.5713450312614441, + -0.002448448445647955, + 0.41315245628356934, + -0.6382060050964355, + -0.022182364016771317, + 0.11898112297058105, + 0.7024340629577637, + 0.5959348678588867, + 0.10346529632806778, + 0.3609403967857361, + -0.010024135932326317, + -0.41306430101394653, + -0.09724655747413635, + -0.2617156505584717, + 0.12284529209136963, + -0.005021440796554089, + 0.06885652989149094, + -0.14805562794208527, + -0.020574724301695824, + -0.3853421211242676, + -0.18950721621513367, + 0.0011491298209875822, + -0.009224670939147472, + -0.12623415887355804, + -0.5179650783538818, + -0.41000232100486755, + -0.16581407189369202, + -0.23971864581108093, + 0.026845943182706833, + 0.1398806869983673, + -0.4564540982246399, + 0.3844260573387146, + 0.2364782840013504, + -0.03694479539990425, + 0.06192534416913986, + 0.15585803985595703, + -0.06395810842514038, + 0.22396664321422577, + 0.010370844043791294, + -0.3596239984035492, + 0.13184896111488342, + -0.029421698302030563, + -0.005504290573298931, + -0.145220085978508, + 0.19270962476730347, + 0.2139541655778885, + -0.0691504031419754, + -0.24397054314613342, + -0.11164649575948715, + 0.16217145323753357, + -0.14121678471565247, + -0.005196228623390198, + 0.4833621382713318, + 0.8817175626754761, + 0.006323543377220631, + 0.18569307029247284, + 0.3828979432582855, + 0.3616761565208435, + -0.13213948905467987, + 0.4813898205757141, + -0.09522002935409546, + 0.20643095672130585, + -0.3958446979522705, + -0.2907494306564331, + 0.38507378101348877, + -0.10256996005773544, + -0.07805794477462769, + -0.03671841323375702, + -0.42862510681152344, + -0.1323743611574173, + 0.10578533262014389, + -0.26192721724510193, + 0.12471119314432144, + -0.04531417414546013, + -0.25588709115982056, + 0.14686565101146698, + -0.014113294892013073, + 0.4391873776912689, + 0.3200407326221466, + -0.3037782907485962, + 0.1367434561252594, + -0.23748591542243958, + 0.1433216780424118, + 0.029233749955892563, + 0.22284051775932312, + -0.48567837476730347, + -0.17378975450992584, + -0.04064939171075821, + 0.30401086807250977, + -0.07699992507696152, + 0.225277379155159, + -0.5841492414474487, + 0.1473255604505539, + -1.1481292247772217, + 0.1354365348815918, + -0.2891828715801239, + -0.07392589747905731, + 0.03602614626288414, + -0.3595748543739319, + -0.16831736266613007, + -0.28920719027519226, + -0.12690773606300354, + 0.1131347268819809, + 0.0625547543168068, + -0.026239940896630287, + -0.1986147165298462, + 0.10290782153606415, + 0.11960642039775848, + -0.056672610342502594, + 0.2557312548160553, + 0.30895471572875977, + 0.19126012921333313, + 0.1916830688714981, + 0.15540015697479248, + -0.00703870365396142, + -0.18617956340312958, + 0.14683955907821655, + -0.25667130947113037, + -0.057021062821149826, + 0.03640029951930046, + -0.7908259630203247, + 0.5084153413772583, + -0.33375629782676697, + 0.2227286398410797, + 0.24182340502738953, + -0.05195746570825577, + 0.26042163372039795, + -0.03700605034828186, + 0.4879745841026306, + 0.41023963689804077, + 0.42232638597488403, + 0.07641778886318207, + -0.05374490097165108, + 0.04331245273351669, + 0.17478929460048676, + -0.029185574501752853, + 0.039728183299303055, + 0.48788270354270935, + 0.08482994139194489, + -0.3019776940345764, + 0.03680054098367691, + 0.39694899320602417, + -0.26271986961364746, + -0.08964405953884125, + -0.2876098155975342, + 0.4486129879951477, + -0.35308265686035156, + 0.17106133699417114, + -0.4115082323551178, + -0.15082576870918274, + 0.03513195738196373, + -0.3936923146247864, + -0.3235332667827606, + 0.24168696999549866, + -0.23818698525428772, + 0.1304507553577423, + 0.2335294485092163, + -0.1587386578321457, + 0.3151378631591797, + 0.08301068842411041, + -0.040391940623521805, + 0.2454967498779297, + 0.126488596200943, + 0.10284750163555145, + -0.28173309564590454, + -0.4230947494506836, + 0.20568108558654785, + -0.010282578878104687, + 0.20891611278057098, + 0.14070436358451843, + -0.07551243156194687, + 0.5132578611373901, + -0.12277515977621078, + -0.1477503478527069, + 0.21111464500427246, + -0.10337124019861221, + 0.11373928934335709, + 0.6116440892219543, + -0.02891787327826023, + -0.2560272216796875, + 0.22197239100933075, + 0.18883918225765228, + 0.3178527355194092, + 0.11936540901660919, + -0.22341518104076385, + 0.081446073949337, + -0.1539449244737625, + 0.2728028893470764, + -0.08746681362390518, + -0.27951258420944214, + -0.14418792724609375, + 0.16988372802734375, + -0.16448208689689636, + -0.32468995451927185, + 0.3970807194709778, + -0.3475591242313385, + -0.10016006231307983, + 0.000508898519910872, + -0.12484131008386612, + -0.10205300152301788, + -0.13561642169952393, + 0.10606913268566132, + 0.4626343846321106, + 0.0530124232172966, + 0.2949811518192291, + 0.21213805675506592, + -0.014922755770385265, + 0.21438510715961456, + -0.35733336210250854, + -0.03728798031806946, + -0.32251983880996704, + -0.20010869204998016, + -0.03009653463959694, + -0.17133785784244537, + -0.17072144150733948, + 0.19208277761936188, + -0.21260876953601837, + 0.045306820422410965, + -0.30475252866744995, + -0.20405307412147522, + -0.003769330680370331, + -0.11991526931524277, + 0.15337379276752472, + -0.007221841719001532, + 0.34581536054611206, + -0.3109282851219177, + -0.2648845314979553, + -0.1373087614774704, + -0.02402234636247158, + 0.27946537733078003, + 0.1285712569952011, + 0.06717168539762497, + 0.3381385803222656, + 0.11312544345855713, + -0.5430663824081421, + -0.5410584807395935, + 0.1770082265138626, + -0.31392914056777954, + 0.30305618047714233, + -0.11267969757318497, + 0.18842267990112305, + 0.6420873999595642, + -0.14211536943912506, + 0.2482599914073944, + 0.16216333210468292, + 0.6098726987838745, + 0.2301134169101715, + -0.07901699095964432, + 0.1310667246580124, + -0.036422450095415115, + 0.040156953036785126, + -0.37019240856170654, + 0.05949672311544418, + 0.10593041032552719, + -0.11186661571264267, + 0.23038455843925476, + 0.23154819011688232, + 0.08147681504487991, + -0.41597071290016174, + -0.34312954545021057, + 0.5608704686164856, + 0.21357527375221252, + 0.13585183024406433, + -0.09090302884578705, + 0.29289939999580383, + 0.5642803907394409, + 0.11637301743030548, + -0.4090180993080139, + 0.032584480941295624, + -0.17435336112976074, + -0.1940097063779831, + -0.10765485465526581, + -0.12867698073387146, + 0.04984060674905777, + -0.10114653408527374, + 0.012731410562992096, + 0.4958353042602539, + -0.17315582931041718, + -0.18637704849243164, + 0.0931919515132904, + 0.02466379478573799, + -0.04879599064588547, + -0.3212471306324005, + 0.20249846577644348, + -0.36788836121559143, + -0.19267335534095764, + 0.3757289946079254, + -0.14616259932518005, + -0.3999912142753601, + 0.3249477446079254, + 0.09166757017374039, + -0.41328945755958557, + 0.20471489429473877, + -0.20471730828285217, + -0.026013553142547607, + 0.37527355551719666, + 0.07070465385913849, + -0.04677145928144455, + -0.257219523191452, + 0.09950919449329376, + 0.09069094806909561, + -0.24026012420654297, + -0.06821098923683167, + -0.04505574703216553, + 0.24342553317546844, + 0.5499352216720581, + -0.010531236417591572, + -0.17595723271369934, + 0.22296276688575745, + -0.19226904213428497, + -0.16540242731571198, + 0.03457000479102135, + 0.030670464038848877, + 0.0817415714263916, + -0.10850231349468231, + -0.14931195974349976, + -0.14941152930259705, + 0.16228844225406647, + 0.07606784999370575, + -0.31834691762924194, + 0.03720006346702576, + 0.18604466319084167, + -0.17718732357025146, + 0.051259808242321014, + 0.1965215653181076, + 0.30737289786338806, + 0.06997787952423096, + 0.515029788017273, + 0.14422515034675598, + -0.06916314363479614, + 0.23996594548225403, + -0.13686047494411469, + 0.30965667963027954, + -0.11265214532613754, + -0.3902631402015686, + -0.5225185751914978, + -0.08763500303030014, + -0.1360173523426056, + -0.2288244664669037, + 0.06367043405771255, + 0.07010520249605179, + -0.004669687710702419, + 0.016875971108675003, + 0.3325256407260895, + -0.04973766207695007, + 0.09560365974903107, + 0.006523969583213329, + 0.5087031126022339, + -0.19585342705249786, + -0.43661680817604065, + 0.0840020477771759, + -0.06538631021976471, + 0.20009329915046692, + -0.06858948618173599, + -0.22737650573253632, + -0.24373483657836914, + 0.2227402627468109, + -0.20619824528694153, + 0.003876660717651248, + -0.0488007627427578, + -0.22553808987140656, + -0.18322208523750305, + -0.4884607195854187, + -0.20216837525367737, + -0.030023038387298584, + -0.11414720863103867, + -0.1916341781616211, + 0.3237042725086212, + 0.1354282796382904, + -0.2255854308605194, + 0.11419685184955597, + 0.4803258776664734, + 0.3798507750034332, + -0.10202062129974365, + 0.16469919681549072, + 0.021654600277543068, + 0.0533205084502697, + 0.22574946284294128, + 0.03888440132141113, + 0.1390540897846222, + 0.1104675754904747, + -0.2320142239332199, + -0.10046698898077011, + 0.05306949466466904, + -0.2549882233142853, + -0.05469985678792, + 0.11206956207752228, + 0.09330709278583527, + 0.2569495737552643, + 0.03564918786287308, + -0.10288609564304352, + 0.2938670516014099, + -0.38132068514823914, + -0.09856522083282471, + 0.4201720356941223, + -0.03937888145446777, + 0.29909127950668335, + -0.18918009102344513, + -0.25448641180992126, + -0.19327464699745178, + -0.07191035896539688, + -0.3532315790653229, + 0.27596449851989746, + 0.042613573372364044, + -0.2677476108074188, + -0.051544271409511566, + 0.08639760315418243, + -0.05997587367892265, + -0.01986256241798401, + 0.08639562875032425, + 0.2152630090713501, + 0.052332282066345215, + 0.002368220593780279, + -0.4492368698120117, + -0.019947480410337448, + -0.3480650782585144, + -0.3315059244632721, + -0.4616914391517639, + 0.5195516347885132, + 0.31312471628189087, + 0.033030781894922256, + 0.1273924708366394, + -0.012801790609955788, + -0.29804739356040955, + -0.14500217139720917, + 0.029920075088739395, + 0.13169267773628235, + 0.6464425921440125, + 0.07861386239528656, + -0.3326285779476166, + 0.27793365716934204, + -0.379084050655365, + 0.26129403710365295, + 0.05180910974740982, + 0.13850137591362, + 0.30924832820892334, + 0.41900768876075745, + 0.11717581748962402, + 0.4368710517883301, + 0.12804348766803741, + -0.0511070117354393, + 0.2268187552690506, + -0.10402921587228775, + 0.17748552560806274, + -0.10792158544063568, + -0.004463016986846924, + 0.5278986692428589, + -0.33122676610946655, + 0.2842572331428528, + 0.21393170952796936, + 0.2537659704685211, + -0.3018670678138733, + -0.23411352932453156, + -0.11559351533651352, + -0.09254096448421478, + -0.0019650100730359554, + -0.3699612021446228, + -0.14035384356975555, + 0.2506367564201355, + -0.35856691002845764, + -0.03846556693315506, + 0.24453067779541016, + 0.06467701494693756, + 0.18118174374103546, + -0.09313437342643738, + -0.18066686391830444, + -0.5968683958053589, + 0.12002919614315033, + 0.36896753311157227, + 0.04797782003879547, + 0.11252231895923615, + -0.18932481110095978, + 0.1817692220211029, + 0.5597721338272095, + 0.01591671071946621, + -0.0859982818365097, + -0.03955406695604324, + -0.14732638001441956, + -0.18711695075035095, + 0.1421598345041275, + -0.09672565758228302, + 0.011964231729507446, + -0.1905207335948944, + 0.04277913644909859, + -0.17823031544685364, + -0.26543062925338745, + 0.11301042884588242, + -0.2458002120256424, + -0.3204088807106018, + -0.15424102544784546, + 0.1764768809080124, + -0.17536865174770355, + -0.08618875592947006, + 0.1358158141374588, + 0.6120887994766235, + 0.22199785709381104, + -0.06003031134605408, + 0.12544585764408112, + -0.32640355825424194, + -0.1089656725525856, + 0.175840824842453, + -0.1430301070213318, + 0.19983583688735962, + 0.03325486183166504, + 0.3547280430793762, + 0.4124228060245514, + 0.1358843892812729, + -0.6560123562812805, + -0.10335878282785416, + 0.05185486003756523, + 0.2560424208641052, + -0.23765762150287628, + -10.68913459777832, + 0.27580446004867554, + -0.15968427062034607, + 0.574459433555603, + -0.08790814131498337, + -0.055183857679367065, + 0.1339123547077179, + -0.017256394028663635, + 0.07973160594701767, + 0.24353232979774475, + -0.3917399048805237, + 0.09729699790477753, + 0.3632754683494568, + 0.16694439947605133, + -0.16284869611263275, + -0.23012928664684296, + -0.02414735034108162, + 0.03616098314523697, + -0.11411072313785553, + 0.1642410159111023, + 0.24508197605609894, + 0.35791903734207153, + -0.03128154203295708, + 0.42729735374450684, + 0.2815253436565399, + -0.1577373445034027, + -0.2408381998538971, + 0.4919394552707672, + -0.08061450719833374, + -0.5037323236465454, + 0.4084181785583496, + 0.3214499056339264, + -0.29248204827308655, + -0.06257804483175278, + 0.10729587078094482, + -0.1379738748073578, + -0.03425617888569832, + 0.025445619598031044, + 0.04020975902676582, + -0.01717967540025711, + 0.027411941438913345, + -0.39731842279434204, + -0.0852234959602356, + 0.5058475732803345, + 0.01610795594751835, + -0.27728086709976196, + -0.33120355010032654, + -1.3148202896118164, + 0.31182655692100525, + 0.31345024704933167, + 0.3940262794494629, + 0.07604080438613892, + 0.145135760307312, + 7.220804400276393e-05, + -0.493582546710968, + 0.31558114290237427, + -0.23512013256549835, + 0.3255839943885803, + 0.13163986802101135, + -0.1443617045879364, + 0.11162862926721573, + -0.2633225917816162, + 0.026633460074663162, + -0.4106953740119934, + -0.2748780846595764, + 0.16248026490211487, + -0.09041117131710052, + 0.047892939299345016, + -0.11936809867620468, + -0.01629996858537197, + -0.271892249584198, + -0.21580886840820312, + 0.03376949578523636, + -0.07055852562189102, + 0.6470610499382019, + -0.05516018345952034, + -0.6901593208312988, + 0.22685472667217255, + 0.008406287059187889, + 0.3929494321346283, + -0.011151174083352089, + 0.09318292886018753, + 0.12803347408771515, + -0.09911654144525528, + -0.1421150118112564, + -0.21677851676940918, + 0.07863418757915497, + 0.40272530913352966, + -0.01134209893643856, + 0.16438165307044983, + 0.1136201024055481, + 0.08711381256580353, + -0.28522825241088867, + -0.23506751656532288, + -0.43682631850242615, + 0.2354322373867035, + -0.01765471138060093, + 0.04081321507692337, + 0.06465517729520798, + -0.07987804710865021, + -0.22834742069244385, + -0.24478814005851746, + 0.019913554191589355, + -0.4649529457092285, + -0.26934629678726196, + 0.22237679362297058, + 0.036859508603811264, + 0.3196752071380615, + 0.24554911255836487, + 0.07474811375141144, + 0.23659472167491913, + -0.03021365962922573, + 0.4542574882507324, + 0.40544262528419495, + 0.11862766742706299, + -0.16169245541095734, + -0.16027319431304932, + -0.028901493176817894, + -0.5350267291069031, + 0.21116161346435547, + 0.3787907361984253, + -0.1087554469704628, + 0.22526565194129944, + 0.5065306425094604, + -0.05097439885139465, + -0.20970487594604492, + 1.0602271556854248, + -0.15767021477222443, + 0.2806263864040375, + -0.15042836964130402, + 0.19843806326389313, + -0.07326511293649673, + -0.1375170797109604, + 0.11471432447433472, + 0.35731202363967896, + -0.26258140802383423, + 0.2953881025314331, + -0.04774404689669609, + -0.358589231967926, + 0.09489456564188004, + -0.18334512412548065, + 0.47902998328208923, + 0.3594898283481598, + 0.26052993535995483, + -0.07597152143716812, + -0.4741649031639099, + -0.1843908131122589, + 0.015452748164534569, + -0.435493528842926, + -0.28131332993507385, + -0.3245774209499359, + 0.13966748118400574, + -0.11624328792095184, + -0.33955103158950806, + 0.40277227759361267, + -0.0664106160402298, + -0.1328691989183426, + -0.23422029614448547, + -0.5450707674026489, + 0.1295308768749237, + 0.24664855003356934, + 0.6430838108062744, + 0.2672436237335205, + -0.024748414754867554, + -0.17750433087348938, + 0.2842051386833191, + -0.030547112226486206, + 0.023227548226714134, + 0.009114616550505161, + -0.013943331316113472, + -0.5814539194107056, + 0.04636714234948158, + 0.1672561913728714, + -0.33161461353302, + -0.24174821376800537, + -0.4846605360507965, + 0.26745468378067017, + -0.23636695742607117, + -0.10067620128393173, + 0.279702365398407, + 0.21455411612987518, + -0.14842669665813446, + -0.06560420989990234, + -0.20862743258476257, + 0.5034682154655457, + 0.2268894463777542, + 0.14920401573181152, + 0.11234637349843979, + -0.1524461954832077, + -0.4215036928653717, + -0.2795286774635315, + 0.1484694629907608, + -0.040418364107608795, + -0.156514510512352, + 0.16409710049629211, + 0.19948771595954895, + -0.3850327134132385, + -0.030213987454771996, + -0.4962828755378723, + 0.003129857825115323, + -0.2587776780128479, + 0.04645847529172897, + 0.27845102548599243, + -0.3072490394115448, + -0.032910335808992386, + -0.13369184732437134, + 0.2985060214996338, + 0.18743810057640076, + -0.25318223237991333, + 0.332520067691803, + -0.08831311017274857 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_056.json b/src/benchmark/output/results/results_graph_056.json new file mode 100644 index 0000000..a2956f9 --- /dev/null +++ b/src/benchmark/output/results/results_graph_056.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is an adult with no publicly available demographic information. However, based on the provided data, it can be inferred that the patient has cancer, as mentioned in Step 1.\n\n**Timeline of Diagnoses and Treatments:**\n\nStep 1:\nThe patient's cancer had no driver gene mutations.\n\nStep 2 (First-line Chemotherapy):\nInitiation of first-line chemotherapy with cisplatin, pemetrexed, and pembrolizumab was administered. This treatment was initiated to target the patient's cancer.\n\nStep 3 (Second-line Chemotherapy):\nProgression to second-line chemotherapy with docetaxel and ramucirumab was administered. This treatment was initiated due to the development of resistance or intolerance to the first-line chemotherapy.\n\nStep 4:\nChemotherapy was delayed for approximately one month due to the development of a perianal abscess, which required surgical intervention under local anesthesia. The patient's cancer treatment was interrupted due to an unexpected complication.\n\nStep 5 (Post-Surgical Complication):\nThe patient developed dyspnea the day following surgery. This symptom suggested that the patient may be experiencing respiratory complications related to the surgery.\n\nStep 6:\nAdmission and Vital Sign Abnormalities:\nFour days after symptom onset, the patient was admitted with vital sign abnormalities, including hypotension, hypoxemia, and tachycardia. These findings indicated that the patient's condition had deteriorated significantly.\n\nStep 7 (Lab Abnormalities):\nElevated D-dimer, C-reactive protein, brain natriuretic peptide, and carcinoembryonic antigen levels were detected in the patient's blood. Additionally, abnormal CBC results and arterial blood gas findings were observed. These lab abnormalities suggested that the patient had developed a systemic inflammatory response syndrome (SIRS) or sepsis.\n\n**Outcomes:**\n\nThe patient's condition continued to deteriorate, with ongoing vital sign abnormalities and lab abnormalities. The exact outcome of this case is not provided in the data, but it can be inferred that the patient required further medical intervention to manage their symptoms and stabilize their condition.\n\nIn conclusion, this clinical case report highlights the complexities of cancer treatment and the potential for unexpected complications. The patient's journey from diagnosis to admission and beyond demonstrates the need for close monitoring and prompt intervention in managing cancer-related symptoms and lab abnormalities.", + "bertscore": { + "precision": [ + 0.6407378911972046 + ], + "recall": [ + 0.6139230132102966 + ], + "f1": [ + 0.6270439624786377 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 7, + "edge_count": 6, + "avg_in_degree": 0.8571428571428571, + "density": 0.14285714285714285 + }, + "trajectory_embedding": [ + 0.22469878196716309, + 0.19692015647888184, + 0.00025188070139847696, + 0.173471599817276, + 0.09548087418079376, + 0.17378945648670197, + -0.016956541687250137, + 0.2958507835865021, + 0.6613865494728088, + -0.4530636966228485, + -0.13141368329524994, + -0.04939684644341469, + -0.6155732274055481, + -0.17467454075813293, + -0.18280437588691711, + 0.12072768062353134, + -0.1693776696920395, + 0.36427292227745056, + -0.11844424158334732, + -0.22703833878040314, + -0.22091881930828094, + 0.11670362949371338, + -0.6725220680236816, + 0.10164103657007217, + 0.20791147649288177, + -0.03777886554598808, + 0.3214867115020752, + 0.6401349306106567, + 0.13143087923526764, + 0.2320757806301117, + 0.17600999772548676, + -0.10020772367715836, + 0.13705681264400482, + 0.059911761432886124, + -0.23374390602111816, + 0.25236326456069946, + 0.20346732437610626, + 0.3799627125263214, + -0.22374756634235382, + -0.12771087884902954, + -0.17458724975585938, + 0.1423516422510147, + 0.9342103600502014, + 0.06327115744352341, + 0.34945550560951233, + -0.749184787273407, + -0.08388042449951172, + 0.7538290619850159, + -0.40097424387931824, + -0.327763170003891, + 0.13337692618370056, + 0.771461009979248, + 0.5585850477218628, + -0.3650854229927063, + 0.4895590841770172, + -0.16174796223640442, + -0.20078660547733307, + -0.3044884204864502, + -0.1344498097896576, + 0.06310762465000153, + 0.011655847541987896, + -0.31084534525871277, + 0.5292473435401917, + -0.20876888930797577, + -0.10482144355773926, + -0.07125664502382278, + -0.3000344932079315, + 0.17378416657447815, + -0.05821957811713219, + -0.24617798626422882, + -0.19034655392169952, + -0.1978224664926529, + -0.1294981986284256, + 0.026532581076025963, + 0.049367886036634445, + -0.2103743553161621, + 0.30202120542526245, + -0.1625305414199829, + 0.2595093548297882, + 0.16770608723163605, + -0.011134983971714973, + -0.08638764917850494, + 0.01100680697709322, + 0.3230552077293396, + -0.3027610778808594, + -0.046645548194646835, + -0.1163703054189682, + -0.07102371007204056, + -0.3265528380870819, + 0.09866658598184586, + -0.0014226819621399045, + -0.4219525456428528, + 0.21809256076812744, + -0.35074740648269653, + -0.10733859241008759, + 0.19963793456554413, + 0.696682333946228, + 0.15613733232021332, + 0.7823827862739563, + -0.10320763289928436, + 0.2902891933917999, + -0.04866643622517586, + 0.27103373408317566, + 0.04075722023844719, + 0.3885001540184021, + -0.006918954197317362, + 0.17122578620910645, + -0.4727141559123993, + 0.39181771874427795, + 0.5767492055892944, + 0.07633522897958755, + -0.25837329030036926, + -0.006403965409845114, + -0.23254263401031494, + 0.17066249251365662, + 0.06589744240045547, + -0.02698918804526329, + 0.345904678106308, + 0.23928038775920868, + -0.5169200301170349, + -0.14834341406822205, + -0.2114701271057129, + 0.147049218416214, + 0.26934900879859924, + -0.43777135014533997, + -0.16545696556568146, + -0.2131681591272354, + -0.16323384642601013, + 0.13455404341220856, + 0.01998034492135048, + -0.5584474802017212, + -0.27987655997276306, + -0.11074145883321762, + 0.14436854422092438, + -0.07224613428115845, + 0.32376861572265625, + -0.35424089431762695, + 0.09824318438768387, + -1.1182879209518433, + 0.11961840093135834, + -0.34295710921287537, + -0.06515182554721832, + -0.0642845630645752, + -0.6493039131164551, + -0.18422116339206696, + -0.10730741918087006, + -0.04602300375699997, + 0.1153545156121254, + -0.24960991740226746, + 0.02682415209710598, + 0.042228203266859055, + -0.10121792554855347, + 0.2753884196281433, + 0.5334533452987671, + 0.07838999480009079, + -0.0435774065554142, + 0.04627418518066406, + 0.27988532185554504, + 0.05917259678244591, + -0.05117029696702957, + -0.013790122233331203, + 0.6459563970565796, + 0.028662264347076416, + 0.1737588495016098, + -0.0589175820350647, + -0.7323708534240723, + -0.031106730923056602, + -0.08361741155385971, + 0.016399836167693138, + -0.04907277598977089, + -0.05511435493826866, + 0.11302033811807632, + -0.17577333748340607, + 0.7015606164932251, + 0.08665943145751953, + 0.29554301500320435, + 0.08704205602407455, + 0.02366805449128151, + 0.20670022070407867, + 0.2268480360507965, + 0.18430401384830475, + -0.2915305197238922, + 0.5492498278617859, + 0.23509946465492249, + -0.29434290528297424, + 0.1794404685497284, + 0.28481200337409973, + 0.033230919390916824, + -0.36189746856689453, + -0.02949059009552002, + 0.4296116530895233, + -0.410980761051178, + 0.4986247420310974, + -0.20137465000152588, + 0.03222942352294922, + 0.10513366013765335, + -0.1622185856103897, + -0.004757741931825876, + -0.11050976812839508, + -0.12115741521120071, + 0.2502313554286957, + 0.06535696983337402, + -0.3554372191429138, + 0.0980512946844101, + 0.21861614286899567, + -0.1664574146270752, + 0.17979423701763153, + -0.10072606056928635, + 0.185216024518013, + 0.0775797888636589, + -0.1456650048494339, + 0.2926482856273651, + -0.10801077634096146, + 0.23464109003543854, + 0.0010535882320255041, + -0.46491608023643494, + 0.02120785415172577, + -0.003971497993916273, + -0.11590417474508286, + 0.07090578973293304, + 0.09716969728469849, + -0.11238840967416763, + -0.1383257806301117, + 0.0993557721376419, + -0.5222828388214111, + 0.3271873891353607, + 0.1920936107635498, + 0.2158873975276947, + 0.145614892244339, + 0.02053617127239704, + -0.061245113611221313, + -0.5324280858039856, + 0.384147584438324, + -0.24116051197052002, + -0.04885660856962204, + -0.29416608810424805, + 0.35971543192863464, + -0.06005369871854782, + 0.18086205422878265, + 0.16348035633563995, + 0.11944399029016495, + -0.026796609163284302, + 0.061670687049627304, + -0.29774561524391174, + 0.052647385746240616, + -0.4357898533344269, + -0.04830760508775711, + 0.29982027411460876, + 0.12870745360851288, + 0.2669839560985565, + 0.02877725102007389, + 0.0498492531478405, + 0.23797091841697693, + -0.14100633561611176, + -0.4737057387828827, + -0.28655341267585754, + -0.13253158330917358, + -0.11716262996196747, + -0.6110339164733887, + 0.16249188780784607, + -0.2768310010433197, + 0.029053756967186928, + 0.21750785410404205, + -0.23640979826450348, + -0.15723037719726562, + 0.02150021120905876, + 0.21713249385356903, + 0.19919343292713165, + -0.18014851212501526, + -0.04367617517709732, + -0.204382985830307, + -0.0594809465110302, + -0.19889231026172638, + -0.0350150503218174, + -0.027789784595370293, + 0.07477488368749619, + -0.2786652445793152, + -0.03885364532470703, + 0.025705883279442787, + -0.3375895619392395, + -0.08070240914821625, + 0.1495007425546646, + -0.15083347260951996, + 0.4207339882850647, + -0.021226832643151283, + 0.3251180946826935, + 0.25055885314941406, + 0.1437041014432907, + 0.10422282665967941, + 0.14273498952388763, + 0.44763144850730896, + -0.09087233245372772, + 0.02104048989713192, + -0.1237037181854248, + 0.019756896421313286, + 0.035168033093214035, + -0.2985188961029053, + 0.5834994316101074, + 0.04615021497011185, + -0.07509762793779373, + 0.07852970063686371, + 0.33903929591178894, + 0.07797182351350784, + -0.23805935680866241, + 0.04065174236893654, + 0.47394320368766785, + 0.07331110537052155, + 0.24165818095207214, + 0.12978826463222504, + 0.21933241188526154, + 0.4058678150177002, + -0.09019618481397629, + 0.04683222249150276, + 0.0691743865609169, + -0.11874572187662125, + -0.23624150454998016, + -0.0027644506189972162, + 0.19068321585655212, + 0.4629102647304535, + -0.25012901425361633, + -0.23108817636966705, + -0.007269429508596659, + -0.15290524065494537, + -0.006123108323663473, + -0.3816106617450714, + -0.20164798200130463, + 0.1702619343996048, + -0.10270830243825912, + 0.4750049412250519, + -0.09267127513885498, + -0.13874810934066772, + 0.46263381838798523, + -0.45516735315322876, + -0.1791352480649948, + 0.1638338267803192, + -0.023506266996264458, + -0.528973400592804, + 0.3626210689544678, + -0.2662975788116455, + 0.04107432812452316, + 0.3268541693687439, + -0.4090483486652374, + -0.2010653167963028, + 0.05102803185582161, + 0.42286252975463867, + -0.0458962582051754, + 0.07577352225780487, + 0.06345751881599426, + 0.0733143612742424, + 0.11865455657243729, + 0.3912322521209717, + 0.14511552453041077, + 0.3507525324821472, + 0.5427592992782593, + 0.18271663784980774, + -0.34501442313194275, + 0.12625810503959656, + -0.09739840030670166, + 0.24561183154582977, + -0.10940498858690262, + -0.152739018201828, + -0.15850447118282318, + 0.2041025012731552, + 0.08817499876022339, + -0.32539620995521545, + 0.026872428134083748, + -0.026737408712506294, + 0.07391124218702316, + -0.132284477353096, + 0.3706359267234802, + 0.1050071194767952, + -0.06658230721950531, + 0.3959886133670807, + -0.06984694302082062, + -0.19429056346416473, + 0.2272765189409256, + -0.1324797421693802, + 0.21873705089092255, + 0.06766661256551743, + -0.14322349429130554, + -0.34403327107429504, + 0.19339844584465027, + -0.30182406306266785, + -0.20493678748607635, + 0.06378086656332016, + -0.2496194988489151, + 0.1151234582066536, + -0.2908453643321991, + 0.018007392063736916, + 0.04006078094244003, + 0.14456117153167725, + 0.1918841302394867, + 0.3431141972541809, + 0.12143320590257645, + -0.1605629175901413, + 0.26926901936531067, + -0.14407287538051605, + -0.23863370716571808, + -0.22886350750923157, + -0.006889507174491882, + -0.15153582394123077, + 0.701823353767395, + -0.013171106576919556, + 0.033671777695417404, + -0.0348944291472435, + -0.026487186551094055, + -0.20702211558818817, + -0.33742985129356384, + -0.03633204102516174, + -0.14446072280406952, + 0.09681902080774307, + 0.08271758258342743, + 0.015685120597481728, + -0.228705033659935, + -0.09060531854629517, + -0.05174392834305763, + -0.06770431250333786, + 0.1089167445898056, + 0.0255803894251585, + -0.14151513576507568, + 0.4373488426208496, + 0.14492128789424896, + 0.4571680724620819, + -0.2783263027667999, + 0.20387636125087738, + 0.05216667428612709, + -0.4458121657371521, + 0.10101441293954849, + -0.10418935120105743, + -0.37659725546836853, + -0.10075097531080246, + 0.24888058006763458, + 0.30402541160583496, + -0.11320360749959946, + 0.028017578646540642, + 0.08623961359262466, + 0.05617130920290947, + -0.2875747084617615, + -0.09869205206632614, + 0.3081248104572296, + -0.13928385078907013, + 0.28482747077941895, + 0.15605489909648895, + -0.5872836709022522, + -0.2794762849807739, + 0.0008917301893234253, + -0.4180013835430145, + 0.05338042974472046, + 0.1992405503988266, + -0.11851298063993454, + -0.04241678863763809, + 0.019543204456567764, + -0.03889615088701248, + -0.2334025800228119, + 0.39664894342422485, + -0.15255920588970184, + 0.28551506996154785, + 0.06486667692661285, + -0.19735240936279297, + -0.09945381432771683, + -0.35150429606437683, + -0.42753419280052185, + -0.027418745681643486, + 0.254689484834671, + 0.12796670198440552, + -0.331301212310791, + 0.008003996685147285, + 0.01808343455195427, + 0.01662474311888218, + -0.33985328674316406, + -0.07790560275316238, + -0.35182979702949524, + 0.4031921923160553, + -0.2896983325481415, + -0.1693846434354782, + 0.04780232533812523, + -0.1776127815246582, + -0.08287981897592545, + 0.23879431188106537, + 0.00627507921308279, + 0.2766403257846832, + -0.02040010131895542, + -0.11700429022312164, + 0.42572346329689026, + 0.04141980782151222, + 0.3021600544452667, + 0.16275011003017426, + 0.09805972129106522, + 0.2000085860490799, + -0.2469392716884613, + -0.11666830629110336, + 0.3471514880657196, + -0.365037739276886, + -0.05861234292387962, + 0.13529027998447418, + 0.30311980843544006, + -0.43392831087112427, + -0.31981056928634644, + 0.13031241297721863, + -0.026194196194410324, + -0.07157210260629654, + -0.24315418303012848, + -0.24611081182956696, + -0.03168698772788048, + -0.195882648229599, + -0.033316005021333694, + 0.13665448129177094, + 0.5414629578590393, + 0.12739138305187225, + 0.14976570010185242, + -0.22984226047992706, + -0.31954672932624817, + 0.22291243076324463, + 0.2747359573841095, + 0.08952312916517258, + -0.1782289296388626, + -0.09108305722475052, + 0.29551681876182556, + 0.3838856518268585, + 0.06972069293260574, + -0.0017040371894836426, + -0.08907315880060196, + -0.012755627743899822, + 0.1897895187139511, + 0.051658518612384796, + -0.2027146816253662, + 0.06946615874767303, + -0.3131866157054901, + 0.19437578320503235, + -0.1514696329832077, + -0.0846664160490036, + 0.20609340071678162, + -0.31969091296195984, + -0.45860713720321655, + -0.0044958037324249744, + 0.1867484599351883, + -0.01238296739757061, + -0.1578221172094345, + 0.3046669363975525, + 0.28942832350730896, + 0.0041148173622787, + -0.36526814103126526, + 0.08819875866174698, + -0.5573554039001465, + -0.16263540089130402, + 0.05780705437064171, + -0.10368853807449341, + -0.13635973632335663, + 0.15562404692173004, + 0.6155082583427429, + 0.4216609597206116, + 0.30246514081954956, + -0.13754448294639587, + 0.2843063771724701, + 0.42405152320861816, + 0.19480064511299133, + -0.21151435375213623, + -10.591654777526855, + -0.20434141159057617, + -0.36403688788414, + 0.5892795324325562, + -0.21099291741847992, + 0.12946920096874237, + -0.08354949951171875, + 0.04747855290770531, + 0.08965682238340378, + 0.14987514913082123, + -0.21348007023334503, + -0.11271349340677261, + 0.2959910035133362, + 0.393771231174469, + 0.03945614770054817, + 0.2124864012002945, + -0.21829082071781158, + 0.3833410441875458, + -0.061495859175920486, + 0.24469225108623505, + 0.11049375683069229, + 0.42387133836746216, + -0.2569354772567749, + 0.1718987077474594, + -0.12706705927848816, + -0.38750705122947693, + -0.24735744297504425, + 0.5728124380111694, + 0.3494979739189148, + -0.38358455896377563, + 0.10554575175046921, + 0.06178182363510132, + -0.1177964061498642, + 0.17011305689811707, + -0.15876640379428864, + -0.1893967241048813, + 0.02700314298272133, + 0.08388880640268326, + 0.31694191694259644, + -0.16233648359775543, + 0.04530244320631027, + -0.2762695252895355, + 0.33245593309402466, + 0.009630417451262474, + -0.2033102959394455, + -0.6332572102546692, + -0.03543485328555107, + -1.480163812637329, + 0.329806387424469, + 0.4816587269306183, + 0.42114660143852234, + 0.23393502831459045, + 0.09392577409744263, + 0.37409520149230957, + -0.24870863556861877, + -0.08346735686063766, + -0.34297794103622437, + -0.2099401205778122, + 0.13298171758651733, + 0.10812436044216156, + 0.10378018766641617, + -0.010793630965054035, + 0.4954144358634949, + -0.09385309368371964, + -0.28284987807273865, + 0.04763180390000343, + 0.022549143061041832, + -0.08376394957304001, + -0.38555318117141724, + -0.7452481985092163, + -0.49656781554222107, + 0.013684956356883049, + -0.21524620056152344, + 0.07899868488311768, + 0.22202017903327942, + 0.005056783556938171, + -0.2148675173521042, + 0.1451697200536728, + 0.05980062484741211, + 0.36935144662857056, + 0.3179796040058136, + 0.063559390604496, + 0.14135988056659698, + -0.18995751440525055, + -0.19069449603557587, + -0.25539082288742065, + 0.13059617578983307, + 0.50597083568573, + -0.026443609967827797, + -0.09107254445552826, + 0.0028959426563233137, + 0.34475359320640564, + 0.05627785995602608, + -0.17894062399864197, + -0.5148047804832458, + -0.058175645768642426, + -0.0091350506991148, + 0.21075783669948578, + -0.07000023871660233, + -0.024535659700632095, + -0.34298086166381836, + 0.1603182703256607, + -0.10686243325471878, + -0.517955482006073, + -0.4204992353916168, + 0.3462347984313965, + 0.23554304242134094, + 0.03379710391163826, + 0.024035224691033363, + -0.20123091340065002, + -0.19475634396076202, + 0.02937142364680767, + 0.11771070212125778, + 0.4681134521961212, + 0.21978716552257538, + -0.11360656470060349, + -0.010257278569042683, + -0.32053494453430176, + -0.18390873074531555, + 0.0549912266433239, + 0.31058645248413086, + 0.06608651578426361, + 0.15125994384288788, + 0.5382686853408813, + -0.009786456823348999, + -0.05269967392086983, + 0.8227816820144653, + -0.48103412985801697, + 0.2065214067697525, + 0.010088504292070866, + 0.31602874398231506, + 0.02979358099400997, + -0.37584835290908813, + 0.1191294714808464, + 0.3830339014530182, + -0.25801700353622437, + 0.645388662815094, + 0.22943297028541565, + -0.1792154163122177, + -0.07256896793842316, + -0.232699915766716, + 0.4844439625740051, + 0.22519274055957794, + 0.1476229578256607, + -0.19796110689640045, + -0.3219866156578064, + -0.3986318111419678, + 0.25882309675216675, + -0.2505650818347931, + -0.34616416692733765, + -0.10109169036149979, + 0.059624962508678436, + 0.12354503571987152, + -0.14813004434108734, + 0.3331802189350128, + 0.12046253681182861, + -0.06728184223175049, + -0.3057446777820587, + -0.40206125378608704, + -0.0195672158151865, + -0.0047930097207427025, + 0.8805016279220581, + 0.006117147859185934, + -0.22313667833805084, + 0.007776894606649876, + 0.09404511004686356, + -0.2128940373659134, + 0.19451236724853516, + -0.02685682103037834, + -0.13765671849250793, + -0.4301077425479889, + 0.3178205192089081, + 0.1659836769104004, + -0.3222659230232239, + -0.12026584893465042, + -0.0805409625172615, + -0.04602634906768799, + 0.10385092347860336, + -0.11045651882886887, + 0.23248018324375153, + 0.3587457835674286, + -0.13853533565998077, + 0.034105539321899414, + -0.32961374521255493, + -0.1869012862443924, + 0.19477489590644836, + 0.37288737297058105, + 0.08484739065170288, + -0.33075055480003357, + -0.2734149396419525, + -0.5212315917015076, + 0.2912118434906006, + -0.5846805572509766, + -0.06435152143239975, + 0.12771162390708923, + 0.05220737308263779, + -0.24137623608112335, + 0.257464200258255, + 0.06223537400364876, + -0.04959791898727417, + -0.13453152775764465, + 0.31796786189079285, + 0.5243514776229858, + -0.3719533085823059, + 0.3910529613494873, + -0.19191911816596985, + 0.16935834288597107, + 0.17208360135555267, + -0.36385399103164673, + 0.20567388832569122, + -0.32839956879615784 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_057.json b/src/benchmark/output/results/results_graph_057.json new file mode 100644 index 0000000..e52a320 --- /dev/null +++ b/src/benchmark/output/results/results_graph_057.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 72-year-old woman with a history of small cell lung cancer (SCLC).\n\n**Initial Presentation:**\nThe patient presented with progressive involuntary writhing movements in her hands and lower extremities over the past 3 months. This symptomatology was documented as part of her clinical data, including a history of progressive worsening (P3M) and associated symptoms such as involuntary writhing movements.\n\n**Diagnostic Workup:**\nFollowing the patient's presentation, a comprehensive diagnostic workup was conducted, which included imaging studies (Brain MRI and CT), electroencephalogram (EEG), and laboratory tests. The results of these studies were negative for hemorrhage or lesions on the red nucleus or midbrain, seizure activity, and abnormal electrolyte levels.\n\n**Treatment Initiation:**\nDespite the initial negative diagnostic workup, the patient's symptoms worsened, prompting further evaluation and treatment initiation. A ceruloplasmin test was conducted, which revealed a negative result. Subsequent laboratory tests showed positive anti-Hu antibodies at a titer of 1:960, indicating paraneoplastic syndrome.\n\n**Treatment Regimen:**\nThe patient received a treatment regimen consisting of diazepam, primidone, and pramipexole, with the goal of managing her symptoms. However, despite this treatment, the patient's symptoms continued to worsen, leading to hospitalization.\n\n**Intravenous Immunoglobulin (IVIG) Therapy:**\nAs part of her treatment regimen, the patient received IVIG for 4 days. This therapy was aimed at reducing the severity of her paraneoplastic syndrome.\n\n**New Symptoms and Imaging Findings:**\nFollowing the patient's discharge from the hospital, she presented to the emergency department with nausea and vomiting without new abnormal movements or neurologic symptoms. Repeat imaging studies revealed a 3.3 x 2.3 cm mass in the left cerebellar region, involving the left cerebellar peduncle.\n\n**Treatment of New Symptoms:**\nThe patient underwent further evaluation and treatment for her new symptoms. Laboratory tests showed positive anti-Hu antibodies, indicating continued paraneoplastic syndrome.\n\n**Current Status:**\nAt this time, the patient is currently under observation with ongoing management of her paraneoplastic syndrome. The patient's symptoms have improved since the initiation of IVIG therapy, but she continues to experience discomfort and disrupted sleep due to the frequency of her movements.\n\nIn conclusion, this 72-year-old woman with a history of small cell lung cancer presented with progressive involuntary writhing movements in her hands and lower extremities. Despite an initial negative diagnostic workup, further evaluation and treatment initiation revealed paraneoplastic syndrome, which was managed with IVIG therapy. However, new symptoms and imaging findings have necessitated ongoing management and observation.", + "bertscore": { + "precision": [ + 0.5887521505355835 + ], + "recall": [ + 0.5860556364059448 + ], + "f1": [ + 0.5874007940292358 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 6, + "edge_count": 5, + "avg_in_degree": 0.8333333333333334, + "density": 0.16666666666666666 + }, + "trajectory_embedding": [ + 0.10924185812473297, + 0.10171635448932648, + -0.130819171667099, + 0.11970636993646622, + 0.01621156930923462, + -0.025944743305444717, + 0.059883225709199905, + 0.19405730068683624, + 0.5056430101394653, + -0.3832123875617981, + -0.28973308205604553, + 0.21129187941551208, + -0.575080156326294, + -0.07535974681377411, + -0.27020901441574097, + -0.11037592589855194, + 0.01244857907295227, + 0.24032163619995117, + -0.05925019457936287, + -0.07463321834802628, + -0.3116808831691742, + 0.09356198459863663, + -0.4920731484889984, + -0.0821610540151596, + 0.04886844754219055, + 0.052564311772584915, + 0.3352467715740204, + 0.6847864985466003, + 0.24349327385425568, + 0.18328168988227844, + 0.1138065829873085, + 0.0029223919846117496, + -0.18558859825134277, + -0.10630349069833755, + -0.10665483772754669, + 0.30981841683387756, + 0.30020251870155334, + 0.41428762674331665, + -0.11225412040948868, + -0.0755331888794899, + -0.18469664454460144, + 0.11992812156677246, + 0.7719197869300842, + 0.2542802393436432, + 0.44182854890823364, + -0.6720637679100037, + -0.0040540993213653564, + 0.5885321497917175, + -0.29807180166244507, + -0.13491535186767578, + 0.1668306291103363, + 0.6660178899765015, + 0.498084157705307, + -0.24175158143043518, + 0.36294180154800415, + -0.1543881893157959, + -0.1818050891160965, + -0.16917678713798523, + -0.12515181303024292, + 0.0024065792094916105, + 0.05014798790216446, + -0.13257186114788055, + 0.2776688039302826, + 0.10028089582920074, + -0.03562074154615402, + -0.22122779488563538, + -0.20439191162586212, + -0.01183529756963253, + -0.003177095903083682, + -0.28868287801742554, + -0.24049349129199982, + -0.31077319383621216, + -0.16211707890033722, + 0.03357764333486557, + 0.1027599573135376, + -0.11970771849155426, + 0.35485219955444336, + -0.12445580959320068, + -0.0009727656724862754, + -0.07024397701025009, + 0.12669575214385986, + 0.0821976512670517, + -0.16544020175933838, + 0.23085010051727295, + -0.21088024973869324, + 0.14472916722297668, + -0.07828816771507263, + -0.09991832822561264, + -0.23807764053344727, + 0.35479438304901123, + 0.03755633160471916, + -0.19433608651161194, + 0.03802541643381119, + -0.17530657351016998, + 0.07252204418182373, + 0.017057236284017563, + 0.2504293620586395, + 0.20435366034507751, + 1.0451838970184326, + -0.03581312671303749, + 0.1911657750606537, + 0.1659659892320633, + 0.35480284690856934, + -0.04771328717470169, + 0.5017708539962769, + -0.21934874355793, + 0.13821174204349518, + -0.6209023594856262, + 0.06451758742332458, + 0.2161007672548294, + -0.08655419945716858, + -0.23141026496887207, + 0.16088911890983582, + -0.43194857239723206, + -0.05408357456326485, + 0.081070676445961, + -0.09388317167758942, + -0.008918779902160168, + 0.13580255210399628, + -0.34047308564186096, + -0.03758281469345093, + -0.2535480558872223, + 0.35616686940193176, + 0.03771355748176575, + -0.5673664808273315, + -0.09514494985342026, + -0.09447282552719116, + 0.24392597377300262, + -0.12477197498083115, + 0.3335886299610138, + -0.4272153377532959, + 0.02771768346428871, + -0.15457110106945038, + 0.22193880379199982, + -0.02806141972541809, + 0.23601441085338593, + -0.5588722229003906, + 0.29311853647232056, + -1.1137664318084717, + 0.34766387939453125, + -0.34928980469703674, + -0.06753065437078476, + 0.07564837485551834, + -0.7035880088806152, + -0.17115411162376404, + -0.16743209958076477, + -0.002408078406006098, + 0.006516927387565374, + -0.00483356136828661, + 0.08675999939441681, + -0.21628780663013458, + -0.13183407485485077, + 0.2756427526473999, + 0.26390689611434937, + 0.022414937615394592, + 0.05928945541381836, + 0.09964289516210556, + 0.520445704460144, + 0.18720769882202148, + -0.07169397175312042, + -0.06730888038873672, + 0.32805222272872925, + -0.08635339885950089, + -0.011068016290664673, + 0.015680933371186256, + -0.7204256653785706, + 0.080217145383358, + -0.2689545452594757, + -0.020941833034157753, + 0.11111952364444733, + -0.06658010184764862, + 0.11819498240947723, + -0.18308529257774353, + 0.4973403811454773, + 0.32610753178596497, + 0.5459386706352234, + -0.10167711973190308, + 0.02111263945698738, + 0.3829290270805359, + 0.03673028200864792, + 0.09797900915145874, + -0.23603442311286926, + 0.5699781179428101, + 0.17996710538864136, + -0.22703132033348083, + 0.1916649043560028, + 0.2447470724582672, + -0.07066328823566437, + -0.3557664155960083, + -0.10733211040496826, + 0.4915229380130768, + -0.2789129614830017, + 0.3551129698753357, + -0.17333592474460602, + 0.10135761648416519, + 0.20426654815673828, + -0.2620519995689392, + -0.09011366963386536, + 0.061963796615600586, + -0.1320790946483612, + 0.42120522260665894, + 0.06595773994922638, + -0.20556345582008362, + 0.06127799674868584, + 0.04491905868053436, + -0.04729349911212921, + 0.1130501851439476, + 0.07470438629388809, + 0.024166971445083618, + 0.028589803725481033, + -0.15762746334075928, + 0.2798975110054016, + 0.09849324077367783, + 0.16199560463428497, + 0.11564649641513824, + -0.17860059440135956, + 0.17151932418346405, + -0.11540389060974121, + -0.14117911458015442, + 0.07506893575191498, + -0.1215183362364769, + -0.2226943075656891, + 0.1044890433549881, + -0.06423553824424744, + -0.3824222981929779, + 0.3074544370174408, + 0.26847100257873535, + 0.23667578399181366, + 0.10540620982646942, + 0.06851553916931152, + 0.02549104019999504, + -0.3455931544303894, + 0.3040311634540558, + -0.23826810717582703, + -0.25523293018341064, + -0.37781211733818054, + 0.18964362144470215, + -0.19270072877407074, + 0.03476959466934204, + 0.30701756477355957, + 0.11215607821941376, + -0.16327911615371704, + 0.04833440110087395, + -0.28519898653030396, + -0.012807989493012428, + -0.3638160228729248, + -0.0820334330201149, + 0.41104722023010254, + 0.12516364455223083, + 0.27007919549942017, + 0.04506196081638336, + -0.1453045904636383, + 0.2996339499950409, + -0.19137369096279144, + -0.2901274263858795, + -0.43721804022789, + -0.03322502225637436, + -0.04297659918665886, + -0.4425579905509949, + 0.2408432513475418, + -0.07041382044553757, + -0.18270032107830048, + 0.19883789122104645, + -0.32066163420677185, + -0.23315384984016418, + -0.13152053952217102, + 0.13040705025196075, + 0.08472712337970734, + -0.3067662715911865, + -0.051268987357616425, + -0.29373687505722046, + -0.11089809238910675, + -0.10499675571918488, + -0.06456374377012253, + 0.046978116035461426, + 0.12931755185127258, + -0.23270253837108612, + 0.14660370349884033, + 0.1452331244945526, + -0.3829244077205658, + -0.45727062225341797, + 0.17210106551647186, + -0.30094456672668457, + 0.3951161503791809, + 0.056366223841905594, + 0.31242212653160095, + 0.28175657987594604, + 0.022277379408478737, + 0.009101887233555317, + 0.4218485355377197, + 0.4428749084472656, + -0.03245127946138382, + 0.08035583794116974, + -0.023733804002404213, + 0.06428305804729462, + 0.06078559160232544, + -0.45504647493362427, + 0.3633532226085663, + -0.26096194982528687, + 0.07054846733808517, + 0.1963920146226883, + 0.3282721936702728, + 0.12592904269695282, + -0.47781902551651, + -0.23236434161663055, + 0.3812021315097809, + 0.11216072738170624, + 0.11663460731506348, + 0.0758281797170639, + 0.2232145369052887, + 0.5459354519844055, + -0.11372901499271393, + -0.06148464232683182, + 0.14221373200416565, + -0.16324682533740997, + -0.09225545823574066, + 0.030035067349672318, + 0.13837756216526031, + 0.2911422848701477, + 0.021378466859459877, + -0.33142152428627014, + 0.24871110916137695, + -0.22250576317310333, + -0.1701701283454895, + -0.22141289710998535, + -0.10232319682836533, + 0.12954868376255035, + -0.026307925581932068, + 0.20491039752960205, + -0.1831112653017044, + 0.007430071942508221, + 0.4381527304649353, + -0.16701658070087433, + -0.13099589943885803, + 0.24413220584392548, + 0.08622002601623535, + -0.39607468247413635, + 0.4597998559474945, + -0.14279277622699738, + -0.0346023254096508, + 0.29701265692710876, + -0.17324769496917725, + -0.043102048337459564, + -0.054909657686948776, + 0.22552864253520966, + -0.14389392733573914, + -0.07062119245529175, + -0.05912753939628601, + -0.03551813215017319, + 0.07077666372060776, + 0.5788582563400269, + 0.1928655207157135, + 0.13534362614154816, + 0.4143311381340027, + 0.015823470428586006, + -0.2373960018157959, + 0.017855782061815262, + -0.018001267686486244, + 0.2660100758075714, + -0.487525075674057, + -0.18977627158164978, + -0.2712238132953644, + 0.19840869307518005, + 0.05640114098787308, + -0.1632021814584732, + 0.08239136636257172, + 0.14751631021499634, + -0.04571714252233505, + -0.07106632739305496, + 0.4161146283149719, + 0.1989745795726776, + -0.17261509597301483, + 0.48750025033950806, + 0.07943093776702881, + -0.09917481988668442, + 0.15923389792442322, + -0.013997070491313934, + 0.22025816142559052, + -0.16151364147663116, + -0.3623410761356354, + -0.4084945619106293, + -0.003943534102290869, + -0.1610366404056549, + -0.1940363645553589, + -0.12663009762763977, + -0.15365809202194214, + 0.05830683186650276, + -0.040886037051677704, + 0.21090281009674072, + 0.015886735171079636, + 0.24767859280109406, + 0.03268742188811302, + 0.6291698217391968, + -0.013198191300034523, + -0.2675228714942932, + -0.07097052037715912, + -0.126922607421875, + 0.3221951127052307, + -0.3570408821105957, + 0.04229829087853432, + -0.05516160652041435, + 0.3316287398338318, + -0.11540138721466064, + -0.12417104095220566, + -0.005435542203485966, + 0.028523052111268044, + -0.092466339468956, + -0.5387811064720154, + 0.0020402551162987947, + -0.09519001096487045, + 0.047684360295534134, + 0.006166079547256231, + 0.1952669322490692, + -0.16802415251731873, + -0.19332680106163025, + 0.05349377915263176, + 0.1451374590396881, + 0.038480713963508606, + -0.1586594432592392, + 0.10967016220092773, + 0.16126909852027893, + 0.11323635280132294, + 0.35680216550827026, + -0.20086875557899475, + 0.11082224547863007, + 0.13503527641296387, + -0.3414280116558075, + 0.07849792391061783, + -0.11547739803791046, + -0.25565358996391296, + -0.10601426661014557, + 0.05788467451930046, + 0.20199593901634216, + -0.028099114075303078, + 0.12550656497478485, + -0.06965185701847076, + 0.05969526618719101, + -0.1594017595052719, + -0.04188672453165054, + 0.5845794081687927, + 0.08505809307098389, + 0.2622690200805664, + -0.09211146086454391, + -0.5003320574760437, + -0.2893083393573761, + -0.017624741420149803, + -0.4128602147102356, + -0.03293060511350632, + 0.04344021901488304, + -0.1683373749256134, + -0.06854351609945297, + 0.07929714024066925, + 0.013918918557465076, + 0.16084237396717072, + 0.31532031297683716, + -0.029086386784911156, + -0.026308858767151833, + 0.034654710441827774, + -0.3115904927253723, + 0.039660967886447906, + -0.32543450593948364, + -0.4561700224876404, + -0.2658217251300812, + 0.2564217448234558, + 0.17218925058841705, + -0.1207721084356308, + 0.19912724196910858, + 0.03150946646928787, + -0.1556633859872818, + -0.4796765446662903, + 0.059758562594652176, + -0.12046198546886444, + 0.5264169573783875, + 0.04045654460787773, + -0.07133637368679047, + 0.20169410109519958, + -0.1630585938692093, + 0.03493889048695564, + 0.30844634771347046, + 0.22780899703502655, + 0.20997822284698486, + 0.21702814102172852, + 0.16414983570575714, + 0.5044440031051636, + 0.1691654622554779, + 0.056308262050151825, + 0.2018394023180008, + -0.007832502946257591, + -0.04771144688129425, + -0.19423215091228485, + -0.21489115059375763, + 0.2868252396583557, + -0.25526708364486694, + 0.10494992882013321, + 0.08159781992435455, + 0.24737879633903503, + -0.3952074348926544, + -0.2143787443637848, + -0.16885899007320404, + -0.06467990577220917, + -0.1502266824245453, + -0.23753578960895538, + 0.038168780505657196, + -0.13763763010501862, + -0.22113139927387238, + -0.02623211219906807, + 0.2641030550003052, + 0.2154160737991333, + 0.22561192512512207, + 0.057998210191726685, + -0.2809911370277405, + -0.29116445779800415, + 0.15582136809825897, + 0.4329434037208557, + 0.0008528798935003579, + -0.19649764895439148, + -0.10904517024755478, + 0.10536422580480576, + 0.4596944749355316, + -0.20153728127479553, + -0.19132693111896515, + -0.043119024485349655, + 0.0484551265835762, + -0.07380412518978119, + 0.21267685294151306, + 0.13177742063999176, + 0.06947487592697144, + -0.4011216163635254, + 0.18024425208568573, + -0.06341172754764557, + -0.21628275513648987, + 0.23752084374427795, + -0.34450703859329224, + -0.4729718267917633, + -0.06155691668391228, + 0.30037394165992737, + 0.0017974793445318937, + 0.018184786662459373, + -0.03956688567996025, + 0.3134695589542389, + -0.013118351809680462, + -0.03399385139346123, + 0.1512022465467453, + -0.6668116450309753, + -0.07026197016239166, + 0.11100264638662338, + -0.09794410318136215, + 0.19721199572086334, + -0.04173459857702255, + 0.08590853214263916, + 0.46454310417175293, + 0.051332391798496246, + -0.2951541543006897, + 0.13062778115272522, + 0.3630453944206238, + 0.339113712310791, + -0.4013586938381195, + -10.761629104614258, + 0.10128474235534668, + -0.21862781047821045, + 0.5836707353591919, + -0.054762136191129684, + 0.21005213260650635, + -0.146541029214859, + 0.026764657348394394, + 0.06164403632283211, + 0.13031426072120667, + -0.19539456069469452, + 0.053036607801914215, + 0.4151616096496582, + 0.14065305888652802, + 0.054483991116285324, + 0.12797380983829498, + -0.1742629110813141, + 0.27107375860214233, + 0.050742555409669876, + 0.2400476038455963, + -0.004814263433218002, + 0.32790714502334595, + -0.2093295156955719, + 0.15674369037151337, + 0.07109211385250092, + -0.3802664875984192, + -0.3300723731517792, + 0.39757785201072693, + 0.20597624778747559, + -0.4995551109313965, + 0.22039131820201874, + 0.10235987603664398, + -0.20480772852897644, + -0.11565124988555908, + -0.04234688729047775, + -0.2751874625682831, + -0.19690366089344025, + 0.04203527420759201, + 0.012910130433738232, + -0.1736120879650116, + 0.09358257800340652, + -0.06102636456489563, + 0.1476498544216156, + 0.3511073887348175, + -0.21687066555023193, + -0.38187700510025024, + -0.09858687222003937, + -1.541949987411499, + 0.14928197860717773, + 0.27913179993629456, + 0.5910792946815491, + -0.09530351310968399, + 0.042550165206193924, + 0.31998467445373535, + -0.2935808002948761, + 0.17877762019634247, + -0.42522019147872925, + -0.1002252846956253, + 0.24506831169128418, + -0.012028349563479424, + -0.01161621231585741, + -0.06592228263616562, + 0.3877994418144226, + -0.33846354484558105, + -0.34534090757369995, + 0.2023712396621704, + -0.042639654129743576, + 0.03063664212822914, + -0.29227501153945923, + -0.3968042731285095, + -0.41985684633255005, + -0.13246391713619232, + 0.18694981932640076, + -0.046354345977306366, + 0.5806816220283508, + 0.03690534830093384, + -0.443873792886734, + 0.26182347536087036, + -0.24293017387390137, + 0.5143827199935913, + 0.20112280547618866, + -0.28122812509536743, + 0.14041480422019958, + -0.17839106917381287, + -0.11722562462091446, + -0.1712552309036255, + 0.19616204500198364, + 0.43894657492637634, + -0.13646912574768066, + 0.004487755708396435, + 0.02974642440676689, + 0.05980997160077095, + -0.1670512855052948, + 0.04580686613917351, + -0.420910507440567, + -0.001071929931640625, + 0.11478010565042496, + -0.11331496387720108, + 0.12373204529285431, + 0.09004705399274826, + -0.17702852189540863, + -0.019123854115605354, + -0.1288100928068161, + -0.37169039249420166, + -0.4662720561027527, + 0.37442561984062195, + 0.18873855471611023, + 0.14151960611343384, + 0.23636317253112793, + 0.13905660808086395, + -0.010603433474898338, + 0.17766110599040985, + 0.4484413266181946, + 0.4169641137123108, + 0.11436674743890762, + 0.013595366850495338, + -0.045982446521520615, + -0.17194116115570068, + -0.19342041015625, + 0.20780906081199646, + 0.40196728706359863, + -0.25039905309677124, + 0.04570662975311279, + 0.5544910430908203, + 0.07123783230781555, + -0.11022879928350449, + 1.089414358139038, + -0.29390278458595276, + 0.22609181702136993, + -0.12128780037164688, + 0.2755132019519806, + 0.013648644089698792, + -0.32570546865463257, + 0.07642745971679688, + 0.2736797332763672, + -0.4553698003292084, + 0.6472108364105225, + 0.3447061777114868, + -0.33788084983825684, + 0.08976311981678009, + -0.36027565598487854, + 0.37658625841140747, + 0.231145977973938, + 0.18201665580272675, + -0.148493230342865, + -0.3001708984375, + -0.34605124592781067, + 0.23437118530273438, + -0.34665608406066895, + -0.1837950497865677, + -0.22869136929512024, + 0.0028280257247388363, + -0.058978475630283356, + -0.05847141891717911, + 0.3172945976257324, + 0.05248671770095825, + -0.09966695308685303, + -0.1571982353925705, + -0.4286063313484192, + -0.19316384196281433, + -0.18204014003276825, + 0.7265452146530151, + 0.16682782769203186, + -0.14364638924598694, + -0.04676531255245209, + 0.413640558719635, + -0.08753673732280731, + 0.14306727051734924, + 0.11643042415380478, + 0.06543125957250595, + -0.25645750761032104, + 0.13066579401493073, + 0.14353647828102112, + -0.27806705236434937, + -0.1847536563873291, + -0.34352177381515503, + -0.0021650255657732487, + -0.03112264908850193, + -0.05791633576154709, + 0.4012259542942047, + 0.21817323565483093, + 0.08860315382480621, + 0.122983418405056, + -0.14338712394237518, + 0.12788084149360657, + 0.10928910970687866, + 0.2956147789955139, + 0.1792273223400116, + -0.4059372842311859, + -0.23331065475940704, + -0.37941601872444153, + 0.11205389350652695, + -0.4454869329929352, + 0.0583542101085186, + 0.03873931244015694, + 0.21176092326641083, + -0.30576521158218384, + 0.26758909225463867, + -0.1262715756893158, + -0.08964912593364716, + -0.17794224619865417, + 0.21173910796642303, + 0.3451806902885437, + -0.28578510880470276, + 0.0015843205619603395, + -0.13235023617744446, + 0.23455262184143066, + 0.15019331872463226, + -0.2953014373779297, + 0.20367667078971863, + -0.06641408056020737 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_058.json b/src/benchmark/output/results/results_graph_058.json new file mode 100644 index 0000000..e14858d --- /dev/null +++ b/src/benchmark/output/results/results_graph_058.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 65-year-old man who presented to the hospital with suspected uveitis of the right eye. He experienced right ocular pain and blurred vision for approximately 1 month prior to presentation.\n\n**Timeline of Diagnoses:**\n\n* **Suspected Uveitis:** The patient was referred to the hospital with suspected uveitis of the right eye, which was diagnosed as a suspected case of uveitis (code C0042095).\n* **Small Cell Lung Cancer (SCLC):** Four months prior to presentation, the patient was diagnosed with SCLC (code C0007106) and had developed right cerebellar metastasis and invasion.\n* **Metastasis:** The patient also had a diagnosis of metastasis (code C0242393), which was active at the time of presentation.\n\n**Timeline of Treatments:**\n\n* **Topical Medications:** Following SCLC diagnosis, the patient started therapy with topical 0.005% latanoprost, 1.0% brinzolamide, and 0.5% timolol maleate.\n* **Oral Acetazolamide:** The patient also took oral acetazolamide at a dose of 500 mg/day.\n* **Intravenous Mannitol:** Due to high IOP and pronounced nausea, the patient required intravenous administration of 200 mL of 20% hypertonic mannitol every 2-3 days for five administrations.\n\n**Timeline of Outcomes:**\n\n* **Iris Metastasis:** Anterior chamber fluid cytology revealed iris metastasis from SCLC, consistent with bronchoalveolar lavage cytology results.\n* **Neovascular Glaucoma:** The patient developed neovascular glaucoma (code C0271198), which was treated with a single intravitreal injection of 2 mg (0.05 mL of 40 mg/mL) aflibercept OD.\n* **Resolution of Symptoms:** Five days post-aflibercept injection, the patient's iris tumor size and iris neovascularization decreased, IOP measured at 18 mm Hg, and symptoms such as ocular pain and nausea were relieved.\n\n**Conclusion:**\nThe patient was diagnosed with suspected uveitis and SCLC, which led to the development of right cerebellar metastasis and invasion. Following diagnosis, the patient received topical medications and oral acetazolamide, as well as intravenous mannitol due to high IOP and nausea. The patient also developed iris metastasis from SCLC, which was treated with an intravitreal injection of aflibercept. Ultimately, the patient's symptoms resolved following treatment, and their IOP returned to normal.", + "bertscore": { + "precision": [ + 0.5613889694213867 + ], + "recall": [ + 0.7224175930023193 + ], + "f1": [ + 0.631804347038269 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 7, + "edge_count": 6, + "avg_in_degree": 0.8571428571428571, + "density": 0.14285714285714285 + }, + "trajectory_embedding": [ + 0.10041718930006027, + 0.16403163969516754, + -0.2795267105102539, + 0.20759916305541992, + 0.1098250150680542, + 0.12031718343496323, + 0.02523813582956791, + 0.28508585691452026, + 0.4031936228275299, + -0.14178399741649628, + -0.1515788584947586, + 0.027539696544408798, + -0.39865249395370483, + -0.16108302772045135, + -0.1848643273115158, + 0.29761239886283875, + -0.348704069852829, + 0.19526958465576172, + -0.07590274512767792, + -0.18397021293640137, + -0.1955096572637558, + 0.10713893175125122, + -0.5743194222450256, + 0.00762562220916152, + 0.07806367427110672, + 0.02329537272453308, + 0.4958905577659607, + 0.8108068108558655, + 0.13331110775470734, + 0.3856915831565857, + 0.10080420225858688, + -0.09534323215484619, + 0.1747761070728302, + 0.1420178860425949, + -0.3017433285713196, + 0.1649470031261444, + 0.1394738256931305, + 0.22270822525024414, + -0.08839493989944458, + 0.0466955304145813, + -0.18056416511535645, + 0.039326999336481094, + 0.9210913777351379, + 0.380204439163208, + 0.4561716914176941, + -0.8226035237312317, + -0.14125052094459534, + 0.7079371213912964, + -0.36442047357559204, + -0.34494560956954956, + 0.2782876193523407, + 0.7064962387084961, + 0.6023497581481934, + -0.5169581770896912, + 0.27580752968788147, + -0.20440661907196045, + -0.1758495420217514, + -0.4039357602596283, + -0.21733525395393372, + 0.11375804990530014, + 0.048031169921159744, + -0.15035252273082733, + 0.5047577619552612, + -0.3279033303260803, + -0.0837758257985115, + -0.20585878193378448, + -0.29636767506599426, + 0.0630626529455185, + 0.10342448204755783, + -0.16298635303974152, + -0.18039628863334656, + -0.4393019378185272, + -0.039508156478405, + -0.022983746603131294, + 0.07178163528442383, + -0.032513707876205444, + 0.45633506774902344, + -0.1324375569820404, + 0.24564631283283234, + 0.15320630371570587, + -0.1691569834947586, + -0.14381353557109833, + -0.2672562897205353, + 0.33864641189575195, + -0.21684782207012177, + -0.04640193656086922, + -0.15535108745098114, + -0.16606655716896057, + -0.3843379318714142, + 0.25596901774406433, + 0.10141774266958237, + -0.5092669725418091, + 0.1174798384308815, + -0.23468850553035736, + -0.08472394943237305, + 0.13617955148220062, + 0.38971585035324097, + 0.073185496032238, + 1.0961822271347046, + 0.006318185944110155, + 0.08026591688394547, + -0.10738039761781693, + 0.1991339772939682, + -0.08866874128580093, + 0.32724955677986145, + -0.05121637135744095, + 0.29665762186050415, + -0.6044756174087524, + 0.3382262587547302, + 0.4875820279121399, + 0.019187500700354576, + -0.2636858820915222, + 0.004726205486804247, + -0.4449402987957001, + 0.22213730216026306, + 0.10275395959615707, + 0.2415297031402588, + 0.22994555532932281, + 0.19549433887004852, + -0.22323870658874512, + -0.2822403609752655, + -0.09365540742874146, + 0.2984512746334076, + 0.13506314158439636, + -0.5046548247337341, + -0.02684345841407776, + -0.011541790328919888, + -0.05225741118192673, + 0.028683850541710854, + 0.07437215745449066, + -0.600497305393219, + -0.31889280676841736, + -0.09339629858732224, + -0.06603451073169708, + -0.09583941847085953, + 0.28762468695640564, + -0.27787861227989197, + 0.04449940845370293, + -0.9695418477058411, + 0.46700772643089294, + -0.4160101115703583, + -0.23633554577827454, + 0.05892905220389366, + -0.5885133147239685, + -0.2476823627948761, + 0.02767055295407772, + -0.26925036311149597, + 0.2188478261232376, + -0.1678793579339981, + -0.09294655174016953, + -0.1801975518465042, + -0.20275795459747314, + 0.31416985392570496, + 0.5441374182701111, + 0.08812812715768814, + -0.01153175812214613, + 0.07337536662817001, + 0.4216914176940918, + 0.11574424803256989, + -0.005643226206302643, + 0.005734612699598074, + 0.474221795797348, + 0.09835516661405563, + 0.1073085218667984, + -0.2133936583995819, + -0.46663352847099304, + -0.058094970881938934, + -0.2534818947315216, + 0.016529904678463936, + 0.15584397315979004, + -0.161490336060524, + 0.09208517521619797, + -0.47234630584716797, + 0.6378527283668518, + -0.015818390995264053, + 0.41032347083091736, + 0.12255750596523285, + 0.22990475594997406, + 0.2200852334499359, + 0.11963337659835815, + 0.11585784703493118, + -0.31792518496513367, + 0.5930489301681519, + 0.3332863748073578, + -0.2891683578491211, + 0.32059064507484436, + 0.28325918316841125, + -0.014230446889996529, + -0.2977527976036072, + 0.26158007979393005, + 0.5521560311317444, + -0.3529055416584015, + 0.652664065361023, + -0.1373528391122818, + -0.1728714555501938, + 0.04082566499710083, + -0.15764185786247253, + -0.15343567728996277, + -0.2646167278289795, + 0.09915491193532944, + 0.2570823132991791, + 0.1207243800163269, + -0.49108362197875977, + -0.00643101567402482, + 0.20962728559970856, + -0.18279743194580078, + 0.011648275889456272, + -0.03136153891682625, + -0.04385334625840187, + 0.12048060446977615, + -0.1709427535533905, + 0.21749188005924225, + -0.09882985800504684, + 0.3577049672603607, + -0.1837451159954071, + -0.2879418730735779, + 0.2881632149219513, + 0.08363316208124161, + -0.17137077450752258, + 0.26506057381629944, + 0.029290663078427315, + -0.36454805731773376, + -0.12866325676441193, + 0.15853480994701385, + -0.4535687565803528, + 0.2786649763584137, + 0.12622858583927155, + 0.44672510027885437, + 0.029467377811670303, + 0.12455600500106812, + -0.1133221909403801, + -0.4155275225639343, + 0.12809564173221588, + -0.25739291310310364, + -0.07217598706483841, + -0.27480801939964294, + 0.3002417981624603, + 0.03192080929875374, + 0.24665726721286774, + 0.2297316938638687, + 0.08520597964525223, + -0.19582438468933105, + 0.1384952962398529, + -0.4201824367046356, + -0.1205417662858963, + -0.3906688988208771, + -0.017530908808112144, + 0.41854026913642883, + 0.10915219783782959, + 0.252002090215683, + 0.0836314707994461, + -0.2809872031211853, + 0.0017748773097991943, + 0.03664844483137131, + -0.5397785902023315, + -0.49708253145217896, + -0.08055763691663742, + 0.07724291831254959, + -0.7061089277267456, + 0.3303668200969696, + 0.014823630452156067, + -0.0594077967107296, + 0.0644952803850174, + -0.30018875002861023, + -0.2310188114643097, + 0.09281862527132034, + 0.12350153177976608, + 0.024037566035985947, + -0.40277978777885437, + -0.0954475998878479, + -0.22221671044826508, + -0.07398925721645355, + -0.23883147537708282, + -0.09598464518785477, + -0.08223473280668259, + -0.07746248692274094, + -0.46295422315597534, + 0.09221555292606354, + 0.1759498119354248, + -0.49284741282463074, + -0.024186333641409874, + 0.20977185666561127, + -0.18195722997188568, + 0.24573591351509094, + 0.027450472116470337, + 0.3664107620716095, + 0.20598594844341278, + 0.011668480932712555, + 0.12794210016727448, + 0.6198838353157043, + 0.4467492997646332, + -0.1977706104516983, + 0.10685566812753677, + 0.03377616032958031, + -0.12240961939096451, + -0.056370168924331665, + -0.44993844628334045, + 0.44212961196899414, + -0.057738158851861954, + 0.22612033784389496, + 0.13757000863552094, + 0.13319425284862518, + 0.06207533925771713, + -0.22648075222969055, + 0.0888129323720932, + 0.41969555616378784, + -0.054957617074251175, + 0.25432226061820984, + 0.18717195093631744, + 0.28349289298057556, + 0.26631268858909607, + -0.08723854273557663, + 0.06313345581293106, + 0.07292996346950531, + -0.06033144146203995, + -0.08807481825351715, + -0.15816712379455566, + 0.34383082389831543, + 0.35739484429359436, + -0.22502963244915009, + -0.38183164596557617, + -0.02932651899755001, + -0.1200883537530899, + -0.11626052111387253, + -0.4932703673839569, + -0.3131512701511383, + 0.031234068796038628, + -0.032915148884058, + 0.2359011024236679, + 0.06965795159339905, + 0.12502223253250122, + 0.20343017578125, + -0.3544941842556, + -0.0006578112370334566, + 0.12905487418174744, + -0.06337586045265198, + -0.3025466799736023, + 0.6170421838760376, + -0.23069091141223907, + 0.17346599698066711, + 0.31216856837272644, + -0.4809999167919159, + -0.004114418290555477, + 0.1488792449235916, + 0.2956516146659851, + -0.1504010111093521, + 0.13538554310798645, + -0.03822466358542442, + 0.08713611215353012, + -0.22196988761425018, + 0.43739309906959534, + 0.15887358784675598, + 0.20813827216625214, + 0.6209712028503418, + 0.22635720670223236, + -0.45009705424308777, + 0.08219941705465317, + -0.21065066754817963, + 0.29089826345443726, + -0.183850958943367, + -0.13900092244148254, + 0.028947381302714348, + 0.2071864902973175, + 0.05713606998324394, + -0.23042525351047516, + 0.19195768237113953, + 0.1781945675611496, + 0.17089605331420898, + -0.0964665412902832, + 0.45976585149765015, + 0.07470469921827316, + -0.1567397266626358, + 0.4935135841369629, + -0.1300264447927475, + -0.2707837224006653, + 0.2981880009174347, + -0.190780907869339, + 0.12305842339992523, + -0.0402815155684948, + -0.11382778733968735, + -0.27641811966896057, + 0.018526004627346992, + -0.05870174989104271, + -0.11839889734983444, + -0.025937693193554878, + -0.23458120226860046, + 0.21909745037555695, + -0.13899435102939606, + 0.23618271946907043, + -0.06603067368268967, + 0.19974969327449799, + 0.07700403034687042, + 0.31901755928993225, + -0.12268050760030746, + -0.23568452894687653, + -0.10156311839818954, + 0.026971271261572838, + -0.12070135027170181, + -0.4358535706996918, + 0.07480071485042572, + 0.023448223248124123, + 0.5045492053031921, + -0.012661376036703587, + 0.07035442441701889, + 0.22327475249767303, + 0.09235532581806183, + 0.02730543352663517, + -0.5230974555015564, + 0.007723282556980848, + 0.0411105714738369, + 0.209525465965271, + 0.013834276236593723, + 0.02702438458800316, + -0.38615337014198303, + -0.23450268805027008, + -0.023800691589713097, + -0.12751401960849762, + 0.015096604824066162, + -0.11797446012496948, + -0.30267247557640076, + 0.3926370441913605, + 0.4907875657081604, + 0.47941917181015015, + -0.38207104802131653, + 0.32497796416282654, + 0.017633095383644104, + -0.27593132853507996, + -0.07738243043422699, + -0.12500427663326263, + -0.47137734293937683, + -0.08334764093160629, + 0.26694732904434204, + 0.34297674894332886, + -0.02544955350458622, + -0.15372708439826965, + 0.06564154475927353, + -0.05159115791320801, + -0.21892593801021576, + -0.07687093317508698, + 0.42052561044692993, + 0.305806428194046, + 0.12244294583797455, + 0.054697029292583466, + -0.66656094789505, + -0.5231123566627502, + -0.21303100883960724, + -0.3570212721824646, + -0.047308970242738724, + 0.17589758336544037, + 0.09871701896190643, + -0.1677543818950653, + 0.014241858385503292, + -0.057800475507974625, + -0.07792984694242477, + 0.15997658669948578, + -0.11668568849563599, + 0.1364569365978241, + 0.14003828167915344, + -0.35516777634620667, + 0.004816029686480761, + -0.17901955544948578, + -0.3729376196861267, + -0.24852094054222107, + 0.019686492159962654, + 0.22973741590976715, + -0.25645262002944946, + -0.050704143941402435, + 0.17498578131198883, + -0.07733910530805588, + -0.1157073974609375, + -0.006170225795358419, + -0.2686651349067688, + 0.2657169699668884, + -0.02755497395992279, + 0.0026688033249229193, + 0.08871249109506607, + -0.12708884477615356, + -0.09305834770202637, + 0.02858908660709858, + 0.11492156982421875, + 0.4335777759552002, + 0.22233478724956512, + 0.09606070816516876, + 0.628285825252533, + -0.00989628303796053, + 0.037419553846120834, + 0.3874848186969757, + -0.031134530901908875, + -0.03362620994448662, + -0.4043872058391571, + -0.13321109116077423, + 0.06271658092737198, + -0.5610679984092712, + -0.2521840035915375, + 0.24107013642787933, + 0.25532981753349304, + -0.39696183800697327, + -0.482626736164093, + -0.06920278072357178, + 0.16279837489128113, + -0.21867868304252625, + -0.09064681828022003, + -0.019119279459118843, + -0.30069079995155334, + -0.37123823165893555, + -0.0014421002706512809, + 0.17836792767047882, + 0.3759138584136963, + 0.2757260799407959, + 0.17132163047790527, + -0.3433229625225067, + -0.24997194111347198, + 0.1832418441772461, + 0.32347890734672546, + 0.13070085644721985, + -0.043225497007369995, + -0.008223836310207844, + 0.15412108600139618, + 0.1260257512331009, + -0.05618427321314812, + -0.09029193967580795, + 0.010234138928353786, + 0.10688466578722, + 0.263703852891922, + 0.10123255103826523, + -0.027598079293966293, + 0.21482370793819427, + -0.4252282679080963, + 0.1372317522764206, + -0.1032986119389534, + -0.02943190559744835, + 0.2652200758457184, + -0.21811029314994812, + -0.6660507917404175, + -0.07716627418994904, + 0.25762999057769775, + -0.0887565016746521, + -0.25831279158592224, + 0.005112537182867527, + 0.3262178301811218, + -0.08803188055753708, + -0.14818570017814636, + -0.05959288403391838, + -0.5844441056251526, + -0.23379959166049957, + 0.1150628998875618, + -0.09193355590105057, + -0.2545396387577057, + 0.0032503593247383833, + 0.4723699390888214, + 0.5558490753173828, + 0.12659133970737457, + -0.0324685201048851, + 0.2723774015903473, + 0.4639137387275696, + 0.15715958178043365, + -0.41566944122314453, + -10.644660949707031, + -0.04599574953317642, + -0.46536940336227417, + 0.4767208993434906, + -0.1508106291294098, + 0.10612978041172028, + -0.17334119975566864, + 0.15423369407653809, + 0.1521361619234085, + 0.11525695025920868, + -0.05711393430829048, + -0.19742313027381897, + 0.44899699091911316, + 0.25928008556365967, + 0.1872165948152542, + 0.11855956166982651, + -0.29581326246261597, + 0.23597176373004913, + 0.24299927055835724, + 0.1197739690542221, + 0.2828510105609894, + 0.4070078432559967, + -0.2599063515663147, + 0.0003257649368606508, + -0.08927349001169205, + -0.3044043183326721, + -0.15762130916118622, + 0.6840715408325195, + 0.42402681708335876, + -0.30725622177124023, + -0.016202952712774277, + -0.08197290450334549, + -0.19935300946235657, + 0.29807421565055847, + -0.2754516303539276, + -0.12647520005702972, + -0.01349520031362772, + 0.44971445202827454, + 0.2516697347164154, + -0.2670213580131531, + 0.04679897427558899, + 0.10771608352661133, + 0.3937901556491852, + -0.024761242792010307, + -0.06425591558218002, + -0.5644456744194031, + -0.03474839776754379, + -1.5868219137191772, + 0.06359662860631943, + 0.35858410596847534, + 0.26808327436447144, + 0.13491086661815643, + 0.14424268901348114, + 0.33256885409355164, + -0.3431401252746582, + 0.07156246155500412, + -0.40173229575157166, + -0.11011780053377151, + 0.25587064027786255, + 0.2502792477607727, + -0.1445828676223755, + -0.1258247047662735, + 0.870843231678009, + 0.11872349679470062, + -0.4261038899421692, + 0.20092728734016418, + 0.04641024023294449, + -0.21494145691394806, + -0.4077056348323822, + -0.8497666120529175, + -0.5675711035728455, + -0.21539020538330078, + -0.16943106055259705, + -0.0538436584174633, + 0.22634756565093994, + 0.016039861366152763, + -0.08935464173555374, + 0.33645573258399963, + -0.15450774133205414, + 0.2500685155391693, + 0.337556928396225, + -0.23790578544139862, + 0.22384729981422424, + -0.2001974880695343, + -0.14057216048240662, + -0.04974738880991936, + 0.27764591574668884, + 0.4104287028312683, + 0.07933108508586884, + -0.04021089896559715, + 0.06024518236517906, + 0.36865201592445374, + 0.02312830463051796, + -0.07954209297895432, + -0.326101690530777, + -0.23009265959262848, + -0.07886116951704025, + -0.038400452584028244, + -0.0770130380988121, + 0.014276815578341484, + -0.18870556354522705, + 0.19454653561115265, + 0.04629876837134361, + -0.3219069838523865, + -0.7883215546607971, + 0.368009090423584, + 0.22121450304985046, + 0.17012536525726318, + 0.09880270063877106, + -0.24345663189888, + -0.09150123596191406, + 0.12991054356098175, + 0.354809045791626, + 0.37348055839538574, + 0.22603295743465424, + -0.0593147873878479, + -0.03411107510328293, + -0.2639525532722473, + -0.07682289928197861, + -0.03669959306716919, + 0.5184228420257568, + -0.12020094692707062, + 0.10377638787031174, + 0.6753701567649841, + 0.02318601869046688, + 0.025752868503332138, + 0.8616753220558167, + -0.29157528281211853, + 0.2159208208322525, + 0.07087916880846024, + 0.07478644698858261, + -0.16236983239650726, + -0.45543211698532104, + 0.29560616612434387, + 0.4486173093318939, + -0.502527117729187, + 0.6408544182777405, + 0.4320511817932129, + -0.35508808493614197, + -0.08008872717618942, + -0.39318323135375977, + 0.3356773257255554, + 0.21981756389141083, + 0.1836652010679245, + -0.0480940155684948, + -0.203811377286911, + -0.3586428463459015, + -0.016758834943175316, + -0.23378369212150574, + -0.3532119393348694, + -0.20010623335838318, + 0.07577543705701828, + 0.24250154197216034, + 0.012310410849750042, + 0.23225699365139008, + 0.25747427344322205, + 0.0837361067533493, + -0.4620650112628937, + -0.1670389473438263, + -0.12135634571313858, + 0.020845815539360046, + 0.7568926811218262, + 0.009003372862935066, + -0.050994813442230225, + 0.055693041533231735, + 0.11255991458892822, + -0.157039612531662, + 0.24380910396575928, + 0.10165450721979141, + -0.05614985153079033, + -0.262979656457901, + 0.21788235008716583, + 0.10048622637987137, + -0.21479080617427826, + -0.009746639057993889, + 0.014993974007666111, + 0.002477705478668213, + 0.29585355520248413, + -0.20001018047332764, + 0.013258202001452446, + 0.3338783085346222, + -0.05860629305243492, + 0.01137791108340025, + -0.14215227961540222, + -0.016694771125912666, + 0.20936046540737152, + 0.44907936453819275, + -0.05439732223749161, + -0.29521647095680237, + -0.11369256675243378, + -0.7047519683837891, + 0.20202748477458954, + -0.41014936566352844, + 0.04539225623011589, + 0.26661771535873413, + 0.15643148124217987, + -0.13941065967082977, + 0.12629172205924988, + 0.22594773769378662, + -0.01957302913069725, + -0.13286712765693665, + 0.28059548139572144, + 0.44471898674964905, + -0.3310451805591583, + 0.4087703227996826, + -0.12750519812107086, + 0.2447206676006317, + 0.12802754342556, + -0.3163151443004608, + -0.021892959251999855, + -0.2720976769924164 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_059.json b/src/benchmark/output/results/results_graph_059.json new file mode 100644 index 0000000..0e7beba --- /dev/null +++ b/src/benchmark/output/results/results_graph_059.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 67-year-old man born in the United States. He has a significant occupational asbestos exposure history while working for a shipbuilding company. The patient denies any history of cigarette smoking or exposure to organic dusts, pet birds, or exotic pets.\n\n**Initial Presentation (Step 1):**\nIn June 2024, the patient presented to the Emergency Department with concerns of weight loss and abdominal distention over the past 4 weeks. He denied any alterations in bowel habits, melena, hematochezia, abdominal pain, nausea, vomiting, dysphagia, or odynophagia.\n\n**Physical Examination and Laboratory Findings (Step 2):**\nAfter initial presentation, the patient underwent multiple abdominal paracenteses, which revealed hazy yellow ascitic fluid with nucleated cells. The cell count was 589 cells/\u03bcL, with lymphocytes 87% and erythrocytes 1461 cells/\u03bcL.\n\n**Imaging Studies (Step 3):**\nA CT scan performed during this time showed massive ascites and a lung nodule.\n\n**Abdominal Paracentesis and Ascitic Fluid Analysis (Steps 4-5):**\nThe patient underwent multiple abdominal paracenteses, which revealed exudative process in the ascitic fluid. The first abdominal paracentesis results showed lactate dehydrogenase 763 IU/L, total protein 4.0 g/dL, albumin 1.7 g/dL, and serum albumin-ascites gradient (SAAG) 0.4 g/dL.\n\n**Repeat Ascitic Fluid Analysis and Abdominal Ultrasonography (Step 6):**\nA repeat ascitic fluid analysis revealed no growth on AFB smear, culture, or fungal culture. An abdominal ultrasonography performed during this time showed normal portal vein size and Doppler indices, with the spleen not enlarged.\n\n**Serum FibroTest-ActiTest (Step 7):**\nThe patient underwent a Serum FibroTest-ActiTest, which suggested no hepatic fibrosis (F0).\n\n**Diagnosis:**\nBased on the results of the various diagnostic tests and imaging studies, the patient was diagnosed with cirrhosis due to chronic liver disease.\n\n**Treatment:**\nNo specific treatment is mentioned in the provided data. However, it can be inferred that the patient may require ongoing management of his ascites and potential complications related to cirrhosis.\n\n**Outcome:**\nThe patient's condition appears to be stable at this point, with no further information provided on any changes or developments since the last update.", + "bertscore": { + "precision": [ + 0.5451638698577881 + ], + "recall": [ + 0.6678067445755005 + ], + "f1": [ + 0.6002851128578186 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 8, + "edge_count": 7, + "avg_in_degree": 0.875, + "density": 0.125 + }, + "trajectory_embedding": [ + 0.3212769627571106, + 0.027124296873807907, + 0.007639573886990547, + 0.1450214982032776, + 0.04273857921361923, + -0.0566130205988884, + 0.15015661716461182, + 0.13063287734985352, + 0.360310435295105, + -0.2895905375480652, + -0.29207170009613037, + 0.0069152191281318665, + -0.5160095691680908, + 0.030897781252861023, + -0.4960392117500305, + 0.0959697812795639, + 0.19705793261528015, + 0.3254237174987793, + 0.07715645432472229, + -0.21043089032173157, + -0.463147908449173, + 0.1879664957523346, + -0.37844499945640564, + -0.12864604592323303, + 0.1851418912410736, + -0.03530677780508995, + 0.34146028757095337, + 0.5455081462860107, + 0.17384392023086548, + 0.17564281821250916, + 0.2514132857322693, + 0.15975980460643768, + 0.036245182156562805, + 0.14230892062187195, + -0.09213109314441681, + 0.29905956983566284, + 0.2861369252204895, + 0.25377601385116577, + -0.16749906539916992, + 0.25536131858825684, + -0.13993358612060547, + 0.00023137591779232025, + 0.8482945561408997, + 0.2792898416519165, + 0.4952598512172699, + -0.5131751894950867, + -0.04887772351503372, + 0.5369172692298889, + -0.5956619381904602, + -0.14719735085964203, + 0.10004576295614243, + 0.8377113938331604, + 0.4221964180469513, + -0.1498866230249405, + 0.3760993182659149, + 0.020198799669742584, + -0.24073506891727448, + -0.32281923294067383, + -0.3462153673171997, + 0.19768309593200684, + 0.010837219655513763, + -0.06512635946273804, + -0.09095405042171478, + -0.025230765342712402, + -0.2317681759595871, + -0.06113087013363838, + -0.12202930450439453, + -0.04193533957004547, + -0.06680387258529663, + -0.3318430781364441, + -0.275201678276062, + -0.15793970227241516, + -0.4154232144355774, + 0.047505490481853485, + 0.1517646461725235, + -0.25239837169647217, + 0.290303498506546, + -0.07159022986888885, + 0.06352033466100693, + 0.02245129644870758, + 0.038698140531778336, + 0.0609905906021595, + 0.2149471938610077, + 0.23555351793766022, + -0.4736027419567108, + 0.14000040292739868, + -0.07614503055810928, + 0.009592264890670776, + -0.2430189698934555, + 0.26903069019317627, + 0.35744327306747437, + -0.15594348311424255, + 0.09219282865524292, + -0.15058182179927826, + 0.058577582240104675, + -0.01003439724445343, + 0.09935586899518967, + 0.36904746294021606, + 0.8996005654335022, + 0.20306850969791412, + 0.15551058948040009, + 0.3015850782394409, + 0.3447939455509186, + -0.0427740179002285, + 0.5099870562553406, + -0.035501062870025635, + 0.16166184842586517, + -0.2816431522369385, + 0.05502912029623985, + 0.04181544855237007, + -0.1521131843328476, + -0.2861865162849426, + -0.12743669748306274, + -0.1058553010225296, + -0.0919744223356247, + -0.0004819463938474655, + -0.19011670351028442, + 0.11407125741243362, + 0.13274447619915009, + -0.337208092212677, + 0.20529358088970184, + -0.24752359092235565, + 0.36482328176498413, + 0.35213541984558105, + -0.28965550661087036, + 0.12707994878292084, + -0.10999983549118042, + 0.06338398158550262, + 0.09819918870925903, + 0.2249649465084076, + -0.6117876768112183, + -0.1353360116481781, + 0.12326651811599731, + 0.32901835441589355, + -0.18812713027000427, + 0.0034405263140797615, + -0.49328508973121643, + 0.01833994686603546, + -1.1489897966384888, + 0.1336502879858017, + -0.28609827160835266, + -0.01364973559975624, + 0.17200660705566406, + -0.540554404258728, + -0.045234743505716324, + -0.2363405078649521, + -0.05156566947698593, + 0.09913241863250732, + 0.05354035645723343, + 0.05111401900649071, + -0.09613097459077835, + -0.012324687093496323, + 0.05143137648701668, + 0.1441812366247177, + 0.11962719261646271, + 0.20701415836811066, + 0.19899319112300873, + 0.2105577290058136, + 0.21056552231311798, + -0.16368626058101654, + -0.23504261672496796, + 0.26082026958465576, + 0.1151704341173172, + -0.029884204268455505, + 0.13575918972492218, + -0.6310707926750183, + 0.1893375813961029, + -0.27659380435943604, + 0.21350906789302826, + -0.06985262036323547, + 0.022135544568300247, + 0.13919274508953094, + 0.033336490392684937, + 0.550769031047821, + 0.23101045191287994, + 0.40552353858947754, + -0.13831090927124023, + -0.2714400291442871, + 0.07616619765758514, + -0.05734608322381973, + 0.04041236639022827, + -0.05243794620037079, + 0.5886944532394409, + 0.24829775094985962, + -0.3395480215549469, + 0.1890704333782196, + 0.42277151346206665, + -0.39610356092453003, + -0.23838534951210022, + -0.1097087413072586, + 0.29599910974502563, + -0.3030024468898773, + 0.36264804005622864, + -0.27416932582855225, + -0.002256998559460044, + 0.09953072667121887, + -0.17637504637241364, + -0.09749571979045868, + 0.15355481207370758, + -0.046559691429138184, + 0.13408999145030975, + 0.1618463695049286, + -0.1542164385318756, + 0.19633816182613373, + 0.19059625267982483, + 0.02859725058078766, + 0.3913072645664215, + 0.08922357857227325, + 0.06587585061788559, + -0.05987701565027237, + -0.19762226939201355, + -0.054617591202259064, + -0.07245709002017975, + 0.19703792035579681, + 0.02544614113867283, + -0.3039719760417938, + 0.47266802191734314, + -0.030010439455509186, + -0.4196570813655853, + 0.12348750978708267, + -0.06359846889972687, + -0.21405507624149323, + 0.26691514253616333, + 0.004244185984134674, + -0.4218568205833435, + 0.16506026685237885, + 0.19302670657634735, + 0.24645447731018066, + 0.17231054604053497, + 0.02184642292559147, + -0.0057579874992370605, + -0.2975187599658966, + 0.11487952619791031, + -0.078462615609169, + -0.11089345067739487, + -0.4480881094932556, + 0.17235708236694336, + -0.02804313227534294, + -0.2285093367099762, + 0.4555237889289856, + 0.0796227902173996, + -0.09351184964179993, + 0.23616266250610352, + -0.18462201952934265, + -0.13238993287086487, + -0.32408544421195984, + 0.1980779618024826, + 0.33797764778137207, + 0.05364053696393967, + 0.22423195838928223, + 0.1668098121881485, + -0.11741682142019272, + 0.28384891152381897, + -0.2416415512561798, + -0.1464877426624298, + -0.2907993197441101, + -0.16407844424247742, + 0.07938133180141449, + -0.5039862394332886, + 0.046670764684677124, + 0.06203648820519447, + -0.09580573439598083, + -0.008611056953668594, + -0.020807089284062386, + -0.02417304553091526, + -0.05467764288187027, + -0.046899836510419846, + 0.31518134474754333, + 0.06074550747871399, + 0.12450337409973145, + -0.2061132937669754, + -0.24458137154579163, + -0.055746857076883316, + -0.1310538351535797, + 0.0230395644903183, + 0.043344415724277496, + -0.12026727199554443, + 0.11239442229270935, + 0.06690467894077301, + -0.3889109194278717, + -0.4895171523094177, + 0.29363420605659485, + -0.262593537569046, + 0.09981031715869904, + -0.08245856314897537, + 0.1632567048072815, + 0.36134058237075806, + -0.26351407170295715, + 0.08127778768539429, + 0.36136892437934875, + 0.4832592308521271, + 0.24930940568447113, + 0.03741318732500076, + -0.024904048070311546, + -0.1163511723279953, + 0.02844812348484993, + -0.4516550600528717, + 0.34866711497306824, + 0.14481890201568604, + -0.2824186384677887, + 0.20891878008842468, + 0.38981449604034424, + 0.06180645897984505, + -0.4528341591358185, + -0.2451983094215393, + 0.47724875807762146, + 0.16437865793704987, + 0.034343380481004715, + 0.05854594707489014, + 0.2400565892457962, + 0.5628412365913391, + 0.09386804699897766, + -0.13262082636356354, + 0.11176405847072601, + -0.144064798951149, + -0.20716191828250885, + 0.05214492231607437, + -0.25173211097717285, + 0.25760161876678467, + -0.012754656374454498, + -0.10397684574127197, + 0.2617386281490326, + -0.10037698596715927, + -0.22663657367229462, + -0.15257592499256134, + -0.05413558706641197, + -0.07852517068386078, + -0.26748934388160706, + 0.4026290774345398, + -0.04975870996713638, + -0.11292174458503723, + 0.5387819409370422, + -0.1804785579442978, + -0.20607417821884155, + 0.08430855721235275, + -0.015324007719755173, + -0.5522943735122681, + 0.31671521067619324, + -0.15871912240982056, + 0.062123000621795654, + 0.2647492289543152, + -0.09021185338497162, + -0.19445931911468506, + -0.10330142080783844, + 0.3321719765663147, + 0.1404438316822052, + -0.10668038576841354, + -0.003114070277661085, + 0.026027031242847443, + 0.2394903600215912, + 0.5777596235275269, + 0.2558059096336365, + 0.13160613179206848, + 0.42627429962158203, + -0.12550505995750427, + -0.34435176849365234, + -0.06116145849227905, + -0.026200558990240097, + 0.17813915014266968, + -0.31091344356536865, + -0.0025517381727695465, + -0.12868823111057281, + -0.07278139144182205, + 0.09273823350667953, + -0.32259196043014526, + -0.02077668532729149, + 0.3379209637641907, + -0.1663515716791153, + -0.051268190145492554, + 0.1931937336921692, + 0.22760646045207977, + 0.01691923290491104, + 0.32373934984207153, + -0.04550691321492195, + -0.12355415523052216, + 0.15325315296649933, + -0.1148691400885582, + 0.30213966965675354, + -0.15965230762958527, + -0.29309555888175964, + -0.45201045274734497, + -0.00864420086145401, + -0.21516954898834229, + -0.2456834763288498, + -0.059791937470436096, + -0.07710721343755722, + -0.11957000941038132, + -0.23716804385185242, + 0.18476612865924835, + 0.14864082634449005, + 0.16747361421585083, + 0.06555008143186569, + 0.3092443346977234, + 0.04005281999707222, + -0.29202619194984436, + 0.20402739942073822, + -0.009828926995396614, + -0.07447586208581924, + -0.1619531810283661, + -0.05409196391701698, + -0.12557074427604675, + 0.42131292819976807, + -0.0054033249616622925, + 0.013693362474441528, + -0.04359319061040878, + -0.016264937818050385, + -0.27936509251594543, + -0.5011048316955566, + -0.12215275317430496, + -0.06531307846307755, + -0.006484270095825195, + -0.04886622726917267, + 0.11686033755540848, + -0.16717609763145447, + -0.2340424507856369, + 0.03834771737456322, + 0.2928287088871002, + 0.21297332644462585, + -0.1366775929927826, + -0.07311826944351196, + 0.2535603940486908, + -0.033988941460847855, + 0.2689420282840729, + -0.07289992272853851, + 0.1635773926973343, + 0.1398514360189438, + -0.5353471040725708, + 0.004163078963756561, + -0.03261023014783859, + -0.32301777601242065, + -0.15493467450141907, + 0.20000344514846802, + 0.1817021518945694, + 0.07763637602329254, + -0.015451822429895401, + -0.011349033564329147, + 0.18871067464351654, + -0.39599063992500305, + -0.1327400505542755, + 0.28034642338752747, + 0.06907794624567032, + 0.36727070808410645, + -0.13643378019332886, + -0.23859362304210663, + -0.09165585041046143, + -0.08721356093883514, + -0.39118796586990356, + 0.14445024728775024, + 0.18976540863513947, + -0.3678368628025055, + -0.0621175616979599, + 0.08127462863922119, + 0.03158002346754074, + -0.16296127438545227, + 0.27506211400032043, + 0.14906084537506104, + 0.21920451521873474, + -0.095692478120327, + -0.3362957239151001, + -0.09714174270629883, + -0.26782506704330444, + -0.45965731143951416, + -0.2729566693305969, + 0.25732824206352234, + 0.2500401735305786, + 0.11006768047809601, + 0.2587975561618805, + 0.1262442022562027, + -0.13945728540420532, + -0.16680462658405304, + 0.05787403881549835, + -0.18935826420783997, + 0.3080531656742096, + -0.11207771301269531, + -0.21024547517299652, + 0.13613256812095642, + -0.5122655630111694, + 0.12121643871068954, + 0.07530513405799866, + 0.05485007166862488, + 0.25372180342674255, + 0.22170521318912506, + 0.21099893748760223, + 0.38444095849990845, + 0.19118119776248932, + -0.07639127224683762, + 0.0625278651714325, + 0.029036784544587135, + -0.05491258203983307, + -0.14122311770915985, + -0.0034462008625268936, + 0.32276755571365356, + -0.2703332304954529, + -0.011348448693752289, + 0.3242357075214386, + 0.20465674996376038, + -0.3318464159965515, + -0.3087562620639801, + -0.1053384318947792, + -0.07162285596132278, + 0.010435223579406738, + -0.2959614396095276, + -0.0535341240465641, + 0.15634381771087646, + -0.331221342086792, + -0.10667794197797775, + 0.1393067091703415, + 0.3724020719528198, + 0.2044195830821991, + 0.08791524916887283, + -0.07574434578418732, + -0.46646648645401, + 0.2736928164958954, + 0.34014174342155457, + -0.056019850075244904, + -0.06364163756370544, + -0.22366049885749817, + -0.10510315001010895, + 0.5999229550361633, + -0.10672521591186523, + -0.008123181760311127, + -0.06189455837011337, + -0.003806252032518387, + -8.20457935333252e-05, + -0.09706656634807587, + -0.10411538928747177, + 0.12421941757202148, + -0.4416852593421936, + 0.20919868350028992, + -0.24050256609916687, + -0.250347763299942, + 0.1624547839164734, + -0.07962118834257126, + -0.343248188495636, + -0.16261997818946838, + 0.3777315020561218, + -0.2147292196750641, + -0.0008063614368438721, + 0.08072583377361298, + 0.4382367730140686, + 0.0059815384447574615, + -0.16304868459701538, + 0.1740894615650177, + -0.4074089229106903, + 0.013331379741430283, + 0.052633680403232574, + -0.1317206770181656, + 0.07457226514816284, + 0.016384445130825043, + 0.42184486985206604, + 0.46257737278938293, + 0.2821699380874634, + -0.4744175672531128, + 0.27997997403144836, + 0.30315279960632324, + 0.2615652084350586, + -0.18839424848556519, + -10.491643905639648, + 0.12024131417274475, + -0.1401829719543457, + 0.6439712643623352, + -0.17492054402828217, + -0.16441068053245544, + 0.2167280614376068, + 0.05331645533442497, + 0.07022251188755035, + 0.23234547674655914, + -0.31370052695274353, + 0.12263962626457214, + 0.2970048189163208, + 0.24233338236808777, + -0.13582532107830048, + -0.016925543546676636, + -0.16516417264938354, + 0.12752556800842285, + -0.12318303436040878, + 0.21171900629997253, + 0.10651078075170517, + 0.28514766693115234, + -0.13628187775611877, + 0.35490620136260986, + 0.08108126372098923, + -0.3294053077697754, + -0.2595016062259674, + 0.4644663631916046, + 0.021114401519298553, + -0.18882602453231812, + 0.4103369116783142, + 0.33331775665283203, + -0.10410599410533905, + 0.1798475980758667, + -0.015130525454878807, + -0.14437705278396606, + 0.13387754559516907, + -0.10040943324565887, + 0.1596640944480896, + 0.24111023545265198, + 0.004278069362044334, + -0.41514283418655396, + 0.1710638552904129, + 0.15617680549621582, + -0.13672536611557007, + -0.3997924327850342, + -0.09216757118701935, + -1.5004844665527344, + 0.12088396400213242, + 0.319912314414978, + 0.4553978741168976, + 0.07330206781625748, + 0.15444152057170868, + 0.16016791760921478, + -0.29770636558532715, + 0.16814106702804565, + -0.3169933557510376, + 0.11687159538269043, + 0.10890576988458633, + -0.04409976303577423, + 0.11740757524967194, + -0.25917530059814453, + 0.28940874338150024, + -0.3599430024623871, + -0.4206664562225342, + 0.038310181349515915, + -0.07813330739736557, + 0.06403255462646484, + -0.26814451813697815, + -0.2969704866409302, + -0.39201462268829346, + 0.0221739262342453, + -0.09723573178052902, + -0.13933995366096497, + 0.4764840304851532, + 0.02239415980875492, + -0.43241268396377563, + 0.18955253064632416, + -0.013799913227558136, + 0.3527354300022125, + 0.22379443049430847, + -0.13570646941661835, + 0.13065463304519653, + -0.2224656641483307, + -0.2302999049425125, + -0.2931046783924103, + 0.07212059199810028, + 0.5245420336723328, + 0.001025363802909851, + 0.06678292900323868, + 0.006796227768063545, + 0.18915848433971405, + -0.1581624299287796, + -0.25025665760040283, + -0.4141623377799988, + 0.21802358329296112, + -0.26055097579956055, + -0.012953020632266998, + 0.09819892048835754, + -0.21092218160629272, + -0.14056001603603363, + 0.07320593297481537, + 0.03144840896129608, + -0.5079767107963562, + -0.2609317898750305, + 0.01043691672384739, + 0.18079671263694763, + 0.2092301845550537, + 0.3643694818019867, + 0.015498101711273193, + 0.005142934620380402, + 0.03656654804944992, + 0.24314287304878235, + 0.3042920231819153, + 0.18436726927757263, + -0.06862974911928177, + -0.15653011202812195, + -0.27482402324676514, + -0.31248536705970764, + 0.07927927374839783, + 0.3376043140888214, + -0.2397507131099701, + 0.3012092411518097, + 0.6214525103569031, + -0.09010297805070877, + -0.0747327208518982, + 0.9092488288879395, + -0.2168780416250229, + 0.22905679047107697, + -0.10259687155485153, + 0.11231158673763275, + 0.03952575474977493, + -0.1527365893125534, + 0.11306284368038177, + 0.37664610147476196, + -0.17984174191951752, + 0.46115875244140625, + 0.0986807644367218, + -0.16754582524299622, + 0.18710564076900482, + -0.2192874550819397, + 0.38158300518989563, + 0.13572749495506287, + 0.24496707320213318, + -0.07271167635917664, + -0.3392811417579651, + -0.23205186426639557, + 0.03885918855667114, + -0.45338955521583557, + -0.10303190350532532, + -0.11939848959445953, + 0.20109108090400696, + 0.047510892152786255, + -0.24978908896446228, + 0.2907201647758484, + -0.04647795110940933, + -0.12297841161489487, + -0.1981087327003479, + -0.43222033977508545, + -0.022479595616459846, + -0.012721878476440907, + 0.8237607479095459, + 0.08748522400856018, + 0.02047467604279518, + -0.11072924733161926, + 0.1098223328590393, + -0.14701330661773682, + 0.12096437066793442, + 0.02096686325967312, + -0.06532515585422516, + -0.5849081873893738, + 0.24678635597229004, + 0.09544801712036133, + -0.5073127150535583, + -0.1783873736858368, + -0.3916610777378082, + 0.009205341339111328, + -0.20584054291248322, + -0.1806856095790863, + 0.27739912271499634, + 0.26468750834465027, + -0.06101863086223602, + 0.14204496145248413, + -0.3146379590034485, + 0.16526249051094055, + 0.1364118903875351, + 0.13405324518680573, + 0.13687217235565186, + -0.14869526028633118, + -0.3088264465332031, + -0.3468317687511444, + 0.21980024874210358, + -0.12102527916431427, + -0.13035570085048676, + 0.14863520860671997, + 0.10306505858898163, + -0.3110966682434082, + -0.03367820754647255, + -0.37257009744644165, + 0.1630478948354721, + -0.23239746689796448, + 0.30163151025772095, + 0.19426922500133514, + -0.33579719066619873, + 0.10216507315635681, + -0.13191290199756622, + 0.1885225772857666, + 0.1349676549434662, + -0.26934781670570374, + 0.18921026587486267, + -0.055178768932819366 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_061.json b/src/benchmark/output/results/results_graph_061.json new file mode 100644 index 0000000..f1612e4 --- /dev/null +++ b/src/benchmark/output/results/results_graph_061.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 65-year-old woman. Unfortunately, her demographic information is not explicitly provided in the data, so we will assume that she is an adult female with no other relevant medical history mentioned.\n\n**Initial Presentation (Step 1):**\nThe patient presented to our institution with dyspnea, which was her primary symptom. This presentation led to further investigation and subsequent diagnoses.\n\n**Diagnosis of Adenocarcinoma (Step 2):**\nFollowing a bronchoscopic biopsy of the right upper lobe, the patient was diagnosed with adenocarcinoma. The biopsy results revealed adenocarcinoma, which is a type of non-small cell lung cancer.\n\n**Imaging and Further Diagnosis (Step 3):**\nImaging studies, including bone and brain metastases, were performed to further evaluate the extent of disease. These findings led to a diagnosis of stage IVB lung adenocarcinoma with multiple metastases in the bones and brain.\n\n**Molecular Profiling and Treatment Planning (Step 4):**\nA tumor proportion score was calculated to guide treatment decisions. The results showed that the programmed death-ligand 1 tumor proportion score was 60%. Based on this information, palliative radiation therapy for spinal and brain metastases was initiated, followed by first-line chemotherapy with cisplatin, pemetrexed, and pembrolizumab.\n\n**Progression of Disease (Step 5-6):**\nAfter 13 cycles of chemotherapy, imaging revealed ascites and progressive disease. The patient's condition continued to decline, with worsening ascites and a marked increase in abdominal circumference.\n\n**Second-Line Therapy (Step 7):**\nDue to the progression of disease, second-line therapy was initiated with docetaxel and ramucirumab (DTX+RAM). However, despite this treatment, the patient's condition continued to deteriorate.\n\n**Current Status:**\nThe patient is currently in a poor clinical state, with significant ascites, hypoalbuminemia, and a marked decline in activities of daily living. Her performance status has decreased, and she requires frequent abdominal paracentesis. The patient's abdomen is markedly distended, and her vital signs are concerning.\n\n**Conclusion:**\nThis patient presents with a complex clinical scenario, characterized by rapidly progressive disease despite multiple treatment modalities. Further evaluation and management strategies will be necessary to address this challenging case.", + "bertscore": { + "precision": [ + 0.6582294702529907 + ], + "recall": [ + 0.6435860991477966 + ], + "f1": [ + 0.6508255004882812 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 2, + "node_count": 9, + "edge_count": 7, + "avg_in_degree": 0.7777777777777778, + "density": 0.09722222222222222 + }, + "trajectory_embedding": [ + 0.2474288046360016, + 0.2092151939868927, + -0.12583652138710022, + 0.19021673500537872, + 0.0814264714717865, + 0.177109494805336, + -0.002533096820116043, + 0.3530573844909668, + 0.759898841381073, + -0.3953750431537628, + -0.04731377586722374, + -0.07567942142486572, + -0.6275361180305481, + -0.17365944385528564, + -0.21753628551959991, + 0.26948532462120056, + -0.22064340114593506, + 0.46433359384536743, + -0.15440678596496582, + -0.28024598956108093, + -0.44532668590545654, + 0.2564878463745117, + -0.6302626132965088, + 0.10224810242652893, + 0.20949804782867432, + 0.009543396532535553, + 0.4226093292236328, + 0.4936608672142029, + 0.2593908905982971, + 0.223179429769516, + 0.152333602309227, + -0.3438692092895508, + 0.2866702973842621, + 0.16359074413776398, + -0.3603590130805969, + 0.19850221276283264, + 0.13433672487735748, + 0.4280996322631836, + -0.25178849697113037, + -0.016268614679574966, + -0.15648142993450165, + 0.12844860553741455, + 0.9050235152244568, + 0.079796701669693, + 0.4123043417930603, + -0.768221378326416, + -0.13257351517677307, + 0.7003955245018005, + -0.48415014147758484, + -0.4720841646194458, + 0.22440290451049805, + 0.9267661571502686, + 0.6730108857154846, + -0.4461787939071655, + 0.5450923442840576, + -0.2852385640144348, + -0.18545196950435638, + -0.28213265538215637, + -0.15310357511043549, + 0.013971561565995216, + 0.10701192170381546, + -0.40082472562789917, + 0.5132468938827515, + -0.253410667181015, + -0.06489899754524231, + -0.15557144582271576, + -0.32458093762397766, + 0.16422566771507263, + -0.04110860824584961, + -0.3884689211845398, + -0.13535962998867035, + -0.25457948446273804, + -0.05048992484807968, + 0.1686599999666214, + 0.040690187364816666, + -0.05052243545651436, + 0.3306153416633606, + -0.10000050067901611, + 0.2837120592594147, + 0.13309495151042938, + -0.031342513859272, + -0.13367417454719543, + -0.07288648188114166, + 0.37100809812545776, + -0.34105047583580017, + -0.13560695946216583, + -0.18512386083602905, + -0.15250417590141296, + -0.4056796431541443, + 0.09863897413015366, + -0.03251934051513672, + -0.5375545620918274, + 0.10792097449302673, + -0.24792835116386414, + -0.06818529218435287, + 0.20810289680957794, + 0.6429087519645691, + 0.03647049516439438, + 0.8740354180335999, + 0.01476980745792389, + 0.17828281223773956, + -0.06596662849187851, + 0.267045259475708, + 0.10360687971115112, + 0.32819274067878723, + -0.09128675609827042, + 0.1444026380777359, + -0.5285681486129761, + 0.45322221517562866, + 0.5252869129180908, + 0.14879195392131805, + -0.17116793990135193, + -0.10920645296573639, + -0.22087547183036804, + 0.2519119679927826, + 0.14097309112548828, + 0.044296979904174805, + 0.32062140107154846, + 0.33641088008880615, + -0.4486435651779175, + -0.28412505984306335, + -0.1374320536851883, + 0.19175387918949127, + 0.1435806006193161, + -0.5362026691436768, + -0.11653237789869308, + -0.12197071313858032, + -0.15996694564819336, + 0.09342095255851746, + -0.09662836045026779, + -0.49499061703681946, + -0.20311211049556732, + 0.03840809315443039, + -0.05671254172921181, + -0.14890745282173157, + 0.3777737617492676, + -0.24940115213394165, + -0.009750470519065857, + -1.1548070907592773, + 0.19032707810401917, + -0.3745191991329193, + -0.046673811972141266, + -0.03163881599903107, + -0.5799851417541504, + -0.26181238889694214, + -0.10767561197280884, + -0.11547179520130157, + 0.17647992074489594, + -0.23939257860183716, + 0.014531340450048447, + 0.042531922459602356, + -0.08516637235879898, + 0.25909045338630676, + 0.5073627829551697, + 0.11405060440301895, + -0.027198249474167824, + 0.010945739224553108, + 0.2674846947193146, + 0.058090660721063614, + -0.21556252241134644, + 0.1346292346715927, + 0.689369797706604, + 0.3295997381210327, + 0.16687455773353577, + -0.2907380163669586, + -0.6308159828186035, + -0.13070149719715118, + -0.0586414560675621, + -0.07125037163496017, + 0.08177226781845093, + -0.20934340357780457, + 0.1417921930551529, + -0.3093430697917938, + 0.648400604724884, + -0.002409420907497406, + 0.3685421049594879, + -0.07871555536985397, + -0.061614882200956345, + 0.1369674652814865, + 0.21043172478675842, + 0.160532146692276, + -0.4026050865650177, + 0.6824887990951538, + 0.3416898548603058, + -0.3958756625652313, + 0.18998302519321442, + 0.3921610713005066, + 0.11419449746608734, + -0.3193144202232361, + 0.017555907368659973, + 0.6630592942237854, + -0.397549033164978, + 0.7330995798110962, + -0.34225431084632874, + -0.029733510687947273, + 0.2507571876049042, + -0.1209719181060791, + 0.03246713802218437, + -0.12745186686515808, + -0.07992155849933624, + 0.3425280451774597, + -0.00027002859860658646, + -0.38500699400901794, + -0.028524037450551987, + 0.2373577207326889, + -0.05475214123725891, + 0.2468254119157791, + -0.1189594566822052, + 0.15761160850524902, + 0.13603991270065308, + -0.06449518352746964, + 0.3302517533302307, + -0.09825067967176437, + 0.33678150177001953, + 0.09319666028022766, + -0.5011940002441406, + 0.12913429737091064, + -0.0006219395436346531, + -0.12734948098659515, + 0.09022471308708191, + 0.019520405679941177, + -0.34538379311561584, + -0.1626301407814026, + 0.000229712575674057, + -0.6532209515571594, + 0.2616381347179413, + 0.21147912740707397, + 0.19318003952503204, + 0.25716009736061096, + 0.053813524544239044, + -0.12325683981180191, + -0.5003531575202942, + 0.33513346314430237, + -0.14115193486213684, + -0.09196598082780838, + -0.3111063241958618, + 0.30827629566192627, + -0.07816414535045624, + 0.19592779874801636, + 0.31989797949790955, + 0.005649898201227188, + -0.007455252110958099, + 0.11787906289100647, + -0.39907586574554443, + -0.07571979612112045, + -0.4045724868774414, + -0.008730463683605194, + 0.34730827808380127, + 0.11567720770835876, + 0.26986992359161377, + -0.0828150138258934, + -0.1537369340658188, + 0.16460679471492767, + -0.1437443047761917, + -0.5334728956222534, + -0.283153235912323, + 0.026044059544801712, + -0.11731011420488358, + -0.8561437726020813, + 0.37526512145996094, + -0.16706308722496033, + 0.08130678534507751, + 0.2621362507343292, + -0.3420047163963318, + -0.17030273377895355, + 0.0887889564037323, + 0.1239231750369072, + 0.14007605612277985, + -0.3320673108100891, + 0.01137293130159378, + -0.2528994381427765, + -0.20001554489135742, + -0.2609359323978424, + -0.034444257616996765, + 0.05742136389017105, + 0.030924983322620392, + -0.44553273916244507, + -0.12867368757724762, + 0.03368363529443741, + -0.3206373453140259, + -0.08493828773498535, + 0.13794586062431335, + -0.21532762050628662, + 0.17406167089939117, + 0.07746371626853943, + 0.19047626852989197, + 0.2787382900714874, + 0.15642473101615906, + 0.043574824929237366, + 0.4282212555408478, + 0.37749844789505005, + -0.1087842583656311, + 0.02302526868879795, + -0.04575304687023163, + -0.09677232056856155, + -0.01350809633731842, + -0.39988046884536743, + 0.48384684324264526, + 0.02535863034427166, + 0.020812466740608215, + 0.1330721080303192, + 0.22198781371116638, + 0.03276463598012924, + -0.2221183329820633, + 0.10217461735010147, + 0.5667365193367004, + 0.07253216207027435, + 0.18427276611328125, + 0.2227112054824829, + 0.22626850008964539, + 0.32970350980758667, + -0.12805035710334778, + 0.09570568799972534, + 0.27290207147598267, + -0.0688340812921524, + -0.2575719654560089, + 0.024955278262495995, + 0.31039804220199585, + 0.543548047542572, + -0.20509736239910126, + -0.266879677772522, + -0.1455192267894745, + -0.13511225581169128, + -0.01576375402510166, + -0.44707226753234863, + -0.16930513083934784, + 0.11384731531143188, + -0.26227372884750366, + 0.43528634309768677, + 0.11493717133998871, + -0.06934335827827454, + 0.3761230707168579, + -0.49820417165756226, + -0.09861333668231964, + 0.2508455812931061, + -0.1294126659631729, + -0.4030299782752991, + 0.46051907539367676, + -0.13734400272369385, + -0.027555784210562706, + 0.40941566228866577, + -0.5176143050193787, + -0.16636493802070618, + 0.1102132499217987, + 0.3547123670578003, + -0.11693757772445679, + 0.13585558533668518, + 0.018819980323314667, + 0.09399145096540451, + 0.1057262271642685, + 0.4412054121494293, + 0.053070418536663055, + 0.31878265738487244, + 0.7638611197471619, + 0.23469914495944977, + -0.3656395375728607, + 0.09445472806692123, + -0.10848180949687958, + 0.3663689196109772, + -0.11580905318260193, + -0.06980348378419876, + -0.23841078579425812, + 0.165745347738266, + 0.04646908864378929, + -0.3088207244873047, + 0.0010346155613660812, + 0.0004941858351230621, + 0.09051825106143951, + -0.07388828694820404, + 0.37136349081993103, + 0.010374654084444046, + -0.17990358173847198, + 0.5024390816688538, + -0.16215890645980835, + -0.2659148573875427, + 0.40283387899398804, + -0.189349964261055, + 0.07735902816057205, + 0.08453433215618134, + -0.25369948148727417, + -0.27845457196235657, + 0.15960581600666046, + -0.4060025215148926, + -0.2871885299682617, + 0.11507461965084076, + -0.2797015905380249, + 0.09516991674900055, + -0.3060813844203949, + 0.04376138001680374, + 0.07084845006465912, + 0.10474808514118195, + 0.2310372143983841, + 0.3101925849914551, + 0.18945907056331635, + -0.16413262486457825, + 0.2844293713569641, + -0.03617854788899422, + -0.18950383365154266, + -0.3586387634277344, + 0.14893342554569244, + -0.1790696233510971, + 0.7171720266342163, + 0.10400288552045822, + -0.03010983020067215, + 0.15797582268714905, + -0.11059305816888809, + -0.12730857729911804, + -0.27869167923927307, + 0.00712523004040122, + -0.12241735309362411, + 0.12554235756397247, + 0.29801830649375916, + 0.0314694419503212, + -0.36098769307136536, + -0.10374028980731964, + -0.1435193121433258, + -0.10725550353527069, + 0.003017284907400608, + -0.07079105079174042, + -0.16502737998962402, + 0.46602460741996765, + 0.28542712330818176, + 0.5367545485496521, + -0.36782941222190857, + 0.2636677026748657, + 0.014116751030087471, + -0.36083322763442993, + -0.012809373438358307, + -0.20034296810626984, + -0.463847279548645, + -0.1582167148590088, + 0.33216992020606995, + 0.29515835642814636, + -0.04150944948196411, + -0.07910757511854172, + 0.1025189757347107, + 0.16058295965194702, + -0.38547948002815247, + -0.06299492716789246, + 0.41649138927459717, + 0.19950976967811584, + 0.3958536684513092, + 0.13724705576896667, + -0.5606046915054321, + -0.34546399116516113, + -0.06539136916399002, + -0.4102364182472229, + -0.012278708629310131, + 0.23257459700107574, + 0.01011296920478344, + -0.12340724468231201, + 0.06791362166404724, + -0.035072579979896545, + -0.23245300352573395, + 0.29668891429901123, + -0.31240156292915344, + 0.32346245646476746, + 0.07061052322387695, + -0.18248093128204346, + -0.14157210290431976, + -0.19322997331619263, + -0.3813169300556183, + -0.11284425109624863, + 0.1710788458585739, + 0.18879346549510956, + -0.38051337003707886, + 0.01378791406750679, + 0.19295620918273926, + -0.12452749907970428, + -0.23847848176956177, + 0.05666845664381981, + -0.4183095097541809, + 0.349368155002594, + -0.22666415572166443, + -0.28490397334098816, + 0.0757436454296112, + -0.1464388072490692, + -0.09050866961479187, + 0.16522878408432007, + 0.061005599796772, + 0.4142916202545166, + -0.026998110115528107, + 0.011175381019711494, + 0.5083684325218201, + 0.08929872512817383, + 0.16157595813274384, + 0.3694569170475006, + 0.08086130768060684, + -0.006170984357595444, + -0.4611409902572632, + -0.29081836342811584, + 0.2145928144454956, + -0.4151502251625061, + -0.17983511090278625, + 0.10503862798213959, + 0.30314862728118896, + -0.5050584077835083, + -0.43113836646080017, + 0.05641426146030426, + 0.0619920939207077, + -0.013836918398737907, + -0.14363308250904083, + -0.27965402603149414, + -0.13117866218090057, + -0.2959071099758148, + -0.043925609439611435, + 0.17751044034957886, + 0.6072612404823303, + 0.15313737094402313, + 0.23825585842132568, + -0.30539458990097046, + -0.11196178197860718, + 0.306706041097641, + 0.22055192291736603, + 0.09758789837360382, + -0.13543783128261566, + -0.14155618846416473, + 0.29686009883880615, + 0.4885350465774536, + 0.06608840078115463, + 0.13890081644058228, + 0.01013236865401268, + 0.11781002581119537, + 0.2549940049648285, + 0.031785257160663605, + -0.18353252112865448, + -0.004647810012102127, + -0.46123290061950684, + 0.18704335391521454, + -0.21100419759750366, + -0.07775810360908508, + 0.28343111276626587, + -0.22152259945869446, + -0.6229356527328491, + -0.21281684935092926, + 0.1824328601360321, + -0.10667175054550171, + -0.2114647775888443, + 0.22491976618766785, + 0.2824113070964813, + -0.07781774550676346, + -0.2466939091682434, + 0.09478389471769333, + -0.5808854103088379, + -0.40948423743247986, + 0.07500547915697098, + -0.05559469014406204, + -0.17505601048469543, + 0.0973970964550972, + 0.5113881230354309, + 0.6146116852760315, + 0.34088584780693054, + -0.02090776152908802, + 0.2461005002260208, + 0.5180326700210571, + 0.3032766282558441, + -0.24937379360198975, + -10.492722511291504, + -0.18166381120681763, + -0.33075693249702454, + 0.609231173992157, + -0.21124954521656036, + 0.041339412331581116, + -0.030709220096468925, + 0.0462377667427063, + 0.008817996829748154, + 0.13839074969291687, + -0.14367790520191193, + -0.226935014128685, + 0.21971964836120605, + 0.44054844975471497, + 0.00036082929000258446, + 0.2685233950614929, + -0.32103100419044495, + 0.40157151222229004, + -0.019415132701396942, + 0.12625589966773987, + 0.08065924048423767, + 0.4054347276687622, + -0.32254594564437866, + 0.07994589954614639, + -0.15920427441596985, + -0.5145461559295654, + -0.18526479601860046, + 0.6663429141044617, + 0.454655259847641, + -0.4681839346885681, + 0.16253331303596497, + 0.10277656465768814, + -0.1387007236480713, + 0.25983044505119324, + -0.29312244057655334, + -0.12110882997512817, + -0.10613927245140076, + 0.19227342307567596, + 0.4411795139312744, + -0.18659783899784088, + 0.0602419339120388, + -0.14831030368804932, + 0.3380459249019623, + 0.05273851752281189, + -0.22291673719882965, + -0.583213210105896, + -0.01348314993083477, + -1.751699686050415, + 0.39631059765815735, + 0.39011040329933167, + 0.397417813539505, + 0.20549944043159485, + 0.10121989995241165, + 0.3133712410926819, + -0.22824794054031372, + -0.12035030871629715, + -0.44932204484939575, + -0.2018738090991974, + 0.1286967694759369, + 0.04690631106495857, + 0.14393851161003113, + -0.04387877508997917, + 0.6374436020851135, + 0.06679205596446991, + -0.21566534042358398, + 0.03216436877846718, + 0.18498210608959198, + -0.1780645251274109, + -0.41825467348098755, + -0.8771959543228149, + -0.5769665241241455, + 0.1912241280078888, + -0.15896640717983246, + -0.07813112437725067, + 0.3110414147377014, + 0.0019352929666638374, + -0.20062318444252014, + 0.2649616599082947, + 0.029607579112052917, + 0.3840513527393341, + 0.33135515451431274, + -0.12452322244644165, + 0.1190989762544632, + -0.19417904317378998, + -0.23861216008663177, + -0.14152145385742188, + 0.17432525753974915, + 0.540013313293457, + -0.04155760258436203, + -0.16007274389266968, + 0.010763381607830524, + 0.4254085421562195, + 0.026549600064754486, + -0.20764987170696259, + -0.4897440969944, + 0.049948353320360184, + 0.04619473218917847, + 0.14731572568416595, + -0.030806168913841248, + -0.07910434156656265, + -0.29132890701293945, + 0.17112918198108673, + -0.09082689881324768, + -0.635960578918457, + -0.5755260586738586, + 0.2536362111568451, + 0.16383564472198486, + 0.14503750205039978, + 0.021618077531456947, + -0.17618215084075928, + -0.25938379764556885, + 0.09301234036684036, + 0.22947996854782104, + 0.5216777324676514, + 0.28966039419174194, + -0.10596019774675369, + 0.09310103952884674, + -0.34401458501815796, + -0.09563308954238892, + -0.013886112719774246, + 0.44787025451660156, + 0.007255901582539082, + 0.17670409381389618, + 0.7266382575035095, + -0.029979493468999863, + 0.05816517770290375, + 0.920714259147644, + -0.5000869035720825, + 0.16242334246635437, + -0.010177046060562134, + 0.20143023133277893, + -0.024314286187291145, + -0.592297375202179, + 0.023114845156669617, + 0.5272396206855774, + -0.32394716143608093, + 0.851578414440155, + 0.396298885345459, + -0.27341026067733765, + -0.131796196103096, + -0.3363179564476013, + 0.5272847414016724, + 0.19720755517482758, + 0.1670018434524536, + -0.1992090940475464, + -0.315632700920105, + -0.3610754907131195, + 0.10325397551059723, + -0.27086135745048523, + -0.2982610762119293, + -0.18296584486961365, + 0.08418313413858414, + 0.1647537499666214, + -0.07370283454656601, + 0.332377552986145, + 0.30741748213768005, + -0.07301062345504761, + -0.3441603481769562, + -0.32363730669021606, + -0.0737682431936264, + 0.039549343287944794, + 0.9724972248077393, + -0.14692151546478271, + -0.19200702011585236, + -0.03663553297519684, + 0.13727612793445587, + -0.2483002096414566, + 0.19835573434829712, + 0.08698147535324097, + -0.07522369176149368, + -0.41911011934280396, + 0.3206632733345032, + 0.17721211910247803, + -0.3879513144493103, + -0.07318800687789917, + 0.009198175743222237, + -0.09736260026693344, + 0.1958516389131546, + -0.16283875703811646, + 0.09489928930997849, + 0.30212172865867615, + -0.046928297728300095, + 0.09360192716121674, + -0.3726518750190735, + -0.22947120666503906, + 0.11896955221891403, + 0.4078627824783325, + 0.035514019429683685, + -0.3865315616130829, + -0.23404957354068756, + -0.6315596103668213, + 0.34451207518577576, + -0.5986541509628296, + -0.11872436851263046, + 0.15665724873542786, + 0.19783008098602295, + -0.16555820405483246, + 0.2139514535665512, + 0.10367842018604279, + -0.06595541536808014, + -0.23181718587875366, + 0.332355797290802, + 0.5700253248214722, + -0.22458267211914062, + 0.5243464708328247, + -0.19641821086406708, + 0.10315823554992676, + 0.09639372676610947, + -0.23391179740428925, + 0.1516333818435669, + -0.4367642402648926 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_062.json b/src/benchmark/output/results/results_graph_062.json new file mode 100644 index 0000000..7726b4c --- /dev/null +++ b/src/benchmark/output/results/results_graph_062.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 38-year-old male who presented with a chronic recurrent dry cough over the course of a month. He denied any fever, sputum or blood production, and chest pain.\n\n**Timeline of Diagnoses:**\n\n1. **Step 1 (N1):** The patient's chronic recurrent dry cough prompted a chest computed tomography (CT) scan.\n2. **Step 2 (N2):** The CT revealed pulmonary masses at an external hospital, leading to admission to the oncology department for further evaluation and treatment.\n3. **Step 3 (N3):** The patient was admitted to the oncology department for further evaluation and treatment.\n4. **Step 4 (N4):** As part of the evaluation, the patient's medical history was reviewed, revealing no history of hypertension, coronary heart disease, diabetes, cerebral venous thrombosis or hemorrhage, tuberculosis, chronic hepatitis B virus infection and other diseases.\n5. **Step 5 (N5):** Vitals and labs were taken as part of the evaluation, including temperature 37.2\u00b0C, pulse rate 118 bpm, respiratory rate 20 breaths/minute, blood pressure 106/69 mmHg, white blood cells 7.97 \u00d7 109/L, hemoglobin 142 g/L, platelets 287 \u00d7 109/L, and various other lab results.\n6. **Step 6 (N6):** Additional labs were taken as part of the evaluation, including treponema pallidum-specific antibody, hepatitis B surface antigen, and hepatitis C.\n\n**Treatments:**\n\nThe patient underwent a series of evaluations and treatments based on the findings from each step:\n\n* Following the CT scan, the patient was admitted to the oncology department for further evaluation and treatment.\n* As part of the evaluation, the patient's medical history was reviewed, revealing no history of certain diseases.\n* Vitals and labs were taken as part of the evaluation.\n\n**Outcomes:**\n\nThe patient's current status is not explicitly stated in the provided data. However, based on the timeline of diagnoses and treatments, it appears that the patient has undergone a series of evaluations and treatments for pulmonary masses detected by CT scan. The patient's medical history was reviewed, revealing no history of certain diseases, and vitals and labs were taken as part of the evaluation.\n\n**Conclusion:**\n\nThe patient presented with a chronic recurrent dry cough over the course of a month, which prompted a chest CT scan that revealed pulmonary masses. The patient underwent a series of evaluations and treatments based on the findings from each step, including admission to the oncology department for further evaluation and treatment. The patient's medical history was reviewed, revealing no history of certain diseases, and vitals and labs were taken as part of the evaluation.", + "bertscore": { + "precision": [ + 0.47996535897254944 + ], + "recall": [ + 0.5415050387382507 + ], + "f1": [ + 0.5088814496994019 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 6, + "edge_count": 5, + "avg_in_degree": 0.8333333333333334, + "density": 0.16666666666666666 + }, + "trajectory_embedding": [ + 0.29947397112846375, + -0.028808513656258583, + 0.018951475620269775, + 0.24079148471355438, + 0.11866217851638794, + 0.17880016565322876, + 0.11841905117034912, + 0.2565062940120697, + 0.5162163972854614, + -0.40549495816230774, + -0.19314958155155182, + -0.05226249620318413, + -0.6632895469665527, + -0.11044865846633911, + -0.34900379180908203, + 0.20892314612865448, + 0.0023391495924443007, + 0.3613584041595459, + 0.03122534416615963, + -0.24920932948589325, + -0.4481029510498047, + 0.3001985251903534, + -0.5988388061523438, + 0.05307899788022041, + 0.22755618393421173, + -0.131968691945076, + 0.4439794719219208, + 0.5466761589050293, + 0.31771886348724365, + 0.24100959300994873, + -0.10971758514642715, + -0.17458467185497284, + 0.06261575222015381, + 0.12151173502206802, + -0.332698792219162, + 0.19091731309890747, + 0.23537187278270721, + 0.2702086865901947, + -0.1578827053308487, + 0.000803215429186821, + -0.24547170102596283, + -0.01477339118719101, + 0.8851456046104431, + 0.18155045807361603, + 0.43704381585121155, + -0.5708225965499878, + -0.1669672727584839, + 0.748521625995636, + -0.5138639807701111, + -0.17732495069503784, + -0.09516710042953491, + 0.9330987930297852, + 0.33173343539237976, + -0.31040236353874207, + 0.441397100687027, + -0.16228680312633514, + -0.20543169975280762, + -0.35198330879211426, + -0.11635354906320572, + 0.21407131850719452, + 0.12020236253738403, + -0.41610679030418396, + 0.4582405984401703, + -0.22627276182174683, + 0.029675668105483055, + -0.02421610616147518, + -0.10107824206352234, + 0.032975051552057266, + -0.09741229563951492, + -0.3790196180343628, + -0.13328605890274048, + -0.2717601954936981, + -0.1202009916305542, + 0.052508652210235596, + 0.24520277976989746, + -0.2078080177307129, + 0.41277584433555603, + -0.1218118965625763, + 0.12164954096078873, + 0.2530306875705719, + -0.16012853384017944, + -0.13158580660820007, + 0.009668275713920593, + 0.2985859811306, + -0.39279451966285706, + 0.07253089547157288, + -0.02653445303440094, + -0.09272889047861099, + -0.457582950592041, + 0.217140331864357, + 0.07936916500329971, + -0.4932047128677368, + 0.0904335081577301, + -0.45746758580207825, + 0.0318153090775013, + 0.21505804359912872, + 0.4336695373058319, + 0.17545145750045776, + 0.72902512550354, + -0.013932471163570881, + 0.05010358616709709, + 0.1858871430158615, + 0.3562144935131073, + 0.17085601389408112, + 0.4035920798778534, + 0.051238495856523514, + 0.06851653009653091, + -0.43026259541511536, + 0.3828446865081787, + 0.3200426995754242, + -0.08956816792488098, + -0.321315199136734, + -0.1656428575515747, + -0.248518705368042, + -0.02897167019546032, + 0.12237484008073807, + 0.0023838530760258436, + 0.06082877516746521, + 0.398444801568985, + -0.38420602679252625, + -0.10816473513841629, + -0.06444895267486572, + 0.42409154772758484, + 0.1571182757616043, + -0.43264588713645935, + 0.01029630471020937, + -0.16299012303352356, + -0.14038507640361786, + -0.08940261602401733, + 0.12581586837768555, + -0.6488975882530212, + -0.32606425881385803, + 0.0425783134996891, + 0.17472527921199799, + -0.08513165265321732, + 0.19218067824840546, + -0.35194024443626404, + 0.14117495715618134, + -1.1187050342559814, + 0.16388438642024994, + -0.3338117301464081, + -0.11240413784980774, + 0.008726236410439014, + -0.5794187188148499, + -0.28249165415763855, + -0.17164753377437592, + -0.13809709250926971, + 0.09689880162477493, + -0.2258555293083191, + -0.07129588723182678, + -0.015294477343559265, + -0.06722518801689148, + 0.22740864753723145, + 0.4822322428226471, + 0.009144107811152935, + 0.11241891235113144, + 0.12156564742326736, + 0.15985681116580963, + 0.10972777009010315, + -0.21470296382904053, + -0.26282814145088196, + 0.530223548412323, + 0.32163918018341064, + 0.25565120577812195, + 0.06727799773216248, + -0.7073482871055603, + 0.019063390791416168, + -0.15896780788898468, + -0.10646619647741318, + 0.21319927275180817, + 0.023521238937973976, + 0.15306086838245392, + -0.20089195668697357, + 0.6239797472953796, + -0.06495245546102524, + 0.2984829843044281, + -0.005029628518968821, + -0.24798424541950226, + 0.1151365414261818, + 0.15143656730651855, + 0.0627003163099289, + -0.08622157573699951, + 0.5532793998718262, + 0.18645204603672028, + -0.4199434220790863, + 0.18466228246688843, + 0.4629444181919098, + -0.11579140275716782, + -0.19583427906036377, + 0.049188774079084396, + 0.16527323424816132, + -0.45052942633628845, + 0.33943137526512146, + -0.23000948131084442, + -0.12981541454792023, + 0.18078674376010895, + -0.21670301258563995, + 0.07381177693605423, + -0.040719226002693176, + 0.115618996322155, + 0.1891051083803177, + 0.017074478790163994, + -0.30659762024879456, + 0.11881404370069504, + 0.12183761596679688, + -0.11458485573530197, + 0.3580172061920166, + 0.03293129801750183, + 0.08483340591192245, + 0.15004120767116547, + -0.023213421925902367, + 0.11114390939474106, + -0.07456807792186737, + 0.24347519874572754, + 0.054390013217926025, + -0.4227900505065918, + 0.31680193543434143, + -0.11612141877412796, + -0.329537957906723, + 0.18808938562870026, + -0.035357825458049774, + -0.3558134138584137, + -0.03428232669830322, + 0.03179483115673065, + -0.5616217851638794, + 0.1104147732257843, + 0.18924717605113983, + 0.3007170259952545, + 0.07679153233766556, + 0.06298815459012985, + -0.020120391622185707, + -0.5644744038581848, + 0.25673893094062805, + -0.17612801492214203, + -0.021223144605755806, + -0.4530586898326874, + 0.19764526188373566, + -0.12454725056886673, + 0.13493140041828156, + 0.3532525599002838, + 0.22731302678585052, + -0.07901956886053085, + 0.1748970001935959, + -0.2389681339263916, + -0.18878968060016632, + -0.3307226598262787, + 0.01776844821870327, + 0.33717453479766846, + 0.04368257522583008, + 0.24586503207683563, + 0.12112834304571152, + -0.2447993904352188, + 0.08346859365701675, + -0.097503162920475, + -0.399975448846817, + -0.4241580069065094, + -0.1501956582069397, + 0.11248153448104858, + -0.74247145652771, + 0.31621891260147095, + -0.1698482185602188, + 0.08876866102218628, + 0.031240567564964294, + -0.023896673694252968, + -0.1277555227279663, + 0.09917959570884705, + -0.03564586490392685, + 0.17340286076068878, + -0.3515503406524658, + -0.04702622815966606, + -0.19211788475513458, + -0.17951945960521698, + -0.1402389407157898, + 0.01010665763169527, + 0.005530992988497019, + -0.024262845516204834, + -0.3539024591445923, + 0.14248783886432648, + 0.02012564428150654, + -0.41196271777153015, + -0.09096042066812515, + 0.04673240706324577, + -0.18630512058734894, + 0.29960212111473083, + 0.04223944619297981, + 0.25878480076789856, + 0.218160942196846, + -0.01669258065521717, + 0.05746651068329811, + 0.40103110671043396, + 0.3652494251728058, + 0.125021830201149, + 0.16079451143741608, + -0.08198466897010803, + -0.0737573578953743, + 0.09879680722951889, + -0.37381711602211, + 0.43048903346061707, + 0.20765133202075958, + 0.037258800119161606, + 0.41095995903015137, + 0.425368994474411, + 0.1328878253698349, + -0.25979602336883545, + 0.037362802773714066, + 0.3034142255783081, + -0.05761513113975525, + 0.10448893904685974, + 0.15887361764907837, + 0.2087748497724533, + 0.45641446113586426, + -0.061875998973846436, + 0.23564893007278442, + 0.41691386699676514, + -0.14164668321609497, + -0.2674359977245331, + 0.1491672545671463, + 0.024081766605377197, + 0.3332526683807373, + -0.17076127231121063, + -0.14266563951969147, + -0.04007117822766304, + 0.018572157248854637, + -0.10670346766710281, + -0.412332683801651, + -0.15576964616775513, + 0.07411069422960281, + -0.16636765003204346, + 0.45528116822242737, + 0.039862558245658875, + 0.026820214465260506, + 0.35721302032470703, + -0.4566836357116699, + -0.22429557144641876, + 0.12909476459026337, + 0.012417403049767017, + -0.6860682964324951, + 0.35795918107032776, + -0.13622771203517914, + 0.26252517104148865, + 0.26259398460388184, + -0.35689735412597656, + -0.33739444613456726, + 0.0818556621670723, + 0.33913663029670715, + -0.16169042885303497, + -0.05352560803294182, + 0.02471647597849369, + -0.0776720866560936, + 0.121330626308918, + 0.41465631127357483, + 0.2792188823223114, + 0.2872600555419922, + 0.6834046244621277, + 0.0899701938033104, + -0.3981269299983978, + -0.04693607613444328, + -0.26971134543418884, + 0.4385688006877899, + -0.17042219638824463, + -0.14931532740592957, + -0.0599999837577343, + -0.043867338448762894, + -0.06377381831407547, + -0.2731002867221832, + -0.04694138094782829, + 0.24441593885421753, + 0.008808339945971966, + -0.2788238525390625, + 0.4257526397705078, + 0.1115109920501709, + -0.08385175466537476, + 0.5048245787620544, + -0.1555798500776291, + -0.24417805671691895, + 0.34888216853141785, + -0.3426004946231842, + 0.22615522146224976, + 0.008808969520032406, + -0.28673502802848816, + -0.3003964424133301, + 0.05139539763331413, + -0.34502169489860535, + -0.2658625841140747, + -0.02449219487607479, + -0.07350200414657593, + 0.11040198057889938, + -0.2807537019252777, + 0.11179796606302261, + 0.009942199103534222, + 0.11017898470163345, + 0.4192347526550293, + 0.22988517582416534, + 0.184701606631279, + -0.12026873975992203, + 0.3479163646697998, + -0.10247620195150375, + -0.24942795932292938, + -0.12268346548080444, + 0.21221022307872772, + -0.19662904739379883, + 0.4461817741394043, + 0.04159945249557495, + 0.14142479002475739, + 0.10593104362487793, + 0.061855997890233994, + -0.20490390062332153, + -0.46822962164878845, + -0.03860314562916756, + -0.16105276346206665, + 0.11965998262166977, + 0.190557599067688, + -0.010256897658109665, + -0.2813721299171448, + -0.1551939845085144, + 0.06711689382791519, + 0.11778897047042847, + 0.14302854239940643, + -0.14107969403266907, + -0.16728468239307404, + 0.49135708808898926, + 0.07164336740970612, + 0.45127585530281067, + -0.1909623146057129, + 0.15665926039218903, + 0.11800483614206314, + -0.5397899746894836, + 0.013170742429792881, + -0.13862930238246918, + -0.3737868368625641, + -0.19253157079219818, + 0.20895199477672577, + 0.3186688721179962, + -0.07408503443002701, + -0.09984464198350906, + 0.060611214488744736, + 0.14543874561786652, + -0.348100870847702, + -0.1540510356426239, + 0.36003580689430237, + -0.06094399094581604, + 0.3937849998474121, + -0.05874299630522728, + -0.34760522842407227, + -0.2623552978038788, + 0.08859413862228394, + -0.2901171147823334, + -0.022667154669761658, + 0.2832697331905365, + -0.07916132360696793, + -0.1425292044878006, + 0.1326168328523636, + -0.13694192469120026, + -0.1418275088071823, + 0.2724510133266449, + -0.24638283252716064, + 0.22834010422229767, + 0.12343543767929077, + -0.221838116645813, + -0.03425018489360809, + -0.18420948088169098, + -0.5320374965667725, + -0.16523142158985138, + 0.1479042023420334, + 0.20431165397167206, + -0.1775394231081009, + 0.17355172336101532, + 0.15988726913928986, + 0.009374994784593582, + -0.20599476993083954, + 0.052467528730630875, + -0.4612429440021515, + 0.4525350034236908, + -0.2156354933977127, + 0.026901021599769592, + -0.08519291132688522, + -0.11716751009225845, + 0.09584935754537582, + 0.07738078385591507, + 0.12694966793060303, + 0.2712271511554718, + 0.20680809020996094, + -0.0024925346951931715, + 0.5756165981292725, + 0.02436993084847927, + 0.28081056475639343, + 0.05823943391442299, + 0.030259931460022926, + 0.06704867631196976, + -0.37896212935447693, + -0.11861979961395264, + 0.3323400020599365, + -0.3686281144618988, + -0.2840619385242462, + 0.1828310340642929, + 0.10877863317728043, + -0.42314836382865906, + -0.4504970610141754, + 0.07378868013620377, + 0.05898439884185791, + -0.07149483263492584, + -0.13513541221618652, + -0.16826260089874268, + -0.12911589443683624, + -0.3820160925388336, + -0.2373398095369339, + 0.21127600967884064, + 0.5085600018501282, + 0.2673085629940033, + 0.2135663777589798, + -0.21979904174804688, + -0.4503312110900879, + 0.30176523327827454, + 0.32215574383735657, + -0.09726715832948685, + 0.11717647314071655, + -0.24285005033016205, + 0.2140655368566513, + 0.47870934009552, + -0.10752428323030472, + 0.16955821216106415, + 0.1446668654680252, + 0.2638823688030243, + 0.10832545161247253, + 0.04220486059784889, + -0.15616054832935333, + 0.038664255291223526, + -0.4631839692592621, + 0.21196091175079346, + -0.2794380187988281, + -0.2038167268037796, + 0.14990754425525665, + -0.19122880697250366, + -0.41357457637786865, + -0.16012141108512878, + 0.22182030975818634, + -0.08449427038431168, + -0.09431207925081253, + 0.10277131199836731, + 0.18134301900863647, + -0.058144256472587585, + -0.38909482955932617, + 0.2445492297410965, + -0.6146760582923889, + -0.30389106273651123, + 0.01361830998212099, + -0.09319836646318436, + -0.18402792513370514, + 0.08696040511131287, + 0.3508175313472748, + 0.7528955340385437, + 0.3685692250728607, + -0.02005128003656864, + 0.343692809343338, + 0.2714267671108246, + 0.3210121691226959, + -0.32269880175590515, + -10.40825366973877, + 0.017601242288947105, + -0.44092902541160583, + 0.7505715489387512, + -0.12366139143705368, + -0.059315115213394165, + 0.13619008660316467, + 0.13976691663265228, + 0.05618780478835106, + 0.20106862485408783, + -0.23765790462493896, + -0.026517145335674286, + 0.3326139748096466, + 0.5158229470252991, + 0.12033945322036743, + 0.11869502812623978, + -0.22470177710056305, + 0.1640101820230484, + -0.0807146355509758, + 0.1930171102285385, + 0.04108398035168648, + 0.35677197575569153, + -0.2760326564311981, + 0.20379598438739777, + -0.125321164727211, + -0.44563785195350647, + -0.19928254187107086, + 0.49136045575141907, + 0.3891371786594391, + -0.4508388936519623, + 0.2920176684856415, + 0.32036012411117554, + -0.23178739845752716, + 0.4702413082122803, + -0.11725304275751114, + -0.105715811252594, + 0.026271715760231018, + 0.1812642365694046, + 0.41709104180336, + -0.10408627986907959, + 0.1026412844657898, + -0.19996733963489532, + 0.3539188802242279, + 0.044561516493558884, + -0.12356222420930862, + -0.5086995959281921, + -0.16619712114334106, + -1.6481399536132812, + 0.13749819993972778, + 0.3567114770412445, + 0.28401145339012146, + 0.11268830299377441, + 0.19846904277801514, + 0.40098345279693604, + -0.15096034109592438, + -0.09812053292989731, + -0.4134500324726105, + -0.049528613686561584, + 0.09485820680856705, + -0.013139300979673862, + 0.14825382828712463, + -0.13923116028308868, + 0.35664406418800354, + 0.004551122430711985, + -0.3896462917327881, + 0.0828138217329979, + 0.07651215046644211, + -0.19701051712036133, + -0.461948961019516, + -0.7615580558776855, + -0.4095878601074219, + 0.0819731056690216, + -0.17821800708770752, + -0.22230295836925507, + 0.3233569860458374, + -0.007336615119129419, + -0.23833422362804413, + 0.39191046357154846, + 0.032665178179740906, + 0.3418463170528412, + 0.32827436923980713, + -0.10585292428731918, + 0.26254525780677795, + -0.20861183106899261, + -0.2828517258167267, + -0.21104390919208527, + 0.2639690637588501, + 0.5363162755966187, + 0.03969647362828255, + -0.31623703241348267, + 0.023540453985333443, + 0.3397761881351471, + 0.11036422848701477, + -0.12211201339960098, + -0.4517713487148285, + -0.027815021574497223, + 0.06292741745710373, + 0.08483344316482544, + 0.08375366777181625, + -0.21984009444713593, + -0.21042390167713165, + 0.13507585227489471, + -0.11865595728158951, + -0.5174440741539001, + -0.5089638829231262, + 0.21873657405376434, + 0.1296745091676712, + 0.17031316459178925, + 0.18363533914089203, + -0.12844663858413696, + -0.2018030434846878, + -0.008486375212669373, + 0.37689754366874695, + 0.3099379539489746, + 0.23536650836467743, + -0.15182483196258545, + 0.059665072709321976, + -0.3599013090133667, + -0.15936322510242462, + -0.14405733346939087, + 0.49020853638648987, + -0.18524299561977386, + 0.025846228003501892, + 0.6813861727714539, + 0.06894811242818832, + 0.007173473481088877, + 0.9081423878669739, + -0.4097316563129425, + 0.32971152663230896, + -0.0446179062128067, + 0.19561684131622314, + 0.1985386162996292, + -0.3553820550441742, + 0.22090375423431396, + 0.38992586731910706, + -0.2867406904697418, + 0.6361806988716125, + 0.4314461052417755, + -0.28546491265296936, + -0.05208525061607361, + -0.004079336766153574, + 0.42014583945274353, + 0.1342659592628479, + 0.04198996350169182, + 0.02967180870473385, + -0.20365439355373383, + -0.4606381356716156, + -0.017954250797629356, + -0.29516854882240295, + -0.20204538106918335, + -0.28662458062171936, + 0.15654490888118744, + 0.12256547063589096, + 0.01634504459798336, + 0.2017688900232315, + 0.22405584156513214, + 0.09737098962068558, + -0.30528154969215393, + -0.37543025612831116, + -0.071438267827034, + -0.09059157222509384, + 1.0452958345413208, + -0.0796094462275505, + -0.04549512267112732, + -0.03188043832778931, + 0.09997353702783585, + -0.16423743963241577, + 0.19417624175548553, + 0.05807309225201607, + -0.0678180456161499, + -0.46195724606513977, + 0.3389154374599457, + 0.20416176319122314, + -0.5145459175109863, + -0.03079431690275669, + -0.07592789828777313, + -0.1882951855659485, + -0.06498304009437561, + -0.08902623504400253, + 0.12206214666366577, + 0.32246077060699463, + 0.09924134612083435, + 0.16828472912311554, + -0.35444164276123047, + -0.10631731897592545, + 0.13144825398921967, + 0.30434897541999817, + 0.05582847818732262, + -0.3187164068222046, + -0.176213800907135, + -0.4796113073825836, + 0.2694871723651886, + -0.36351969838142395, + -0.0713631883263588, + 0.07081777602434158, + 0.028287231922149658, + -0.2617647647857666, + 0.09145715087652206, + -0.019603872671723366, + 0.035746000707149506, + -0.2948511242866516, + 0.5913751721382141, + 0.23290474712848663, + -0.271211713552475, + 0.2973516881465912, + -0.10398947447538376, + 0.10752678662538528, + 0.1278497874736786, + -0.28075602650642395, + 0.005139946937561035, + -0.3862721025943756 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_064.json b/src/benchmark/output/results/results_graph_064.json new file mode 100644 index 0000000..3301b44 --- /dev/null +++ b/src/benchmark/output/results/results_graph_064.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 44-year-old asymptomatic nulliparous woman. She presented with a palpable pelvic mass, which was later identified as an anterior wall uterine leiomyoma on gynecological sonography.\n\n**Timeline of Diagnoses and Treatments:**\n\n1. **Step 1 (N1):**\nThe patient presented with a palpable pelvic mass in January 2010. Physical examination revealed an enlarged uterus, which was mobile, firm in consistency, with no uterine or forniceal tenderness, and mild swelling in the right pubic area.\n\n2. **Step 2 (N2):**\nGynecological sonography on January 30, 2010, identified an anterior wall uterine leiomyoma, measuring 112\u00d794\u00d7108 mm, accompanied by ascites measuring 65\u00d742 mm and a 20\u00d714 mm mass.\n\n3. **Step 3 (N3):**\nLaparotomic myomectomy was performed on February 17, 2020, with incidental discovery of a pelvic tumor. The pelvic tumor described as a cauliflower-like lesion disseminated across the right pelvic wall, cul-de-sac, anterior uterine surface, bladder, and colon.\n\n4. **Step 4 (N4):**\nBiopsy of the sigmoid colon serosa was performed, revealing proliferative mesothelial cells without significant atypia or necrosis. Post-myomectomy CT scan revealed seeding in the lower pelvis, characterized by multiple small, heterogeneous, enhancing nodules on the peritoneum and a prominent soft-tissue mass in the right adnexa.\n\n5. **Step 5 (N5):**\nAnother CT scan performed on February 26th, 2020, revealed moderate ascites and nonspecific peritoneal thickening. Histopathology identified bland mesothelial cells without invasion, and immunohistochemistry showed no significant staining loss. Differential diagnosis included well-differentiated papillary mesothelioma, epithelioid peritoneal mesothelioma, and florid mesothelial hyperplasia; well-differentiated papillary mesothelioma was highly suspected.\n\n**Outcomes:**\n\nThe patient underwent a series of procedures, including laparotomic myomectomy, biopsy, histopathology, and immunohistochemistry. The results of these procedures led to the diagnosis of a pelvic tumor with seeding in the lower pelvis. Despite the presence of seeding, the patient's condition was managed conservatively, with no further surgical interventions reported.\n\n**Conclusion:**\nThis case highlights the complexities of managing a patient with a pelvic mass and subsequent discovery of a pelvic tumor with seeding. The patient's presentation and diagnostic workup led to a series of procedures that ultimately resulted in a diagnosis of a mesothelial tumor. While the patient's condition was managed conservatively, further follow-up is necessary to monitor for any progression or recurrence of the disease.\n\n**Recommendations:**\n\n1. Further imaging studies should be performed to assess the extent of seeding and monitor for any progression or recurrence of the disease.\n2. The patient should be followed up regularly with a multidisciplinary team, including oncologists, radiologists, and pathologists.\n3. Additional diagnostic procedures, such as PET scans or CT scans, may be necessary to further evaluate the patient's condition.\n\n**Limitations:**\n\nThis case report is limited by its retrospective nature and the availability of data. Further research is needed to better understand the management and outcomes of patients with pelvic tumors and seeding.", + "bertscore": { + "precision": [ + 0.514549732208252 + ], + "recall": [ + 0.6133989691734314 + ], + "f1": [ + 0.5596429109573364 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 5, + "edge_count": 4, + "avg_in_degree": 0.8, + "density": 0.2 + }, + "trajectory_embedding": [ + 0.33560317754745483, + -0.032035164535045624, + -0.11456692218780518, + 0.1346358358860016, + 0.020706722512841225, + 0.00046664924593642354, + 0.1556069552898407, + 0.050799597054719925, + 0.29955029487609863, + -0.3043522834777832, + -0.21893103420734406, + 0.13041041791439056, + -0.5819693207740784, + -0.027642954140901566, + -0.3483089804649353, + 0.05678959935903549, + 0.08175595104694366, + 0.18470464646816254, + 0.07032836973667145, + -0.1516115516424179, + -0.3795337677001953, + 0.032354261726140976, + -0.34762853384017944, + -0.22245562076568604, + 0.2131357640028, + -0.0658518522977829, + 0.011187409982085228, + 0.4108278751373291, + 0.22763344645500183, + 0.22971227765083313, + 0.15224574506282806, + 0.1498984396457672, + -0.15490344166755676, + -0.04655313491821289, + -0.22414235770702362, + 0.4316777288913727, + 0.3122991621494293, + 0.3148569166660309, + -0.10164471715688705, + 0.11181680858135223, + -0.11857211589813232, + 0.072939932346344, + 0.7276207804679871, + 0.5894370675086975, + 0.5643633008003235, + -0.5973739624023438, + 0.045762799680233, + 0.42931610345840454, + -0.6271008253097534, + -0.33162400126457214, + 0.3009917736053467, + 0.8356558680534363, + 0.6982433199882507, + -0.13345390558242798, + 0.427293062210083, + -0.055330127477645874, + -0.1970469057559967, + -0.2082684487104416, + -0.28132063150405884, + 0.0707617849111557, + 0.08441466093063354, + -0.03799280896782875, + -0.046762190759181976, + 0.10460342466831207, + -0.3640845715999603, + -0.22343210875988007, + -0.3437555730342865, + -0.05723061040043831, + -0.02330029010772705, + -0.43740272521972656, + -0.18157999217510223, + -0.1682252585887909, + -0.13557171821594238, + -0.017114270478487015, + 0.0007291227811947465, + -0.1402357667684555, + 0.2427610456943512, + 0.07756771892309189, + -0.14562609791755676, + -0.08803218603134155, + -0.05296463891863823, + -0.06846114248037338, + 0.23501446843147278, + 0.2003447562456131, + -0.46018290519714355, + 0.07143741846084595, + -0.09776132553815842, + -0.0718153566122055, + -0.26666712760925293, + 0.27199918031692505, + 0.2733019292354584, + -0.14292141795158386, + -0.017898693680763245, + -0.04234260320663452, + 0.27673250436782837, + -0.020977124571800232, + 0.25201481580734253, + 0.4361487030982971, + 1.0113563537597656, + 0.12119171768426895, + 0.20306091010570526, + 0.23786409199237823, + 0.26452866196632385, + -0.12299710512161255, + 0.4842044413089752, + 0.06933087855577469, + 0.18963052332401276, + -0.44958558678627014, + -0.06302215158939362, + -0.01591341756284237, + -0.0806119441986084, + -0.03527894616127014, + 0.0203951857984066, + -0.43035799264907837, + 0.05068916082382202, + 0.019635310396552086, + -0.1544349640607834, + 0.011310997419059277, + -0.02003743126988411, + -0.25159940123558044, + -0.02532372809946537, + -0.21257519721984863, + 0.3038928508758545, + 0.35977864265441895, + -0.4075821042060852, + 0.03794197738170624, + -0.12353910505771637, + 0.25676435232162476, + -0.0716257318854332, + 0.2026764452457428, + -0.5808151364326477, + 0.0740826204419136, + -0.08215422183275223, + 0.4875335693359375, + -0.14100992679595947, + 0.14344120025634766, + -0.5816518664360046, + 0.2766825556755066, + -1.0389540195465088, + 0.2509419322013855, + -0.3951149582862854, + -0.01660017855465412, + 0.14995422959327698, + -0.22423258423805237, + -0.1081976667046547, + -0.12171987444162369, + -0.1163778081536293, + 0.29509443044662476, + 0.09899212419986725, + 0.05243415758013725, + -0.24585866928100586, + 0.18484219908714294, + 0.3383546471595764, + 0.1773250550031662, + 0.16008874773979187, + 0.23528365790843964, + 0.1562768518924713, + 0.32315993309020996, + 0.24902641773223877, + -0.10990337282419205, + -0.0147356316447258, + 0.1579272598028183, + 0.0060639409348368645, + -0.36261242628097534, + 0.16927000880241394, + -0.6561983823776245, + 0.26251330971717834, + -0.4186895489692688, + 0.23464255034923553, + -0.10785496234893799, + -0.1942734271287918, + 0.3496845066547394, + -0.1438242644071579, + 0.40089112520217896, + 0.28135114908218384, + 0.27764075994491577, + 0.12174657732248306, + -0.053034208714962006, + 0.1735358089208603, + 0.1698169857263565, + 0.09189990907907486, + -0.06263132393360138, + 0.6606196165084839, + 0.12165489047765732, + -0.17571207880973816, + 0.30642104148864746, + 0.38385438919067383, + -0.14679065346717834, + -0.17179706692695618, + -0.044077347964048386, + 0.4863673150539398, + -0.21029385924339294, + 0.4112943112850189, + -0.2600322663784027, + -0.01379256509244442, + 0.1494172066450119, + -0.2872883379459381, + -0.18621478974819183, + 0.13532006740570068, + -0.028694670647382736, + 0.3737735152244568, + 0.15056683123111725, + -0.13684657216072083, + 0.19906941056251526, + 0.23984622955322266, + 0.08346773684024811, + 0.38823848962783813, + 0.275332510471344, + 0.13147124648094177, + -0.22103330492973328, + -0.2693495750427246, + 0.16843147575855255, + -0.003161512315273285, + 0.12250424921512604, + 0.0422867126762867, + -0.12192821502685547, + 0.3981272280216217, + -0.1597909927368164, + -0.1717352718114853, + 0.30824556946754456, + -0.18251577019691467, + -0.03598945215344429, + 0.3633285164833069, + -0.1353255808353424, + -0.2657017111778259, + 0.06870225071907043, + 0.022413786500692368, + 0.20148810744285583, + 0.21683335304260254, + 0.07008782029151917, + 0.11414499580860138, + -0.26550567150115967, + 0.2345420867204666, + -0.13706141710281372, + -0.08283475041389465, + -0.22081542015075684, + 0.1407686471939087, + -0.24368230998516083, + -0.214861199259758, + 0.4414401948451996, + -0.2712688446044922, + -0.2730482518672943, + 0.06619233638048172, + -0.18487019836902618, + -0.1616365909576416, + -0.38689324259757996, + 0.05900753661990166, + 0.2616967260837555, + 0.0634087473154068, + 0.2613607943058014, + 0.08268435299396515, + -0.20808109641075134, + 0.24636872112751007, + -0.27626949548721313, + -0.17884041368961334, + -0.38042113184928894, + -0.11751596629619598, + -0.1295323520898819, + -0.2846967577934265, + 0.09537354856729507, + 0.11598465591669083, + -0.13226722180843353, + -0.07906992733478546, + -0.4564613401889801, + -0.1831643432378769, + -0.10851426422595978, + -0.045731447637081146, + 0.15401139855384827, + 0.0413057766854763, + 0.2574419379234314, + -0.32416266202926636, + -0.25036460161209106, + -0.10724109411239624, + 0.027393454685807228, + 0.18335479497909546, + 0.24615971744060516, + -0.07185234874486923, + 0.01997610554099083, + 0.2149784117937088, + -0.4187377393245697, + -0.5654075145721436, + 0.22487160563468933, + -0.20692682266235352, + 0.14642928540706635, + -0.001559130847454071, + 0.1295344978570938, + 0.38583385944366455, + -0.1442580223083496, + 0.09612281620502472, + 0.5535184741020203, + 0.481480211019516, + 0.10034594684839249, + 0.03558123856782913, + 0.07914243638515472, + 0.02632269822061062, + -0.06944473832845688, + -0.381732702255249, + 0.3589501976966858, + -0.08561427146196365, + 0.002281930996105075, + 0.114282988011837, + 0.20286378264427185, + -0.1481705605983734, + -0.4674918055534363, + -0.31998685002326965, + 0.5454086661338806, + 0.32933488488197327, + -0.03318002074956894, + -0.07517983019351959, + 0.2862533926963806, + 0.6337651610374451, + 0.013185607269406319, + -0.23809675872325897, + 0.07214036583900452, + -0.04003562405705452, + -0.2164071500301361, + -0.14531919360160828, + 0.1477869600057602, + 0.27610671520233154, + -0.1055360808968544, + -0.20622774958610535, + 0.47358861565589905, + -0.1402096003293991, + -0.07512059807777405, + -0.01859874837100506, + -0.037761442363262177, + -0.02976355329155922, + -0.23252353072166443, + 0.19876812398433685, + -0.06478234380483627, + -0.1322105973958969, + 0.39888936281204224, + -0.05361371114850044, + -0.3154321610927582, + 0.29998666048049927, + 0.014129179529845715, + -0.3622787296772003, + 0.25742030143737793, + -0.03589904308319092, + -0.16614016890525818, + 0.3914344012737274, + 0.003187321126461029, + -0.0462554469704628, + -0.2460150271654129, + 0.33470723032951355, + 0.1183033436536789, + -0.18595406413078308, + -0.21344678103923798, + -0.13997238874435425, + 0.21350303292274475, + 0.6959315538406372, + -0.10287053883075714, + 0.21839690208435059, + 0.5774563550949097, + -0.09644024819135666, + -0.19528737664222717, + -0.027076173573732376, + 0.2793784737586975, + 0.25700095295906067, + -0.35905465483665466, + -0.08900097757577896, + -0.3963938355445862, + -0.05389058589935303, + 0.20246699452400208, + -0.18120642006397247, + 0.03622838109731674, + 0.21789076924324036, + 0.0780276507139206, + 0.15445590019226074, + 0.10744788497686386, + 0.13094612956047058, + 0.009495136328041553, + 0.3329838216304779, + 0.07381661236286163, + -0.0456281341612339, + 0.20400682091712952, + -0.12625308334827423, + 0.3132331967353821, + -0.19864359498023987, + -0.39620643854141235, + -0.49883824586868286, + -0.2061084806919098, + -0.27710872888565063, + -0.24107220768928528, + 0.030064856633543968, + -0.05576012283563614, + -0.010668491944670677, + -0.06476755440235138, + 0.3926456868648529, + -0.06282313168048859, + 0.2021419107913971, + -0.07967887818813324, + 0.6277588605880737, + -0.11692110449075699, + -0.40754079818725586, + -0.02295638993382454, + 0.1284984052181244, + 0.21615925431251526, + -0.22891780734062195, + -0.12953020632266998, + -0.29672563076019287, + 0.43222755193710327, + 0.08325879275798798, + -0.1885521411895752, + -0.07056255638599396, + -0.08609067648649216, + -0.19559144973754883, + -0.2925633192062378, + -0.4121498167514801, + -0.16911400854587555, + -0.10310044139623642, + -0.07868444174528122, + 0.2910645306110382, + -0.26348617672920227, + -0.4337734580039978, + -0.01331852376461029, + 0.3241409659385681, + 0.15768426656723022, + -0.07038985192775726, + 0.2847890257835388, + 0.01419221144169569, + 0.03919692710042, + 0.4566080570220947, + -0.011020423844456673, + 0.10359295457601547, + 0.15255188941955566, + -0.1628478467464447, + -0.14622226357460022, + 0.03475236892700195, + -0.27461326122283936, + -0.16276094317436218, + 0.285914808511734, + 0.07612387835979462, + 0.2138102501630783, + 0.1366858184337616, + 0.07779347151517868, + 0.22664165496826172, + -0.41434383392333984, + -0.05467502027750015, + 0.31234967708587646, + 0.2673739790916443, + 0.4871460497379303, + -0.2253309190273285, + -0.14807210862636566, + -0.2353394478559494, + -0.09087810665369034, + -0.39372682571411133, + 0.18194475769996643, + 0.005927999969571829, + -0.06474979221820831, + -0.24133582413196564, + 0.06416954100131989, + -0.02843792364001274, + -0.054334986954927444, + 0.24924448132514954, + 0.01792779006063938, + 0.0785948634147644, + -0.06673279404640198, + -0.36065083742141724, + -0.05349283665418625, + -0.19382253289222717, + -0.4077865481376648, + -0.4806350767612457, + 0.6206315159797668, + 0.29612261056900024, + 0.04115890711545944, + 0.23263534903526306, + 0.1921098381280899, + -0.2738867402076721, + -0.3647075891494751, + 0.09540901333093643, + -0.006288842763751745, + 0.5018874406814575, + 0.06922896206378937, + -0.09539033472537994, + 0.20160822570323944, + -0.5012338757514954, + 0.17781813442707062, + 0.20920196175575256, + -0.04464862868189812, + 0.4938294291496277, + 0.3065129816532135, + 0.3138893246650696, + 0.34178298711776733, + 0.20569360256195068, + -0.14844182133674622, + 0.3235245943069458, + 0.1012946143746376, + -0.08699314296245575, + -0.24855592846870422, + -0.062219809740781784, + 0.3322758078575134, + -0.24630972743034363, + 0.2030840367078781, + 0.12496839463710785, + 0.34996530413627625, + -0.32092684507369995, + -0.23372086882591248, + -0.1261737048625946, + -0.04753397777676582, + -0.22952120006084442, + -0.2769433856010437, + -0.24786034226417542, + 0.12369358539581299, + -0.509034276008606, + 0.10922491550445557, + 0.2630237936973572, + 0.19023403525352478, + 0.1711912453174591, + -0.024832207709550858, + -0.32518839836120605, + -0.3768353760242462, + -0.02831302583217621, + 0.28463083505630493, + -0.06335188448429108, + 0.0639704167842865, + -0.12866613268852234, + 0.11760225147008896, + 0.5313243269920349, + -0.03812999650835991, + -0.06942366063594818, + -0.1156844049692154, + -0.027204781770706177, + -0.0548255555331707, + 0.14261110126972198, + -0.07800968736410141, + 0.07844690978527069, + -0.30221810936927795, + 0.1406601071357727, + -0.24469947814941406, + -0.3127005994319916, + 0.2706459164619446, + -0.1956145465373993, + -0.2804684638977051, + -0.3323759138584137, + 0.33920666575431824, + -0.2830282151699066, + 0.022267667576670647, + 0.014432420954108238, + 0.4148065149784088, + 0.0969894751906395, + -0.03911527618765831, + 0.04702569544315338, + -0.403374582529068, + -0.09830044955015182, + 0.05851547792553902, + -0.1453237533569336, + 0.1991727650165558, + -0.03692428022623062, + 0.36958998441696167, + 0.3868367671966553, + 0.16010256111621857, + -0.3434354364871979, + -0.025588780641555786, + 0.19180041551589966, + 0.20981967449188232, + -0.30631643533706665, + -10.883829116821289, + 0.12041393667459488, + -0.07875798642635345, + 0.5608879923820496, + -0.1739535629749298, + 0.06960147619247437, + 0.04744551703333855, + 0.028127823024988174, + 0.11305008083581924, + 0.1510947048664093, + -0.21851029992103577, + 0.21622943878173828, + 0.2982082962989807, + 0.32255497574806213, + -0.12886327505111694, + -0.038390081375837326, + -0.20238849520683289, + 0.2114648073911667, + -0.142917662858963, + 0.13894900679588318, + 0.15419067442417145, + 0.32208576798439026, + -0.06742260605096817, + 0.2518003582954407, + 0.20575420558452606, + -0.33785536885261536, + -0.3811854124069214, + 0.5696561336517334, + 0.18351851403713226, + -0.3555838465690613, + 0.5340484380722046, + 0.14739397168159485, + -0.23907318711280823, + -0.03446248918771744, + -0.07289380580186844, + 0.01998709701001644, + -0.04670310392975807, + -0.01828787848353386, + 0.1966160088777542, + 0.014986643567681313, + -0.071186862885952, + -0.3916344940662384, + -0.034107841551303864, + 0.3472280502319336, + -0.06375177204608917, + -0.3470641076564789, + -0.19369371235370636, + -1.3896539211273193, + 0.2696584463119507, + 0.15727689862251282, + 0.5652212500572205, + 0.03639747202396393, + 0.09248635917901993, + 0.09212083369493484, + -0.4373280107975006, + 0.19878676533699036, + -0.3496972918510437, + -0.03144214674830437, + 0.04079236462712288, + -0.24454693496227264, + 0.04831955209374428, + -0.26963478326797485, + 0.23124714195728302, + -0.3462902009487152, + -0.3817715644836426, + 0.25806501507759094, + -0.1288265585899353, + 0.026332980021834373, + -0.06867487728595734, + -0.036075081676244736, + -0.6097730994224548, + -0.14585956931114197, + -0.025156598538160324, + 0.07111582905054092, + 0.5177943110466003, + 0.049514807760715485, + -0.529831051826477, + 0.13862037658691406, + -0.10304449498653412, + 0.48017340898513794, + 0.07198216766119003, + -0.04638935998082161, + 0.20140233635902405, + -0.22813229262828827, + -0.15570572018623352, + 0.07385534793138504, + 0.17245908081531525, + 0.5296483039855957, + -0.07032891362905502, + 0.08131518214941025, + 0.10733769088983536, + 0.136903777718544, + -0.1809205710887909, + -0.1695035696029663, + -0.3725152611732483, + 0.22701768577098846, + -0.0445411391556263, + -0.06289853900671005, + 0.20032009482383728, + -0.12726131081581116, + -0.09268026053905487, + -0.1012594923377037, + -0.03822965547442436, + -0.44754868745803833, + -0.328389048576355, + 0.3224477469921112, + 0.11855292320251465, + 0.3316042125225067, + 0.19742831587791443, + 0.10067053884267807, + 0.06955144554376602, + 0.013529536314308643, + 0.296440452337265, + 0.47831887006759644, + 0.026710275560617447, + -0.11027918756008148, + -0.12863551080226898, + -0.0695943832397461, + -0.41708260774612427, + 0.1842915117740631, + 0.3275899291038513, + -0.23778459429740906, + 0.29992133378982544, + 0.6300154328346252, + 0.0042360154911875725, + -0.11082752048969269, + 1.0828417539596558, + -0.1962750256061554, + 0.24483975768089294, + -0.15790808200836182, + 0.1336795836687088, + -0.30219465494155884, + -0.18810676038265228, + 0.1910901963710785, + 0.32831501960754395, + -0.2948533892631531, + 0.5665644407272339, + 0.12137497961521149, + -0.5611319541931152, + 0.12389020621776581, + -0.42432349920272827, + 0.46737805008888245, + 0.3487494885921478, + 0.24224750697612762, + -0.20100092887878418, + -0.47824016213417053, + -0.10228542238473892, + 0.03461415320634842, + -0.37174034118652344, + -0.08808693289756775, + -0.18931035697460175, + 0.042588599026203156, + -0.10387172549962997, + -0.2862917482852936, + 0.35212647914886475, + 0.0404648557305336, + -0.24441155791282654, + -0.21441979706287384, + -0.529125988483429, + -0.12590175867080688, + 0.13167528808116913, + 0.5254259705543518, + -0.024559425190091133, + -0.112767294049263, + -0.0473635196685791, + 0.1579911857843399, + 0.02512630820274353, + 0.05093712732195854, + 0.09656459093093872, + 0.005491861142218113, + -0.5059370994567871, + -0.017622647807002068, + 0.14112888276576996, + -0.1867193877696991, + -0.2941269874572754, + -0.4297026991844177, + 0.14765973389148712, + -0.23978658020496368, + -0.0937226191163063, + 0.1619885265827179, + 0.10663392394781113, + 0.009553092531859875, + 0.15573135018348694, + -0.31531357765197754, + 0.15864798426628113, + -0.028239702805876732, + 0.3077250123023987, + -0.02186582051217556, + -0.3958908021450043, + -0.3308035731315613, + -0.42296576499938965, + 0.3263550400733948, + -0.14208748936653137, + 0.0496726855635643, + 0.0726565569639206, + 0.2825194299221039, + -0.23277647793293, + -0.09760838001966476, + -0.4335680902004242, + 0.10552122443914413, + -0.3766399919986725, + -0.018738679587841034, + 0.38841864466667175, + -0.19129742681980133, + -0.0953783243894577, + -0.14685487747192383, + 0.036095038056373596, + -0.03208252042531967, + -0.37713712453842163, + 0.22937937080860138, + -0.07395924627780914 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_065.json b/src/benchmark/output/results/results_graph_065.json new file mode 100644 index 0000000..5bd6f14 --- /dev/null +++ b/src/benchmark/output/results/results_graph_065.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 56-year-old male with occupational exposure to asbestos as a tunnel inspector. He presented to the emergency room with cough, low back pain, and abdominal pain.\n\n**Timeline of Diagnoses:**\n\n1. **Initial Presentation (October 28, 2023):** The patient was evaluated at the emergency room due to symptoms of cough, low back pain, and abdominal pain. A CT angiogram of the chest was performed, which revealed a large left pleural effusion tracking to the lung apex with near complete opacification of the left lower lobe, a 6-cm left lower lobe mass, and 4-cm left hilar mass with mediastinal adenopathy and pleural nodularity.\n2. **Surgical Intervention (November 9, 2023):** The patient underwent left video-assisted thorascopic surgery with total left lung decortication, removal of fibrin deposits, and placement of a pleural drainage catheter requiring daily drainage.\n3. **Pathology and Imaging Results (November 29, 2023):** Pathology from the left pleural mass revealed malignant epithelial neoplasm with 70% spindle cell and 30% epithelioid cell components consistent with biphasic MPM. PET imaging confirmed advanced disease with extensive left-sided pleural involvement, bilateral mediastinal adenopathy, adrenal, and scattered bone lesions.\n4. **Immune Checkpoint Inhibitor Therapy (December 4, 2023):** The patient began receiving immune checkpoint inhibitor therapy with nivolumab and ipilimumab, which showed initial improvement in pleural drainage output.\n\n**Timeline of Symptoms:**\n\n1. **Initial Presentation:** Cough, low back pain, and abdominal pain.\n2. **Post-Surgical Complication (December 4, 2023):** Lower back pain, lower extremity numbness, and inability to walk after one cycle of therapy.\n\n**Treatment Outcomes:**\nThe patient's treatment with immune checkpoint inhibitors showed initial improvement in pleural drainage output. However, a new symptom of lower back pain, lower extremity numbness, and inability to walk developed after one cycle of therapy, indicating potential side effects or progression of the disease.\n\nThis clinical case report highlights the importance of early diagnosis and treatment of malignant pleural mesothelioma (MPM), as well as the need for careful monitoring of patients receiving immune checkpoint inhibitors.", + "bertscore": { + "precision": [ + 0.7149702310562134 + ], + "recall": [ + 0.7142810821533203 + ], + "f1": [ + 0.7146255373954773 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 6, + "edge_count": 5, + "avg_in_degree": 0.8333333333333334, + "density": 0.16666666666666666 + }, + "trajectory_embedding": [ + 0.1652541607618332, + 0.039438892155885696, + -0.14641372859477997, + 0.18929584324359894, + 0.14937780797481537, + 0.1875849962234497, + -0.10926973819732666, + 0.32221996784210205, + 0.5160953402519226, + -0.21352215111255646, + -0.1066395565867424, + 0.04818613827228546, + -0.5228782296180725, + -0.10994511842727661, + -0.18322902917861938, + 0.2892516553401947, + -0.11534184217453003, + 0.24044062197208405, + 0.026726022362709045, + -0.21000735461711884, + -0.39076241850852966, + 0.10443174093961716, + -0.5317621827125549, + 0.018876194953918457, + 0.12694860994815826, + -0.056921202689409256, + 0.4481050670146942, + 0.6197983622550964, + 0.3282276391983032, + 0.4314173758029938, + 0.030062491074204445, + -0.23560656607151031, + 0.19153659045696259, + -0.07723374664783478, + -0.28160423040390015, + 0.24283885955810547, + -0.001099617569707334, + 0.32391342520713806, + -0.1220952495932579, + 0.05494336411356926, + 0.033832333981990814, + 0.09665459394454956, + 0.7754995822906494, + 0.1367119997739792, + 0.49934151768684387, + -0.7912638783454895, + -0.12291689962148666, + 0.5892982482910156, + -0.5710733532905579, + -0.4964151382446289, + 0.25105077028274536, + 0.7749610543251038, + 0.5300043225288391, + -0.4333530366420746, + 0.4474921226501465, + -0.24401365220546722, + -0.2492191195487976, + -0.43112626671791077, + -0.34976091980934143, + -0.06265155225992203, + 0.011767860502004623, + -0.2936820387840271, + 0.42574942111968994, + -0.42795681953430176, + -0.07472843676805496, + -0.2092389613389969, + -0.2546403408050537, + 0.051758017390966415, + 0.058273136615753174, + -0.35516366362571716, + -0.15378005802631378, + -0.2871567904949188, + -0.04860498383641243, + 0.014323265291750431, + 0.04791118577122688, + 0.02426183968782425, + 0.3211006224155426, + -0.19132550060749054, + 0.23720364272594452, + 0.12217091768980026, + -0.24488665163516998, + -0.041259121149778366, + -0.06983067840337753, + 0.4556575119495392, + -0.38383063673973083, + -0.03157388046383858, + -0.2471301108598709, + -0.26424941420555115, + -0.3909715712070465, + 0.10016978532075882, + 0.031601689755916595, + -0.3851616382598877, + 0.04937880113720894, + -0.1855396181344986, + 0.06385422497987747, + 0.08545226603746414, + 0.5294673442840576, + 0.08534722775220871, + 0.8456420302391052, + -0.08549866080284119, + 0.10749156028032303, + -0.10654956102371216, + 0.2888645827770233, + -0.06400411576032639, + 0.36680254340171814, + 0.049483466893434525, + 0.08266838639974594, + -0.5948764681816101, + 0.30583080649375916, + 0.5356130599975586, + 0.015617611818015575, + -0.23994795978069305, + 0.0827704444527626, + -0.3229733407497406, + 0.30386385321617126, + 0.20920944213867188, + 0.06012508273124695, + 0.21136145293712616, + 0.17870204150676727, + -0.31595978140830994, + -0.23347772657871246, + -0.011881351470947266, + 0.33385777473449707, + 0.11741405725479126, + -0.5669156908988953, + -0.026554131880402565, + -0.19358831644058228, + 0.06251541525125504, + 0.013346116058528423, + -0.026631169021129608, + -0.47243937849998474, + -0.11795071512460709, + 0.1069725826382637, + 0.10357528924942017, + 0.008108035661280155, + 0.19503797590732574, + -0.31370091438293457, + 0.16570349037647247, + -1.0394198894500732, + 0.3344894349575043, + -0.32096317410469055, + -0.16416674852371216, + 0.01839795894920826, + -0.5803526043891907, + -0.3326651155948639, + -0.1735600084066391, + -0.216802716255188, + 0.14950044453144073, + -0.13621945679187775, + -0.17232643067836761, + -0.10140856355428696, + -0.008820722810924053, + 0.17567966878414154, + 0.5561952590942383, + 0.15486718714237213, + 0.008536783047020435, + 0.07802999764680862, + 0.1812390834093094, + -0.038269806653261185, + -0.16715329885482788, + 0.10598593950271606, + 0.4629107415676117, + 0.2273872047662735, + 0.00950538832694292, + -0.1037626788020134, + -0.6091808676719666, + -0.027142243459820747, + -0.14075349271297455, + 0.15631546080112457, + 0.18644209206104279, + -0.28414398431777954, + 0.11554819345474243, + -0.5001252889633179, + 0.6827899813652039, + -0.0455966480076313, + 0.3976258933544159, + 0.09679439663887024, + -0.041496288031339645, + 0.2532375752925873, + 0.21561479568481445, + 0.18428118526935577, + -0.34162986278533936, + 0.7105341553688049, + 0.1768902689218521, + -0.19923712313175201, + 0.3483537435531616, + 0.32274457812309265, + -0.04187555983662605, + -0.20554129779338837, + 0.09012087434530258, + 0.49703142046928406, + -0.21993057429790497, + 0.5850445628166199, + -0.21109718084335327, + -0.036739248782396317, + 0.19470208883285522, + -0.3020554482936859, + -0.16263176500797272, + -0.08351150900125504, + 0.05219811201095581, + 0.3030013144016266, + 0.03692315146327019, + -0.3244953155517578, + -0.042577292770147324, + 0.13607238233089447, + -0.06327202171087265, + 0.32354435324668884, + -0.08207744359970093, + 0.09247535467147827, + 0.07329896092414856, + -0.18565885722637177, + 0.23337139189243317, + -0.17554421722888947, + 0.29211652278900146, + -0.05942178890109062, + -0.3735121488571167, + 0.3001287281513214, + -0.06274455785751343, + -0.15084581077098846, + 0.2736443281173706, + 0.1128845140337944, + -0.40210017561912537, + -0.10129330307245255, + -0.05615416169166565, + -0.6754670739173889, + 0.17577815055847168, + 0.23239417374134064, + 0.30690014362335205, + 0.27442416548728943, + 0.147186741232872, + -0.07401994615793228, + -0.3560217320919037, + 0.2167888730764389, + -0.06775251775979996, + -0.054776787757873535, + -0.3344864547252655, + 0.2177036553621292, + -0.042714666575193405, + 0.16488708555698395, + 0.27141743898391724, + -0.006959991995245218, + -0.11808031797409058, + 0.035660505294799805, + -0.3684547245502472, + -0.0659632757306099, + -0.3549499809741974, + 0.04634331166744232, + 0.3619332015514374, + 0.09447800368070602, + 0.11231859773397446, + -0.09712422639131546, + -0.16898642480373383, + 0.14379942417144775, + -0.04071413353085518, + -0.5130113959312439, + -0.4154414236545563, + 0.031137369573116302, + 0.038525547832250595, + -0.6315584778785706, + 0.3468407094478607, + 0.007752468343824148, + -0.11196065694093704, + 0.06131288409233093, + -0.35615360736846924, + -0.19307558238506317, + 0.24600893259048462, + -0.10323775559663773, + -0.0021806645672768354, + -0.22258643805980682, + 0.1781720668077469, + -0.2166530340909958, + -0.15125785768032074, + -0.3101038932800293, + -0.18399719893932343, + 0.0037865042686462402, + 0.08043424785137177, + -0.4800228774547577, + 0.12134960293769836, + 0.14833076298236847, + -0.38230594992637634, + 0.05712107941508293, + 0.294429749250412, + -0.12408149242401123, + 0.11874693632125854, + 0.008685757406055927, + 0.22688263654708862, + 0.1739286631345749, + -0.11388737708330154, + 0.1290922462940216, + 0.5230034589767456, + 0.5069182515144348, + -0.038417503237724304, + 0.06328462064266205, + 0.006300991866737604, + -0.060063835233449936, + -0.05002867057919502, + -0.5364003777503967, + 0.49496352672576904, + 0.0897550955414772, + 0.17021746933460236, + 0.019383439794182777, + 0.20213818550109863, + 0.07641709595918655, + -0.23019219934940338, + -0.044186752289533615, + 0.29905006289482117, + 0.25098851323127747, + 0.23678357899188995, + 0.09845423698425293, + 0.15705710649490356, + 0.4727902114391327, + -0.11433114856481552, + 0.014110823161900043, + 0.15609759092330933, + -0.036052245646715164, + -0.28068843483924866, + 0.07579048722982407, + 0.2282099723815918, + 0.47721362113952637, + -0.1841495782136917, + -0.22628237307071686, + 0.09729188680648804, + -0.17388971149921417, + 0.012753896415233612, + -0.43664243817329407, + -0.20836229622364044, + -0.03585362806916237, + -0.20999044179916382, + 0.27854910492897034, + 0.06934595853090286, + -0.018094131723046303, + 0.26864805817604065, + -0.17242221534252167, + -0.11979788541793823, + 0.2288493514060974, + -0.19818198680877686, + -0.48004022240638733, + 0.4782852232456207, + -0.18525855243206024, + 0.15318499505519867, + 0.3508727252483368, + -0.2892538011074066, + -0.11759943515062332, + -0.0286345724016428, + 0.42787328362464905, + -0.07629237323999405, + 0.07749351114034653, + -0.1354428082704544, + 0.09178321808576584, + 0.17696236073970795, + 0.49829307198524475, + 0.1887774020433426, + 0.3701010048389435, + 0.6411929726600647, + 0.2556265890598297, + -0.464760422706604, + -0.03382926806807518, + -0.1696479469537735, + 0.3567068576812744, + -0.04217585548758507, + -0.21443508565425873, + -0.14776252210140228, + 0.04128584638237953, + 0.09696990251541138, + -0.18466202914714813, + 0.08632544428110123, + 0.05158121511340141, + 0.2496476173400879, + -0.029189301654696465, + 0.36359819769859314, + 0.08984845876693726, + -0.23182962834835052, + 0.5325621962547302, + -0.10580960661172867, + -0.2037486582994461, + 0.3337392807006836, + -0.174191415309906, + 0.10829009860754013, + 0.03563177213072777, + -0.26299330592155457, + -0.34698012471199036, + 0.10106850415468216, + -0.27080461382865906, + -0.17716270685195923, + 0.043743181973695755, + -0.3760688006877899, + 0.14685003459453583, + -0.20107632875442505, + 0.04884321615099907, + 0.1177874431014061, + 0.3450278043746948, + 0.08812117576599121, + 0.2841958999633789, + 0.043550435453653336, + -0.12624742090702057, + 0.1491718888282776, + -0.07535624504089355, + -0.07805177569389343, + -0.2631889283657074, + 0.06437651813030243, + 0.022020429372787476, + 0.6423196792602539, + 0.1947021484375, + -0.07976164668798447, + 0.15348996222019196, + 0.10588431358337402, + -0.19050221145153046, + -0.35946425795555115, + -0.09081050008535385, + -0.12293263524770737, + 0.03743430972099304, + 0.16249561309814453, + 0.054392412304878235, + -0.49602463841438293, + -0.2646627128124237, + -0.0967554822564125, + -0.18452352285385132, + 0.13222190737724304, + -0.15437550842761993, + -0.24414591491222382, + 0.5621192455291748, + 0.22896666824817657, + 0.4897097647190094, + -0.4064384400844574, + 0.08284471184015274, + 0.13211248815059662, + -0.3789707124233246, + -0.024763109162449837, + -0.11281993240118027, + -0.395414263010025, + -0.1286918669939041, + 0.31215015053749084, + 0.4061897099018097, + -0.07581788301467896, + -0.06314576417207718, + -0.021911783143877983, + 0.10228126496076584, + -0.42245662212371826, + -0.20780356228351593, + 0.2651396691799164, + 0.27545708417892456, + 0.3959256708621979, + 0.12261349707841873, + -0.5424414277076721, + -0.5363603234291077, + -0.024122893810272217, + -0.3702215254306793, + 0.053831446915864944, + 0.22017262876033783, + 0.010851740837097168, + -0.29499533772468567, + 0.03156821057200432, + -0.08963242173194885, + -0.10686705261468887, + 0.2518503963947296, + -0.25070494413375854, + 0.2887665331363678, + 0.22966651618480682, + -0.22755931317806244, + -0.05105099454522133, + -0.19354026019573212, + -0.3235435485839844, + -0.10761585086584091, + 0.0347164086997509, + 0.24250023066997528, + -0.43877485394477844, + -0.04493574798107147, + 0.1559942215681076, + -0.1980910748243332, + -0.1140047013759613, + -0.07072155922651291, + -0.43667474389076233, + 0.28309860825538635, + -0.17325599491596222, + -0.10726843029260635, + 0.07463382929563522, + -0.15880613029003143, + 0.021873770281672478, + 0.10891146212816238, + 0.16469921171665192, + 0.40037545561790466, + 0.19791077077388763, + 0.006994126830250025, + 0.4453113079071045, + 0.06295749545097351, + 0.02800966054201126, + 0.2081678956747055, + -0.09072446823120117, + -0.13326334953308105, + -0.4391831159591675, + -0.2411012500524521, + 0.0695541501045227, + -0.3834310472011566, + -0.179937943816185, + 0.12417176365852356, + 0.03714548796415329, + -0.40569868683815, + -0.37089529633522034, + 0.05743691697716713, + 0.166998028755188, + -0.14968661963939667, + -0.10449668765068054, + -0.19910721480846405, + -0.10344302654266357, + -0.16963763535022736, + -0.14065630733966827, + 0.2484932541847229, + 0.39106106758117676, + 0.16030339896678925, + 0.2320888489484787, + -0.3279159963130951, + -0.15894220769405365, + 0.233418270945549, + 0.22761517763137817, + 0.051738787442445755, + -0.025255734100937843, + -0.20845837891101837, + 0.452549546957016, + 0.308134526014328, + -0.001250115572474897, + 0.09059005230665207, + 0.06544674187898636, + 0.16595104336738586, + 0.18040192127227783, + 0.19335921108722687, + -0.19383399188518524, + 0.09933540970087051, + -0.4311390817165375, + 0.25905415415763855, + -0.20403288304805756, + -0.2505330741405487, + 0.1455889195203781, + -0.22897785902023315, + -0.581580638885498, + -0.20834757387638092, + 0.2546212077140808, + -0.1438681185245514, + -0.1492682546377182, + 0.1509302258491516, + 0.357839971780777, + -0.0059340414591133595, + -0.35886573791503906, + 0.06297000497579575, + -0.6482064127922058, + -0.37106001377105713, + 0.08488047122955322, + -0.14562620222568512, + -0.25109636783599854, + 0.08871662616729736, + 0.41756394505500793, + 0.4966334402561188, + 0.16365572810173035, + 0.022403394803404808, + 0.14851385354995728, + 0.39302578568458557, + 0.3227708339691162, + -0.28175485134124756, + -10.545528411865234, + 0.008158582262694836, + -0.3876628577709198, + 0.49560579657554626, + -0.2616336941719055, + 0.0037317872047424316, + -0.05145883932709694, + 0.08730348199605942, + 0.022066229954361916, + 0.011020426638424397, + -0.11735747009515762, + -0.15972931683063507, + 0.27400267124176025, + 0.2588048577308655, + 0.07208439707756042, + 0.06253185868263245, + -0.2640773057937622, + 0.2528142035007477, + 0.12234678119421005, + 0.12228688597679138, + 0.34288761019706726, + 0.4560675621032715, + -0.35627612471580505, + 0.04226427897810936, + -0.1239113137125969, + -0.5123240947723389, + -0.21726393699645996, + 0.5529163479804993, + 0.3407224416732788, + -0.27147701382637024, + 0.07091296464204788, + 0.11050966382026672, + -0.35254013538360596, + 0.3119750916957855, + -0.19920945167541504, + 0.06962386518716812, + -0.125289186835289, + 0.34711623191833496, + 0.4204179346561432, + -0.12700296938419342, + 0.033996034413576126, + 0.08437106758356094, + 0.44935479760169983, + 0.17172521352767944, + -0.11320038884878159, + -0.6467727422714233, + -0.07398699223995209, + -1.5811125040054321, + 0.26310014724731445, + 0.4660705029964447, + 0.21447370946407318, + 0.11800394207239151, + 0.13810066878795624, + 0.24176716804504395, + -0.3893686830997467, + -0.03096841275691986, + -0.1389656662940979, + -0.12763585150241852, + 0.11883822828531265, + 0.07600509375333786, + -0.14164605736732483, + -0.17006371915340424, + 0.7761989235877991, + 0.11721920222043991, + -0.32049694657325745, + 0.06823599338531494, + 0.1480935961008072, + -0.14710663259029388, + -0.16311149299144745, + -0.6702942848205566, + -0.5789613127708435, + -0.1340443193912506, + -0.03940504789352417, + -0.10384920239448547, + 0.33137503266334534, + 0.003646649420261383, + -0.14961910247802734, + 0.33785903453826904, + 0.04400714859366417, + 0.38170120120048523, + 0.3230189085006714, + -0.13054513931274414, + 0.1493968814611435, + -0.10488086193799973, + -0.3291749656200409, + -0.031031399965286255, + 0.24324409663677216, + 0.43641313910484314, + 0.1637044996023178, + 0.018027182668447495, + -0.004549933131784201, + 0.3693949282169342, + 0.07997158914804459, + -0.02599423937499523, + -0.41887012124061584, + -0.04981198534369469, + -0.047046929597854614, + 0.199593186378479, + 0.09400298446416855, + -0.15669985115528107, + -0.2603311240673065, + 0.2722800672054291, + 0.03091178834438324, + -0.38572701811790466, + -0.6321165561676025, + 0.35222864151000977, + 0.087679423391819, + 0.12568829953670502, + -0.0017912288894876838, + -0.2995126247406006, + -0.3751087188720703, + 0.05341852828860283, + 0.1790657639503479, + 0.5356160998344421, + 0.26018810272216797, + 0.01789526641368866, + -0.062299128621816635, + -0.3972206115722656, + -0.11172463744878769, + -0.000330035894876346, + 0.33568844199180603, + -0.2967802584171295, + 0.11588067561388016, + 0.6591761112213135, + 0.018065545707941055, + 0.015165269374847412, + 1.0064481496810913, + -0.2534324526786804, + 0.2719924747943878, + -0.08510994166135788, + 0.13282066583633423, + -0.12963734567165375, + -0.4858119487762451, + 0.28277310729026794, + 0.5150777697563171, + -0.3756895065307617, + 0.8527396321296692, + 0.37660086154937744, + -0.4042244851589203, + -0.06316526979207993, + -0.3249480724334717, + 0.5318021774291992, + 0.38964328169822693, + 0.16488003730773926, + -0.07197468727827072, + -0.09228169918060303, + -0.30745282769203186, + 0.05128428339958191, + -0.28112921118736267, + -0.18978498876094818, + -0.15510036051273346, + 0.14312876760959625, + 0.4052397310733795, + -0.18464075028896332, + 0.40996018052101135, + 0.31302469968795776, + -0.16822147369384766, + -0.3918851912021637, + -0.33840158581733704, + -0.08412184566259384, + -0.004811972379684448, + 0.883807897567749, + -0.005599358584731817, + 0.1318400353193283, + 0.10339409112930298, + 0.07457219809293747, + -0.15906620025634766, + 0.24405765533447266, + 0.2090870887041092, + 0.07019635289907455, + -0.4718707501888275, + 0.2973215579986572, + 0.04585787653923035, + -0.3391345739364624, + 0.010625305585563183, + 0.007796153426170349, + -0.10595250874757767, + 0.25771841406822205, + -0.2182052731513977, + -0.007550099398940802, + 0.5900967717170715, + 0.027679776772856712, + -0.07848504930734634, + -0.34914159774780273, + 0.0014931932091712952, + 0.20944039523601532, + 0.3608688414096832, + 0.007897858507931232, + -0.25251519680023193, + -0.20743446052074432, + -0.5568317770957947, + 0.1634812206029892, + -0.41405370831489563, + -0.03869534656405449, + 0.0992266833782196, + 0.1854182928800583, + -0.22279910743236542, + 0.09872794896364212, + 0.08140212297439575, + -0.04449039325118065, + -0.10929547995328903, + 0.23828046023845673, + 0.519236147403717, + -0.3027288615703583, + 0.44225582480430603, + -0.07203154265880585, + 0.0797000601887703, + 0.023911170661449432, + -0.3608057498931885, + -0.00946913193911314, + -0.3093157112598419 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_066.json b/src/benchmark/output/results/results_graph_066.json new file mode 100644 index 0000000..4643434 --- /dev/null +++ b/src/benchmark/output/results/results_graph_066.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 59-year-old woman who presented with a cough. Her demographic information is not explicitly mentioned in the provided data, but based on the age and sex, we can infer that she is an adult female.\n\n**Initial Diagnosis (Step 1):**\nUpon presentation, the patient underwent a lung CT scan, which revealed a space-occupying lesion in the left lower lobe. The lesion was accompanied by peripheral obstructive inflammation, atelectasis, and multiple enlarged lymph nodes in the mediastinum. A biopsy of the lesion was performed, which confirmed the presence of keratinized squamous cell carcinoma. The patient was diagnosed with left lower lobe squamous cell carcinoma (T3N2bM0, Stage IIIB).\n\n**Treatment Initiation (Step 2):**\nThe patient underwent six cycles of albumin-bound paclitaxel (100 mg/m\u00b2 on day 1, day 8, and day 15), cisplatin (75 mg/m\u00b2 on day 1), and carrelizumab (200 mg on day 1). Following this treatment, the left lower lung lesion had significantly reduced in size to approximately 23x25 mm.\n\n**Radiotherapy and Re-emergence of Disease (Step 3):**\nThe patient underwent radiotherapy with a dose of 2 Gy per fraction, administered over a total of 30 fractions. However, after ten fractions, the patient developed dyspnea and fever, with a maximum temperature of 38.5\u00b0C. A lung puncture biopsy was performed, which confirmed the presence of squamous cell carcinoma. The lesion had significantly enlarged to a size of 50 \u00d7 51 mm.\n\n**Outcome:**\nThe patient's condition worsened after radiotherapy, and she developed delayed hypersensitivity pneumonitis (DHP) after 5 months of immunotherapy. Despite this, the patient continued to receive treatment, highlighting the complexities of managing advanced cancer.\n\nIn conclusion, this clinical case report highlights the challenges of treating advanced squamous cell carcinoma in a 59-year-old woman. The patient's initial diagnosis and treatment response were promising, but the disease re-emerged after radiotherapy, leading to worsening symptoms and complications. Further management strategies are needed to improve outcomes for patients with advanced cancer.", + "bertscore": { + "precision": [ + 0.5903757810592651 + ], + "recall": [ + 0.7092682123184204 + ], + "f1": [ + 0.6443838477134705 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 3, + "edge_count": 2, + "avg_in_degree": 0.6666666666666666, + "density": 0.3333333333333333 + }, + "trajectory_embedding": [ + 0.24472539126873016, + 0.05973951891064644, + -0.20621691644191742, + 0.22169888019561768, + -0.08776857703924179, + -0.01297292485833168, + 0.14311833679676056, + 0.19575707614421844, + 0.13809828460216522, + -0.30675601959228516, + -0.19033236801624298, + 0.21958637237548828, + -0.5650694966316223, + -0.03671947494149208, + -0.21233956515789032, + -0.07029158622026443, + 0.05985746905207634, + 0.3540482819080353, + 0.09971606731414795, + -0.21774829924106598, + -0.4880874454975128, + 0.07818809896707535, + -0.3714626729488373, + -0.23509180545806885, + 0.06321892887353897, + -0.14382852613925934, + -0.09785137325525284, + 0.5526863932609558, + 0.2408498376607895, + 0.36133289337158203, + 0.11607518792152405, + 0.14982308447360992, + -0.18732130527496338, + -0.06406443566083908, + -0.04870617389678955, + 0.30946287512779236, + 0.2232000231742859, + 0.2514793574810028, + -0.03711273521184921, + 0.06858106702566147, + -0.04543985798954964, + -0.054216574877500534, + 0.8410571217536926, + 0.4946504533290863, + 0.6904703974723816, + -0.3553180694580078, + 0.07950248569250107, + 0.38915541768074036, + -0.8199913501739502, + -0.18235641717910767, + 0.2594229578971863, + 0.7004188895225525, + 0.7419648170471191, + -0.09346562623977661, + 0.48649755120277405, + -0.19655929505825043, + -0.35712262988090515, + -0.12270615249872208, + -0.33330056071281433, + 0.035338446497917175, + 0.08950041979551315, + 0.07932708412408829, + -0.13393497467041016, + -0.05882519111037254, + -0.4297293722629547, + -0.07603780180215836, + -0.24973559379577637, + -0.010420563630759716, + 0.03171468898653984, + -0.5315023064613342, + -0.39088842272758484, + -0.19595032930374146, + -0.19118864834308624, + 0.24489863216876984, + 0.1897304207086563, + -0.3389620780944824, + 0.20047469437122345, + 0.03468834236264229, + -0.0655626729130745, + 0.14029420912265778, + 0.17140133678913116, + -0.02399207092821598, + 0.2540210783481598, + 0.22558891773223877, + -0.2655019760131836, + 0.1640091985464096, + 0.11728119850158691, + -0.1884794980287552, + -0.15492989122867584, + 0.21031498908996582, + 0.20496852695941925, + -0.1964985728263855, + -0.023617811501026154, + -0.08346119523048401, + 0.210036039352417, + -0.03352765366435051, + 0.24766667187213898, + 0.39670801162719727, + 0.9792380332946777, + 0.041457414627075195, + 0.3535352945327759, + 0.12252096086740494, + 0.26902487874031067, + -0.04724891856312752, + 0.48376134037971497, + 0.06455666571855545, + 0.0948953703045845, + -0.3248388469219208, + 0.0001873125584097579, + 0.41208887100219727, + -0.07521289587020874, + -0.19096501171588898, + 0.1534561961889267, + -0.41474649310112, + 0.002934597432613373, + 0.11999937146902084, + -0.24417127668857574, + 0.12330881506204605, + -0.022776365280151367, + -0.41632938385009766, + -0.13032205402851105, + -0.1667323261499405, + 0.5076087117195129, + 0.24391146004199982, + -0.6251253485679626, + -0.15292535722255707, + -0.09079304337501526, + 0.10629767179489136, + -0.0969785824418068, + 0.14091737568378448, + -0.35459503531455994, + -0.07694574445486069, + 0.24394215643405914, + 0.35355687141418457, + -0.30491742491722107, + 0.31794604659080505, + -0.38083335757255554, + 0.07474204152822495, + -1.226477026939392, + 0.2961015999317169, + -0.5032801032066345, + -0.108010433614254, + 0.13107943534851074, + -0.49610671401023865, + -0.1767665594816208, + -0.068946473300457, + -0.19116894900798798, + 0.18121390044689178, + 0.002250944497063756, + -0.0333944670855999, + -0.18197953701019287, + 0.031042953953146935, + 0.20110321044921875, + 0.26335009932518005, + 0.2646425664424896, + 0.27324384450912476, + 0.2407650500535965, + 0.26426127552986145, + 0.3190576732158661, + -0.22063130140304565, + -0.02279333770275116, + 0.30932655930519104, + -0.12357389181852341, + -0.16448788344860077, + 0.009782317094504833, + -0.7148368954658508, + 0.2502247393131256, + -0.2690623998641968, + 0.38259294629096985, + 0.062444090843200684, + -0.03332372382283211, + 0.08372946828603745, + -0.06197817251086235, + 0.41303038597106934, + 0.21075521409511566, + 0.43564775586128235, + 0.09936109185218811, + 0.03837363421916962, + 0.35816511511802673, + 0.2276294231414795, + 0.10912089794874191, + -0.030399831011891365, + 0.568000853061676, + 0.28022265434265137, + -0.34713688492774963, + 0.18400056660175323, + 0.6108300685882568, + -0.4837230145931244, + -0.07710225135087967, + -0.38692915439605713, + 0.5639374852180481, + -0.03400975093245506, + 0.27839186787605286, + -0.4430330991744995, + 0.11624273657798767, + 0.0877058133482933, + -0.3161497414112091, + -0.3183850049972534, + 0.19277746975421906, + -0.2225656509399414, + 0.04632681608200073, + 0.42847514152526855, + -0.07463964819908142, + 0.054895926266908646, + 0.2422086000442505, + -0.1537158340215683, + 0.3643310070037842, + 0.21861886978149414, + 0.03560551628470421, + -0.15345647931098938, + -0.1623491793870926, + 0.22562961280345917, + 0.22217579185962677, + 0.30118897557258606, + -0.08191647380590439, + -0.15430192649364471, + 0.2179277390241623, + -0.1365259736776352, + -0.20148350298404694, + 0.1175960898399353, + -0.1683780699968338, + -0.0619087815284729, + 0.4505422115325928, + -0.010252299718558788, + -0.31232932209968567, + 0.26019707322120667, + 0.18838584423065186, + 0.10241077095270157, + 0.047579988837242126, + -0.003696044208481908, + 0.12725670635700226, + -0.2746680676937103, + 0.4076017439365387, + -0.04719288647174835, + -0.11623629927635193, + -0.2201196700334549, + 0.14945465326309204, + -0.14551478624343872, + -0.3147028386592865, + 0.36578240990638733, + -0.07165887951850891, + -0.09624495357275009, + -0.0745454728603363, + -0.23157548904418945, + -0.082053042948246, + -0.3674026429653168, + 0.2011731117963791, + 0.35115382075309753, + 0.19356246292591095, + 0.21420156955718994, + 0.05888652801513672, + -0.2460108995437622, + 0.3210803270339966, + -0.4284001290798187, + -0.3601716458797455, + -0.23948414623737335, + -0.160123810172081, + -0.20349836349487305, + -0.219018816947937, + -0.04691457748413086, + -0.04989147186279297, + -0.2610017955303192, + 0.2012440413236618, + -0.3811030685901642, + -0.15432433784008026, + -0.09969782829284668, + -0.09778731316328049, + 0.18930615484714508, + 0.04510769248008728, + 0.2529543936252594, + -0.4515397548675537, + -0.2720588743686676, + -0.10315386205911636, + 0.02979304827749729, + 0.3163506090641022, + 0.2647949159145355, + 0.012967054732143879, + 0.2102910727262497, + 0.29734015464782715, + -0.4553937017917633, + -0.36370977759361267, + 0.029198577627539635, + -0.2898355722427368, + 0.0427025742828846, + -0.3326948583126068, + 0.04941452667117119, + 0.3447096347808838, + 0.041680995374917984, + 0.3457329273223877, + 0.5037882328033447, + 0.5015177130699158, + 0.27465498447418213, + -0.1846528798341751, + -0.055688705295324326, + -0.0830637514591217, + -0.059880126267671585, + -0.4160454273223877, + 0.16137750446796417, + -0.12424380332231522, + -0.013688790611922741, + 0.1888742595911026, + 0.23198576271533966, + -0.011724273674190044, + -0.45893311500549316, + -0.2340559959411621, + 0.6245488524436951, + 0.30824407935142517, + -0.11972123384475708, + -0.06818624585866928, + 0.31432485580444336, + 0.7497386336326599, + -0.009430192410945892, + -0.1330808401107788, + -0.10549646615982056, + -0.024887895211577415, + -0.10062122344970703, + -0.17127345502376556, + 0.01669115386903286, + 0.18056027591228485, + -0.10295003652572632, + -0.09337595105171204, + 0.36089882254600525, + -0.13965356349945068, + -0.08542203158140182, + -0.06505189090967178, + 0.10638538002967834, + -0.012201775796711445, + -0.33361807465553284, + 0.27496346831321716, + -0.2726285755634308, + -0.057488005608320236, + 0.519100546836853, + -0.01144926156848669, + -0.28289830684661865, + 0.3690139055252075, + -0.10617876052856445, + -0.5634174942970276, + 0.27518460154533386, + -0.2088218480348587, + 0.0028694632928818464, + 0.34025660157203674, + -0.16064055263996124, + 0.0016224136343225837, + -0.15492258965969086, + 0.012122553773224354, + 0.18882644176483154, + -0.050750669091939926, + -0.03924507275223732, + -0.03840144723653793, + 0.2402849644422531, + 0.5950093865394592, + -0.11780447512865067, + 0.10417792946100235, + 0.15058690309524536, + -0.202588751912117, + -0.10731291025876999, + -0.07707282155752182, + 0.16964705288410187, + 0.04422913119196892, + -0.3682064116001129, + -0.4024607241153717, + -0.32807669043540955, + 0.19396977126598358, + 0.11229383200407028, + -0.06358324736356735, + -0.049455493688583374, + -0.049556080251932144, + -0.021056191995739937, + 0.11639239639043808, + 0.3737211227416992, + 0.26526185870170593, + 0.0833679810166359, + 0.49039459228515625, + 0.06786119192838669, + 0.013739767484366894, + 0.3272363841533661, + -0.1748441457748413, + 0.30978843569755554, + -0.17690134048461914, + -0.3660604655742645, + -0.5179305672645569, + 0.004800538066774607, + -0.42185071110725403, + -0.07543555647134781, + 0.010172267444431782, + 0.09870466589927673, + -0.09843180328607559, + -0.12942905724048615, + 0.1613881140947342, + 0.0856059268116951, + 0.312078595161438, + -0.04180729761719704, + 0.5679910182952881, + -0.044651586562395096, + -0.4304715394973755, + 0.09852247685194016, + -0.14173902571201324, + 0.334534615278244, + -0.16404055058956146, + 0.018181854858994484, + -0.17308539152145386, + 0.5315093398094177, + 0.11742828041315079, + -0.07481261342763901, + -0.001330789178609848, + -0.21552641689777374, + -0.28844380378723145, + -0.34183570742607117, + -0.1385217159986496, + -0.0353928804397583, + -0.13364623486995697, + -0.09281674772500992, + 0.29700711369514465, + -0.21455669403076172, + -0.2409260869026184, + 0.121465764939785, + 0.4624112844467163, + 0.04286643862724304, + -0.09062247723340988, + -0.11810433119535446, + 0.2106172889471054, + 0.019037535414099693, + 0.3781695067882538, + -0.16599641740322113, + 0.055901166051626205, + 0.01362465787678957, + -0.3248428702354431, + -0.06648602336645126, + 0.04167942330241203, + -0.300541490316391, + 0.07971624284982681, + 0.27121031284332275, + -0.005033507943153381, + 0.10767247527837753, + 0.03863084316253662, + -0.07513835281133652, + 0.27220484614372253, + -0.4194846451282501, + -0.09670042991638184, + 0.3917611539363861, + 0.08840013295412064, + 0.6115625500679016, + -0.0882614478468895, + -0.4061022102832794, + -0.08047638088464737, + 0.025134295225143433, + -0.48740851879119873, + 0.24531686305999756, + -0.029790988191962242, + -0.19875936210155487, + 0.01629987545311451, + 0.03272233530879021, + 0.025919994339346886, + 0.028100989758968353, + 0.025510305538773537, + -0.026835812255740166, + 0.11868489533662796, + -0.06550981104373932, + -0.38142433762550354, + 0.047631364315748215, + -0.38747766613960266, + -0.33251288533210754, + -0.3359937369823456, + 0.49157238006591797, + 0.18256129324436188, + -0.1027270182967186, + 0.06662095338106155, + 0.09664812684059143, + -0.1800452619791031, + -0.29837337136268616, + 0.07263601571321487, + 0.014624076895415783, + 0.683661937713623, + -0.028218962252140045, + -0.12441673129796982, + 0.34542861580848694, + -0.5134815573692322, + 0.12539905309677124, + 0.16842679679393768, + 0.15858405828475952, + 0.2769908607006073, + 0.037397440522909164, + 0.23338834941387177, + 0.3327862024307251, + 0.21860282123088837, + -0.0847303569316864, + 0.2821405231952667, + -0.07222587615251541, + -0.09961170703172684, + 0.11621060222387314, + -0.21702654659748077, + 0.5164672136306763, + -0.4418872892856598, + 0.2534107267856598, + -0.014755435287952423, + 0.4497506618499756, + -0.24374859035015106, + -0.3478260934352875, + -0.09775318950414658, + -0.2522020637989044, + -0.21367521584033966, + -0.34489715099334717, + -0.21151171624660492, + 0.1533224880695343, + -0.41795364022254944, + 0.009175683371722698, + 0.4369765520095825, + 0.3349725902080536, + 0.13335593044757843, + 0.08260536193847656, + -0.355595201253891, + -0.4663221538066864, + -0.07575363665819168, + 0.2912334203720093, + -0.012158308178186417, + -0.01939759962260723, + -0.052952419966459274, + 0.3092961311340332, + 0.6253311038017273, + -0.10531309992074966, + -0.1512894481420517, + -0.134952574968338, + -0.05019104480743408, + -0.16695024073123932, + -0.04916447028517723, + -0.1300649493932724, + 0.3077431619167328, + -0.36611390113830566, + -0.046004459261894226, + -0.14477355778217316, + -0.3982226848602295, + 0.13922584056854248, + -0.34826961159706116, + -0.39057230949401855, + -0.024207821115851402, + 0.1379953771829605, + -0.2238806039094925, + -0.026945918798446655, + 0.2545139789581299, + 0.4592592716217041, + 0.1505405455827713, + -0.07086842507123947, + 0.12405675649642944, + -0.6305832266807556, + -0.058170806616544724, + 0.29443609714508057, + -0.2588263750076294, + 0.2799323797225952, + -0.003765612840652466, + 0.23406900465488434, + 0.15053169429302216, + 0.16451911628246307, + -0.38798782229423523, + 0.0768650695681572, + 0.2781657874584198, + 0.43474605679512024, + -0.15346772968769073, + -10.960356712341309, + 0.06405992805957794, + -0.10026196390390396, + 0.4984339773654938, + -0.08484695106744766, + 0.05730124190449715, + -0.10981613397598267, + -0.060770418494939804, + 0.22861559689044952, + 0.2867518365383148, + -0.05398468300700188, + 0.2388964146375656, + 0.29632505774497986, + 0.2794932425022125, + -0.015646910294890404, + -0.11755019426345825, + -0.33758094906806946, + 0.33045339584350586, + -0.2305048704147339, + -0.07931394129991531, + 0.47469034790992737, + 0.5132012963294983, + -0.26039257645606995, + 0.3521421253681183, + 0.24662601947784424, + -0.3290752172470093, + -0.18977028131484985, + 0.30583569407463074, + 0.2560260593891144, + -0.4243943393230438, + 0.41480517387390137, + 0.11285549402236938, + -0.15821020305156708, + -0.08145276457071304, + 0.04051022604107857, + -0.08236095309257507, + -0.09063855558633804, + -0.062187764793634415, + 0.014029591344296932, + -0.008436200208961964, + 0.009130623191595078, + -0.26938101649284363, + 0.02358812838792801, + 0.217571422457695, + -0.0987858772277832, + -0.4252159595489502, + -0.3924587666988373, + -1.5080143213272095, + 0.13750313222408295, + 0.27976346015930176, + 0.588225245475769, + 0.060049694031476974, + 0.2496291548013687, + 0.13963903486728668, + -0.5151636004447937, + -0.08688181638717651, + -0.1798693686723709, + 0.31586572527885437, + 0.27058014273643494, + -0.09923862665891647, + 0.18622322380542755, + -0.2636469900608063, + 0.4458160400390625, + -0.42067423462867737, + -0.24530106782913208, + 0.2546333372592926, + -0.1903402954339981, + -0.07899084687232971, + -0.18558235466480255, + -0.10308300703763962, + -0.5935779213905334, + -0.14467324316501617, + 0.06936707347631454, + -0.009953108616173267, + 0.329560786485672, + -0.1617351919412613, + -0.4816628694534302, + -0.01653486303985119, + 0.10779452323913574, + 0.32051554322242737, + 0.28326278924942017, + 0.12196606397628784, + 0.08756425976753235, + -0.19185858964920044, + -0.10937216877937317, + -0.014642149209976196, + 0.06141020357608795, + 0.6293041706085205, + 0.02164670266211033, + 0.06238098070025444, + -0.1194082573056221, + 0.3395727574825287, + -0.14156518876552582, + -0.1660834550857544, + -0.434939980506897, + 0.27401623129844666, + 0.08059815317392349, + 0.18688659369945526, + 0.012292377650737762, + -0.2353852391242981, + -0.17058952152729034, + -0.2572742700576782, + -0.07646320760250092, + -0.41726577281951904, + -0.3206033408641815, + 0.27345409989356995, + 0.27907463908195496, + -0.02266020141541958, + 0.11334013938903809, + 0.0774502083659172, + 0.09779997915029526, + -0.051723137497901917, + 0.6278414130210876, + 0.626000702381134, + 0.04142439737915993, + -0.2174665927886963, + -0.33282700181007385, + 0.288815975189209, + -0.3903399407863617, + -0.003919137641787529, + 0.3264608681201935, + 0.05567343160510063, + 0.36269280314445496, + 0.61568284034729, + -0.07746411114931107, + -0.048094492405653, + 0.8306520581245422, + -0.32907164096832275, + 0.3848963677883148, + -0.19391123950481415, + 0.1863178014755249, + -0.07402336597442627, + -0.27095863223075867, + 0.07724221050739288, + 0.25158074498176575, + -0.2959558963775635, + 0.5592979788780212, + 0.07577923685312271, + -0.4425506293773651, + 0.00042188167572021484, + -0.4586349427700043, + 0.38460829854011536, + 0.30545172095298767, + 0.10892649739980698, + -0.19438405334949493, + -0.3272428810596466, + -0.1468651294708252, + 0.008953355252742767, + -0.25023123621940613, + -0.37482044100761414, + -0.09951747208833694, + -0.020684322342276573, + 0.04263325408101082, + -0.2340986281633377, + 0.4263988733291626, + 0.0822518989443779, + -0.19622670114040375, + -0.02026284672319889, + -0.4919753968715668, + -0.1848757416009903, + 0.2676183879375458, + 0.6674940586090088, + 0.3138386905193329, + -0.2451866865158081, + -0.2035677433013916, + 0.2600369155406952, + -0.01173351425677538, + 0.0680723786354065, + 0.10946498066186905, + -0.08542770147323608, + -0.5419972538948059, + 0.030171914026141167, + 0.12477704137563705, + -0.33835503458976746, + -0.23286695778369904, + -0.33639511466026306, + 0.19271008670330048, + -0.13297611474990845, + -0.06605911999940872, + 0.2756675183773041, + 0.2757405936717987, + -0.10188999027013779, + 0.004778603557497263, + -0.2490537315607071, + 0.01903938315808773, + 0.16929584741592407, + 0.11932594329118729, + 0.10526015609502792, + -0.02270149439573288, + -0.6346606612205505, + -0.2796635329723358, + 0.2684823274612427, + -0.22892530262470245, + -0.06004071235656738, + 0.08261638134717941, + 0.18701212108135223, + -0.41923144459724426, + 0.09933196753263474, + -0.3425528109073639, + 0.07792862504720688, + -0.36998236179351807, + 0.009928437881171703, + 0.4032503664493561, + -0.41004666686058044, + 0.2437080591917038, + -0.10462010651826859, + 0.24723057448863983, + 0.11909554153680801, + -0.3022080659866333, + 0.18338240683078766, + -0.21861453354358673 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_067.json b/src/benchmark/output/results/results_graph_067.json new file mode 100644 index 0000000..85b921f --- /dev/null +++ b/src/benchmark/output/results/results_graph_067.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 67-year-old male who presented in 2016 with stage IIIA non-small cell lung cancer (NSCLC) adenocarcinoma.\n\n**Timeline of Diagnoses:**\n\n1. **2016:** The patient was diagnosed with stage IIIA NSCLC adenocarcinoma.\n2. **2016:** Following the diagnosis, the patient underwent a right middle lobectomy, adjuvant carboplatin/paclitaxel chemotherapy, and postoperative radiotherapy (PORT).\n3. **2022:** The patient developed metastatic disease in the right lung, liver, and brain.\n\n**Timeline of Treatments:**\n\n1. **2016-2017:** Adjuvant carboplatin/paclitaxel chemotherapy.\n2. **2017:** Postoperative radiotherapy (PORT) was administered.\n3. **2022:** Stereotactic radiation therapy was performed to treat a single brain metastasis.\n4. **2022:** Empirical chemotherapy regimen consisting of 5-fluorouracil/oxaliplatin (FOLFOX) was initiated.\n5. **2022:** Histopathological analysis of liver lesions identified spindle cell carcinoma likely pulmonary in origin despite atypical features, with a high proliferative Ki-67 index (90%).\n6. **2022:** Treatment with docetaxel was administered.\n\n**Timeline of Outcomes:**\n\n1. **2017:** The patient underwent upper and lower GI endoscopy due to microcytosis, but no lesions were identified.\n2. **2022:** Liver biopsy showed metastatic spindle cell carcinoma on H&E stain, sections demonstrated a spindle cell neoplasm with significant mitotic activity and focal necrosis, and immunohistochemistry showed the tumor cells positive for AE1/AE3 and CK8/18, but negative for Alk-1, CK7, CK20, CDX-2, and CD117.\n3. **2022:** The patient received nine weekly doses of docetaxel with modest shrinkage (approximately 10-15%).\n\n**Conclusion:**\nThe patient's clinical course was marked by a diagnosis of stage IIIA NSCLC adenocarcinoma in 2016, followed by treatment with adjuvant chemotherapy and radiotherapy. Despite this initial treatment, the patient developed metastatic disease in 2022, which led to further evaluation and treatment, including stereotactic radiation therapy for brain metastasis, empirical chemotherapy regimen, histopathological analysis of liver lesions, and treatment with docetaxel. The patient's current status is characterized by ongoing treatment with docetaxel, with modest shrinkage observed in the tumor size.", + "bertscore": { + "precision": [ + 0.707660973072052 + ], + "recall": [ + 0.7203216552734375 + ], + "f1": [ + 0.7139351963996887 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 9, + "edge_count": 8, + "avg_in_degree": 0.8888888888888888, + "density": 0.1111111111111111 + }, + "trajectory_embedding": [ + 0.2563111484050751, + 0.18047350645065308, + -0.12980332970619202, + 0.12957733869552612, + 0.14545029401779175, + 0.19874490797519684, + -0.020612286403775215, + 0.3609883785247803, + 0.5175485610961914, + -0.42774152755737305, + -0.11932812631130219, + -0.07010838389396667, + -0.6297792792320251, + -0.06867539882659912, + -0.2806960642337799, + 0.28194066882133484, + -0.16101223230361938, + 0.2974811792373657, + -0.0320054367184639, + -0.26180869340896606, + -0.3653232455253601, + 0.21554100513458252, + -0.4952680766582489, + -0.01274600438773632, + 0.2917851209640503, + 0.013397665694355965, + 0.4539494514465332, + 0.5107171535491943, + 0.1910659819841385, + 0.2023172825574875, + 0.14290876686573029, + -0.1720331311225891, + 0.27078431844711304, + 0.12576454877853394, + -0.30881425738334656, + 0.23997381329536438, + 0.20052491128444672, + 0.2819211781024933, + -0.16505563259124756, + 0.02628747560083866, + -0.17063747346401215, + 0.08229643851518631, + 0.8373680114746094, + 0.14184650778770447, + 0.4898078739643097, + -0.7631044387817383, + -0.05833498015999794, + 0.6571429967880249, + -0.587323784828186, + -0.3337332010269165, + 0.11421965062618256, + 0.8041656613349915, + 0.6735653877258301, + -0.3212493658065796, + 0.4462393522262573, + -0.09566310048103333, + -0.2393297553062439, + -0.24039578437805176, + -0.23803025484085083, + -0.0028881398029625416, + 0.051754288375377655, + -0.2753262519836426, + 0.4287317991256714, + -0.23822420835494995, + -0.17750635743141174, + -0.223173588514328, + -0.3731268048286438, + 0.04168960824608803, + 0.010609358549118042, + -0.42431437969207764, + -0.12321975827217102, + -0.20164258778095245, + -0.0698876902461052, + 0.059933118522167206, + 0.05492713674902916, + -0.09806787967681885, + 0.350442111492157, + -0.13774612545967102, + 0.15925580263137817, + 0.2140136957168579, + -0.07230867445468903, + -0.17573881149291992, + 0.030170436948537827, + 0.2979617714881897, + -0.445273756980896, + -0.13959911465644836, + -0.11444449424743652, + -0.20965570211410522, + -0.40044495463371277, + 0.13729432225227356, + 0.17726798355579376, + -0.46805816888809204, + -0.05943233519792557, + -0.16726654767990112, + -0.0215974822640419, + 0.21199630200862885, + 0.5280852317810059, + 0.216959610581398, + 0.9069752097129822, + -0.05025506392121315, + 0.14157015085220337, + -0.026503555476665497, + 0.1826874166727066, + 0.05934286117553711, + 0.34719324111938477, + -0.08723073452711105, + 0.25699499249458313, + -0.4970172345638275, + 0.34495222568511963, + 0.45673301815986633, + 0.0726204514503479, + -0.16635073721408844, + -0.004855076316744089, + -0.18847019970417023, + 0.19316837191581726, + 0.1378999948501587, + 0.07015062868595123, + 0.23014742136001587, + 0.2763122320175171, + -0.4145337641239166, + -0.2305348664522171, + -0.16869285702705383, + 0.2995665967464447, + 0.23186254501342773, + -0.4474298059940338, + -0.046202387660741806, + -0.19713261723518372, + -0.022294674068689346, + 0.14391879737377167, + 0.062021996825933456, + -0.5559811592102051, + -0.21763890981674194, + -0.00721403956413269, + 0.035294752568006516, + -0.07481279969215393, + 0.3524245023727417, + -0.3655874729156494, + -0.019033798947930336, + -1.0617194175720215, + 0.19405941665172577, + -0.33067160844802856, + -0.11612159758806229, + -0.006241641007363796, + -0.4924764037132263, + -0.27442190051078796, + -0.10036749392747879, + -0.10831528156995773, + 0.18844126164913177, + -0.1787920892238617, + -0.10481493920087814, + 0.06010334938764572, + 0.005608707666397095, + 0.21282905340194702, + 0.5520514845848083, + 0.15650419890880585, + 0.06096847727894783, + 0.015503909438848495, + 0.31192928552627563, + 0.08708088845014572, + 0.002102242549881339, + 0.013117737136781216, + 0.5071194171905518, + 0.22254493832588196, + 0.07495769113302231, + -0.15746352076530457, + -0.5346567630767822, + -0.061059579253196716, + -0.2254386991262436, + -0.0025296227540820837, + 0.13289958238601685, + -0.09840560704469681, + 0.11590811610221863, + -0.28228721022605896, + 0.5979018807411194, + -0.0006272461614571512, + 0.19261036813259125, + -0.017632193863391876, + 0.005382660310715437, + 0.08769732713699341, + 0.19561141729354858, + 0.23628224432468414, + -0.2900877296924591, + 0.7235522866249084, + 0.38908424973487854, + -0.23791950941085815, + 0.2786569893360138, + 0.3320704996585846, + -0.039316654205322266, + -0.27462318539619446, + -0.0002805127005558461, + 0.6495236754417419, + -0.3378776013851166, + 0.6428676843643188, + -0.3850654065608978, + -0.079743891954422, + 0.21607255935668945, + -0.14196699857711792, + -0.03390302136540413, + -0.06184215843677521, + -0.08423982560634613, + 0.2539777457714081, + 0.06911060214042664, + -0.4456231892108917, + 0.0044640665873885155, + 0.21410337090492249, + -0.05766420066356659, + 0.16673514246940613, + -0.01690095290541649, + 0.13375528156757355, + 0.06507658958435059, + -0.18613427877426147, + 0.3015982210636139, + -0.18185624480247498, + 0.3694620132446289, + -0.02114221453666687, + -0.46926626563072205, + 0.16210311651229858, + -0.012697579339146614, + -0.16178935766220093, + 0.15819913148880005, + -0.004583375528454781, + -0.30103757977485657, + -0.08974733203649521, + -0.047581665217876434, + -0.6438201665878296, + 0.24425122141838074, + 0.10657566040754318, + 0.30328407883644104, + 0.2577802538871765, + -0.014891871251165867, + -0.0130117516964674, + -0.43777337670326233, + 0.35279685258865356, + -0.10263874381780624, + -0.07498358935117722, + -0.26379409432411194, + 0.3302410840988159, + -0.10006142407655716, + 0.16516052186489105, + 0.44004735350608826, + -0.010329893790185452, + -0.06775636225938797, + 0.1897384375333786, + -0.4060557186603546, + -0.10382090508937836, + -0.44256407022476196, + 0.019130907952785492, + 0.364189088344574, + 0.08011194318532944, + 0.27923333644866943, + -0.03265766799449921, + -0.17198534309864044, + 0.18690527975559235, + -0.12449974566698074, + -0.4856452941894531, + -0.30901801586151123, + -0.027464741840958595, + -0.13205735385417938, + -0.7264115214347839, + 0.1181509792804718, + -0.1127496138215065, + 0.0019398066215217113, + 0.19052189588546753, + -0.34588658809661865, + -0.20879706740379333, + 0.11871564388275146, + 0.14009429514408112, + 0.1609005630016327, + -0.22135360538959503, + 0.10623787343502045, + -0.2685736119747162, + -0.09476426243782043, + -0.22107644379138947, + -0.0026477526407688856, + 0.06600001454353333, + 0.0014596200780943036, + -0.3718755543231964, + -0.05315720662474632, + 0.1078578382730484, + -0.3234424889087677, + -0.05669151991605759, + 0.20027855038642883, + -0.1291794627904892, + 0.17780669033527374, + 0.04459580406546593, + 0.2170383334159851, + 0.390860378742218, + -0.005249791778624058, + 0.10039656609296799, + 0.36140620708465576, + 0.5250841379165649, + -0.11312157660722733, + 0.11197253316640854, + 0.00719456048682332, + -0.11138778179883957, + -0.009262846782803535, + -0.4462110102176666, + 0.46684136986732483, + 0.0056252446956932545, + 0.08430922776460648, + 0.1525137573480606, + 0.22625356912612915, + -0.012632980942726135, + -0.21722687780857086, + 0.1597178727388382, + 0.531234085559845, + 0.15898969769477844, + 0.23828989267349243, + 0.16438181698322296, + 0.18891021609306335, + 0.26625773310661316, + -0.13577808439731598, + 0.04122096300125122, + 0.15837545692920685, + -0.02935744635760784, + -0.29432213306427, + -0.022714396938681602, + 0.1750982105731964, + 0.46150222420692444, + -0.2683558464050293, + -0.36105892062187195, + 0.01579613797366619, + -0.23539382219314575, + -0.02449367381632328, + -0.3135550618171692, + -0.10939577221870422, + 0.14637205004692078, + -0.25333261489868164, + 0.3853977918624878, + 0.05118032172322273, + -0.0978781133890152, + 0.37814176082611084, + -0.423348993062973, + -0.08173621445894241, + 0.1880859136581421, + -0.042604777961969376, + -0.40653422474861145, + 0.42451632022857666, + -0.24886509776115417, + -0.005955649074167013, + 0.3546699285507202, + -0.4556626081466675, + -0.07820828258991241, + 0.15935449302196503, + 0.30810436606407166, + -0.07229045033454895, + 0.12459214776754379, + 0.014383073896169662, + 0.04380850866436958, + 0.09870689362287521, + 0.6041895151138306, + 0.07100291550159454, + 0.25920569896698, + 0.6406476497650146, + 0.31951746344566345, + -0.35319676995277405, + 0.10219580680131912, + -0.2607383131980896, + 0.408083975315094, + -0.13438265025615692, + -0.07431582361459732, + -0.195485457777977, + 0.16928330063819885, + 0.04176736995577812, + -0.3041282892227173, + 0.039509277790784836, + 0.1898241639137268, + 0.07274668663740158, + 0.030978377908468246, + 0.30259159207344055, + 0.20311325788497925, + -0.09501809626817703, + 0.45608678460121155, + -0.17285370826721191, + -0.1034097671508789, + 0.347759872674942, + -0.2291771024465561, + 0.12405966222286224, + 0.12078092992305756, + -0.062239568680524826, + -0.3865746557712555, + 0.18865078687667847, + -0.3410874903202057, + -0.23614726960659027, + 0.04899827390909195, + -0.12557347118854523, + 0.09591282904148102, + -0.26604950428009033, + 0.05497484654188156, + 0.06773429363965988, + 0.04967539384961128, + 0.17482496798038483, + 0.35082393884658813, + 0.059912484139204025, + -0.1907939463853836, + 0.2109791338443756, + -0.042397402226924896, + -0.10436010360717773, + -0.3644818067550659, + 0.0881710797548294, + -0.18994587659835815, + 0.6630847454071045, + 0.06388696283102036, + -0.022125741466879845, + 0.1327216625213623, + -0.14152146875858307, + -0.18682795763015747, + -0.4027436673641205, + -0.08173949271440506, + -0.1665683388710022, + 0.08023914694786072, + 0.13450318574905396, + 0.05962695553898811, + -0.3576686382293701, + -0.11541208624839783, + -0.023674385622143745, + -0.10740462690591812, + 0.09639335423707962, + -0.11354199051856995, + -0.1706063151359558, + 0.3247024118900299, + 0.26461711525917053, + 0.42767003178596497, + -0.39370471239089966, + 0.09580746293067932, + 0.06179129332304001, + -0.2857809066772461, + -0.12670451402664185, + -0.026705123484134674, + -0.4812834560871124, + -0.23243390023708344, + 0.3261158764362335, + 0.31943270564079285, + 0.01188349723815918, + 0.052742768079042435, + 0.13957804441452026, + 0.25010421872138977, + -0.369578093290329, + -0.07842645049095154, + 0.2857654392719269, + 0.2305995672941208, + 0.32215672731399536, + 0.05624943971633911, + -0.4458381235599518, + -0.3493761420249939, + -0.09723154455423355, + -0.4201689660549164, + 0.05046665295958519, + 0.23753809928894043, + 0.029007647186517715, + -0.05417732894420624, + 0.07578655332326889, + -0.022361917421221733, + -0.24034860730171204, + 0.35533517599105835, + -0.057443127036094666, + 0.278106153011322, + 0.0873420238494873, + -0.22808769345283508, + -0.08650699257850647, + -0.20494116842746735, + -0.35072046518325806, + -0.2496449202299118, + 0.18551291525363922, + 0.24581533670425415, + -0.3094838261604309, + 0.03934190049767494, + 0.23132427036762238, + -0.1402081400156021, + -0.17246097326278687, + -0.010208829306066036, + -0.2707397937774658, + 0.4107304811477661, + -0.1262853592634201, + -0.28506845235824585, + 0.17675578594207764, + -0.026497740298509598, + 0.005959221161901951, + 0.15867610275745392, + -0.006215577479451895, + 0.37070876359939575, + 0.06254514306783676, + 0.021026961505413055, + 0.5632040500640869, + 0.08371199667453766, + 0.12306446582078934, + 0.27995607256889343, + 0.09476613998413086, + -0.015644725412130356, + -0.2608633041381836, + -0.2269676774740219, + 0.2435905933380127, + -0.3656603991985321, + -0.17693662643432617, + 0.13172589242458344, + 0.282509446144104, + -0.4208969473838806, + -0.32790568470954895, + 0.02855946309864521, + 0.029470013454556465, + -0.052197717130184174, + -0.14030805230140686, + -0.26553845405578613, + -0.15844698250293732, + -0.40292036533355713, + -0.006387969478964806, + 0.2104761302471161, + 0.47560420632362366, + 0.19139701128005981, + 0.18151742219924927, + -0.2554055452346802, + -0.2698480784893036, + 0.29285064339637756, + 0.24421283602714539, + 0.04559524357318878, + -0.02580331824719906, + -0.17833274602890015, + 0.2966034710407257, + 0.3906712532043457, + 0.036921098828315735, + 0.09224876016378403, + 0.02836645022034645, + 0.013121644966304302, + 0.17179760336875916, + 0.09241248667240143, + -0.23306499421596527, + -0.0361931174993515, + -0.4037712812423706, + 0.11465311050415039, + -0.22384013235569, + -0.13772326707839966, + 0.1899043619632721, + -0.19693519175052643, + -0.5686931610107422, + -0.17484872043132782, + 0.2454901784658432, + -0.09055855870246887, + -0.21049080789089203, + 0.20207257568836212, + 0.25824782252311707, + -0.0856563076376915, + -0.32466623187065125, + 0.04943637549877167, + -0.6365343332290649, + -0.3912724554538727, + 0.14179760217666626, + -0.06053011864423752, + -0.1336173117160797, + 0.11264845728874207, + 0.5574877858161926, + 0.6269810199737549, + 0.2831834554672241, + -0.1764572411775589, + 0.10152709484100342, + 0.4402831792831421, + 0.2750452160835266, + -0.26345095038414, + -10.53958797454834, + -0.24325020611286163, + -0.4370220899581909, + 0.5419100522994995, + -0.14332497119903564, + 0.03426136448979378, + 0.04662206023931503, + -0.015338003635406494, + -0.015151770785450935, + 0.07651343196630478, + -0.06670750677585602, + -0.13182608783245087, + 0.2413972020149231, + 0.37658578157424927, + -0.020042261108756065, + 0.19873683154582977, + -0.34008076786994934, + 0.1857091784477234, + 0.04247715324163437, + 0.15104743838310242, + 0.12944477796554565, + 0.23402012884616852, + -0.27233079075813293, + 0.10315030068159103, + -0.06042518839240074, + -0.4643903374671936, + -0.19956164062023163, + 0.6833988428115845, + 0.3026259243488312, + -0.49559223651885986, + 0.18144457042217255, + 0.09822139143943787, + -0.08708757907152176, + 0.1921965628862381, + -0.17693962156772614, + -0.02344360575079918, + -0.06860484182834625, + 0.19017118215560913, + 0.47005999088287354, + -0.10647406429052353, + 0.07101799547672272, + -0.17018988728523254, + 0.3171253502368927, + 0.15009671449661255, + -0.12065419554710388, + -0.5578388571739197, + -0.07680998742580414, + -1.6092629432678223, + 0.37576255202293396, + 0.19459375739097595, + 0.2655843198299408, + 0.17125600576400757, + 0.16062740981578827, + 0.320028692483902, + -0.2682441174983978, + -0.031299784779548645, + -0.37888023257255554, + -0.1387372612953186, + 0.12342213094234467, + 0.037366922944784164, + 0.021292701363563538, + -0.07971557974815369, + 0.5174992084503174, + 0.08627235889434814, + -0.2913949489593506, + -0.0070678312331438065, + 0.0806439146399498, + -0.15925346314907074, + -0.3818877935409546, + -0.7508208155632019, + -0.5077129006385803, + -0.015371579676866531, + -0.21697354316711426, + -0.10090424120426178, + 0.34639376401901245, + -0.0360957570374012, + -0.29134833812713623, + 0.29133984446525574, + 0.03507006913423538, + 0.38625314831733704, + 0.3480467200279236, + -0.016976913437247276, + 0.23984700441360474, + -0.24661046266555786, + -0.266758531332016, + -0.11940452456474304, + 0.22042125463485718, + 0.4598276913166046, + 0.022168587893247604, + -0.012605531141161919, + 0.04371859133243561, + 0.38908711075782776, + 0.020787067711353302, + -0.23353531956672668, + -0.5190649032592773, + -0.016093701124191284, + -0.10030075162649155, + 0.09077152609825134, + -0.07327613234519958, + -0.13100510835647583, + -0.21425645053386688, + 0.22100454568862915, + -0.053261373192071915, + -0.60146164894104, + -0.529291033744812, + 0.2726321518421173, + 0.07354256510734558, + 0.2038210779428482, + 0.03103623166680336, + -0.16682370007038116, + -0.2672257721424103, + 0.001944760442711413, + 0.1734459400177002, + 0.5298051834106445, + 0.23192299902439117, + 0.00561538664624095, + -0.020770259201526642, + -0.24250862002372742, + -0.2480211853981018, + -0.0642152801156044, + 0.4254811108112335, + -0.1370002031326294, + 0.2795073688030243, + 0.6639853119850159, + 0.0030143277253955603, + 0.016614986583590508, + 0.9106820225715637, + -0.41669145226478577, + 0.20060107111930847, + 0.001052684267051518, + 0.09848597645759583, + -0.09791652858257294, + -0.4289093315601349, + 0.08117537945508957, + 0.5730606317520142, + -0.33259645104408264, + 0.801346480846405, + 0.24811972677707672, + -0.3711259961128235, + -0.077213816344738, + -0.2828516662120819, + 0.44660547375679016, + 0.16936135292053223, + 0.1950913518667221, + -0.14170639216899872, + -0.2820476293563843, + -0.3287266194820404, + 0.07876759022474289, + -0.2917419672012329, + -0.33581820130348206, + -0.19273975491523743, + 0.197501540184021, + 0.20982851088047028, + -0.19229239225387573, + 0.24591705203056335, + 0.15758797526359558, + -0.1002824679017067, + -0.34775763750076294, + -0.34296268224716187, + -0.0026926216669380665, + 0.16984984278678894, + 0.9312196373939514, + -0.04375514015555382, + -0.16746827960014343, + 0.015947900712490082, + 0.06800193339586258, + -0.36041897535324097, + 0.17884646356105804, + 0.07759329676628113, + -0.04371793940663338, + -0.43101081252098083, + 0.24981124699115753, + 0.13317324221134186, + -0.3283451497554779, + -0.1267511546611786, + -0.09107645601034164, + -0.13491111993789673, + 0.10378967225551605, + -0.17422327399253845, + 0.03339078277349472, + 0.38441774249076843, + -0.12827354669570923, + 0.06830746680498123, + -0.16860397160053253, + -0.14379164576530457, + 0.2162192016839981, + 0.45242002606391907, + 0.024911366403102875, + -0.2729759216308594, + -0.2879253625869751, + -0.5447385311126709, + 0.295782208442688, + -0.47549331188201904, + -0.03999749571084976, + 0.1288137435913086, + 0.184272900223732, + -0.30362462997436523, + 0.176407128572464, + 0.02824077382683754, + -0.0005072636995464563, + -0.20781172811985016, + 0.3229638934135437, + 0.502821147441864, + -0.2654266357421875, + 0.38718515634536743, + -0.11719797551631927, + 0.20717376470565796, + 0.054223570972681046, + -0.219769686460495, + 0.08627665042877197, + -0.4457436203956604 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/graph_068.json b/src/benchmark/output/results/results_graph_068.json similarity index 99% rename from src/benchmark/output/results/graph_068.json rename to src/benchmark/output/results/results_graph_068.json index d012c40..6394d30 100644 --- a/src/benchmark/output/results/graph_068.json +++ b/src/benchmark/output/results/results_graph_068.json @@ -3,13 +3,13 @@ "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is an adult male with no specified age or background information provided. However, based on the clinical data, it appears that the patient has a history of lung cancer.\n\n**Timeline of Diagnoses:**\n\n1. **September 2021:** The patient presented to The First Affiliated Hospital of Dalian Medical University with complaints of chest pain and fatigue for half a year. A CT scan revealed partial solid nodules in the posterior segment of the upper lobe of the right lung, which were later diagnosed as malignant neoplasm of bronchus and lung (C34).\n2. **Multiple small lung nodules in both lungs:** Following the initial diagnosis, the patient developed multiple small lung nodules in both lungs, accompanied by abnormal blood test results (lymphocytopenia and neutrophilia). This led to a decision to proceed with surgical resection of lung tissue.\n3. **November 2022:** The patient underwent surgical resection of lung tissue, which revealed invasive adenocarcinoma in the upper lobe of the right lung. The cancer was diagnosed as C2330808 (Adenocarcinoma, Invasive).\n4. **January 2024:** A CT examination revealed recurrent tumor shrinkage of about 7 mm * 9 mm.\n\n**Timeline of Treatments:**\n\n1. **Surgical resection of lung tissue:** The patient underwent surgical resection of lung tissue in November 2022.\n2. **No second surgical treatment:** The patient refused a second surgical treatment for the recurrence of primary cancer, which presented as ground glass nodules in the left lung.\n\n**Timeline of Outcomes:**\n\n1. **Pathological diagnosis:** The pathological diagnosis of invasive adenocarcinoma was confirmed post-surgery in November 2022.\n2. **Recurrence of primary cancer:** The patient developed recurrence of primary cancer with ground glass nodules in the left lung and new symptoms (fatigue, pale tongue, white fur, and weak pulse) in November 2022.\n3. **Recurrent tumor shrinkage:** A CT examination revealed recurrent tumor shrinkage of about 7 mm * 9 mm in January 2024.\n\n**Clinical Findings:**\n\nThroughout the patient's treatment, various clinical findings were reported, including:\n\n* Chest pain and fatigue\n* Multiple small lung nodules in both lungs\n* Abnormal blood test results (lymphocytopenia and neutrophilia)\n* Invasive adenocarcinoma in the upper lobe of the right lung\n* Ground glass nodules in the left lung\n* Recurrent tumor shrinkage\n\n**Laboratory Results:**\n\nThe patient's laboratory results showed:\n\n* Normal blood work (January 2024)\n* Elevated carcinoembryonic antigen level (November 2022)\n\n**Imaging Results:**\n\nThe patient underwent various imaging studies, including CT scans and pathology reports, which revealed:\n\n* Partial solid nodules in the posterior segment of the upper lobe of the right lung (September 2021)\n* Multiple small lung nodules in both lungs\n* Invasive adenocarcinoma in the upper lobe of the right lung\n* Ground glass nodules in the left lung\n* Recurrent tumor shrinkage\n\n**Prognosis:**\nThe patient's prognosis remains uncertain, as the cancer has recurred and treatment options are limited. Further evaluation and management are necessary to determine the best course of action.\n\n**Conclusion:**\nThis clinical case report highlights the complexities of managing lung cancer, particularly in cases where recurrence occurs. The patient's treatment plan will require careful consideration of various factors, including the patient's overall health, tumor characteristics, and available treatment options.", "bertscore": { "precision": [ - 0.32128238677978516 + 0.6718395352363586 ], "recall": [ - 0.4002746641635895 + 0.6553829908370972 ], "f1": [ - 0.3564547002315521 + 0.66350919008255 ] }, "topology": { diff --git a/src/benchmark/output/results/results_graph_069.json b/src/benchmark/output/results/results_graph_069.json new file mode 100644 index 0000000..cdf1ad7 --- /dev/null +++ b/src/benchmark/output/results/results_graph_069.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 67-year-old man with a significant smoking history, having smoked 30 cigarettes per day for 50 years. He presented to the clinic with a persistent dry cough that had lasted for more than three months.\n\n**Timeline of Diagnoses and Treatments:**\n\n1. **July 2019:** The patient was diagnosed with a mass in the central left upper lobe, enlarged bilateral mediastinal lymph nodes, and bilateral pulmonary nodules on contrast-enhanced chest CT (Step 2). Biopsy of the lesion under tracheoscopy confirmed lung adenocarcinoma histologically (Step 3).\n2. **July-September 2019:** The patient underwent whole-body scanning, which revealed macroscopic metastases in the bone. He was clinically classified as stage IVB (T4N0M1c) Non-Small Cell Lung Carcinoma (NSCLC). Zoledronic acid was administered to control bone destruction (Step 4).\n3. **September-October 2019:** The patient underwent tissue biopsy, which detected an acquired T790M mutation in exon 20 (c.2369C>T, frequency as 61.9%) via droplet digital polymerase chain reaction (ddPCR) (Step 7).\n4. **October-November 2019:** Due to the detection of the T790M mutation, the patient was switched to osimertinib 80mg once daily, achieving stable disease with shrinkage of hepatic lesions (Step 8).\n\n**Outcomes:**\n\n1. The patient experienced a rapid clinical benefit lasting 11 months after starting treatment with gefitinib (250 mg once daily) in response to the detection of EGFR exon 19 deletion (Step 6).\n2. After 11 months on gefitinib, tissue biopsy was performed to investigate resistance mechanisms, detecting an acquired T790M mutation in exon 20 (c.2369C>T, frequency as 61.9%) via droplet digital polymerase chain reaction (ddPCR) (Step 7).\n\n**Conclusion:**\nThe patient's clinical course highlights the importance of molecular testing and targeted therapy in the management of NSCLC. The detection of EGFR exon 19 deletion led to treatment with gefitinib, resulting in a rapid clinical benefit. However, the subsequent development of T790M mutation necessitated a switch to osimertinib, achieving stable disease with shrinkage of hepatic lesions.\n\n**Recommendations:**\n\n1. Regular molecular testing for EGFR mutations and T790M status should be performed in patients with NSCLC.\n2. Targeted therapy with gefitinib or osimertinib should be considered based on molecular test results.\n3. Close monitoring of disease progression and response to treatment is essential in managing NSCLC.\n\n**Limitations:**\n\n1. The patient's clinical course was limited by the availability of targeted therapies at the time of diagnosis.\n2. Further research is needed to explore the optimal timing and sequence of molecular testing and targeted therapy in NSCLC.\n\nThis case highlights the importance of personalized medicine in the management of NSCLC, emphasizing the need for regular molecular testing and targeted therapy based on test results.", + "bertscore": { + "precision": [ + 0.7394998073577881 + ], + "recall": [ + 0.7590272426605225 + ], + "f1": [ + 0.7491363286972046 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 8, + "edge_count": 7, + "avg_in_degree": 0.875, + "density": 0.125 + }, + "trajectory_embedding": [ + 0.25666746497154236, + 0.09836211800575256, + -0.10564713180065155, + 0.11217941343784332, + 0.015587031841278076, + 0.07877800613641739, + -0.006527600809931755, + 0.30493852496147156, + 0.5536767244338989, + -0.33620452880859375, + -0.018288739025592804, + -0.09518112242221832, + -0.5867060422897339, + -0.1109105795621872, + -0.2592107355594635, + 0.24846264719963074, + -0.07007073611021042, + 0.40585020184516907, + -0.035121072083711624, + -0.17632266879081726, + -0.41150736808776855, + 0.12900085747241974, + -0.5179646611213684, + 0.011795973405241966, + 0.2825905680656433, + -0.00016220123507082462, + 0.34252843260765076, + 0.4280332922935486, + 0.22219640016555786, + 0.3613862991333008, + 0.07800126075744629, + -0.2447209656238556, + 0.19326499104499817, + 0.07914368063211441, + -0.29915452003479004, + 0.09507599472999573, + 0.22362208366394043, + 0.46399396657943726, + -0.18116922676563263, + -0.007514392025768757, + -0.12442851066589355, + 0.07210458815097809, + 0.934358537197113, + 0.10561495274305344, + 0.3901500999927521, + -0.6726486086845398, + -0.08380874991416931, + 0.5911934971809387, + -0.5257490873336792, + -0.29130375385284424, + 0.1044064536690712, + 0.8028460741043091, + 0.5484437942504883, + -0.24162191152572632, + 0.4524662494659424, + -0.18043237924575806, + -0.29025259613990784, + -0.22971883416175842, + -0.14949378371238708, + 0.05125546455383301, + 0.07477600127458572, + -0.35419896245002747, + 0.41701623797416687, + -0.17004019021987915, + -0.21359305083751678, + -0.1945311725139618, + -0.3463388979434967, + 0.09063318371772766, + -0.0030839145183563232, + -0.3870120048522949, + -0.09583520144224167, + -0.1283489465713501, + -0.2513892948627472, + 0.1604527235031128, + 0.18581846356391907, + -0.11709420382976532, + 0.33531466126441956, + -0.03188348188996315, + 0.19029131531715393, + 0.2550313174724579, + -0.0822543129324913, + -0.15219824016094208, + -0.09043455123901367, + 0.3333173990249634, + -0.3944036662578583, + 0.042653217911720276, + -0.018155138939619064, + -0.35361000895500183, + -0.49409446120262146, + 0.18242305517196655, + 0.2514861524105072, + -0.3646293580532074, + 0.02510599046945572, + -0.16440901160240173, + -0.04039209336042404, + 0.25337204337120056, + 0.6405584812164307, + 0.2825964093208313, + 0.8349196910858154, + 0.053331635892391205, + 0.23610857129096985, + 0.05057676136493683, + 0.18641595542430878, + 0.11548621207475662, + 0.3753573000431061, + -0.06961709260940552, + 0.21650367975234985, + -0.4167139530181885, + 0.3236599862575531, + 0.4980228543281555, + 0.08730289340019226, + -0.23056495189666748, + 0.027384035289287567, + -0.18483182787895203, + 0.26607802510261536, + 0.1577218770980835, + -0.0730682760477066, + 0.2394803911447525, + 0.40272998809814453, + -0.5341137647628784, + -0.1731872856616974, + -0.041732899844646454, + 0.37931421399116516, + 0.3169870972633362, + -0.4419413208961487, + -0.11098247021436691, + -0.06337802112102509, + -0.08721653372049332, + 0.03974949195981026, + 0.017354171723127365, + -0.5232160091400146, + -0.21202696859836578, + -0.12197725474834442, + -0.009444866329431534, + -0.18841594457626343, + 0.20541569590568542, + -0.3392311930656433, + -0.006989772897213697, + -1.1055917739868164, + 0.21539819240570068, + -0.38327109813690186, + -0.12076538801193237, + -0.03378903865814209, + -0.45007824897766113, + -0.2675973176956177, + -0.2437313348054886, + -0.18390080332756042, + 0.2096915990114212, + -0.12327835708856583, + -0.09460892528295517, + 0.1252395212650299, + 0.040386710315942764, + 0.20688828825950623, + 0.6405147910118103, + 0.04969670996069908, + 0.04438483715057373, + 0.04089076817035675, + 0.23667104542255402, + 0.09772547334432602, + -0.10673050582408905, + 0.009607091546058655, + 0.5492638349533081, + 0.24171483516693115, + -0.001349408645182848, + -0.02168954536318779, + -0.6605674624443054, + 0.03441593050956726, + -0.11884206533432007, + 0.1436830461025238, + -0.010533898137509823, + -0.16988228261470795, + 0.0326748862862587, + -0.30332010984420776, + 0.640763521194458, + -0.06947337090969086, + 0.377486914396286, + 0.03378318250179291, + -0.06391999125480652, + 0.10308650135993958, + 0.2027653604745865, + 0.14286676049232483, + -0.2090056836605072, + 0.7181804180145264, + 0.2938482165336609, + -0.3369445502758026, + 0.10026802122592926, + 0.2669830620288849, + 0.004845362156629562, + -0.22821567952632904, + 0.0394570454955101, + 0.4800572097301483, + -0.34305521845817566, + 0.5293163657188416, + -0.41192543506622314, + 0.07043854892253876, + 0.20112955570220947, + -0.15012454986572266, + -0.028599578887224197, + -0.023524366319179535, + -0.15297278761863708, + 0.25060245394706726, + 0.08758500218391418, + -0.36206623911857605, + 0.09267867356538773, + 0.1335269808769226, + -0.15156210958957672, + 0.2387210875749588, + -0.09116030484437943, + 0.06634648144245148, + 0.030832534655928612, + -0.03730488196015358, + 0.23086045682430267, + -0.0797153189778328, + 0.18242359161376953, + -0.014068938791751862, + -0.40358978509902954, + 0.20286288857460022, + -0.07431277632713318, + -0.14920426905155182, + 0.08184167742729187, + -0.06755200773477554, + -0.3457333445549011, + -0.1492878794670105, + 0.05128539726138115, + -0.5932213664054871, + 0.18393123149871826, + 0.0824032723903656, + 0.24191436171531677, + 0.2795810103416443, + -0.011457322165369987, + -0.04560541361570358, + -0.36321258544921875, + 0.3616323471069336, + -0.06459646672010422, + -0.05504806712269783, + -0.3412683606147766, + 0.3263639211654663, + -0.18049117922782898, + 0.12835970520973206, + 0.32410502433776855, + 0.04115778207778931, + -0.10247916728258133, + 0.21699130535125732, + -0.32951346039772034, + -0.07888811081647873, + -0.3947087824344635, + -0.08454478532075882, + 0.34643369913101196, + 0.07439595460891724, + 0.31764206290245056, + 0.09817415475845337, + -0.21077699959278107, + 0.15804523229599, + -0.18754459917545319, + -0.43145880103111267, + -0.4026658535003662, + -0.14664074778556824, + -0.18226730823516846, + -0.6329051852226257, + 0.1640111804008484, + 0.050134576857089996, + -0.06383318454027176, + 0.16606715321540833, + -0.31898292899131775, + -0.051457252353429794, + 0.08045471459627151, + 0.05186709016561508, + 0.08801534026861191, + -0.2857780456542969, + 0.0887056291103363, + -0.2129225730895996, + -0.2659778296947479, + -0.10775581002235413, + -0.033920768648386, + 0.08397144824266434, + 0.044675201177597046, + -0.25342482328414917, + -0.010279938578605652, + 0.12222690880298615, + -0.2919011116027832, + -0.09838028252124786, + 0.18340519070625305, + -0.15575754642486572, + 0.18318885564804077, + 0.0067793577909469604, + 0.28727737069129944, + 0.25091224908828735, + 0.10195071250200272, + 0.13100571930408478, + 0.3899761736392975, + 0.49315428733825684, + -0.07927301526069641, + 0.025261692702770233, + -0.10839638859033585, + -0.0816258117556572, + -0.030743882060050964, + -0.33818185329437256, + 0.3746686577796936, + 0.04611862450838089, + -0.017529593780636787, + 0.025740139186382294, + 0.31984949111938477, + 0.14884240925312042, + -0.29760751128196716, + 0.05642168968915939, + 0.5311634540557861, + 0.0994412750005722, + 0.19660961627960205, + 0.1454971730709076, + 0.2518691420555115, + 0.3074530363082886, + -0.13429395854473114, + 0.1153658777475357, + 0.2333822101354599, + -0.12232224643230438, + -0.18372851610183716, + -0.0720856711268425, + 0.13661940395832062, + 0.42326945066452026, + -0.11844570934772491, + -0.18767580389976501, + 0.03744101896882057, + -0.12768149375915527, + -0.0298610907047987, + -0.2751069664955139, + -0.22378407418727875, + 0.10570341348648071, + -0.2272801548242569, + 0.41350069642066956, + 0.046144403517246246, + 0.03656047582626343, + 0.4484408497810364, + -0.4249313473701477, + -0.20341786742210388, + 0.19298073649406433, + -0.20763367414474487, + -0.4511153995990753, + 0.39717018604278564, + -0.21834659576416016, + -0.017930038273334503, + 0.4075450599193573, + -0.42279547452926636, + -0.033417850732803345, + -0.006711484864354134, + 0.3404155373573303, + -0.11087452620267868, + -0.0027406886219978333, + -0.059695057570934296, + 0.12452209740877151, + 0.1565469354391098, + 0.583995521068573, + 0.19145068526268005, + 0.2966713607311249, + 0.682086169719696, + 0.10559949278831482, + -0.35648390650749207, + 0.07549180835485458, + -0.09466895461082458, + 0.40385594964027405, + -0.18018187582492828, + -0.16928385198116302, + -0.22170531749725342, + 0.019481703639030457, + -0.00995594635605812, + -0.3576612174510956, + 0.06909862905740738, + 0.19293169677257538, + 0.09793014824390411, + -0.03551984205842018, + 0.3290531039237976, + 0.1922406107187271, + -0.06429126858711243, + 0.44014090299606323, + 0.043542567640542984, + -0.10600118339061737, + 0.30084165930747986, + -0.22587302327156067, + 0.1712511032819748, + 0.036774687469005585, + -0.159850612282753, + -0.34072425961494446, + 0.1383986473083496, + -0.2547699511051178, + -0.15231941640377045, + -0.030812354758381844, + -0.20281964540481567, + 0.042921412736177444, + -0.31337788701057434, + 0.09639241546392441, + -0.022920481860637665, + 0.19006317853927612, + 0.15015213191509247, + 0.33820581436157227, + 0.052548620849847794, + -0.22459056973457336, + 0.3048524856567383, + 0.04193713515996933, + -0.018307477235794067, + -0.2143227905035019, + 0.016221703961491585, + -0.11753380298614502, + 0.7342591285705566, + 0.10019055008888245, + 0.06097016483545303, + 0.018677005544304848, + -0.01033921167254448, + -0.12460128962993622, + -0.4061761200428009, + -0.06788623332977295, + -0.10716073215007782, + 0.1844807267189026, + 0.13965795934200287, + -0.020252803340554237, + -0.4010528326034546, + -0.12914541363716125, + -0.06211543455719948, + -0.023204544559121132, + 0.0714690089225769, + -0.18026070296764374, + -0.17783468961715698, + 0.25477340817451477, + 0.1980656534433365, + 0.4922015964984894, + -0.505878746509552, + 0.1366254836320877, + 0.09200766682624817, + -0.36253616213798523, + -0.03907886520028114, + -0.11656356602907181, + -0.36645838618278503, + -0.08961674571037292, + 0.21734029054641724, + 0.21677625179290771, + -0.0009335018694400787, + -0.0403369665145874, + 0.16244661808013916, + 0.2696321904659271, + -0.42910662293434143, + -0.09376411885023117, + 0.3015987277030945, + 0.12665431201457977, + 0.395073264837265, + 0.09692437946796417, + -0.5088995695114136, + -0.16167086362838745, + -0.18511955440044403, + -0.45006123185157776, + -0.00400446355342865, + 0.32954469323158264, + -0.048425666987895966, + -0.08821266144514084, + -0.0033811014145612717, + 0.036058783531188965, + -0.06416185945272446, + 0.25571030378341675, + -0.12525710463523865, + 0.22573985159397125, + -0.03233420103788376, + -0.20570218563079834, + -0.12262456119060516, + -0.20368114113807678, + -0.35417628288269043, + -0.25642091035842896, + 0.21898102760314941, + 0.31150150299072266, + -0.3409660756587982, + 0.04296618327498436, + 0.012179923243820667, + -0.16421425342559814, + -0.14551402628421783, + -0.009469850920140743, + -0.3570883274078369, + 0.3245953917503357, + -0.14418059587478638, + -0.21235565841197968, + 0.026580292731523514, + -0.16160055994987488, + 0.06273306161165237, + 0.0674327164888382, + 0.05402405187487602, + 0.4008018374443054, + 0.11610833555459976, + 0.018250875174999237, + 0.621117353439331, + 0.029201889410614967, + 0.12359878420829773, + 0.26489773392677307, + 0.03465788811445236, + -0.021458175033330917, + -0.16944482922554016, + -0.0978836715221405, + 0.2692405879497528, + -0.317363977432251, + -0.08677121251821518, + 0.17694926261901855, + 0.20305095613002777, + -0.4414465129375458, + -0.315221905708313, + 0.062397900968790054, + -0.029627026990056038, + -0.11430064588785172, + -0.20136934518814087, + -0.2924620807170868, + -0.06921135634183884, + -0.29818642139434814, + -0.11660957336425781, + 0.31896135210990906, + 0.5837572813034058, + 0.16474467515945435, + 0.24154958128929138, + -0.26881614327430725, + -0.2994037866592407, + 0.20282429456710815, + 0.19028927385807037, + 0.12397941201925278, + 0.08452485501766205, + -0.24504870176315308, + 0.30071932077407837, + 0.44657644629478455, + -0.10751473903656006, + 0.07248286157846451, + 0.06704111397266388, + 0.04767543449997902, + 0.1292532980442047, + 0.07252524048089981, + -0.2346123307943344, + -0.05968847870826721, + -0.4427047669887543, + 0.14516319334506989, + -0.2968674302101135, + -0.13700878620147705, + 0.1596498191356659, + -0.05213196575641632, + -0.5064513683319092, + -0.2503249943256378, + 0.2584705352783203, + -0.21903470158576965, + -0.2469715178012848, + 0.3465113341808319, + 0.37456387281417847, + -0.017981842160224915, + -0.31929922103881836, + 0.005608430132269859, + -0.5615453720092773, + -0.3400079309940338, + 0.15573377907276154, + -0.1490129977464676, + -0.19149033725261688, + 0.046852122992277145, + 0.3527134656906128, + 0.5191280245780945, + 0.27859199047088623, + -0.07715807110071182, + 0.1862334907054901, + 0.4373195469379425, + 0.23818320035934448, + -0.1671731323003769, + -10.671300888061523, + -0.16085131466388702, + -0.3527109920978546, + 0.5222480297088623, + -0.1905766725540161, + 0.052273839712142944, + 0.09883707761764526, + -0.06563977152109146, + 0.057327765971422195, + 0.11146701872348785, + -0.21209898591041565, + -0.05851806700229645, + 0.3832474946975708, + 0.3569848835468292, + 0.08526182174682617, + 0.03134160488843918, + -0.38918259739875793, + 0.20344680547714233, + -0.009908504784107208, + 0.17736244201660156, + 0.18095320463180542, + 0.36517053842544556, + -0.329647421836853, + 0.19775936007499695, + -0.06888578832149506, + -0.43765559792518616, + -0.27472400665283203, + 0.7292103171348572, + 0.3435141146183014, + -0.35067427158355713, + 0.2577577829360962, + 0.16584846377372742, + -0.07950234413146973, + 0.2136671394109726, + -0.15160438418388367, + -0.024166133254766464, + -0.08196989446878433, + 0.10629440099000931, + 0.2703576982021332, + -0.09050708264112473, + -0.020090151578187943, + -0.16557104885578156, + 0.38666099309921265, + 0.1663493663072586, + -0.13936802744865417, + -0.5812921524047852, + -0.14124681055545807, + -1.6571545600891113, + 0.2949896454811096, + 0.23343142867088318, + 0.31535834074020386, + -0.0014957450330257416, + 0.21099869906902313, + 0.2615029811859131, + -0.42352965474128723, + -0.1343311369419098, + -0.31063422560691833, + -0.05367868393659592, + 0.10456769168376923, + 0.048608094453811646, + 0.08472727239131927, + -0.029528450220823288, + 0.5252254605293274, + 0.0715777650475502, + -0.24401605129241943, + 0.05202998220920563, + 0.12594753503799438, + -0.2505672574043274, + -0.29577749967575073, + -0.7286742925643921, + -0.569593608379364, + 0.10052652657032013, + -0.16005727648735046, + -0.06095202639698982, + 0.420904278755188, + -0.09311717003583908, + -0.2753746211528778, + 0.18907378613948822, + 0.13708391785621643, + 0.33056166768074036, + 0.3137446939945221, + -0.01773213967680931, + 0.19031891226768494, + -0.25361570715904236, + -0.2605799436569214, + -0.15459437668323517, + 0.10893630981445312, + 0.5415650010108948, + 0.02603469416499138, + -0.02515205182135105, + -0.026172420009970665, + 0.4368271231651306, + 0.04866420477628708, + -0.1560000777244568, + -0.4696718752384186, + 0.02098233252763748, + -0.07415862381458282, + 0.11432771384716034, + -0.08622188866138458, + -0.1000296026468277, + -0.1716911494731903, + 0.038574010133743286, + -0.03483861684799194, + -0.5616407990455627, + -0.5548403859138489, + 0.23178496956825256, + 0.047906313091516495, + 0.16707739233970642, + -0.0756557360291481, + -0.15162193775177002, + -0.30099406838417053, + 0.019038036465644836, + 0.2653662860393524, + 0.5421844720840454, + 0.25984328985214233, + -0.048513490706682205, + 0.06438425183296204, + -0.2756190001964569, + -0.18491627275943756, + -0.03770400583744049, + 0.3633764386177063, + -0.15793238580226898, + 0.2725774943828583, + 0.6454645991325378, + 0.006664185784757137, + -0.05192241445183754, + 0.8732181787490845, + -0.31832653284072876, + 0.20779645442962646, + -0.14652594923973083, + 0.13894358277320862, + -0.009172346442937851, + -0.39835768938064575, + 0.09639112651348114, + 0.45227691531181335, + -0.26172131299972534, + 0.8121075630187988, + 0.2704976201057434, + -0.3790532052516937, + -0.02944677323102951, + -0.30447208881378174, + 0.4518047869205475, + 0.2453765571117401, + 0.238155335187912, + -0.12558923661708832, + -0.29473307728767395, + -0.4124121069908142, + 0.25407177209854126, + -0.36685800552368164, + -0.46930864453315735, + -0.15156909823417664, + 0.26486292481422424, + 0.15625834465026855, + -0.1362447887659073, + 0.3022874593734741, + 0.24081048369407654, + -0.1505184918642044, + -0.31114035844802856, + -0.3496468961238861, + -0.06350313872098923, + 0.2260129749774933, + 0.8786884546279907, + -0.020772546529769897, + -0.10452791303396225, + -0.009844676591455936, + 0.06732234358787537, + -0.1979723572731018, + 0.11052621901035309, + 0.12381531298160553, + -0.14624632894992828, + -0.49884873628616333, + 0.2957819998264313, + 0.2346268892288208, + -0.3053198456764221, + -0.020453380420804024, + -0.08236579596996307, + -0.14079026877880096, + 0.06781109422445297, + -0.31418806314468384, + 0.07816377282142639, + 0.2698047161102295, + -0.1276203989982605, + 0.10266298800706863, + -0.31398600339889526, + -0.15008530020713806, + 0.20494110882282257, + 0.37378621101379395, + 0.056014157831668854, + -0.23630234599113464, + -0.289334774017334, + -0.5381220579147339, + 0.22854255139827728, + -0.387206494808197, + -0.07254603505134583, + 0.19826030731201172, + 0.22601494193077087, + -0.20607522130012512, + 0.11965243518352509, + -0.05140595883131027, + -0.0036779576912522316, + -0.2800808548927307, + 0.41920292377471924, + 0.39557746052742004, + -0.17992065846920013, + 0.33541178703308105, + -0.06209132447838783, + 0.18823902308940887, + 0.14005045592784882, + -0.22118143737316132, + 0.15195871889591217, + -0.39623144268989563 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_070.json b/src/benchmark/output/results/results_graph_070.json new file mode 100644 index 0000000..a343437 --- /dev/null +++ b/src/benchmark/output/results/results_graph_070.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Patient Demographics**\n\nThe patient is a 35-year-old female who was diagnosed with breast cancer. Unfortunately, the demographic information provided does not include her name, address, or any other identifying details.\n\n**Timeline of Diagnoses**\n\nThe patient's journey began in [month/year] when she developed memory problems following a COVID-19 infection. Two days later, she underwent lumpectomy due to the worsening symptoms. The pathology report revealed infiltrative breast carcinoma of mixed type (80% non-specific, 20% lobular), histoprognostic grade I (2-2-1), and histological tumor size of 30 mm along the long axis.\n\n**Timeline of Treatments**\n\nFollowing the lumpectomy, the patient was diagnosed with anti-LGI1 limbic encephalitis associated with early-stage breast cancer. MRI, EEG, and positive anti-LGI1 antibodies supported this diagnosis. As a result, she underwent PET scans to further investigate the breast cancer diagnosis.\n\nThe PET scan identified a moderately hypermetabolic lesion in the right breast, leading to resection of the breast tumor with immunohistopathological analysis. The pathological stage was determined as pT2 N0 (sn) G1 R. Following resection, immunosuppressive treatment was started within 24 hours of admission.\n\n**Timeline of Outcomes**\n\nThe patient's condition improved gradually over time. She recovered from the initial symptoms and no longer experienced headaches or focal epileptic seizures since hospitalization. However, partial retrograde and anterograde amnesia persisted during the initial week, followed by a slow and steady improvement.\n\nAfter 12 months of recovery, the patient returned to work with 80% of her previous productivity. Neuropsychological evaluations at baseline showed impairment in verbal episodic memory (Free and Cued Selective Reminding Test) and visual episodic memory (recall of the Rey-Osterrieth complex figure). However, after six months of treatment, objective cognitive improvement was observed.\n\n**Current Status**\n\nThe patient's current status is one of ongoing management and monitoring. She continues to receive immunosuppressive treatment to manage her anti-LGI1 limbic encephalitis. Regular follow-up appointments with her healthcare team are necessary to monitor her condition and adjust treatment as needed.\n\nDespite the challenges she has faced, the patient has demonstrated remarkable resilience and determination in her pursuit of recovery. Her progress is a testament to the importance of comprehensive care and ongoing support for individuals with complex medical conditions.", + "bertscore": { + "precision": [ + 0.5682033896446228 + ], + "recall": [ + 0.5968579053878784 + ], + "f1": [ + 0.5821782946586609 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 12, + "edge_count": 11, + "avg_in_degree": 0.9166666666666666, + "density": 0.08333333333333333 + }, + "trajectory_embedding": [ + 0.13369283080101013, + 0.14433510601520538, + -0.22548367083072662, + 0.060306016355752945, + -0.08639272302389145, + 0.002943794010207057, + 0.23735707998275757, + 0.16482573747634888, + 0.5013976693153381, + -0.3400944769382477, + -0.0792926773428917, + 0.0980411171913147, + -0.5940414071083069, + -0.14733976125717163, + -0.22831867635250092, + 0.1983317881822586, + -0.00968053936958313, + 0.277439147233963, + -0.14450059831142426, + -0.16099824011325836, + -0.34076163172721863, + 0.0865948423743248, + -0.31558945775032043, + -0.0824897438287735, + 0.10710851103067398, + -0.0934332087635994, + 0.37865975499153137, + 0.49469253420829773, + 0.15615332126617432, + 0.24864457547664642, + 0.14125993847846985, + 0.01845535635948181, + -0.15576577186584473, + 0.03730376437306404, + -0.2879844009876251, + 0.2889155447483063, + 0.213713601231575, + 0.3224811255931854, + -0.05982811748981476, + -0.033730100840330124, + -0.10818079113960266, + 0.21347206830978394, + 0.8228889107704163, + 0.25680774450302124, + 0.36214807629585266, + -0.5653674006462097, + -0.049573663622140884, + 0.4634188711643219, + -0.3663308322429657, + -0.10936939716339111, + 0.1866655945777893, + 0.5487546324729919, + 0.5227803587913513, + -0.2137134075164795, + 0.4485027492046356, + -0.07090269774198532, + -0.3489706218242645, + -0.16254732012748718, + -0.15057876706123352, + 0.11174788326025009, + -0.014290958642959595, + -0.1474752575159073, + 0.33366265892982483, + -0.10847434401512146, + -0.23606844246387482, + -0.25416824221611023, + -0.18237197399139404, + 0.06671617180109024, + 0.04271206259727478, + -0.312054306268692, + -0.17764820158481598, + -0.39080968499183655, + -0.23062437772750854, + 0.16309311985969543, + 0.08586438745260239, + -0.15263618528842926, + 0.4506126642227173, + 0.1265716552734375, + 0.1787474900484085, + 0.1616818606853485, + 0.08129360526800156, + -0.07555656880140305, + -0.032675452530384064, + 0.23464518785476685, + -0.3550747334957123, + 0.1810835599899292, + -0.1592039316892624, + -0.13825233280658722, + -0.2598206698894501, + 0.29697516560554504, + 0.2694394290447235, + -0.4037123918533325, + 0.051219675689935684, + -0.1736326366662979, + 0.003282601712271571, + 0.11851459741592407, + 0.3484923839569092, + 0.31940537691116333, + 0.8392224311828613, + 0.02724343352019787, + 0.26075252890586853, + 0.052311692386865616, + 0.2747480571269989, + -0.06750866025686264, + 0.3651670217514038, + -0.21141113340854645, + 0.2730628550052643, + -0.43804681301116943, + 0.0446157343685627, + 0.4512770473957062, + 0.03257989510893822, + -0.26928049325942993, + 0.0012383708963170648, + -0.3603943884372711, + 0.01977371983230114, + 0.09622174501419067, + -0.08374900370836258, + 0.20036540925502777, + 0.19462311267852783, + -0.5109869837760925, + -0.13110634684562683, + -0.051308903843164444, + 0.3071380853652954, + 0.2497265338897705, + -0.5640978813171387, + -0.10582602769136429, + -0.07318683713674545, + 0.007638255599886179, + 0.023114101961255074, + 0.14992059767246246, + -0.45205625891685486, + -0.1908349245786667, + -0.1434377282857895, + 0.1947791427373886, + -0.02827431447803974, + 0.3386586606502533, + -0.4353886842727661, + 0.05987301841378212, + -1.0165730714797974, + 0.14351540803909302, + -0.4588097333908081, + -0.09114237874746323, + 0.045307278633117676, + -0.41874977946281433, + -0.12226101756095886, + -0.13272303342819214, + -0.08449415117502213, + 0.20634578168392181, + -0.22234326601028442, + 0.05836540833115578, + -0.03988165408372879, + -0.03378593549132347, + 0.25582465529441833, + 0.401073694229126, + 0.00880881305783987, + 0.03959021344780922, + -0.010096686892211437, + 0.34262850880622864, + 0.15954278409481049, + -0.12223462015390396, + 0.053812071681022644, + 0.39979198575019836, + -0.0308555718511343, + -0.08000319451093674, + 0.04816700890660286, + -0.5325723886489868, + -0.026968175545334816, + -0.24248643219470978, + 0.03366946056485176, + 0.0303976908326149, + -0.20455892384052277, + 0.1550566703081131, + -0.17140136659145355, + 0.5480491518974304, + 0.17741626501083374, + 0.4223334789276123, + -0.06001768633723259, + 0.0418718159198761, + 0.23618412017822266, + 0.05499522015452385, + -0.012503673322498798, + -0.18104957044124603, + 0.5137625336647034, + 0.06913763284683228, + -0.3243136703968048, + 0.15785230696201324, + 0.3465646207332611, + -0.11138931661844254, + -0.22015583515167236, + 0.08521714061498642, + 0.4761897623538971, + -0.3507315218448639, + 0.36825743317604065, + -0.22183209657669067, + -0.017696889117360115, + 0.11378219723701477, + -0.28424033522605896, + -0.20387907326221466, + -0.07319405674934387, + -0.20854443311691284, + 0.21480238437652588, + 0.10793677717447281, + -0.3450411558151245, + 0.17583273351192474, + 0.13426493108272552, + -0.1309541016817093, + 0.14964306354522705, + 0.11205101758241653, + 0.0369296558201313, + -0.16131845116615295, + -0.13489222526550293, + 0.23906724154949188, + -0.08209555596113205, + 0.1775376945734024, + 0.052272338420152664, + -0.21379972994327545, + 0.22216705977916718, + -0.07851523905992508, + -0.15016934275627136, + 0.12440332025289536, + 0.06782232969999313, + -0.15268243849277496, + 0.12486954778432846, + 0.12850499153137207, + -0.40576648712158203, + 0.21358908712863922, + 0.2588064670562744, + 0.2425181269645691, + 0.012843807227909565, + -0.10945073515176773, + 0.07783098518848419, + -0.3200782239437103, + 0.3623781204223633, + -0.2896438539028168, + -0.21270795166492462, + -0.29278627038002014, + 0.20661650598049164, + -0.084601990878582, + -0.026783021166920662, + 0.30580824613571167, + -0.08935374766588211, + -0.10114268213510513, + 0.12749981880187988, + -0.12924204766750336, + -0.042565878480672836, + -0.24609309434890747, + -0.04173661768436432, + 0.36877432465553284, + 0.015414354391396046, + 0.2621048390865326, + 0.1296478807926178, + 0.028784437105059624, + 0.08362378925085068, + -0.24670858681201935, + -0.29480770230293274, + -0.418149471282959, + -0.1254057139158249, + -0.09309981018304825, + -0.5016807913780212, + 0.1129632219672203, + 0.04898205026984215, + -0.14827008545398712, + 0.01911735348403454, + -0.35567596554756165, + -0.10920429974794388, + -0.04350036382675171, + 0.0031482491176575422, + 0.23762480914592743, + -0.26676133275032043, + 0.024606266990303993, + -0.40406370162963867, + -0.35046085715293884, + -0.16688822209835052, + -0.013889278285205364, + 0.057161737233400345, + 0.12509512901306152, + -0.20088766515254974, + 0.14081457257270813, + 0.11382729560136795, + -0.42765820026397705, + -0.21322210133075714, + 0.11389172077178955, + -0.20810635387897491, + 0.3671903908252716, + -0.08413372188806534, + 0.3005961775779724, + 0.41636988520622253, + 0.11242785304784775, + 0.18965785205364227, + 0.28928327560424805, + 0.520293116569519, + -0.044199634343385696, + 0.024378767237067223, + -0.006035264115780592, + 0.05313709005713463, + 0.004007492680102587, + -0.3168799877166748, + 0.3585367202758789, + -0.09793543070554733, + 0.09263209253549576, + 0.10440099239349365, + 0.19418644905090332, + 0.07036259770393372, + -0.313355952501297, + 0.011952652595937252, + 0.5541787147521973, + 0.1412898302078247, + 0.160475492477417, + 0.08976251631975174, + 0.17537327110767365, + 0.3155760169029236, + -0.10054931789636612, + -0.1561570167541504, + 0.18973542749881744, + -0.13867297768592834, + -0.1387985199689865, + -0.12286537885665894, + 0.13513325154781342, + 0.3361354172229767, + -0.03276941925287247, + -0.16890649497509003, + 0.21351651847362518, + -0.10991711169481277, + -0.07627999037504196, + -0.21893203258514404, + -0.1382598578929901, + -0.0059937890619039536, + -0.19009922444820404, + 0.21068556606769562, + 0.03446594998240471, + 0.015854530036449432, + 0.3723958432674408, + -0.29323187470436096, + -0.28275343775749207, + 0.08757380396127701, + -0.03232966363430023, + -0.3145970106124878, + 0.42372259497642517, + -0.21242040395736694, + -0.03761497884988785, + 0.26172947883605957, + -0.26935288310050964, + -0.056598175317049026, + 0.0194065123796463, + 0.2074081152677536, + -0.005017491523176432, + 0.10081883519887924, + -0.22837196290493011, + 0.09224596619606018, + 0.05369365215301514, + 0.4721032679080963, + 0.0363822840154171, + 0.02430731989443302, + 0.47994187474250793, + 0.034579940140247345, + -0.28111281991004944, + 0.01448619645088911, + -0.10241955518722534, + 0.2818920314311981, + -0.35109904408454895, + -0.0656985491514206, + -0.16916698217391968, + 0.07858668267726898, + 0.14301124215126038, + -0.23890535533428192, + 0.06551255285739899, + 0.07614059001207352, + -0.10317137837409973, + -0.12597224116325378, + 0.35762524604797363, + 0.15913806855678558, + -0.00016100953507702798, + 0.459397554397583, + -0.015815353021025658, + -0.1740366369485855, + 0.1316688358783722, + -0.04304949939250946, + 0.2007022649049759, + -0.03190537914633751, + -0.22499823570251465, + -0.4295353591442108, + 0.04322853684425354, + -0.04501204192638397, + -0.11935264617204666, + 0.06014082953333855, + -0.1900591105222702, + -0.01789635606110096, + -0.10643137246370316, + 0.20597542822360992, + -0.13492771983146667, + 0.09973853081464767, + -0.08143756538629532, + 0.37203916907310486, + -0.10802135616540909, + -0.2251192182302475, + 0.1895110160112381, + -0.001184944063425064, + 0.21880216896533966, + -0.28858664631843567, + -0.01768559031188488, + -0.17352627217769623, + 0.4409390985965729, + -0.17716597020626068, + 0.09665370732545853, + 0.08173658698797226, + -0.15442289412021637, + -0.1614701896905899, + -0.23705892264842987, + -0.008753109723329544, + 0.0026541941333562136, + 0.012119864113628864, + -0.11445283144712448, + 0.16676847636699677, + -0.14762179553508759, + -0.21313880383968353, + -0.015447833575308323, + 0.16811029613018036, + 0.050082504749298096, + -0.0501839853823185, + 0.09630388021469116, + 0.17460648715496063, + 0.08663546293973923, + 0.29719579219818115, + -0.25729629397392273, + 0.2130459100008011, + 0.10926475375890732, + -0.21921229362487793, + 0.04991713538765907, + -0.019299637526273727, + -0.16784268617630005, + -0.06860018521547318, + 0.045204147696495056, + 0.1771063655614853, + -0.03680209815502167, + -0.04808233305811882, + 0.02319001592695713, + 0.15841515362262726, + -0.24960601329803467, + -0.04259495809674263, + 0.4412775933742523, + -0.09239838272333145, + 0.276295006275177, + 0.019630176946520805, + -0.4266878068447113, + -0.14792127907276154, + -0.06619903445243835, + -0.39507484436035156, + 0.06897125393152237, + 0.25724226236343384, + -0.02481030859053135, + -0.11322715878486633, + 0.04402487352490425, + 0.07595331966876984, + 0.036155715584754944, + 0.3421369791030884, + -0.009855955839157104, + 0.049794748425483704, + 0.05466816946864128, + -0.22960107028484344, + -0.07555495202541351, + -0.18758220970630646, + -0.3266429603099823, + -0.2951572835445404, + 0.39320287108421326, + 0.15531866252422333, + -0.11411883682012558, + 0.21703268587589264, + 0.07975958287715912, + -0.08188915997743607, + -0.2652644217014313, + 0.02148693986237049, + -0.22459274530410767, + 0.4671039581298828, + -0.07289432734251022, + -0.18442785739898682, + 0.10770847648382187, + -0.17967168986797333, + 0.070625439286232, + 0.0899442657828331, + 0.10153353214263916, + 0.334744930267334, + 0.05648738145828247, + 0.15713071823120117, + 0.5687419176101685, + 0.15792421996593475, + 0.07198785990476608, + 0.346431165933609, + -0.011998350732028484, + 0.21020857989788055, + -0.2132946401834488, + -0.15075136721134186, + 0.39081916213035583, + -0.36817875504493713, + 0.08657001703977585, + 0.07854559272527695, + 0.3019058406352997, + -0.29808509349823, + -0.37159404158592224, + -0.037252411246299744, + -0.031213074922561646, + -0.10314192622900009, + -0.14263789355754852, + -0.21780936419963837, + -0.09251782298088074, + -0.3848308026790619, + -0.04128674790263176, + 0.15951508283615112, + 0.2599267065525055, + 0.2932097613811493, + 0.09694564342498779, + -0.24545425176620483, + -0.4213933050632477, + 0.26006755232810974, + 0.36978015303611755, + -0.014208558946847916, + -0.12072038650512695, + -0.18712176382541656, + 0.13509446382522583, + 0.27101829648017883, + -0.07785334438085556, + 0.020884402096271515, + -0.05586683750152588, + -0.024019740521907806, + 0.0859542116522789, + 0.12834765017032623, + -0.009478085674345493, + -0.03219858556985855, + -0.330635130405426, + 0.08101152628660202, + -0.16528365015983582, + -0.21762602031230927, + 0.16226263344287872, + -0.14579856395721436, + -0.4195441007614136, + -0.1634223461151123, + 0.17104683816432953, + -0.10313675552606583, + -0.17274470627307892, + 0.1721215844154358, + 0.3831445872783661, + -0.007932684384286404, + -0.07580296695232391, + 0.16059912741184235, + -0.5120869278907776, + -0.15657000243663788, + 0.2063646912574768, + -0.11311114579439163, + 0.060340702533721924, + 0.10143822431564331, + 0.331358402967453, + 0.39359989762306213, + 0.21257595717906952, + -0.40275833010673523, + 0.18102405965328217, + 0.2956150472164154, + 0.09417331963777542, + -0.3702111542224884, + -10.834364891052246, + -0.11203810572624207, + -0.1915384978055954, + 0.5572553277015686, + -0.15912386775016785, + 0.12665636837482452, + -0.006013969425112009, + 0.0022143900860100985, + 0.061949845403432846, + 0.18148262798786163, + -0.29447439312934875, + -0.03174024447798729, + 0.2532036304473877, + 0.2717180550098419, + 0.16377513110637665, + 0.07306229323148727, + -0.2374240756034851, + 0.25964489579200745, + 0.10002177208662033, + 0.2528753876686096, + 0.10205801576375961, + 0.48796701431274414, + -0.1474599391222, + 0.14683641493320465, + -0.03977102041244507, + -0.28073158860206604, + -0.38511887192726135, + 0.5401586890220642, + 0.36154699325561523, + -0.3091740012168884, + 0.18853668868541718, + 0.017350271344184875, + -0.0952727273106575, + -0.06880739331245422, + 0.05472588166594505, + -0.18106548488140106, + -0.19867289066314697, + 0.01577911525964737, + -0.009101185947656631, + -0.05456354841589928, + 0.052926644682884216, + -0.21073172986507416, + 0.14525043964385986, + 0.2752441167831421, + -0.15024036169052124, + -0.5265786051750183, + -0.13649414479732513, + -1.3948246240615845, + 0.16458535194396973, + 0.2391982525587082, + 0.5531957149505615, + 0.003794849617406726, + 0.10253766179084778, + 0.2757987082004547, + -0.32251986861228943, + 0.015557251870632172, + -0.2508157193660736, + -0.04504910111427307, + 0.17682473361492157, + -0.1156758964061737, + 0.13978193700313568, + -0.030885599553585052, + 0.4446631968021393, + -0.20023749768733978, + -0.2900990843772888, + 0.25828447937965393, + -0.0967584028840065, + 0.008840516209602356, + -0.23207437992095947, + -0.4876144826412201, + -0.5852916836738586, + -0.0502762496471405, + 0.032880064100027084, + 0.05854444205760956, + 0.4420769512653351, + 0.027179980650544167, + -0.2948583662509918, + 0.1697344332933426, + -0.1131061390042305, + 0.3400327265262604, + 0.06233333423733711, + -0.06178048253059387, + 0.15663470327854156, + -0.19814758002758026, + 0.053158652037382126, + -0.15635184943675995, + 0.12776301801204681, + 0.49489620327949524, + -0.055175576359033585, + -0.029246417805552483, + -0.05819543078541756, + 0.29239779710769653, + -0.10725220292806625, + -0.2111825793981552, + -0.4797670841217041, + 0.05479389429092407, + 0.0034328761976212263, + -0.05249451473355293, + 0.006541082169860601, + -0.09699243307113647, + -0.14804300665855408, + -0.09950397163629532, + -0.06707563996315002, + -0.5284958481788635, + -0.4301547706127167, + 0.3653144836425781, + 0.22122466564178467, + 0.11984621733427048, + 0.10394102334976196, + 0.08261428773403168, + -0.047052595764398575, + 0.01708347350358963, + 0.4604164659976959, + 0.4961283206939697, + 0.2094811648130417, + 0.02300799824297428, + 0.11407476663589478, + -0.19110210239887238, + -0.1690978854894638, + 0.062100499868392944, + 0.4442782700061798, + -0.014268008060753345, + 0.2945822477340698, + 0.47472211718559265, + 0.05398660898208618, + -0.09321630001068115, + 0.9861577153205872, + -0.34482601284980774, + 0.19569243490695953, + -0.0018870687345042825, + 0.22855663299560547, + -0.10818133503198624, + -0.25911659002304077, + 0.0782269611954689, + 0.2777820825576782, + -0.2894342243671417, + 0.5496587157249451, + 0.2505837380886078, + -0.3777984380722046, + -0.033916935324668884, + -0.24738569557666779, + 0.3974572420120239, + 0.13839787244796753, + 0.24944257736206055, + -0.16024769842624664, + -0.43543779850006104, + -0.36452779173851013, + 0.10373172909021378, + -0.27122992277145386, + -0.2931581139564514, + -0.19121940433979034, + 0.03754951432347298, + -0.05383605882525444, + -0.09965893626213074, + 0.28969433903694153, + 0.05203607305884361, + -0.14020299911499023, + -0.1341765969991684, + -0.4949578046798706, + -0.12240168452262878, + 0.04652697220444679, + 0.7514114379882812, + 0.07740660756826401, + -0.14325566589832306, + -0.1004452332854271, + 0.273474782705307, + -0.11568859219551086, + 0.21486151218414307, + -0.0060142031870782375, + 0.08099699765443802, + -0.38304778933525085, + 0.15438102185726166, + 0.261804461479187, + -0.2076626867055893, + -0.06949709355831146, + -0.19780856370925903, + 0.019032368436455727, + 0.02649535797536373, + -0.09652302414178848, + 0.1914377212524414, + 0.21322862803936005, + 0.054714351892471313, + 0.0989469587802887, + -0.3116009533405304, + 0.051409732550382614, + 0.10438374429941177, + 0.287426620721817, + 0.10781389474868774, + -0.366584450006485, + -0.21971769630908966, + -0.45732173323631287, + 0.2694143056869507, + -0.3026338517665863, + -0.034956786781549454, + 0.09978895634412766, + 0.2033783346414566, + -0.11928807944059372, + 0.17544913291931152, + -0.07910385727882385, + 0.03179256245493889, + -0.17706315219402313, + 0.18418331444263458, + 0.3205330967903137, + -0.2857564687728882, + 0.14534620940685272, + -0.1672273874282837, + 0.25369489192962646, + 0.18283875286579132, + -0.1367650032043457, + 0.20030300319194794, + -0.23739977180957794 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_072.json b/src/benchmark/output/results/results_graph_072.json new file mode 100644 index 0000000..a4d1ce4 --- /dev/null +++ b/src/benchmark/output/results/results_graph_072.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "The patient in question is a male who has been diagnosed with lung cancer. Unfortunately, the provided data does not include the patient's demographic information such as age, address, or contact details.\n\nHowever, based on the timeline of diagnoses and treatments provided, we can reconstruct a coherent narrative:\n\nThe patient was first diagnosed with lung cancer, which led to the start of gyroknife radiotherapy for left and right lung malignancies 12 times. This treatment was likely aimed at reducing the size of the tumors in the lungs.\n\nAfter completing this treatment, the patient experienced tumor progression, leading to the start of anlotinib 8mg orally once daily for 14 days every 3 weeks. This medication was intended to slow down the growth of the cancer cells.\n\nHowever, after 14 cycles of anlotinib treatment, the patient presented with hyperglycemia (fasting plasma glucose of 26.1 mmol/L) and urine ketone (+++), leading to a diagnosis of type 1 diabetes. As a result, the patient was discharged with a hypoglycemic regimen of insulin degludec 5 units in the morning and insulin aspartate 4 units three times a day.\n\nOne week after discharge, the patient's blood glucose levels significantly increased after re-starting anlotinib (highest recorded level was 30.1 mmol/L), and the insulin dose was increased. Despite this escalation, the patient continued to experience significant improvements in their laboratory parameters, including GADA, ICA, IAA, Fasting blood glucose, Hemoglobin A1c, Hemoglobin, and Serum albumin.\n\nAfter two cycles of anlotinib treatment, the medication was discontinued due to tumor progression and its significant negative impact on glucose metabolism. However, by the 16th cycle, laboratory parameters showed a marked improvement in these areas.\n\nThe patient's current status is unclear from the provided data, but it appears that they have undergone various treatments for their lung cancer and diabetes. The exact outcome of these treatments is not specified, but the narrative suggests that the patient has experienced significant improvements in their laboratory parameters over time.", + "bertscore": { + "precision": [ + 0.6911485195159912 + ], + "recall": [ + 0.6727587580680847 + ], + "f1": [ + 0.6818296313285828 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 10, + "edge_count": 9, + "avg_in_degree": 0.9, + "density": 0.1 + }, + "trajectory_embedding": [ + 0.1467558592557907, + 0.21578022837638855, + -0.22472743690013885, + 0.1429169625043869, + -0.0391475111246109, + 0.10741577297449112, + 0.24607594311237335, + 0.2464669942855835, + 0.3772128224372864, + -0.3546753525733948, + -0.1136227399110794, + 0.030413171276450157, + -0.4117017686367035, + -0.1751895248889923, + -0.3702186644077301, + 0.24298548698425293, + -0.22810597717761993, + 0.43166160583496094, + -0.07609720528125763, + -0.19508908689022064, + -0.2506624460220337, + 0.16180557012557983, + -0.3597126603126526, + -0.14883342385292053, + 0.054762791842222214, + 0.066930390894413, + 0.5134936571121216, + 0.6241241693496704, + 0.13119105994701385, + 0.39884868264198303, + 0.34290724992752075, + 0.07410649210214615, + 0.13018269836902618, + 0.03570286184549332, + -0.3678257167339325, + 0.20287713408470154, + 0.08639800548553467, + 0.03956761211156845, + -0.2587645649909973, + 0.08862163126468658, + -0.25685548782348633, + 0.01334497332572937, + 0.868068516254425, + 0.01634276658296585, + 0.3725665211677551, + -0.5754799246788025, + 0.025804687291383743, + 0.6441324949264526, + -0.31139636039733887, + -0.06749574095010757, + 0.043065305799245834, + 0.6532628536224365, + 0.37668541073799133, + -0.381503164768219, + 0.21977543830871582, + -0.3113846480846405, + -0.23924875259399414, + -0.2351614236831665, + -0.05154666304588318, + 0.2549881339073181, + 0.12514403462409973, + -0.2485843002796173, + 0.28092867136001587, + -0.3764851987361908, + -0.2138647735118866, + -0.08040594309568405, + -0.13744919002056122, + 0.2584134042263031, + 0.08712949603796005, + -0.17679020762443542, + -0.4196208119392395, + -0.2697073221206665, + -0.18063995242118835, + 0.15724965929985046, + -0.02044837176799774, + -0.2573614716529846, + 0.3839556872844696, + -0.028295908123254776, + 0.32923001050949097, + 0.1749843955039978, + 0.03201086074113846, + -0.20241613686084747, + -0.20521089434623718, + 0.26871758699417114, + -0.3518373370170593, + 0.07867185026407242, + -0.0590418204665184, + -0.10131154209375381, + -0.4003247618675232, + 0.16886074841022491, + 0.23691201210021973, + -0.4590117931365967, + -0.03547119349241257, + -0.125101700425148, + -0.11660709232091904, + 0.2730478346347809, + 0.36038222908973694, + 0.24189582467079163, + 0.8972047567367554, + 0.21318212151527405, + 0.023122116923332214, + 0.03919263184070587, + 0.07379062473773956, + -0.008304650895297527, + 0.3914582133293152, + -0.26800113916397095, + 0.10497178882360458, + -0.4425472617149353, + 0.4172024726867676, + 0.5542877912521362, + 0.09718867391347885, + -0.19852010905742645, + -0.09972235560417175, + -0.21962186694145203, + 0.2633120119571686, + 0.03274567052721977, + -0.02935497835278511, + 0.4012452960014343, + 0.34589189291000366, + -0.29314231872558594, + -0.16397865116596222, + -0.18719443678855896, + 0.23125767707824707, + 0.2925569713115692, + -0.23924842476844788, + -0.10354697704315186, + 0.11308254301548004, + -0.26390764117240906, + 0.022814739495515823, + -0.011556057259440422, + -0.521220326423645, + -0.28582364320755005, + -0.02419230341911316, + -0.1930917650461197, + -0.231863334774971, + 0.3714632987976074, + -0.21983346343040466, + -0.17233477532863617, + -1.059095025062561, + 0.09837963432073593, + -0.2561350464820862, + -0.06845741719007492, + -0.027006398886442184, + -0.5712205171585083, + -0.1504819691181183, + 0.008047682233154774, + -0.21386170387268066, + 0.18834829330444336, + -0.20514488220214844, + 0.028025785461068153, + 0.23172470927238464, + -0.2620478570461273, + 0.19429410994052887, + 0.5900846719741821, + -0.040279075503349304, + -0.07002563774585724, + 0.13729365170001984, + 0.09394415467977524, + -0.0071976869367063046, + -0.04783643037080765, + 0.010025514289736748, + 0.5305513143539429, + 0.009506863541901112, + 0.29826706647872925, + -0.2428264170885086, + -0.3946989178657532, + -0.12148205935955048, + -0.18953801691532135, + 0.1484622359275818, + -0.18778763711452484, + 0.0036178373266011477, + 0.04874396696686745, + -0.2736683785915375, + 0.6273735165596008, + -0.05598446726799011, + 0.21809370815753937, + -0.009256398305296898, + 0.0923294797539711, + -0.06790988147258759, + 0.05280381441116333, + -0.025408487766981125, + -0.16398142278194427, + 0.5152157545089722, + 0.16592112183570862, + -0.37397003173828125, + 0.12032677978277206, + 0.39339056611061096, + -0.035347841680049896, + -0.12495218217372894, + 0.16375714540481567, + 0.38146263360977173, + -0.20081070065498352, + 0.509199857711792, + -0.18221314251422882, + -0.047622788697481155, + 0.07603194564580917, + -0.08978302031755447, + 0.05722694471478462, + -0.18994253873825073, + -0.20203018188476562, + 0.07032635062932968, + 0.14731472730636597, + -0.4199419915676117, + 0.13970163464546204, + 0.3231737017631531, + -0.15464814007282257, + 0.1596236675977707, + 0.029887324199080467, + 0.11352817714214325, + 0.0014318585162982345, + -0.12874475121498108, + 0.10113590955734253, + 0.1491338461637497, + 0.31072384119033813, + -0.0032197958789765835, + -0.38153210282325745, + 0.0656530112028122, + 0.11896853148937225, + -0.22674818336963654, + 0.052436817437410355, + 0.14132793247699738, + -0.3060030937194824, + -0.17020323872566223, + 0.21048235893249512, + -0.436528742313385, + 0.22804853320121765, + 0.2027864158153534, + 0.20461246371269226, + -0.09846068918704987, + 0.01446255762130022, + -0.08623360842466354, + -0.20274241268634796, + 0.39063018560409546, + -0.17123058438301086, + -0.07699687778949738, + -0.12564930319786072, + 0.3477362394332886, + 0.26989006996154785, + 0.1616668701171875, + 0.3151460289955139, + 0.18125085532665253, + -0.13693901896476746, + 0.20597469806671143, + -0.3475784361362457, + -0.07087185233831406, + -0.2660316824913025, + -0.11002080142498016, + 0.35642945766448975, + 0.15521788597106934, + 0.27897635102272034, + 0.09877828508615494, + 0.001769575523212552, + 0.05051774904131889, + -0.04526882246136665, + -0.4147090017795563, + -0.25381579995155334, + -0.1564108282327652, + -0.20474962890148163, + -0.7942279577255249, + -0.012655595317482948, + 0.09141578525304794, + -0.08337827771902084, + 0.10615050792694092, + -0.2125818282365799, + -0.026336977258324623, + -0.04088575020432472, + 0.04255533963441849, + 0.11867685616016388, + -0.4701949656009674, + 0.05214893817901611, + -0.3366972804069519, + -0.23798970878124237, + -0.16544215381145477, + 0.06259768456220627, + 0.09437423944473267, + 0.08463583141565323, + -0.2870126962661743, + 0.20736460387706757, + 0.14921386539936066, + -0.23761186003684998, + -0.04541198909282684, + 0.06258977949619293, + -0.25223925709724426, + 0.17701342701911926, + 0.0406658835709095, + 0.15853345394134521, + 0.32122695446014404, + 0.062818743288517, + 0.17743121087551117, + 0.3767830729484558, + 0.4307214319705963, + -0.14313772320747375, + -0.07605954259634018, + 0.06110112741589546, + 0.01150633953511715, + 0.1238938421010971, + -0.43520838022232056, + 0.2948581576347351, + -0.07918266952037811, + -0.049306727945804596, + -0.04951731488108635, + 0.1361767053604126, + 0.23928086459636688, + 0.09140973538160324, + -0.03656182810664177, + 0.4791076183319092, + -0.09062507748603821, + 0.23751933872699738, + 0.11158742010593414, + 0.10434363037347794, + 0.154245063662529, + -0.1015637069940567, + 0.14817926287651062, + 0.2390809804201126, + -0.20413494110107422, + -0.25570106506347656, + -0.016404088586568832, + 0.144990473985672, + 0.5284889340400696, + -0.05836212635040283, + -0.11955232918262482, + 0.04613831639289856, + -0.10829593986272812, + -0.2275884449481964, + -0.35607996582984924, + -0.1915653645992279, + 0.01895376853644848, + -0.2098993957042694, + 0.38058751821517944, + 0.15650279819965363, + 0.06385938823223114, + 0.29727494716644287, + -0.46553659439086914, + -0.11989670991897583, + 0.1972590684890747, + -0.10775226354598999, + -0.33122071623802185, + 0.34752753376960754, + -0.1995423287153244, + 0.31886056065559387, + 0.12877532839775085, + -0.5177029371261597, + -0.03133440762758255, + 0.2025662660598755, + 0.32317858934402466, + 0.02872704342007637, + 0.20551195740699768, + -0.04093034192919731, + 0.13289186358451843, + -0.03587167337536812, + 0.28664636611938477, + 0.10394580662250519, + 0.03811519965529442, + 0.4892265796661377, + 0.08575405925512314, + -0.32652217149734497, + 0.1621469110250473, + -0.2651614546775818, + 0.26876598596572876, + -0.04428689181804657, + -0.15482404828071594, + 0.025008510798215866, + 0.13651856780052185, + -0.01320398785173893, + -0.38759756088256836, + 0.19344229996204376, + 0.08029833436012268, + -0.06462834775447845, + -0.1538604348897934, + 0.44362694025039673, + 0.23752036690711975, + -0.08606479316949844, + 0.49882107973098755, + -0.09216127544641495, + -0.18504269421100616, + 0.31577908992767334, + -0.1463363617658615, + 0.10288114845752716, + 0.016293346881866455, + -0.09976895153522491, + -0.2922491133213043, + 0.09390418976545334, + -0.018488731235265732, + -0.12227575480937958, + -0.002609365386888385, + -0.09500180184841156, + 0.17433643341064453, + -0.2604838013648987, + 0.03977131098508835, + -0.047779593616724014, + 0.02710282802581787, + 0.1168392151594162, + 0.04782016947865486, + 0.004629187751561403, + -0.17526385188102722, + 0.20097270607948303, + 0.10645027458667755, + -0.1354227364063263, + -0.24779196083545685, + -0.12895958125591278, + -0.14895187318325043, + 0.7062500715255737, + -0.0171036459505558, + 0.12317010015249252, + 0.09601439535617828, + -0.03774922341108322, + -0.047240134328603745, + -0.3598775267601013, + 0.11602409183979034, + -0.08174605667591095, + -0.007841676473617554, + -0.022301455959677696, + 0.015358957462012768, + -0.2556130588054657, + -0.06083443760871887, + -0.03944473713636398, + -0.04985945299267769, + 0.0885101929306984, + 0.06494314968585968, + -0.19790372252464294, + 0.319629967212677, + 0.17731168866157532, + 0.2622233033180237, + -0.3309285044670105, + 0.2701236605644226, + -0.036373138427734375, + -0.3810669779777527, + -0.05134083703160286, + -0.13280043005943298, + -0.37084364891052246, + -0.0896112322807312, + 0.18589049577713013, + 0.2305971384048462, + -0.15549463033676147, + -0.11894340813159943, + 0.06211910769343376, + -0.011870044283568859, + -0.3256921172142029, + 0.08518384397029877, + 0.40091386437416077, + 0.02822517789900303, + 0.13844819366931915, + 0.18404532968997955, + -0.44956859946250916, + -0.08736832439899445, + -0.26938340067863464, + -0.22091856598854065, + 0.08076024800539017, + 0.299245148897171, + 0.05726863816380501, + -0.18056657910346985, + 0.005609108135104179, + 0.1610868275165558, + -0.24337193369865417, + 0.20091977715492249, + 0.07438572496175766, + 0.15251891314983368, + -0.05615922808647156, + -0.18971483409404755, + -0.035100437700748444, + -0.2538006901741028, + -0.39921122789382935, + -0.23949792981147766, + 0.05675571411848068, + -0.06270407140254974, + -0.16913190484046936, + -0.04761975631117821, + 0.08796928077936172, + -0.19344601035118103, + 0.07061181217432022, + -0.00701174046844244, + -0.22233304381370544, + 0.3843590319156647, + -0.1723875105381012, + -0.15632855892181396, + 0.11514637619256973, + -0.11420341581106186, + -0.1089068055152893, + 0.20675912499427795, + 0.13253267109394073, + 0.24227342009544373, + 0.035336919128894806, + 0.06747899949550629, + 0.5281792283058167, + 0.0982801765203476, + 0.18560242652893066, + 0.3739277422428131, + 0.05999390408396721, + 0.04225751757621765, + -0.2424444705247879, + 0.009240892715752125, + 0.04715024307370186, + -0.5379596948623657, + -0.2022087574005127, + 0.25781458616256714, + 0.3765815496444702, + -0.2341899424791336, + -0.08735928684473038, + 0.12516091763973236, + -0.015649516135454178, + -0.11499756574630737, + -0.1802949607372284, + -0.14979815483093262, + -0.0698680728673935, + -0.421628475189209, + 0.11402423679828644, + 0.2602878212928772, + 0.5458724498748779, + 0.3064882159233093, + 0.145802304148674, + -0.14707684516906738, + -0.12892957031726837, + 0.21412897109985352, + 0.12117652595043182, + -0.07937133312225342, + -0.13859590888023376, + -0.014036153443157673, + 0.2481590062379837, + 0.18772627413272858, + -0.058366358280181885, + 0.20095443725585938, + -0.1382633000612259, + -0.01619616150856018, + 0.24248409271240234, + 0.018217677250504494, + -0.23908419907093048, + -0.036725353449583054, + -0.36994606256484985, + -0.030545193701982498, + -0.25978851318359375, + -0.17193163931369781, + 0.12156152725219727, + -0.14354027807712555, + -0.27277061343193054, + -0.08866120129823685, + 0.26799991726875305, + -0.1538381725549698, + -0.15487608313560486, + 0.2119164913892746, + 0.4706689417362213, + -0.06511050462722778, + -0.1143641471862793, + -0.03818877413868904, + -0.36263054609298706, + -0.23984873294830322, + 0.06439974159002304, + -0.10582228749990463, + -0.13907457888126373, + 0.180571511387825, + 0.522671103477478, + 0.42723995447158813, + 0.32214251160621643, + -0.29380494356155396, + 0.45324939489364624, + 0.42643529176712036, + 0.01747933030128479, + -0.3533126413822174, + -10.762231826782227, + -0.19128000736236572, + -0.31866416335105896, + 0.3074939250946045, + -0.1728026568889618, + 0.12364353984594345, + 0.15939033031463623, + 0.08644340932369232, + 0.11528076976537704, + 0.22454671561717987, + -0.24274154007434845, + -0.165045365691185, + 0.040752802044153214, + 0.30975615978240967, + 0.05254935100674629, + 0.21793587505817413, + -0.19195708632469177, + 0.26805591583251953, + 0.021485963836312294, + 0.09730029851198196, + 0.022529730573296547, + 0.4004499018192291, + -0.22746577858924866, + -0.019998619332909584, + -0.11083652079105377, + -0.34675759077072144, + -0.261724054813385, + 0.38002246618270874, + 0.16910651326179504, + -0.25341299176216125, + 0.15961603820323944, + -0.07117217034101486, + -0.09691376984119415, + 0.2501903176307678, + -0.17309916019439697, + -0.09962232410907745, + 0.02629014290869236, + 0.2350984513759613, + 0.1822194755077362, + -0.1910620480775833, + -0.1615205556154251, + -0.12327390909194946, + 0.39768245816230774, + -0.08601591736078262, + -0.13806121051311493, + -0.45644086599349976, + -0.15172681212425232, + -1.5214844942092896, + 0.13275209069252014, + 0.29141563177108765, + 0.268086314201355, + 0.07025369256734848, + 0.13054518401622772, + 0.3608424663543701, + -0.3282610774040222, + -0.014312353916466236, + -0.3313286304473877, + 0.026303809136152267, + 0.1206677183508873, + 0.1823887676000595, + -0.047240037471055984, + -0.031160270795226097, + 0.5480109453201294, + -0.07098613679409027, + -0.18692639470100403, + 0.07935027778148651, + -0.14783647656440735, + -0.1478123962879181, + -0.20950262248516083, + -0.6116077899932861, + -0.4265856146812439, + 0.09962843358516693, + -0.23099052906036377, + -0.0033271522261202335, + 0.24456675350666046, + -0.001556271337904036, + -0.047484349459409714, + 0.22979728877544403, + 0.18177863955497742, + 0.04981476068496704, + 0.3405466377735138, + -0.1320308893918991, + -0.0033684875816106796, + -0.20814037322998047, + -0.05660295486450195, + -0.22190317511558533, + 0.13366428017616272, + 0.29052531719207764, + -0.06479400396347046, + -0.13368049263954163, + -0.09971731156110764, + 0.25853869318962097, + -0.09293120354413986, + -0.18177570402622223, + -0.25768518447875977, + -0.09835201501846313, + -0.1602870523929596, + 0.08837125450372696, + -0.23356731235980988, + -0.10015814006328583, + -0.11753282696008682, + 0.16396623849868774, + 0.13959747552871704, + -0.5469827055931091, + -0.3743216395378113, + 0.1664438098669052, + 0.42448368668556213, + 0.09309141337871552, + -0.014063874259591103, + 0.05483916401863098, + -0.19726437330245972, + 0.10182209312915802, + 0.2844861149787903, + 0.33971619606018066, + 0.3693521022796631, + -0.0583476796746254, + 0.09314439445734024, + -0.1851673424243927, + -0.05094872787594795, + -0.0869995504617691, + 0.46160513162612915, + 0.15710847079753876, + 0.16642798483371735, + 0.4780958592891693, + 0.10498277097940445, + -0.014262663200497627, + 0.7639195322990417, + -0.32794445753097534, + 0.2807396352291107, + 0.12222782522439957, + 0.06334886699914932, + -0.018406609073281288, + -0.21027088165283203, + 0.19686976075172424, + 0.3977941870689392, + -0.15418635308742523, + 0.495749294757843, + 0.2718666195869446, + -0.2323676347732544, + -0.01604553684592247, + -0.1697501391172409, + 0.4119974970817566, + 0.03453035280108452, + 0.178964301943779, + -0.2899135649204254, + -0.2135457545518875, + -0.24727647006511688, + 0.03928215056657791, + -0.3034737706184387, + -0.4017711579799652, + -0.13074614107608795, + 0.18908433616161346, + 0.06772884726524353, + -0.13202431797981262, + 0.22765254974365234, + 0.17336753010749817, + -0.054644305258989334, + -0.2935251295566559, + -0.3731357753276825, + 0.03777190297842026, + -0.02863817848265171, + 0.7420274615287781, + 0.08737258613109589, + 0.012328848242759705, + 0.06267563998699188, + -0.06314559280872345, + -0.23698747158050537, + -0.07805575430393219, + 0.15573829412460327, + -0.23690490424633026, + -0.47903770208358765, + 0.18958881497383118, + 0.02512039802968502, + -0.46465373039245605, + -0.0076937004923820496, + -0.003477832768112421, + -0.030192255973815918, + 0.17734971642494202, + -0.23208603262901306, + 0.12795761227607727, + 0.3348274528980255, + -0.03275985270738602, + 0.055001698434352875, + -0.33812984824180603, + -0.1535843312740326, + 0.1890907883644104, + 0.3861348330974579, + -0.04616880416870117, + -0.055928491055965424, + -0.26633378863334656, + -0.5144811272621155, + 0.18852071464061737, + -0.3991573750972748, + -0.01008499413728714, + 0.2912987768650055, + -0.011974113993346691, + -0.0814003273844719, + 0.1869930475950241, + 0.11971618980169296, + 0.08653546869754791, + -0.011959878727793694, + 0.2634030282497406, + 0.22030997276306152, + -0.3473755717277527, + 0.41999754309654236, + 0.0027862905990332365, + 0.31245502829551697, + 0.22135451436042786, + -0.046912871301174164, + 0.13703131675720215, + -0.19747385382652283 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_073.json b/src/benchmark/output/results/results_graph_073.json new file mode 100644 index 0000000..04ace10 --- /dev/null +++ b/src/benchmark/output/results/results_graph_073.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Patient Profile**\n\nThe patient is an adult male with a history of immunocompromised status due to HIV/AIDS. He was admitted to the hospital on day 1 (N1) with symptoms of pneumonia and acute hypoxic respiratory failure requiring intubation. His vital signs were unstable, and he required close monitoring in the intensive care unit.\n\n**Timeline of Diagnoses**\n\n* Day 1 (N1): Admitted with pneumonia and acute hypoxic respiratory failure.\n* Day 14 (N2): Developed septic shock and PICC-line-associated MSSA bacteremia. He was treated with IV cefazolin.\n* Day 28 (N3): Developed SVC syndrome and left upper extremity DVT. He was treated with therapeutic enoxaparin.\n* Day 42 (N4): Recurrent fevers and transfer back to the ICU for septic shock management. Blood cultures grew MSSA, and a transesophageal echocardiogram showed no endocarditis.\n* Day 54 (N5): Repeat blood cultures grew A. fumigatus in addition to MSSA. The infectious disease team recommended continuing IV cefazolin for MSSA bacteremia and adding caspofungin for fungal coverage.\n* Day 56 (N6): Atovaquone continued for pneumocystis jirovecii prophylaxis, and tenofovir discontinued due to concern for contributing to acute kidney injury. The antiretroviral regimen was changed to dolutegravir/rilpivirine plus emtricitabine pending further evaluation of hepatitis B status.\n* Day 62 (N9): Patient died of his illness.\n\n**Timeline of Treatments**\n\n* Day 1-14 (N2): IV cefazolin for MSSA bacteremia\n* Day 28-42 (N3): Therapeutic enoxaparin for SVC syndrome and DVT\n* Day 54 (N5): IV cefazolin continued, caspofungin added for fungal coverage\n* Day 56 (N6): Atovaquone continued, tenofovir discontinued, dolutegravir/rilpivirine plus emtricitabine started\n\n**Outcome**\n\nThe patient's condition worsened over time, and he eventually died on day 62 due to his illness. Despite multiple treatments, including IV cefazolin, therapeutic enoxaparin, and caspofungin, the patient's immune system was unable to overcome the infections.\n\nNote: The narrative is based on the provided data and may not be a comprehensive or entirely accurate representation of the patient's medical history.", + "bertscore": { + "precision": [ + 0.7339485883712769 + ], + "recall": [ + 0.7237894535064697 + ], + "f1": [ + 0.7288336157798767 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 10, + "edge_count": 9, + "avg_in_degree": 0.9, + "density": 0.1 + }, + "trajectory_embedding": [ + 0.18157726526260376, + 0.24173596501350403, + -0.15064290165901184, + 0.07789953052997589, + 0.15454770624637604, + 0.16961298882961273, + -0.11799095571041107, + 0.21222464740276337, + 0.46130186319351196, + -0.346190482378006, + -0.21522000432014465, + 0.06953564286231995, + -0.6833328008651733, + -0.11731839179992676, + -0.13093623518943787, + 0.1565907597541809, + -0.1658409684896469, + 0.3295991122722626, + 0.023968718945980072, + -0.24436740577220917, + -0.2730705142021179, + 0.09766922891139984, + -0.4291715621948242, + 0.040992893278598785, + 0.1778842955827713, + 0.06241704896092415, + 0.3450567424297333, + 0.5343670845031738, + 0.2705721855163574, + 0.32455119490623474, + 0.1970655918121338, + -0.0567609965801239, + 0.11557091772556305, + 0.1374279409646988, + -0.3696678578853607, + 0.3157033920288086, + 0.08424127846956253, + 0.30429309606552124, + -0.1628073900938034, + -0.0343419648706913, + -0.06158728525042534, + 0.13099119067192078, + 0.6208643913269043, + 0.12156106531620026, + 0.45937037467956543, + -0.7845557928085327, + -0.11881051957607269, + 0.6727222204208374, + -0.3872811496257782, + -0.28184717893600464, + 0.25917887687683105, + 0.8072859644889832, + 0.44624844193458557, + -0.23553839325904846, + 0.4472980499267578, + -0.14592644572257996, + -0.14090317487716675, + -0.17685841023921967, + -0.1263105869293213, + 0.10700918734073639, + 0.16321928799152374, + -0.23707929253578186, + 0.38165396451950073, + -0.24890558421611786, + -0.08730532974004745, + -0.02561669424176216, + -0.15296049416065216, + 0.2447458803653717, + -0.0723525881767273, + -0.33950018882751465, + -0.29810041189193726, + -0.32604363560676575, + 0.007825215347111225, + 0.04972695931792259, + 0.025376880541443825, + -0.1429591327905655, + 0.24852678179740906, + -0.034040480852127075, + 0.2870536744594574, + -0.011306770145893097, + -0.061809368431568146, + 0.010281805880367756, + -0.08853095024824142, + 0.34559541940689087, + -0.09181114286184311, + -0.07461856305599213, + -0.2512638568878174, + 0.005537307355552912, + -0.1936032474040985, + 0.0803741067647934, + -0.023251116275787354, + -0.39227181673049927, + 0.11193098872900009, + -0.1564551740884781, + 0.003976819105446339, + -0.010268200188875198, + 0.41871994733810425, + 0.05979905277490616, + 0.8428556323051453, + -0.12373845279216766, + 0.054951321333646774, + 0.17990902066230774, + 0.14112572371959686, + 0.018083970993757248, + 0.25094738602638245, + -0.2062138319015503, + 0.17142395675182343, + -0.43000760674476624, + 0.19608716666698456, + 0.4743573069572449, + 0.09206487983465195, + -0.18884409964084625, + 0.037467461079359055, + -0.21518810093402863, + 0.08606284856796265, + 0.12509246170520782, + -0.04996276646852493, + 0.25770801305770874, + 0.03437798097729683, + -0.31697386503219604, + 0.0385102815926075, + -0.090479277074337, + 0.14348503947257996, + -0.018328726291656494, + -0.36699408292770386, + -0.05970442295074463, + -0.10394291579723358, + -0.09087718278169632, + 0.23112022876739502, + 0.008289863355457783, + -0.3970450758934021, + -0.2605791389942169, + 0.08304773271083832, + 0.05678866058588028, + 0.03604061156511307, + 0.41559848189353943, + -0.38162484765052795, + 0.17668405175209045, + -1.1716099977493286, + 0.16458794474601746, + -0.28417742252349854, + -0.015548867173492908, + -0.07594817131757736, + -0.711194634437561, + -0.2291402369737625, + -0.12000241130590439, + -0.1406688243150711, + 0.19124874472618103, + -0.23169219493865967, + -0.05283690243959427, + -0.04616454988718033, + -0.0858042985200882, + 0.15748555958271027, + 0.31612810492515564, + 0.07103674113750458, + -0.0673355683684349, + -0.07175082713365555, + 0.25514885783195496, + 0.05068795010447502, + -0.14902164041996002, + -0.006055218167603016, + 0.43648838996887207, + -0.009410729631781578, + 0.17091694474220276, + -0.29464638233184814, + -0.7076739072799683, + 0.024696577340364456, + -0.11499001830816269, + 0.0008866667631082237, + 0.08362817764282227, + -0.09280485659837723, + 0.15718020498752594, + -0.4357791543006897, + 0.5816224217414856, + 0.2680997848510742, + 0.3100568950176239, + 0.05116096884012222, + 0.009569879621267319, + 0.12924569845199585, + 0.10145223140716553, + 0.0758548453450203, + -0.27769631147384644, + 0.45971131324768066, + 0.20859965682029724, + -0.33784347772598267, + 0.0705091804265976, + 0.3839980363845825, + 0.052564311772584915, + -0.2852851152420044, + -0.024933893233537674, + 0.43453550338745117, + -0.2564859688282013, + 0.4329327940940857, + -0.2065388709306717, + -0.046664781868457794, + 0.09751643240451813, + -0.27093544602394104, + -0.14071236550807953, + 0.00899127684533596, + -0.022287223488092422, + 0.07503581047058105, + -0.018698453903198242, + -0.2804120182991028, + 0.044384829699993134, + 0.22532419860363007, + -0.1216619461774826, + 0.044075626879930496, + -0.08619797229766846, + 0.022313162684440613, + -0.03587185591459274, + -0.17787562310695648, + 0.2842544913291931, + -0.0953623503446579, + 0.2675912380218506, + 0.12902551889419556, + -0.37056440114974976, + 0.02508065104484558, + 0.03116915002465248, + -0.08371514081954956, + 0.07715325057506561, + 0.03929922729730606, + -0.21154585480690002, + 0.22997598350048065, + -0.05840129777789116, + -0.342581570148468, + 0.1775730848312378, + 0.359138548374176, + 0.30173930525779724, + 0.07008328288793564, + -0.16640983521938324, + 0.01262134313583374, + -0.2634149193763733, + 0.21909400820732117, + -0.1186048611998558, + -0.19360928237438202, + -0.32276421785354614, + 0.21952266991138458, + 0.12848389148712158, + 0.09633677452802658, + 0.19681166112422943, + -0.13839873671531677, + 0.05562460422515869, + -0.007560743950307369, + -0.19483274221420288, + 0.16679741442203522, + -0.3166010081768036, + -0.07062391191720963, + 0.31550732254981995, + 0.18269464373588562, + 0.11530967801809311, + -0.012370807118713856, + -0.10057101398706436, + 0.10396616160869598, + -0.21465742588043213, + -0.3132184147834778, + -0.1957148313522339, + -0.1458921730518341, + -0.01989445462822914, + -0.5681425333023071, + 0.2194744348526001, + -0.0009315162897109985, + 0.03656891733407974, + 0.23701921105384827, + -0.12102049589157104, + -0.17208704352378845, + -0.051812708377838135, + 0.07092301547527313, + 0.1261751651763916, + -0.2683359384536743, + 0.008651318028569221, + -0.14771969616413116, + -0.04778953641653061, + -0.2970026731491089, + -0.028194475919008255, + 0.15859226882457733, + 0.12895110249519348, + -0.3457646071910858, + 0.16645152866840363, + 0.15823428332805634, + -0.5857977271080017, + -0.1420481652021408, + 0.06284819543361664, + -0.14102862775325775, + 0.348876416683197, + -0.006073593162000179, + 0.17805418372154236, + 0.4542171359062195, + 0.11078587919473648, + 0.14286144077777863, + 0.33494463562965393, + 0.39043885469436646, + -0.12349659204483032, + -0.010611413046717644, + 0.1362195611000061, + -0.28544890880584717, + -0.02167845331132412, + -0.5888930559158325, + 0.26736411452293396, + 0.10486531257629395, + 0.12899798154830933, + 0.12498937547206879, + -0.052146025002002716, + 0.17739573121070862, + -0.20172464847564697, + -0.07808282971382141, + 0.27521324157714844, + 0.0439002588391304, + 0.3505401909351349, + 0.27165788412094116, + 0.12362979352474213, + 0.456890344619751, + -0.04554905369877815, + -0.06890411674976349, + 0.20742671191692352, + -0.21730399131774902, + -0.3073647618293762, + 0.0959082767367363, + 0.2170354574918747, + 0.23280659317970276, + -0.15779171884059906, + -0.2738577425479889, + 0.2858556807041168, + -0.2116968184709549, + -0.12356128543615341, + -0.2659599184989929, + -0.16417834162712097, + -0.06512857973575592, + -0.23439428210258484, + 0.17980527877807617, + -0.06487801671028137, + 0.03441762551665306, + 0.2714279294013977, + -0.335573673248291, + -0.1563459187746048, + 0.39495086669921875, + 0.0598733052611351, + -0.4398280680179596, + 0.3569442629814148, + -0.21959352493286133, + 0.21411772072315216, + 0.2415691316127777, + -0.23799827694892883, + -0.0275203138589859, + 0.017063576728105545, + 0.2339799404144287, + -0.1449342966079712, + 0.1748427003622055, + -0.03219287097454071, + -0.03797931224107742, + 0.053762394934892654, + 0.2592673897743225, + 0.15174971520900726, + 0.1136842742562294, + 0.42255187034606934, + 0.047379471361637115, + -0.27283650636672974, + 0.12324601411819458, + -0.21107809245586395, + 0.08605097234249115, + -0.03227163851261139, + -0.06743749231100082, + -0.07294677197933197, + 0.27267852425575256, + -0.007410484366118908, + -0.265026718378067, + 0.02373521961271763, + -0.07616546005010605, + -0.09990662336349487, + -0.19171182811260223, + 0.4424431324005127, + -0.040293410420417786, + -0.20871929824352264, + 0.5981371998786926, + -0.016681332141160965, + -0.2776864171028137, + 0.4313011169433594, + 0.005187648348510265, + 0.14348891377449036, + -0.0007390171522274613, + -0.4269329011440277, + -0.20846585929393768, + 0.08971717953681946, + -0.15879306197166443, + -0.08854798972606659, + -0.0381813570857048, + -0.10957054048776627, + 0.03878896310925484, + -0.031618982553482056, + 0.037570420652627945, + 0.02869970165193081, + 0.1661781221628189, + 0.10340765863656998, + 0.40337538719177246, + -0.0632922500371933, + -0.17038527131080627, + 0.09968487918376923, + 0.09140974283218384, + -0.01250526588410139, + -0.16833749413490295, + -0.08409100770950317, + -0.02720922790467739, + 0.46356528997421265, + -0.20175714790821075, + -0.025314947590231895, + 0.0663636103272438, + -0.10444492101669312, + -0.18244223296642303, + -0.2960977852344513, + 0.1477549970149994, + -0.09990190714597702, + -0.15287050604820251, + 0.041650090366601944, + 0.01173420064151287, + 0.07396619021892548, + 0.020081523805856705, + -0.12024860084056854, + 0.07408074289560318, + 0.28869953751564026, + 0.11962145566940308, + -0.07432802766561508, + 0.35325154662132263, + 0.14265429973602295, + 0.1713699996471405, + -0.24997727572917938, + 0.29511940479278564, + 0.030739452689886093, + -0.3692754805088043, + -0.05238616466522217, + -0.15488693118095398, + -0.44822245836257935, + -0.10873015969991684, + 0.2430027425289154, + 0.20071229338645935, + -0.1258717030286789, + -0.038965895771980286, + -0.07628043740987778, + 0.026770979166030884, + -0.09105877578258514, + -0.052381910383701324, + 0.13684847950935364, + -0.02807474695146084, + 0.256748765707016, + 0.1284431517124176, + -0.5095011591911316, + -0.28800612688064575, + -0.02384519949555397, + -0.21591369807720184, + 0.17006954550743103, + 0.09644508361816406, + -0.05048646777868271, + -0.17762598395347595, + 0.02235526777803898, + -0.11447609961032867, + -0.1502404510974884, + 0.2778838574886322, + -0.13707950711250305, + 0.3155015707015991, + 0.2808328866958618, + -0.2911819517612457, + 0.02660376951098442, + -0.23990651965141296, + -0.33747658133506775, + -0.23955580592155457, + 0.18466472625732422, + 0.009571048431098461, + -0.257381796836853, + -0.13445940613746643, + -0.004590742290019989, + -0.16584929823875427, + -0.08639497309923172, + -0.11372051388025284, + -0.03149271756410599, + 0.33574503660202026, + -0.059503037482500076, + -0.18139784038066864, + 0.1278296858072281, + 0.07298298925161362, + -0.06915251165628433, + 0.1284720003604889, + 0.23369967937469482, + 0.25129440426826477, + 0.08527600765228271, + -0.10059531778097153, + 0.27520161867141724, + 0.10088445246219635, + 0.25962644815444946, + 0.26203659176826477, + -0.12423031032085419, + 0.1608431041240692, + -0.3454696238040924, + -0.2116205245256424, + 0.08308203518390656, + -0.4368212819099426, + 0.05639520287513733, + 0.1571504771709442, + 0.18229061365127563, + -0.30084556341171265, + -0.2520159184932709, + 0.09372211992740631, + 0.06560350954532623, + -0.0762154757976532, + -0.13256771862506866, + -0.08354126662015915, + -0.0016011253464967012, + -0.09548208862543106, + 0.029486704617738724, + 0.11638529598712921, + 0.33140310645103455, + 0.0867951363325119, + 0.11991649866104126, + -0.13486678898334503, + -0.3106093406677246, + 0.30515167117118835, + 0.311331570148468, + -0.047474659979343414, + 0.000635759555734694, + -0.05501333624124527, + 0.24573318660259247, + 0.33128947019577026, + 0.0862356424331665, + 0.04203740879893303, + -0.05483384057879448, + -0.049499284476041794, + 0.06382375210523605, + 0.0856262743473053, + -0.1278141289949417, + -0.011735456995666027, + -0.3894802927970886, + 0.036342039704322815, + 0.05288202688097954, + -0.17797493934631348, + 0.18720602989196777, + -0.4781675934791565, + -0.6327563524246216, + -0.008378768339753151, + 0.09345807135105133, + -0.027831245213747025, + -0.15652665495872498, + 0.210295632481575, + 0.534176230430603, + -0.010117411613464355, + -0.09219713509082794, + 0.05162297561764717, + -0.45773738622665405, + -0.134120911359787, + 0.18254640698432922, + 0.06112511083483696, + -0.08313168585300446, + 0.13736149668693542, + 0.5559831857681274, + 0.45035892724990845, + 0.2314745932817459, + -0.3566986918449402, + 0.20644590258598328, + 0.31592029333114624, + 0.2510663568973541, + -0.2930491864681244, + -10.731353759765625, + 0.04862998053431511, + -0.3188585638999939, + 0.32804444432258606, + -0.33146750926971436, + -0.0560254342854023, + 0.07343591749668121, + 0.017088308930397034, + 0.0679975301027298, + 0.1285393238067627, + -0.2852936387062073, + -0.14765837788581848, + 0.06846374273300171, + 0.2916242182254791, + 0.09349022060632706, + 0.14258766174316406, + -0.09424163401126862, + 0.2506990134716034, + 0.15114916861057281, + 0.27528461813926697, + 0.16642193496227264, + 0.40676409006118774, + -0.23998603224754333, + 0.27607059478759766, + 0.0776575431227684, + -0.2924764156341553, + -0.11448617279529572, + 0.38136714696884155, + 0.16680708527565002, + -0.2939472496509552, + 0.07823546975851059, + -0.03213023766875267, + -0.23636212944984436, + 0.0044772387482225895, + -0.2526151239871979, + -0.15451374650001526, + 0.04990076273679733, + 0.24410252273082733, + 0.2510082721710205, + -0.12669046223163605, + 0.07962235063314438, + -0.06892544776201248, + 0.2425260990858078, + 0.057691216468811035, + -0.06892422586679459, + -0.48557013273239136, + -0.15087108314037323, + -1.4740550518035889, + 0.3788347542285919, + 0.4238322377204895, + 0.3295937478542328, + 0.016429483890533447, + 0.05903347209095955, + 0.18632450699806213, + -0.21358013153076172, + 0.20488980412483215, + -0.3559091091156006, + 0.02797761559486389, + -0.09907160699367523, + 0.10354135185480118, + 0.11119399219751358, + -0.1005065068602562, + 0.5321890115737915, + -0.037488680332899094, + -0.22661232948303223, + 0.1618994027376175, + -0.00899996142834425, + -0.028053458780050278, + -0.19525526463985443, + -0.42058834433555603, + -0.41438570618629456, + 0.009322874248027802, + 0.024700414389371872, + 0.0014415502082556486, + 0.31659606099128723, + 0.016689840704202652, + -0.26710477471351624, + 0.390737384557724, + -0.01085034478455782, + 0.11493291705846786, + 0.3050146996974945, + -0.0856911689043045, + -0.0174887515604496, + -0.16887864470481873, + -0.1715092957019806, + -0.016562527045607567, + 0.16368183493614197, + 0.19937971234321594, + 0.05205193907022476, + -0.029703477397561073, + 0.22450122237205505, + 0.26133114099502563, + -0.025594305247068405, + -0.22071132063865662, + -0.4266149401664734, + -0.028872722759842873, + 0.0540560707449913, + 0.21648108959197998, + -0.0688907653093338, + 0.025538083165884018, + -0.3323007822036743, + 0.20793581008911133, + -0.1394197642803192, + -0.33915987610816956, + -0.34730929136276245, + 0.31990116834640503, + 0.2548900842666626, + 0.17785947024822235, + 0.04865370690822601, + -0.11748357862234116, + -0.020514681935310364, + 0.02124701626598835, + 0.29569774866104126, + 0.4932135045528412, + 0.24348755180835724, + -0.22339868545532227, + -0.04098835587501526, + -0.2484463006258011, + -0.12969334423542023, + 0.08278878778219223, + 0.327031672000885, + 0.09014321863651276, + 0.03604106977581978, + 0.44937825202941895, + 0.07948388159275055, + 0.08059508353471756, + 0.8134622573852539, + -0.32867690920829773, + 0.39408785104751587, + 0.0895610898733139, + 0.3642854690551758, + -0.09822408854961395, + -0.3908959925174713, + -0.009249294176697731, + 0.45607107877731323, + -0.3056427240371704, + 0.4062795042991638, + 0.163981094956398, + -0.24260754883289337, + -0.08668837696313858, + -0.22507648169994354, + 0.43144291639328003, + 0.20747098326683044, + 0.27738919854164124, + -0.16621790826320648, + -0.1904042661190033, + -0.25848060846328735, + -0.030776213854551315, + -0.21076600253582, + -0.19378426671028137, + -0.0772520899772644, + -0.0505722276866436, + -0.019702116027474403, + -0.20553115010261536, + 0.32772737741470337, + 0.1536443829536438, + -0.04502632096409798, + -0.49869346618652344, + -0.25819429755210876, + 0.05866633728146553, + 0.11492965370416641, + 0.48161250352859497, + 0.08003558218479156, + -0.05724286288022995, + -0.056733936071395874, + 0.31550753116607666, + -0.16656918823719025, + 0.18831710517406464, + 0.04821368306875229, + 0.00128183513879776, + -0.3221592307090759, + 0.22793488204479218, + 0.08622206002473831, + -0.3294474184513092, + -0.11203116178512573, + -0.18163274228572845, + 0.0842447429895401, + 0.1564849615097046, + -0.11939491331577301, + 0.22108379006385803, + 0.32407230138778687, + 0.03628622740507126, + 0.05031429976224899, + -0.27038508653640747, + 0.006122891791164875, + 0.2561357915401459, + 0.3403213620185852, + -0.07488597184419632, + -0.28012964129447937, + -0.21776294708251953, + -0.5603423714637756, + 0.02805805578827858, + -0.3674620985984802, + -0.04308294132351875, + 0.29657334089279175, + 0.04545745998620987, + -0.19705525040626526, + 0.1035865768790245, + 0.031884558498859406, + -0.30009692907333374, + -0.17086265981197357, + 0.2595962584018707, + 0.44319963455200195, + -0.38089779019355774, + 0.3074343502521515, + -0.2748555839061737, + 0.17860734462738037, + 0.20200741291046143, + -0.25985413789749146, + 0.0914209634065628, + -0.11942343413829803 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_074.json b/src/benchmark/output/results/results_graph_074.json new file mode 100644 index 0000000..20bd52a --- /dev/null +++ b/src/benchmark/output/results/results_graph_074.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is an unknown female with no specified age or background information provided in the data. However, based on the clinical presentation and imaging findings, it can be inferred that she is likely a young adult.\n\n**Initial Presentation (Step 1):**\nThe patient presented with a fluid collection adjacent to the spleen, which was identified through abdominal ultrasound. The fluid collection had septations, and no malignant cells were found in the aspirated fluid.\n\n**Progression of Disease (Steps 2-5):**\nOver time, the cystic lesion in the left upper quadrant of the abdomen grew in size, with a notable increase from 7.6 x 11.7 cm to 11 x 22 cm. The patient reported feeling pressure and a pulling sensation on the left side of her abdomen, rated as 4/10 for pain. Ultrasound-guided aspiration revealed 33 mL of clear yellow fluid, which was sent to pathology and showed no evidence of malignant cells.\n\n**Imaging Findings:**\nThroughout the course of the disease, various imaging modalities were used, including ultrasound, CT scans, and MRI. These studies consistently demonstrated a large cystic mass extending from the spleen on the left to the left hemipelvis, with enhancing septations.\n\n**Treatment (Step 7):**\nThe patient received doxycycline sclerotherapy over eight months as part of her treatment plan. Post-sclerotherapy ultrasound showed no significant changes in the size or appearance of the cystic mass.\n\n**Outcome:**\nDespite the growth of the cystic lesion, the patient did not experience any symptoms that would suggest malignancy. The sclerotherapy treatment appears to have been effective in stabilizing the lesion, and further imaging studies are scheduled for follow-up.\n\nIn summary, this patient presented with a fluid collection adjacent to the spleen, which progressed over time into a large cystic mass extending from the spleen on the left to the left hemipelvis. The patient received doxycycline sclerotherapy as part of her treatment plan, and post-treatment imaging studies showed no significant changes in the size or appearance of the lesion.", + "bertscore": { + "precision": [ + 0.7009899616241455 + ], + "recall": [ + 0.6653150320053101 + ], + "f1": [ + 0.6826867461204529 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 7, + "edge_count": 6, + "avg_in_degree": 0.8571428571428571, + "density": 0.14285714285714285 + }, + "trajectory_embedding": [ + 0.37995657324790955, + 0.09801924228668213, + 0.029700586572289467, + 0.12594357132911682, + 0.10155230760574341, + 0.09751962870359421, + -0.09553129225969315, + 0.2206941395998001, + 0.4248223304748535, + -0.16399696469306946, + -0.31089702248573303, + -0.05961534380912781, + -0.545925498008728, + 0.12594513595104218, + -0.3283112645149231, + 0.15797248482704163, + -0.0726936012506485, + 0.13808110356330872, + -0.07467623800039291, + -0.230401411652565, + -0.45884889364242554, + 0.16840192675590515, + -0.37421342730522156, + -0.002563644666224718, + 0.19825102388858795, + -0.05888105183839798, + 0.35362979769706726, + 0.48598116636276245, + 0.2372424602508545, + 0.32929399609565735, + 0.2568945586681366, + -0.03116828016936779, + 0.21256186068058014, + 0.02031186781823635, + -0.06004540994763374, + 0.2603452801704407, + 0.22633515298366547, + 0.5330950021743774, + -0.05005381628870964, + 0.09714651852846146, + 0.02627384662628174, + 0.01042833924293518, + 0.7473216652870178, + 0.2562236487865448, + 0.4196780323982239, + -0.8364146947860718, + -0.000517376814968884, + 0.4777333438396454, + -0.5929005742073059, + -0.40455013513565063, + 0.21538951992988586, + 0.7955760955810547, + 0.5978747010231018, + -0.1643076241016388, + 0.3185666501522064, + -0.18994393944740295, + -0.15423810482025146, + -0.3700208067893982, + -0.33925214409828186, + -0.09597659111022949, + -0.0526815727353096, + -0.18973149359226227, + 0.1422053724527359, + -0.108767569065094, + -0.34792500734329224, + -0.1796339750289917, + -0.1651369035243988, + -0.047563642263412476, + -0.07213956862688065, + -0.2794947028160095, + -0.08152622729539871, + -0.010557140223681927, + -0.18007643520832062, + -0.017403606325387955, + 0.07476487010717392, + -0.07647428661584854, + 0.3955647349357605, + -0.15808923542499542, + 0.051303356885910034, + 0.14312902092933655, + -0.12051256746053696, + -0.03177320584654808, + 0.1489228457212448, + 0.3017025887966156, + -0.5240438580513, + 0.0015829886542633176, + -0.1602783054113388, + -0.23726974427700043, + -0.30996233224868774, + 0.22271975874900818, + 0.13667693734169006, + -0.23178228735923767, + 0.0236444603651762, + 0.019947124645113945, + -0.012596950866281986, + 0.1883441060781479, + 0.2551479935646057, + 0.38596677780151367, + 0.9295811057090759, + 0.18678845465183258, + 0.16199538111686707, + 0.17060962319374084, + 0.24650311470031738, + 0.03523850813508034, + 0.3747576177120209, + -0.01919887587428093, + 0.0992204025387764, + -0.5053381323814392, + 0.14267583191394806, + 0.15122167766094208, + -0.06995239108800888, + -0.1420145481824875, + -0.05846596136689186, + -0.08499719947576523, + 0.26948410272598267, + 0.10332638025283813, + -0.08442048728466034, + 0.04924004152417183, + 0.17249906063079834, + -0.33537524938583374, + -0.05022487789392471, + -0.07760488986968994, + 0.2646951973438263, + 0.3605910837650299, + -0.2587319016456604, + -0.03369029238820076, + -0.2535383403301239, + 0.08854810148477554, + 0.13160087168216705, + 0.14474964141845703, + -0.42608165740966797, + -0.004225836601108313, + -0.1396503746509552, + 0.221908301115036, + -0.1856192648410797, + 0.17320813238620758, + -0.35494735836982727, + 0.05256684496998787, + -1.1480152606964111, + 0.19605596363544464, + -0.3841502368450165, + -0.006509731989353895, + 0.10978672653436661, + -0.5162526369094849, + -0.06708173453807831, + -0.19396118819713593, + -0.12482210248708725, + 0.13667625188827515, + -0.018347056582570076, + 0.1603400558233261, + -0.08113069087266922, + 0.07419180124998093, + 0.34137430787086487, + 0.2806939482688904, + 0.1137097105383873, + 0.15906167030334473, + 0.07755331695079803, + 0.32156482338905334, + 0.0055593037977814674, + -0.12838676571846008, + -0.025127043947577477, + 0.28370901942253113, + 0.08226039260625839, + -0.09020189195871353, + -0.07910968363285065, + -0.586747944355011, + 0.19163911044597626, + -0.19184447824954987, + 0.25433996319770813, + -0.017567452043294907, + -0.30781441926956177, + 0.07864553481340408, + -0.37995025515556335, + 0.6156628727912903, + 0.10681413114070892, + 0.3946901857852936, + -0.11176124960184097, + -0.17329703271389008, + -0.04869617894291878, + 0.07029209285974503, + 0.10197190940380096, + -0.1370113343000412, + 0.7894839644432068, + 0.16819843649864197, + -0.07950420677661896, + 0.2423354536294937, + 0.31975334882736206, + -0.0200608279556036, + -0.28354766964912415, + -0.05729326978325844, + 0.37516874074935913, + -0.26047608256340027, + 0.477372407913208, + -0.32793352007865906, + 0.0603640042245388, + 0.09628403186798096, + -0.27923861145973206, + -0.030989142134785652, + 0.209242582321167, + 0.02517770417034626, + 0.3067164421081543, + 0.032403554767370224, + -0.2771337628364563, + 0.13135555386543274, + 0.07782643288373947, + 0.05506567284464836, + 0.3015282154083252, + 0.05968746915459633, + 0.2846646010875702, + -0.050218772143125534, + -0.07979687303304672, + 0.11240636557340622, + -0.0880211740732193, + 0.187428817152977, + 0.0137978196144104, + -0.33199504017829895, + 0.29251763224601746, + 0.025832032784819603, + -0.2305680811405182, + 0.20346692204475403, + -0.13242125511169434, + -0.2294529527425766, + -0.010386824607849121, + -0.2373780459165573, + -0.5054355263710022, + 0.2120778113603592, + 0.07724116742610931, + 0.3203694522380829, + 0.28840163350105286, + 0.11630939692258835, + 0.0843522921204567, + -0.2442571222782135, + 0.10728006809949875, + -0.12942470610141754, + -0.12881740927696228, + -0.36000803112983704, + 0.2137957364320755, + -0.2752557694911957, + -0.003968194127082825, + 0.3274936079978943, + -0.16641893982887268, + -0.20756219327449799, + 0.03983568027615547, + -0.2729133069515228, + -0.1331460028886795, + -0.3431987762451172, + 0.09842705726623535, + 0.1291016787290573, + 0.1838821917772293, + 0.24851009249687195, + -0.031012799590826035, + -0.16926300525665283, + 0.18297219276428223, + -0.15960296988487244, + -0.3437172472476959, + -0.48363879323005676, + -0.021346228197216988, + 0.07692231237888336, + -0.5759924054145813, + 0.11376823484897614, + 0.17436455190181732, + -0.13003112375736237, + -0.050318747758865356, + -0.3444478511810303, + -0.04262489825487137, + 0.1204909235239029, + -0.020992234349250793, + 0.13836073875427246, + 0.0020301532931625843, + 0.26009783148765564, + -0.22942093014717102, + -0.2508060038089752, + -0.08233727514743805, + -0.1628398895263672, + 0.08114083856344223, + 0.11445826292037964, + -0.2885421812534332, + 0.004430701490491629, + 0.15514829754829407, + -0.33929187059402466, + -0.27121350169181824, + 0.39570972323417664, + -0.17809666693210602, + 0.09738986939191818, + 0.06274087727069855, + 0.2423219382762909, + 0.17938974499702454, + -0.007644993718713522, + 0.13662517070770264, + 0.5079261660575867, + 0.5058150291442871, + -0.002438613446429372, + -0.051615159958601, + -0.013487345539033413, + 0.06108113005757332, + -0.0810045376420021, + -0.47588029503822327, + 0.35241007804870605, + 0.12438230961561203, + -0.022784385830163956, + -0.1594230681657791, + 0.2839639186859131, + 0.028176410123705864, + -0.42326289415359497, + -0.2542061507701874, + 0.5551326274871826, + 0.24816347658634186, + -0.04103132709860802, + -0.05459409952163696, + 0.4102260172367096, + 0.47135406732559204, + -0.1475778967142105, + -0.046225227415561676, + -0.10576371103525162, + -0.03395043686032295, + 0.011244518682360649, + -0.12956266105175018, + 0.08546238392591476, + 0.42741870880126953, + -0.16566692292690277, + -0.045255597680807114, + 0.24098530411720276, + -0.09031276404857635, + -0.1327068954706192, + -0.19221661984920502, + -0.05484132096171379, + 0.026008915156126022, + -0.13336940109729767, + 0.29434606432914734, + 0.016346288844943047, + -0.14489005506038666, + 0.5130201578140259, + -0.2209785282611847, + -0.11640842258930206, + 0.031207213178277016, + -0.15411090850830078, + -0.36458662152290344, + 0.48960304260253906, + -0.24959087371826172, + -0.16240628063678741, + 0.4750869572162628, + -0.05579386278986931, + -0.003918517846614122, + -0.21311834454536438, + 0.4977683424949646, + -0.03374994546175003, + -0.12895527482032776, + -0.06601860374212265, + 0.06383255869150162, + 0.2116803377866745, + 0.7112784385681152, + 0.24886974692344666, + 0.26290541887283325, + 0.5474045276641846, + 0.1937641203403473, + -0.39962291717529297, + -0.05210968479514122, + 0.17879709601402283, + 0.32930508255958557, + -0.18192903697490692, + 0.04527191445231438, + -0.2038271725177765, + -0.045169439166784286, + 0.2012123167514801, + -0.31228846311569214, + 0.032264966517686844, + 0.2772414982318878, + 0.18482588231563568, + 0.08131016790866852, + 0.06595318019390106, + 0.12481772899627686, + -0.1587267965078354, + 0.36972951889038086, + -0.054978806525468826, + 0.03664937987923622, + 0.2202943116426468, + -0.22281673550605774, + 0.2837558686733246, + -0.1451645791530609, + -0.305817186832428, + -0.29813793301582336, + -0.061553001403808594, + -0.19008640944957733, + -0.25722455978393555, + 0.029829103499650955, + -0.1286444514989853, + 0.04832107573747635, + -0.29580602049827576, + 0.3301613926887512, + 0.026412632316350937, + 0.2703469395637512, + 0.12473652511835098, + 0.45020297169685364, + 0.0680600181221962, + -0.33683493733406067, + 0.14152637124061584, + -0.0906151533126831, + 0.10293073952198029, + -0.3256339132785797, + -0.08019039779901505, + -0.08885722607374191, + 0.4913967549800873, + 0.07968335598707199, + -0.04253444820642471, + -0.041778236627578735, + 0.11386442184448242, + -0.09062569588422775, + -0.40395182371139526, + -0.2160898894071579, + -0.20846907794475555, + 0.009410346858203411, + -0.040480442345142365, + 0.1513473242521286, + -0.3172982633113861, + -0.37204232811927795, + -0.11877298355102539, + 0.06637699902057648, + 0.24262240529060364, + -0.20356817543506622, + 0.051173243671655655, + 0.3762260377407074, + 0.13089516758918762, + 0.34144333004951477, + -0.09274134784936905, + 0.12101983278989792, + 0.22923634946346283, + -0.36679890751838684, + -0.07128846645355225, + 0.07605759054422379, + -0.4967430531978607, + -0.2725875973701477, + 0.28985223174095154, + 0.1582464873790741, + 0.14206473529338837, + -0.029324963688850403, + 0.0828104168176651, + 0.22078970074653625, + -0.43010759353637695, + -0.07443193346261978, + 0.2603622376918793, + 0.35916659235954285, + 0.38706716895103455, + -0.07034778594970703, + -0.43161970376968384, + -0.29155439138412476, + -0.1570243388414383, + -0.38972118496894836, + 0.13986770808696747, + 0.1429203897714615, + -0.15219150483608246, + -0.14774684607982635, + 0.0766138955950737, + -0.11019197851419449, + -0.07156208902597427, + 0.36617976427078247, + -0.04210776463150978, + 0.13302408158779144, + -0.038639314472675323, + -0.23136751353740692, + -0.14230073988437653, + -0.1415536254644394, + -0.27027660608291626, + -0.329255074262619, + 0.41802266240119934, + 0.31522509455680847, + -0.2677532136440277, + 0.06844540685415268, + 0.18795347213745117, + -0.23568645119667053, + -0.1506429761648178, + -0.05028267577290535, + -0.23699530959129333, + 0.3191778361797333, + 0.07562350481748581, + -0.22345854341983795, + 0.05637361854314804, + -0.3477286398410797, + 0.13604339957237244, + 0.16756485402584076, + 0.0913146585226059, + 0.5264246463775635, + 0.259994238615036, + 0.21286983788013458, + 0.4868946373462677, + -0.05619483068585396, + -0.11250904947519302, + 0.122774638235569, + 0.11811138689517975, + -0.02638634480535984, + -0.33726605772972107, + -0.2917758524417877, + 0.3046490252017975, + -0.2856607139110565, + 0.049223508685827255, + 0.36503008008003235, + 0.19397734105587006, + -0.42573466897010803, + -0.21536943316459656, + -0.11695005744695663, + 0.06905940920114517, + -0.11133057624101639, + -0.2563154697418213, + -0.08291972428560257, + 0.057241495698690414, + -0.30275487899780273, + -0.07605274766683578, + 0.3041597902774811, + 0.433889240026474, + 0.1465456634759903, + 0.03412970155477524, + -0.38994136452674866, + -0.4159722328186035, + 0.0940321832895279, + 0.23996415734291077, + -0.04011116176843643, + -0.0991034135222435, + -0.29198047518730164, + 0.023102272301912308, + 0.48434287309646606, + -0.07548333704471588, + 0.03373415023088455, + 0.10176242887973785, + -0.06307227164506912, + 0.09136135131120682, + 0.139975443482399, + 0.053977254778146744, + 0.02194300852715969, + -0.3653024137020111, + 0.34197500348091125, + -0.19960835576057434, + -0.13359884917736053, + 0.1813196837902069, + 0.06455648690462112, + -0.3188205361366272, + -0.4104425609111786, + 0.4396914541721344, + -0.21566851437091827, + -0.11718641966581345, + -0.07141082733869553, + 0.4281046688556671, + -0.013657866977155209, + -0.2886578142642975, + 0.08933538943529129, + -0.4452657699584961, + -0.1127772405743599, + 0.1089206412434578, + -0.1703837662935257, + -0.09747439622879028, + -0.1491556465625763, + 0.2755518853664398, + 0.46370190382003784, + 0.13232271373271942, + -0.28244131803512573, + -0.08030446618795395, + 0.3003416061401367, + 0.20794597268104553, + -0.15605412423610687, + -10.821137428283691, + 0.07166632264852524, + -0.1505032330751419, + 0.6149778366088867, + -0.27706030011177063, + -0.03804642707109451, + 0.28296658396720886, + -0.055307839065790176, + 0.18252743780612946, + 0.11978350579738617, + -0.20182767510414124, + 0.13750223815441132, + 0.31941238045692444, + 0.16238471865653992, + -0.12446495145559311, + -0.04245349019765854, + -0.25090858340263367, + 0.1522710770368576, + -0.13911917805671692, + 0.23711861670017242, + 0.1290946900844574, + 0.28213900327682495, + -0.25027620792388916, + 0.3394520580768585, + 0.12081465870141983, + -0.3219100534915924, + -0.21894630789756775, + 0.7313545942306519, + 0.06483325362205505, + -0.17339764535427094, + 0.31810328364372253, + 0.34713298082351685, + -0.2376079559326172, + 0.05275648087263107, + -0.09874344617128372, + -0.12670518457889557, + 0.0960308387875557, + 0.05677909031510353, + 0.24223005771636963, + 0.004201292991638184, + -0.058505672961473465, + -0.31525251269340515, + 0.3759646415710449, + 0.21020841598510742, + -0.22195680439472198, + -0.4385775923728943, + -0.026129351928830147, + -1.478589653968811, + 0.12578800320625305, + 0.17339526116847992, + 0.38787204027175903, + 0.09360547363758087, + 0.31952252984046936, + 0.012759238481521606, + -0.41150689125061035, + 0.18061377108097076, + -0.37527260184288025, + -0.0863092765212059, + -0.019355518743395805, + 0.018429305404424667, + 0.08877609670162201, + -0.2149476706981659, + 0.46419769525527954, + -0.17458681762218475, + -0.43142130970954895, + 0.11288626492023468, + 0.07445921003818512, + 0.12628164887428284, + -0.11945603042840958, + -0.38261833786964417, + -0.5283170342445374, + -0.08888468891382217, + -0.045344386249780655, + -0.05548547953367233, + 0.5140365362167358, + 0.18226051330566406, + -0.39427682757377625, + 0.3037468492984772, + -0.08763206005096436, + 0.39484742283821106, + 0.13341321051120758, + -0.14059601724147797, + 0.1915351152420044, + -0.13258162140846252, + -0.34495028853416443, + -0.1213214248418808, + 0.13526709377765656, + 0.4893025755882263, + 0.0487591028213501, + 0.030913488939404488, + 0.006703980732709169, + 0.3817351460456848, + -0.11707624047994614, + -0.27272289991378784, + -0.41967275738716125, + 0.07028400897979736, + -0.24211427569389343, + 0.11122997850179672, + 0.044782619923353195, + -0.0412275567650795, + -0.2315467894077301, + 0.06260370463132858, + 0.022414233535528183, + -0.5007809996604919, + -0.4019578993320465, + 0.30645158886909485, + 0.10654999315738678, + 0.4325349032878876, + 0.06229427084326744, + -0.20297692716121674, + -0.2986350357532501, + -0.011530312709510326, + 0.10124281793832779, + 0.6350119709968567, + -0.0023636179976165295, + -0.023279715329408646, + 0.017329039052128792, + -0.46684056520462036, + -0.25323957204818726, + 0.06903299689292908, + 0.34610384702682495, + -0.12704606354236603, + 0.231996089220047, + 0.6985863447189331, + 0.06540343910455704, + -0.205169215798378, + 1.0532562732696533, + -0.18552327156066895, + 0.10639381408691406, + -0.15420426428318024, + 0.2088264524936676, + -0.1638656109571457, + -0.25836676359176636, + 0.029533471912145615, + 0.5921178460121155, + -0.3884141147136688, + 0.7821306586265564, + 0.14494366943836212, + -0.39747023582458496, + 0.1607729196548462, + -0.3863277733325958, + 0.5246726274490356, + 0.3249935209751129, + 0.33247318863868713, + -0.14822350442409515, + -0.33232712745666504, + -0.10402630269527435, + 0.09154355525970459, + -0.458811491727829, + -0.20017090439796448, + -0.17602379620075226, + 0.1441136598587036, + 0.11163701862096786, + -0.2810453474521637, + 0.40791767835617065, + 0.14591684937477112, + -0.22489747405052185, + -0.4181624948978424, + -0.4583265781402588, + -0.03487362340092659, + 0.1333482712507248, + 0.8185035586357117, + -0.05929122120141983, + 0.03213487192988396, + -0.07802440226078033, + 0.01983635313808918, + -0.13263921439647675, + 0.16796091198921204, + 0.09266303479671478, + -0.10181672126054764, + -0.48844113945961, + 0.20073963701725006, + 0.019214781001210213, + -0.28359827399253845, + -0.19081313908100128, + -0.17977015674114227, + -0.04096474498510361, + -0.11055684089660645, + -0.27811509370803833, + 0.06136731430888176, + 0.29513970017433167, + -0.18971887230873108, + 0.04308944568037987, + -0.2796589732170105, + 0.13607721030712128, + 0.0892738550901413, + 0.39275088906288147, + -0.010025350376963615, + -0.25946077704429626, + -0.33738401532173157, + -0.413753479719162, + 0.24785423278808594, + -0.09910101443529129, + -0.006313375197350979, + 0.17575649917125702, + 0.21268554031848907, + -0.2925707697868347, + -0.07847266644239426, + -0.27649813890457153, + 0.06564453989267349, + -0.3149513304233551, + 0.18248412013053894, + 0.45127275586128235, + -0.20536358654499054, + 0.024198921397328377, + -0.13917332887649536, + 0.1625182181596756, + 0.053632061928510666, + -0.3890143036842346, + 0.3093743324279785, + -0.13650336861610413 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_075.json b/src/benchmark/output/results/results_graph_075.json new file mode 100644 index 0000000..5dee9f7 --- /dev/null +++ b/src/benchmark/output/results/results_graph_075.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 77-year-old man with a history of smoking, hypertension, benign prostatic hyperplasia, and hyperuricemia. He was admitted for his first cycle of chemotherapy for stage IV small cell lung cancer without cerebral metastases.\n\n**Timeline of Diagnoses:**\n\n1. **Initial Diagnosis:** The patient's diagnosis of stage IV small cell lung cancer was confirmed upon admission.\n2. **Somnolence and Right-Sided Weakness:** 30 minutes after chemotherapy premedication, the patient experienced a sudden change in mental status, progressing to somnolence. Physical examination revealed altered mental status and right-sided weakness (N2).\n3. **Neurological Examination:** The patient's neurological examination showed signs of reduced mobility on the right side, accompanied by right facial paresis (N3).\n4. **Blood Gas Analysis and Brain CT Angiography:** Blood gas analysis showed no respiratory, metabolic, or electrolyte abnormalities, while brain CT angiography did not reveal any vascular lesions or thrombi in major vessels (N4).\n\n**Timeline of Treatments:**\n\n1. **Chemotherapy Premedication:** The patient received 4 mg intravenous ondansetron and 8 mg intravenous dexamethasone as premedication for chemotherapy.\n2. **Aspirin Administration:** Due to the suspicion of a transient ischemic event, a loading dose of 300 mg of aspirin was administered, followed by a daily dose of 100 mg of aspirin (N6).\n\n**Outcome:**\n\nThe patient gradually became more alert approximately one hour after the onset of symptoms and returned to his baseline mental status without any neurological deficits by one hour and thirty minutes after onset. The suspicion of a transient ischemic event as the primary cause of the symptoms was confirmed, and the patient's condition improved with the administration of aspirin.\n\n**Conclusion:**\n\nThis case highlights the importance of prompt recognition and management of acute neurological events in patients undergoing chemotherapy for cancer. Early intervention with aspirin may have contributed to the patient's rapid recovery from a suspected transient ischemic event. Further evaluation and monitoring are necessary to ensure that this patient does not experience any further complications related to his cancer treatment or underlying medical conditions.", + "bertscore": { + "precision": [ + 0.7189599275588989 + ], + "recall": [ + 0.7112793326377869 + ], + "f1": [ + 0.715099036693573 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 6, + "edge_count": 5, + "avg_in_degree": 0.8333333333333334, + "density": 0.16666666666666666 + }, + "trajectory_embedding": [ + 0.045807287096977234, + 0.11770268529653549, + -0.03572636470198631, + 0.021092357113957405, + 0.07645720988512039, + 0.007500001695007086, + 0.008010799996554852, + 0.14289645850658417, + 0.3722045123577118, + -0.33858588337898254, + -0.3850763738155365, + 0.18912379443645477, + -0.6559848189353943, + -0.16191299259662628, + -0.20137447118759155, + 0.0759354755282402, + 0.2702353894710541, + 0.16936542093753815, + 0.07835409790277481, + -0.3299759030342102, + -0.18143773078918457, + 0.11674398928880692, + -0.3384394347667694, + -0.17969034612178802, + 0.04424552246928215, + 0.19640791416168213, + 0.24683980643749237, + 0.49727484583854675, + 0.19678841531276703, + 0.1909312754869461, + 0.11201261729001999, + 0.19997799396514893, + -0.3539782464504242, + 0.11559206992387772, + -0.031568095088005066, + 0.408315509557724, + 0.19176192581653595, + 0.12137612700462341, + -0.03553854301571846, + -0.0301413144916296, + -0.1159721240401268, + 0.16482952237129211, + 0.595913827419281, + 0.42103350162506104, + 0.42424169182777405, + -0.825439989566803, + 0.08158329874277115, + 0.5744253993034363, + -0.3093647360801697, + -0.08049822598695755, + 0.21942491829395294, + 0.7388144135475159, + 0.6383765339851379, + 0.03873066231608391, + 0.5087663531303406, + 0.0825551226735115, + -0.3178311288356781, + -0.266065388917923, + -0.09997441619634628, + 0.12857599556446075, + -0.02170816995203495, + -0.07240775972604752, + 0.1888861060142517, + 0.24537062644958496, + -0.16507436335086823, + -0.15687721967697144, + -0.08168644458055496, + 0.07287833839654922, + -0.04427901282906532, + -0.4269390404224396, + -0.22114895284175873, + -0.3795653283596039, + -0.21332170069217682, + -0.022721821442246437, + 0.2507433593273163, + -0.1632072478532791, + 0.32238805294036865, + -0.13584774732589722, + -0.08217250555753708, + -0.1777264028787613, + 0.17538075149059296, + 0.17397461831569672, + -0.001024814904667437, + 0.10224354267120361, + -0.3581933081150055, + 0.23766402900218964, + -0.13690929114818573, + 0.11173954606056213, + -0.169885516166687, + 0.20873981714248657, + 0.06642169505357742, + -0.15311281383037567, + -0.011820261366665363, + -0.23973910510540009, + 0.1116490438580513, + -0.2871513068675995, + 0.17431245744228363, + 0.41358256340026855, + 0.9696435928344727, + -0.033063702285289764, + 0.27619078755378723, + 0.08359523862600327, + 0.36440756916999817, + -0.1718911975622177, + 0.6718617081642151, + -0.20658451318740845, + 0.16106708347797394, + -0.6716086864471436, + -0.282492071390152, + 0.18218117952346802, + -0.055064912885427475, + -0.3005070686340332, + 0.21839416027069092, + -0.43593910336494446, + -0.06691485643386841, + -0.013505811803042889, + -0.18712656199932098, + 0.04444829747080803, + -0.14876608550548553, + -0.31808018684387207, + 0.1609577238559723, + -0.17569458484649658, + 0.21265320479869843, + 0.30232834815979004, + -0.28047171235084534, + 0.14037325978279114, + -0.19971276819705963, + 0.3113831579685211, + 0.07889438420534134, + 0.21075396239757538, + -0.5272453427314758, + -0.0786275640130043, + -0.18754899501800537, + 0.4771214425563812, + 0.07079669088125229, + 0.10337550193071365, + -0.43884432315826416, + 0.27645444869995117, + -1.112174153327942, + 0.18329882621765137, + -0.24874530732631683, + -0.07672900706529617, + 0.17637914419174194, + -0.5260199308395386, + -0.23057429492473602, + -0.20318703353405, + -0.1930892914533615, + -0.0379716232419014, + 0.0071329474449157715, + -0.025361694395542145, + -0.2191867232322693, + -0.04551468417048454, + 0.31813332438468933, + 0.11107144504785538, + 0.07724209129810333, + 0.005266269668936729, + 0.17813818156719208, + 0.43489304184913635, + 0.2410293072462082, + -0.0921410322189331, + 0.11332813650369644, + 0.3278353214263916, + -0.14688603579998016, + -0.13512970507144928, + 0.251478374004364, + -0.6765346527099609, + 0.2792581617832184, + -0.2946648895740509, + 0.1759146898984909, + 0.038616348057985306, + -0.01827198825776577, + 0.1887245625257492, + -0.009888127446174622, + 0.5408356785774231, + 0.41578200459480286, + 0.45262014865875244, + 0.2340223342180252, + 0.010576675646007061, + 0.42736324667930603, + -0.09995642304420471, + 0.04484429955482483, + -0.07524427771568298, + 0.5264602303504944, + -0.009831699542701244, + -0.06505990773439407, + 0.2181854248046875, + 0.053839679807424545, + 0.06986883282661438, + -0.21507632732391357, + -0.13911765813827515, + 0.49655628204345703, + -0.33767402172088623, + 0.22505827248096466, + -0.31729987263679504, + -0.056519728153944016, + 0.09553543478250504, + -0.27626949548721313, + -0.2180691510438919, + -0.008334065787494183, + -0.07525476068258286, + 0.21599239110946655, + -0.03826938569545746, + -0.17923204600811005, + 0.19359922409057617, + 0.07805749028921127, + -0.1676754355430603, + 0.28698623180389404, + 0.02617894671857357, + -0.08517620712518692, + -0.16556791961193085, + -0.2392870932817459, + 0.2431897670030594, + -0.09607527405023575, + 0.1559644639492035, + 0.0509478785097599, + -0.19185946881771088, + 0.10511285066604614, + 0.03735724836587906, + -0.11670611053705215, + 0.1444745808839798, + -0.014770898036658764, + 0.15270490944385529, + 0.19065403938293457, + -0.13778145611286163, + -0.1578330397605896, + 0.30939483642578125, + 0.20108662545681, + 0.32657045125961304, + 0.07512149959802628, + -0.07247340679168701, + 0.15850992500782013, + -0.4860957860946655, + 0.04784030094742775, + -0.21473844349384308, + -0.201835036277771, + -0.47435662150382996, + 0.13540154695510864, + -0.04352383688092232, + -0.0712183266878128, + 0.24528361856937408, + -0.045626137405633926, + -0.09772226214408875, + 0.27391868829727173, + -0.07962411642074585, + -0.020101651549339294, + -0.4095834195613861, + -0.004720285534858704, + 0.4269004166126251, + 0.17443300783634186, + 0.22078071534633636, + -0.00587116414681077, + 0.0842377170920372, + 0.26104435324668884, + -0.1987699419260025, + -0.05484320595860481, + -0.4986896812915802, + -0.22078990936279297, + 0.1685221642255783, + -0.05971812829375267, + 0.06834506243467331, + 0.1094297245144844, + -0.14885027706623077, + 0.19028140604496002, + -0.04543418064713478, + -0.1554095447063446, + -0.14318221807479858, + 0.04609036445617676, + 0.07446836680173874, + 0.042161956429481506, + -0.10644064098596573, + -0.035189539194107056, + 0.04036230966448784, + -0.10374176502227783, + 0.12326893955469131, + 0.10584583133459091, + 0.143638014793396, + 0.04855826497077942, + 0.05617004632949829, + 0.21348953247070312, + -0.4096660614013672, + -0.5108349919319153, + 0.479423850774765, + -0.3253072500228882, + 0.5201472640037537, + -0.13545110821723938, + 0.22627592086791992, + 0.371024489402771, + -0.19324658811092377, + 0.01853490062057972, + 0.19200026988983154, + 0.45755982398986816, + 0.10106930881738663, + -0.02922132797539234, + -0.032825764268636703, + -0.033041033893823624, + 0.06723950058221817, + -0.47247323393821716, + 0.43418288230895996, + -0.19741666316986084, + -0.0027700464706867933, + 0.1406158059835434, + 0.16028419137001038, + 0.03392818197607994, + -0.36659908294677734, + -0.13780824840068817, + 0.48312613368034363, + 0.018238360062241554, + 0.08293566852807999, + 0.0590650774538517, + 0.38490214943885803, + 0.7467427253723145, + 0.02574780583381653, + -0.2764786183834076, + -0.11286959797143936, + -0.23064981400966644, + -0.25624313950538635, + 0.02088029868900776, + 0.08916089683771133, + 0.18534095585346222, + -0.009047550149261951, + -0.1779106855392456, + 0.3416960537433624, + -0.2659137547016144, + -0.198065385222435, + -0.02053266204893589, + 0.006016825791448355, + 0.10181015729904175, + -0.08950414508581161, + 0.24835817515850067, + -0.27386221289634705, + -0.0984625443816185, + 0.3747667074203491, + -0.23240776360034943, + -0.3240988552570343, + 0.22793002426624298, + 0.06194997951388359, + -0.6331691741943359, + 0.2460654228925705, + -0.10044597834348679, + -0.08023614436388016, + 0.11951855570077896, + -0.009397647343575954, + -0.1930791139602661, + -0.31534865498542786, + 0.16545869410037994, + 0.06166355311870575, + -0.023651519790291786, + -0.05672217532992363, + -0.060841742902994156, + 0.11141743510961533, + 0.44699594378471375, + 0.20271320641040802, + 0.1312423199415207, + 0.2800409495830536, + -0.23160766065120697, + -0.260114848613739, + -0.2224413901567459, + 0.006538711953908205, + 0.044628530740737915, + -0.31662631034851074, + -0.2851118743419647, + -0.1803547590970993, + 0.08842998743057251, + 0.35940292477607727, + -0.23928220570087433, + -0.10435357689857483, + 0.24953393638134003, + -0.045280229300260544, + -0.11500551551580429, + 0.32683178782463074, + 0.27548274397850037, + 0.002886255504563451, + 0.5633960366249084, + 0.03968578204512596, + -0.10894442349672318, + -0.033160533756017685, + -0.11194396018981934, + 0.28863832354545593, + -0.23651070892810822, + -0.4654752016067505, + -0.418099969625473, + 0.013085191138088703, + -0.2764267325401306, + -0.22765354812145233, + -0.06392227858304977, + -0.15067128837108612, + 0.10199207067489624, + 0.09312397241592407, + 0.19613100588321686, + 0.10900219529867172, + 0.17412912845611572, + -0.0817377045750618, + 0.4398547112941742, + -0.08249333500862122, + -0.2312345653772354, + 0.08181030303239822, + -0.06795352697372437, + 0.18233443796634674, + -0.0873120129108429, + -0.13699525594711304, + 0.003160859225317836, + 0.3276028335094452, + -0.09173407405614853, + -0.15781940519809723, + -0.13528122007846832, + -0.0024451911449432373, + -0.19121749699115753, + -0.33213579654693604, + -0.08850429207086563, + -0.1823796033859253, + -0.17562620341777802, + -0.11567753553390503, + 0.012981097213923931, + 0.05055880546569824, + -0.23257751762866974, + -0.012304077856242657, + 0.25431469082832336, + 0.28051188588142395, + 0.03017864190042019, + 0.27644675970077515, + 0.23462329804897308, + 0.062029119580984116, + 0.2311794012784958, + -0.08465990424156189, + 0.0925050750374794, + 0.06931477785110474, + -0.45069578289985657, + 0.02485833130776882, + 0.020732318982481956, + 0.11114931106567383, + -0.05347574129700661, + 0.04294453561306, + 0.3005938231945038, + 0.017919473350048065, + 0.0663289949297905, + 0.04522983357310295, + 0.054140884429216385, + -0.16539344191551208, + -0.08208431303501129, + 0.26937246322631836, + -0.10211315751075745, + 0.3584200143814087, + -0.04590592905879021, + -0.28549644351005554, + -0.24206280708312988, + -0.019471677020192146, + -0.3255821764469147, + 0.16466781497001648, + -0.044800933450460434, + -0.39803001284599304, + -0.049368929117918015, + 0.207502543926239, + -0.05322727560997009, + 0.06965098530054092, + 0.2017693966627121, + 0.1949002742767334, + 0.20946061611175537, + -0.2025788575410843, + -0.37732183933258057, + 0.0778084471821785, + -0.22756178677082062, + -0.3567558825016022, + -0.2655130922794342, + 0.3932616710662842, + 0.36519065499305725, + -0.12031441181898117, + -0.02142954431474209, + -0.023034000769257545, + -0.21062660217285156, + -0.516217052936554, + -0.07920899242162704, + -0.1171727403998375, + 0.5185403227806091, + 0.006964618805795908, + -0.21098293364048004, + 0.06525247544050217, + -0.29541918635368347, + 0.1513662487268448, + 0.36459028720855713, + -0.0002842073736246675, + 0.2876196801662445, + 0.33813175559043884, + 0.15945278108119965, + 0.2714601755142212, + 0.25497451424598694, + 0.015865279361605644, + 0.15562516450881958, + -0.03303305432200432, + 0.36623916029930115, + -0.08988836407661438, + -0.031013989821076393, + 0.30426153540611267, + -0.18487049639225006, + 0.31742721796035767, + 0.10855990648269653, + 0.3368889391422272, + -0.3676564693450928, + -0.30894598364830017, + -0.11257509142160416, + -0.2964707612991333, + -0.15796317160129547, + -0.26654598116874695, + 0.07596386969089508, + 0.14172467589378357, + -0.03332973271608353, + -0.02233228273689747, + 0.10226302593946457, + 0.06007678434252739, + 0.12070644646883011, + -0.09412562847137451, + -0.1100994125008583, + -0.5099721550941467, + -0.017193228006362915, + 0.4679844081401825, + -0.09347512573003769, + -0.27180421352386475, + -0.054054439067840576, + 0.1782311052083969, + 0.3806983530521393, + -0.03514458239078522, + -0.12807129323482513, + -0.11974363774061203, + -0.028948253020644188, + -0.03484257683157921, + 0.16952501237392426, + -0.08431141823530197, + 0.2805462181568146, + -0.3047405779361725, + 0.09282463043928146, + -0.08384589105844498, + -0.3484751284122467, + 0.21448807418346405, + -0.3169567286968231, + -0.589252769947052, + 0.19485588371753693, + 0.32439231872558594, + 0.187123641371727, + 0.03689095005393028, + 0.16865180432796478, + 0.5078623294830322, + 0.04753690958023071, + -0.08345508575439453, + -0.02967919409275055, + -0.39215484261512756, + 0.23056809604167938, + 0.006667591631412506, + -0.18089079856872559, + 0.14338625967502594, + -0.09725946187973022, + 0.3044348359107971, + 0.29591554403305054, + -0.08778408169746399, + -0.4849074184894562, + 0.18375559151172638, + 0.1615869551897049, + 0.4971350133419037, + -0.3819853365421295, + -10.784584999084473, + 0.07432346791028976, + -0.13066285848617554, + 0.40988993644714355, + -0.22827774286270142, + 0.08938691765069962, + -0.08332996815443039, + -0.07639814913272858, + -0.03603735566139221, + 0.07136651128530502, + -0.36214983463287354, + 0.08152792602777481, + 0.34609243273735046, + 0.19340276718139648, + 0.061928629875183105, + -0.0696096122264862, + -0.2490527182817459, + 0.32531896233558655, + 0.12854351103305817, + 0.49040746688842773, + 0.06591958552598953, + 0.3692816197872162, + -0.08876323699951172, + 0.3140319585800171, + 0.05634321644902229, + -0.24968500435352325, + -0.07500339299440384, + 0.45240119099617004, + -0.04083656147122383, + -0.46719929575920105, + 0.14255836606025696, + 0.16099637746810913, + -0.267530232667923, + -0.17878036201000214, + 0.023350156843662262, + -0.526637613773346, + -0.15053056180477142, + -0.006377881858497858, + 0.10716927796602249, + -0.0432642437517643, + 0.1161072850227356, + -0.1319752186536789, + -0.1061578020453453, + 0.38084712624549866, + -0.15933924913406372, + -0.629843533039093, + -0.14984317123889923, + -1.410626769065857, + 0.09585443884134293, + 0.4477544128894806, + 0.6733363270759583, + 0.06669875234365463, + 0.03272247314453125, + 0.10794716328382492, + -0.29961487650871277, + 0.3287826180458069, + -0.29620227217674255, + -0.004936398472636938, + 0.12386378645896912, + -0.09463632851839066, + 0.08716341853141785, + -0.08781584352254868, + 0.35632118582725525, + -0.4679558575153351, + -0.39591240882873535, + 0.12213527411222458, + -0.020555978640913963, + -0.08689723163843155, + -0.307513952255249, + -0.29978108406066895, + -0.35751625895500183, + -0.1426488161087036, + 0.01914580725133419, + 0.2691231071949005, + 0.5876139402389526, + 0.08908075094223022, + -0.5416000485420227, + 0.21136508882045746, + -0.23498564958572388, + 0.33110347390174866, + 0.06713372468948364, + -0.041269127279520035, + 0.03301684930920601, + -0.021819211542606354, + 0.031122028827667236, + -0.2836107909679413, + 0.11273357272148132, + 0.3210299611091614, + 0.01933843456208706, + 0.14997528493404388, + 0.00876593217253685, + 0.16449572145938873, + -0.08006290346384048, + -0.0046418956480920315, + -0.4767606258392334, + -0.057115111500024796, + -0.07196276634931564, + -0.10607392340898514, + 0.12266042828559875, + 0.17111603915691376, + -0.2426711767911911, + 0.12196645885705948, + -0.1711072325706482, + -0.26344406604766846, + -0.1831149309873581, + 0.3596714735031128, + 0.13474994897842407, + 0.09868946671485901, + 0.30858659744262695, + 0.07065614312887192, + 0.38284948468208313, + 0.10573241859674454, + 0.2893829345703125, + 0.41628849506378174, + 0.08404768258333206, + 0.037672948092222214, + -0.3271804451942444, + -0.16851353645324707, + -0.165676087141037, + 0.2403445988893509, + 0.3940105736255646, + -0.1632397472858429, + 0.1272577941417694, + 0.37807798385620117, + -0.03602704033255577, + 0.03403973579406738, + 0.9958648085594177, + -0.26264798641204834, + 0.4271481931209564, + -0.19224387407302856, + 0.2388107180595398, + -0.08013186603784561, + -0.17183659970760345, + 0.036771662533283234, + 0.2687005400657654, + -0.4412323534488678, + 0.25463226437568665, + 0.11078793555498123, + -0.3571939766407013, + 0.12838415801525116, + -0.32131707668304443, + 0.3560607433319092, + 0.37096476554870605, + 0.27762413024902344, + -0.06758014112710953, + -0.30936291813850403, + -0.22267447412014008, + 0.16040579974651337, + -0.5422574877738953, + -0.07723230868577957, + -0.10878738015890121, + -0.06900815665721893, + -0.059842485934495926, + -0.35485151410102844, + 0.23085857927799225, + -0.12131821364164352, + -0.0851445123553276, + -0.13702623546123505, + -0.4343409240245819, + -0.02115156687796116, + -0.1245972290635109, + 0.39238253235816956, + 0.0768936276435852, + -0.012623813934624195, + -0.039749037474393845, + 0.4451514780521393, + -0.03305370733141899, + 0.16015847027301788, + -0.03553462401032448, + 0.23680870234966278, + -0.46492233872413635, + -0.01829594559967518, + 0.13811343908309937, + -0.4061249792575836, + -0.26684466004371643, + -0.432390958070755, + 0.21755091845989227, + 0.13445784151554108, + -0.14616286754608154, + 0.4630083739757538, + 0.383459210395813, + 0.050667840987443924, + 0.0938803181052208, + -0.20945651829242706, + 0.3067765533924103, + -0.005457527935504913, + 0.14412924647331238, + 0.22710393369197845, + -0.27725207805633545, + -0.32695698738098145, + -0.3887687027454376, + 0.11401631683111191, + -0.2862842381000519, + -0.09186277538537979, + -0.01145879179239273, + 0.18655572831630707, + -0.18580882251262665, + 0.10415151715278625, + -0.3394136130809784, + -0.04606887698173523, + -0.09992384165525436, + 0.08843109756708145, + 0.31171372532844543, + -0.37404143810272217, + 0.04647715017199516, + -0.25522148609161377, + 0.2199818640947342, + 0.05082905292510986, + -0.3675343990325928, + 0.21184532344341278, + 0.1365559846162796 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_076.json b/src/benchmark/output/results/results_graph_076.json new file mode 100644 index 0000000..89446f3 --- /dev/null +++ b/src/benchmark/output/results/results_graph_076.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 37-year-old woman diagnosed with left lung adenocarcinoma in November 2019. She has extensive bone metastases (cT4N3M1c, stage IVB).\n\n**Timeline of Diagnoses and Treatments:**\n\n1. **November 2019:** The patient was diagnosed with left lung adenocarcinoma and had a baseline chest CT scan and head MRI performed.\n2. **December 2019:** Tumor tissue NGS revealed EGFR exon 18 p.G719S mutation and EGFR exon 20 p.S768I mutation, which led to the initiation of first-line afatinib treatment (40 mg daily po).\n3. **January 2020 - October 2020:** The patient experienced therapeutic failure after 10 months of afatinib treatment, as indicated by time to failure.\n4. **October 2020:** The patient developed new brain lesions and had a partial response on afatinib treatment (lung lesion stable disease, head lesions partial response).\n5. **February 2021:** The patient's brain lesions continued to deteriorate, leading to the reversion of third-line afatinib treatment.\n6. **February 2021:** The patient was switched to second-line osimertinib treatment (80 mg daily po).\n\n**Outcomes:**\n\n* Lung lesion stable disease (SD) at October 2020 and February 2021.\n* Head lesions partial response (PR) on afatinib treatment at October 2020 and February 2021.\n* Brain lesions deteriorated over time, with a new onset of symptoms in February 2021.\n\n**Medications:**\n\n* Afatinib (40 mg daily po): initiated in December 2019, experienced therapeutic failure after 10 months, and partially responsive to treatment at October 2020.\n* Osimertinib (80 mg daily po): started in February 2021 as a second-line treatment.\n\n**Imaging:**\n\n* Baseline chest CT scan and head MRI performed in November 2019.\n* Follow-up imaging not specified for each time point, but mentioned to be performed at October 2020 and February 2021.\n\nNote: The patient's timeline is based on the provided data, which may not be comprehensive or up-to-date.", + "bertscore": { + "precision": [ + 0.6782082915306091 + ], + "recall": [ + 0.6782101988792419 + ], + "f1": [ + 0.6782092452049255 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 6, + "edge_count": 5, + "avg_in_degree": 0.8333333333333334, + "density": 0.16666666666666666 + }, + "trajectory_embedding": [ + 0.23827679455280304, + 0.19383050501346588, + -0.3074941039085388, + 0.022699283435940742, + -0.1117713451385498, + 0.08163382858037949, + 0.16336341202259064, + 0.2284320592880249, + 0.4727567136287689, + -0.48018789291381836, + -0.17922638356685638, + 0.1761062890291214, + -0.5752786993980408, + -0.26775673031806946, + -0.2448425143957138, + 0.11222141981124878, + -0.026510274037718773, + 0.28753769397735596, + -0.13174520432949066, + -0.16616864502429962, + -0.2283923476934433, + 0.05737997591495514, + -0.35397660732269287, + -0.1248975396156311, + 0.09810677170753479, + 0.13049466907978058, + 0.2754243314266205, + 0.5482998490333557, + 0.17604190111160278, + 0.25324949622154236, + 0.38593244552612305, + 0.02705838531255722, + -0.15078306198120117, + 0.09797301143407822, + -0.20773859322071075, + 0.23861820995807648, + 0.28641024231910706, + 0.3107379376888275, + -0.09296360611915588, + -0.09835084527730942, + -0.1433781236410141, + 0.07524699717760086, + 0.78011155128479, + 0.20059669017791748, + 0.36591076850891113, + -0.7035710215568542, + 0.004147856030613184, + 0.6170968413352966, + -0.2732282876968384, + 0.02278464287519455, + 0.24261505901813507, + 0.5385316014289856, + 0.612238347530365, + -0.16031141579151154, + 0.3575305938720703, + -0.21200759708881378, + -0.2899843156337738, + -0.05277976766228676, + -0.04261234030127525, + 0.001894341199658811, + 0.05290482938289642, + -0.19629895687103271, + 0.240090012550354, + -0.08638229966163635, + -0.246315598487854, + -0.16833211481571198, + -0.239271342754364, + 0.13656902313232422, + 0.05970408022403717, + -0.29522469639778137, + -0.30052223801612854, + -0.4230187237262726, + -0.03623747453093529, + 0.24539999663829803, + 0.046417150646448135, + -0.17627276480197906, + 0.24379342794418335, + 0.03090083599090576, + 0.21856538951396942, + 0.06844562292098999, + 0.10070515424013138, + 0.02297864854335785, + 0.033781472593545914, + 0.18886268138885498, + -0.3648346960544586, + 0.15723097324371338, + -0.02727578766644001, + -0.20767347514629364, + -0.2654285728931427, + 0.30841436982154846, + 0.1980409026145935, + -0.4216786324977875, + 0.06747474521398544, + -0.11965957283973694, + -0.020126206800341606, + 0.061832696199417114, + 0.32162997126579285, + 0.30300042033195496, + 0.8911454081535339, + -0.03714946657419205, + 0.2522032558917999, + 0.07825726270675659, + 0.1833336353302002, + 0.06436900794506073, + 0.379732608795166, + -0.326210618019104, + 0.1718369573354721, + -0.3786802291870117, + 0.1216210126876831, + 0.5358230471611023, + 0.06706127524375916, + -0.13807742297649384, + 0.026261737570166588, + -0.31022170186042786, + 0.12481814622879028, + 0.07880108803510666, + -0.17353813350200653, + 0.22634130716323853, + 0.19617867469787598, + -0.4773015081882477, + -0.04363327845931053, + -0.19761033356189728, + 0.29919755458831787, + 0.2651759684085846, + -0.312110036611557, + -0.20090796053409576, + -0.02743689902126789, + 0.039075084030628204, + -0.03280032053589821, + 0.09062299132347107, + -0.35866498947143555, + -0.08795995265245438, + -0.0402611680328846, + 0.11945450305938721, + -0.07223264873027802, + 0.42689552903175354, + -0.49844980239868164, + 0.06586521118879318, + -1.060118317604065, + 0.2107294797897339, + -0.5224700570106506, + -0.02383153885602951, + 0.0010092133888974786, + -0.549434244632721, + -0.07599660009145737, + -0.13625043630599976, + -0.1650521606206894, + 0.2526179552078247, + -0.1384706348180771, + -0.02262040041387081, + -0.014829491265118122, + -0.16993677616119385, + 0.19162696599960327, + 0.3590554893016815, + -0.1217368021607399, + -0.011269618757069111, + 0.02524806372821331, + 0.34759363532066345, + 0.09698069840669632, + -0.12387923151254654, + 0.16090041399002075, + 0.5066038966178894, + -0.2184649556875229, + -0.06521037966012955, + 0.004006996750831604, + -0.656337559223175, + -0.09213676303625107, + -0.09536509960889816, + 0.181168794631958, + -3.571854904294014e-05, + -0.23346710205078125, + 0.2737833559513092, + -0.17373062670230865, + 0.5266119837760925, + 0.2703331708908081, + 0.4663962423801422, + 0.03587856888771057, + 0.01709422841668129, + 0.2607605457305908, + 0.08499119430780411, + 0.030362913385033607, + -0.07279767841100693, + 0.5984684228897095, + 0.18580321967601776, + -0.3127437233924866, + 0.1029241606593132, + 0.3040538728237152, + -0.11147192120552063, + -0.29046955704689026, + -0.1379408985376358, + 0.5362194776535034, + -0.18836070597171783, + 0.2764721214771271, + -0.24798683822155, + -0.06313785910606384, + -0.09634830802679062, + -0.1063026562333107, + -0.19674207270145416, + 0.028267016634345055, + -0.3050723075866699, + 0.14571696519851685, + 0.10303711146116257, + -0.3434045612812042, + 0.15377391874790192, + 0.20161239802837372, + -0.1426643282175064, + 0.08833193778991699, + 0.09128958731889725, + 0.057928454130887985, + -0.10151702165603638, + -0.18967902660369873, + 0.2443976253271103, + 0.011745641939342022, + 0.2861246168613434, + -0.007262446451932192, + -0.33451583981513977, + -0.1543598175048828, + -0.06315622478723526, + -0.050310712307691574, + 0.06104981526732445, + 0.0038887448608875275, + -0.08948274701833725, + 0.09850939363241196, + 0.04890972748398781, + -0.36560022830963135, + 0.16136130690574646, + 0.16882987320423126, + 0.2584773004055023, + 0.02724684774875641, + -0.1380205750465393, + -0.03179508075118065, + -0.1728607416152954, + 0.38502374291419983, + -0.08179805427789688, + -0.3234620988368988, + -0.3075498044490814, + 0.24709784984588623, + -0.011476606130599976, + -0.013557135127484798, + 0.42269715666770935, + -0.023010211065411568, + -0.11280085891485214, + 0.10046976804733276, + -0.202076256275177, + -0.05836661532521248, + -0.2695712745189667, + -0.10399019718170166, + 0.4278355836868286, + 0.20179863274097443, + 0.3021261692047119, + 0.11456140130758286, + -0.15060685575008392, + 0.12468696385622025, + -0.32081839442253113, + -0.42870327830314636, + -0.1741471290588379, + -0.10028757899999619, + -0.2288406938314438, + -0.490246444940567, + -0.07416433840990067, + 0.11537960916757584, + -0.19447587430477142, + 0.2010151892900467, + -0.3204379975795746, + -0.03378818929195404, + -0.1075812503695488, + -0.017441559582948685, + 0.09932020306587219, + -0.4088621139526367, + 0.07245766371488571, + -0.3610595464706421, + -0.19502733647823334, + -0.04854920133948326, + 0.01055243518203497, + 0.23597480356693268, + 0.20520442724227905, + -0.1007285937666893, + 0.17065422236919403, + 0.2868387699127197, + -0.5504851341247559, + -0.2683980166912079, + 0.11708105355501175, + -0.2751244604587555, + 0.23397918045520782, + -0.1560806781053543, + 0.20418113470077515, + 0.38233229517936707, + 0.12889455258846283, + 0.15180151164531708, + 0.34789881110191345, + 0.5347495675086975, + -0.09157653898000717, + -0.06969303637742996, + -0.01055761706084013, + -0.07495594769716263, + -0.04805253818631172, + -0.4226577579975128, + 0.15748365223407745, + -0.19419145584106445, + 0.0037715930957347155, + 0.0035321637988090515, + 0.1534736156463623, + 0.13046225905418396, + -0.315142959356308, + -0.08391523361206055, + 0.6381580233573914, + 0.0845278799533844, + 0.19986873865127563, + 0.07772208005189896, + 0.20112478733062744, + 0.5161496996879578, + -0.053612738847732544, + -0.12709742784500122, + 0.09074511379003525, + -0.2847677171230316, + -0.12185272574424744, + -0.0832335352897644, + 0.12799514830112457, + 0.31815770268440247, + -0.003989753779023886, + -0.16307155787944794, + 0.3751034736633301, + -0.13116158545017242, + -0.23640240728855133, + -0.08085393905639648, + -0.036249417811632156, + 0.11417465656995773, + -0.2432255744934082, + 0.16269807517528534, + -0.12650281190872192, + 0.048263851553201675, + 0.5234131813049316, + -0.33847692608833313, + -0.21068920195102692, + 0.20218396186828613, + -0.07551262527704239, + -0.3687446117401123, + 0.39088013768196106, + -0.1307496279478073, + 0.035130541771650314, + 0.2280704379081726, + -0.2663896083831787, + -0.045487258583307266, + -0.09461545944213867, + 0.23525656759738922, + -0.033148959279060364, + 0.17548994719982147, + -0.065199114382267, + 0.15917401015758514, + -0.13741353154182434, + 0.454095721244812, + 0.036522675305604935, + 0.0017640875885263085, + 0.39572057127952576, + 0.014464967884123325, + -0.23824095726013184, + 0.08686508983373642, + -0.11023706942796707, + 0.2427162081003189, + -0.2589390277862549, + -0.20971643924713135, + -0.2648310661315918, + 0.2665846645832062, + 0.08727061748504639, + -0.29877379536628723, + 0.19200725853443146, + -0.09347536414861679, + -0.09068822860717773, + -0.01262566540390253, + 0.22778479754924774, + 0.19346244633197784, + -0.0805535688996315, + 0.500500500202179, + 0.11900460720062256, + -0.08666285872459412, + 0.3616199493408203, + 0.0013142278185114264, + 0.27503451704978943, + -0.03687556833028793, + -0.26693302392959595, + -0.28157591819763184, + 0.1319924145936966, + -0.1641833633184433, + -0.11888476461172104, + 0.0020799387712031603, + -0.014306637458503246, + -0.14002352952957153, + -0.11141038686037064, + 0.15729904174804688, + -0.10911998897790909, + 0.10334336757659912, + -0.04004526510834694, + 0.41739794611930847, + -0.029898785054683685, + -0.2604459822177887, + 0.05580504611134529, + -0.006255663465708494, + 0.20598864555358887, + -0.3604949414730072, + 0.00875041913241148, + -0.06235986948013306, + 0.49740687012672424, + -0.1496560424566269, + 0.03303674980998039, + 0.0071773710660636425, + -0.1228853166103363, + -0.20660744607448578, + -0.27232107520103455, + 0.04186980798840523, + -0.10468286275863647, + -0.15697933733463287, + -0.04937216639518738, + 0.07219849526882172, + -0.0909268856048584, + -0.14083537459373474, + -0.018182728439569473, + 0.21466375887393951, + 0.20753483474254608, + 0.019511206075549126, + 0.15288442373275757, + 0.19375836849212646, + 0.1406347006559372, + 0.32268646359443665, + -0.21089236438274384, + 0.2705146074295044, + -0.009363668970763683, + -0.14061424136161804, + 0.026788724586367607, + 0.03640532121062279, + -0.30273959040641785, + 0.02521367371082306, + 0.14005766808986664, + 0.22278131544589996, + 0.004735744092613459, + -0.10149452835321426, + -0.05744875967502594, + 0.17576129734516144, + -0.31779733300209045, + -0.06905771046876907, + 0.47184911370277405, + -0.13301736116409302, + 0.244576096534729, + 0.19458036124706268, + -0.47640880942344666, + -0.1275714784860611, + -0.20870816707611084, + -0.3786466121673584, + 0.1351262778043747, + 0.15544787049293518, + 0.0037402112502604723, + 0.06931210309267044, + 0.0585038959980011, + 0.09448304772377014, + 0.02017739973962307, + 0.19778569042682648, + 0.040925707668066025, + 0.08659282326698303, + 0.06887143105268478, + -0.2927178144454956, + 0.06577499210834503, + -0.2871173322200775, + -0.35785040259361267, + -0.3076360523700714, + 0.22519391775131226, + -4.8731762944953516e-05, + -0.1346731036901474, + 0.05453641712665558, + -0.013205967843532562, + -0.2104175090789795, + -0.18275673687458038, + -0.009928501211106777, + -0.019398557022213936, + 0.5932345390319824, + 0.09169135242700577, + -0.1954777091741562, + 0.14180095493793488, + -0.05631763115525246, + -0.023510076105594635, + 0.30225956439971924, + 0.14967507123947144, + 0.31031396985054016, + 0.049463901668787, + 0.017285920679569244, + 0.40960320830345154, + 0.10816052556037903, + 0.06725604832172394, + 0.2638516128063202, + -0.03598957136273384, + 0.12339723110198975, + -0.0787513479590416, + -0.21330519020557404, + 0.43414950370788574, + -0.3668399155139923, + 0.018611179664731026, + 0.04072288051247597, + 0.27639228105545044, + -0.33493950963020325, + -0.19886840879917145, + -0.04608851671218872, + -0.0586431659758091, + -0.148858904838562, + -0.2269318699836731, + -0.22774334251880646, + -0.04927827790379524, + -0.222814679145813, + 0.007563702296465635, + 0.2533177435398102, + 0.40309882164001465, + 0.14567531645298004, + 0.10136713832616806, + -0.3357924520969391, + -0.35419750213623047, + 0.21702735126018524, + 0.34039148688316345, + 0.007884149439632893, + -0.10568678379058838, + -0.07729733735322952, + 0.23728637397289276, + 0.3348486125469208, + 0.11152873188257217, + -0.09791740775108337, + 0.046775396913290024, + -0.04576405510306358, + 0.03567689284682274, + 0.12494464963674545, + -0.10470893979072571, + -0.05517800152301788, + -0.47385916113853455, + 0.011056706309318542, + -0.11555882543325424, + -0.28675463795661926, + 0.13021652400493622, + -0.2633022367954254, + -0.521785318851471, + -0.01653568632900715, + 0.25446146726608276, + -0.0660158097743988, + -0.1931300312280655, + 0.1309727281332016, + 0.4767743647098541, + 0.053156301379203796, + -0.19031654298305511, + -0.007364729885011911, + -0.3377082347869873, + -0.07569721341133118, + 0.19164244830608368, + -0.06226549670100212, + 0.1750444769859314, + 0.04836896434426308, + 0.37478718161582947, + 0.3508851230144501, + 0.22481666505336761, + -0.42879995703697205, + 0.29197749495506287, + 0.354479044675827, + 0.2115197777748108, + -0.4128757417201996, + -10.943734169006348, + -0.05729388818144798, + -0.2507791817188263, + 0.40578493475914, + -0.10982594639062881, + 0.14948545396327972, + -0.035657476633787155, + -0.07036983966827393, + 0.06213514879345894, + 0.20859794318675995, + -0.26474031805992126, + 0.00902507919818163, + 0.2592955529689789, + 0.2484438568353653, + -0.0533563606441021, + 0.17193275690078735, + -0.24006696045398712, + 0.1390850692987442, + 0.05164804682135582, + 0.24255883693695068, + 0.0485161654651165, + 0.33334362506866455, + -0.25250157713890076, + 0.20343182981014252, + 0.06583064049482346, + -0.26805463433265686, + -0.31305578351020813, + 0.3719705045223236, + 0.06861823797225952, + -0.38839492201805115, + 0.19481457769870758, + -0.005363086704164743, + -0.005480388645082712, + -0.08960574865341187, + -0.08657622337341309, + -0.21099726855754852, + -0.13326576352119446, + 0.03981168195605278, + -0.0796785056591034, + -0.20723004639148712, + 0.083144411444664, + -0.1726781576871872, + 0.2685622274875641, + 0.22117920219898224, + -0.06871628761291504, + -0.47652265429496765, + -0.2003326267004013, + -1.5943797826766968, + 0.24705785512924194, + 0.17785973846912384, + 0.5524916648864746, + 0.011432387866079807, + 0.2053167074918747, + 0.20437519252300262, + -0.320361852645874, + -0.0882052481174469, + -0.27516815066337585, + 0.09215494245290756, + 0.06625693291425705, + -0.1008252501487732, + 0.11732197552919388, + 0.0059815868735313416, + 0.5044061541557312, + -0.2398584634065628, + -0.19111891090869904, + 0.20792479813098907, + -0.10610423237085342, + 0.08218506723642349, + -0.1596282422542572, + -0.3775855302810669, + -0.4835216999053955, + -0.019602349027991295, + 0.029715919867157936, + 0.1211496964097023, + 0.49409905076026917, + -0.03614509478211403, + -0.39977946877479553, + 0.18927331268787384, + 0.07952244579792023, + 0.2743697464466095, + 0.235004261136055, + -0.05651728808879852, + -0.008346005342900753, + -0.03986770287156105, + 0.03933858498930931, + -0.1566717028617859, + 0.033127311617136, + 0.3307221233844757, + -0.05544814094901085, + -0.0784774199128151, + -0.038103461265563965, + 0.33608993887901306, + -0.1196669414639473, + -0.2691238820552826, + -0.4948171079158783, + 0.04511487856507301, + -0.05143973231315613, + 0.034892741590738297, + 0.030007528141140938, + 0.0906679630279541, + -0.16117911040782928, + -0.054543137550354004, + -0.07662104815244675, + -0.5650389790534973, + -0.2986502945423126, + 0.4416470527648926, + 0.2973870038986206, + 0.10707498341798782, + 0.025166520848870277, + 0.08520689606666565, + -0.12716203927993774, + -0.060971006751060486, + 0.3781185448169708, + 0.5010175108909607, + 0.2670290172100067, + 0.06372016668319702, + -0.050673726946115494, + -0.06312360614538193, + -0.2566622793674469, + -0.04676256701350212, + 0.4391810894012451, + 0.060142237693071365, + 0.26652204990386963, + 0.44227495789527893, + 0.09132727235555649, + -0.1420161873102188, + 0.7933509945869446, + -0.25437524914741516, + 0.16183561086654663, + -0.022979838773608208, + 0.2906959056854248, + -0.07331342250108719, + -0.298669695854187, + 0.10622362047433853, + 0.35206833481788635, + -0.3475235402584076, + 0.6022205948829651, + 0.07010727375745773, + -0.31871703267097473, + -0.11529938131570816, + -0.22900517284870148, + 0.3383882939815521, + 0.21599525213241577, + 0.2684257924556732, + -0.2317115217447281, + -0.30861538648605347, + -0.22270362079143524, + 0.35290732979774475, + -0.204167440533638, + -0.313772052526474, + -0.09073493629693985, + 0.07836584746837616, + -0.12624867260456085, + -0.2130827158689499, + 0.1985190361738205, + 0.13588394224643707, + -0.09622285515069962, + -0.19318430125713348, + -0.35954248905181885, + -0.22423122823238373, + 0.13571950793266296, + 0.634863555431366, + 0.22830449044704437, + -0.1395283192396164, + -0.06030825898051262, + 0.24075627326965332, + -0.08418592065572739, + 0.0645587369799614, + 0.098998062312603, + -0.08312030881643295, + -0.38061216473579407, + 0.2246633768081665, + 0.056326691061258316, + -0.37183383107185364, + -0.0995800718665123, + -0.3492063581943512, + -0.010427403263747692, + 0.03626984730362892, + -0.2471179962158203, + 0.35784968733787537, + 0.2236282080411911, + 0.05103149637579918, + 0.1038864478468895, + -0.21317404508590698, + 0.034050751477479935, + 0.2734452784061432, + 0.3848705291748047, + -0.016803694888949394, + -0.1745295375585556, + -0.39672836661338806, + -0.47388410568237305, + 0.1805296093225479, + -0.3081200420856476, + -0.008426097221672535, + 0.22735898196697235, + 0.12968361377716064, + -0.2141256183385849, + 0.13192060589790344, + -0.2130144089460373, + -0.0985049232840538, + -0.24702554941177368, + 0.1737651228904724, + 0.4471312463283539, + -0.34420982003211975, + 0.2605140507221222, + -0.09364992380142212, + 0.4649883210659027, + 0.34544655680656433, + -0.21542488038539886, + 0.10511022061109543, + -0.1617775410413742 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_077.json b/src/benchmark/output/results/results_graph_077.json new file mode 100644 index 0000000..6436e0e --- /dev/null +++ b/src/benchmark/output/results/results_graph_077.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 66-year-old man who presented with persistent respiratory symptoms, including cough, sputum, chest tightness, and pain, for approximately 1 month. He received cefaclor and azithromycin at a local clinic without significant alleviation of his symptoms.\n\n**Timeline of Diagnoses:**\n\n1. **Step 1 (September 2023):**\nThe patient was initially evaluated in an outpatient setting with persistent respiratory symptoms. A chest X-ray revealed a space-occupying mass in the left lung, prompting hospitalization on September 10, 2023.\n2. **Step 2 (September 10, 2023):**\nUpon admission, laboratory investigations were normal, and CT imaging demonstrated irregularly shaped soft tissue masses in both the upper and lower lobes of the left lung.\n3. **Step 3 (September 11-12, 2023):**\nFurther characterization of the lung mass was performed through additional CT imaging, which showed an oval mass in the lower lobe of the lung measuring approximately 2.3 cm x 1.7 cm with lobulated and spiculated margins.\n4. **Step 4 (September 13-14, 2023):**\nPET-CT imaging revealed high-density lesions in both the upper and lower lobes of the left lung, with increased glucose metabolism. Multiple enlarged lymph nodes were detected in the mediastinum and interlobular spaces.\n\n**Treatments:**\n\n1. **Step 1 (September 2023):**\nThe patient received cefaclor and azithromycin at a local clinic.\n2. **Step 2-4 (September 10-14, 2023):**\nNo specific treatments were mentioned in the provided data.\n\n**Outcomes:**\n\n1. **Imaging:** The initial chest X-ray revealed a space-occupying mass in the left lung, which was later characterized through additional imaging studies.\n2. **Laboratory Investigations:** Normal laboratory results were reported during hospitalization.\n3. **PET-CT Imaging:** High-density lesions with increased glucose metabolism were detected in both the upper and lower lobes of the left lung.\n\n**Conclusion:**\nThe patient's clinical presentation and diagnostic timeline suggest a complex respiratory condition, potentially related to malignancy or other pathologies. Further investigation and characterization are necessary to determine the underlying cause and develop an effective treatment plan.", + "bertscore": { + "precision": [ + 0.5229495763778687 + ], + "recall": [ + 0.6768455505371094 + ], + "f1": [ + 0.5900275707244873 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 4, + "edge_count": 3, + "avg_in_degree": 0.75, + "density": 0.25 + }, + "trajectory_embedding": [ + 0.28606685996055603, + 0.19629862904548645, + -0.1704561412334442, + 0.05046887323260307, + 0.02108978107571602, + -0.05829715356230736, + -0.002245333045721054, + 0.13291165232658386, + 0.2349492609500885, + -0.29417815804481506, + -0.1785058230161667, + 0.17046767473220825, + -0.6892815232276917, + -0.1641303449869156, + -0.12110166251659393, + -0.009564938955008984, + 0.20506024360656738, + 0.19735971093177795, + -0.06371694803237915, + -0.168881356716156, + -0.41785648465156555, + 0.1446683406829834, + -0.34754589200019836, + -0.12143974751234055, + 0.19943948090076447, + -0.11634601652622223, + 0.20133116841316223, + 0.4066394567489624, + 0.1798296570777893, + 0.2901723384857178, + 0.15701924264431, + 0.17261850833892822, + -0.28471100330352783, + 0.043912891298532486, + -0.01824628934264183, + 0.39242038130760193, + 0.2999846637248993, + 0.4059707522392273, + -0.0009173145517706871, + 0.028525274246931076, + -0.019805196672677994, + 0.06979569792747498, + 0.8095908761024475, + 0.40700992941856384, + 0.5914306640625, + -0.6786153316497803, + -0.09830516576766968, + 0.3571213185787201, + -0.5512141585350037, + -0.14503896236419678, + 0.3630041480064392, + 0.7878065705299377, + 0.6123318076133728, + 0.03371438384056091, + 0.5765873789787292, + -0.0640755146741867, + -0.28928911685943604, + -0.1567484438419342, + -0.37792763113975525, + 0.1678239405155182, + -0.17291393876075745, + -0.05864691361784935, + 0.08173887431621552, + 0.12520043551921844, + -0.2564089000225067, + -0.07728845626115799, + -0.21699613332748413, + -0.05495607480406761, + -0.1491466909646988, + -0.3501957952976227, + -0.32962435483932495, + -0.20398621261119843, + -0.13638442754745483, + 0.059259478002786636, + 0.2011043131351471, + -0.2829757630825043, + 0.20064125955104828, + -0.05215670168399811, + -0.08033516258001328, + -0.0018166601657867432, + -0.038232576102018356, + 0.12476839125156403, + 0.177750363945961, + 0.172443687915802, + -0.3024919033050537, + 0.14695730805397034, + -0.1317208707332611, + -0.1699632704257965, + -0.19738131761550903, + 0.1700049638748169, + -0.0034266039729118347, + -0.18103933334350586, + 0.03591066226363182, + -0.159166619181633, + 0.08757392317056656, + -0.2176816761493683, + 0.21160346269607544, + 0.5036696195602417, + 1.0377775430679321, + -0.1700681746006012, + 0.31139636039733887, + 0.3032952547073364, + 0.2098039984703064, + -0.11058178544044495, + 0.5221318602561951, + 0.06838042289018631, + 0.3081011176109314, + -0.6443921327590942, + -0.03846201300621033, + 0.3459491729736328, + -0.0747748613357544, + -0.18894332647323608, + 0.16755911707878113, + -0.43337664008140564, + 0.032294947654008865, + 0.13194766640663147, + -0.2418166697025299, + 0.0026704873889684677, + -0.15550586581230164, + -0.37391942739486694, + 0.15865842998027802, + -0.1404341608285904, + 0.2971459627151489, + 0.3584194779396057, + -0.4447707235813141, + -0.02101503685116768, + -0.1586252748966217, + 0.08740537613630295, + -0.010801387950778008, + 0.20346030592918396, + -0.4284203350543976, + -0.034719426184892654, + 0.04530620574951172, + 0.32328715920448303, + -0.15784144401550293, + 0.33654287457466125, + -0.4054098427295685, + 0.26389631628990173, + -1.2855446338653564, + 0.21219593286514282, + -0.39983999729156494, + -0.15384645760059357, + -0.04526066035032272, + -0.5079841017723083, + -0.26107659935951233, + -0.1370515078306198, + -0.2692130506038666, + 0.08586348593235016, + -0.0825556069612503, + -0.19149133563041687, + -0.1884382665157318, + 0.14856082201004028, + 0.25330406427383423, + 0.1584334671497345, + 0.22645211219787598, + 0.2041165679693222, + 0.1547349989414215, + 0.428128719329834, + 0.10280472040176392, + -0.09783235192298889, + -0.06509645283222198, + 0.28199297189712524, + -0.044215571135282516, + -0.19037151336669922, + 0.2109173834323883, + -0.8558968305587769, + 0.19494667649269104, + -0.12928329408168793, + 0.34601739048957825, + 0.12390577793121338, + -0.10118449479341507, + 0.20150896906852722, + -0.24660973250865936, + 0.5307393074035645, + 0.3035988211631775, + 0.6282746195793152, + 0.11016793549060822, + -0.018224507570266724, + 0.2186698615550995, + 0.23973889648914337, + 0.12388400733470917, + 0.032403066754341125, + 0.5895467400550842, + 0.22763067483901978, + -0.22540611028671265, + 0.2786703109741211, + 0.3384469151496887, + -0.2813228964805603, + -0.21484513580799103, + -0.1265110969543457, + 0.3004475235939026, + -0.23478037118911743, + 0.2502119243144989, + -0.4079107344150543, + 0.053726162761449814, + 0.0010094530880451202, + -0.3698914051055908, + -0.2103906124830246, + 0.14945241808891296, + -0.08980578929185867, + 0.2633441090583801, + 0.2107224017381668, + 0.061378657817840576, + 0.019323576241731644, + 0.03183364123106003, + -0.0974017009139061, + 0.2610115110874176, + 0.07986023277044296, + -0.01299683004617691, + -0.16036772727966309, + -0.002836895640939474, + 0.2015661746263504, + -0.007435724139213562, + 0.24711596965789795, + 0.015341505408287048, + -0.20637010037899017, + 0.24460408091545105, + -0.15150412917137146, + -0.1956862509250641, + 0.1892034411430359, + -0.16236916184425354, + -0.009086658246815205, + 0.4182066321372986, + -0.2144671380519867, + -0.15854772925376892, + 0.2057098150253296, + 0.19270478188991547, + 0.1443856954574585, + 0.09909569472074509, + -0.13023169338703156, + 0.16440939903259277, + -0.3449779152870178, + 0.1495196521282196, + 0.072191521525383, + -0.06278046220541, + -0.4180295467376709, + 0.044120293110609055, + -0.272815465927124, + -0.26147881150245667, + 0.31484854221343994, + -0.1916094571352005, + -0.05277404934167862, + -0.028660794720053673, + -0.1563258022069931, + -0.009956661611795425, + -0.38037124276161194, + 0.19271349906921387, + 0.2520340383052826, + 0.08303866535425186, + 0.4050411581993103, + 0.06510885059833527, + -0.13605070114135742, + 0.17259937524795532, + -0.4075334370136261, + -0.2840030789375305, + -0.28374770283699036, + -0.17928460240364075, + -0.06931274384260178, + -0.3282749056816101, + 0.1682906150817871, + 0.09378291666507721, + -0.11442618817090988, + 0.06828175485134125, + -0.33794358372688293, + -0.10933859646320343, + -0.0678621158003807, + -0.07116129994392395, + 0.1972588449716568, + 0.08762378990650177, + 0.0905664935708046, + -0.29154253005981445, + -0.2384873926639557, + -0.10114308446645737, + 0.015061281621456146, + 0.24454283714294434, + 0.10528075695037842, + -0.05971674993634224, + 0.07000371813774109, + 0.21128804981708527, + -0.5556223392486572, + -0.42226433753967285, + 0.1980648636817932, + -0.27930817008018494, + 0.3384021520614624, + -0.27251943945884705, + 0.27813225984573364, + 0.3490510582923889, + -0.07427588105201721, + 0.21714673936367035, + 0.5519065856933594, + 0.4834636449813843, + 0.04654815047979355, + -0.09818444401025772, + -0.11124028265476227, + -0.0033403001725673676, + -0.20703110098838806, + -0.3931959271430969, + 0.20898494124412537, + 0.0013197250664234161, + 0.003877289593219757, + 0.14543350040912628, + 0.07703478634357452, + 0.027768932282924652, + -0.6377753019332886, + -0.21562431752681732, + 0.490933895111084, + 0.14342001080513, + -0.019270319491624832, + -0.0968414694070816, + 0.45529162883758545, + 0.7304180860519409, + 0.043459534645080566, + -0.17168158292770386, + -0.06118766963481903, + 0.005051393061876297, + -0.09399973601102829, + -0.13365438580513, + -0.036810047924518585, + 0.18105335533618927, + -0.16371938586235046, + -0.1534590870141983, + 0.526409387588501, + -0.161090686917305, + -0.16261914372444153, + -0.05508507043123245, + 0.08648695796728134, + -0.06093638390302658, + -0.2340754270553589, + 0.42646878957748413, + -0.2993066608905792, + -0.040516164153814316, + 0.5393460988998413, + -0.06582631915807724, + -0.18302901089191437, + 0.25788062810897827, + -0.08681034296751022, + -0.58719402551651, + 0.3172959089279175, + -0.17419347167015076, + -0.019727811217308044, + 0.29131996631622314, + 0.11681635677814484, + -0.1709488332271576, + -0.34687095880508423, + 0.12234021723270416, + 0.12033829838037491, + -0.06132440268993378, + -0.10746213048696518, + -0.02651796117424965, + 0.2865901291370392, + 0.5939309597015381, + 0.14503344893455505, + 0.15339866280555725, + 0.25491273403167725, + -0.22446458041667938, + -0.11993828415870667, + 0.012695145793259144, + 0.23487181961536407, + 0.09834136068820953, + -0.30615219473838806, + -0.24916309118270874, + -0.3143124580383301, + 0.19578838348388672, + 0.09394712746143341, + -0.21350808441638947, + -0.018431078642606735, + 0.033431265503168106, + -0.08033496886491776, + 0.058770474046468735, + 0.3165023922920227, + 0.3147013187408447, + 0.0012837052345275879, + 0.4015222489833832, + 0.14233030378818512, + -0.03207666426897049, + 0.2730615437030792, + -0.09080955386161804, + 0.3049766421318054, + -0.1459517925977707, + -0.4461190700531006, + -0.3847319185733795, + -0.08021950721740723, + -0.26296836137771606, + -0.07766996324062347, + -0.0019341334700584412, + -0.11125586926937103, + -0.003276050090789795, + -0.01933297887444496, + 0.23401403427124023, + 0.11871583759784698, + 0.2633177638053894, + 0.11792641878128052, + 0.45676353573799133, + -0.10577230900526047, + -0.47230756282806396, + 0.08579570800065994, + -0.19637750089168549, + 0.2637426555156708, + 0.027366891503334045, + -0.08674746006727219, + -0.13557979464530945, + 0.4231654405593872, + 0.1219782903790474, + -0.07121968269348145, + -0.09480339288711548, + -0.1198142021894455, + -0.12847919762134552, + -0.43889790773391724, + -0.15349933505058289, + -0.028866689652204514, + -0.07360932976007462, + -0.09615080058574677, + 0.11228236556053162, + -0.09708157181739807, + -0.3526402413845062, + 0.012124750763177872, + 0.3918544054031372, + 0.1676657646894455, + -0.06369969993829727, + 0.2550939619541168, + 0.2474643886089325, + -0.04718436300754547, + 0.3636264204978943, + -0.10850459337234497, + 0.09603086113929749, + 0.13832902908325195, + -0.314791202545166, + -0.0016673528589308262, + 0.07403658330440521, + -0.21497663855552673, + 0.07620703428983688, + 0.1914444863796234, + 0.13187243044376373, + 0.14780455827713013, + -0.08127724379301071, + -0.07765182852745056, + 0.22089733183383942, + -0.3636993169784546, + -0.13719822466373444, + 0.4139607548713684, + -0.030294209718704224, + 0.6092257499694824, + -0.04661824554204941, + -0.34465888142585754, + -0.13774026930332184, + -0.05801468342542648, + -0.4845263957977295, + 0.1595146656036377, + -0.02318224124610424, + -0.29642924666404724, + 0.04574059695005417, + -0.005160834640264511, + -0.0516524612903595, + 0.10848543047904968, + 0.13428616523742676, + -0.03289274871349335, + 0.13046911358833313, + -0.005925724282860756, + -0.32641127705574036, + -0.034398432821035385, + -0.19207042455673218, + -0.3430449962615967, + -0.2102055698633194, + 0.4475308954715729, + 0.3112315535545349, + -0.171941339969635, + -0.08398556709289551, + 0.0031447969377040863, + -0.2861204147338867, + -0.4603792428970337, + -0.15396147966384888, + -0.03883592039346695, + 0.6403640508651733, + 0.1984761357307434, + -0.1738003045320511, + 0.14424443244934082, + -0.4065065383911133, + 0.13337039947509766, + 0.06342297047376633, + 0.16583900153636932, + 0.4052746891975403, + 0.16294607520103455, + 0.24486614763736725, + 0.3222638964653015, + 0.18784388899803162, + 0.009521860629320145, + 0.23639722168445587, + -0.1615857630968094, + 0.05569043383002281, + 0.11057544499635696, + -0.2537461519241333, + 0.5215979814529419, + -0.2233538031578064, + 0.21628376841545105, + 0.13996323943138123, + 0.35563409328460693, + -0.3939831554889679, + -0.274471253156662, + -0.043160926550626755, + -0.021331261843442917, + -0.18702386319637299, + -0.3293328285217285, + -0.16402915120124817, + 0.13207972049713135, + -0.05993706360459328, + -0.07221022248268127, + 0.32442545890808105, + 0.2044561803340912, + 0.03515951707959175, + 0.0502505823969841, + -0.2328818291425705, + -0.4584094285964966, + 0.04844971373677254, + 0.3023422360420227, + 0.20045900344848633, + 0.046738237142562866, + -0.12674221396446228, + 0.14850714802742004, + 0.5502374768257141, + -0.012255441397428513, + -0.15664422512054443, + 0.1369466781616211, + -0.0393584668636322, + -0.1637066751718521, + 0.016180474311113358, + -0.10688404738903046, + 0.1614128202199936, + -0.29407888650894165, + 0.07056370377540588, + -0.019987408071756363, + -0.31015676259994507, + 0.240941122174263, + -0.15239930152893066, + -0.627332329750061, + 0.028034493327140808, + 0.2544875741004944, + -0.09921582788228989, + 0.05429978296160698, + 0.12617741525173187, + 0.4436146020889282, + 0.21177327632904053, + -0.20857636630535126, + 0.14237797260284424, + -0.4464455842971802, + 0.03562391176819801, + 0.1505924016237259, + -0.21513405442237854, + 0.16257233917713165, + -0.037508852779865265, + 0.2443404197692871, + 0.3811696171760559, + 0.11125202476978302, + -0.4001495838165283, + 0.041632041335105896, + 0.08922100067138672, + 0.29810577630996704, + -0.14630937576293945, + -10.86948299407959, + 0.302509605884552, + -0.22962653636932373, + 0.43272316455841064, + -0.2570308446884155, + 0.08360690623521805, + -0.13700652122497559, + 0.1484958529472351, + 0.2490362673997879, + 0.16393277049064636, + -0.272381454706192, + 0.2534922957420349, + 0.3856602907180786, + 0.10875579714775085, + 0.06393343210220337, + -0.18178613483905792, + -0.2629234790802002, + 0.1470135748386383, + -0.07551360875368118, + 0.12686173617839813, + 0.36189988255500793, + 0.3792036175727844, + -0.2208305448293686, + 0.39043933153152466, + 0.1506909430027008, + -0.013560701161623001, + -0.08299165219068527, + 0.38657957315444946, + 0.03815913945436478, + -0.4141175448894501, + 0.4000435769557953, + 0.12925750017166138, + -0.25556063652038574, + -0.06824018061161041, + -0.06491340696811676, + -0.20601487159729004, + -0.11618153750896454, + 0.03460275009274483, + -0.026577923446893692, + -0.11598698049783707, + -0.08146411925554276, + -0.25622671842575073, + 0.06315018981695175, + 0.38705000281333923, + -0.12897390127182007, + -0.4983501136302948, + -0.24605697393417358, + -1.304955005645752, + 0.1062692254781723, + 0.3583422005176544, + 0.5518270134925842, + 0.009288787841796875, + 0.2906201183795929, + 0.11110702157020569, + -0.4198973476886749, + 0.06887240707874298, + -0.2036871463060379, + 0.09259751439094543, + 0.029676785692572594, + -0.10234832763671875, + 0.1946714073419571, + -0.23682254552841187, + 0.2908182442188263, + -0.2656105160713196, + -0.3765774369239807, + 0.27392899990081787, + -0.053743887692689896, + -0.09004094451665878, + 0.03831809014081955, + -0.23780648410320282, + -0.5505651235580444, + -0.12559355795383453, + 0.013369007036089897, + 0.07455819845199585, + 0.4398573935031891, + -0.10670143365859985, + -0.5009100437164307, + -0.006524546071887016, + -0.05285130441188812, + 0.34775805473327637, + 0.2545449435710907, + 0.05307784676551819, + 0.19996291399002075, + -0.21023540198802948, + -0.23382353782653809, + -0.20383916795253754, + -0.013612974435091019, + 0.4291483759880066, + 0.13470833003520966, + 0.06379444897174835, + -0.015289675444364548, + 0.2718344032764435, + -0.13541367650032043, + -0.11460825800895691, + -0.4477459788322449, + 0.22504039108753204, + 0.14276430010795593, + 0.09000031650066376, + 0.011936239898204803, + -0.14371708035469055, + -0.1349676549434662, + -0.16426807641983032, + -0.1972443014383316, + -0.385009765625, + -0.36492517590522766, + 0.20604568719863892, + 0.1916564702987671, + 0.04772558808326721, + 0.149903804063797, + 0.017417674884200096, + 0.06119879335165024, + -0.05237989500164986, + 0.43513333797454834, + 0.5444557666778564, + 0.014072999358177185, + -0.24828514456748962, + -0.2069569230079651, + -0.021418191492557526, + -0.28225380182266235, + 0.24618780612945557, + 0.38825684785842896, + -0.15846478939056396, + 0.23108457028865814, + 0.5354220867156982, + -0.09281803667545319, + -0.10032790154218674, + 1.029331922531128, + -0.3183230757713318, + 0.44928795099258423, + -0.1364426612854004, + 0.20965062081813812, + -0.1975679099559784, + -0.33614349365234375, + 0.1352708637714386, + 0.26992833614349365, + -0.4250962734222412, + 0.47427451610565186, + 0.09736381471157074, + -0.3824968934059143, + 0.12013322114944458, + -0.24874432384967804, + 0.500900387763977, + 0.2807953357696533, + 0.08689477294683456, + -0.19849443435668945, + -0.28465092182159424, + -0.24500258266925812, + -0.0027330778539180756, + -0.5580143332481384, + -0.13328498601913452, + -0.10783621668815613, + 0.09164115786552429, + 0.009176129475235939, + -0.11660171300172806, + 0.3770322799682617, + 0.07512025535106659, + -0.1753244549036026, + -0.10428463667631149, + -0.4950789213180542, + -0.2343485802412033, + 0.0785093680024147, + 0.5306124091148376, + 0.014031238853931427, + -0.10469789057970047, + -0.3154063820838928, + 0.331419974565506, + 0.05914422497153282, + 0.1837640106678009, + 0.034933436661958694, + 0.051506705582141876, + -0.3748853802680969, + 0.12265077233314514, + 0.1092354878783226, + -0.2965819239616394, + -0.18421238660812378, + -0.3950309753417969, + 0.27540650963783264, + -0.09308372437953949, + -0.18102282285690308, + 0.2423771768808365, + 0.28638145327568054, + -0.01811613328754902, + -0.05799128860235214, + -0.4096584916114807, + 0.23458220064640045, + 0.0612679086625576, + 0.1363360434770584, + 0.2250184565782547, + -0.18514981865882874, + -0.39065366983413696, + -0.3854674994945526, + 0.11488988995552063, + -0.251747190952301, + -0.058206312358379364, + 0.11306705325841904, + 0.09973936527967453, + -0.2868974804878235, + 0.14592105150222778, + -0.2502201795578003, + -0.003512006253004074, + -0.3017762303352356, + 0.11013872176408768, + 0.3909848928451538, + -0.3763326406478882, + 0.12033244967460632, + -0.17120030522346497, + 0.28242364525794983, + 0.07102137804031372, + -0.4536048173904419, + 0.28533706068992615, + -0.13200709223747253 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_079.json b/src/benchmark/output/results/results_graph_079.json new file mode 100644 index 0000000..32b4ab1 --- /dev/null +++ b/src/benchmark/output/results/results_graph_079.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 74-year-old female who presented with symptoms of shortness of breath, cough, and hemoptysis. She was diagnosed with stage IVa epidermal growth factor receptor (EGFR)L858R-mutated non-small cell lung cancer (NSCLC).\n\n**Timeline of Diagnoses:**\n\n* September 2019: The patient presented with symptoms of shortness of breath, cough, and hemoptysis, leading to a diagnosis of stage IVa (cT4N2M1a) lung adenocarcinoma in the right upper lobe, with multiple ipsilateral lung metastases, and involvement of the pleura and mediastinal lymph nodes.\n* September 2019: A bronchoscopic lung biopsy revealed the presence of EGFR p.L858R and TP53 p.R248L mutations.\n\n**Timeline of Treatments:**\n\n1. **First-Line Treatment (October 11, 2019 - February 2020)**:\nThe patient received first-line treatment with icotinib (125 mg orally, three times daily) and pemetrexed. After two months, the patient experienced partial response.\n2. **Second-Line Treatment (April 28, 2020 - July 2020)**:\nThe patient commenced second-line treatment with amonertinib (110 mg orally, once daily) in combination with anlotinib (12 mg orally, once daily for 2 weeks, followed by a 1-week drug-free period). The treatment resulted in stable disease initially but progressed after 3 months.\n3. **Third-Line Treatment (August 3, 2020 - November 2020)**:\nThe patient initiated treatment with osimertinib (80 mg orally, once daily) and bevacizumab (350 mg IV, on day 1 of a 21-day cycle). The treatment resulted in partial response after two cycles and significant reduction in tumor lesions after four cycles.\n4. **Fourth-Line Treatment (October 10, 2020 - present)**:\nThe patient received pembrolizumab (200 mg IV on day 1 of every 3 weeks), pemetrexed, and carboplatin. The treatment resulted in partial response after two cycles and significant reduction in tumor lesions after four cycles.\n\n**Outcomes:**\n\n* **Pathological Complete Response (pCR)**:\nThe patient achieved a pathological complete response (pCR) and prolonged survival.\n* **High PD-L1 Expression**:\nTumor microenvironment analysis showed high programmed cell death 1 ligand 1 (PD-L1) expression on tumor cells, indicating potential for immune checkpoint therapy.\n* **Increased Immune Cell Infiltration**:\nThe patient had increased infiltration of immune cells, particularly PD-1+CD8+T cells and PD-L1+macrophages, in the tumor microenvironment.\n\nIn conclusion, this patient's case highlights the importance of personalized medicine approaches in treating advanced NSCLC. The use of targeted therapies, such as EGFR inhibitors and immunotherapies, has led to significant improvements in treatment outcomes and quality of life for patients with this disease.", + "bertscore": { + "precision": [ + 0.5608479976654053 + ], + "recall": [ + 0.6207950711250305 + ], + "f1": [ + 0.5893009901046753 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 7, + "edge_count": 6, + "avg_in_degree": 0.8571428571428571, + "density": 0.14285714285714285 + }, + "trajectory_embedding": [ + 0.28967222571372986, + 0.13287165760993958, + -0.27321428060531616, + 0.1138295978307724, + -0.09009366482496262, + 0.025592172518372536, + 0.09159565716981888, + 0.1864396333694458, + 0.445202499628067, + -0.5484539866447449, + -0.1185631975531578, + 0.20055018365383148, + -0.6732085347175598, + -0.10172402113676071, + -0.23370732367038727, + 0.013881613500416279, + 0.015598686411976814, + 0.3494771420955658, + 0.009218164719641209, + -0.07954765856266022, + -0.3512444496154785, + 0.16238413751125336, + -0.3741113841533661, + -0.030549421906471252, + 0.06190601363778114, + -0.1312652826309204, + 0.09005965292453766, + 0.3457756042480469, + 0.21935248374938965, + 0.1301935613155365, + 0.13383522629737854, + 0.08705072849988937, + -0.2715134024620056, + -0.017471088096499443, + -0.17541687190532684, + 0.3165104389190674, + 0.22981016337871552, + 0.2882510721683502, + -0.12422019988298416, + 0.030639026314020157, + -0.17778345942497253, + 0.0921536311507225, + 0.7343012690544128, + 0.25980523228645325, + 0.42370542883872986, + -0.47161728143692017, + 0.03305958956480026, + 0.42226549983024597, + -0.607052743434906, + -0.056931022554636, + 0.28774595260620117, + 0.6199279427528381, + 0.8208817839622498, + -0.12761585414409637, + 0.4721238911151886, + -0.1769290417432785, + -0.3682643473148346, + -0.08880753070116043, + -0.09844226390123367, + -0.04480478912591934, + 0.1371445506811142, + -0.13656330108642578, + 0.05829444155097008, + -0.07368315756320953, + -0.24113371968269348, + -0.2611972987651825, + -0.44950756430625916, + 0.021681228652596474, + 0.010904805734753609, + -0.4755452573299408, + -0.3611588180065155, + -0.3249382972717285, + -0.12531183660030365, + 0.25645360350608826, + 0.11633254587650299, + -0.27950018644332886, + 0.1850275844335556, + 0.009157419204711914, + 0.05280643701553345, + -0.04193834587931633, + 0.30206218361854553, + -0.0352933406829834, + 0.2162698656320572, + 0.24790331721305847, + -0.3847915232181549, + 0.25920042395591736, + 0.17477086186408997, + -0.3408800959587097, + -0.27560505270957947, + 0.356395423412323, + 0.2189721316099167, + -0.33915847539901733, + -0.05603358894586563, + -0.033332739025354385, + 0.23415698111057281, + 0.06172701343894005, + 0.31433412432670593, + 0.21495400369167328, + 0.8262764811515808, + 0.08993140608072281, + 0.3129323422908783, + 0.05358371511101723, + 0.19939061999320984, + -0.016300829127430916, + 0.3860202431678772, + -0.1777879297733307, + 0.38606563210487366, + -0.27002057433128357, + -0.038585513830184937, + 0.41770532727241516, + 0.05382521077990532, + -0.19494496285915375, + 0.11122935265302658, + -0.36440059542655945, + 0.053052689880132675, + 0.0399259552359581, + -0.2277214378118515, + 0.06811810284852982, + 0.14372451603412628, + -0.5153376460075378, + -0.16730041801929474, + -0.1724451333284378, + 0.34282657504081726, + 0.24908821284770966, + -0.5169404149055481, + -0.17519831657409668, + -0.13197645545005798, + 0.15705715119838715, + -0.19095900654792786, + 0.18576519191265106, + -0.3523712158203125, + -0.1744152009487152, + -0.022252483293414116, + 0.21914683282375336, + -0.2555006742477417, + 0.3989267945289612, + -0.5191221237182617, + 0.1786891222000122, + -1.1714674234390259, + 0.17875909805297852, + -0.5024257898330688, + -0.05538701266050339, + 0.04020046442747116, + -0.4468986690044403, + -0.07063507288694382, + -0.1438509076833725, + -0.031119409948587418, + 0.17066265642642975, + 0.008700119331479073, + -0.0768575519323349, + -0.023904429748654366, + -0.11930304765701294, + 0.10185611248016357, + 0.4682210385799408, + 0.06299436837434769, + 0.13141347467899323, + 0.09621164947748184, + 0.3122382164001465, + 0.18579742312431335, + -0.2830430567264557, + 0.03355366364121437, + 0.4873816967010498, + -0.15377037227153778, + -0.010006451047956944, + 0.11107636988162994, + -0.615912139415741, + -0.030115365982055664, + -0.1420772820711136, + 0.1729895919561386, + -0.023917708545923233, + -0.08727822452783585, + 0.11186224222183228, + -0.09620221704244614, + 0.5171002745628357, + 0.11784271150827408, + 0.49025508761405945, + -0.05882861837744713, + 0.16354672610759735, + 0.28826195001602173, + 0.1510169357061386, + 0.1367875635623932, + -0.054320406168699265, + 0.5517715811729431, + 0.2952355742454529, + -0.3269178867340088, + 0.2745454013347626, + 0.4210677742958069, + -0.2968375086784363, + -0.3493483364582062, + -0.17340795695781708, + 0.6756364107131958, + -0.11425215750932693, + 0.30465373396873474, + -0.3324955999851227, + 0.07581601291894913, + 0.0549696609377861, + -0.2760907709598541, + -0.12449358403682709, + 0.1093653216958046, + -0.24749299883842468, + 0.27507510781288147, + 0.4441538155078888, + -0.3095707595348358, + 0.07083987444639206, + 0.23406513035297394, + -0.11787354946136475, + 0.11195337027311325, + 0.26172110438346863, + -0.006455570459365845, + -0.1302744746208191, + -0.159796804189682, + 0.3143746256828308, + 0.0030647090170532465, + 0.30036577582359314, + 0.016690624877810478, + -0.40316852927207947, + -0.00013471661077346653, + -0.11191528290510178, + -0.24970947206020355, + 0.0097654415294528, + -0.057665493339300156, + -0.10953366011381149, + 0.3198998272418976, + 0.0868820995092392, + -0.47898370027542114, + 0.30328068137168884, + 0.26478198170661926, + 0.2495354562997818, + 0.10004949569702148, + -0.22297188639640808, + 0.005641948897391558, + -0.1663001924753189, + 0.46150967478752136, + -0.025082021951675415, + -0.2940424382686615, + -0.2777272164821625, + 0.2881106436252594, + -0.09620557725429535, + -0.09266971796751022, + 0.4040932357311249, + -0.06339290738105774, + -0.11190048605203629, + -0.0006616333848796785, + -0.3155289590358734, + -0.12966440618038177, + -0.38842740654945374, + 0.07462133467197418, + 0.3605482876300812, + 0.10924185812473297, + 0.2533766031265259, + 0.11878418177366257, + -0.09732914716005325, + 0.3802449107170105, + -0.4287714660167694, + -0.4361326992511749, + -0.22002220153808594, + -0.11263317614793777, + -0.19962425529956818, + -0.38438868522644043, + -0.01715191639959812, + -0.059421274811029434, + -0.18597976863384247, + 0.29453086853027344, + -0.38689857721328735, + -0.1480497568845749, + -0.23082926869392395, + -0.10439932346343994, + 0.25602105259895325, + -0.23777811229228973, + 0.251386433839798, + -0.48589178919792175, + -0.2170087844133377, + -0.13030366599559784, + 0.01969488523900509, + 0.36165112257003784, + 0.18080267310142517, + -0.12654685974121094, + 0.21449588239192963, + 0.2927591800689697, + -0.3578166961669922, + -0.2538065016269684, + 0.05583330616354942, + -0.35547611117362976, + 0.07698582112789154, + -0.23460640013217926, + 0.13946203887462616, + 0.42084333300590515, + -0.09450704604387283, + 0.23828668892383575, + 0.3789999485015869, + 0.5384190678596497, + 0.07774924486875534, + -0.012804687023162842, + -0.03326822444796562, + 0.002135055372491479, + 0.003370237071067095, + -0.4346676170825958, + 0.16199208796024323, + -0.2849520146846771, + -0.014696145430207253, + 0.23210862278938293, + 0.2893259823322296, + 0.01599133387207985, + -0.48155683279037476, + -0.20769087970256805, + 0.5547478795051575, + 0.3228905498981476, + 0.08965908735990524, + -0.10982903093099594, + 0.27760934829711914, + 0.6005199551582336, + -0.004116256255656481, + -0.23534728586673737, + 0.2274608314037323, + -0.23265668749809265, + -0.23064568638801575, + -0.13607372343540192, + -0.02076295204460621, + 0.32928863167762756, + -0.08277048170566559, + -0.14628338813781738, + 0.45051926374435425, + -0.31105682253837585, + -0.25121593475341797, + -0.1824515014886856, + -0.03780277445912361, + -0.04312751069664955, + -0.2350129783153534, + 0.32776692509651184, + -0.24188177287578583, + -0.11767809092998505, + 0.4889431595802307, + -0.1604010909795761, + -0.23388676345348358, + 0.2207779437303543, + -0.05705910176038742, + -0.5361013412475586, + 0.2952418625354767, + -0.0956900343298912, + -0.058307044208049774, + 0.4215090870857239, + -0.20759305357933044, + -0.06033257022500038, + 0.0036444482393562794, + 0.14124391973018646, + 0.06054878607392311, + 0.15261340141296387, + -0.016291795298457146, + 0.07726578414440155, + 0.197734996676445, + 0.5323013663291931, + -0.0004905802779830992, + 0.06438716500997543, + 0.3695080876350403, + -0.09198803454637527, + -0.17459318041801453, + -0.0609399676322937, + -0.026711059734225273, + 0.2645922005176544, + -0.2939346134662628, + -0.32479217648506165, + -0.4593767523765564, + 0.15981721878051758, + 0.1392579823732376, + -0.18741311132907867, + 0.25667014718055725, + 0.015089892782270908, + -0.04481812193989754, + 0.07909588515758514, + 0.4087558686733246, + 0.25603801012039185, + -0.024839891120791435, + 0.58944171667099, + 0.18694981932640076, + -0.03641160577535629, + 0.3322760760784149, + -0.04384502395987511, + 0.16016586124897003, + -0.03353028744459152, + -0.18969707190990448, + -0.3973497450351715, + 0.04745931550860405, + -0.27838438749313354, + -0.16004541516304016, + 0.09827154129743576, + -0.057762205600738525, + -0.06583153456449509, + -0.07669543474912643, + 0.20494325459003448, + -0.14833498001098633, + 0.16243323683738708, + -0.12603820860385895, + 0.6300015449523926, + -0.09244956076145172, + -0.3902032673358917, + 0.08658789098262787, + -0.1725454330444336, + 0.28929710388183594, + -0.19730022549629211, + -0.05545606091618538, + -0.298552006483078, + 0.5052400827407837, + 0.00180157704744488, + -0.06005115434527397, + -0.04409284144639969, + -0.2896899878978729, + -0.14837579429149628, + -0.3761539161205292, + -0.007878346368670464, + -0.11249662935733795, + -0.10222945362329483, + -0.12502528727054596, + 0.2129075676202774, + -0.036784105002880096, + -0.11887486279010773, + 0.08552749454975128, + 0.3052138686180115, + 0.023013290017843246, + 0.002454501111060381, + 0.1161080077290535, + 0.04006757214665413, + 0.16009308397769928, + 0.3419356048107147, + -0.27117785811424255, + 0.2513508200645447, + 0.17737217247486115, + -0.1764993965625763, + -0.0591430701315403, + -0.07846539467573166, + -0.3145514130592346, + 0.025771180167794228, + 0.2627951204776764, + 0.12709160149097443, + 0.06073858588933945, + -0.07017429172992706, + -0.06779538840055466, + 0.27473920583724976, + -0.3822859823703766, + -0.11495144665241241, + 0.5263261795043945, + -0.2031695693731308, + 0.46737101674079895, + -0.0009923881152644753, + -0.341575562953949, + -0.12215767800807953, + -0.15284284949302673, + -0.46299150586128235, + 0.21459181606769562, + -0.03856450319290161, + -0.04700160026550293, + 0.013662009499967098, + 0.025660598650574684, + 0.08325345069169998, + -0.020084094256162643, + 0.21293704211711884, + 0.13208091259002686, + 0.0614907406270504, + 0.0160593893378973, + -0.31926029920578003, + -0.05446759983897209, + -0.34027257561683655, + -0.3687364161014557, + -0.33159443736076355, + 0.3063124120235443, + 0.07891631126403809, + -0.09566958993673325, + 0.21386925876140594, + 0.15311625599861145, + -0.24031387269496918, + -0.3483901619911194, + 0.035939235240221024, + -0.021818067878484726, + 0.700746476650238, + -0.01015093270689249, + -0.22639426589012146, + 0.2296704351902008, + -0.23792104423046112, + 0.2603660523891449, + 0.1689690500497818, + 0.21035762131214142, + 0.24694712460041046, + 0.07892201840877533, + 0.15463678538799286, + 0.47970151901245117, + 0.2620716691017151, + 0.07993534952402115, + 0.27389487624168396, + 0.002367000561207533, + 0.0009275068296119571, + -0.033652354031801224, + -0.17579017579555511, + 0.535103976726532, + -0.450234591960907, + 0.1456584632396698, + -0.00017565488815307617, + 0.4457348883152008, + -0.30656033754348755, + -0.23326945304870605, + -0.09910259395837784, + -0.15710829198360443, + -0.15850941836833954, + -0.2844614088535309, + -0.2842937111854553, + 0.09169753640890121, + -0.4262233078479767, + 0.024825306609272957, + 0.35772404074668884, + 0.3824091851711273, + 0.23279383778572083, + 0.052957359701395035, + -0.33554360270500183, + -0.3774503767490387, + 0.1421286016702652, + 0.4427526295185089, + -0.0338178388774395, + -0.08948683738708496, + -0.12881775200366974, + 0.2622751295566559, + 0.5057573914527893, + -0.03837591037154198, + -0.005317949689924717, + -0.040249694138765335, + 0.026192592456936836, + -0.10959991067647934, + 0.07289024442434311, + -0.09330327063798904, + -0.002816191641613841, + -0.4704037606716156, + -0.09868132323026657, + -0.025710372254252434, + -0.3043610453605652, + 0.15286512672901154, + -0.393623024225235, + -0.45060035586357117, + -0.03775904327630997, + 0.10853327810764313, + -0.17514102160930634, + -0.1105383038520813, + 0.2181914895772934, + 0.5257498621940613, + 0.05091087147593498, + -0.12341874837875366, + 0.06325674802064896, + -0.4749176800251007, + -0.026637906208634377, + 0.2773142158985138, + -0.08836515247821808, + 0.30598339438438416, + 0.05742163211107254, + 0.39186832308769226, + 0.44029709696769714, + 0.19125878810882568, + -0.2801852822303772, + 0.18362243473529816, + 0.32622748613357544, + 0.352365106344223, + -0.19342491030693054, + -10.864474296569824, + -0.0675220936536789, + -0.20281276106834412, + 0.3238285183906555, + -0.03562992811203003, + 0.08949095010757446, + -0.11705444008111954, + -0.03446536511182785, + 0.05287977680563927, + 0.26455721259117126, + -0.14750215411186218, + 0.11091314256191254, + 0.19575953483581543, + 0.28778889775276184, + 0.019959408789873123, + 0.20548667013645172, + -0.28015708923339844, + 0.31860584020614624, + -0.09151721745729446, + 0.055688221007585526, + 0.315818727016449, + 0.37046733498573303, + -0.21440018713474274, + 0.11870057135820389, + 0.10335554927587509, + -0.3256823718547821, + -0.3214492201805115, + 0.39063313603401184, + 0.16373607516288757, + -0.5220385789871216, + 0.3636987507343292, + 0.04829171672463417, + -0.03670072183012962, + -0.08939583599567413, + -0.03290948644280434, + -0.10313744097948074, + -0.1826518326997757, + 0.0209584292024374, + 0.08102841675281525, + -0.040978141129016876, + -0.03382750600576401, + -0.25632908940315247, + 0.06183001399040222, + 0.3834187090396881, + -0.14339660108089447, + -0.47818008065223694, + -0.16611053049564362, + -1.4688751697540283, + 0.15699635446071625, + 0.0753943994641304, + 0.5030497312545776, + 0.05595908313989639, + 0.12699879705905914, + 0.2289055734872818, + -0.4020373225212097, + -0.055559564381837845, + -0.23186932504177094, + 0.1323404610157013, + -0.013745056465268135, + -0.19996988773345947, + 0.13707265257835388, + 0.014514075592160225, + 0.381695419549942, + -0.2989253103733063, + -0.2995021641254425, + 0.2724134624004364, + -0.16989204287528992, + -0.0674980953335762, + -0.14477702975273132, + -0.26961836218833923, + -0.6019757390022278, + -0.06365279108285904, + 0.1580573320388794, + 0.06685082614421844, + 0.41906997561454773, + -0.1534811407327652, + -0.4862115681171417, + 0.05464538186788559, + 0.09809964895248413, + 0.4205111861228943, + 0.1642920821905136, + 0.07613559812307358, + 0.1527480185031891, + -0.09869176894426346, + -0.07568293064832687, + -0.16916313767433167, + 0.15995725989341736, + 0.47846871614456177, + -0.0997859388589859, + -0.04658050090074539, + -0.05753358080983162, + 0.21864032745361328, + -0.1015353724360466, + -0.17594926059246063, + -0.5499250292778015, + 0.19176438450813293, + 0.09658706933259964, + 0.05859261006116867, + -0.08791005611419678, + -0.09840131551027298, + -0.0476619191467762, + -0.11832360178232193, + -0.05876261368393898, + -0.5046718120574951, + -0.2179214209318161, + 0.34861311316490173, + 0.2996915280818939, + 0.1443328559398651, + 0.06942183524370193, + 0.011322115547955036, + -0.10855323821306229, + -0.08292877674102783, + 0.46120381355285645, + 0.4783497452735901, + 0.11509208381175995, + 0.017284413799643517, + -0.18751850724220276, + 0.007175466977059841, + -0.2643918991088867, + -0.12226884067058563, + 0.21522578597068787, + 0.06414483487606049, + 0.4275428354740143, + 0.5237908959388733, + 0.06738035380840302, + -0.11861338466405869, + 0.7751699090003967, + -0.32658490538597107, + 0.3873884081840515, + -0.023632006719708443, + 0.08779571950435638, + -0.02065986953675747, + -0.3203555941581726, + 0.06279540061950684, + 0.2946391701698303, + -0.3721751868724823, + 0.5796948671340942, + 0.007954047992825508, + -0.35443034768104553, + -0.05238080769777298, + -0.4264388978481293, + 0.2871454060077667, + 0.15541745722293854, + 0.23862481117248535, + -0.23090815544128418, + -0.37333399057388306, + -0.2889014184474945, + 0.25871747732162476, + -0.19321925938129425, + -0.2834831774234772, + -0.1565498262643814, + 0.04119173809885979, + 0.014212914742529392, + -0.2397836595773697, + 0.2033349573612213, + 0.12204419076442719, + -0.17446880042552948, + 0.04007628932595253, + -0.4067001938819885, + -0.1722506582736969, + 0.18190431594848633, + 0.6929059028625488, + 0.27528923749923706, + -0.24967753887176514, + -0.06132813170552254, + 0.30700966715812683, + -0.17502053081989288, + 0.0731566771864891, + 0.10760484635829926, + -0.06960611790418625, + -0.4021244943141937, + 0.10139738023281097, + 0.13292549550533295, + -0.4857683777809143, + -0.0997462049126625, + -0.43580156564712524, + 0.07551152259111404, + -0.0033843836281448603, + -0.14483292400836945, + 0.3712177574634552, + 0.19803941249847412, + 0.033927835524082184, + 0.09443007409572601, + -0.26732107996940613, + -0.05879153683781624, + 0.3543913960456848, + 0.29959550499916077, + 0.06797077506780624, + -0.18245546519756317, + -0.44452303647994995, + -0.2848609387874603, + 0.20486590266227722, + -0.27368444204330444, + 0.11429703235626221, + 0.15967264771461487, + 0.17556919157505035, + -0.23424656689167023, + 0.2251690775156021, + -0.21622833609580994, + 0.0028860631864517927, + -0.42873385548591614, + 0.1058376207947731, + 0.35441526770591736, + -0.431979238986969, + 0.3532979488372803, + 0.041436534374952316, + 0.4396197497844696, + 0.30838820338249207, + -0.3553692400455475, + 0.19427360594272614, + -0.3544304370880127 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_080.json b/src/benchmark/output/results/results_graph_080.json new file mode 100644 index 0000000..276000a --- /dev/null +++ b/src/benchmark/output/results/results_graph_080.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 71-year-old male with a past medical history of tobacco use, who quit more than 24 years ago. He presented with a newly diagnosed lung cancer and a progressively increasing lump in the right axilla over 2 months.\n\n**Initial Diagnosis (Step 1):**\nUpon presentation, the patient underwent an ultrasound examination, which revealed a 3.7 cm enlarged lymph node (LN) in the right axilla with effacement and hypervascularity. A biopsy of the LN showed carcinoma with cytokeratin 7 (CK-7) and thyroid transcription factor-1 (TTF-1) positivity, consistent with lung adenocarcinoma, with a possibility of squamous component. Further imaging studies, including a PET scan, revealed multiple F-fluorodeoxyglucose (FDG) avid nodes in the right hilum, thoracic inlet, mediastinum, and right axilla, concerning for metastatic disease.\n\n**Treatment Initiation (Step 2):**\nThe patient was started on single-agent pembrolizumab, a checkpoint inhibitor, with good treatment response. However, after 17 months of treatment, the patient presented to the clinic with worsening shortness of breath (SOB), which he noted a few months ago, was mild in the beginning, and has progressively gotten worse in the last few weeks.\n\n**Progression and Complications (Step 3):**\nA recent PET scan did not show any evidence of disease progression or signs of inflammation in lungs. However, echocardiography revealed severe pulmonary arterial hypertension (PAH), with elevated right ventricular systolic pressure (RVSP) at 86 mm Hg. The patient also had mild regurgitation noted at the pulmonary valve with no structural abnormalities.\n\n**Current Status:**\nThe patient is currently under close observation for worsening symptoms and potential disease progression. Further management strategies, including additional immunotherapies or PAH-specific treatments, are being considered based on ongoing clinical evaluation.\n\n**Timeline of Diagnoses and Treatments:**\n\n* Month 0-2: Patient presents with newly diagnosed lung cancer and progressively increasing lump in the right axilla.\n* Month 2-17: Patient undergoes treatment with pembrolizumab, showing good initial response.\n* Month 17-present: Patient experiences worsening shortness of breath, prompting further evaluation.\n\n**Outcomes:**\n\n* The patient's current disease status is concerning for metastatic lung cancer with PAH.\n* Further management strategies are being considered to address the patient's worsening symptoms and potential disease progression.", + "bertscore": { + "precision": [ + 0.7466033101081848 + ], + "recall": [ + 0.7676594853401184 + ], + "f1": [ + 0.7569850087165833 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 3, + "edge_count": 2, + "avg_in_degree": 0.6666666666666666, + "density": 0.3333333333333333 + }, + "trajectory_embedding": [ + 0.16170577704906464, + 0.06417428702116013, + -0.1753809005022049, + 0.09126577526330948, + 0.04058043658733368, + -0.0517929308116436, + 0.027891309931874275, + 0.20549362897872925, + 0.3396742641925812, + -0.1185796782374382, + -0.19451667368412018, + 0.3359101712703705, + -0.5800067186355591, + -0.037589181214571, + -0.14825548231601715, + -0.07752230018377304, + 0.1640154868364334, + 0.15847530961036682, + 0.09481053799390793, + -0.22051595151424408, + -0.36081311106681824, + 0.06775417178869247, + -0.27210137248039246, + -0.08581588417291641, + 0.03308814391493797, + -0.2221856713294983, + 0.25041311979293823, + 0.47027888894081116, + 0.010676463134586811, + 0.390374094247818, + 0.020987078547477722, + 0.3011362850666046, + -0.2802215814590454, + 0.13622573018074036, + -0.0426664836704731, + 0.46328845620155334, + 0.22242970764636993, + 0.24061594903469086, + 0.012163308449089527, + 0.2463909238576889, + -0.035688240081071854, + -0.033458296209573746, + 0.683021068572998, + 0.36508381366729736, + 0.5865605473518372, + -0.3869433104991913, + -0.16478519141674042, + 0.2541346549987793, + -0.6637176871299744, + -0.2128756195306778, + 0.1582735925912857, + 0.6316847205162048, + 0.676030158996582, + -0.06598640233278275, + 0.5675460696220398, + -0.015017884783446789, + -0.4154480993747711, + -0.3651273548603058, + -0.24078278243541718, + 0.19777317345142365, + 0.03367118164896965, + 0.09326181560754776, + -0.12598834931850433, + -0.1462969183921814, + -0.26702162623405457, + -0.20758824050426483, + -0.29405689239501953, + -0.1512245088815689, + 0.002099235774949193, + -0.49648937582969666, + -0.4524024426937103, + -0.523938000202179, + -0.21945929527282715, + 0.11926966160535812, + 0.30697500705718994, + -0.17828918993473053, + 0.07593215256929398, + 0.0031282901763916016, + -0.09978869557380676, + 0.06671863794326782, + 0.1485070139169693, + 0.10464618355035782, + 0.2119523286819458, + 0.2293415516614914, + -0.53892582654953, + 0.25895240902900696, + -0.018000666052103043, + -0.06887724250555038, + -0.23081785440444946, + 0.405300110578537, + 0.0023310978431254625, + -0.28803470730781555, + 0.19269920885562897, + -0.15252827107906342, + 0.23817749321460724, + -0.279422789812088, + 0.13371329009532928, + 0.48851433396339417, + 1.0066032409667969, + 0.02901902236044407, + 0.2888752520084381, + 0.08292227238416672, + 0.30324694514274597, + -0.11457598954439163, + 0.5307343602180481, + -0.05574449524283409, + 0.19429010152816772, + -0.3969154357910156, + -0.24090175330638885, + 0.29840365052223206, + -0.06193384528160095, + -0.18737812340259552, + 0.008145813830196857, + -0.3010093867778778, + -0.009682953357696533, + -0.09535468369722366, + -0.12818172574043274, + -0.08768980950117111, + -0.11715734004974365, + -0.33347287774086, + -0.0266678798943758, + -0.2392888069152832, + 0.4559757709503174, + 0.29971909523010254, + -0.6150010824203491, + 0.06653465330600739, + -0.2935921251773834, + 0.2735276520252228, + -0.1821199506521225, + 0.2592300474643707, + -0.4836507737636566, + -0.2863466441631317, + 0.04036503657698631, + 0.4803471565246582, + -0.329915314912796, + 0.29486167430877686, + -0.5024775266647339, + 0.5065647959709167, + -1.1835442781448364, + 0.10830271989107132, + -0.3016100227832794, + -0.1817319542169571, + 0.21494729816913605, + -0.49380624294281006, + -0.04988394305109978, + -0.019627826288342476, + -0.041309770196676254, + 0.10386083275079727, + 0.05729535222053528, + -0.2183636873960495, + -0.20842494070529938, + 0.0022983949165791273, + 0.23450523614883423, + 0.10784179717302322, + 0.149484321475029, + 0.1958412379026413, + 0.17026446759700775, + 0.2709245979785919, + 0.274440199136734, + -0.013130572624504566, + 0.023208647966384888, + 0.23512153327465057, + -0.199251189827919, + -0.08562996983528137, + 0.2056998461484909, + -0.6060120463371277, + 0.18293148279190063, + -0.2545846402645111, + 0.3098243772983551, + 0.03938345983624458, + -0.1685476452112198, + 0.18305246531963348, + -0.11972254514694214, + 0.5722284317016602, + 0.2124704122543335, + 0.44831323623657227, + 0.020334968343377113, + 0.13530932366847992, + 0.32751330733299255, + 0.043996524065732956, + 0.12881529331207275, + 0.004275381565093994, + 0.5150017142295837, + 0.18410582840442657, + -0.32989001274108887, + 0.35640931129455566, + 0.42475900053977966, + -0.5189270377159119, + -0.2981785237789154, + -0.1470656841993332, + 0.34028589725494385, + -0.22099550068378448, + 0.3039867877960205, + -0.36094167828559875, + -0.14047858119010925, + -0.0163204874843359, + -0.421978235244751, + -0.2378939390182495, + -0.03051541931927204, + 0.005137839820235968, + 0.18851839005947113, + 0.2045164853334427, + -0.08168909698724747, + 0.10849367827177048, + -0.00764103839173913, + -0.1480981707572937, + 0.31816622614860535, + 0.17019350826740265, + 0.06157438084483147, + -0.13919706642627716, + -0.026803061366081238, + 0.12923680245876312, + 0.020167088136076927, + 0.24664203822612762, + -0.11446008831262589, + -0.23026323318481445, + 0.4978926181793213, + -0.06820321828126907, + -0.4361797869205475, + 0.25302186608314514, + -0.2057608813047409, + -0.05945592001080513, + 0.4599365293979645, + -0.04139485955238342, + -0.2885613739490509, + 0.3359368145465851, + 0.3233077824115753, + 0.46385347843170166, + 0.13437789678573608, + -0.07005564123392105, + 0.05333550646901131, + -0.28356197476387024, + 0.1518421471118927, + -0.14833299815654755, + -0.13917085528373718, + -0.3918771743774414, + 0.09519139677286148, + -0.22675596177577972, + -0.22635622322559357, + 0.19554878771305084, + -0.14021697640419006, + -0.1394069343805313, + 0.09573733806610107, + -0.40174368023872375, + -0.01943335309624672, + -0.39033043384552, + 0.11863195896148682, + 0.38569021224975586, + -0.024844152852892876, + 0.2903454601764679, + 0.13991692662239075, + 0.019197562709450722, + 0.3583739101886749, + -0.3456098139286041, + -0.21909010410308838, + -0.2593524158000946, + -0.005434083286672831, + 0.2122776061296463, + -0.1608828902244568, + 0.049832671880722046, + -0.03504583239555359, + -0.30573660135269165, + 0.11994820088148117, + -0.17739969491958618, + 0.004336684942245483, + -0.06020696461200714, + -0.126387357711792, + 0.32634201645851135, + 0.067463219165802, + 0.10488498955965042, + -0.5681338310241699, + -0.32007458806037903, + -0.15360380709171295, + -0.28001120686531067, + 0.2688024938106537, + 0.20039302110671997, + -0.058453936129808426, + 0.150589719414711, + 0.2538689374923706, + -0.489363431930542, + -0.3854392468929291, + 0.3142465054988861, + -0.4604202210903168, + 0.23031790554523468, + -0.3282184302806854, + 0.1391030102968216, + 0.31331774592399597, + -0.24032974243164062, + 0.16569222509860992, + 0.4757949411869049, + 0.5051875710487366, + 0.2130226045846939, + -0.01114953588694334, + -0.04440610483288765, + 0.0168099757283926, + -0.09256894141435623, + -0.5790378451347351, + 0.40754246711730957, + -0.22961895167827606, + 0.04027270898222923, + 0.14651338756084442, + 0.1077340617775917, + 0.02400590293109417, + -0.48595574498176575, + -0.30283215641975403, + 0.5803824067115784, + 0.2862081527709961, + -0.1183202862739563, + -0.25270864367485046, + 0.3769168555736542, + 0.78188556432724, + 0.004750050604343414, + -0.23964212834835052, + 0.0021473292727023363, + -0.009572711773216724, + -0.04520444571971893, + -0.038921136409044266, + -0.043263357132673264, + 0.26619139313697815, + -0.0470220111310482, + -0.08051818609237671, + 0.5123961567878723, + -0.11394850164651871, + -0.11871293932199478, + -0.0956827774643898, + -0.14846593141555786, + -0.23261217772960663, + -0.2957981824874878, + 0.32122382521629333, + -0.25173553824424744, + -0.16259802877902985, + 0.45835113525390625, + 0.15288864076137543, + -0.19972564280033112, + 0.04171581193804741, + -0.07582410424947739, + -0.5825116634368896, + 0.20132161676883698, + -0.06379573792219162, + -0.04347846284508705, + 0.5257647633552551, + 0.08377230167388916, + -0.03626188635826111, + -0.20337092876434326, + 0.14988745748996735, + 0.17442531883716583, + -0.06815133988857269, + -0.0007118880748748779, + 0.011094112880527973, + 0.30379799008369446, + 0.4837910234928131, + 0.07047341018915176, + 0.0701151117682457, + 0.35754382610321045, + -0.2858234941959381, + -0.27199193835258484, + -0.11321226507425308, + 0.22233884036540985, + 0.19282692670822144, + -0.352459192276001, + -0.2555687725543976, + -0.43889284133911133, + 0.020942067727446556, + 0.23295383155345917, + 0.03966064006090164, + 0.10098153352737427, + 0.02947184443473816, + -0.06881203502416611, + 0.25679662823677063, + 0.31913289427757263, + 0.14395515620708466, + 0.08225718885660172, + 0.44989416003227234, + 0.21865634620189667, + -0.03538578376173973, + 0.23187457025051117, + -0.08539187908172607, + 0.27775195240974426, + -0.25336670875549316, + -0.3327300548553467, + -0.6518617272377014, + 0.03791474178433418, + -0.23796188831329346, + -0.2112639993429184, + 0.03844016417860985, + -0.07870272547006607, + -0.059338267892599106, + 0.018876032903790474, + 0.3236042261123657, + 0.06626769155263901, + 0.2576044499874115, + -0.19833962619304657, + 0.5462787747383118, + -0.0013432999840006232, + -0.40598535537719727, + -0.09618297964334488, + -0.189860001206398, + 0.30224987864494324, + -0.1370094120502472, + -0.010360236279666424, + -0.23108692467212677, + 0.28076794743537903, + -0.0056189484894275665, + -0.0932111144065857, + -0.06363409012556076, + -0.15601979196071625, + -0.13073007762432098, + -0.28219181299209595, + -0.14281325042247772, + 0.009279821999371052, + -0.054536301642656326, + -0.13986848294734955, + 0.2702961564064026, + -0.1357324868440628, + -0.32171741127967834, + -0.10712447017431259, + 0.5144136548042297, + 0.021468251943588257, + -0.0010568300494924188, + 0.3552232086658478, + 0.21233385801315308, + 0.11103376001119614, + 0.3788088262081146, + -0.30189526081085205, + 0.24352531135082245, + 0.34511828422546387, + -0.1582849770784378, + -0.09250759333372116, + 0.030928021296858788, + -0.1553855687379837, + -0.030506499111652374, + 0.17037808895111084, + 0.23281733691692352, + 0.09007861465215683, + -0.03122805617749691, + -0.13672585785388947, + 0.3326437771320343, + -0.26446542143821716, + -0.14839814603328705, + 0.45609593391418457, + -0.03043253719806671, + 0.538658618927002, + -0.04290486499667168, + -0.28737005591392517, + -0.3159334361553192, + 0.10606477409601212, + -0.5321884155273438, + 0.1916835904121399, + -0.05784996226429939, + -0.27770179510116577, + -0.05638095736503601, + 0.16572465002536774, + 0.12988774478435516, + 0.0034224092960357666, + 0.12267196178436279, + 0.035601794719696045, + 0.18500597774982452, + 0.0016053169965744019, + -0.38293972611427307, + -0.072118379175663, + -0.39139723777770996, + -0.48963668942451477, + -0.2621878385543823, + 0.49308255314826965, + 0.4136013090610504, + -0.07869190722703934, + 0.011978725902736187, + 0.1467512845993042, + -0.14674049615859985, + -0.4187954366207123, + 0.032208096235990524, + -0.16551727056503296, + 0.5775502324104309, + 0.12220194935798645, + -0.1174648329615593, + 0.053470250219106674, + -0.5826014876365662, + 2.0136436432949267e-05, + 0.217664435505867, + 0.24270987510681152, + 0.3843815326690674, + 0.2551819384098053, + 0.24215956032276154, + 0.25699126720428467, + 0.1521281599998474, + -0.10425279289484024, + 0.2962424159049988, + 0.06129523739218712, + 0.06566400080919266, + -0.05866144970059395, + -0.31432613730430603, + 0.554105281829834, + -0.3822920024394989, + 0.12933607399463654, + 0.051500916481018066, + 0.40378856658935547, + -0.3613762855529785, + -0.3446308374404907, + -0.1011548861861229, + -0.3012189269065857, + -0.02459586225450039, + -0.4447677433490753, + -0.22453542053699493, + 0.1441662758588791, + -0.3610188961029053, + -0.16058175265789032, + 0.25536420941352844, + 0.14051537215709686, + 0.11507883667945862, + 0.125632181763649, + -0.3028871715068817, + -0.4414997100830078, + 0.12171987444162369, + 0.44699159264564514, + -0.07384810596704483, + 0.055923253297805786, + -0.2615223824977875, + 0.25376811623573303, + 0.5499110817909241, + -0.12618230283260345, + -0.13409112393856049, + 0.024104351177811623, + 0.18812449276447296, + -0.229927197098732, + -0.03431566059589386, + -0.10431947559118271, + 0.2295948714017868, + -0.44498029351234436, + 0.02819477766752243, + 0.015521925874054432, + -0.4733261168003082, + 0.11836191266775131, + -0.2954564392566681, + -0.4829397201538086, + 0.10651502013206482, + 0.3445877134799957, + -0.051440875977277756, + 0.13554584980010986, + 0.0506732352077961, + 0.4395820200443268, + 0.08662901073694229, + -0.18536098301410675, + 0.2140907198190689, + -0.48223161697387695, + -0.02478078007698059, + 0.22532819211483002, + -0.1257062405347824, + 0.2698558568954468, + -0.09194726496934891, + 0.19092683494091034, + 0.44144532084465027, + 0.06286539137363434, + -0.4876507818698883, + 0.19771629571914673, + 0.2587491571903229, + 0.3993764817714691, + -0.21249842643737793, + -10.696544647216797, + 0.3267917037010193, + -0.1931016594171524, + 0.45036229491233826, + -0.08852332830429077, + 0.05742527171969414, + -0.3659094572067261, + 0.054845016449689865, + 0.050520434975624084, + 0.11332130432128906, + -0.11314848810434341, + 0.0736548900604248, + 0.16164906322956085, + 0.26976752281188965, + 0.09283443540334702, + 0.02761017717421055, + -0.31051892042160034, + 0.3553762435913086, + -0.1742977648973465, + 0.2205958366394043, + 0.34635546803474426, + 0.4062264859676361, + -0.35396823287010193, + 0.2646059989929199, + 0.16952429711818695, + -0.22071988880634308, + -0.09732081741094589, + 0.3406055271625519, + 0.05119972303509712, + -0.31444260478019714, + 0.4091686010360718, + 0.12900780141353607, + -0.3823615610599518, + -0.037645064294338226, + 0.11201243847608566, + -0.24389010667800903, + -0.189349964261055, + 0.2016192078590393, + 0.09059354662895203, + 0.05876535177230835, + 0.18239140510559082, + -0.3371480405330658, + -0.1271895319223404, + 0.20678092539310455, + -0.16091510653495789, + -0.3933931291103363, + -0.09605833142995834, + -1.3924120664596558, + 0.041603922843933105, + 0.40078845620155334, + 0.6122336387634277, + -0.031026005744934082, + 0.09205054491758347, + 0.13186831772327423, + -0.4089258015155792, + -0.039451923221349716, + -0.17487145960330963, + 0.11786512285470963, + 0.11953631043434143, + -0.23365505039691925, + 0.014726396650075912, + -0.027913773432374, + 0.34021639823913574, + -0.4306485652923584, + -0.4140009582042694, + 0.25939080119132996, + -0.07822064310312271, + 0.0587964802980423, + 0.06297113001346588, + 0.05746515467762947, + -0.6372826099395752, + -0.10111063718795776, + 0.11570742726325989, + 0.014021371491253376, + 0.4960898458957672, + 0.02326870895922184, + -0.6462897658348083, + 0.14166639745235443, + -0.06939949840307236, + 0.526535153388977, + 0.013086249120533466, + 0.043429940938949585, + 0.16642211377620697, + -0.05013129487633705, + -0.1368580460548401, + -0.4777989089488983, + 0.0451304130256176, + 0.5684677362442017, + -0.03262486681342125, + -0.006404608488082886, + -0.04261365905404091, + 0.09246858209371567, + -0.17152021825313568, + -0.12491945177316666, + -0.5599517226219177, + 0.22403578460216522, + -0.002937018871307373, + -0.016761846840381622, + 0.02910032868385315, + -0.24091923236846924, + 0.0761120393872261, + -0.21871237456798553, + -0.012899058870971203, + -0.5061669945716858, + -0.2397974282503128, + 0.21639524400234222, + 0.2235356718301773, + -0.06739028543233871, + 0.19935816526412964, + -0.0274154394865036, + 0.18605439364910126, + 0.024828828871250153, + 0.36120685935020447, + 0.4014972150325775, + 0.2253611832857132, + 0.036079224199056625, + -0.25269997119903564, + -0.11901547759771347, + -0.21596413850784302, + 0.20858030021190643, + 0.28345775604248047, + -0.12829269468784332, + 0.3251263201236725, + 0.6155745387077332, + 0.038912683725357056, + -0.19988779723644257, + 0.7746531367301941, + -0.175467848777771, + 0.4368321895599365, + 4.738072675536387e-05, + 0.1368003487586975, + 0.04108123853802681, + -0.3866727352142334, + 0.2919377088546753, + 0.21532011032104492, + -0.38474133610725403, + 0.46949830651283264, + 0.07764176279306412, + -0.24931935966014862, + -0.015154749155044556, + -0.40230438113212585, + 0.3921107351779938, + 0.07843241840600967, + 0.3270377516746521, + 0.020024141296744347, + -0.26750925183296204, + -0.2359234094619751, + 0.019181398674845695, + -0.3531128168106079, + -0.1538238376379013, + -0.21520940959453583, + 0.04078909382224083, + 0.043268799781799316, + -0.23968857526779175, + 0.29185494780540466, + 0.07115846127271652, + -0.07164786756038666, + 0.10682477802038193, + -0.3784548044204712, + -0.3577486574649811, + -0.1471642553806305, + 0.5361248850822449, + 0.06279879063367844, + -0.06982944905757904, + -0.12452534586191177, + 0.3395889103412628, + -0.03245915099978447, + 0.12318012118339539, + 0.05687183514237404, + 0.10818618535995483, + -0.4374234974384308, + 0.1441798061132431, + 0.1358024924993515, + -0.43465766310691833, + -0.22156845033168793, + -0.4098415672779083, + 0.23547561466693878, + 0.041761819273233414, + -0.1572698950767517, + 0.47256746888160706, + 0.4554685652256012, + 0.04705950990319252, + 0.06323787569999695, + -0.20251940190792084, + 0.3220158815383911, + 0.2226671427488327, + -0.05750179663300514, + 0.25517570972442627, + -0.21750958263874054, + -0.3569756746292114, + -0.27008959650993347, + 0.02801072597503662, + -0.2674688398838043, + 0.13896159827709198, + -0.15346553921699524, + 0.21098242700099945, + -0.4238058626651764, + 0.09534284472465515, + -0.10380738228559494, + 0.13649247586727142, + -0.24735979735851288, + 0.10851240158081055, + 0.29225099086761475, + -0.5054976940155029, + 0.2565760612487793, + -0.11907598376274109, + 0.17706717550754547, + 0.2255607396364212, + -0.3712857663631439, + 0.08376073837280273, + -0.10963030904531479 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_081.json b/src/benchmark/output/results/results_graph_081.json new file mode 100644 index 0000000..e84dadc --- /dev/null +++ b/src/benchmark/output/results/results_graph_081.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 46-year-old woman who was incidentally found to have a pulmonary nodule during a routine health examination. No symptoms were reported, and she had no significant medical history, including no history of tuberculosis or lung infections.\n\n**Initial Diagnosis (Step 1):**\nA chest radiograph revealed a solitary pulmonary nodule in the left lower lung field. The patient was diagnosed with a pulmonary nodule (code: 7225005) and underwent further evaluation.\n\n**Biopsy and Initial Treatment (Steps 2-3):**\nA peripheral pulmonary nodule was identified on a chest CT scan, which led to the performance of an endobronchial ultrasound transbronchial lung biopsy. The procedure was successful, but minor bleeding occurred. Biopsy specimens revealed granulomatous inflammation. Following this, a transbronchial lung cryobiopsy was performed four times through the same guide sheath, also with minor bleeding.\n\n**Post-Biopsy Complications and Treatment Initiation (Step 3):**\nAfter the cryobiopsy, increased density in the lower zone of the left lung was observed on chest radiograph. Tissue sample PCR tests were negative for Mycobacterium tuberculosis and NTM. However, one week post-biopsy, follow-up outpatient chest radiographs revealed an enlarged shadow at the location of the original lesion. The patient reported discharge of a purulent and intermittent blood-tinged sputum, which led to the initiation of antibiotic therapy with moxifloxacin (400 mg daily).\n\n**Response to Antibiotics and Follow-Up (Step 4):**\nTwo weeks after starting antibiotics, chest radiographs indicated a slight increase in the size of the lesion. However, there was an improvement in her symptoms, with no other abnormal findings such as fever. The antibiotic therapy continued with regular outpatient follow-ups.\n\n**Lesion Improvement and Acid-Fast Bacilli Growth (Step 5):**\nThree weeks after tissue biopsy, chest radiographs showed improvement in the lesion size. Notably, growth of acid-fast bacilli was reported in the bronchoalveolar lavage fluid obtained during examination.\n\n**Outcome:**\nThe patient's symptoms improved significantly with antibiotic therapy and follow-up care. The growth of acid-fast bacilli in the bronchoalveolar lavage fluid suggested that the patient had a Mycobacterium tuberculosis infection, which was confirmed by PCR tests. However, due to the presence of granulomatous inflammation in biopsy specimens, it is possible that the patient had an NTM infection as well.\n\n**Conclusion:**\nThe patient's case highlights the importance of prompt evaluation and treatment for pulmonary nodules, particularly those with granulomatous inflammation or acid-fast bacilli growth. Early detection and management can significantly improve outcomes and prevent complications.", + "bertscore": { + "precision": [ + 0.6428266167640686 + ], + "recall": [ + 0.7402181625366211 + ], + "f1": [ + 0.6880933046340942 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 2, + "node_count": 6, + "edge_count": 4, + "avg_in_degree": 0.6666666666666666, + "density": 0.13333333333333333 + }, + "trajectory_embedding": [ + 0.1967584788799286, + 0.11755304038524628, + -0.10197411477565765, + -0.01451544463634491, + -0.10492626577615738, + -0.16041645407676697, + 0.15277233719825745, + 0.07490139454603195, + 0.196526437997818, + -0.2453027218580246, + -0.23723392188549042, + 0.15686118602752686, + -0.45318803191185, + -0.14287793636322021, + -0.1919034719467163, + -0.01922443136572838, + 0.09047435224056244, + 0.2307237833738327, + 0.06612925231456757, + -0.30490654706954956, + -0.5095926523208618, + 0.09057998657226562, + -0.3310241401195526, + -0.15016674995422363, + 0.09834185242652893, + 0.00662646722048521, + 0.05036105588078499, + 0.5195268392562866, + 0.2559052109718323, + 0.49741601943969727, + 0.20520301163196564, + 0.1978311538696289, + -0.23709924519062042, + 0.05779299885034561, + -0.2160702645778656, + 0.35687413811683655, + 0.18609383702278137, + 0.4006708264350891, + -0.07851338386535645, + -0.013639949262142181, + -0.023297805339097977, + 0.01679356023669243, + 0.8863866925239563, + 0.39117974042892456, + 0.6297079920768738, + -0.7095476388931274, + 0.08873630315065384, + 0.47203999757766724, + -0.5215798616409302, + -0.2589757442474365, + 0.2998557984828949, + 0.6878936290740967, + 0.616496741771698, + -0.103790782392025, + 0.48690876364707947, + -0.13505902886390686, + -0.38761240243911743, + -0.21568915247917175, + -0.29627087712287903, + 0.08889561146497726, + -0.004067690577358007, + -0.0721888542175293, + 0.08505629748106003, + -0.059112370014190674, + -0.3711683452129364, + -0.1344449818134308, + -0.15514591336250305, + 0.04374406486749649, + 0.001033145235851407, + -0.47192955017089844, + -0.23844489455223083, + -0.271122545003891, + -0.0970202088356018, + 0.018400097265839577, + -0.016769196838140488, + -0.17139652371406555, + 0.3182295560836792, + -0.013026106171309948, + -0.05352813005447388, + -0.04483800753951073, + -0.02286483719944954, + 0.17096233367919922, + 0.10240630805492401, + 0.040907151997089386, + -0.1877213716506958, + 0.17709025740623474, + -0.0719011202454567, + -0.1333617866039276, + -0.1893998384475708, + 0.21347680687904358, + 0.19486841559410095, + -0.16797563433647156, + 0.08185581117868423, + -0.13447889685630798, + 0.13286735117435455, + -0.19486990571022034, + 0.1648717224597931, + 0.4256727695465088, + 1.1231606006622314, + 0.014604246243834496, + 0.19181255996227264, + 0.10960622131824493, + 0.20627649128437042, + -0.13242535293102264, + 0.4895930886268616, + -0.04705680534243584, + 0.07572434842586517, + -0.6876301765441895, + -0.30880647897720337, + 0.30060893297195435, + 0.014305981807410717, + -0.18023338913917542, + 0.1903560310602188, + -0.3354260325431824, + 0.022099385038018227, + 0.12615585327148438, + -0.2117345780134201, + 0.17497646808624268, + -0.13861685991287231, + -0.2423783838748932, + 0.07328806817531586, + -0.06552425771951675, + 0.3177458941936493, + 0.31820210814476013, + -0.37602055072784424, + -0.10976444184780121, + -0.132036030292511, + 0.10575046390295029, + 0.045866478234529495, + 0.04125301539897919, + -0.5529741048812866, + -0.15419010818004608, + 0.016441548243165016, + 0.3415800929069519, + -0.1986306607723236, + 0.16156351566314697, + -0.3381054997444153, + 0.3312362730503082, + -1.1593300104141235, + 0.2070571929216385, + -0.5770875811576843, + 0.041539017111063004, + 0.08659698069095612, + -0.40547579526901245, + -0.22364994883537292, + -0.25963708758354187, + -0.22558438777923584, + -0.001673890626989305, + 0.023335684090852737, + -0.13531021773815155, + -0.22158853709697723, + 0.13990099728107452, + 0.27269506454467773, + 0.21471509337425232, + 0.21108976006507874, + 0.2316681444644928, + 0.12973514199256897, + 0.33893221616744995, + 0.2858162522315979, + 0.04344502091407776, + 0.03169308975338936, + 0.22765187919139862, + -0.10976984351873398, + -0.4443940222263336, + -0.032376062124967575, + -0.7336358428001404, + 0.28923705220222473, + -0.273898184299469, + 0.3324330747127533, + 0.049167972058057785, + -0.15189211070537567, + 0.13944867253303528, + -0.21886488795280457, + 0.5503464937210083, + 0.2171466052532196, + 0.6291339993476868, + 0.11273552477359772, + 0.11478869616985321, + 0.3419473171234131, + 0.0773049145936966, + 0.20578324794769287, + 0.033577218651771545, + 0.522563099861145, + 0.17831286787986755, + -0.23628458380699158, + 0.1833256185054779, + 0.3928374648094177, + -0.1809474527835846, + -0.18037357926368713, + -0.26165372133255005, + 0.44358858466148376, + -0.1424209624528885, + 0.4192637503147125, + -0.3868114948272705, + 0.18567727506160736, + -0.04453083127737045, + -0.3912268280982971, + -0.3401441276073456, + 0.12440862506628036, + -0.06588377803564072, + 0.21651992201805115, + 0.18031904101371765, + 0.0385860837996006, + 0.05526469275355339, + 0.17041175067424774, + -0.14128008484840393, + 0.30237168073654175, + 0.05587827414274216, + 0.03877586871385574, + -0.2750449776649475, + -0.18203917145729065, + 0.17013022303581238, + 0.027720388025045395, + 0.3112988770008087, + 0.0004239678382873535, + -0.19901946187019348, + 0.35572659969329834, + -0.09977003931999207, + -0.07894817739725113, + 0.35504937171936035, + -0.1763714849948883, + -0.05377941578626633, + 0.23651878535747528, + -0.0997595340013504, + -0.25139355659484863, + 0.2593649923801422, + 0.19310155510902405, + 0.1784505844116211, + 0.14192160964012146, + -0.02237403765320778, + 0.09491994231939316, + -0.2859984040260315, + 0.09121128916740417, + -0.12167664617300034, + -0.020334120839834213, + -0.31394022703170776, + 0.1018623560667038, + -0.23500454425811768, + -0.287008672952652, + 0.30209246277809143, + -0.10152151435613632, + -0.12201225757598877, + -0.004989572800695896, + -0.13312369585037231, + 0.07816831767559052, + -0.4034978449344635, + 0.02433887869119644, + 0.3271365463733673, + 0.1338953673839569, + 0.3997375965118408, + -0.003557264804840088, + -0.10331934690475464, + 0.2821424603462219, + -0.3583966791629791, + -0.18959423899650574, + -0.4298092722892761, + -0.24525706470012665, + -0.028561707586050034, + -0.2585803270339966, + 0.02835909090936184, + 0.16634607315063477, + -0.18870027363300323, + 0.034991130232810974, + -0.27091091871261597, + -0.19668790698051453, + -0.0402541346848011, + 0.013429408892989159, + 0.1116127148270607, + 0.005450990982353687, + 0.11936700344085693, + -0.2617207169532776, + -0.26540863513946533, + -0.21895503997802734, + -0.00697906780987978, + 0.43251949548721313, + 0.13050711154937744, + -0.12339681386947632, + 0.09212832152843475, + 0.12126436084508896, + -0.40955519676208496, + -0.4810248017311096, + 0.3085540235042572, + -0.23617903888225555, + 0.18699748814105988, + -0.2609942555427551, + 0.12072405964136124, + 0.3376457989215851, + -0.08947847783565521, + 0.2665684223175049, + 0.4064629077911377, + 0.595430850982666, + 0.1510598510503769, + -0.1242670863866806, + -0.05659446865320206, + -0.1701529175043106, + -0.08453353494405746, + -0.3949616253376007, + 0.12916430830955505, + -0.036906905472278595, + -0.07092710584402084, + 0.013966059312224388, + 0.19560974836349487, + 0.150782972574234, + -0.5805098414421082, + -0.3237167298793793, + 0.49967679381370544, + 0.18696358799934387, + 0.0732409656047821, + 0.12247307598590851, + 0.47614988684654236, + 0.658728301525116, + -0.055910222232341766, + -0.12764811515808105, + -0.09892571717500687, + -0.1056193932890892, + -0.07365167886018753, + 0.031886883080005646, + 0.04897140711545944, + 0.1582757979631424, + -0.11084697395563126, + -0.039983734488487244, + 0.37840741872787476, + -0.13775819540023804, + -0.050096262246370316, + -0.08499650657176971, + 0.06984605640172958, + -0.008826404809951782, + -0.3178556561470032, + 0.3040192127227783, + -0.20485036075115204, + 0.07680967450141907, + 0.29083776473999023, + -0.19122250378131866, + -0.24821750819683075, + 0.23540492355823517, + -0.0535007119178772, + -0.5578641891479492, + 0.3456767797470093, + 0.03510328009724617, + -0.012471387162804604, + 0.3001169264316559, + -0.06599339842796326, + -0.025053720921278, + -0.23139193654060364, + 0.1550685465335846, + -0.024350982159376144, + -0.09205859154462814, + -0.16618546843528748, + -0.016404826194047928, + 0.2525540888309479, + 0.6022517085075378, + 0.08816401660442352, + 0.10629606246948242, + 0.16338548064231873, + -0.2172541618347168, + -0.08184953778982162, + -0.05518527701497078, + 0.16355881094932556, + 0.07710406929254532, + -0.34773483872413635, + -0.3526677191257477, + -0.13999369740486145, + 0.23183484375476837, + 0.1087949126958847, + -0.3482573628425598, + 0.014906858094036579, + 0.08469434082508087, + 0.05313107371330261, + 0.008774049580097198, + 0.47105151414871216, + 0.2699393630027771, + 0.07613404095172882, + 0.5814527273178101, + 0.13844969868659973, + -0.0005095645901747048, + 0.39449113607406616, + -0.12463782727718353, + 0.2951422929763794, + -0.15823331475257874, + -0.35080814361572266, + -0.39777132868766785, + -0.03351239114999771, + -0.13526272773742676, + -0.1285906583070755, + -0.0751277357339859, + -0.14558455348014832, + -0.04340607300400734, + -0.03976156562566757, + 0.2588410973548889, + -0.0009872585069388151, + 0.3498977720737457, + 0.07360564917325974, + 0.5455833673477173, + -0.18349774181842804, + -0.38231438398361206, + 0.13607379794120789, + 0.0570128932595253, + 0.33573341369628906, + -0.21956348419189453, + -0.09788881242275238, + -0.08872657269239426, + 0.4655590057373047, + 0.14583882689476013, + 0.04268839210271835, + -0.005775381810963154, + -0.12465288490056992, + -0.28661924600601196, + -0.4029368758201599, + -0.02991427853703499, + -0.07861411571502686, + -0.10777866840362549, + -0.0660325139760971, + 0.10481926053762436, + -0.17538830637931824, + -0.24541553854942322, + -0.1628335416316986, + 0.3443373441696167, + 0.11073631048202515, + -0.09838424623012543, + 0.14871425926685333, + 0.19977399706840515, + 0.061921097338199615, + 0.1626061350107193, + -0.15568161010742188, + 0.15809091925621033, + 0.049261003732681274, + -0.323628693819046, + -0.17337563633918762, + 0.1320417821407318, + -0.20197324454784393, + 0.07686629146337509, + 0.22195568680763245, + 0.10613276064395905, + 0.07440101355314255, + -0.04423122853040695, + -0.039701320230960846, + 0.13017937541007996, + -0.31522631645202637, + -0.1482960730791092, + 0.354005366563797, + 0.08942903578281403, + 0.5207788944244385, + -0.07138728350400925, + -0.39649564027786255, + -0.1881406307220459, + -0.051238853484392166, + -0.49282771348953247, + 0.1420252025127411, + 0.04195072129368782, + -0.20293235778808594, + -0.0009160101180896163, + -0.06400282680988312, + -0.06789351999759674, + 0.11302666366100311, + 0.1083294004201889, + 0.12636366486549377, + 0.18581880629062653, + -0.04183664172887802, + -0.3641246259212494, + 0.001423469977453351, + -0.16934354603290558, + -0.3309791684150696, + -0.32710108160972595, + 0.5034326314926147, + 0.2902287542819977, + -0.1912984549999237, + -0.1568678319454193, + 0.032605670392513275, + -0.28300338983535767, + -0.39163199067115784, + -0.06383704394102097, + -0.023489903658628464, + 0.4418272376060486, + 0.08311082422733307, + -0.22698771953582764, + 0.1376923769712448, + -0.4899768829345703, + 0.2032603919506073, + 0.2570874094963074, + 0.2502760589122772, + 0.38838991522789, + 0.20617978274822235, + 0.14174334704875946, + 0.35771575570106506, + -0.04101404920220375, + -0.0474872924387455, + 0.3207376003265381, + -0.03652804344892502, + 0.07369537651538849, + -0.08303757011890411, + -0.2517068386077881, + 0.3582306206226349, + -0.24164530634880066, + 0.0818767324090004, + 0.1574096381664276, + 0.42581015825271606, + -0.28995266556739807, + -0.2653692960739136, + 0.08564826846122742, + -0.03156302124261856, + -0.24595478177070618, + -0.2383064329624176, + -0.13157084584236145, + 0.2366458922624588, + -0.20988348126411438, + -0.11875996738672256, + 0.3080471158027649, + 0.2202942818403244, + 0.11700955778360367, + 0.14630641043186188, + -0.1308034211397171, + -0.45798367261886597, + 0.14316794276237488, + 0.3176949918270111, + 0.03274453803896904, + 0.06208207085728645, + -0.02162250317633152, + 0.2123701274394989, + 0.438167005777359, + 0.03665542975068092, + -0.059164345264434814, + -0.030929673463106155, + -0.032955143600702286, + -0.02877996489405632, + 0.0842398852109909, + -0.07172457128763199, + 0.36094698309898376, + -0.4424992501735687, + 0.18416765332221985, + -0.0875607430934906, + -0.17548903822898865, + 0.2712807059288025, + -0.2529817819595337, + -0.5398637652397156, + -0.04372246190905571, + 0.28851327300071716, + -0.18448667228221893, + 0.04821692779660225, + 0.041026897728443146, + 0.590768039226532, + 0.18769490718841553, + -0.18967285752296448, + 0.012890934944152832, + -0.48902541399002075, + 0.0940120592713356, + 0.15024730563163757, + -0.21602514386177063, + 0.08296173065900803, + -0.08159513771533966, + 0.31601592898368835, + 0.26593291759490967, + 0.10108325630426407, + -0.4523289203643799, + -0.008006530813872814, + 0.0958816409111023, + 0.35121482610702515, + -0.24566808342933655, + -10.958778381347656, + 0.1552482694387436, + -0.18667428195476532, + 0.4413946270942688, + -0.18904879689216614, + 0.014782565645873547, + -0.021532554179430008, + -0.2302398681640625, + 0.14519324898719788, + 0.22123464941978455, + -0.18127699196338654, + 0.21586795151233673, + 0.479623943567276, + 0.1667996197938919, + -0.09335207939147949, + -0.2573135197162628, + -0.21420522034168243, + 0.15133711695671082, + 0.10076852887868881, + 0.18418823182582855, + 0.32067394256591797, + 0.5369850993156433, + -0.18111565709114075, + 0.3282756805419922, + 0.19153852760791779, + -0.0699005275964737, + -0.30830711126327515, + 0.47705382108688354, + 0.08514488488435745, + -0.3933911919593811, + 0.3122265636920929, + 0.015570787712931633, + -0.2844651937484741, + -0.08435386419296265, + -0.005672072060406208, + -0.18978936970233917, + -0.13896335661411285, + 0.00787820853292942, + -0.056989885866642, + 0.009688363410532475, + -0.09942108392715454, + -0.19827315211296082, + -0.046481985598802567, + 0.3088589310646057, + -0.08347553014755249, + -0.4935165047645569, + -0.23201560974121094, + -1.3872177600860596, + 0.24801094830036163, + 0.3378968834877014, + 0.42845863103866577, + -0.05316653847694397, + 0.20878544449806213, + 0.028127018362283707, + -0.48170119524002075, + 0.09582778811454773, + -0.3368637263774872, + 0.18246391415596008, + 0.11837492883205414, + -0.025051334872841835, + 0.2739103436470032, + -0.283103883266449, + 0.4177383482456207, + -0.35837915539741516, + -0.3229537606239319, + 0.20335514843463898, + 0.04449812322854996, + -0.0026281073223799467, + -0.1372441202402115, + -0.24562866985797882, + -0.4445008337497711, + -0.11594490706920624, + 0.06675887107849121, + 0.09147355705499649, + 0.37978532910346985, + -0.032876722514629364, + -0.4610574245452881, + 0.008209247142076492, + -0.04638725891709328, + 0.2249755561351776, + 0.05482844263315201, + -0.0340719111263752, + 0.17114558815956116, + -0.19636854529380798, + -0.1131758913397789, + -0.14046898484230042, + 0.09365930408239365, + 0.4669206142425537, + -0.006150448229163885, + 0.15386368334293365, + 0.07898272573947906, + 0.2962016463279724, + 0.006034079007804394, + -0.14803515374660492, + -0.3734908103942871, + 0.0664379820227623, + 0.07693399488925934, + 0.024192025884985924, + 0.13989874720573425, + -0.047955237329006195, + -0.1367001086473465, + -0.26667124032974243, + -0.045901279896497726, + -0.31072068214416504, + -0.35135409235954285, + 0.2985505163669586, + 0.23715749382972717, + 0.19511640071868896, + 0.1346515566110611, + 0.045594412833452225, + 0.19078651070594788, + 0.011736370623111725, + 0.4168233871459961, + 0.46678799390792847, + 0.10142551362514496, + -0.15040293335914612, + -0.29881346225738525, + 0.03443441540002823, + -0.3443596363067627, + 0.09844528138637543, + 0.200627401471138, + -0.15900373458862305, + 0.3771199584007263, + 0.5476076602935791, + -0.1625971645116806, + -0.08211658895015717, + 1.0174540281295776, + -0.1810964047908783, + 0.518316388130188, + -0.243841290473938, + 0.382476270198822, + -0.16473765671253204, + -0.12902195751667023, + 0.008411785587668419, + 0.21668043732643127, + -0.37741798162460327, + 0.3656461238861084, + 0.03293965011835098, + -0.36173003911972046, + 0.132867693901062, + -0.37806540727615356, + 0.43903571367263794, + 0.370775431394577, + 0.23582184314727783, + -0.15002946555614471, + -0.389586865901947, + -0.1460159420967102, + -0.01017976738512516, + -0.36394616961479187, + -0.28960341215133667, + -0.011743366718292236, + -0.026663970202207565, + 0.0770261138677597, + -0.29801955819129944, + 0.340511679649353, + -0.011794021353125572, + -0.03801155835390091, + -0.28990668058395386, + -0.4511684477329254, + -0.06559505313634872, + 0.2513965666294098, + 0.5489107370376587, + 0.19864584505558014, + 0.04395604878664017, + -0.2080826312303543, + 0.2761658728122711, + 0.09557073563337326, + 0.2297014743089676, + 0.15037715435028076, + -0.008760035037994385, + -0.44482526183128357, + 0.016140419989824295, + 0.06326471269130707, + -0.3390626311302185, + -0.23110362887382507, + -0.3911399245262146, + 0.2593574523925781, + -0.09236723184585571, + -0.2182852029800415, + 0.4117717146873474, + 0.31265297532081604, + -0.015294261276721954, + 0.03804130479693413, + -0.2940312325954437, + 0.3178632855415344, + 0.08148939907550812, + 0.06908852607011795, + 0.2116161584854126, + -0.13141874969005585, + -0.41269150376319885, + -0.4795854091644287, + 0.3196330666542053, + -0.1977824866771698, + -0.06255056709051132, + 0.22282274067401886, + 0.26462727785110474, + -0.3254283368587494, + -0.036457810550928116, + -0.205780029296875, + -0.09411490708589554, + -0.2870650887489319, + 0.034763045608997345, + 0.24220585823059082, + -0.3924984931945801, + 0.04178700968623161, + -0.20928111672401428, + 0.21435411274433136, + -0.0046385168097913265, + -0.4735918939113617, + 0.2721315026283264, + -0.15266039967536926 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_082.json b/src/benchmark/output/results/results_graph_082.json new file mode 100644 index 0000000..b99f13c --- /dev/null +++ b/src/benchmark/output/results/results_graph_082.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is an adult with unknown age, sex, and ethnicity. The patient's demographic information is not provided in the data.\n\n**Initial Presentation:**\nThe patient presented with symptoms of intracranial hypertension, including nausea and vomiting (Step 1). This was the initial presentation that led to further investigation.\n\n**Diagnosis:**\nFurther investigation revealed brain MRI suggesting leptomeningeal metastases (Step 2). Lumbar puncture was performed, and cerebrospinal fluid cytology confirmed leptomeningeal metastases (Step 3).\n\n**Treatment:**\nThe patient received treatment for the diagnosed condition. The treatment sequence included initial monotherapy with Olaparib, followed by combination therapy with intrathecal chemotherapy, and eventually a triple combination of Olaparib, Furmonertinib, and intrathecal chemotherapy (Step 5). Intrathecal pemetrexed was administered since October 2021 (Step 8).\n\n**Progression:**\nSymptoms of leptomeningeal metastases worsened dramatically, including lethargy, unresponsiveness, difficulty in eating and swallowing, necessitating intravenous nutritional support. The patient's ECOG performance status declined to 4 (Step 9). This marked a significant progression of the disease.\n\n**Outcome:**\nThe patient experienced a durable response to Olaparib lasting approximately 21 months (Step 6). However, the worsening of leptomeningeal metastases symptoms and decline in functional status necessitated further treatment adjustments.\n\n**Timeline:**\n\n* Step 1: Initial presentation with intracranial hypertension symptoms\n* Step 2: Diagnosis of leptomeningeal metastases confirmed by brain MRI\n* Step 3: Lumbar puncture performed, and cerebrospinal fluid cytology confirmed leptomeningeal metastases\n* Step 4: Placement of Ommaya reservoir for treatment delivery\n* Step 5: Identification of EGFR and BRCA2 mutations\n* Step 6: Initiation of Olaparib therapy with durable response lasting approximately 21 months\n* Step 7: Treatment escalation to combination therapy with intrathecal chemotherapy\n* Step 8: Administration of intrathecal pemetrexed since October 2021\n* Step 9: Worsening of leptomeningeal metastases symptoms and decline in functional status\n\n**Conclusion:**\nThe patient was diagnosed with leptomeningeal metastases and received treatment with Olaparib, Furmonertinib, and intrathecal chemotherapy. The patient experienced a durable response to Olaparib but ultimately required further treatment adjustments due to worsening of symptoms and decline in functional status.", + "bertscore": { + "precision": [ + 0.5512253046035767 + ], + "recall": [ + 0.5020527839660645 + ], + "f1": [ + 0.5254911780357361 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 9, + "edge_count": 8, + "avg_in_degree": 0.8888888888888888, + "density": 0.1111111111111111 + }, + "trajectory_embedding": [ + 0.2321387678384781, + 0.21690434217453003, + -0.13298587501049042, + 0.17195039987564087, + 0.08285973221063614, + 0.15777303278446198, + 0.1095961406826973, + 0.3161073923110962, + 0.6317851543426514, + -0.3226621448993683, + -0.16632980108261108, + -0.09433408826589584, + -0.4814378321170807, + -0.1313047707080841, + -0.1984696239233017, + 0.20387743413448334, + -0.17162606120109558, + 0.3204534351825714, + -0.1586170792579651, + -0.26370200514793396, + -0.2706388831138611, + 0.18940262496471405, + -0.5221731662750244, + 0.04878344386816025, + 0.2266974151134491, + -0.012427234090864658, + 0.4797787666320801, + 0.46920332312583923, + 0.14035525918006897, + 0.3257744312286377, + 0.24380451440811157, + -0.166899636387825, + 0.2893010377883911, + -0.039560362696647644, + -0.2734023630619049, + 0.23752985894680023, + 0.20651304721832275, + 0.3188893496990204, + -0.20043008029460907, + -0.11706345528364182, + -0.18332546949386597, + 0.17445293068885803, + 0.7743752002716064, + 0.08205122500658035, + 0.23915736377239227, + -0.7428591251373291, + -0.04924800619482994, + 0.7199587225914001, + -0.38477906584739685, + -0.21090008318424225, + 0.104608453810215, + 0.6532189249992371, + 0.5980007648468018, + -0.4038098454475403, + 0.37096863985061646, + -0.13066591322422028, + -0.23341801762580872, + -0.27571526169776917, + -0.03005458228290081, + 0.0269158948212862, + 0.10931164771318436, + -0.3425520658493042, + 0.53485506772995, + -0.14938877522945404, + -0.055554598569869995, + -0.19759920239448547, + -0.38475221395492554, + 0.13391579687595367, + 0.03170972689986229, + -0.23532690107822418, + -0.14053985476493835, + -0.17415179312229156, + -0.1328158974647522, + 0.0783407986164093, + 0.06725612282752991, + -0.14941972494125366, + 0.36957287788391113, + -0.09880896657705307, + 0.2859645485877991, + 0.13756534457206726, + -0.07493588328361511, + -0.2673470079898834, + -0.13783973455429077, + 0.3599308133125305, + -0.37491944432258606, + 0.026016056537628174, + -0.09932079166173935, + -0.2914217710494995, + -0.45115673542022705, + 0.1520828902721405, + 0.18869808316230774, + -0.4931562840938568, + -0.010296214371919632, + -0.14578579366207123, + -0.24964986741542816, + 0.3410227596759796, + 0.5356318950653076, + 0.22401346266269684, + 0.8752002120018005, + 0.034442733973264694, + 0.18533559143543243, + -0.011364172212779522, + 0.23873403668403625, + 0.11654799431562424, + 0.3551432490348816, + -0.07367101311683655, + 0.24003073573112488, + -0.39562472701072693, + 0.45079168677330017, + 0.5177969932556152, + 0.05184287205338478, + -0.2172677367925644, + -0.02474474161863327, + -0.24100174009799957, + 0.21692360937595367, + 0.09887711703777313, + -0.005903956014662981, + 0.23158147931098938, + 0.39525362849235535, + -0.4927232563495636, + -0.20930692553520203, + -0.1525554060935974, + 0.2340666949748993, + 0.2894437611103058, + -0.4364595115184784, + -0.15432722866535187, + 0.012784999795258045, + -0.10396796464920044, + 0.14257001876831055, + 0.06437940150499344, + -0.54007488489151, + -0.17571592330932617, + -0.1029973030090332, + -0.0035306746140122414, + -0.022652549669146538, + 0.2993495464324951, + -0.29680120944976807, + -0.07497605681419373, + -1.0333720445632935, + 0.1574767529964447, + -0.3388834595680237, + -0.02164190076291561, + -0.02024262398481369, + -0.5749215483665466, + -0.1911149024963379, + -0.11968222260475159, + -0.047109559178352356, + 0.20656737685203552, + -0.15078364312648773, + 0.07706673443317413, + 0.17380134761333466, + -0.027967853471636772, + 0.17246288061141968, + 0.6322152614593506, + -0.09429371356964111, + -0.09425117820501328, + -0.1005435660481453, + 0.27780574560165405, + -0.02411803789436817, + -0.2806572914123535, + 0.11907589435577393, + 0.5754642486572266, + 0.1282690167427063, + 0.13690246641635895, + -0.045188870280981064, + -0.6606748104095459, + -0.11796616017818451, + -0.13776057958602905, + -0.03081599622964859, + 0.023025982081890106, + -0.16415655612945557, + 0.12419463694095612, + -0.31898191571235657, + 0.5249547958374023, + 0.11519262194633484, + 0.39006736874580383, + -0.028930269181728363, + -0.03873676061630249, + 0.06621502339839935, + 0.14232784509658813, + 0.10392218828201294, + -0.28737324476242065, + 0.5815380811691284, + 0.20524661242961884, + -0.29482993483543396, + 0.08055707067251205, + 0.32685232162475586, + 0.05138382688164711, + -0.16821101307868958, + 0.048467013984918594, + 0.45445358753204346, + -0.33213892579078674, + 0.5481976270675659, + -0.20597487688064575, + -0.05492265522480011, + 0.1342029720544815, + -0.11118301004171371, + -0.008268975652754307, + -0.1078718900680542, + -0.17228849232196808, + 0.2439231276512146, + -0.03028308041393757, + -0.5018696188926697, + 0.08192877471446991, + 0.08865136653184891, + -0.03930472955107689, + 0.1779671311378479, + -0.06625604629516602, + 0.12665000557899475, + 0.05694756284356117, + -0.1731923222541809, + 0.18595761060714722, + -0.07877565920352936, + 0.2311263382434845, + 0.07620473951101303, + -0.3849235773086548, + 0.06372036039829254, + 0.029910210520029068, + -0.13833646476268768, + 0.02667236328125, + 0.0593525692820549, + -0.30689704418182373, + -0.18334664404392242, + 0.026143252849578857, + -0.6388230919837952, + 0.24061448872089386, + 0.1562442034482956, + 0.26038965582847595, + 0.20493437349796295, + -0.009966228157281876, + -0.08852796256542206, + -0.4373973608016968, + 0.4033311605453491, + -0.16011632978916168, + -0.21156269311904907, + -0.3021657466888428, + 0.2776225209236145, + 0.03329296410083771, + 0.18332570791244507, + 0.34908783435821533, + 0.16412930190563202, + -0.07226170599460602, + 0.1213294267654419, + -0.25061866641044617, + -0.08447900414466858, + -0.32366758584976196, + -0.11545757204294205, + 0.3661389648914337, + 0.11831837147474289, + 0.19863973557949066, + 0.001830534776672721, + -0.13246409595012665, + 0.14408306777477264, + -0.18451009690761566, + -0.4749658405780792, + -0.3416128158569336, + -0.06011711061000824, + -0.15638624131679535, + -0.8905529379844666, + 0.22990383207798004, + 0.020609809085726738, + -0.024256084114313126, + 0.14438456296920776, + -0.28529852628707886, + -0.18133389949798584, + 0.0453091524541378, + 0.04394715279340744, + 0.14778703451156616, + -0.32560867071151733, + -0.05184074118733406, + -0.28681889176368713, + -0.16530412435531616, + -0.23358552157878876, + -0.04699363932013512, + -0.04604334756731987, + 0.051691509783267975, + -0.3244750201702118, + 0.05386499688029289, + 0.07786382734775543, + -0.4206526577472687, + -0.031742751598358154, + 0.14321258664131165, + -0.0832904577255249, + 0.23582638800144196, + -0.03683333471417427, + 0.3062823414802551, + 0.31336551904678345, + 0.23778918385505676, + 0.06658102571964264, + 0.3627845048904419, + 0.4264376759529114, + -0.15716463327407837, + 0.11602798849344254, + -0.04199300706386566, + -0.05781729891896248, + 0.012952449731528759, + -0.38692814111709595, + 0.4496104419231415, + 0.04763583466410637, + 0.07640346884727478, + 0.02134767174720764, + 0.2263142466545105, + 0.1556829810142517, + -0.16154444217681885, + 0.0879870355129242, + 0.5677972435951233, + 0.1101783886551857, + 0.30650851130485535, + 0.18602149188518524, + 0.04206172004342079, + 0.34498462080955505, + -0.12158749997615814, + 0.07475732266902924, + 0.31590956449508667, + -0.21387511491775513, + -0.20883548259735107, + 0.04570867121219635, + 0.205436110496521, + 0.5456217527389526, + -0.0827566385269165, + -0.2823386490345001, + 0.010433991439640522, + -0.14818599820137024, + -0.1322748363018036, + -0.47767373919487, + -0.23828785121440887, + 0.14657515287399292, + -0.13094621896743774, + 0.4211950898170471, + 0.1552550494670868, + 0.10307934880256653, + 0.3924437165260315, + -0.45007970929145813, + -0.19524931907653809, + 0.19637852907180786, + -0.047715358436107635, + -0.4149458706378937, + 0.451761931180954, + -0.17692174017429352, + 0.02953188866376877, + 0.3396036624908447, + -0.4550575613975525, + -0.07222536206245422, + 0.02670855075120926, + 0.40141984820365906, + -0.12473922222852707, + 0.07626936584711075, + -0.13415251672267914, + 0.14785300195217133, + 0.06645035743713379, + 0.4957325756549835, + 0.09699738770723343, + 0.1702929139137268, + 0.6872706413269043, + 0.2829357087612152, + -0.37930476665496826, + 0.16456690430641174, + -0.21405503153800964, + 0.45002686977386475, + -0.08109534531831741, + -0.11027415096759796, + -0.15749409794807434, + 0.15757714211940765, + 0.019468694925308228, + -0.48191970586776733, + 0.09577587991952896, + 0.07073184847831726, + 0.06660737842321396, + -0.16472572088241577, + 0.3091772794723511, + 0.14397937059402466, + -0.12026418745517731, + 0.46035417914390564, + 0.054952144622802734, + -0.15828627347946167, + 0.2548198997974396, + -0.13573810458183289, + 0.13682134449481964, + 0.07672722637653351, + -0.17120599746704102, + -0.2893878221511841, + 0.10519368201494217, + -0.1633196324110031, + -0.22734321653842926, + 0.053368985652923584, + -0.23477374017238617, + 0.062383487820625305, + -0.3238946795463562, + 0.09247392416000366, + -0.06669403612613678, + 0.10342297703027725, + 0.13959965109825134, + 0.2993307113647461, + 0.004876384977251291, + -0.18322616815567017, + 0.22953064739704132, + -0.011212851852178574, + -0.01644531637430191, + -0.28216344118118286, + -0.05244489386677742, + -0.058612242341041565, + 0.6431324481964111, + 0.030544890090823174, + 0.010394719429314137, + 0.2178286761045456, + 0.012134628370404243, + -0.08820930868387222, + -0.33631378412246704, + -0.08642658591270447, + -0.11868887394666672, + 0.020618580281734467, + 0.07078506797552109, + -0.0023657067213207483, + -0.3366517722606659, + -0.14392493665218353, + -0.10517843067646027, + -0.060641784220933914, + 0.11253045499324799, + -0.04649192467331886, + -0.19923169910907745, + 0.27346646785736084, + 0.14290545880794525, + 0.3880687952041626, + -0.3179642856121063, + 0.27915796637535095, + 0.10038072615861893, + -0.291927307844162, + 0.05368734523653984, + -0.14396235346794128, + -0.383564829826355, + -0.1171511560678482, + 0.25667038559913635, + 0.2647196054458618, + -0.0411415696144104, + 0.0007586147985421121, + 0.13765031099319458, + 0.1668073982000351, + -0.34136539697647095, + 0.011783978901803493, + 0.33728066086769104, + 0.17744360864162445, + 0.30899062752723694, + 0.12631087005138397, + -0.5341705679893494, + -0.25394147634506226, + -0.13240300118923187, + -0.3269209563732147, + -0.05184200033545494, + 0.27806732058525085, + 0.045400749891996384, + -0.1800965517759323, + 0.11188173294067383, + -0.013657874427735806, + -0.12463458627462387, + 0.32984834909439087, + -0.09468552470207214, + 0.07819320261478424, + 0.0869336947798729, + -0.22058668732643127, + -0.12792256474494934, + -0.20716820657253265, + -0.3093138039112091, + -0.14032422006130219, + 0.08779124170541763, + 0.13037796318531036, + -0.3301854729652405, + 0.0773443803191185, + 0.00472302408888936, + -0.1841503232717514, + -0.09534855931997299, + 0.05773405358195305, + -0.3082595765590668, + 0.34907206892967224, + -0.23738959431648254, + -0.13617658615112305, + 0.07774610072374344, + -0.038083698600530624, + -0.0013292464427649975, + 0.14366605877876282, + 0.03989304602146149, + 0.3381859064102173, + -0.02312176674604416, + -0.03592868521809578, + 0.5784341096878052, + 0.002856857143342495, + 0.09285192936658859, + 0.3872937560081482, + -0.001762257656082511, + -0.011352344416081905, + -0.3454091250896454, + -0.08830562233924866, + 0.2688091993331909, + -0.3937688171863556, + -0.1547664999961853, + 0.2360529899597168, + 0.1644863337278366, + -0.366330087184906, + -0.2524883449077606, + 0.04515808820724487, + 0.15509448945522308, + -0.05118100345134735, + -0.23098145425319672, + -0.22032088041305542, + -0.13884803652763367, + -0.33781468868255615, + -0.04727704077959061, + 0.1854231059551239, + 0.5394228100776672, + 0.26924407482147217, + 0.15057611465454102, + -0.2702326476573944, + -0.31062379479408264, + 0.2722208499908447, + 0.22035004198551178, + -0.0005014737253077328, + -0.09706941992044449, + -0.12292631715536118, + 0.31272122263908386, + 0.4056403934955597, + 0.004784887656569481, + 0.07021554559469223, + -0.00920903030782938, + -0.0025348695926368237, + 0.2611406147480011, + 0.08256866782903671, + -0.13606837391853333, + -0.13522565364837646, + -0.4217262268066406, + 0.10415171831846237, + -0.23307807743549347, + -0.013455821201205254, + 0.2885885536670685, + -0.17584316432476044, + -0.42027533054351807, + -0.23820948600769043, + 0.12738609313964844, + -0.12776951491832733, + -0.22976602613925934, + 0.2175300419330597, + 0.2923091650009155, + -0.027978884056210518, + -0.2355097383260727, + 0.084128737449646, + -0.5166695713996887, + -0.27374500036239624, + 0.14655576646327972, + -0.10041996836662292, + -0.15411797165870667, + 0.16691254079341888, + 0.49046623706817627, + 0.5081236362457275, + 0.3668432831764221, + -0.03867127373814583, + 0.24752452969551086, + 0.47423839569091797, + 0.14317506551742554, + -0.2944289743900299, + -10.631757736206055, + -0.2818010151386261, + -0.3864808678627014, + 0.4553855359554291, + -0.19379466772079468, + 0.2052370011806488, + 0.168780118227005, + 0.0364110991358757, + 0.05919337272644043, + 0.17168232798576355, + -0.23531948029994965, + -0.09358493983745575, + 0.21714836359024048, + 0.2679533362388611, + 0.060544710606336594, + 0.16310544312000275, + -0.25817885994911194, + 0.2215142399072647, + 0.031212469562888145, + 0.19881606101989746, + 0.1721988320350647, + 0.3598853349685669, + -0.34235119819641113, + -0.024493694305419922, + -0.06684365123510361, + -0.47014182806015015, + -0.2812480926513672, + 0.577009379863739, + 0.2917526066303253, + -0.32079169154167175, + 0.14594666659832, + 0.02999969944357872, + -0.11495484411716461, + 0.1479996144771576, + -0.1859096735715866, + -0.1440247893333435, + 0.08844348788261414, + 0.14632636308670044, + 0.3039114773273468, + -0.21414700150489807, + -0.035678111016750336, + -0.1619841307401657, + 0.542740523815155, + 0.11129900813102722, + -0.1361662894487381, + -0.6265772581100464, + -0.10762642323970795, + -1.586214542388916, + 0.22535377740859985, + 0.3370453119277954, + 0.3630971610546112, + 0.017277916893363, + 0.16997119784355164, + 0.2970481812953949, + -0.2863675653934479, + -0.09070087969303131, + -0.3245711326599121, + -0.17036210000514984, + 0.09089178591966629, + 0.034436870366334915, + 0.04545089974999428, + 0.04821470379829407, + 0.6345454454421997, + -0.01801607944071293, + -0.3150767385959625, + 0.0033678512554615736, + 0.050667133182287216, + -0.15084002912044525, + -0.4053443372249603, + -0.8430637121200562, + -0.5011838674545288, + 0.16758982837200165, + -0.22735364735126495, + -0.005851810332387686, + 0.30466359853744507, + -0.040600962936878204, + -0.220428466796875, + 0.2093040645122528, + 0.06979170441627502, + 0.31074777245521545, + 0.30342620611190796, + -0.0910220518708229, + 0.12728898227214813, + -0.23590905964374542, + -0.10734794288873672, + -0.1695782095193863, + 0.10591688752174377, + 0.43223294615745544, + -0.07740572094917297, + -0.03770512714982033, + -0.03582062944769859, + 0.37483203411102295, + 0.04280416667461395, + -0.255462110042572, + -0.4393678605556488, + -0.1026136726140976, + -0.12031462788581848, + 0.076639823615551, + -0.13782864809036255, + -0.10623966157436371, + -0.27569693326950073, + 0.2096911370754242, + -0.09535878896713257, + -0.554919958114624, + -0.5102830529212952, + 0.30822068452835083, + 0.1912926882505417, + 0.15552419424057007, + -0.08358710259199142, + -0.10051129013299942, + -0.3204978108406067, + 0.06001042574644089, + 0.2150786966085434, + 0.5051499009132385, + 0.2972399890422821, + 0.027854375541210175, + 0.08186627924442291, + -0.4291151762008667, + -0.0931725800037384, + -0.007657515350729227, + 0.44667428731918335, + -0.13754865527153015, + 0.2592223882675171, + 0.536423921585083, + 0.0962003767490387, + 0.023301294073462486, + 0.9212788343429565, + -0.39629092812538147, + 0.19233106076717377, + -0.04788224399089813, + 0.18568867444992065, + 0.04461859166622162, + -0.3250897526741028, + 0.11561822891235352, + 0.364041805267334, + -0.22004809975624084, + 0.7561180591583252, + 0.23171043395996094, + -0.2801209092140198, + -0.16614894568920135, + -0.2618262469768524, + 0.46047741174697876, + 0.2417742908000946, + 0.26555320620536804, + -0.13289065659046173, + -0.35023191571235657, + -0.36880290508270264, + 0.19024498760700226, + -0.2407190501689911, + -0.36503836512565613, + -0.1264965534210205, + 0.16437700390815735, + 0.05736566334962845, + -0.1523239016532898, + 0.31289270520210266, + 0.1528562307357788, + -0.03355671837925911, + -0.388112872838974, + -0.33602967858314514, + -0.007928472012281418, + -0.045889709144830704, + 0.8703497052192688, + 0.03483293578028679, + -0.12403137236833572, + 0.07724124193191528, + 0.08030906319618225, + -0.25038960576057434, + 0.1512015461921692, + 0.08295877277851105, + -0.04976833984255791, + -0.35190582275390625, + 0.37512296438217163, + 0.29316821694374084, + -0.3186149597167969, + -0.15285086631774902, + -0.025367949157953262, + -0.16865375638008118, + 0.12750601768493652, + -0.15825150907039642, + 0.08292225748300552, + 0.26774707436561584, + -0.08840743452310562, + 0.18017369508743286, + -0.25282108783721924, + -0.1617632508277893, + 0.2665254771709442, + 0.4379822015762329, + -0.1048988550901413, + -0.3064426779747009, + -0.2075449824333191, + -0.6304585933685303, + 0.21913324296474457, + -0.5015811920166016, + -0.13603900372982025, + 0.2886706590652466, + 0.06571177393198013, + -0.13607226312160492, + 0.2888460159301758, + -0.06789909303188324, + -0.009701043367385864, + -0.15322525799274445, + 0.330121248960495, + 0.5146291255950928, + -0.1813237965106964, + 0.4062785506248474, + -0.07947606593370438, + 0.15124733746051788, + 0.14450810849666595, + -0.1734965592622757, + 0.17997059226036072, + -0.2985161244869232 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_083.json b/src/benchmark/output/results/results_graph_083.json new file mode 100644 index 0000000..7843838 --- /dev/null +++ b/src/benchmark/output/results/results_graph_083.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "The patient in question is a female who was diagnosed with pulmonary adenocarcinoma, a type of lung cancer. Unfortunately, the patient also had bilateral scattered breast metastases, which made her diagnosis even more complex.\n\nThe patient's journey began when she experienced persistent coughing for one month, which led to a chest CT scan that revealed a 3.1 cm right lower lobe tumor, lymphadenopathy, right pleural effusion, pericardial effusion, and scattered nodules in both breasts. Her CA19-9 level was also elevated at 282 U/mL.\n\nFollowing this initial diagnosis, the patient underwent further testing, including molecular analysis that detected an EML4-ALK fusion gene. This led to a biopsy of her bilateral breast tumors, which revealed adenocarcinoma derived from the lungs or breasts.\n\nThe patient's treatment plan began with oral medication, specifically alectinib (600 mg once daily), which was initiated in response to changes in her lab results and imaging findings. The goal of this treatment was to target the ALK rearrangement present in her cancer cells.\n\nOver time, the patient experienced significant reductions in tumor size, particularly in her breast metastases, which nearly disappeared after a maximum size of 4 mm. Her pleural effusion also resolved, and her CA19-9 level decreased from 282 U/mL to 3.7 U/mL.\n\nSix months after starting treatment with alectinib, the patient underwent another CT scan that showed further tumor shrinkage in her lower right lobe and resolution of her pleural effusion. This marked a significant milestone in her treatment journey, indicating that the medication was effective in controlling her cancer.\n\nThe patient's ongoing treatment with alectinib has been accompanied by regular monitoring of her lab results and imaging findings. Her CA19-9 level remains decreased, and she continues to experience no evidence of recurrence. The resolution of shadows in both breasts on CT scans also suggests that the medication is effective in controlling her breast metastases.\n\nThroughout this journey, the patient's treatment plan has been tailored to address changes in her lab results and imaging findings. Her care team has closely monitored her response to treatment and made adjustments as needed to ensure she receives the most effective therapy possible.\n\nThe patient's story highlights the importance of early detection and targeted therapies in managing complex cancers like pulmonary adenocarcinoma with bilateral breast metastases. With ongoing treatment and close monitoring, this patient is able to manage her disease effectively and maintain a good quality of life.", + "bertscore": { + "precision": [ + 0.6228880882263184 + ], + "recall": [ + 0.5976125597953796 + ], + "f1": [ + 0.6099885702133179 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 9, + "edge_count": 8, + "avg_in_degree": 0.8888888888888888, + "density": 0.1111111111111111 + }, + "trajectory_embedding": [ + 0.2193172574043274, + 0.17341764271259308, + -0.28511232137680054, + 0.06250262260437012, + -0.2072673738002777, + -0.09170977771282196, + 0.21316777169704437, + 0.09700273722410202, + 0.22861331701278687, + -0.39751580357551575, + -0.20688259601593018, + 0.24647818505764008, + -0.7876354455947876, + -0.08496146649122238, + -0.4245613217353821, + 0.042675264179706573, + 0.13037434220314026, + 0.3195406198501587, + 0.007097967900335789, + -0.06185638904571533, + -0.3291245698928833, + 0.08830224722623825, + -0.28795498609542847, + -0.13097253441810608, + 0.1481899619102478, + -0.051646046340465546, + 0.1770193725824356, + 0.33995765447616577, + 0.21001891791820526, + 0.3241358697414398, + 0.2816936671733856, + 0.1976308822631836, + -0.30170315504074097, + 0.1416916698217392, + -0.1417221873998642, + 0.4162662625312805, + 0.31973186135292053, + 0.2899562120437622, + 0.04972304776310921, + -0.013929390348494053, + -0.05456293746829033, + 0.06672843545675278, + 0.8981493711471558, + 0.2677645683288574, + 0.4808398485183716, + -0.6477398872375488, + 0.009324373677372932, + 0.45919978618621826, + -0.5163214802742004, + -0.03917774558067322, + 0.16357848048210144, + 0.6279237270355225, + 0.7669098377227783, + -0.011995368637144566, + 0.49942874908447266, + 0.029697895050048828, + -0.518153727054596, + -0.10455898195505142, + -0.29109132289886475, + 0.038822609931230545, + 0.042515307664871216, + -0.0003774323267862201, + 0.04209442436695099, + 0.019098063930869102, + -0.29458752274513245, + -0.23534557223320007, + -0.12419717758893967, + 0.06067701056599617, + -0.04285213723778725, + -0.4138307571411133, + -0.3206578493118286, + -0.23422983288764954, + -0.04627592861652374, + 0.17275558412075043, + 0.14260262250900269, + -0.23018357157707214, + 0.24538040161132812, + 0.03944532200694084, + -0.04020833969116211, + 0.01949884742498398, + 0.17680314183235168, + 0.10935810208320618, + 0.16297897696495056, + 0.13017888367176056, + -0.3352700471878052, + 0.2769213616847992, + 0.017931334674358368, + -0.020605795085430145, + -0.2246519774198532, + 0.2702779173851013, + 0.18865284323692322, + -0.15714794397354126, + 0.08521824330091476, + -0.08288058638572693, + 0.18818387389183044, + 0.005460606887936592, + 0.22684799134731293, + 0.33946195244789124, + 1.0049254894256592, + 0.03566885367035866, + 0.1642642319202423, + 0.13746193051338196, + 0.1778484433889389, + -0.038058724254369736, + 0.4669243395328522, + -0.13216114044189453, + 0.2191735804080963, + -0.5107672214508057, + -0.07252109050750732, + 0.5644509792327881, + 0.0356656089425087, + -0.19383975863456726, + 0.15296228229999542, + -0.33836475014686584, + -0.09636162966489792, + -0.08558085560798645, + -0.22046856582164764, + 0.2352834790945053, + 0.06598210334777832, + -0.38275542855262756, + -0.11043596267700195, + -0.056128375232219696, + 0.3649280369281769, + 0.3722330927848816, + -0.4512997269630432, + -0.1124267578125, + -0.1987336277961731, + 0.24901559948921204, + 0.10440297424793243, + 0.15296711027622223, + -0.43688008189201355, + -0.1655939221382141, + -0.10475796461105347, + 0.2664153277873993, + -0.10558024793863297, + 0.3577464520931244, + -0.46729278564453125, + 0.1354590654373169, + -1.1269136667251587, + 0.10281328111886978, + -0.25857341289520264, + -0.039214830845594406, + 0.01985992304980755, + -0.420420378446579, + -0.17317254841327667, + -0.029812991619110107, + -0.1816175878047943, + 0.0835840180516243, + 0.03755830228328705, + -0.030437886714935303, + -0.2541024684906006, + 0.08771301805973053, + 0.14583104848861694, + 0.1727365404367447, + 0.17266422510147095, + 0.21967047452926636, + 0.12396648526191711, + 0.3350101709365845, + 0.20927971601486206, + -0.1707753986120224, + -0.011440124362707138, + 0.23800979554653168, + -0.18223731219768524, + -0.21748945116996765, + 0.13318949937820435, + -0.5990513563156128, + 0.293417364358902, + -0.30620303750038147, + 0.3866226375102997, + 0.12063738703727722, + -0.18473947048187256, + 0.06226066127419472, + -0.113283172249794, + 0.4598020017147064, + 0.274108350276947, + 0.5173359513282776, + -0.015038914047181606, + -0.04920041933655739, + 0.24200187623500824, + 0.02553440071642399, + 0.06932118535041809, + 0.07090914249420166, + 0.4447425603866577, + 0.14036160707473755, + -0.4176277220249176, + 0.19814914464950562, + 0.4169497489929199, + -0.13446280360221863, + -0.16877523064613342, + -0.137624591588974, + 0.4648233950138092, + -0.18935053050518036, + 0.3109728693962097, + -0.3810490667819977, + 0.1150435358285904, + 0.0378216877579689, + -0.46325191855430603, + -0.1722792536020279, + 0.18215717375278473, + -0.18846376240253448, + 0.15793795883655548, + 0.30337655544281006, + -0.2958439886569977, + 0.2588549256324768, + 0.2340385615825653, + -0.1845272332429886, + 0.19256797432899475, + 0.1392907202243805, + -0.08383635431528091, + -0.2555416524410248, + -0.24795784056186676, + 0.2323862463235855, + 0.010455415584146976, + 0.23733070492744446, + 0.07569601386785507, + -0.30559369921684265, + 0.12991249561309814, + -0.02891336940228939, + -0.1760808527469635, + 0.13434618711471558, + -0.003512442111968994, + -0.05959821492433548, + 0.3650680184364319, + 0.040111031383275986, + -0.38967713713645935, + 0.284719854593277, + 0.3171132802963257, + 0.1914340853691101, + 0.0965704619884491, + -0.06057102233171463, + 0.0272719357162714, + -0.2645259499549866, + 0.4147334098815918, + -0.12598779797554016, + -0.24381868541240692, + -0.2145218700170517, + 0.15216833353042603, + -0.14452552795410156, + -0.26827114820480347, + 0.4451773464679718, + -0.2046043574810028, + -0.1618407964706421, + 0.08300843834877014, + -0.26607000827789307, + 0.06625691056251526, + -0.20435793697834015, + 0.08357761800289154, + 0.4022212624549866, + 0.17195101082324982, + 0.3270953595638275, + 0.13476631045341492, + -0.09876170754432678, + 0.21264618635177612, + -0.3267713487148285, + -0.15537048876285553, + -0.42723917961120605, + -0.1938534826040268, + -0.2590172290802002, + -0.34887754917144775, + -0.09919620305299759, + 0.07475627958774567, + -0.24508190155029297, + 0.15362176299095154, + -0.2808030843734741, + -0.22725065052509308, + -0.1753782033920288, + -0.12027212232351303, + 0.19499555230140686, + -0.21417531371116638, + 0.17526914179325104, + -0.2852827310562134, + -0.2413906753063202, + -0.18082237243652344, + 0.02863461524248123, + 0.3581337034702301, + 0.11168178170919418, + -0.1019541397690773, + 0.1990528702735901, + 0.18814653158187866, + -0.42043620347976685, + -0.36710163950920105, + 0.008662023581564426, + -0.41699889302253723, + 0.2919245660305023, + -0.15612418949604034, + 0.23436599969863892, + 0.39810293912887573, + -0.03234267979860306, + 0.26709169149398804, + 0.25214195251464844, + 0.6004104614257812, + 0.13092510402202606, + -0.09322766959667206, + -0.047025978565216064, + -0.08355911821126938, + -0.03889412432909012, + -0.37668052315711975, + 0.2019501030445099, + -0.18000297248363495, + -0.03977978602051735, + 0.12510095536708832, + 0.11070981621742249, + 0.14181947708129883, + -0.3857370615005493, + -0.23421332240104675, + 0.5945428013801575, + 0.2224145233631134, + -0.0033896954264491796, + 0.054173242300748825, + 0.3329193592071533, + 0.6687978506088257, + -0.0961143895983696, + -0.2415502667427063, + 0.053152844309806824, + -0.29762133955955505, + -0.1189197450876236, + -0.16989336907863617, + -0.0532522052526474, + 0.28613898158073425, + -0.03204391151666641, + -0.07334976643323898, + 0.344136506319046, + -0.14214962720870972, + -0.21568407118320465, + -0.10064389556646347, + 0.09626413136720657, + -0.022583233192563057, + -0.18990029394626617, + 0.3080032467842102, + -0.2644185721874237, + -0.09839802235364914, + 0.38935768604278564, + -0.15787369012832642, + -0.32841408252716064, + 0.10613631457090378, + 0.008077857084572315, + -0.42763927578926086, + 0.4291302561759949, + -0.2778439223766327, + 0.0035980110988020897, + 0.2606796324253082, + -0.15766073763370514, + -0.044627558439970016, + -0.10153783857822418, + 0.19454540312290192, + 0.14321058988571167, + -0.06312190741300583, + -0.10101614892482758, + -0.01463906280696392, + 0.08310817182064056, + 0.47688573598861694, + 0.09520652890205383, + -0.01968814805150032, + 0.19235724210739136, + -0.25249382853507996, + -0.2132057398557663, + -0.0346251018345356, + -0.0006832066574133933, + 0.08422276377677917, + -0.32575151324272156, + -0.37651461362838745, + -0.22891412675380707, + 0.19846434891223907, + 0.0693582221865654, + -0.3014621436595917, + 0.09153084456920624, + 0.20894767343997955, + -0.03114289790391922, + 0.05881757289171219, + 0.33253684639930725, + 0.45214182138442993, + 0.05454954877495766, + 0.5569038391113281, + 0.2572433352470398, + 0.0029163227882236242, + 0.29068276286125183, + -0.03416001424193382, + 0.329553484916687, + -0.11418235301971436, + -0.4139120876789093, + -0.44669342041015625, + 0.04100050404667854, + -0.18609608709812164, + -0.14737722277641296, + 0.03590181842446327, + -0.08374395221471786, + -0.00875314511358738, + -0.00038987150765024126, + 0.194504052400589, + -0.025800785049796104, + 0.14752991497516632, + -0.06084603816270828, + 0.5328851342201233, + -0.13646242022514343, + -0.33697450160980225, + 0.17805364727973938, + -0.1184021383523941, + 0.3273739516735077, + -0.09624531865119934, + -0.15553829073905945, + -0.22165575623512268, + 0.3601211905479431, + -0.03713814169168472, + -0.08802226185798645, + -0.08941611647605896, + -0.2371177077293396, + -0.32309114933013916, + -0.4480447769165039, + 0.06338045001029968, + -0.09734238684177399, + -0.11655962467193604, + -0.2299073487520218, + 0.1347639113664627, + -0.06180719658732414, + -0.11930371820926666, + 0.017814069986343384, + 0.36796557903289795, + 0.24071979522705078, + -0.06020180508494377, + 0.15989628434181213, + 0.21498452126979828, + -0.019205722957849503, + 0.19473771750926971, + -0.1573183834552765, + 0.17454540729522705, + 0.0480240173637867, + -0.29649510979652405, + -0.009306641295552254, + 0.026564333587884903, + -0.22561444342136383, + 0.04082561284303665, + 0.1569671630859375, + 0.09007550776004791, + -0.1554345339536667, + 0.05386541783809662, + -0.025090329349040985, + 0.25928977131843567, + -0.1897626519203186, + -0.11514100432395935, + 0.29280927777290344, + -0.1685628592967987, + 0.39249980449676514, + -0.07579108327627182, + -0.34499964118003845, + -0.0906452015042305, + -0.13220995664596558, + -0.4032716751098633, + 0.1244383156299591, + -0.005320352036505938, + -0.11904711276292801, + 0.06075567752122879, + -0.034628719091415405, + 0.08662187308073044, + 0.0579034686088562, + 0.10810863226652145, + 0.13283205032348633, + 0.08877145498991013, + -0.08544637262821198, + -0.4152162969112396, + -0.15314458310604095, + -0.37927737832069397, + -0.23549138009548187, + -0.28755635023117065, + 0.42415034770965576, + 0.2366282194852829, + -0.07058727741241455, + 0.04266219586133957, + 0.08969984203577042, + -0.31461021304130554, + -0.4056779742240906, + -0.052023932337760925, + 0.006153459195047617, + 0.6005771160125732, + 0.05116026848554611, + -0.211973637342453, + 0.2111867070198059, + -0.40281492471694946, + 0.2375519871711731, + 0.13919305801391602, + 0.13387608528137207, + 0.24164053797721863, + 0.10993418097496033, + 0.1383579522371292, + 0.5107021331787109, + 0.18908651173114777, + -0.005101922433823347, + 0.2276669293642044, + -0.006585781928151846, + 0.11505568027496338, + -0.08612365275621414, + -0.09184424579143524, + 0.49637141823768616, + -0.38181594014167786, + 0.21200652420520782, + -0.0086306007578969, + 0.3372485637664795, + -0.2750302255153656, + -0.1616375744342804, + -0.06428969651460648, + -0.18236865103244781, + -0.1330176293849945, + -0.3382335901260376, + -0.1944819837808609, + 0.16238689422607422, + -0.31340643763542175, + -0.09350139647722244, + 0.21686424314975739, + 0.28484460711479187, + 0.1256365180015564, + 0.06789293885231018, + -0.07682295143604279, + -0.48264196515083313, + 0.07015955448150635, + 0.3584667444229126, + 0.015670383349061012, + -0.055093273520469666, + -0.05612373352050781, + 0.17480434477329254, + 0.4795798659324646, + -0.09885634481906891, + -0.10670676827430725, + 0.0005690223770216107, + -0.15262705087661743, + -0.07280559092760086, + 0.09415150433778763, + 0.07672793418169022, + 0.01841641217470169, + -0.37587854266166687, + 0.10392502695322037, + -0.12604573369026184, + -0.3426159620285034, + 0.17293062806129456, + -0.2984272539615631, + -0.3380991518497467, + -0.043000467121601105, + 0.12050655484199524, + -0.08581404387950897, + -0.0330280065536499, + 0.293374240398407, + 0.5442282557487488, + 0.2881724536418915, + -0.05860653892159462, + 0.07944362610578537, + -0.5221250653266907, + -7.950556027935818e-05, + 0.17431673407554626, + -0.16768889129161835, + 0.16578030586242676, + -0.09785863757133484, + 0.350646436214447, + 0.2831515073776245, + 0.16979320347309113, + -0.6071570515632629, + 0.16585946083068848, + 0.31339961290359497, + 0.30937302112579346, + -0.2748020589351654, + -10.835315704345703, + 0.1450963020324707, + -0.1674693375825882, + 0.4004225730895996, + -0.13201706111431122, + 0.11699888110160828, + -0.019389092922210693, + -0.0930941104888916, + 0.12387336790561676, + 0.271442711353302, + -0.3189850449562073, + 0.06446868181228638, + 0.2983386218547821, + 0.28585341572761536, + -0.10301324725151062, + -0.07708390802145004, + -0.2099618911743164, + 0.22569996118545532, + 0.06615176796913147, + 0.2152819037437439, + 0.2079135626554489, + 0.5176010131835938, + -0.05119478330016136, + 0.3538952171802521, + 0.15688493847846985, + -0.07367561757564545, + -0.19168096780776978, + 0.35822421312332153, + 0.1163443848490715, + -0.45033761858940125, + 0.23646476864814758, + 0.041629038751125336, + -0.07124419510364532, + -0.1908162534236908, + 0.006404658313840628, + -0.29830771684646606, + -0.176029771566391, + -0.05445612967014313, + 0.008939877152442932, + -0.10114890336990356, + -0.0031244605779647827, + -0.21497926115989685, + -0.035581573843955994, + 0.3702719211578369, + -0.11195964366197586, + -0.40084898471832275, + -0.24365609884262085, + -1.520867943763733, + 0.20536679029464722, + 0.18569613993167877, + 0.5243217945098877, + -0.006796399597078562, + 0.1194467544555664, + 0.016898535192012787, + -0.4644047021865845, + 0.13571900129318237, + -0.19024205207824707, + 0.10048038512468338, + 0.1664254069328308, + -0.07586662471294403, + 0.26500383019447327, + -0.1763378530740738, + 0.36543580889701843, + -0.5179094076156616, + -0.2334713190793991, + 0.08413635194301605, + -0.16426372528076172, + 0.016112646088004112, + -0.08740004897117615, + -0.253427654504776, + -0.4283546209335327, + -0.15999306738376617, + 0.0018946884665638208, + 0.08875870704650879, + 0.4317275285720825, + -0.09051463752985, + -0.48388671875, + 0.059534862637519836, + -0.01889944076538086, + 0.3949905335903168, + 0.1436769664287567, + -0.06743641942739487, + 0.19788551330566406, + -0.10558650642633438, + -0.1404876857995987, + -0.1541656106710434, + 0.02804230898618698, + 0.5015776753425598, + 0.02276228927075863, + -0.027470383793115616, + -0.08079363405704498, + 0.19784298539161682, + -0.17760327458381653, + -0.16447710990905762, + -0.4329908490180969, + -0.02586336061358452, + 0.06223757937550545, + -0.015838472172617912, + 0.061821289360523224, + -0.10410874336957932, + -0.06058383733034134, + -0.1642945557832718, + 0.06465519219636917, + -0.3878062069416046, + -0.2748548686504364, + 0.37282001972198486, + 0.21104896068572998, + 0.15307235717773438, + 0.22221189737319946, + 0.10820962488651276, + 0.0555231086909771, + -0.01956040970981121, + 0.4224987030029297, + 0.5355233550071716, + 0.1627279669046402, + 0.0468151792883873, + -0.2567165791988373, + 0.10308520495891571, + -0.34747040271759033, + 0.1774068921804428, + 0.3031822741031647, + -0.047012247145175934, + 0.3804830312728882, + 0.5447179079055786, + -0.0007846222724765539, + -0.11665495485067368, + 0.931792676448822, + -0.2769111692905426, + 0.3062618672847748, + -0.20683802664279938, + 0.20042404532432556, + 0.013628307729959488, + -0.21050359308719635, + 0.027445154264569283, + 0.10246915370225906, + -0.34863531589508057, + 0.3111255168914795, + -0.0441516675055027, + -0.34154829382896423, + 0.15575763583183289, + -0.3152710199356079, + 0.4460584819316864, + 0.3244880437850952, + 0.2004447728395462, + -0.16451965272426605, + -0.44509971141815186, + -0.2956368923187256, + 0.1388864815235138, + -0.3295985162258148, + -0.3951743245124817, + -0.16108185052871704, + -0.0418991893529892, + 0.004363154526799917, + -0.26244235038757324, + 0.37535637617111206, + 0.08858559280633926, + -0.11515527218580246, + -0.08039963245391846, + -0.4893845319747925, + -0.02119528315961361, + 0.2900344729423523, + 0.6111987233161926, + 0.18352735042572021, + -0.0899048000574112, + -0.16453909873962402, + 0.2826162278652191, + -0.130192369222641, + 0.21232527494430542, + 0.01915382593870163, + -0.04628973826766014, + -0.45053890347480774, + 0.1371994912624359, + 0.15870504081249237, + -0.3583899438381195, + -0.16406108438968658, + -0.4176751673221588, + 0.23927490413188934, + -0.12442522495985031, + -0.026748567819595337, + 0.406851589679718, + 0.26902031898498535, + -0.08110613375902176, + -0.04298179969191551, + -0.3397372364997864, + 0.2424478530883789, + 0.30089694261550903, + 0.20377211272716522, + 0.13155899941921234, + -0.06857634335756302, + -0.5070254802703857, + -0.3390863239765167, + 0.29813989996910095, + -0.30286094546318054, + -0.12926146388053894, + 0.296322226524353, + 0.1224864199757576, + -0.21622177958488464, + 0.07039714604616165, + -0.2329501509666443, + -0.047157347202301025, + -0.16874808073043823, + -0.004939827602356672, + 0.3687739968299866, + -0.32874760031700134, + 0.06603445112705231, + -0.03867574408650398, + 0.3031683564186096, + 0.24142612516880035, + -0.4516318738460541, + 0.34427037835121155, + -0.22982239723205566 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_084.json b/src/benchmark/output/results/results_graph_084.json new file mode 100644 index 0000000..7305168 --- /dev/null +++ b/src/benchmark/output/results/results_graph_084.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is an adult male with a history of respiratory symptoms. Unfortunately, the demographic information is not provided in the given data.\n\n**Initial Presentation (Step 1):**\nThe patient presented with right locus coeruleus, visceral inversion, sinusitis, and bronchial dilatation. These symptoms led to further cardiac evaluation.\n\n**Diagnostic Journey:**\n\n1. **Electrocardiography (ECG) and Initial Diagnosis (Step 2):**\nAn ECG showed a right-sided heart, prompting further imaging with chest CT and 3D reconstruction of the ribs to evaluate lung and organ positioning.\n\n2. **Chest CT Findings (Step 3):**\nThe chest CT revealed chronic inflammation of both lungs, multiple bronchiectasis in both lungs, nodules in the upper lobe of the right lung, a flaky high-density shadow in the right main bronchus, bilateral pleural thickening, localized calcification of the right pleura, and a right-sided heart with transposition of thoracic and abdominal organs.\n\n3. **Paranasal Sinus CT Findings (Step 4):**\nA paranasal sinus CT showed right maxillary sinusitis, ethmoid sinus, nasal soft tissue shadow, polyps, deviated nasal septum, and bilateral middle and lower turbinate hypertrophy.\n\n4. **Bronchoscopy Evaluation (Steps 5-6):**\nNormal bronchial tubes in the right lung led to further bronchoscopic evaluation of the left lung, where a polypoid neoplasm was found in the opening of the upper lobe of the left lung.\n\n5. **Cancer Diagnosis and Treatment Planning (Step 7):**\nBronchoalveolar lavage fluid cytology showed cancer cells, prompting immunohistochemistry to determine the type of cancer. The diagnosis confirmed small cell lung cancer.\n\n6. **Bone Metastasis Evaluation (Step 8):**\nExtrapulmonary auxiliary examination suggested bone metastasis.\n\n7. **Final Diagnosis and Treatment (Step 10):**\nThe patient was diagnosed with extensive stage small cell lung cancer of the left lung, accompanied by Kartagener Syndrome. The ECOG performance status score was 1.\n\n**Outcomes:**\n\n- The patient has been diagnosed with small cell lung cancer.\n- Bone metastasis is suspected but not confirmed.\n- Treatment plans are pending further evaluation and consultation.\n\nThis clinical case report highlights the importance of a comprehensive diagnostic journey, from initial presentation to final diagnosis. Each step in the diagnostic process builds upon previous findings, ultimately leading to an accurate diagnosis and treatment plan for this patient with small cell lung cancer.", + "bertscore": { + "precision": [ + 0.6484930515289307 + ], + "recall": [ + 0.6397433876991272 + ], + "f1": [ + 0.6440885066986084 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 10, + "edge_count": 9, + "avg_in_degree": 0.9, + "density": 0.1 + }, + "trajectory_embedding": [ + 0.3022826015949249, + -0.0002478778478689492, + 0.07108965516090393, + 0.18501682579517365, + 0.12881651520729065, + 0.13057772815227509, + 0.010211390443146229, + 0.27111274003982544, + 0.48087310791015625, + -0.30358201265335083, + -0.15933957695960999, + -0.05752738192677498, + -0.5778652429580688, + -0.08748479187488556, + -0.32486921548843384, + 0.2844110131263733, + 0.11371511220932007, + 0.32671236991882324, + 0.021662577986717224, + -0.30923351645469666, + -0.49680963158607483, + 0.0782569944858551, + -0.44948211312294006, + -0.04323277622461319, + 0.22593548893928528, + -0.01574728451669216, + 0.4235308766365051, + 0.35435113310813904, + 0.27642717957496643, + 0.34516799449920654, + 0.14290973544120789, + -0.1564827263355255, + 0.2897892892360687, + 0.08219972997903824, + -0.3131678104400635, + 0.153154656291008, + 0.04478307440876961, + 0.4251784682273865, + -0.17223894596099854, + 0.06200450658798218, + -0.008131982758641243, + 0.026351476088166237, + 0.7629572153091431, + 0.24166879057884216, + 0.49624738097190857, + -0.8540695905685425, + 0.0735427513718605, + 0.6025377511978149, + -0.4382382333278656, + -0.42543187737464905, + 0.14666084945201874, + 0.8501324653625488, + 0.6023985147476196, + -0.23723092675209045, + 0.49399223923683167, + -0.09967318177223206, + -0.24939200282096863, + -0.36156731843948364, + -0.27796420454978943, + -0.07196014374494553, + -0.03802759572863579, + -0.3508407473564148, + 0.2254219502210617, + 0.006940671242773533, + -0.23701122403144836, + -0.14317883551120758, + -0.2833285927772522, + 0.15163321793079376, + -0.06794106960296631, + -0.3598276972770691, + -0.2114640772342682, + -0.16742625832557678, + -0.25604474544525146, + 0.09791062772274017, + 0.058662235736846924, + -0.06908141076564789, + 0.29694175720214844, + -0.06433207541704178, + 0.24006052315235138, + 0.16372595727443695, + -0.10615365207195282, + -0.13890239596366882, + 0.0628042221069336, + 0.30454668402671814, + -0.48599013686180115, + 0.05434264987707138, + -0.17366516590118408, + -0.21750371158123016, + -0.3870420455932617, + 0.08840364962816238, + 0.23712030053138733, + -0.3720531761646271, + -0.10707030445337296, + -0.13465967774391174, + 0.005096083972603083, + 0.13848185539245605, + 0.45548492670059204, + 0.46938556432724, + 0.8086320757865906, + 0.014741292223334312, + 0.2957764267921448, + 0.15941783785820007, + 0.33580154180526733, + 0.19358238577842712, + 0.4785425662994385, + -0.08414985984563828, + 0.19566580653190613, + -0.46821674704551697, + 0.22834725677967072, + 0.37398818135261536, + 0.11532840877771378, + -0.1693725436925888, + -0.0774139016866684, + -0.1784668266773224, + 0.24414077401161194, + 0.0498858243227005, + -0.09838474541902542, + 0.2163398563861847, + 0.27058297395706177, + -0.5322241187095642, + -0.09721708297729492, + -0.06723294407129288, + 0.21702703833580017, + 0.4134696125984192, + -0.46868330240249634, + -0.06796272844076157, + -0.054749995470047, + 0.0694805309176445, + 0.05295033007860184, + -0.05510329082608223, + -0.416511207818985, + -0.13748756051063538, + 0.02648722007870674, + 0.12776710093021393, + -0.11540375649929047, + 0.16256263852119446, + -0.4000517725944519, + -0.05173369497060776, + -1.1125802993774414, + 0.17043237388134003, + -0.3793953061103821, + -0.008986279368400574, + 0.06805851310491562, + -0.45297354459762573, + -0.302298367023468, + -0.28366243839263916, + -0.18141335248947144, + 0.17342188954353333, + -0.16900277137756348, + -0.06276275217533112, + 0.08167936652898788, + 0.09778048098087311, + 0.07180964946746826, + 0.353459894657135, + 0.11126623302698135, + 0.023528430610895157, + -0.04072052985429764, + 0.29630473256111145, + 0.07592806220054626, + -0.2539720833301544, + -0.07335661351680756, + 0.4713670611381531, + 0.18058033287525177, + 0.05613838508725166, + -0.10637662559747696, + -0.7066742777824402, + 0.015964265912771225, + -0.18404079973697662, + 0.1063329353928566, + 0.1283593773841858, + -0.22283096611499786, + 0.24120625853538513, + -0.29460567235946655, + 0.5675346851348877, + 0.1036454439163208, + 0.3286721110343933, + 0.03387962281703949, + -0.21458497643470764, + -0.05666860193014145, + 0.15959730744361877, + 0.06606514006853104, + -0.1577528566122055, + 0.679175615310669, + 0.07302459329366684, + -0.2440629005432129, + 0.13170525431632996, + 0.4612267017364502, + -0.005884298589080572, + -0.04186207056045532, + -0.03639828413724899, + 0.3915157914161682, + -0.30076083540916443, + 0.4524717926979065, + -0.4438624978065491, + -0.13237246870994568, + 0.18911278247833252, + -0.26135173439979553, + -0.23115570843219757, + 0.08541755378246307, + -0.13695800304412842, + 0.31457677483558655, + -0.058833230286836624, + -0.3288137912750244, + 0.09825369715690613, + 0.0887846052646637, + -0.06854353845119476, + 0.4729226231575012, + -0.05019985884428024, + 0.033078260719776154, + -0.10017581284046173, + -0.18857690691947937, + 0.08798342198133469, + -0.07705532014369965, + 0.18451006710529327, + 0.06940267980098724, + -0.24698373675346375, + 0.3591180741786957, + -0.012563997879624367, + -0.05025869607925415, + 0.13707154989242554, + -0.0844765156507492, + -0.2661805748939514, + 0.0017543137073516846, + -0.013630163855850697, + -0.409559965133667, + 0.12035921961069107, + 0.025147076696157455, + 0.11376921087503433, + 0.27445656061172485, + -0.03277166932821274, + 0.019878875464200974, + -0.2724904417991638, + 0.35789936780929565, + 0.000543452799320221, + -0.2218378335237503, + -0.32600194215774536, + 0.12106867134571075, + -0.3061431646347046, + 0.05570601671934128, + 0.34320375323295593, + -0.08843746781349182, + -0.033211492002010345, + 0.16999739408493042, + -0.2587319016456604, + -0.18342933058738708, + -0.34824565052986145, + -0.07481463253498077, + 0.24462933838367462, + 0.09018868207931519, + 0.33315035700798035, + 0.07320088148117065, + -0.15716397762298584, + 0.19682681560516357, + -0.23980669677257538, + -0.24325260519981384, + -0.37648633122444153, + -0.19036473333835602, + -0.07662941515445709, + -0.6160048246383667, + 0.10395056009292603, + 0.09475217759609222, + -0.018194453790783882, + 0.02839547023177147, + -0.24049648642539978, + -0.10005618631839752, + 0.14590099453926086, + -0.07585057616233826, + 0.10524396598339081, + -0.1955806314945221, + 0.0502573661506176, + -0.14947672188282013, + -0.29537495970726013, + -0.16388416290283203, + -0.003522282000631094, + 0.14366595447063446, + 0.0010257974499836564, + -0.2072487324476242, + -0.029148101806640625, + 0.005960741546005011, + -0.3725356459617615, + -0.19349835813045502, + 0.16478145122528076, + -0.13456828892230988, + 0.049115847796201706, + -0.05138600990176201, + 0.2586899399757385, + 0.4195712208747864, + 0.08038105815649033, + 0.08258511126041412, + 0.4384620785713196, + 0.42306041717529297, + -0.004651406314224005, + 0.036737509071826935, + -0.04221692681312561, + -0.13694453239440918, + -0.0026544772554188967, + -0.38543808460235596, + 0.39184504747390747, + 0.1366136372089386, + 0.009313111193478107, + -0.06164867803454399, + 0.281760573387146, + 0.061717648059129715, + -0.3140893280506134, + -0.018511587753891945, + 0.6115490198135376, + 0.07538636028766632, + 0.17233417928218842, + 0.10848400741815567, + 0.2774800956249237, + 0.5246814489364624, + -0.0018822572892531753, + 0.017238929867744446, + 0.10068394988775253, + -0.12100937217473984, + -0.24151170253753662, + 0.04409749433398247, + 0.08195656538009644, + 0.46116194128990173, + -0.1502642184495926, + -0.11956534534692764, + 0.14542338252067566, + -0.09974714368581772, + -0.06510915607213974, + -0.10443327575922012, + -0.10864098370075226, + 0.01000242866575718, + -0.3809471130371094, + 0.21651367843151093, + 0.06601918488740921, + -0.051966775208711624, + 0.4956601560115814, + -0.28418299555778503, + -0.26878172159194946, + 0.2900657653808594, + -0.13672645390033722, + -0.5506992340087891, + 0.33003562688827515, + -0.12394626438617706, + -0.02254941686987877, + 0.30944404006004333, + -0.2810365557670593, + -0.0393986813724041, + -0.10458073765039444, + 0.3272346556186676, + -0.04930766671895981, + 0.038481853902339935, + -0.1337556540966034, + 0.06520572304725647, + 0.34503740072250366, + 0.6053578853607178, + 0.15144284069538116, + 0.26155441999435425, + 0.7582577466964722, + 0.21862836182117462, + -0.37447184324264526, + 0.03211371973156929, + -0.01634759083390236, + 0.38047587871551514, + -0.16660353541374207, + -0.10187427699565887, + -0.2678399384021759, + 0.0826643854379654, + 0.14766177535057068, + -0.3476739227771759, + -0.05390278249979019, + 0.11977537721395493, + 0.1074601411819458, + -0.07566378265619278, + 0.16910137236118317, + 0.06659577786922455, + -0.06859757006168365, + 0.39101821184158325, + -0.10597479343414307, + -0.15591631829738617, + 0.30569082498550415, + -0.1898820698261261, + 0.2924621105194092, + -0.02036619558930397, + -0.35011228919029236, + -0.3720923066139221, + 0.015457767061889172, + -0.2807143032550812, + -0.19953343272209167, + -0.02051239088177681, + -0.14320431649684906, + 0.01467401348054409, + -0.2528730630874634, + 0.049619849771261215, + -0.015667635947465897, + 0.23355571925640106, + 0.20689544081687927, + 0.30164456367492676, + 0.16636694967746735, + -0.17945553362369537, + 0.1823354810476303, + 0.031307607889175415, + -0.005020329263061285, + -0.040585316717624664, + 0.004251341335475445, + -0.17994220554828644, + 0.5273225903511047, + -0.0031303227879107, + -0.014922475442290306, + 0.16944238543510437, + -0.022807719185948372, + -0.19961638748645782, + -0.3405296504497528, + -0.19840240478515625, + -0.10726951062679291, + 0.003415413200855255, + 0.073027104139328, + 0.0202237069606781, + -0.35132545232772827, + -0.21133241057395935, + -0.07742069661617279, + 0.03155653551220894, + 0.2863825559616089, + -0.17220738530158997, + -0.0730748400092125, + 0.2951551079750061, + 0.01601223647594452, + 0.33708223700523376, + -0.21484443545341492, + 0.0039914436638355255, + 0.09456918388605118, + -0.2565591335296631, + -0.07173477113246918, + 0.004710282199084759, + -0.2562774419784546, + -0.2509877383708954, + 0.20962758362293243, + 0.253984272480011, + 0.10473451763391495, + 0.020660754293203354, + 0.21399109065532684, + 0.2842431664466858, + -0.46710777282714844, + -0.044867366552352905, + 0.3169190287590027, + 0.20084087550640106, + 0.5470558404922485, + 0.014864524826407433, + -0.431762158870697, + -0.2626354396343231, + -0.04742180183529854, + -0.29901912808418274, + 0.08003951609134674, + 0.28881731629371643, + -0.18920665979385376, + -0.24956974387168884, + 0.148453488945961, + -0.1268928498029709, + -0.1388619840145111, + 0.35403257608413696, + -0.1324261873960495, + 0.18792861700057983, + 0.09655649960041046, + -0.20529210567474365, + -0.12591758370399475, + -0.2148256003856659, + -0.27459701895713806, + -0.235565185546875, + 0.28044575452804565, + 0.30219390988349915, + -0.3643375635147095, + 0.0054170191287994385, + 0.049004603177309036, + -0.30093756318092346, + -0.10840094089508057, + 0.06473053991794586, + -0.2832329571247101, + 0.421114981174469, + -0.2014114111661911, + -0.16098937392234802, + 0.06829563528299332, + -0.15668006241321564, + 0.1201416477560997, + 0.16133680939674377, + 0.03854108229279518, + 0.42834705114364624, + 0.2367277890443802, + 0.096320241689682, + 0.46178776025772095, + 0.05761134624481201, + -0.034063152968883514, + 0.22627249360084534, + -0.06268403679132462, + 0.07518596947193146, + -0.21787306666374207, + -0.1047079935669899, + 0.25594455003738403, + -0.31086304783821106, + 0.028466815128922462, + 0.2431807965040207, + 0.10446077585220337, + -0.4962840974330902, + -0.3948891758918762, + 0.020958777517080307, + 0.08071019500494003, + -0.0017918333178386092, + -0.2080884724855423, + -0.2839190661907196, + 0.03133048117160797, + -0.26619964838027954, + -0.18007151782512665, + 0.3414393365383148, + 0.46708735823631287, + 0.19734498858451843, + 0.1692400872707367, + -0.24250900745391846, + -0.40451592206954956, + 0.2133006751537323, + 0.20856276154518127, + 0.11806480586528778, + 0.017719173803925514, + -0.27860382199287415, + 0.3077690899372101, + 0.6379297375679016, + -0.1302676647901535, + 0.04534696787595749, + 0.04443063214421272, + -0.006921547465026379, + 0.1513594686985016, + 0.11139438301324844, + -0.07528958469629288, + -0.11466683447360992, + -0.4220767617225647, + 0.18281389772891998, + -0.4470955729484558, + -0.19759227335453033, + 0.18458296358585358, + 0.024520790204405785, + -0.4396180212497711, + -0.3081614375114441, + 0.3907000720500946, + -0.2393304854631424, + -0.06428395956754684, + 0.2412598580121994, + 0.4235643744468689, + 0.12001093477010727, + -0.22211647033691406, + 0.14540937542915344, + -0.5299925208091736, + -0.21517682075500488, + 0.10898420959711075, + -0.14292536675930023, + -0.10685457289218903, + 0.10852400958538055, + 0.4706238806247711, + 0.49245700240135193, + 0.3022193908691406, + -0.11070270836353302, + -0.040609750896692276, + 0.24962198734283447, + 0.22111499309539795, + -0.18938827514648438, + -10.700393676757812, + -0.06847956031560898, + -0.29483717679977417, + 0.6960679888725281, + -0.2306894063949585, + 0.02135266736149788, + 0.3115006983280182, + 0.019914742559194565, + 0.1280011683702469, + 0.09144191443920135, + -0.20868992805480957, + 0.02801315113902092, + 0.3151918649673462, + 0.32813093066215515, + -0.046479351818561554, + -0.08504917472600937, + -0.2453886717557907, + 0.1739961802959442, + -0.03973426669836044, + 0.21970923244953156, + 0.3042164742946625, + 0.36559635400772095, + -0.2513323426246643, + 0.1999724954366684, + -0.1395547240972519, + -0.537032961845398, + -0.18692578375339508, + 0.5912972688674927, + 0.13540585339069366, + -0.30633142590522766, + 0.31018906831741333, + 0.2532275319099426, + -0.37133023142814636, + 0.26469898223876953, + -0.1417871117591858, + -0.042985375970602036, + 0.026998501271009445, + 0.09103906154632568, + 0.25161898136138916, + -0.08083400875329971, + -0.020653892308473587, + -0.3002742528915405, + 0.37196698784828186, + 0.3077193796634674, + -0.04517807066440582, + -0.549065887928009, + -0.265261173248291, + -1.6271107196807861, + 0.39536115527153015, + 0.41173189878463745, + 0.31902989745140076, + -0.03662886470556259, + 0.23492565751075745, + 0.15171071887016296, + -0.33456432819366455, + 0.003988940268754959, + -0.23838357627391815, + -0.05001875013113022, + 0.08617740124464035, + -0.006772148422896862, + 0.18141750991344452, + -0.13978402316570282, + 0.5921083688735962, + -0.09007574617862701, + -0.27582845091819763, + 0.029221320524811745, + 0.07606247812509537, + -0.057702720165252686, + -0.2906796336174011, + -0.6101187467575073, + -0.5730866193771362, + 0.08737681061029434, + -0.13544762134552002, + -0.05323542281985283, + 0.4730839133262634, + -0.0991457849740982, + -0.3486878275871277, + 0.3036792576313019, + 0.09338647127151489, + 0.4601627290248871, + 0.23891206085681915, + -0.07815234363079071, + 0.06159602850675583, + -0.13137081265449524, + -0.3349774479866028, + -0.0884469747543335, + 0.08090667426586151, + 0.5726484060287476, + -0.08617880940437317, + 0.016780000180006027, + -0.035925962030887604, + 0.3896651268005371, + -0.00013828874216414988, + -0.27181029319763184, + -0.4764103293418884, + 0.16295713186264038, + -0.04064466059207916, + 0.11315704882144928, + 0.06893400847911835, + -0.20206809043884277, + -0.29148006439208984, + 0.0420963354408741, + -0.045636776834726334, + -0.5955685377120972, + -0.3798132836818695, + 0.26711970567703247, + 0.1229136735200882, + 0.3546217679977417, + -0.015912353992462158, + 0.06870289891958237, + -0.24585500359535217, + -0.06851018965244293, + 0.17143447697162628, + 0.5847951173782349, + 0.179721862077713, + -0.07473741471767426, + -0.015889516100287437, + -0.4200037121772766, + -0.1686449944972992, + 0.05881570652127266, + 0.4711637496948242, + -0.29056617617607117, + 0.25276249647140503, + 0.6358609199523926, + 0.001888046390376985, + -0.07153021544218063, + 0.8648948669433594, + -0.2854756712913513, + 0.3171937167644501, + -0.1709827333688736, + 0.2372385561466217, + -0.06195005029439926, + -0.35246509313583374, + 0.051377929747104645, + 0.4381488263607025, + -0.20715150237083435, + 0.7157111167907715, + 0.2102678120136261, + -0.44795599579811096, + 0.022132422775030136, + -0.2781883478164673, + 0.5775606036186218, + 0.3239624500274658, + 0.3607383370399475, + -0.11736442893743515, + -0.28928887844085693, + -0.2729252874851227, + 0.08051704615354538, + -0.43783825635910034, + -0.24398913979530334, + -0.18166127800941467, + 0.2476070672273636, + 0.09892012178897858, + -0.2800079882144928, + 0.4132039546966553, + 0.1669943481683731, + -0.2242717295885086, + -0.3341342508792877, + -0.48304685950279236, + 0.028591791167855263, + 0.2790490984916687, + 0.8138329386711121, + -0.06995245814323425, + -0.019302362576127052, + -0.036117881536483765, + 0.17265042662620544, + -0.22632861137390137, + 0.25830578804016113, + 0.18179041147232056, + 0.045930344611406326, + -0.5035537481307983, + 0.25428977608680725, + 0.1800452023744583, + -0.3236026465892792, + -0.09251801669597626, + -0.1736966073513031, + -0.13242705166339874, + 0.006328442599624395, + -0.30407652258872986, + 0.04553022235631943, + 0.2418498545885086, + -0.10587773472070694, + 0.08230690658092499, + -0.31393855810165405, + 0.05736009404063225, + 0.09567128121852875, + 0.2222079485654831, + 0.12883086502552032, + -0.25283434987068176, + -0.2608579099178314, + -0.6174993515014648, + 0.11740090698003769, + -0.19769859313964844, + -0.20696862041950226, + 0.052053701132535934, + 0.1907263696193695, + -0.31058254837989807, + 0.15869706869125366, + -0.2644699513912201, + -0.02185875177383423, + -0.09033507108688354, + 0.3298027813434601, + 0.3747708201408386, + -0.21409468352794647, + 0.17093904316425323, + -0.14165711402893066, + 0.1333751529455185, + 0.06095562502741814, + -0.2715438902378082, + 0.18049004673957825, + -0.13904044032096863 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_086.json b/src/benchmark/output/results/results_graph_086.json new file mode 100644 index 0000000..ecae235 --- /dev/null +++ b/src/benchmark/output/results/results_graph_086.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 36-year-old woman who presented to Anhui Chest Hospital with cough and chest pain for 2 months. She had no history of smoking.\n\n**Timeline of Diagnoses:**\n\n1. **March 2022:** The patient initially presented to the hospital with symptoms of cough and chest pain, which led to a chest computed tomography (CT) scan.\n2. **March 21, 2022:** The CT scan revealed left pleural thickening and pleural effusion, prompting further investigation.\n3. **Thoracoscopic left pleural biopsy** was performed on the same day, followed by plasma DNA analysis via next-generation sequencing (NGS), which identified EGFR exon L858R mutation.\n4. **April 2022:** The diagnosis of stage IV lung adenocarcinoma with EGFR exon L858R mutation was confirmed.\n\n**Timeline of Treatments:**\n\n1. **March 2022:** The patient received osimertinib as the first-line treatment for her lung cancer.\n2. **May 22, 2022:** A follow-up chest CT scan revealed a partial response (PR) to osimertinib treatment.\n3. **April 4, 2024:** Due to progressive disease, the patient's treatment regimen was changed to dabrafenib, trametinib, and aumolertinib concurrently.\n4. **June 3, 2024:** A follow-up chest CT scan revealed a complete response (CR) to the new treatment regimen.\n\n**Timeline of Outcomes:**\n\n1. **May 22, 2022:** The patient experienced a partial response to osimertinib treatment.\n2. **April 4, 2024:** The patient's disease progressed, and she was diagnosed with progressive disease (PD).\n3. **June 3, 2024:** The patient achieved a complete response (CR) to the new treatment regimen.\n\n**Notable Events:**\n\n* During treatment with dabrafenib, trametinib, and aumolertinib, the patient experienced a transient fever.\n* The patient's disease was diagnosed as stage IV lung adenocarcinoma with EGFR exon L858R mutation.\n\n**Conclusion:**\nThe patient's clinical course was marked by an initial presentation of cough and chest pain, followed by a diagnosis of stage IV lung adenocarcinoma with EGFR exon L858R mutation. The patient received osimertinib as the first-line treatment and experienced a partial response. Due to progressive disease, the treatment regimen was changed to dabrafenib, trametinib, and aumolertinib concurrently, resulting in a complete response.", + "bertscore": { + "precision": [ + 0.6942758560180664 + ], + "recall": [ + 0.7067800760269165 + ], + "f1": [ + 0.7004721760749817 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 9, + "edge_count": 8, + "avg_in_degree": 0.8888888888888888, + "density": 0.1111111111111111 + }, + "trajectory_embedding": [ + 0.2675797641277313, + 0.21791553497314453, + -0.22618961334228516, + 0.11571652442216873, + -0.019790956750512123, + 0.05677139014005661, + 0.042519599199295044, + 0.1792418360710144, + 0.5141865611076355, + -0.34321343898773193, + -0.024482721462845802, + 0.13857966661453247, + -0.6468924880027771, + -0.25428396463394165, + -0.1651427149772644, + 0.1542055606842041, + -0.09829944372177124, + 0.31758415699005127, + -0.2596558928489685, + -0.17077159881591797, + -0.22659580409526825, + 0.13174749910831451, + -0.3829096853733063, + 0.06544387340545654, + 0.1515325903892517, + 0.011543890461325645, + 0.3582412600517273, + 0.4067012071609497, + 0.09520009160041809, + 0.27456986904144287, + 0.28829512000083923, + -0.028053700923919678, + 0.14764872193336487, + -0.009291741997003555, + -0.21470355987548828, + 0.13079030811786652, + 0.17685800790786743, + 0.30124351382255554, + -0.17351296544075012, + -0.07442855834960938, + -0.09024392068386078, + 0.07787038385868073, + 0.8275833129882812, + -0.01726224645972252, + 0.29667434096336365, + -0.7508823871612549, + -0.15030576288700104, + 0.37458446621894836, + -0.3360116481781006, + -0.12845636904239655, + 0.2764851450920105, + 0.6903720498085022, + 0.5166894793510437, + -0.11258387565612793, + 0.3345339894294739, + -0.25607171654701233, + -0.22427433729171753, + -0.32150256633758545, + -0.07975102961063385, + 0.15178383886814117, + -0.038486357778310776, + -0.16007600724697113, + 0.31977906823158264, + -0.05790242180228233, + -0.12432339787483215, + -0.05300411954522133, + -0.16922977566719055, + 0.083812415599823, + -0.02476910874247551, + -0.14517396688461304, + -0.1993541270494461, + -0.24796366691589355, + -0.04371989145874977, + 0.17804883420467377, + 0.04194732382893562, + -0.08429072052240372, + 0.3673376441001892, + -0.01525390800088644, + 0.3300274908542633, + 0.1640128791332245, + -0.12402919679880142, + -0.059453852474689484, + -0.06197202205657959, + 0.21999597549438477, + -0.424887478351593, + 0.038097187876701355, + 0.002002384979277849, + -0.06615735590457916, + -0.3718654215335846, + 0.06783434003591537, + 0.19602659344673157, + -0.5306000113487244, + -0.05569252744317055, + -0.13322684168815613, + -0.23284585773944855, + 0.21489864587783813, + 0.48740243911743164, + 0.253702849149704, + 0.8671553134918213, + -0.014972875826060772, + 0.250682532787323, + 0.062193308025598526, + 0.030714817345142365, + 0.060182519257068634, + 0.27098146080970764, + -0.24173341691493988, + 0.2413242608308792, + -0.466265469789505, + 0.299497127532959, + 0.6055445075035095, + 0.08354074507951736, + -0.09230826050043106, + -0.07517461478710175, + -0.21373216807842255, + 0.13922013342380524, + 0.06306686997413635, + -0.028733743354678154, + 0.2793172597885132, + 0.3121602237224579, + -0.458368718624115, + -0.06705471873283386, + -0.12893062829971313, + 0.2925616502761841, + 0.2881128787994385, + -0.34650853276252747, + -0.13807380199432373, + 0.006900184787809849, + -0.08841875195503235, + 0.03789970651268959, + -0.02705308049917221, + -0.39069539308547974, + -0.21182239055633545, + -0.1264665573835373, + 0.035156622529029846, + -0.13091152906417847, + 0.430871844291687, + -0.26473167538642883, + -0.1021508201956749, + -1.1017342805862427, + 0.16633880138397217, + -0.3318289816379547, + -0.17414580285549164, + -0.08615252375602722, + -0.5279375910758972, + -0.13436564803123474, + -0.192817822098732, + -0.09854746609926224, + 0.2146150767803192, + -0.2139045000076294, + 0.0017431668238714337, + 0.17166346311569214, + -0.16639135777950287, + 0.06580100953578949, + 0.2862292230129242, + 0.028111092746257782, + 0.024222880601882935, + 0.0270144771784544, + 0.19131173193454742, + 0.07220227271318436, + -0.025211412459611893, + 0.0672234371304512, + 0.5253627300262451, + 0.010954342782497406, + 0.07876026630401611, + -0.05776897445321083, + -0.6147654056549072, + -0.01583971455693245, + -0.1751285195350647, + 0.27262476086616516, + -0.03028959035873413, + -0.21819914877414703, + 0.04664154723286629, + -0.4327636957168579, + 0.5608584880828857, + 0.23679791390895844, + 0.4188234210014343, + 0.025396578013896942, + 0.05205552652478218, + -0.03950347378849983, + 0.1640637069940567, + 0.0010691119823604822, + -0.0989135131239891, + 0.5883390307426453, + 0.3345355689525604, + -0.3373023271560669, + 0.19015932083129883, + 0.4581555128097534, + -0.09989826381206512, + -0.19058643281459808, + -0.049839384853839874, + 0.3543897569179535, + -0.2840050458908081, + 0.38008812069892883, + -0.2968634366989136, + 0.007832547649741173, + 0.06712186336517334, + -0.3013204038143158, + -0.04690423607826233, + 0.034774910658597946, + -0.20969244837760925, + 0.08861090987920761, + 0.04288427159190178, + -0.36363527178764343, + 0.1703481674194336, + 0.19508391618728638, + -0.18555587530136108, + 0.19505594670772552, + -0.08424971997737885, + 0.18259921669960022, + -0.031263042241334915, + -0.09574981033802032, + 0.1260751634836197, + 0.09746326506137848, + 0.20210367441177368, + -0.012030691839754581, + -0.36965522170066833, + 0.027662012726068497, + -0.027306361123919487, + -0.09606006741523743, + -0.018500812351703644, + 0.20115645229816437, + -0.19764532148838043, + -0.034216418862342834, + 0.0802338644862175, + -0.468985915184021, + 0.15698426961898804, + 0.2084309458732605, + 0.18777191638946533, + 0.05621640011668205, + -0.09349188953638077, + 0.03274306282401085, + -0.33532342314720154, + 0.21481269598007202, + -0.0438736192882061, + -0.18959608674049377, + -0.2277722954750061, + 0.3069354295730591, + 0.0013648909516632557, + -0.023853406310081482, + 0.2681137025356293, + 0.0701182559132576, + -0.062164969742298126, + 0.07557784020900726, + -0.24579429626464844, + 0.1217319667339325, + -0.12667308747768402, + -0.13737449049949646, + 0.18420392274856567, + 0.13287116587162018, + 0.24347233772277832, + 0.11957449465990067, + -0.1461060643196106, + 0.02622278593480587, + -0.2542453408241272, + -0.32143378257751465, + -0.19987447559833527, + -0.011652318760752678, + -0.17343220114707947, + -0.6779806613922119, + 0.0028940504416823387, + 0.15431708097457886, + -0.056091487407684326, + 0.23827272653579712, + -0.3118246793746948, + -0.09858443588018417, + -0.07769980281591415, + 0.046637970954179764, + 0.06965093314647675, + -0.27772286534309387, + -0.15783047676086426, + -0.2524335980415344, + -0.09011972695589066, + -0.08187244087457657, + -0.040075771510601044, + 0.06555354595184326, + 0.1710655391216278, + -0.2391773909330368, + 0.10016196966171265, + 0.2701658606529236, + -0.36994922161102295, + -0.10961529612541199, + 0.11767908930778503, + -0.16207633912563324, + 0.3104300796985626, + -0.04821685701608658, + 0.31980133056640625, + 0.3396635949611664, + 0.13042733073234558, + 0.26984626054763794, + 0.40108540654182434, + 0.421016126871109, + -0.01897118240594864, + -0.0711553692817688, + 0.004447015002369881, + -0.009514790028333664, + -0.03292545676231384, + -0.3351401090621948, + 0.30814388394355774, + 0.03658140450716019, + -0.0838221088051796, + -0.15198363363742828, + 0.12226520478725433, + 0.251603901386261, + -0.35114556550979614, + -0.0772181898355484, + 0.4936191737651825, + 0.0028090046253055334, + 0.1742151528596878, + 0.012949002906680107, + 0.35043010115623474, + 0.3386462926864624, + 0.03617565333843231, + 0.10146060585975647, + 0.049006178975105286, + -0.1971893012523651, + -0.09709340333938599, + -0.1342477947473526, + 0.1942010223865509, + 0.3152693212032318, + -0.11493706703186035, + -0.15269498527050018, + 0.2268587201833725, + 0.01214324776083231, + -0.23009821772575378, + -0.155603289604187, + -0.06087996065616608, + 0.09755131602287292, + -0.19333770871162415, + 0.2694246470928192, + -0.0846625417470932, + 0.18982940912246704, + 0.4185582399368286, + -0.35981544852256775, + -0.16286872327327728, + 0.20838038623332977, + -0.14458443224430084, + -0.46097177267074585, + 0.3409210741519928, + -0.3162246346473694, + 0.06572356820106506, + 0.24390339851379395, + -0.3540392220020294, + -0.009152021259069443, + -0.12227395176887512, + 0.32338324189186096, + -0.06451371312141418, + 0.10827887058258057, + -0.05624048039317131, + 0.09466668963432312, + 0.04371260106563568, + 0.4064751863479614, + 0.24226683378219604, + 0.011348918080329895, + 0.5285168886184692, + -0.12927690148353577, + -0.3946869969367981, + 0.12618249654769897, + -0.12101396918296814, + 0.145766481757164, + -0.13029056787490845, + -0.03334813937544823, + -0.13049215078353882, + 0.16778814792633057, + -0.04039887338876724, + -0.3145131766796112, + -0.0008918766980059445, + 0.12544317543506622, + 0.07086547464132309, + 0.018956316635012627, + 0.24298708140850067, + 0.29416656494140625, + -0.04556850343942642, + 0.46785247325897217, + -0.023507241159677505, + -0.0648852288722992, + 0.33548006415367126, + -0.1739303022623062, + 0.25953203439712524, + 0.0007529060239903629, + -0.31928586959838867, + -0.2854919135570526, + 0.25406408309936523, + -0.07004518061876297, + -0.1222928911447525, + 0.03389965742826462, + -0.14416199922561646, + -0.03483806923031807, + -0.23828548192977905, + 0.08185575902462006, + -0.051228564232587814, + 0.0856592059135437, + 0.04333440959453583, + 0.2292494773864746, + -0.03100310079753399, + -0.3164939284324646, + 0.21830645203590393, + 0.010374151170253754, + 0.059029605239629745, + -0.08300098031759262, + -0.04106125235557556, + -0.09455796331167221, + 0.5458002686500549, + -0.015634752810001373, + 0.06498002260923386, + -0.011806930415332317, + 0.049957260489463806, + -0.07558928430080414, + -0.3099413216114044, + 0.0796288326382637, + -0.12412599474191666, + -0.19648802280426025, + -0.0016014385037124157, + -0.005923385266214609, + -0.2302844226360321, + -0.12506473064422607, + -0.10013231635093689, + 0.06073233112692833, + 0.20367704331874847, + -0.005633688531816006, + 0.02130473032593727, + 0.3648494780063629, + 0.10440883040428162, + 0.4033468961715698, + -0.4136618375778198, + 0.2156740128993988, + 0.06591546535491943, + -0.19757598638534546, + 0.01265721209347248, + -0.035100582987070084, + -0.33468908071517944, + 0.028996245935559273, + 0.113688625395298, + 0.13757750391960144, + 0.014366712421178818, + -0.0690295621752739, + 0.05987128987908363, + 0.028287015855312347, + -0.3328324854373932, + 0.09067133069038391, + 0.4280276894569397, + -0.07452016323804855, + 0.2302577793598175, + 0.11842165887355804, + -0.4545958936214447, + 0.003355955006554723, + -0.3127082586288452, + -0.3868301212787628, + 0.10086575150489807, + 0.24931637942790985, + -0.1149488314986229, + -0.052657511085271835, + 0.0878535807132721, + 0.08965516090393066, + -0.08856703341007233, + 0.11607938259840012, + -0.17837604880332947, + 0.1455705165863037, + 0.07570227235555649, + -0.19763711094856262, + -0.09228593856096268, + -0.32370150089263916, + -0.41095778346061707, + -0.3149073123931885, + 0.37858378887176514, + 0.138024240732193, + -0.32869431376457214, + -0.1007937490940094, + -0.014905656687915325, + -0.2673555314540863, + -0.07896670699119568, + -0.05353837087750435, + -0.054201241582632065, + 0.4265895187854767, + 0.1650432050228119, + -0.20738719403743744, + 0.07911206781864166, + -0.2185678333044052, + 0.06165989115834236, + 0.08426722884178162, + 0.005898505449295044, + 0.43048107624053955, + 0.12649376690387726, + 0.06133145093917847, + 0.43766364455223083, + 0.21702612936496735, + 0.06302069127559662, + 0.28758326172828674, + -0.09101974964141846, + 0.09018334746360779, + -0.1278192698955536, + -0.19144245982170105, + 0.34891945123672485, + -0.32822710275650024, + 0.023947935551404953, + 0.27158644795417786, + 0.23421043157577515, + -0.4267003536224365, + -0.19622832536697388, + 0.13553808629512787, + -0.015384819358587265, + -0.11969906836748123, + -0.24869349598884583, + -0.25797611474990845, + -0.04804028570652008, + -0.1304754763841629, + -0.02036251313984394, + 0.287232369184494, + 0.42067503929138184, + 0.0923786610364914, + 0.1591286063194275, + -0.25746777653694153, + -0.3296210765838623, + 0.16637377440929413, + 0.1149119958281517, + 0.07350358366966248, + 0.028959717601537704, + -0.1057722270488739, + 0.2150142788887024, + 0.49510255455970764, + -0.06790205836296082, + -0.04843870922923088, + 0.10081073641777039, + -0.08938559889793396, + -0.03886991739273071, + -0.06531605124473572, + -0.30953851342201233, + -0.10920006781816483, + -0.35343578457832336, + 0.08950923383235931, + -0.2554885447025299, + -0.22643905878067017, + 0.224556103348732, + -0.20598560571670532, + -0.4757601320743561, + -0.10610470175743103, + 0.18222831189632416, + -0.2429397702217102, + -0.22256186604499817, + 0.2101941704750061, + 0.6374101042747498, + 0.1069428026676178, + -0.16669423878192902, + 0.03912098705768585, + -0.17981649935245514, + -0.21583609282970428, + 0.24854381382465363, + -0.09823907166719437, + -0.11358392238616943, + 0.0488172322511673, + 0.361810564994812, + 0.39157652854919434, + 0.2950994074344635, + -0.29091474413871765, + 0.34666043519973755, + 0.387980192899704, + 0.15970055758953094, + -0.22950240969657898, + -10.921539306640625, + -0.20960642397403717, + -0.3875959515571594, + 0.3836411237716675, + -0.21490105986595154, + 0.047525253146886826, + 0.12130754441022873, + -0.03822873532772064, + 0.23424261808395386, + 0.23921650648117065, + -0.24955593049526215, + -0.145660400390625, + 0.15750186145305634, + 0.1442815661430359, + 0.14243091642856598, + 0.08079152554273605, + -0.1649549901485443, + 0.13880528509616852, + 0.15555621683597565, + 0.16093039512634277, + 0.14499254524707794, + 0.43600961565971375, + -0.2766640782356262, + 0.2153310775756836, + -0.03444315120577812, + -0.18769434094429016, + -0.21606594324111938, + 0.47343313694000244, + 0.20977237820625305, + -0.2847074568271637, + 0.19107110798358917, + 0.034046586602926254, + -0.07748681306838989, + 0.08209696412086487, + -0.10739025473594666, + -0.2237221598625183, + -0.05031656473875046, + 0.14084486663341522, + 0.004411456175148487, + -0.18355026841163635, + -0.08402005583047867, + -0.23791496455669403, + 0.4711853265762329, + 0.09093591570854187, + -0.07807574421167374, + -0.5195673704147339, + -0.12337107211351395, + -1.4347436428070068, + 0.3206177055835724, + 0.42634284496307373, + 0.39809635281562805, + 0.09555591642856598, + 0.1358017921447754, + 0.24790170788764954, + -0.3791499435901642, + -0.016723722219467163, + -0.17896217107772827, + 0.02849755994975567, + 0.19027669727802277, + 0.07942112535238266, + 0.06598695367574692, + 0.006974825635552406, + 0.5880471467971802, + 0.03816218674182892, + -0.2016848772764206, + 0.06958020478487015, + -0.03524167835712433, + -0.19770929217338562, + -0.10706612467765808, + -0.48784467577934265, + -0.46162864565849304, + 0.03851298615336418, + -0.049994368106126785, + 0.2714660167694092, + 0.22602885961532593, + 0.0933799147605896, + -0.21995322406291962, + 0.1988094449043274, + 0.10701288282871246, + 0.19622613489627838, + 0.2821347713470459, + 0.04901587590575218, + 0.06462813168764114, + -0.12283836305141449, + 0.0006425728206522763, + -0.1449182629585266, + 0.015317704528570175, + 0.35356128215789795, + 0.0036941005382686853, + -0.11636900901794434, + -0.04917679727077484, + 0.2712356448173523, + -0.01761685125529766, + -0.179544135928154, + -0.4086458683013916, + -0.00029557611560449004, + 0.01064060814678669, + 0.16373078525066376, + -0.12480144947767258, + -0.047982390969991684, + -0.250974178314209, + 0.015822669491171837, + 0.02654104121029377, + -0.4800695776939392, + -0.3978598415851593, + 0.22396527230739594, + 0.1891573965549469, + 0.10983213782310486, + -0.022603515535593033, + -0.01746959239244461, + -0.13923032581806183, + 0.029019279405474663, + 0.2955204248428345, + 0.5698025226593018, + 0.32502686977386475, + -0.07378807663917542, + -0.024403221905231476, + -0.09322857111692429, + -0.1694561094045639, + -0.04803727567195892, + 0.4363913834095001, + 0.0013219030806794763, + 0.15317663550376892, + 0.3891148567199707, + 0.11263243108987808, + -0.11643673479557037, + 0.7529957294464111, + -0.29153406620025635, + 0.26043957471847534, + -0.07454895973205566, + 0.33856478333473206, + 0.015002699568867683, + -0.32759442925453186, + -0.06368181109428406, + 0.4137195348739624, + -0.3097810745239258, + 0.5630106329917908, + 0.25552898645401, + -0.2706289291381836, + -0.019491931423544884, + -0.24032476544380188, + 0.3725490868091583, + 0.2269134521484375, + 0.35143667459487915, + -0.23887617886066437, + -0.15470941364765167, + -0.30493372678756714, + 0.06921195983886719, + -0.3510269522666931, + -0.3648751378059387, + -0.0038642564322799444, + 0.06709478795528412, + 0.005897081457078457, + -0.018254932016134262, + 0.2236310839653015, + 0.17854249477386475, + -0.12102644890546799, + -0.30600112676620483, + -0.4415149688720703, + -0.16290120780467987, + 0.13726702332496643, + 0.7014641761779785, + 0.14738792181015015, + -0.06851441413164139, + -0.07616463303565979, + 0.11884336918592453, + -0.10460691154003143, + 0.14004094898700714, + 0.10224667936563492, + -0.10575269907712936, + -0.4455963373184204, + 0.2187933772802353, + 0.11657366156578064, + -0.36225244402885437, + -0.11192493885755539, + -0.18393632769584656, + -0.053965553641319275, + 0.039524998515844345, + -0.18326681852340698, + 0.11368680000305176, + 0.3053017258644104, + -0.07614734768867493, + 0.009059018455445766, + -0.3483671545982361, + 0.022134581580758095, + 0.22603827714920044, + 0.3050978481769562, + -0.011491991579532623, + -0.2535531520843506, + -0.3099564015865326, + -0.5315080285072327, + 0.16372686624526978, + -0.47730153799057007, + -0.11095919460058212, + 0.2272912710905075, + 0.14273248612880707, + -0.2623544931411743, + 0.19839149713516235, + -0.14956943690776825, + 0.04175884649157524, + -0.2752734422683716, + 0.33233675360679626, + 0.49699699878692627, + -0.359591543674469, + 0.19793137907981873, + -0.1863759309053421, + 0.457620769739151, + 0.16683675348758698, + -0.23269420862197876, + 0.1499941349029541, + -0.19909434020519257 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/graph_087.json b/src/benchmark/output/results/results_graph_087.json similarity index 99% rename from src/benchmark/output/results/graph_087.json rename to src/benchmark/output/results/results_graph_087.json index 318b54b..f7a7b9e 100644 --- a/src/benchmark/output/results/graph_087.json +++ b/src/benchmark/output/results/results_graph_087.json @@ -3,13 +3,13 @@ "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 56-year-old non-smoking male with pulmonary carcinosarcoma.\n\n**Initial Presentation (Step 1):**\nOn January 28, 2023, the patient presented at The Third People\u2019s Hospital of Yunnan Province with a progressively enlarging mass in the right neck. Imaging findings revealed multiple nodular shadows of various sizes within the right cervical region posterior to the sternocleidomastoid muscle and adjacent to the carotid artery sheath, which partially fused.\n\n**Diagnosis (Step 2):**\nCT scans confirmed the presence of a pulmonary malignancy with cervical and mediastinal lymph node metastasis. The largest mass measured approximately 3.8 cm x 2.6 cm with indistinct margins and uneven ring-shaped enhancement.\n\n**Biopsy and Pathological Diagnosis (Step 3):**\nA CT-guided puncture biopsy of the mass in the left inferior lobe of the lung was performed, which led to a pathological diagnosis of lung carcinosarcoma.\n\n**Immunohistochemistry and NGS Testing (Step 4):**\nImmunohistochemistry revealed a Ki-67 index of 80%, while Next-Generation Sequencing (NGS) detected mutations in the TMB gene. These results further supported the presence of pulmonary carcinomas.\n\n**Timeline:**\n\n* January 28, 2023: Patient presents with progressively enlarging neck mass and imaging findings consistent with pulmonary malignancy.\n* January 28, 2023: CT-guided puncture biopsy is performed to confirm diagnosis.\n* (Date not specified): Immunohistochemistry and NGS testing are performed.\n\n**Outcomes:**\nThe patient's condition remains active, with ongoing management of the pulmonary carcinosarcoma. The results of immunohistochemistry and NGS testing have provided valuable information for further treatment planning.\n\nNote: The timeline is incomplete as some dates were not specified in the original data.", "bertscore": { "precision": [ - 0.3337828814983368 + 0.547805905342102 ], "recall": [ - 0.4093906879425049 + 0.6741754412651062 ], "f1": [ - 0.3677407205104828 + 0.6044565439224243 ] }, "topology": { diff --git a/src/benchmark/output/results/results_graph_088.json b/src/benchmark/output/results/results_graph_088.json new file mode 100644 index 0000000..f5bb449 --- /dev/null +++ b/src/benchmark/output/results/results_graph_088.json @@ -0,0 +1,795 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is an [age]-year-old female with a history of [relevant medical conditions]. She was diagnosed with [primary diagnosis] in [month/year].\n\n**Timeline of Diagnoses and Treatments:**\n\n1. **Step 1 (N1):** The patient started treatment with osimertinib 160 mg in combination with phenytoin.\n2. **32 months after initiating osimertinib (N2):** A CT scan was performed, showing overall stable visceral and osseous disease. However, the left pleural effusion had completely resolved, while the right pleural effusion remained stable in size.\n3. **Patient developed nail changes with increasing brittleness (grade 1) (N3):** Seizure activity remained well controlled, but persistent dyspnea was noted.\n4. **Echocardiogram, exercise stress testing, cardiopulmonary exercise test, and pulmonary function tests (PFTs) were performed (N4):** These tests showed evidence of chronic obstructive lung disease (COPD) and emphysema.\n5. **Osimertinib dose was reduced to 80 mg daily for one week, then resumed at 160 mg daily due to persistent dyspnea (N5):** Despite the dose reduction, dyspnea did not significantly improve.\n6. **Patient achieved prolonged disease control on osimertinib treatment with continued osimertinib at a dose of 160 mg daily (N6):** Disease progression later stabilized following three cycles of carboplatin/pemetrexed.\n\n**Outcomes:**\n\n* The patient's dyspnea did not significantly improve despite the dose reduction of osimertinib.\n* However, she achieved prolonged disease control on osimertinib treatment with continued osimertinib at a dose of 160 mg daily.\n* The patient's COPD and emphysema were diagnosed and managed effectively.\n\n**Conclusion:**\nThe patient was initially treated with osimertinib 160 mg in combination with phenytoin. After 32 months, a CT scan showed overall stable disease, but persistent dyspnea remained a concern. Despite a dose reduction of osimertinib, the patient's dyspnea did not improve significantly. However, she achieved prolonged disease control on osimertinib treatment with continued dosing at 160 mg daily, and her COPD and emphysema were effectively managed.\n\n**Recommendations:**\n\n* Continue to monitor the patient's dyspnea and adjust the osimertinib dose as needed.\n* Consider adding additional treatments for COPD and emphysema, such as bronchodilators or corticosteroids.\n* Regularly review the patient's disease progression and adjust the treatment plan accordingly.", + "bertscore": { + "precision": [ + 0.5367745161056519 + ], + "recall": [ + 0.6528466939926147 + ], + "f1": [ + 0.5891479849815369 + ] + }, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 6, + "edge_count": 5, + "avg_in_degree": 0.8333333333333334, + "density": 0.16666666666666666 + }, + "trajectory_embedding": [ + 0.0932932123541832, + 0.22252197563648224, + -0.14526592195034027, + 0.15939070284366608, + -0.20974844694137573, + -0.031670670956373215, + -0.08481299877166748, + 0.16466908156871796, + 0.41577473282814026, + -0.0943373441696167, + -0.1593114733695984, + 0.17494191229343414, + -0.625055193901062, + -0.19611741602420807, + -0.2852177917957306, + 0.02521532028913498, + 0.10379129648208618, + 0.2883397042751312, + 0.039058659225702286, + -0.2755471169948578, + -0.13961149752140045, + 0.07383914291858673, + -0.4290246069431305, + -0.09295108914375305, + 0.057183992117643356, + -0.005033988505601883, + 0.16968488693237305, + 0.550330400466919, + 0.12917135655879974, + 0.348595529794693, + 0.186366006731987, + 0.10570526123046875, + -0.20654137432575226, + 0.1105787456035614, + -0.04829126596450806, + 0.25487256050109863, + 0.1223161593079567, + 0.23927462100982666, + 0.021722251549363136, + -0.08944636583328247, + -0.20376800000667572, + 0.16122068464756012, + 0.7655620574951172, + 0.15032429993152618, + 0.3587258756160736, + -0.7324102520942688, + -0.0013372823596000671, + 0.5411903262138367, + -0.3529610335826874, + -0.07923353463411331, + 0.3170825242996216, + 0.6176950335502625, + 0.6656267046928406, + -0.13577334582805634, + 0.4729914963245392, + -0.1113671138882637, + -0.31638190150260925, + -0.2607385218143463, + -0.055906739085912704, + 0.06923358887434006, + 0.04643925651907921, + -0.07160087674856186, + 0.17371760308742523, + -0.04520362988114357, + -0.254146009683609, + -0.18158002197742462, + -0.14840969443321228, + 0.10518214851617813, + 0.07643141597509384, + -0.20122694969177246, + -0.24227969348430634, + -0.39551496505737305, + -0.21774864196777344, + 0.07412704825401306, + 0.08674605935811996, + -0.10720458626747131, + 0.2739469110965729, + 0.0050252825021743774, + 0.09816431999206543, + -0.10553467273712158, + 0.01047863531857729, + 0.29093900322914124, + 0.003038863418623805, + 0.27632996439933777, + -0.28523632884025574, + 0.2158323973417282, + -0.1680164933204651, + -0.09290950745344162, + -0.2393179088830948, + 0.11390490084886551, + 0.04863245412707329, + -0.1780092716217041, + 0.178677499294281, + -0.20120012760162354, + 0.16101135313510895, + -0.06491848826408386, + 0.3932929039001465, + 0.28297802805900574, + 0.8817350268363953, + 0.07312968373298645, + 0.2281792014837265, + 0.0653696283698082, + 0.04147519916296005, + -0.23874877393245697, + 0.3797897398471832, + -0.16572551429271698, + 0.12646734714508057, + -0.6004130244255066, + -0.005676046013832092, + 0.6325801014900208, + 0.08208435028791428, + -0.3366829454898834, + 0.24977701902389526, + -0.27412232756614685, + 0.059725116938352585, + 0.003313970984891057, + -0.06251013278961182, + 0.32798200845718384, + -0.0054982504807412624, + -0.3421112596988678, + -0.12478604167699814, + -0.2738487422466278, + 0.28364840149879456, + 0.3645917475223541, + -0.4146024286746979, + -0.150970920920372, + -0.06150759756565094, + 0.13552986085414886, + -0.016772761940956116, + 0.13218477368354797, + -0.39912402629852295, + -0.11100881546735764, + -0.07014258950948715, + 0.23228515684604645, + -0.07955313473939896, + 0.42818769812583923, + -0.4482235908508301, + 0.32592740654945374, + -1.121076226234436, + 0.12500505149364471, + -0.2968970835208893, + -0.05828837677836418, + -0.03016706369817257, + -0.5122116208076477, + -0.2014046162366867, + -0.01456458866596222, + -0.10602451115846634, + 0.06830257922410965, + -0.1427515596151352, + -0.10450319200754166, + -0.3104049265384674, + -0.022173697128891945, + 0.17479901015758514, + 0.2948418855667114, + -0.016613267362117767, + 0.13325060904026031, + 0.08553051948547363, + 0.39376235008239746, + 0.11496338248252869, + -0.07676418870687485, + 0.2038629800081253, + 0.3754045069217682, + -0.2587677240371704, + -0.23419640958309174, + 0.15835608541965485, + -0.5833010673522949, + 0.08061450719833374, + -0.15889407694339752, + 0.24345530569553375, + 0.11779540777206421, + -0.2417188137769699, + -0.037906184792518616, + -0.290595144033432, + 0.7134247422218323, + 0.22195668518543243, + 0.6084230542182922, + 0.12171473354101181, + 0.07777171581983566, + 0.4453684091567993, + -0.05838267505168915, + 0.14275552332401276, + -0.09459849447011948, + 0.4691775143146515, + 0.262114554643631, + -0.32795509696006775, + 0.1574448198080063, + 0.23015518486499786, + -0.05550314486026764, + -0.31759971380233765, + -0.052123814821243286, + 0.5047041773796082, + -0.1387498527765274, + 0.21028558909893036, + -0.23435695469379425, + 0.08573295921087265, + -0.03969031944870949, + -0.317074716091156, + -0.11806487292051315, + -0.04810910299420357, + -0.15949302911758423, + 0.2346198558807373, + 0.1542006880044937, + -0.28566974401474, + 0.1743888109922409, + 0.23759739100933075, + -0.11727970838546753, + 0.003042767522856593, + 0.03569648042321205, + -0.04866256192326546, + -0.2084188312292099, + 0.018093740567564964, + 0.1554110050201416, + 0.008794811554253101, + 0.2905615270137787, + 0.03705059736967087, + -0.3256799876689911, + -0.07616572827100754, + 0.012924755923449993, + -0.08372151106595993, + 0.10073862224817276, + 0.05460295453667641, + -0.030389586463570595, + -0.011835361830890179, + -0.011188171803951263, + -0.34309348464012146, + 0.29669561982154846, + 0.2920264005661011, + 0.3743865191936493, + 0.07021404802799225, + 0.022515086457133293, + 0.1665567308664322, + -0.327128142118454, + 0.20053505897521973, + -0.14016716182231903, + -0.09755033254623413, + -0.27957046031951904, + 0.21938996016979218, + 0.011866572313010693, + -0.13002045452594757, + 0.25996074080467224, + -0.13446612656116486, + -0.15759076178073883, + 0.2586289346218109, + -0.28047987818717957, + 0.16253159940242767, + -0.32659289240837097, + -0.2178090363740921, + 0.4286471903324127, + 0.27135494351387024, + 0.333317369222641, + 0.10836542397737503, + -0.02360733412206173, + 0.3055698573589325, + -0.22367429733276367, + -0.330165833234787, + -0.3856450021266937, + -0.11537948995828629, + -0.04488852247595787, + -0.35227322578430176, + -0.05516402795910835, + 0.03070908971130848, + -0.2456774264574051, + 0.20741312205791473, + -0.21256913244724274, + 0.017093835398554802, + -0.1584024876356125, + 0.1802026778459549, + 0.2443542629480362, + -0.12208431959152222, + 0.09206216782331467, + -0.21252624690532684, + -0.12058385461568832, + -0.20938904583454132, + -0.07793682813644409, + 0.17311197519302368, + 0.24984489381313324, + -0.16684909164905548, + 0.09921729564666748, + 0.22069485485553741, + -0.4771226644515991, + -0.20111916959285736, + 0.14713551104068756, + -0.2790726125240326, + 0.29010021686553955, + -0.2607676684856415, + 0.2741756737232208, + 0.14714883267879486, + -0.002378121018409729, + 0.20501069724559784, + 0.21468663215637207, + 0.4607539176940918, + -0.06178804114460945, + -0.08888629823923111, + -0.16321702301502228, + -0.0028973284643143415, + -0.043634116649627686, + -0.47478553652763367, + 0.2961576282978058, + -0.10930630564689636, + -0.008120897226035595, + -0.005853208247572184, + 0.017454298213124275, + 0.10650646686553955, + -0.20742261409759521, + -0.15158820152282715, + 0.45555996894836426, + 0.27598297595977783, + 0.09055165201425552, + 0.07321750372648239, + 0.18118508160114288, + 0.6698780059814453, + -0.03940422832965851, + -0.10483068972826004, + -0.06664181500673294, + -0.336637407541275, + -0.10703068226575851, + -0.07271743565797806, + 0.05023205280303955, + 0.444963663816452, + 0.02759489417076111, + -0.18860264122486115, + 0.4251619875431061, + -0.1526188850402832, + -0.14117762446403503, + -0.3042178452014923, + -0.20446975529193878, + -0.055175911635160446, + 0.02221716195344925, + 0.3359704911708832, + -0.1601865142583847, + -0.05650157853960991, + 0.3063613176345825, + -0.09893735498189926, + -0.05230790376663208, + 0.027952425181865692, + -0.14737868309020996, + -0.5083025693893433, + 0.3623875677585602, + -0.09405184537172318, + 0.11202395707368851, + 0.28499507904052734, + -0.09658050537109375, + -0.12097350507974625, + -0.16174669563770294, + 0.28881990909576416, + 0.08728750795125961, + 0.06457052379846573, + -0.12393930554389954, + 0.21874268352985382, + 0.09890226274728775, + 0.3422815799713135, + 0.19794480502605438, + 0.08238372951745987, + 0.14460323750972748, + -0.26665374636650085, + -0.3410116732120514, + -0.04103467985987663, + 0.04804569482803345, + 0.05400605872273445, + -0.27605491876602173, + -0.27048131823539734, + -0.02550983428955078, + 0.17242081463336945, + 0.2116464525461197, + -0.22502565383911133, + 0.04066767171025276, + 0.05732369422912598, + 0.03799021989107132, + 0.004102384205907583, + 0.49388399720191956, + 0.3559645712375641, + 0.01872328855097294, + 0.513965368270874, + 0.1997574120759964, + -0.09199824184179306, + 0.24667499959468842, + -0.02629281021654606, + 0.18290270864963531, + -0.15190823376178741, + -0.42685770988464355, + -0.3379993438720703, + 0.022679997608065605, + -0.041648443788290024, + -0.09315693378448486, + -0.044397469609975815, + -0.26226165890693665, + -0.08793700486421585, + -0.04223243519663811, + 0.0470975898206234, + 0.04715189337730408, + 0.2794052064418793, + -0.28929653763771057, + 0.4239053726196289, + -0.14235641062259674, + -0.19226020574569702, + 0.06801048666238785, + -0.052950188517570496, + 0.21022284030914307, + -0.21182076632976532, + -0.1057010069489479, + -0.11418718844652176, + 0.5331012606620789, + -0.0440969318151474, + -0.09433523565530777, + -0.1805032640695572, + -0.13420532643795013, + -0.2734861671924591, + -0.3608112037181854, + 0.09881559759378433, + -0.08297424763441086, + -0.0980168804526329, + -0.2254045009613037, + 0.12245756387710571, + -0.03783087059855461, + -0.27766934037208557, + -0.1458224505186081, + 0.048388123512268066, + 0.046347592025995255, + 0.05348365008831024, + 0.11280658096075058, + 0.3525538444519043, + 0.07776307314634323, + 0.4142664968967438, + -0.2357398271560669, + 0.25764039158821106, + 0.09710013121366501, + -0.24616561830043793, + 0.04311452805995941, + 0.08581709861755371, + -0.13949239253997803, + -0.019189268350601196, + 0.18605540692806244, + 0.03937113285064697, + -0.15369702875614166, + -0.09488817304372787, + -0.047470856457948685, + 0.11407341808080673, + -0.1617022305727005, + -0.17794841527938843, + 0.24191980063915253, + -0.10251930356025696, + 0.2323332577943802, + 0.17346979677677155, + -0.4152207374572754, + -0.18064694106578827, + -0.14092983305454254, + -0.3382721245288849, + 0.1548185795545578, + -0.05142590031027794, + -0.21200956404209137, + 0.021805040538311005, + -0.09549779444932938, + 0.17945365607738495, + 0.07128652185201645, + 0.19518804550170898, + 0.12036222219467163, + 0.26546913385391235, + -0.021182088181376457, + -0.33714184165000916, + 0.021989179775118828, + -0.3136853277683258, + -0.2949233651161194, + -0.17822706699371338, + 0.20928116142749786, + 0.23129267990589142, + -0.28014519810676575, + -0.08552839607000351, + 0.08937478065490723, + -0.24043051898479462, + -0.3183756172657013, + -0.16880659759044647, + -0.09631653875112534, + 0.49294087290763855, + 0.06170240417122841, + -0.1932736188173294, + 0.06529556959867477, + -0.36222633719444275, + 0.176583394408226, + 0.235460564494133, + 0.1392861008644104, + 0.27457138895988464, + 0.0989886149764061, + 0.04111700877547264, + 0.3945091962814331, + 0.02350730635225773, + 0.05301901698112488, + 0.2589324116706848, + -0.08525840193033218, + 0.23566363751888275, + -0.0915536880493164, + -0.10780002921819687, + 0.2865571975708008, + -0.34516027569770813, + 0.1579422503709793, + -0.1098853349685669, + 0.43606457114219666, + -0.29280754923820496, + -0.3270603120326996, + 0.013051782734692097, + -0.15463034808635712, + -0.11356935650110245, + -0.2170911282300949, + -0.08925988525152206, + 0.02894536592066288, + 0.11964192241430283, + -0.08322902768850327, + 0.14616519212722778, + 0.35460957884788513, + -0.0551704466342926, + 0.1321456879377365, + -0.2503812611103058, + -0.25734907388687134, + 0.07323399186134338, + 0.348968505859375, + 0.05030667781829834, + -0.20928005874156952, + -0.0066027045249938965, + 0.21576374769210815, + 0.18694205582141876, + -0.025540689006447792, + -0.05406864359974861, + 0.10758241266012192, + -0.10054022073745728, + 0.005688028875738382, + 0.211483433842659, + -0.07317795604467392, + 0.1860990971326828, + -0.28764408826828003, + 0.012710104696452618, + -0.026702264323830605, + -0.16530251502990723, + 0.1826000213623047, + -0.35041406750679016, + -0.6063994765281677, + 0.1740301251411438, + 0.10236053913831711, + 0.1292775422334671, + -0.11260899156332016, + 0.27551329135894775, + 0.46047136187553406, + 0.06269005686044693, + -0.1720420867204666, + 0.009614101611077785, + -0.4017919600009918, + 0.05386490002274513, + 0.13263826072216034, + -0.05590236559510231, + -0.0018665976822376251, + -0.046524304896593094, + 0.34903955459594727, + 0.2790030539035797, + 0.18543492257595062, + -0.38093772530555725, + 0.3401983082294464, + 0.3624304234981537, + 0.40966853499412537, + -0.3600245714187622, + -10.870512962341309, + 0.180294930934906, + -0.03554985299706459, + 0.4312049448490143, + -0.15606854856014252, + 0.14527128636837006, + -0.1766577810049057, + -0.13640731573104858, + 0.1269116997718811, + 0.05801498889923096, + -0.2637585699558258, + -0.10079621523618698, + 0.20725907385349274, + 0.005339592695236206, + 0.05540558695793152, + 0.01509036123752594, + -0.31256261467933655, + 0.17200994491577148, + 0.07886824011802673, + 0.10334396362304688, + 0.17954586446285248, + 0.41762158274650574, + -0.08780259639024734, + 0.09153036028146744, + 0.062205106019973755, + -0.015605275519192219, + -0.08163753896951675, + 0.41811075806617737, + 0.06718413531780243, + -0.2377891093492508, + 0.18298892676830292, + -0.07649048417806625, + -0.1470458060503006, + -0.14336064457893372, + -0.17270831763744354, + -0.29553452134132385, + -0.19606804847717285, + -0.05774223804473877, + -0.08318781852722168, + -0.22394001483917236, + -0.041662830859422684, + -0.11502647399902344, + 0.05314693972468376, + 0.2215041071176529, + -0.11389639973640442, + -0.6934958100318909, + -0.06640445441007614, + -1.475129246711731, + 0.07750623673200607, + 0.29980146884918213, + 0.5974081158638, + 0.08256556838750839, + 0.04333962872624397, + 0.0639515295624733, + -0.4313758313655853, + 0.017804378643631935, + -0.2359410971403122, + 0.0478404276072979, + 0.08634606003761292, + -0.004381199833005667, + 0.08870617300271988, + -0.08074883371591568, + 0.5249351263046265, + -0.4142329692840576, + -0.36986610293388367, + 0.1913277506828308, + -0.029002806171774864, + -0.011400774121284485, + -0.12002703547477722, + -0.4213210642337799, + -0.6017170548439026, + -0.14473982155323029, + -0.03069092333316803, + 0.14155088365077972, + 0.2949472665786743, + 0.07878261804580688, + -0.2586101293563843, + 0.15187357366085052, + -0.1685909479856491, + 0.2053777426481247, + 0.14729730784893036, + -0.07037488371133804, + 0.3162781000137329, + -0.047114331275224686, + -0.0038810856640338898, + -0.20487064123153687, + -0.005768758710473776, + 0.4125922620296478, + 0.14336548745632172, + -0.0019141919910907745, + -0.005232168827205896, + 0.20039354264736176, + -0.10362102836370468, + -0.11880900710821152, + -0.4662646949291229, + -0.10445310920476913, + -0.06667003780603409, + 0.11724800616502762, + 0.05141745135188103, + 0.03158038109540939, + -0.18259549140930176, + 0.06415187567472458, + 0.005868453066796064, + -0.34892940521240234, + -0.25719624757766724, + 0.3763006925582886, + 0.2551797926425934, + -0.04959214851260185, + 0.12653695046901703, + -0.10576946288347244, + 0.0917309820652008, + 0.2781619131565094, + 0.4160991907119751, + 0.5094340443611145, + 0.13598884642124176, + 0.09946203231811523, + -0.13307525217533112, + 0.062275033444166183, + -0.10977735370397568, + 0.15984125435352325, + 0.216755211353302, + 0.07127999514341354, + 0.2069898396730423, + 0.3911607563495636, + 0.08436664193868637, + -0.10696790367364883, + 0.7786993980407715, + -0.22766394913196564, + 0.3023633062839508, + -0.09521976113319397, + 0.2361452579498291, + 0.020686663687229156, + -0.3374462425708771, + -0.016439178958535194, + 0.23164601624011993, + -0.4531600773334503, + 0.352059006690979, + 0.08277871459722519, + -0.23703913390636444, + 0.02336391806602478, + -0.4467061460018158, + 0.4349687993526459, + 0.3632441461086273, + 0.37597575783729553, + -0.07526091486215591, + -0.30344393849372864, + -0.21311922371387482, + 0.19952942430973053, + -0.2564801871776581, + -0.24825572967529297, + 0.05567367747426033, + -0.15804757177829742, + 0.0069679333828389645, + -0.08759383112192154, + 0.326414555311203, + 0.12271643429994583, + -0.03332125023007393, + 0.002784608630463481, + -0.17578673362731934, + -0.18879537284374237, + 0.06531774252653122, + 0.43388092517852783, + 0.13352175056934357, + -0.025218287482857704, + -0.06184760853648186, + 0.3128725588321686, + -0.06870735436677933, + 0.1545356661081314, + 0.057919424027204514, + 0.028333552181720734, + -0.3591172695159912, + 0.09084191173315048, + 0.07145512104034424, + -0.15783746540546417, + -0.12509365379810333, + -0.3401971161365509, + 0.2230803519487381, + 0.13781367242336273, + -0.2879030704498291, + 0.2896013557910919, + 0.5541418194770813, + 0.007132460828870535, + -0.1171417236328125, + -0.3018569052219391, + 0.045847680419683456, + 0.16200213134288788, + 0.16914339363574982, + 0.08683129400014877, + -0.2957318127155304, + -0.29960572719573975, + -0.4268268644809723, + 0.15440618991851807, + -0.43740710616111755, + 0.09787005931138992, + 0.2530539333820343, + 0.021445520222187042, + -0.23829889297485352, + 0.10287903994321823, + 0.007923956029117107, + -0.06521789729595184, + -0.16930167376995087, + 0.07108300179243088, + 0.34331563115119934, + -0.5605292320251465, + 0.2891293466091156, + -0.0832212045788765, + 0.2333129197359085, + 0.1323695331811905, + -0.33683013916015625, + 0.1579608917236328, + -0.08386263996362686 + ] +} \ No newline at end of file diff --git a/src/benchmark/requirements.txt b/src/benchmark/requirements.txt index 469f8e8..1575e2b 100644 --- a/src/benchmark/requirements.txt +++ b/src/benchmark/requirements.txt @@ -8,4 +8,5 @@ scikit-learn seaborn matplotlib numpy -scipy \ No newline at end of file +scipy +bs4 \ No newline at end of file diff --git a/src/benchmark/setup_env.sh b/src/benchmark/setup_env.sh index 5360a9e..1b06582 100755 --- a/src/benchmark/setup_env.sh +++ b/src/benchmark/setup_env.sh @@ -18,8 +18,8 @@ else echo "No requirements.txt found. Skipping dependency installation." fi -# echo "Running main..." -# python3 batch_run.py +echo "Running main..." +python3 batch_run.py echo "Generating plots..." python3 generate_visuals.py \ No newline at end of file diff --git a/webapp/static/graphs/graph_002.json b/webapp/static/graphs/archive/graph_002.json similarity index 100% rename from webapp/static/graphs/graph_002.json rename to webapp/static/graphs/archive/graph_002.json diff --git a/webapp/static/graphs/graph_017.json b/webapp/static/graphs/archive/graph_017.json similarity index 100% rename from webapp/static/graphs/graph_017.json rename to webapp/static/graphs/archive/graph_017.json diff --git a/webapp/static/graphs/graph_060.json b/webapp/static/graphs/archive/graph_060.json similarity index 100% rename from webapp/static/graphs/graph_060.json rename to webapp/static/graphs/archive/graph_060.json diff --git a/webapp/static/graphs/graph_085.json b/webapp/static/graphs/archive/graph_085.json similarity index 100% rename from webapp/static/graphs/graph_085.json rename to webapp/static/graphs/archive/graph_085.json diff --git a/webapp/static/graphs/graph_021.json b/webapp/static/graphs/case_series/graph_021.json similarity index 100% rename from webapp/static/graphs/graph_021.json rename to webapp/static/graphs/case_series/graph_021.json diff --git a/webapp/static/graphs/graph_024.json b/webapp/static/graphs/case_series/graph_024.json similarity index 100% rename from webapp/static/graphs/graph_024.json rename to webapp/static/graphs/case_series/graph_024.json diff --git a/webapp/static/graphs/graph_030.json b/webapp/static/graphs/case_series/graph_030.json similarity index 100% rename from webapp/static/graphs/graph_030.json rename to webapp/static/graphs/case_series/graph_030.json diff --git a/webapp/static/graphs/graph_071.json b/webapp/static/graphs/case_series/graph_071.json similarity index 100% rename from webapp/static/graphs/graph_071.json rename to webapp/static/graphs/case_series/graph_071.json diff --git a/webapp/static/graphs/graph_078.json b/webapp/static/graphs/case_series/graph_078.json similarity index 100% rename from webapp/static/graphs/graph_078.json rename to webapp/static/graphs/case_series/graph_078.json diff --git a/webapp/static/graphs/graph_036.json b/webapp/static/graphs/special/graph_036.json similarity index 100% rename from webapp/static/graphs/graph_036.json rename to webapp/static/graphs/special/graph_036.json diff --git a/webapp/static/graphs/graph_055.json b/webapp/static/graphs/special/graph_055.json similarity index 100% rename from webapp/static/graphs/graph_055.json rename to webapp/static/graphs/special/graph_055.json diff --git a/webapp/static/graphs/graph_063.json b/webapp/static/graphs/special/graph_063.json similarity index 100% rename from webapp/static/graphs/graph_063.json rename to webapp/static/graphs/special/graph_063.json diff --git a/webapp/static/pmc_htmls/Developing_an_Integrated_Service_Planning_Tool__Lessons_Learnt_from_Planning_the_PMC12023144.html b/webapp/static/pmc_htmls/archive/Developing_an_Integrated_Service_Planning_Tool__Lessons_Learnt_from_Planning_the_PMC12023144.html similarity index 100% rename from webapp/static/pmc_htmls/Developing_an_Integrated_Service_Planning_Tool__Lessons_Learnt_from_Planning_the_PMC12023144.html rename to webapp/static/pmc_htmls/archive/Developing_an_Integrated_Service_Planning_Tool__Lessons_Learnt_from_Planning_the_PMC12023144.html diff --git a/webapp/static/pmc_htmls/Safety_and_Performance_of_OptiVantage__a_CT_Contrast_Media_Injector__in_Multi_Pa_PMC12002069.html b/webapp/static/pmc_htmls/archive/Safety_and_Performance_of_OptiVantage__a_CT_Contrast_Media_Injector__in_Multi_Pa_PMC12002069.html similarity index 100% rename from webapp/static/pmc_htmls/Safety_and_Performance_of_OptiVantage__a_CT_Contrast_Media_Injector__in_Multi_Pa_PMC12002069.html rename to webapp/static/pmc_htmls/archive/Safety_and_Performance_of_OptiVantage__a_CT_Contrast_Media_Injector__in_Multi_Pa_PMC12002069.html diff --git a/webapp/static/pmc_htmls/_A_Case_of_Multiple_Primary_Pulmonary_Neuroendocrine_Carcinoma_with_EML4_ALK_Fus_PMC11986677.html b/webapp/static/pmc_htmls/archive/_A_Case_of_Multiple_Primary_Pulmonary_Neuroendocrine_Carcinoma_with_EML4_ALK_Fus_PMC11986677.html similarity index 100% rename from webapp/static/pmc_htmls/_A_Case_of_Multiple_Primary_Pulmonary_Neuroendocrine_Carcinoma_with_EML4_ALK_Fus_PMC11986677.html rename to webapp/static/pmc_htmls/archive/_A_Case_of_Multiple_Primary_Pulmonary_Neuroendocrine_Carcinoma_with_EML4_ALK_Fus_PMC11986677.html diff --git a/webapp/static/pmc_htmls/_Brain_and_Meningeal_Metastases_of_Lung_Cancer_Manifested_as_Brain_Calcification_PMC11986680.html b/webapp/static/pmc_htmls/archive/_Brain_and_Meningeal_Metastases_of_Lung_Cancer_Manifested_as_Brain_Calcification_PMC11986680.html similarity index 100% rename from webapp/static/pmc_htmls/_Brain_and_Meningeal_Metastases_of_Lung_Cancer_Manifested_as_Brain_Calcification_PMC11986680.html rename to webapp/static/pmc_htmls/archive/_Brain_and_Meningeal_Metastases_of_Lung_Cancer_Manifested_as_Brain_Calcification_PMC11986680.html diff --git a/webapp/static/pmc_htmls/Case_Report__Transforming_small_cell_lung_cancer__two_cases_report_and_literatur_PMC12003138.html b/webapp/static/pmc_htmls/case_series/Case_Report__Transforming_small_cell_lung_cancer__two_cases_report_and_literatur_PMC12003138.html similarity index 100% rename from webapp/static/pmc_htmls/Case_Report__Transforming_small_cell_lung_cancer__two_cases_report_and_literatur_PMC12003138.html rename to webapp/static/pmc_htmls/case_series/Case_Report__Transforming_small_cell_lung_cancer__two_cases_report_and_literatur_PMC12003138.html diff --git a/webapp/static/pmc_htmls/Early_Onset_COPD_and_Lung_Cancer__Case_Studies_Highlighting_Diagnostic_Challenge_PMC11970535.html b/webapp/static/pmc_htmls/case_series/Early_Onset_COPD_and_Lung_Cancer__Case_Studies_Highlighting_Diagnostic_Challenge_PMC11970535.html similarity index 100% rename from webapp/static/pmc_htmls/Early_Onset_COPD_and_Lung_Cancer__Case_Studies_Highlighting_Diagnostic_Challenge_PMC11970535.html rename to webapp/static/pmc_htmls/case_series/Early_Onset_COPD_and_Lung_Cancer__Case_Studies_Highlighting_Diagnostic_Challenge_PMC11970535.html diff --git a/webapp/static/pmc_htmls/Remarkable_Antitumor_Effects_and_Serious_Multiple_Immune_Related_Adverse_Events__PMC11991814.html b/webapp/static/pmc_htmls/case_series/Remarkable_Antitumor_Effects_and_Serious_Multiple_Immune_Related_Adverse_Events__PMC11991814.html similarity index 100% rename from webapp/static/pmc_htmls/Remarkable_Antitumor_Effects_and_Serious_Multiple_Immune_Related_Adverse_Events__PMC11991814.html rename to webapp/static/pmc_htmls/case_series/Remarkable_Antitumor_Effects_and_Serious_Multiple_Immune_Related_Adverse_Events__PMC11991814.html diff --git a/webapp/static/pmc_htmls/Therapeutic_efficacy_of_albuvirtide_based_antiretroviral_therapy_in_people_livin_PMC12008952.html b/webapp/static/pmc_htmls/case_series/Therapeutic_efficacy_of_albuvirtide_based_antiretroviral_therapy_in_people_livin_PMC12008952.html similarity index 100% rename from webapp/static/pmc_htmls/Therapeutic_efficacy_of_albuvirtide_based_antiretroviral_therapy_in_people_livin_PMC12008952.html rename to webapp/static/pmc_htmls/case_series/Therapeutic_efficacy_of_albuvirtide_based_antiretroviral_therapy_in_people_livin_PMC12008952.html diff --git a/webapp/static/pmc_htmls/Unmasking_the_mimic__lipoid_pneumonia_imitating_primary_lung_cancer___a_case_rep_PMC11985431.html b/webapp/static/pmc_htmls/case_series/Unmasking_the_mimic__lipoid_pneumonia_imitating_primary_lung_cancer___a_case_rep_PMC11985431.html similarity index 100% rename from webapp/static/pmc_htmls/Unmasking_the_mimic__lipoid_pneumonia_imitating_primary_lung_cancer___a_case_rep_PMC11985431.html rename to webapp/static/pmc_htmls/case_series/Unmasking_the_mimic__lipoid_pneumonia_imitating_primary_lung_cancer___a_case_rep_PMC11985431.html diff --git a/webapp/static/pmc_htmls/A_Case_of_Lung_Squamous_Cell_Carcinoma_Harboring_TP53_Mutation_and_PLPP5_FGFR1_F_PMC12004084.html b/webapp/static/pmc_htmls/special/A_Case_of_Lung_Squamous_Cell_Carcinoma_Harboring_TP53_Mutation_and_PLPP5_FGFR1_F_PMC12004084.html similarity index 100% rename from webapp/static/pmc_htmls/A_Case_of_Lung_Squamous_Cell_Carcinoma_Harboring_TP53_Mutation_and_PLPP5_FGFR1_F_PMC12004084.html rename to webapp/static/pmc_htmls/special/A_Case_of_Lung_Squamous_Cell_Carcinoma_Harboring_TP53_Mutation_and_PLPP5_FGFR1_F_PMC12004084.html diff --git a/webapp/static/pmc_htmls/Case_Report__Subacute_cutaneous_lupus_erythematosus_induced_by_the_anti_PD_1_ant_PMC11985835.html b/webapp/static/pmc_htmls/special/Case_Report__Subacute_cutaneous_lupus_erythematosus_induced_by_the_anti_PD_1_ant_PMC11985835.html similarity index 100% rename from webapp/static/pmc_htmls/Case_Report__Subacute_cutaneous_lupus_erythematosus_induced_by_the_anti_PD_1_ant_PMC11985835.html rename to webapp/static/pmc_htmls/special/Case_Report__Subacute_cutaneous_lupus_erythematosus_induced_by_the_anti_PD_1_ant_PMC11985835.html diff --git a/webapp/static/pmc_htmls/Successful_Management_of_Acquired_von_Willebrand_Syndrome_Associated_with_Monocl_PMC12027059.html b/webapp/static/pmc_htmls/special/Successful_Management_of_Acquired_von_Willebrand_Syndrome_Associated_with_Monocl_PMC12027059.html similarity index 100% rename from webapp/static/pmc_htmls/Successful_Management_of_Acquired_von_Willebrand_Syndrome_Associated_with_Monocl_PMC12027059.html rename to webapp/static/pmc_htmls/special/Successful_Management_of_Acquired_von_Willebrand_Syndrome_Associated_with_Monocl_PMC12027059.html From 09f3b5144e4f0ef8a8d061c0f7e444cbf642a410 Mon Sep 17 00:00:00 2001 From: Vicky Bikia Date: Sat, 10 May 2025 14:04:02 -0700 Subject: [PATCH 04/11] Update in --- ...nchmarking: Design Rules and Guidelines.md | 94 ++++++++++++++ src/benchmark/README.md | 122 ++++++++---------- src/benchmark/modules/visualization_utils.py | 26 +++- src/benchmark/requirements.txt | 3 +- .../{setup_env.sh => setup_and_run.sh} | 4 +- 5 files changed, 174 insertions(+), 75 deletions(-) create mode 100644 src/benchmark/Modular Benchmarking: Design Rules and Guidelines.md rename src/benchmark/{setup_env.sh => setup_and_run.sh} (91%) diff --git a/src/benchmark/Modular Benchmarking: Design Rules and Guidelines.md b/src/benchmark/Modular Benchmarking: Design Rules and Guidelines.md new file mode 100644 index 0000000..aa12319 --- /dev/null +++ b/src/benchmark/Modular Benchmarking: Design Rules and Guidelines.md @@ -0,0 +1,94 @@ +## Modular Benchmarking: Design Rules and Guidelines + +To support benchmarking across any task, data function, or model type, a modular benchmark must be built from interchangeable, well-scoped components. The following rules define how to structure such a benchmark to support flexibility, extensibility, and insight. + +--- + +### Rule 1: Decompose into independent axes +Separate all components of the system under test into **three disjoint axes**: + +- **Data function**: A parameterized function or generator that defines input-output pairs under specific sampling, augmentation, or preprocessing schemes. +- **Model interface**: A callable or wrapped object that takes input and returns predictions, with a clear API across model types. +- **Evaluation kernel**: A set of metrics or transformation functions that take predictions and targets and return scores, possibly per slice. + +Each axis must be independently swappable without requiring changes to the others. + +--- + +### Rule 2: Treat data as a first-class function +Data should not be loaded as static artifacts but built as **declarative recipes** with clearly scoped variability: + +- Input: Sampling strategy, transformation pipeline, split logic, perturbation level +- Output: Deterministic or stochastic dataset objects conforming to a unified format +- Example: `data_fn(task='translation', domain='medical', noise=0.1) -> Dataset` + +This ensures all experiments can vary data meaningfully and reproducibly. + +--- + +### Rule 3: Enforce interface constraints +Every component must conform to a simple, well-documented API: + +- **Model**: `predict(batch) -> outputs` +- **Evaluator**: `evaluate(preds, targets, **kwargs) -> score_dict` +- **Data function**: `data_config -> dataset object or iterator` + +Adapters should be used to wrap legacy models or datasets into these interfaces. + +--- + +### Rule 4: Capture all variation as configuration +All variable aspects (e.g., seed, data slice, model variant, metric set) must be represented as **configurable parameters**, not code changes. This allows: + +- Automatic sweep generation +- Logging and reproducibility +- Interpolation across experimental conditions + +Prefer structured configs (e.g., YAML, Pydantic) over hardcoded logic. + +--- + +### Rule 5: Benchmark = Cartesian product of controlled variations +A benchmark run is defined as the evaluation over a **Cartesian product** of selected variations from each axis: + +- `(model_i, data_j, eval_k) → score_ijk` + +This allows benchmarking to expose not just best performers but meaningful **interactions** between choices. + +--- + +### Rule 6: Support hierarchical slicing and stratification +To assess robustness and generalization, benchmarks must allow evaluation over: + +- Subpopulations (e.g., by label, length, domain, metadata) +- Perturbations (e.g., noisy, adversarial, low-resource) +- Shifts (e.g., domain, temporal, source-target pairs) + +Evaluators must optionally support slice-aware evaluation: `evaluate(preds, targets, slices=...)`. + +--- + +### Rule 7: Log provenance at every level +Every benchmark result must be traceable back to: + +- The exact model config +- The data function and its parameters +- The evaluation strategy and metric set +- The random seed and runtime environment + +All runs should emit structured metadata with full parameter context (e.g., JSON, database, or hashable IDs). + +--- + +### Rule 8: No single score without decomposition +Avoid single-number metrics without exposing score components: + +- Report per-slice, per-class, or per-perturbation breakdowns +- Visualize variance, not just central tendencies +- Make performance *explainable*, not just measurable + +Benchmarks should yield diagnostic insight, not just rankings. + +--- + +These rules make benchmarking **composable**, **transparent**, and **task-agnostic**, enabling research to scale across problem types while remaining grounded in meaningful comparisons. diff --git a/src/benchmark/README.md b/src/benchmark/README.md index aa12319..939e69e 100644 --- a/src/benchmark/README.md +++ b/src/benchmark/README.md @@ -1,94 +1,76 @@ -## Modular Benchmarking: Design Rules and Guidelines +# 📊 Benchmarking Pipeline for Graph-Based Biomedical Case Reports -To support benchmarking across any task, data function, or model type, a modular benchmark must be built from interchangeable, well-scoped components. The following rules define how to structure such a benchmark to support flexibility, extensibility, and insight. +This repository contains a benchmarking framework for analyzing and visualizing the performance of NLP models (e.g., `BERTScore`) on biomedical case reports represented as graphs. It includes tools for: ---- - -### Rule 1: Decompose into independent axes -Separate all components of the system under test into **three disjoint axes**: - -- **Data function**: A parameterized function or generator that defines input-output pairs under specific sampling, augmentation, or preprocessing schemes. -- **Model interface**: A callable or wrapped object that takes input and returns predictions, with a clear API across model types. -- **Evaluation kernel**: A set of metrics or transformation functions that take predictions and targets and return scores, possibly per slice. - -Each axis must be independently swappable without requiring changes to the others. - ---- - -### Rule 2: Treat data as a first-class function -Data should not be loaded as static artifacts but built as **declarative recipes** with clearly scoped variability: - -- Input: Sampling strategy, transformation pipeline, split logic, perturbation level -- Output: Deterministic or stochastic dataset objects conforming to a unified format -- Example: `data_fn(task='translation', domain='medical', noise=0.1) -> Dataset` - -This ensures all experiments can vary data meaningfully and reproducibly. +- Computing similarity scores (e.g., `BERTScore`, `ROUGE`, `BLEU`) +- Visualizing results (`F1` plots, `t-SNE`, topology distributions) +- Summarizing metrics in tables +- Preparing data for downstream evaluations --- -### Rule 3: Enforce interface constraints -Every component must conform to a simple, well-documented API: - -- **Model**: `predict(batch) -> outputs` -- **Evaluator**: `evaluate(preds, targets, **kwargs) -> score_dict` -- **Data function**: `data_config -> dataset object or iterator` +## 🔧 Setup Instructions -Adapters should be used to wrap legacy models or datasets into these interfaces. +To set up the environment and run the benchmark scripts, use the provided shell script: ---- - -### Rule 4: Capture all variation as configuration -All variable aspects (e.g., seed, data slice, model variant, metric set) must be represented as **configurable parameters**, not code changes. This allows: - -- Automatic sweep generation -- Logging and reproducibility -- Interpolation across experimental conditions +```bash +bash setup_and_run.sh +``` -Prefer structured configs (e.g., YAML, Pydantic) over hardcoded logic. +This script: +- Creates a Python 3.11 virtual environment +- Installs dependencies from `requirements.txt` +- Runs the benchmark modules as well as the visualization module to generate summary plots --- -### Rule 5: Benchmark = Cartesian product of controlled variations -A benchmark run is defined as the evaluation over a **Cartesian product** of selected variations from each axis: - -- `(model_i, data_j, eval_k) → score_ijk` - -This allows benchmarking to expose not just best performers but meaningful **interactions** between choices. +## 🗂 Directory Structure + +``` +src/ +└── benchmark/ + │ + ├── batch_run.py # Main script to execute benchmarking + ├── generate_visuals.py # Generates plots and summary tables + ├── requirements.txt # Python dependencies + ├── setup_and_run.sh # Script to setup the environment and run visuals + ├── output/ + │ ├── results/ # Directory where results are saved + │ └── plots/ # Directory where plots are saved + └── modules/ + ├── __init__.py # Marks the directory as a Python package + ├── config.py # Contains configuration variables and constants for the benchmarking pipeline + ├── embedding.py # Functions for computing and managing graph or text embeddings + ├── evalution.py # Evaluation metrics (e.g., BERTScore, ROUGE, BLEU) and utility functions + ├── io_utils.py # File I/O helper functions (e.g., loading graphs, saving outputs) + ├── logging_utils.py # Configures logging for tracking experiment progress and debugging + ├── reconstruciton.py # Graph or text reconstruction methods from processed data + ├── regex_utils.py # Utility functions for pattern matching and extraction using regular expressions + ├── run_benchmark.py # Orchestrates the full benchmarking pipeline + └── visualization.py # Plotting functions for visual summaries and metric reporting +``` --- -### Rule 6: Support hierarchical slicing and stratification -To assess robustness and generalization, benchmarks must allow evaluation over: +## 📉 Outputs -- Subpopulations (e.g., by label, length, domain, metadata) -- Perturbations (e.g., noisy, adversarial, low-resource) -- Shifts (e.g., domain, temporal, source-target pairs) - -Evaluators must optionally support slice-aware evaluation: `evaluate(preds, targets, slices=...)`. +- `output/plots/bertscore_f1_barplot.png` – Bar chart of BERTScore F1 scores +- `output/plots/trajectory_tsne.png` – 2D t-SNE embedding of graph trajectories +- `output/plots/topology_distributions.png` – Histograms of node and edge counts +- `bertscore_stats.csv` – Summary statistics of BERTScore F1 (optional export) --- -### Rule 7: Log provenance at every level -Every benchmark result must be traceable back to: +## 📊 Example Metrics -- The exact model config -- The data function and its parameters -- The evaluation strategy and metric set -- The random seed and runtime environment +If you're using string similarity tools, results may include: -All runs should emit structured metadata with full parameter context (e.g., JSON, database, or hashable IDs). +- `ROUGE-1`, `ROUGE-2`, `ROUGE-L` +- `BLEU` score +- Mean, median, std deviation, and percentiles of F1 scores --- -### Rule 8: No single score without decomposition -Avoid single-number metrics without exposing score components: - -- Report per-slice, per-class, or per-perturbation breakdowns -- Visualize variance, not just central tendencies -- Make performance *explainable*, not just measurable - -Benchmarks should yield diagnostic insight, not just rankings. - ---- +## 📬 Contact -These rules make benchmarking **composable**, **transparent**, and **task-agnostic**, enabling research to scale across problem types while remaining grounded in meaningful comparisons. +For questions or contributions, please contact the maintainers of the [Daneshjou Lab](https://daneshjoulab.stanford.edu). diff --git a/src/benchmark/modules/visualization_utils.py b/src/benchmark/modules/visualization_utils.py index b80aff2..db6862b 100644 --- a/src/benchmark/modules/visualization_utils.py +++ b/src/benchmark/modules/visualization_utils.py @@ -13,14 +13,36 @@ import matplotlib.pyplot as plt import seaborn as sns import pandas as pd +import numpy as np from sklearn.manifold import TSNE +import evaluate PLOTS_DIR = "output/plots" os.makedirs(PLOTS_DIR, exist_ok=True) -def plot_bertscore_f1(graph_ids, bertscore_f1): - """Bar plot of BERTScore F1 for each graph.""" +def plot_bertscore_f1(graph_ids, bertscore_f1, export_path=None): + """Bar plot of BERTScore F1 for each graph, with summary statistics saved to CSV.""" + # Calculate statistics + f1_array = np.array(bertscore_f1) + stats = { + "Mean": np.mean(f1_array), + "Median": np.median(f1_array), + "Standard Deviation": np.std(f1_array), + "25th Percentile (Q1)": np.percentile(f1_array, 25), + "75th Percentile (Q3)": np.percentile(f1_array, 75) + } + + # Print stats + for k, v in stats.items(): + print(f"{k}: {v:.3f}") + + # Save to CSV if export path is given + if export_path is not None: + stats_df = pd.DataFrame([stats]) + stats_df.to_csv(export_path, index=False) + + # Plotting _, ax = plt.subplots() sns.barplot(x=graph_ids, y=bertscore_f1, ax=ax) ax.set_title("BERTScore F1 per Graph") diff --git a/src/benchmark/requirements.txt b/src/benchmark/requirements.txt index 1575e2b..bd3fa1a 100644 --- a/src/benchmark/requirements.txt +++ b/src/benchmark/requirements.txt @@ -9,4 +9,5 @@ seaborn matplotlib numpy scipy -bs4 \ No newline at end of file +bs4 +evaluate \ No newline at end of file diff --git a/src/benchmark/setup_env.sh b/src/benchmark/setup_and_run.sh similarity index 91% rename from src/benchmark/setup_env.sh rename to src/benchmark/setup_and_run.sh index 1b06582..5360a9e 100755 --- a/src/benchmark/setup_env.sh +++ b/src/benchmark/setup_and_run.sh @@ -18,8 +18,8 @@ else echo "No requirements.txt found. Skipping dependency installation." fi -echo "Running main..." -python3 batch_run.py +# echo "Running main..." +# python3 batch_run.py echo "Generating plots..." python3 generate_visuals.py \ No newline at end of file From 591989c73dde3965131f32d03d850890bf57fc26 Mon Sep 17 00:00:00 2001 From: Vicky Bikia Date: Sat, 10 May 2025 16:09:07 -0700 Subject: [PATCH 05/11] Add string similarity metrics, remove preliminary testing results --- src/benchmark/batch_run.py | 14 +- src/benchmark/generate_visuals.py | 44 +- src/benchmark/modules/config.py | 3 - src/benchmark/modules/embedding.py | 9 +- src/benchmark/modules/evaluation.py | 139 ++- src/benchmark/modules/io_utils.py | 47 +- src/benchmark/modules/run_benchmark.py | 44 +- src/benchmark/modules/visualization_utils.py | 69 +- .../output/plots/bertscore_f1_barplot.png | Bin 30199 -> 18136 bytes .../output/plots/topology_distributions.png | Bin 45771 -> 31555 bytes .../output/plots/trajectory_tsne.png | Bin 43188 -> 20685 bytes .../output/results/results_graph_001.json | 795 ------------------ .../output/results/results_graph_003.json | 795 ------------------ .../output/results/results_graph_004.json | 795 ------------------ .../output/results/results_graph_005.json | 795 ------------------ .../output/results/results_graph_006.json | 795 ------------------ .../output/results/results_graph_007.json | 795 ------------------ .../output/results/results_graph_008.json | 795 ------------------ .../output/results/results_graph_009.json | 795 ------------------ .../output/results/results_graph_010.json | 795 ------------------ .../output/results/results_graph_011.json | 795 ------------------ .../output/results/results_graph_012.json | 795 ------------------ .../output/results/results_graph_013.json | 795 ------------------ .../output/results/results_graph_014.json | 795 ------------------ .../output/results/results_graph_015.json | 795 ------------------ .../output/results/results_graph_016.json | 795 ------------------ .../output/results/results_graph_018.json | 795 ------------------ .../output/results/results_graph_019.json | 795 ------------------ .../output/results/results_graph_020.json | 795 ------------------ .../output/results/results_graph_022.json | 795 ------------------ .../output/results/results_graph_023.json | 795 ------------------ .../output/results/results_graph_025.json | 795 ------------------ .../output/results/results_graph_026.json | 795 ------------------ .../output/results/results_graph_027.json | 788 ----------------- .../output/results/results_graph_028.json | 795 ------------------ .../output/results/results_graph_029.json | 795 ------------------ .../output/results/results_graph_031.json | 795 ------------------ .../output/results/results_graph_032.json | 795 ------------------ .../output/results/results_graph_033.json | 795 ------------------ .../output/results/results_graph_034.json | 795 ------------------ .../output/results/results_graph_035.json | 795 ------------------ .../output/results/results_graph_037.json | 795 ------------------ .../output/results/results_graph_038.json | 795 ------------------ .../output/results/results_graph_039.json | 795 ------------------ .../output/results/results_graph_040.json | 795 ------------------ .../output/results/results_graph_041.json | 795 ------------------ .../output/results/results_graph_042.json | 795 ------------------ .../output/results/results_graph_043.json | 795 ------------------ .../output/results/results_graph_044.json | 795 ------------------ .../output/results/results_graph_045.json | 795 ------------------ .../output/results/results_graph_046.json | 795 ------------------ .../output/results/results_graph_047.json | 795 ------------------ .../output/results/results_graph_048.json | 795 ------------------ .../output/results/results_graph_049.json | 795 ------------------ .../output/results/results_graph_050.json | 795 ------------------ .../output/results/results_graph_051.json | 795 ------------------ .../output/results/results_graph_052.json | 795 ------------------ .../output/results/results_graph_053.json | 795 ------------------ .../output/results/results_graph_054.json | 795 ------------------ .../output/results/results_graph_056.json | 795 ------------------ .../output/results/results_graph_057.json | 795 ------------------ .../output/results/results_graph_058.json | 795 ------------------ .../output/results/results_graph_059.json | 795 ------------------ .../output/results/results_graph_061.json | 795 ------------------ .../output/results/results_graph_062.json | 795 ------------------ .../output/results/results_graph_064.json | 795 ------------------ .../output/results/results_graph_065.json | 795 ------------------ .../output/results/results_graph_066.json | 795 ------------------ .../output/results/results_graph_067.json | 795 ------------------ .../output/results/results_graph_068.json | 795 ------------------ .../output/results/results_graph_069.json | 795 ------------------ .../output/results/results_graph_070.json | 795 ------------------ .../output/results/results_graph_072.json | 795 ------------------ .../output/results/results_graph_073.json | 795 ------------------ .../output/results/results_graph_074.json | 795 ------------------ .../output/results/results_graph_075.json | 795 ------------------ .../output/results/results_graph_076.json | 795 ------------------ .../output/results/results_graph_077.json | 795 ------------------ .../output/results/results_graph_079.json | 795 ------------------ .../output/results/results_graph_080.json | 795 ------------------ .../output/results/results_graph_081.json | 795 ------------------ .../output/results/results_graph_082.json | 795 ------------------ .../output/results/results_graph_083.json | 795 ------------------ .../output/results/results_graph_084.json | 795 ------------------ .../output/results/results_graph_086.json | 795 ------------------ .../output/results/results_graph_087.json | 795 ------------------ .../output/results/results_graph_088.json | 795 ------------------ src/benchmark/requirements.txt | 5 +- src/benchmark/setup_and_run.sh | 4 +- src/graph/__init__.py | 9 - webapp/static/graphs/testset/graph_001.json | 344 ++++++++ webapp/static/graphs/testset/graph_012.json | 328 ++++++++ webapp/static/graphs/testset/graph_013.json | 492 +++++++++++ webapp/static/graphs/testset/graph_014.json | 135 +++ webapp/static/graphs/testset/graph_015.json | 45 + webapp/static/graphs/testset/graph_016.json | 333 ++++++++ webapp/static/graphs/testset/graph_018.json | 351 ++++++++ webapp/static/graphs/testset/graph_019.json | 396 +++++++++ webapp/static/graphs/testset/graph_020.json | 554 ++++++++++++ 99 files changed, 3279 insertions(+), 60499 deletions(-) delete mode 100644 src/benchmark/output/results/results_graph_001.json delete mode 100644 src/benchmark/output/results/results_graph_003.json delete mode 100644 src/benchmark/output/results/results_graph_004.json delete mode 100644 src/benchmark/output/results/results_graph_005.json delete mode 100644 src/benchmark/output/results/results_graph_006.json delete mode 100644 src/benchmark/output/results/results_graph_007.json delete mode 100644 src/benchmark/output/results/results_graph_008.json delete mode 100644 src/benchmark/output/results/results_graph_009.json delete mode 100644 src/benchmark/output/results/results_graph_010.json delete mode 100644 src/benchmark/output/results/results_graph_011.json delete mode 100644 src/benchmark/output/results/results_graph_012.json delete mode 100644 src/benchmark/output/results/results_graph_013.json delete mode 100644 src/benchmark/output/results/results_graph_014.json delete mode 100644 src/benchmark/output/results/results_graph_015.json delete mode 100644 src/benchmark/output/results/results_graph_016.json delete mode 100644 src/benchmark/output/results/results_graph_018.json delete mode 100644 src/benchmark/output/results/results_graph_019.json delete mode 100644 src/benchmark/output/results/results_graph_020.json delete mode 100644 src/benchmark/output/results/results_graph_022.json delete mode 100644 src/benchmark/output/results/results_graph_023.json delete mode 100644 src/benchmark/output/results/results_graph_025.json delete mode 100644 src/benchmark/output/results/results_graph_026.json delete mode 100644 src/benchmark/output/results/results_graph_027.json delete mode 100644 src/benchmark/output/results/results_graph_028.json delete mode 100644 src/benchmark/output/results/results_graph_029.json delete mode 100644 src/benchmark/output/results/results_graph_031.json delete mode 100644 src/benchmark/output/results/results_graph_032.json delete mode 100644 src/benchmark/output/results/results_graph_033.json delete mode 100644 src/benchmark/output/results/results_graph_034.json delete mode 100644 src/benchmark/output/results/results_graph_035.json delete mode 100644 src/benchmark/output/results/results_graph_037.json delete mode 100644 src/benchmark/output/results/results_graph_038.json delete mode 100644 src/benchmark/output/results/results_graph_039.json delete mode 100644 src/benchmark/output/results/results_graph_040.json delete mode 100644 src/benchmark/output/results/results_graph_041.json delete mode 100644 src/benchmark/output/results/results_graph_042.json delete mode 100644 src/benchmark/output/results/results_graph_043.json delete mode 100644 src/benchmark/output/results/results_graph_044.json delete mode 100644 src/benchmark/output/results/results_graph_045.json delete mode 100644 src/benchmark/output/results/results_graph_046.json delete mode 100644 src/benchmark/output/results/results_graph_047.json delete mode 100644 src/benchmark/output/results/results_graph_048.json delete mode 100644 src/benchmark/output/results/results_graph_049.json delete mode 100644 src/benchmark/output/results/results_graph_050.json delete mode 100644 src/benchmark/output/results/results_graph_051.json delete mode 100644 src/benchmark/output/results/results_graph_052.json delete mode 100644 src/benchmark/output/results/results_graph_053.json delete mode 100644 src/benchmark/output/results/results_graph_054.json delete mode 100644 src/benchmark/output/results/results_graph_056.json delete mode 100644 src/benchmark/output/results/results_graph_057.json delete mode 100644 src/benchmark/output/results/results_graph_058.json delete mode 100644 src/benchmark/output/results/results_graph_059.json delete mode 100644 src/benchmark/output/results/results_graph_061.json delete mode 100644 src/benchmark/output/results/results_graph_062.json delete mode 100644 src/benchmark/output/results/results_graph_064.json delete mode 100644 src/benchmark/output/results/results_graph_065.json delete mode 100644 src/benchmark/output/results/results_graph_066.json delete mode 100644 src/benchmark/output/results/results_graph_067.json delete mode 100644 src/benchmark/output/results/results_graph_068.json delete mode 100644 src/benchmark/output/results/results_graph_069.json delete mode 100644 src/benchmark/output/results/results_graph_070.json delete mode 100644 src/benchmark/output/results/results_graph_072.json delete mode 100644 src/benchmark/output/results/results_graph_073.json delete mode 100644 src/benchmark/output/results/results_graph_074.json delete mode 100644 src/benchmark/output/results/results_graph_075.json delete mode 100644 src/benchmark/output/results/results_graph_076.json delete mode 100644 src/benchmark/output/results/results_graph_077.json delete mode 100644 src/benchmark/output/results/results_graph_079.json delete mode 100644 src/benchmark/output/results/results_graph_080.json delete mode 100644 src/benchmark/output/results/results_graph_081.json delete mode 100644 src/benchmark/output/results/results_graph_082.json delete mode 100644 src/benchmark/output/results/results_graph_083.json delete mode 100644 src/benchmark/output/results/results_graph_084.json delete mode 100644 src/benchmark/output/results/results_graph_086.json delete mode 100644 src/benchmark/output/results/results_graph_087.json delete mode 100644 src/benchmark/output/results/results_graph_088.json create mode 100644 webapp/static/graphs/testset/graph_001.json create mode 100644 webapp/static/graphs/testset/graph_012.json create mode 100644 webapp/static/graphs/testset/graph_013.json create mode 100644 webapp/static/graphs/testset/graph_014.json create mode 100644 webapp/static/graphs/testset/graph_015.json create mode 100644 webapp/static/graphs/testset/graph_016.json create mode 100644 webapp/static/graphs/testset/graph_018.json create mode 100644 webapp/static/graphs/testset/graph_019.json create mode 100644 webapp/static/graphs/testset/graph_020.json diff --git a/src/benchmark/batch_run.py b/src/benchmark/batch_run.py index 1427c51..30edd4e 100644 --- a/src/benchmark/batch_run.py +++ b/src/benchmark/batch_run.py @@ -21,17 +21,20 @@ save_results, build_graph_to_text_mapping, extract_case_presentation_from_file, + summarize_metrics_statistics ) logger = setup_logger(__name__) # Input directory: All graph files -GRAPH_INPUT_DIR = Path(__file__).resolve().parents[2] / "webapp/static/graphs" +GRAPH_INPUT_DIR = Path(__file__).resolve().parents[2] / "webapp/static/graphs/" # Output directory: Results -RESULTS_OUTPUT_DIR = Path("output/results") +RESULTS_OUTPUT_DIR = Path("output/results/") RESULTS_OUTPUT_DIR.mkdir(parents=True, exist_ok=True) +METRIC_SUMMARY_OUTPUT_DIR = Path("output/results/plots/metric_summary.csv") + # Paths METADATA_CSV_PATH = Path(__file__).resolve().parents[2] / "webapp/static/graphs/mapping/graph_metadata.csv" @@ -45,7 +48,7 @@ if not graph_files: logger.warning("No JSON files found in input directory.") else: - for fpath in graph_files: #[:5]: Limit to first 5 files for demonstration + for fpath in graph_files: graph_id = fpath.stem html_path = graph_to_html.get(graph_id) @@ -65,12 +68,15 @@ cfg = { "reconstruct_params": {"include_nodes": True, "include_edges": True}, "bertscore": True, + "string_similarity": True, "topology": True, "trajectory_embedding": True, } results = run_pipeline(graph, reference_case_text, cfg) + output_path = RESULTS_OUTPUT_DIR / f"results_{graph_id}.json" save_results(results, output_path) - + + logger.info("Batch benchmarking completed.") diff --git a/src/benchmark/generate_visuals.py b/src/benchmark/generate_visuals.py index cc1c00e..607584a 100644 --- a/src/benchmark/generate_visuals.py +++ b/src/benchmark/generate_visuals.py @@ -15,6 +15,7 @@ from pathlib import Path sys.path.append(str(Path(__file__).resolve().parents[1])) # Adds 'src' to sys.path + from benchmark.modules.visualization_utils import ( plot_bertscore_f1, plot_tsne_embeddings, @@ -22,11 +23,18 @@ summarize_metrics_table ) -RESULTS_DIR = "output/results" +RESULTS_DIR = "output/results/testset_results" +PLOTS_DIR = "output/plots" +os.makedirs(PLOTS_DIR, exist_ok=True) # Lists to collect metrics graph_ids = [] bertscore_f1s = [] +bertscore_precisions = [] +bertscore_recalls = [] +bleu_scores = [] +rouge1_scores = [] +rougeL_scores = [] trajectory_embeddings = [] node_counts = [] edge_counts = [] @@ -41,8 +49,26 @@ graph_ids.append(graph_id) # Get BERTScore F1 - f1 = result.get("bertscore", {}).get("f1", [np.nan])[0] + bertscore = result.get("bertscore", {}) + + f1 = bertscore.get("f1", np.nan) + precision = bertscore.get("precision", np.nan) + recall = bertscore.get("recall", np.nan) + bertscore_f1s.append(f1) + bertscore_precisions.append(precision) + bertscore_recalls.append(recall) + + + # Get BLEU + bleu = result.get("bleu", np.nan) + bleu_scores.append(bleu) + + # Get ROUGE + rouge1 = result.get("rouge1", np.nan) + rougel = result.get("rougeL", np.nan) + rouge1_scores.append(rouge1) + rougeL_scores.append(rougel) # Get embedding emb = result.get("trajectory_embedding") @@ -67,6 +93,18 @@ plot_topology_distributions(node_counts, edge_counts) -summary_df = summarize_metrics_table(graph_ids, bertscore_f1s, node_counts, edge_counts) +# Create and save summary table +summary_df = summarize_metrics_table( + graph_ids, + bertscore_f1s, + bertscore_precisions, + bertscore_recalls, + bleu_scores, + rouge1_scores, + rougeL_scores, + node_counts, + edge_counts, + output_csv_path=os.path.join(PLOTS_DIR, "metrics_summary.csv") +) print("\n=== Summary Table ===") print(summary_df) diff --git a/src/benchmark/modules/config.py b/src/benchmark/modules/config.py index 17b4c76..e97153d 100644 --- a/src/benchmark/modules/config.py +++ b/src/benchmark/modules/config.py @@ -18,9 +18,6 @@ LM_API_BASE = "http://localhost:11434" LM_API_KEY = "" # or your local key if required -# BERTScore settings -BERTSCORE_MODEL = "bert-base-uncased" - # Trajectory Embedding settings TRAJECTORY_EMBEDDING_MODEL = "emilyalsentzer/Bio_ClinicalBERT" TEXT_FIELD_PATH = ["data", "commentary"] # e.g., node["data"]["commentary"] diff --git a/src/benchmark/modules/embedding.py b/src/benchmark/modules/embedding.py index 50c876f..fbca8ed 100644 --- a/src/benchmark/modules/embedding.py +++ b/src/benchmark/modules/embedding.py @@ -73,7 +73,14 @@ def embed_text(self, text: str) -> torch.Tensor: Returns: torch.Tensor: The embedding of the text. """ - inputs = self.tokenizer(text, return_tensors="pt", truncation=True, padding=True).to(self.device) + inputs = self.tokenizer( + text, + return_tensors="pt", + truncation=True, + padding=True, + max_length=512 + ).to(self.device) + with torch.no_grad(): outputs = self.model(**inputs) return outputs.last_hidden_state[0][0] diff --git a/src/benchmark/modules/evaluation.py b/src/benchmark/modules/evaluation.py index 22a61fd..029dc37 100644 --- a/src/benchmark/modules/evaluation.py +++ b/src/benchmark/modules/evaluation.py @@ -8,10 +8,15 @@ # pylint: disable=too-few-public-methods """This module contains evaluation classes for BERTScore and graph topology validation.""" -from typing import Any +from typing import Any, Optional from transformers import AutoTokenizer, AutoModel import networkx as nx -from bert_score import score +from bert_score import score as bert_score_fn +from nltk.tokenize import RegexpTokenizer +from nltk.translate.bleu_score import sentence_bleu, SmoothingFunction +from rouge_score import rouge_scorer +import numpy as np + # Local application imports from .config import Graph @@ -19,67 +24,79 @@ logger = setup_logger(__name__) +MAX_BERT_TOKENS = 512 class BERTScoreEvaluator: """ - Computes BERTScore (precision, recall, F1) between original and reconstructed texts. - - Usage: - evaluator = BERTScoreEvaluator(model_type="BERTSCORE_MODEL") - results = evaluator.evaluate( - refs=["ground truth text"], - cands=["model generated text"] - ) - # results -> {"precision": [...], "recall": [...], "f1": [...]} + Computes BERTScore (precision, recall, F1) using a custom model (e.g., Bio_ClinicalBERT), + truncating inputs longer than the model's max input length (512 tokens). """ - def __init__(self, model_type: str, device: str = None): + def __init__(self, model_type: str, device: Optional[str] = None): self.model_type = model_type - self.device = device # 'cuda', 'cpu', or None for auto-detection + self.device = device or "cpu" + + try: + self.tokenizer = AutoTokenizer.from_pretrained(self.model_type) + AutoModel.from_pretrained(self.model_type) # ensure model download + logger.info(f"Model {self.model_type} loaded successfully.") + except Exception as e: + logger.warning(f"Could not preload model: {self.model_type} — {e}") - # ── Ensure the checkpoint is available locally ── - # This will pull the tokenizer & model into ~/.cache/huggingface if missing. - AutoTokenizer.from_pretrained(self.model_type) - AutoModel.from_pretrained(self.model_type) + def truncate(self, text: str, max_tokens: int = MAX_BERT_TOKENS) -> str: + """ + Truncates a text to the first `max_tokens` tokens using the model's tokenizer. + """ + tokens = self.tokenizer.tokenize(text) + truncated_tokens = tokens[:max_tokens - 2] # Reserve 2 tokens for [CLS] and [SEP] + return self.tokenizer.convert_tokens_to_string(truncated_tokens) - def evaluate(self, refs: list[str], cands: list[str]) -> dict[str, list[float]]: + def evaluate(self, refs: list[str], cands: list[str]) -> dict[str, float]: """ + Computes BERTScore (mean) between reference and candidate texts. + Args: - refs: list of reference texts. - cands: list of candidate texts. + refs (list of str): Reference texts. + cands (list of str): Candidate/generated texts. Returns: - Dict with keys "precision", "recall", "f1" mapping to lists of scores. + dict[str, float]: Average precision, recall, and F1 scores. """ if not refs or not cands: - logger.warning("Empty references or candidates list") - return {"precision": [], "recall": [], "f1": []} + logger.warning("Empty references or candidates list.") + return {"precision": 0.0, "recall": 0.0, "f1": 0.0} if len(refs) != len(cands): - logger.warning( - f"Mismatched list lengths: refs={len(refs)}, cands={len(cands)}" - ) + logger.warning(f"Mismatched list lengths: refs={len(refs)}, cands={len(cands)}") + min_len = min(len(refs), len(cands)) + refs = refs[:min_len] + cands = cands[:min_len] + + # Truncate long sequences to avoid tensor mismatch + refs = [self.truncate(r) for r in refs] + cands = [self.truncate(c) for c in cands] try: - precision, recall, f1_score = score( - cands, - refs, - model_type=self.model_type, - device=self.device, - verbose=False, - ) + model_kwargs = { + "model_type": self.model_type, + "device": self.device, + "lang": "en", + "rescale_with_baseline": False, + "verbose": False, + "num_layers": 12 # Required for Bio_ClinicalBERT + } + + precision, recall, f1 = bert_score_fn(cands, refs, **model_kwargs) return { - "precision": precision.tolist(), - "recall": recall.tolist(), - "f1": f1_score.tolist(), + "precision": float(precision.mean().item()), + "recall": float(recall.mean().item()), + "f1": float(f1.mean().item()), } - except Exception as e: - logger.error(f"BERTScore evaluation failed: {str(e)}") - raise - -# GRAPH TOPOLOGY VALIDATION + except Exception as e: + logger.error(f"BERTScore evaluation failed: {e}") + return {"precision": 0.0, "recall": 0.0, "f1": 0.0} class TopologyValidator: @@ -150,3 +167,43 @@ def run(self) -> dict[str, Any]: "avg_in_degree": avg_in_deg, "density": density, } + + +class StringSimilarityEvaluator: + def __init__(self): + self.smoothie = SmoothingFunction().method4 + self.rouge = rouge_scorer.RougeScorer(['rouge1', 'rougeL'], use_stemmer=True) + self.tokenizer = RegexpTokenizer(r'\w+') + + def evaluate(self, refs, cands): + if not refs or not cands or len(refs) != len(cands): + raise ValueError("References and candidates must be non-empty lists of equal length.") + + bleu_scores = [] + rouge1_scores = [] + rougeL_scores = [] + + for ref, cand in zip(refs, cands): + ref_tokens = self.tokenizer.tokenize(ref.lower().strip()) + cand_tokens = self.tokenizer.tokenize(cand.lower().strip()) + + if not ref_tokens or not cand_tokens: + bleu_scores.append(0.0) + rouge1_scores.append(0.0) + rougeL_scores.append(0.0) + continue + + bleu = sentence_bleu([ref_tokens], cand_tokens, smoothing_function=self.smoothie) + scores = self.rouge.score(ref, cand) + + bleu_scores.append(bleu) + rouge1_scores.append(scores['rouge1'].fmeasure) + rougeL_scores.append(scores['rougeL'].fmeasure) + + print(f"BLEU: {bleu}, ROUGE-1: {scores['rouge1'].fmeasure}, ROUGE-L: {scores['rougeL'].fmeasure}") + + return { + "bleu": float(np.mean(bleu_scores)), + "rouge1": float(np.mean(rouge1_scores)), + "rougeL": float(np.mean(rougeL_scores)) + } \ No newline at end of file diff --git a/src/benchmark/modules/io_utils.py b/src/benchmark/modules/io_utils.py index 822a876..35dd975 100644 --- a/src/benchmark/modules/io_utils.py +++ b/src/benchmark/modules/io_utils.py @@ -16,6 +16,7 @@ from typing import Any import warnings import re +import pandas as pd # Third-party imports import networkx as nx @@ -62,6 +63,7 @@ def load_graph_from_file(path: str) -> tuple[nx.DiGraph, bool]: return nx.DiGraph(), False + def save_results(results: dict, path: str) -> None: """ Save the pipeline results to a JSON file. @@ -70,9 +72,8 @@ def save_results(results: dict, path: str) -> None: path (str): The path to the output file. """ os.makedirs(os.path.dirname(path), exist_ok=True) - with open(path, "w", encoding=UTF_8) as f: - json.dump(results, f, indent=2) - + with open(path, "w", encoding="utf-8") as f: + json.dump(results, f, indent=2, allow_nan=False) def data_display(results: dict[str, Any]) -> None: """ @@ -275,3 +276,43 @@ def extract_case_presentation_from_file(filepath: str) -> str: with open(filepath, "r", encoding="utf-8") as file: html = file.read() return extract_case_presentation(html) + +def summarize_metrics_statistics( + csv_path: str = "output/plots/metrics_summary.csv", + output_path: str = "output/plots/metrics_summary_stats.csv" +) -> pd.DataFrame: + """ + Reads the metrics summary CSV and returns + saves descriptive statistics + (mean, std, min, max) for all numeric metrics. + + Args: + csv_path (str): Path to the metrics_summary.csv file. + output_path (str): Path to save the output CSV of statistics. + + Returns: + pd.DataFrame: A summary DataFrame with statistics per metric. + """ + if not os.path.exists(csv_path): + raise FileNotFoundError(f"Metrics summary file not found at: {csv_path}") + + df = pd.read_csv(csv_path, on_bad_lines='skip') + + # Drop non-numeric columns + numeric_df = df.select_dtypes(include=["number"]) + + # Compute descriptive statistics + summary_stats = numeric_df.agg(['mean', 'std', 'min', 'max']).T + summary_stats = summary_stats.rename(columns={ + "mean": "Mean", + "std": "Std Dev", + "min": "Min", + "max": "Max" + }) + + # Save to CSV + print(f"Saving metrics summary stats to: {os.path.abspath(output_path)}") + + os.makedirs(os.path.dirname(output_path), exist_ok=True) + summary_stats.to_csv(output_path) + + return summary_stats \ No newline at end of file diff --git a/src/benchmark/modules/run_benchmark.py b/src/benchmark/modules/run_benchmark.py index 68fc2b8..cc8e680 100644 --- a/src/benchmark/modules/run_benchmark.py +++ b/src/benchmark/modules/run_benchmark.py @@ -18,14 +18,13 @@ # Local application imports from .reconstruction import LLMReconstructor -from .evaluation import BERTScoreEvaluator, TopologyValidator +from .evaluation import BERTScoreEvaluator, StringSimilarityEvaluator, TopologyValidator from .embedding import TrajectoryEmbedder from .regex_utils import RegexValidator from .config import ( LM_MODEL, LM_API_BASE, LM_API_KEY, - BERTSCORE_MODEL, TEXT_FIELD_PATH, TRAJECTORY_EMBEDDING_MODEL, Graph, @@ -44,13 +43,15 @@ def run_pipeline( Evaluates: 1. LLM-based narrative reconstruction 2. BERTScore (fidelity) - 3. Graph topology validation - 4. Optional regex check - 5. Trajectory-level embedding + 3. BLEU/ROUGE string similarity + 4. Graph topology validation + 5. Optional regex check + 6. Trajectory-level embedding Returns: dict: Structured results with intermediate metrics. """ + results = {"status": "success", "errors": []} # Validate input types @@ -81,22 +82,51 @@ def run_pipeline( results["status"] = "partial" results["errors"].append(msg) + # print("========= ORIGINAL TEXT =========:", original_text[:100]) + # print("========= NARRATIVE: =========", narrative[:100]) + # Fidelity Evaluation using BERTScore if config.get("bertscore") and narrative: try: logger.info("Starting BERTScore evaluation") - model_name = config.get("bertscore_model", BERTSCORE_MODEL) - evaluator = BERTScoreEvaluator(model_type=model_name) + evaluator = BERTScoreEvaluator(model_type=TRAJECTORY_EMBEDDING_MODEL) results["bertscore"] = evaluator.evaluate( refs=[original_text], cands=[narrative] ) + print(results["bertscore"]) logger.info("BERTScore evaluation completed") + except Exception as e: msg = f"BERTScore evaluation failed: {str(e)}" logger.error(msg) results["status"] = "partial" results["errors"].append(msg) + + # String Similarity (BLEU / ROUGE) + if config.get("string_similarity") and narrative and original_text: + try: + logger.info("Starting BLEU/ROUGE string similarity evaluation") + + string_evaluator = StringSimilarityEvaluator() + similarity_scores = string_evaluator.evaluate( + refs=[original_text], cands=[narrative] + ) + + # Store individual metrics in separate result fields + results["bleu"] = similarity_scores.get("bleu", 0.0) + results["rouge1"] = similarity_scores.get("rouge1", 0.0) + results["rougeL"] = similarity_scores.get("rougeL", 0.0) + + logger.info(f"String similarity evaluation completed: BLEU={results['bleu']:.4f}, " + f"ROUGE-1={results['rouge1']:.4f}, ROUGE-L={results['rougeL']:.4f}") + except Exception as e: + msg = f"String similarity evaluation failed: {str(e)}" + logger.error(msg) + results["status"] = "partial" + results.setdefault("errors", []).append(msg) + + # Graph Topology Validation if config.get("topology"): try: diff --git a/src/benchmark/modules/visualization_utils.py b/src/benchmark/modules/visualization_utils.py index db6862b..4871a00 100644 --- a/src/benchmark/modules/visualization_utils.py +++ b/src/benchmark/modules/visualization_utils.py @@ -21,6 +21,7 @@ os.makedirs(PLOTS_DIR, exist_ok=True) + def plot_bertscore_f1(graph_ids, bertscore_f1, export_path=None): """Bar plot of BERTScore F1 for each graph, with summary statistics saved to CSV.""" # Calculate statistics @@ -30,7 +31,7 @@ def plot_bertscore_f1(graph_ids, bertscore_f1, export_path=None): "Median": np.median(f1_array), "Standard Deviation": np.std(f1_array), "25th Percentile (Q1)": np.percentile(f1_array, 25), - "75th Percentile (Q3)": np.percentile(f1_array, 75) + "75th Percentile (Q3)": np.percentile(f1_array, 75), } # Print stats @@ -56,13 +57,17 @@ def plot_bertscore_f1(graph_ids, bertscore_f1, export_path=None): def plot_tsne_embeddings(embeddings, graph_ids): """2D t-SNE scatterplot for graph embeddings.""" - tsne_results = TSNE(n_components=2, perplexity=2, random_state=42).fit_transform(embeddings) + tsne_results = TSNE(n_components=2, perplexity=2, random_state=42).fit_transform( + embeddings + ) _, ax = plt.subplots() - sns.scatterplot(x=tsne_results[:, 0], y=tsne_results[:, 1], hue=graph_ids, s=100, ax=ax) + sns.scatterplot( + x=tsne_results[:, 0], y=tsne_results[:, 1], hue=graph_ids, s=100, ax=ax + ) ax.set_title("t-SNE of Trajectory Embeddings") ax.set_xlabel("Dimension 1") ax.set_ylabel("Dimension 2") - plt.legend(bbox_to_anchor=(1.05, 1), loc='upper left') + plt.legend(bbox_to_anchor=(1.05, 1), loc="upper left") plt.savefig(os.path.join(PLOTS_DIR, "trajectory_tsne.png")) plt.close() @@ -83,12 +88,52 @@ def plot_topology_distributions(node_counts, edge_counts): plt.close() -def summarize_metrics_table(graph_ids, bertscore_f1, node_counts, edge_counts): - """Create and return a summary DataFrame of key metrics per graph.""" - df = pd.DataFrame({ - "Graph ID": graph_ids, - "BERTScore F1": bertscore_f1, - "Nodes": node_counts, - "Edges": edge_counts - }) +def compute_string_similarity( + reference_texts, candidate_texts, metrics=["rouge", "bleu"] +): + """Compute string similarity metrics (ROUGE, BLEU) between reference and candidate texts. + + Args: + reference_texts (list of str): Ground truth strings. + candidate_texts (list of str): Generated strings. + metrics (list of str): Metrics to compute (default: ["rouge", "bleu"]). + + Returns: + dict: Dictionary of metric names and scores. + """ + results = {} + if "rouge" in metrics: + rouge = evaluate.load("rouge") + rouge_result = rouge.compute( + predictions=candidate_texts, references=reference_texts + ) + results.update({f"ROUGE-{k.upper()}": v for k, v in rouge_result.items()}) + + if "bleu" in metrics: + bleu = evaluate.load("bleu") + bleu_result = bleu.compute( + predictions=candidate_texts, references=reference_texts + ) + results["BLEU"] = bleu_result["bleu"] + + return results + + +def summarize_metrics_table(graph_ids, bertscore_f1, bertscore_precision, + bertscore_recall, bleu, rouge1, rougeL, node_counts, edge_counts, output_csv_path): + """Create and return a summary DataFrame of key metrics per graph, and save it as a CSV.""" + df = pd.DataFrame( + { + "Graph ID": graph_ids, + "BERTScore F1": bertscore_f1, + "BERTScore Precision": bertscore_precision, + "BERTScore Recall": bertscore_recall, + "BLEU": bleu, + "ROUGE-1": rouge1, + "ROUGE-L": rougeL, + "Nodes": node_counts, + "Edges": edge_counts, + } + ) + df.to_csv(output_csv_path, index=False) return df diff --git a/src/benchmark/output/plots/bertscore_f1_barplot.png b/src/benchmark/output/plots/bertscore_f1_barplot.png index c194c133afac9576af13bb0dc420338ef915d387..b766022ac8c59d7b77aafeccff3697121503bf5c 100644 GIT binary patch literal 18136 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 J%nN3B{s$K44}1Us literal 30199 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 diff --git a/src/benchmark/output/plots/trajectory_tsne.png b/src/benchmark/output/plots/trajectory_tsne.png index d284bb306ca3759f2bc5474c25911c5be7954349..c86e91e3aae21a4dfddd1d138580355f332e94f9 100644 GIT binary patch literal 20685 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Á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 Q#sV)@MGXbSBeQ`21JdCV8UO$Q diff --git a/src/benchmark/output/results/results_graph_001.json b/src/benchmark/output/results/results_graph_001.json deleted file mode 100644 index d7222c6..0000000 --- a/src/benchmark/output/results/results_graph_001.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 44-year-old male with no history of antitubercular treatment (ATT) intake. He has been a tobacco chewer for over 20 years.\n\n**Initial Presentation:**\nThe patient presented to the clinic with right-sided chest pain, dry cough, on-off fever, and hematuria for 2 months. Physical examination revealed decreased air entry on the right side of the lung.\n\n**Imaging and Diagnosis (Step 1-3):**\n\n* Contrast-enhanced computed tomography (CECT) thorax revealed a heterogeneous lesion in the mediastinal region abutting the horizontal fissure and cavitation within.\n* Bronchoscopy with bronchoscopic-guided biopsy and BAL was performed, which showed negative results for malignant cells. Biopsy results were suggestive of squamous cell carcinoma.\n\n**Symptoms and Imaging (Step 4-5):**\n\n* The patient reported decreased and blurring of vision.\n* An 18F-FDG PET/CT scan revealed a FDG-avid well-defined soft tissue primary mass measuring 5.6 cm x 7.7 cm x 8.3 cm with spiculated margins in the upper lobe of the right lung, along with multiple sub-centimetric to centimetric-sized bilateral lung nodules and metastases to mediastinal, abdominopelvic lymph nodes.\n\n**Progression and Diagnosis (Step 6-7):**\n\n* The patient presented with severe headaches and blurring of vision for 15 days.\n* Biopsy results confirmed metastatic involvement.\n\n**Treatment Plan:**\nUnfortunately, the provided data does not include a treatment plan or outcomes. However, based on the diagnosis of squamous cell carcinoma and metastases, further treatment options would likely involve chemotherapy, radiation therapy, or a combination of both, depending on the patient's overall health and specific tumor characteristics.\n\n**Outcomes:**\nThe patient's current status is unknown, as the provided data only includes the timeline of diagnoses and treatments. Further follow-up and monitoring are necessary to assess the patient's response to treatment and any potential complications or side effects.\n\nIn conclusion, this patient presented with a complex clinical scenario involving a heterogeneous lesion in the mediastinal region, squamous cell carcinoma, and metastases. The patient's symptoms and imaging results suggest an aggressive disease course, and further treatment options would be necessary to manage the patient's condition effectively.", - "bertscore": { - "precision": [ - 0.7080437541007996 - ], - "recall": [ - 0.7307168245315552 - ], - "f1": [ - 0.7192016243934631 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 7, - "edge_count": 6, - "avg_in_degree": 0.8571428571428571, - "density": 0.14285714285714285 - }, - "trajectory_embedding": [ - 0.22544555366039276, - -0.021888595074415207, - -0.0058143287897109985, - 0.03279201313853264, - 0.012158679775893688, - 0.124949149787426, - 0.055165503174066544, - 0.12983736395835876, - 0.3739190995693207, - -0.2663968503475189, - -0.19686637818813324, - 0.07701147347688675, - -0.5400644540786743, - -0.07584770768880844, - -0.26406726241111755, - -0.02046271786093712, - 0.05793926864862442, - 0.16207827627658844, - -0.044735949486494064, - -0.22757861018180847, - -0.4952402710914612, - 0.1144150123000145, - -0.46950480341911316, - -0.09778637439012527, - 0.12845461070537567, - 0.02734825387597084, - 0.24913842976093292, - 0.45427513122558594, - 0.24786631762981415, - 0.3967547118663788, - 0.1909862756729126, - -0.04420628026127815, - 0.09980465471744537, - 0.03809976577758789, - -0.17042012512683868, - 0.2900741398334503, - 0.09212499111890793, - 0.4332437217235565, - -0.043802354484796524, - 0.15672074258327484, - 0.03645145520567894, - 0.00679835444316268, - 0.9039347767829895, - 0.3591509461402893, - 0.4914460778236389, - -0.8356738090515137, - -0.02241605333983898, - 0.40659505128860474, - -0.4799618124961853, - -0.3205719292163849, - 0.17016637325286865, - 0.6543622612953186, - 0.707870602607727, - -0.22005608677864075, - 0.4748179614543915, - -0.19794167578220367, - -0.3964519798755646, - -0.3612939417362213, - -0.33315572142601013, - -0.027029957622289658, - -0.1691950559616089, - -0.22332099080085754, - 0.17457075417041779, - 0.05207694321870804, - -0.2161528766155243, - -0.14274190366268158, - -0.14343063533306122, - 0.020381653681397438, - 0.007025190629065037, - -0.45137161016464233, - -0.09364870935678482, - -0.2778642773628235, - -0.10508210957050323, - 0.10854269564151764, - 0.02177494578063488, - -0.16299407184123993, - 0.30219197273254395, - -0.011338986456394196, - 0.1187564879655838, - 0.08193399012088776, - 0.06593690067529678, - -0.0405060350894928, - 0.061940502375364304, - 0.32849979400634766, - -0.407819926738739, - 0.09965406358242035, - -0.03934013098478317, - -0.15914258360862732, - -0.36487436294555664, - 0.1943393051624298, - 0.13243208825588226, - -0.2800927460193634, - 0.07946847379207611, - -0.17683902382850647, - 0.044621050357818604, - -0.02490183711051941, - 0.26153841614723206, - 0.28627023100852966, - 1.0003652572631836, - -0.05762153118848801, - 0.27924007177352905, - 0.09756126254796982, - 0.35095784068107605, - -0.03296113386750221, - 0.46251726150512695, - -0.11398440599441528, - 0.05645623430609703, - -0.6150220632553101, - 0.1058567613363266, - 0.33834224939346313, - -0.004669502377510071, - -0.10170869529247284, - -0.03272068500518799, - -0.3261508643627167, - 0.15492412447929382, - 0.04078936576843262, - -0.0925842747092247, - 0.14039553701877594, - 0.06129738315939903, - -0.3435817062854767, - -0.11495153605937958, - -0.09836633503437042, - 0.31900739669799805, - 0.31890103220939636, - -0.46349194645881653, - -0.02682717703282833, - -0.158163920044899, - 0.20861409604549408, - 0.03139486908912659, - 0.06004612520337105, - -0.48260262608528137, - -0.053569622337818146, - 0.05698048323392868, - 0.3057520091533661, - -0.11534462124109268, - 0.20605342090129852, - -0.4229469895362854, - 0.017016496509313583, - -1.0992628335952759, - 0.2045792043209076, - -0.46470141410827637, - 0.015281583182513714, - 0.004531429149210453, - -0.5357871055603027, - -0.17412035167217255, - -0.2732934057712555, - -0.06343386322259903, - 0.17450697720050812, - 0.03306545689702034, - -0.08195621520280838, - -0.11672161519527435, - 0.062159765511751175, - 0.21550604701042175, - 0.15805819630622864, - 0.24410788714885712, - 0.08759433776140213, - 0.129988431930542, - 0.37439388036727905, - 0.12952840328216553, - -0.18701855838298798, - 0.02977474220097065, - 0.3657865822315216, - 0.04062526673078537, - -0.08284519612789154, - 0.026021718978881836, - -0.7181465029716492, - 0.01755519025027752, - -0.05736885219812393, - 0.2734042704105377, - 0.0789877325296402, - -0.19181092083454132, - 0.26249173283576965, - -0.2620965242385864, - 0.5923798680305481, - 0.2575666606426239, - 0.4657774865627289, - 0.09522327035665512, - 0.07420903444290161, - 0.1885097473859787, - 0.12079930305480957, - 0.13842181861400604, - -0.10693365335464478, - 0.7564568519592285, - 0.04216546565294266, - -0.21592746675014496, - 0.2977727949619293, - 0.3015422224998474, - 0.009352700784802437, - -0.19835695624351501, - -0.06918928027153015, - 0.5178477168083191, - -0.25443926453590393, - 0.42754751443862915, - -0.4473267197608948, - -0.12708410620689392, - 0.11682230979204178, - -0.2884996831417084, - -0.24416060745716095, - 0.09769809246063232, - -0.1493919938802719, - 0.37399861216545105, - 0.06427767127752304, - -0.1964985877275467, - 0.0752095952630043, - -0.0790180116891861, - -0.08227288722991943, - 0.24765221774578094, - -0.07260660082101822, - 0.07031866163015366, - -0.0743103176355362, - -0.0978149026632309, - 0.21969662606716156, - -0.016957776620984077, - 0.24308113753795624, - 0.06017247214913368, - -0.18987281620502472, - 0.24078567326068878, - -0.17431029677391052, - -0.04737759754061699, - 0.14145603775978088, - -0.15732832252979279, - -0.1829451024532318, - 0.10296981781721115, - 0.007423954550176859, - -0.47174447774887085, - 0.25813135504722595, - 0.252968966960907, - 0.16565148532390594, - 0.25011056661605835, - -0.02016758732497692, - 0.02959112823009491, - -0.2907402813434601, - 0.2594955265522003, - -0.1877007782459259, - -0.10937656462192535, - -0.3665615916252136, - 0.12820060551166534, - -0.47392144799232483, - -0.057138632982969284, - 0.2564590275287628, - -0.0499889962375164, - -0.08179569244384766, - 0.09306243807077408, - -0.2558267116546631, - -0.15989051759243011, - -0.39697542786598206, - 0.05126449838280678, - 0.3919696509838104, - 0.11617664992809296, - 0.3501388728618622, - -0.017326783388853073, - -0.07741450518369675, - 0.16762030124664307, - -0.26987797021865845, - -0.19983291625976562, - -0.36132165789604187, - -0.08088219910860062, - 0.009544121101498604, - -0.5022962093353271, - 0.14079812169075012, - 0.016228536143898964, - -0.13470712304115295, - 0.06883032619953156, - -0.3019104301929474, - -0.13484728336334229, - 0.08926153182983398, - -0.12665589153766632, - 0.1574120968580246, - -0.12602175772190094, - 0.015751618891954422, - -0.3463286757469177, - -0.23398295044898987, - -0.06359321624040604, - -0.19244582951068878, - 0.17758941650390625, - -0.04190870746970177, - -0.1823682337999344, - -0.05759647116065025, - 0.08258525282144547, - -0.4468781650066376, - -0.35065320134162903, - 0.21665219962596893, - -0.21870115399360657, - 0.2026483118534088, - -0.03873903304338455, - 0.22365395724773407, - 0.28230923414230347, - -0.05201395973563194, - 0.0527680329978466, - 0.49252477288246155, - 0.5546950697898865, - 0.07907216995954514, - -0.023886768147349358, - -0.1262141615152359, - 0.016182275488972664, - -0.03704068809747696, - -0.45202186703681946, - 0.4243611991405487, - -0.030097153037786484, - -0.034437667578458786, - -0.071632981300354, - 0.24896812438964844, - -0.00019594175682868809, - -0.504425585269928, - -0.09104608744382858, - 0.5184188485145569, - 0.13584373891353607, - 0.14065544307231903, - 0.027307460084557533, - 0.3466333746910095, - 0.5807201266288757, - -0.11237335205078125, - -0.03695932403206825, - 0.011270170100033283, - -0.0024232694413512945, - -0.10592483729124069, - 0.01008819043636322, - 0.11385848373174667, - 0.30241236090660095, - -0.09672290086746216, - -0.08970701694488525, - 0.23306843638420105, - -0.11035939306020737, - -0.06347585469484329, - -0.2140498161315918, - -0.0835152342915535, - 0.05474512651562691, - -0.2547414302825928, - 0.21516333520412445, - -0.11938325315713882, - -0.03892297297716141, - 0.37758371233940125, - -0.14395751059055328, - -0.1572096198797226, - 0.11680327355861664, - 0.020167753100395203, - -0.41035670042037964, - 0.39604201912879944, - -0.08431784808635712, - -0.06409355252981186, - 0.45997482538223267, - -0.0070531792007386684, - -0.07865508645772934, - -0.329233318567276, - 0.19452223181724548, - 0.04206732660531998, - -0.059629857540130615, - -0.05272732302546501, - 0.04650396108627319, - 0.12813898921012878, - 0.5837918519973755, - 0.1471565067768097, - 0.16569076478481293, - 0.5125689506530762, - -0.06692972779273987, - -0.26555219292640686, - 0.00983025785535574, - 0.19899828732013702, - 0.3342770040035248, - -0.31491395831108093, - -0.23268620669841766, - -0.30234023928642273, - 0.10153920203447342, - 0.17339272797107697, - -0.27579358220100403, - -0.05001077428460121, - -0.019663481041789055, - 0.14585120975971222, - 0.10834995657205582, - 0.26768848299980164, - 0.20414087176322937, - -0.06213387846946716, - 0.46090492606163025, - 0.017025070264935493, - -0.059339266270399094, - 0.2710186839103699, - -0.14449605345726013, - 0.23969683051109314, - -0.10268567502498627, - -0.3920949399471283, - -0.40806737542152405, - 0.00474292878061533, - -0.12494343519210815, - -0.2019561529159546, - -0.007249661721289158, - -0.14330996572971344, - -0.010338188149034977, - -0.21282240748405457, - 0.23347382247447968, - 0.046171098947525024, - 0.2541406452655792, - 0.23251627385616302, - 0.3425624668598175, - 0.11240644007921219, - -0.27347710728645325, - 0.16533224284648895, - -0.02230760268867016, - 0.14282743632793427, - -0.2403469979763031, - -0.04443306848406792, - -0.09282033145427704, - 0.4610767066478729, - -0.08442071825265884, - -0.0038480982184410095, - -0.00898510031402111, - 0.028758777305483818, - -0.18674644827842712, - -0.3901597559452057, - -0.21183086931705475, - -0.12444917112588882, - -0.005519687198102474, - -0.022225946187973022, - 0.1936742514371872, - -0.2562611699104309, - -0.21937783062458038, - -0.14190775156021118, - 0.23681838810443878, - 0.024996627122163773, - -0.14047639071941376, - 0.16197021305561066, - 0.2152271270751953, - 0.03847484663128853, - 0.4040525257587433, - -0.11127112060785294, - 0.12019022554159164, - 0.01380231510847807, - -0.27288979291915894, - -0.005210678558796644, - 0.03739836439490318, - -0.24274063110351562, - -0.013103642500936985, - 0.22852373123168945, - 0.27713543176651, - 0.02708902582526207, - 0.02469996176660061, - 0.046662744134664536, - 0.29454439878463745, - -0.3956533968448639, - -0.16748806834220886, - 0.4477674663066864, - 0.11504799127578735, - 0.45734837651252747, - -0.024405550211668015, - -0.5885217785835266, - -0.2782239019870758, - -0.07079874724149704, - -0.5095592737197876, - 0.029425110667943954, - 0.1425083577632904, - -0.13853709399700165, - -0.09436937421560287, - 0.1613730490207672, - -0.07594022899866104, - 0.0597415566444397, - 0.24864283204078674, - -0.09160096943378448, - 0.16358928382396698, - 0.007129413541406393, - -0.36279386281967163, - -0.052385516464710236, - -0.3274328112602234, - -0.2874279320240021, - -0.21315990388393402, - 0.3431756794452667, - 0.31382879614830017, - -0.2551286816596985, - 0.04849119111895561, - 0.0616174079477787, - -0.24422670900821686, - -0.3080612123012543, - 0.02238546870648861, - -0.2793293297290802, - 0.46098384261131287, - -0.07902948558330536, - -0.14585623145103455, - 0.12555918097496033, - -0.31364327669143677, - 0.11767099797725677, - 0.2693617641925812, - 0.17969690263271332, - 0.3670620024204254, - 0.23111720383167267, - 0.18989789485931396, - 0.4030517041683197, - 0.051692575216293335, - 0.0751393660902977, - 0.3101361095905304, - 0.0018457748228684068, - -0.014019259251654148, - -0.19878152012825012, - -0.2694285809993744, - 0.3681092858314514, - -0.1493302881717682, - 0.005456401500850916, - 0.17803955078125, - 0.32944828271865845, - -0.5253181457519531, - -0.34934094548225403, - 0.008091830648481846, - -0.02635938487946987, - -0.10398703813552856, - -0.3595424294471741, - -0.235565185546875, - -0.022764157503843307, - -0.22590211033821106, - -0.19372296333312988, - 0.2561880946159363, - 0.3237074315547943, - 0.20131178200244904, - 0.2469889372587204, - -0.3478850722312927, - -0.29865124821662903, - 0.22905422747135162, - 0.2693503201007843, - 0.07840954512357712, - 0.026144299656152725, - -0.2233971655368805, - 0.28818273544311523, - 0.6196103096008301, - -0.12296389043331146, - -0.07440297305583954, - 0.0031574282329529524, - 0.11028839647769928, - 0.004636458121240139, - 0.10456354916095734, - -0.03394020348787308, - 0.07380436360836029, - -0.4067952334880829, - 0.2821376323699951, - -0.32946285605430603, - -0.21861563622951508, - 0.15632401406764984, - -0.037681613117456436, - -0.4206162393093109, - -0.20882096886634827, - 0.46175867319107056, - -0.14138826727867126, - 0.1318322718143463, - 0.14189693331718445, - 0.413936585187912, - 0.08744312822818756, - -0.18059243261814117, - 0.12924925982952118, - -0.5933976769447327, - -0.17608408629894257, - 0.17052365839481354, - -0.2509192228317261, - 0.05032340809702873, - -0.013478376902639866, - 0.2141694575548172, - 0.46446993947029114, - 0.17353466153144836, - -0.25484198331832886, - 0.02167193591594696, - 0.20546047389507294, - 0.33550235629081726, - -0.25142115354537964, - -10.752850532531738, - 0.13028177618980408, - -0.18029265105724335, - 0.601753294467926, - -0.17109908163547516, - 0.13354870676994324, - 0.023059383034706116, - -0.0756104439496994, - 0.07608021795749664, - 0.018018653616309166, - -0.1955755054950714, - 0.056970950216054916, - 0.37291231751441956, - 0.3097512722015381, - -0.01516466774046421, - -0.18926218152046204, - -0.20306017994880676, - 0.2996937334537506, - 0.06647644191980362, - 0.22666634619235992, - 0.2110852152109146, - 0.45858046412467957, - -0.30146196484565735, - 0.3066696524620056, - 0.12842200696468353, - -0.40063077211380005, - -0.2030058652162552, - 0.6819396018981934, - 0.1300923079252243, - -0.3766631782054901, - 0.23450832068920135, - 0.25575903058052063, - -0.3941766619682312, - 0.010425986722111702, - -0.09464111179113388, - -0.18069109320640564, - -0.108848936855793, - 0.0775521770119667, - 0.10503586381673813, - -0.14857245981693268, - 0.07109784334897995, - -0.2719348967075348, - 0.0999772921204567, - 0.24091105163097382, - -0.07322079688310623, - -0.5446597933769226, - -0.1822691112756729, - -1.565708041191101, - 0.3469933867454529, - 0.29949596524238586, - 0.5327091217041016, - -0.031813886016607285, - 0.158897265791893, - 0.1273970752954483, - -0.3908841609954834, - 0.06701938807964325, - -0.25532057881355286, - -0.10759598761796951, - 0.09881438314914703, - -0.10823852568864822, - 0.15043134987354279, - -0.25954777002334595, - 0.4396364390850067, - -0.24458107352256775, - -0.3411678671836853, - 0.07269710302352905, - 0.10603590309619904, - 0.05698838457465172, - -0.16014812886714935, - -0.40341153740882874, - -0.5101147294044495, - -0.07006553560495377, - 0.04483975097537041, - 0.0484030656516552, - 0.5611270666122437, - -0.02805999480187893, - -0.47120970487594604, - 0.17515210807323456, - -0.04338771104812622, - 0.4502566456794739, - 0.1857706755399704, - -0.07234758883714676, - 0.08514602482318878, - -0.23218639194965363, - -0.23950079083442688, - -0.2716539800167084, - 0.10034899413585663, - 0.4957196116447449, - -0.08045651018619537, - -0.03827769309282303, - -0.06227623671293259, - 0.35930517315864563, - 0.08850135654211044, - -0.20713134109973907, - -0.44182083010673523, - 0.05939282849431038, - 0.0008892363985069096, - 0.022235747426748276, - 0.09952037781476974, - 0.07445381581783295, - -0.14000891149044037, - -0.08464771509170532, - -0.08841384947299957, - -0.49244800209999084, - -0.586823582649231, - 0.2621164619922638, - 0.09070652723312378, - 0.1271086186170578, - 0.08361142873764038, - 0.03778642788529396, - -0.13701973855495453, - 0.054361291229724884, - 0.23367181420326233, - 0.5658853650093079, - 0.04071269556879997, - -0.03902093693614006, - -0.09580259025096893, - -0.31962570548057556, - -0.2457621991634369, - 0.17023469507694244, - 0.3666629195213318, - -0.19607484340667725, - 0.3422781527042389, - 0.6629540324211121, - -0.14943312108516693, - -0.19286131858825684, - 1.0133713483810425, - -0.26429232954978943, - 0.21964125335216522, - -0.19027359783649445, - 0.2918620705604553, - -0.06770165264606476, - -0.253685861825943, - 0.09520785510540009, - 0.3655342161655426, - -0.3843688368797302, - 0.7071616053581238, - 0.2193906009197235, - -0.36014285683631897, - -0.033229079097509384, - -0.19664537906646729, - 0.503405749797821, - 0.2236463874578476, - 0.16320236027240753, - -0.11097752302885056, - -0.37586143612861633, - -0.24627450108528137, - 0.1637803465127945, - -0.3233899474143982, - -0.19343426823616028, - -0.18568050861358643, - 0.0513133741915226, - 0.19603769481182098, - -0.23206403851509094, - 0.3304268419742584, - 0.2184225469827652, - -0.060754306614398956, - -0.20855531096458435, - -0.41473010182380676, - -0.1591343879699707, - 0.025321917608380318, - 0.814966082572937, - -0.02268730103969574, - -0.04495840147137642, - -0.12772640585899353, - 0.191977858543396, - -0.07789558172225952, - 0.25736770033836365, - 0.11303628236055374, - 0.06402131915092468, - -0.30810046195983887, - 0.21750006079673767, - 0.1528620421886444, - -0.2923474609851837, - -0.13456991314888, - -0.25992101430892944, - -0.03127161040902138, - 0.012477806769311428, - -0.21623428165912628, - 0.2975035607814789, - 0.3495616614818573, - -0.04690875858068466, - -0.022930597886443138, - -0.2509596347808838, - 0.2743046283721924, - 0.18854205310344696, - 0.1905793994665146, - 0.21473363041877747, - -0.19668106734752655, - -0.3155835270881653, - -0.4283021092414856, - 0.1840418428182602, - -0.30378293991088867, - -0.12035530060529709, - 0.10726603120565414, - 0.23525144159793854, - -0.3043988049030304, - 0.02654709853231907, - -0.1099575087428093, - -0.08470828831195831, - -0.1656467765569687, - 0.2036818414926529, - 0.45072221755981445, - -0.14205686748027802, - 0.15353623032569885, - -0.20321156084537506, - 0.1781766563653946, - 0.21564793586730957, - -0.4846877157688141, - 0.15370237827301025, - -0.126005619764328 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_003.json b/src/benchmark/output/results/results_graph_003.json deleted file mode 100644 index 841c742..0000000 --- a/src/benchmark/output/results/results_graph_003.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Patient Demographics**\n\nThe patient is an adult male with a history of Small Cell Lung Cancer (SCLC). Unfortunately, the exact age and other demographic details are not provided in the data.\n\n**Timeline of Diagnoses**\n\nThe patient's diagnosis timeline begins with the onset of symptoms such as dyspnea, abdominal distension, and lower-extremity edema. These symptoms led to an evaluation in the emergency department, where a poor performance status, abnormal vital signs, and significant tumor burden were noted. This marked the progression from symptom onset to diagnosis.\n\n**Timeline of Treatments**\n\nThe patient's treatment timeline began with endovascular intervention to address IVC stenosis due to compression caused by the tumor. The procedure involved thrombectomy and stent placement. Following this, post-intervention venography showed improved flow, and low-molecular-weight heparin was administered.\n\n**Timeline of Outcomes**\n\nThe patient's outcome timeline began with significant alleviation of IVCS symptoms (trunk and lower limb edema) following the intervention. However, unfortunately, the patient died 8 days later from his primary disease (SCLC).\n\n**Narrative Summary**\n\nA male patient with Small Cell Lung Cancer presented with symptoms such as dyspnea, abdominal distension, and lower-extremity edema. These symptoms led to an evaluation in the emergency department, where a poor performance status, abnormal vital signs, and significant tumor burden were noted. Endovascular intervention was performed to address IVC stenosis caused by compression from the tumor. Following this, post-intervention venography showed improved flow, and low-molecular-weight heparin was administered. However, despite these interventions, the patient's primary disease ultimately led to his death 8 days later.\n\n**Key Takeaways**\n\n* The patient had a poor performance status and significant tumor burden at diagnosis.\n* Endovascular intervention was effective in alleviating IVCS symptoms but did not address the underlying cause of death.\n* Low-molecular-weight heparin was administered post-intervention, but its effectiveness is unclear given the patient's rapid decline.\n\n**Limitations**\n\nThe narrative summary is limited by the lack of detailed information on patient demographics, treatment outcomes, and long-term follow-up. Further investigation would be necessary to fully understand the patient's clinical course and the effectiveness of interventions.", - "bertscore": { - "precision": [ - 0.5732179880142212 - ], - "recall": [ - 0.5156488418579102 - ], - "f1": [ - 0.5429115891456604 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 8, - "edge_count": 7, - "avg_in_degree": 0.875, - "density": 0.125 - }, - "trajectory_embedding": [ - 0.2569149434566498, - 0.23160001635551453, - -0.23048092424869537, - 0.06365886330604553, - 0.06271032989025116, - -0.032205305993556976, - -0.0353657603263855, - 0.14690855145454407, - 0.3527328073978424, - -0.24249935150146484, - -0.23033425211906433, - 0.13146138191223145, - -0.44394129514694214, - -0.1020270437002182, - -0.1855921894311905, - 0.17859384417533875, - 0.08802724629640579, - 0.2158854901790619, - -0.10283444821834564, - -0.29911351203918457, - -0.1949203908443451, - -0.028584152460098267, - -0.3147096037864685, - -0.07293544709682465, - 0.20194584131240845, - -0.09491348266601562, - 0.34339308738708496, - 0.46809014678001404, - 0.13282687962055206, - 0.29852452874183655, - 0.13195554912090302, - 0.17300836741924286, - 0.0897492840886116, - 0.02892140857875347, - -0.12745898962020874, - 0.3448256552219391, - 0.23548577725887299, - 0.2839270830154419, - -0.03714802488684654, - 0.006017275154590607, - 0.1338861882686615, - 0.12591585516929626, - 0.7073693871498108, - 0.3368518352508545, - 0.3219608664512634, - -0.6907471418380737, - -0.01660757139325142, - 0.6422886848449707, - -0.46687471866607666, - -0.2571844458580017, - 0.18784856796264648, - 0.6589989066123962, - 0.5504093170166016, - -0.10344333201646805, - 0.4473138749599457, - -0.06613530963659286, - -0.28679725527763367, - -0.4249691367149353, - -0.2393416464328766, - 0.13644948601722717, - -0.0981653481721878, - 0.01790006458759308, - 0.2267570197582245, - -0.02845674753189087, - -0.2680894136428833, - -0.1423514485359192, - -0.16232867538928986, - 0.12320675700902939, - 0.1090710312128067, - -0.3618414103984833, - -0.10044832527637482, - -0.27530670166015625, - -0.053614962846040726, - 0.04921650141477585, - 0.18791626393795013, - -0.18266819417476654, - 0.360612690448761, - -0.07580575346946716, - 0.03189554437994957, - 0.11070859432220459, - 0.03711796551942825, - -0.006232840940356255, - 0.03796324133872986, - 0.282582551240921, - -0.37713319063186646, - 0.07750636339187622, - -0.17531555891036987, - -0.10054003447294235, - -0.258467435836792, - 0.22064298391342163, - 0.2305215299129486, - -0.09635764360427856, - 0.10636873543262482, - -0.017838889732956886, - 0.19559000432491302, - -0.06293649971485138, - 0.13816137611865997, - 0.43874168395996094, - 0.9716772437095642, - -0.05074167996644974, - 0.1356513500213623, - -0.06121188402175903, - 0.29712897539138794, - -0.07920337468385696, - 0.37162017822265625, - -0.08831153810024261, - 0.1279538869857788, - -0.5214267373085022, - 0.0625886470079422, - 0.3048340678215027, - 0.017620541155338287, - -0.238211989402771, - 0.1364237368106842, - -0.31241703033447266, - 0.09862945228815079, - 0.15174570679664612, - -0.08937467634677887, - 0.21740508079528809, - -0.020801734179258347, - -0.3626396059989929, - -0.08483012020587921, - -0.10590144991874695, - 0.3234524130821228, - 0.286812961101532, - -0.3228791356086731, - 0.10934396088123322, - -0.21497038006782532, - 0.133932963013649, - 0.0651712417602539, - 0.06254178285598755, - -0.6108414530754089, - -0.08825504779815674, - -0.048984821885824203, - 0.1457713544368744, - -0.05615668743848801, - 0.38747861981391907, - -0.3545966148376465, - 0.10128293186426163, - -1.0704939365386963, - 0.18489933013916016, - -0.3293786942958832, - -0.04235662519931793, - 0.07674379646778107, - -0.4247347414493561, - -0.14779609441757202, - -0.2276259809732437, - -0.2626993656158447, - 0.10540923476219177, - -0.11968214064836502, - -0.07782312482595444, - -0.08806271106004715, - 0.11360003799200058, - 0.22596900165081024, - 0.22846662998199463, - 0.14217929542064667, - 0.011776726692914963, - 0.1377287209033966, - 0.35273149609565735, - 0.023100826889276505, - -0.13734270632266998, - 0.14667250216007233, - 0.387855589389801, - -0.06604360044002533, - -0.08711905777454376, - -0.058241911232471466, - -0.5880092978477478, - 0.23984947800636292, - -0.2654883563518524, - 0.34279629588127136, - 0.17131219804286957, - -0.21306748688220978, - 0.15969398617744446, - -0.3069201707839966, - 0.61099773645401, - 0.34344786405563354, - 0.3754482567310333, - 0.2464122325181961, - -0.12051801383495331, - 0.12661445140838623, - 0.07676951587200165, - 0.06337203830480576, - -0.12980499863624573, - 0.49911436438560486, - 0.0992007851600647, - -0.21527312695980072, - 0.1955445408821106, - 0.18623749911785126, - -0.11524847149848938, - -0.18365424871444702, - 0.052402399480342865, - 0.3627065420150757, - -0.24395789206027985, - 0.4139857888221741, - -0.3161483407020569, - -0.07328542321920395, - 0.02170691266655922, - -0.3448029160499573, - -0.3785707652568817, - 0.05860193446278572, - 0.001285141333937645, - 0.07231660187244415, - 0.12629340589046478, - -0.29497748613357544, - 0.21745753288269043, - 0.1734546273946762, - -0.1240207701921463, - 0.2539222240447998, - -0.013147708028554916, - 0.041944921016693115, - -0.12125688046216965, - -0.27249762415885925, - 0.1013287603855133, - -0.1647895723581314, - 0.19072462618350983, - -0.011917723342776299, - -0.28449496626853943, - 0.24159587919712067, - -0.07891088724136353, - -0.08159821480512619, - 0.13219553232192993, - 0.029453741386532784, - 0.06982686370611191, - 0.22510792315006256, - -0.07658938318490982, - -0.26791220903396606, - 0.3236021101474762, - 0.11212003976106644, - 0.24547803401947021, - 0.09299872815608978, - -0.06759750843048096, - -0.011228218674659729, - -0.29543545842170715, - 0.15239936113357544, - -0.18702076375484467, - -0.18114317953586578, - -0.27560099959373474, - 0.17911066114902496, - 0.004341591149568558, - -0.06521990150213242, - 0.21743358671665192, - -0.08804921060800552, - -0.12174122780561447, - 0.02904754877090454, - -0.29161587357521057, - -0.08384933322668076, - -0.26410454511642456, - 0.1125580295920372, - 0.19161352515220642, - 0.11132532358169556, - 0.35512739419937134, - 0.06868070363998413, - 0.03536885231733322, - 0.1669463813304901, - -0.2908916473388672, - -0.3114027976989746, - -0.29059845209121704, - -0.05371225252747536, - 0.034935761243104935, - -0.378568172454834, - 0.1031026840209961, - 0.0697413980960846, - -0.15836521983146667, - 0.055314674973487854, - -0.2921608090400696, - -0.1878422647714615, - 0.08387884497642517, - -0.02348172850906849, - 0.11633884161710739, - -0.04514475166797638, - -0.006797481793910265, - -0.16597852110862732, - -0.18674692511558533, - -0.1781417727470398, - -0.14435860514640808, - 0.13849318027496338, - 0.09053032100200653, - -0.1284540444612503, - 0.0008781002834439278, - 0.18773995339870453, - -0.48895567655563354, - -0.2847486734390259, - 0.267551988363266, - -0.28864404559135437, - 0.29566484689712524, - -0.11407998204231262, - 0.378822386264801, - 0.40001246333122253, - 0.05274902656674385, - 0.19677725434303284, - 0.4697061777114868, - 0.3984792232513428, - 0.06355373561382294, - -0.14354346692562103, - 0.08533620089292526, - 0.03147219493985176, - -0.04639570787549019, - -0.3610660433769226, - 0.355654776096344, - -0.045501336455345154, - 0.1690748929977417, - -0.002688792534172535, - 0.16419994831085205, - 0.016202926635742188, - -0.2679378390312195, - -0.10791486501693726, - 0.49201497435569763, - 0.22888198494911194, - 0.06671790778636932, - 0.1428592950105667, - 0.35510513186454773, - 0.4634217619895935, - 0.06101655587553978, - -0.34377482533454895, - -0.051289502531290054, - -0.14004841446876526, - -0.255508691072464, - -0.2915162444114685, - 0.1609363555908203, - 0.32905691862106323, - -0.15973393619060516, - -0.18100731074810028, - 0.2961345314979553, - -0.2114296853542328, - -0.07773298770189285, - -0.17655381560325623, - 0.011677158996462822, - -0.049703456461429596, - -0.21769998967647552, - 0.2306259125471115, - -0.013719771057367325, - -0.16235598921775818, - 0.3368450999259949, - -0.27963900566101074, - -0.24579648673534393, - 0.17493762075901031, - -0.06680662930011749, - -0.3899391293525696, - 0.3454819321632385, - -0.2224164605140686, - 0.020916227251291275, - 0.28578391671180725, - -0.14427529275417328, - -0.021270979195833206, - -0.12395058572292328, - 0.25643935799598694, - 0.10913236439228058, - 0.033961083739995956, - -0.13228361308574677, - 0.06502865999937057, - 0.1717403084039688, - 0.592214047908783, - 0.2314368337392807, - 0.07204297184944153, - 0.3350045084953308, - -0.07012563943862915, - -0.3543141484260559, - 0.005660714581608772, - -0.05974195525050163, - 0.15054047107696533, - -0.047535449266433716, - -0.31843629479408264, - -0.20472171902656555, - 0.11641610413789749, - 0.19389207661151886, - -0.1209784522652626, - -0.05114450305700302, - 0.20561301708221436, - 0.04221804440021515, - -0.03909905627369881, - 0.15351472795009613, - 0.22436127066612244, - 0.010178793221712112, - 0.468885600566864, - 0.09688585996627808, - -0.09131868928670883, - 0.2427922487258911, - -0.05917609855532646, - 0.226558119058609, - -0.16924627125263214, - -0.4362291991710663, - -0.40189898014068604, - 0.0878443717956543, - -0.20961040258407593, - -0.17652219533920288, - 0.08758323639631271, - -0.2006133496761322, - 0.06266502290964127, - -0.11913471668958664, - 0.17118462920188904, - 0.019704584032297134, - 0.1714993715286255, - -0.08983881771564484, - 0.36125126481056213, - -0.0894111692905426, - -0.35656625032424927, - 0.1413729190826416, - -0.09259454905986786, - 0.17376692593097687, - -0.14425204694271088, - -0.13525493443012238, - -0.14414875209331512, - 0.34457504749298096, - -0.17759661376476288, - 0.004895076155662537, - -1.540686935186386e-05, - 0.09425801038742065, - -0.18891598284244537, - -0.15592390298843384, - -0.20987802743911743, - -0.20082980394363403, - -0.13723398745059967, - -0.11620370298624039, - 0.09843072295188904, - -0.1444927603006363, - -0.18796217441558838, - -0.1742773801088333, - 0.08525709807872772, - 0.40163925290107727, - -0.12654602527618408, - -0.03869543597102165, - 0.4240628182888031, - 0.10033371299505234, - 0.31720083951950073, - -0.28143632411956787, - 0.15492956340312958, - 0.08704649657011032, - -0.2654697000980377, - -0.04881821945309639, - -0.016870111227035522, - -0.26270630955696106, - -0.12414852529764175, - 0.1377853900194168, - 0.4025445580482483, - 0.0887882262468338, - 0.0468372106552124, - -0.03027254343032837, - -0.03690169006586075, - -0.22596830129623413, - 0.038792144507169724, - 0.2728533446788788, - 0.11235370486974716, - 0.2355501651763916, - 0.0061170682311058044, - -0.3013271689414978, - -0.30459287762641907, - -0.014720339328050613, - -0.4627458453178406, - 0.1813475787639618, - 0.04745449870824814, - -0.06341429054737091, - -0.14217376708984375, - 0.2134707272052765, - 0.005404438823461533, - -0.11771394312381744, - 0.25954848527908325, - 0.013961143791675568, - 0.2106950283050537, - -0.019350331276655197, - -0.21603421866893768, - -0.07641604542732239, - -0.17571528255939484, - -0.24132274091243744, - -0.40047815442085266, - 0.4158255457878113, - 0.3980637490749359, - -0.21376149356365204, - 0.03735671937465668, - 0.09683898091316223, - -0.26924726366996765, - -0.2347835898399353, - 0.03169608488678932, - -0.06420964002609253, - 0.3846817910671234, - 0.06705142557621002, - -0.2419806271791458, - -0.06293898075819016, - -0.23997923731803894, - -0.04855913668870926, - 0.10249004513025284, - 0.0988558977842331, - 0.37822696566581726, - 0.214402973651886, - 0.0697578489780426, - 0.3383386731147766, - 0.11332648992538452, - -0.036293093115091324, - 0.28004002571105957, - -0.02409154735505581, - 0.1520584523677826, - -0.16688387095928192, - -0.03524171561002731, - 0.2908414304256439, - -0.3653745651245117, - 0.22500896453857422, - 0.2979770004749298, - 0.1557924896478653, - -0.3007964491844177, - -0.36065003275871277, - -0.026259154081344604, - -0.1422356814146042, - -0.12988664209842682, - -0.2573707401752472, - 0.01718113012611866, - -0.0005274917930364609, - -0.1697939783334732, - 0.008123168721795082, - 0.1620730757713318, - 0.30958274006843567, - 0.12935811281204224, - 0.04020648077130318, - -0.247300922870636, - -0.3773331344127655, - 0.10396052896976471, - 0.3673536479473114, - -0.11643590033054352, - -0.056829262524843216, - -0.13928528130054474, - 0.12086570262908936, - 0.3734302520751953, - -0.04218396544456482, - -0.0028060302138328552, - -0.1740286946296692, - -0.09575439989566803, - 0.11020426452159882, - 0.03771224990487099, - -0.1574310064315796, - 0.049119748175144196, - -0.3487362265586853, - 0.06726031005382538, - -0.09100287407636642, - -0.16214610636234283, - 0.1984669715166092, - -0.18025431036949158, - -0.3657768666744232, - -0.09993989020586014, - 0.24185729026794434, - -0.15071788430213928, - -0.21291379630565643, - 0.1366998553276062, - 0.5614988803863525, - 0.11226191371679306, - -0.04895856976509094, - -0.013916626572608948, - -0.3271966576576233, - -0.017343293875455856, - 0.13135674595832825, - -0.1870238333940506, - -0.05345654860138893, - 0.05888453871011734, - 0.5063331723213196, - 0.29617029428482056, - 0.0781693160533905, - -0.32731789350509644, - 0.0348568856716156, - 0.17435330152511597, - 0.21318849921226501, - -0.2973577380180359, - -10.760284423828125, - -0.07705976068973541, - -0.2074543535709381, - 0.3931015133857727, - -0.1443420946598053, - -0.0781291201710701, - -0.040700241923332214, - 0.09222999215126038, - 0.11657589673995972, - 0.06625368446111679, - -0.4159711003303528, - -0.09368214011192322, - 0.36642909049987793, - 0.14340618252754211, - 0.06398440152406693, - -0.11690184473991394, - -0.19904130697250366, - 0.33899515867233276, - 0.05515924096107483, - 0.247812420129776, - 0.23134145140647888, - 0.44547587633132935, - -0.0077679343521595, - 0.3705824017524719, - 0.05776774510741234, - -0.3256063163280487, - -0.05720362067222595, - 0.4383063018321991, - 0.1852199286222458, - -0.21572570502758026, - 0.1346697211265564, - 0.04716166853904724, - -0.14165212213993073, - -0.12225180864334106, - -0.11630429327487946, - -0.23897729814052582, - 0.042448658496141434, - 0.20545031130313873, - 0.24753516912460327, - -0.14180505275726318, - 0.15748021006584167, - -0.07449785619974136, - 0.12548506259918213, - 0.13254037499427795, - -0.06745956093072891, - -0.620971143245697, - -0.18036237359046936, - -1.249608039855957, - 0.12780265510082245, - 0.34602096676826477, - 0.4217807650566101, - 0.11863972246646881, - 0.13410227000713348, - 0.05955906957387924, - -0.36140286922454834, - 0.2649194896221161, - -0.1120811253786087, - -0.1230640560388565, - 0.029187869280576706, - -0.0021337345242500305, - -0.04308479279279709, - -0.12084022164344788, - 0.5323108434677124, - -0.12813016772270203, - -0.35470050573349, - 0.30360737442970276, - -0.08827779442071915, - -0.019499951973557472, - -0.11532315611839294, - -0.162815123796463, - -0.49197036027908325, - -0.19340060651302338, - -0.04802045226097107, - 0.08514002710580826, - 0.40528059005737305, - -0.07893289625644684, - -0.3891502022743225, - 0.25558391213417053, - -0.0025581717491149902, - 0.2938360273838043, - 0.02811253070831299, - 0.012750699184834957, - 0.06092653051018715, - -0.009361499920487404, - 0.04986138641834259, - -0.08937467634677887, - 0.1444200873374939, - 0.41584548354148865, - 0.1003168374300003, - 0.1807423233985901, - 0.014477571472525597, - 0.20301803946495056, - -0.00028870999813079834, - -0.12920910120010376, - -0.41805481910705566, - 0.04160172492265701, - -0.15706497430801392, - 0.056589581072330475, - -0.06894007325172424, - -0.03683476895093918, - -0.23451340198516846, - -0.018516354262828827, - 0.01859549805521965, - -0.2877085208892822, - -0.2857058346271515, - 0.4141886234283447, - 0.16869127750396729, - 0.23061507940292358, - 0.22104033827781677, - -0.17074280977249146, - 0.02249368652701378, - 0.07750824093818665, - 0.18455982208251953, - 0.5066249966621399, - 0.12167725712060928, - -0.10829576849937439, - -0.2126179337501526, - -0.2208799123764038, - -0.2610623836517334, - 0.10251399129629135, - 0.4387354850769043, - -0.012084785848855972, - 0.14429225027561188, - 0.4056583642959595, - -0.01488814502954483, - 0.019989408552646637, - 0.9064183235168457, - -0.39538151025772095, - 0.16263112425804138, - -0.08241316676139832, - 0.15687327086925507, - -0.2712385058403015, - -0.4790802299976349, - 0.008007453754544258, - 0.42691096663475037, - -0.34386515617370605, - 0.5109390020370483, - 0.05270667374134064, - -0.3495572805404663, - 0.008313879370689392, - -0.21478500962257385, - 0.3183654546737671, - 0.3125024735927582, - 0.24615390598773956, - 0.05583029240369797, - -0.200467050075531, - -0.18840113282203674, - -0.06054779142141342, - -0.45721957087516785, - -0.25145864486694336, - -0.05640270933508873, - 0.0635661780834198, - 0.11742560565471649, - -0.35247522592544556, - 0.39202773571014404, - 0.07067875564098358, - -0.22197797894477844, - -0.2665887176990509, - -0.3358158469200134, - 0.00816674530506134, - 0.2017928510904312, - 0.6012858152389526, - -0.04619159549474716, - 0.02493780106306076, - -0.1550561636686325, - 0.13061387836933136, - -0.06757781654596329, - 0.17170831561088562, - -0.06510891020298004, - 0.07508485019207001, - -0.4468626081943512, - 0.06557665765285492, - 0.08915989845991135, - -0.3400595486164093, - -0.1384894996881485, - -0.2294258028268814, - 0.25670161843299866, - 0.02898065187036991, - -0.24524244666099548, - 0.0880199670791626, - 0.3006818890571594, - -0.007880868390202522, - -0.06058032065629959, - -0.2787621021270752, - 0.1562856286764145, - -0.00023385975509881973, - 0.33602726459503174, - 0.10304993391036987, - -0.24230524897575378, - -0.2999469041824341, - -0.4333721101284027, - -0.0149671770632267, - -0.13352960348129272, - -0.0967276468873024, - 0.06497111916542053, - 0.13307376205921173, - -0.2004036009311676, - 0.03736452758312225, - -0.2756181061267853, - 0.04310602694749832, - -0.164451003074646, - 0.13436013460159302, - 0.41685420274734497, - -0.33877643942832947, - 0.14946863055229187, - -0.24648872017860413, - 0.3125213086605072, - 0.15554724633693695, - -0.39477109909057617, - 0.1328176110982895, - -0.1124398484826088 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_004.json b/src/benchmark/output/results/results_graph_004.json deleted file mode 100644 index 79dc351..0000000 --- a/src/benchmark/output/results/results_graph_004.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is an 81-year-old female who presented with progressive chest tightness and dyspnea over a 10-day period. She has no history of smoking or malignancy.\n\n**Timeline of Diagnoses:**\n\n1. **Step 1 (Day 0-9):** The patient initially presents with progressive chest tightness, dyspnea, cough, and back pain. Chest CT imaging reveals a large left-sided pleural effusion.\n2. **Step 2 (Day 10):** Thoracentesis is performed, and the drained pleural fluid is sent to the Department of Pathology for further evaluation.\n3. **Step 3 (Day 11-12):** Post-thoracic drainage chest CT reveals a 6.7 cm x 2.8 cm heterogeneous mass in the left inferior lobe with irregular contrast enhancement, suggestive of a left lung tumor.\n4. **Step 4 (Day 13-14):** Pulmonary window analysis shows multiple nodular high-density foci scattered across both lungs, concerning for bilateral pulmonary metastases. Mediastinal window assessment reveals bilateral mediastinal lymphadenopathy and enlarged lymph nodes at the left pulmonary hilum, consistent with lymph node metastasis.\n5. **Step 5 (Day 15-16):** Abdominal CT scan detects multiple low-density hepatic nodules of varying sizes, with the largest lesion located in the right hepatic lobe. Enhanced brain CT identifies an irregular heterogeneously enhancing mass within the right frontal lobe, consistent with brain metastasis.\n6. **Step 6 (Day 17-18):** Cell block analysis of the pleural effusion demonstrates poorly cohesive round-to-oval cells with a dispersed distribution exhibiting eccentrically located nuclei with dense chromatin.\n\n**Treatments:**\n\n1. Thoracentesis and post-thoracic drainage chest CT\n2. Abdominal CT scan and enhanced brain CT\n\n**Outcomes:**\nThe patient's diagnosis is confirmed as lung cancer with bilateral pulmonary metastases, hepatic metastases, and brain metastasis. The cell block analysis of the pleural effusion reveals poorly cohesive round-to-oval cells consistent with adenocarcinoma.\n\n**Conclusion:**\nThis 81-year-old female patient presents with progressive chest tightness and dyspnea due to a large left-sided pleural effusion, which is later confirmed as a left lung tumor with bilateral pulmonary metastases, hepatic metastases, and brain metastasis. The diagnosis is made after thoracentesis, post-thoracic drainage chest CT, abdominal CT scan, enhanced brain CT, and cell block analysis of the pleural effusion.", - "bertscore": { - "precision": [ - 0.7519660592079163 - ], - "recall": [ - 0.7654501795768738 - ], - "f1": [ - 0.7586482167243958 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 6, - "edge_count": 5, - "avg_in_degree": 0.8333333333333334, - "density": 0.16666666666666666 - }, - "trajectory_embedding": [ - 0.2583933174610138, - -0.1034068688750267, - 0.02750878781080246, - 0.12225138396024704, - 0.07123710960149765, - 0.08420076966285706, - -0.025338614359498024, - 0.20714537799358368, - 0.42998072504997253, - -0.2773303687572479, - -0.23241369426250458, - 0.0849342942237854, - -0.532634437084198, - 0.050035249441862106, - -0.25669047236442566, - 0.11723083257675171, - 0.17126429080963135, - 0.2885790467262268, - 0.022143423557281494, - -0.16853980720043182, - -0.5408232808113098, - 0.15986886620521545, - -0.4296847879886627, - -0.00046265622950159013, - 0.2759328782558441, - -0.047584932297468185, - 0.17444981634616852, - 0.3902381658554077, - 0.2824210822582245, - 0.31304478645324707, - 0.13808360695838928, - -0.15729466080665588, - 0.14718084037303925, - -0.02834639698266983, - -0.10681698471307755, - 0.3241442143917084, - 0.20505361258983612, - 0.5838627219200134, - -0.04575663432478905, - 0.060654330998659134, - 0.030844343826174736, - -0.050123054534196854, - 0.7809808850288391, - 0.08795914798974991, - 0.6160065531730652, - -0.8483803272247314, - -0.03120688535273075, - 0.4838823080062866, - -0.5674558877944946, - -0.540779173374176, - 0.18877719342708588, - 0.8178849220275879, - 0.5946782827377319, - -0.16376003623008728, - 0.5136048793792725, - -0.07738406211137772, - -0.21868568658828735, - -0.3406544625759125, - -0.1053871288895607, - -0.045159924775362015, - -0.16560716927051544, - -0.3703373372554779, - 0.19793196022510529, - -0.0010139979422092438, - -0.21991266310214996, - -0.1403156965970993, - -0.10146746039390564, - -0.0013162102550268173, - 0.0025066707748919725, - -0.5080063343048096, - -0.08493319153785706, - -0.1158699169754982, - -0.21040649712085724, - 0.05718383565545082, - 0.14271576702594757, - -0.03102109767496586, - 0.3902250826358795, - -0.16335779428482056, - 0.006653872784227133, - 0.027929047122597694, - -0.053903866559267044, - -0.07901398092508316, - 0.20077599585056305, - 0.3684241771697998, - -0.38222071528434753, - 0.20212328433990479, - -0.11495695263147354, - -0.17530719935894012, - -0.2628645598888397, - 0.16204775869846344, - 0.17011022567749023, - -0.27152374386787415, - 0.03408863767981529, - -0.19221343100070953, - -0.02224837802350521, - -0.07351172715425491, - 0.30550000071525574, - 0.41390419006347656, - 1.0035374164581299, - -0.004422043915838003, - 0.22426648437976837, - 0.11977455765008926, - 0.33749184012413025, - 0.036290597170591354, - 0.5529285073280334, - -0.008936245925724506, - 0.09814983606338501, - -0.5816942453384399, - 0.059138935059309006, - 0.15273845195770264, - 0.07159942388534546, - -0.29080766439437866, - 0.04695405066013336, - -0.2886608839035034, - 0.18138979375362396, - 0.19459004700183868, - -0.13260580599308014, - 0.13827109336853027, - 0.05933411791920662, - -0.4314861297607422, - -0.17297464609146118, - -0.0476449690759182, - 0.3173906207084656, - 0.416760116815567, - -0.5305055975914001, - -0.10646569728851318, - -0.12110152095556259, - 0.0986652597784996, - 0.01864704303443432, - 0.12650208175182343, - -0.5729765295982361, - 0.009160935878753662, - -0.04395563527941704, - 0.24541759490966797, - -0.08395711332559586, - 0.09758146852254868, - -0.33874014019966125, - 0.10391154885292053, - -1.132510781288147, - 0.2772623598575592, - -0.3100367784500122, - -0.07802683860063553, - 0.08687806129455566, - -0.559102475643158, - -0.2412130981683731, - -0.18299619853496552, - -0.15575949847698212, - 0.13471664488315582, - -0.016560552641749382, - 0.027904203161597252, - -0.11488768458366394, - 0.1487807035446167, - 0.2224673181772232, - 0.31117090582847595, - 0.20761561393737793, - 0.07557263970375061, - 0.17278845608234406, - 0.2158612757921219, - 0.111088328063488, - -0.15561972558498383, - -0.027734214439988136, - 0.3112354576587677, - 0.1701497584581375, - -0.0415533147752285, - 0.07769405096769333, - -0.7617084383964539, - 0.0938117578625679, - -0.17703783512115479, - 0.21898877620697021, - 0.027599208056926727, - -0.20122146606445312, - 0.22140993177890778, - -0.27565065026283264, - 0.5770207047462463, - 0.11100810766220093, - 0.47188758850097656, - 0.03558645769953728, - -0.22732891142368317, - 0.10141105204820633, - 0.14196449518203735, - 0.19945426285266876, - -0.08361326903104782, - 0.6745460033416748, - 0.07695264369249344, - -0.1957089751958847, - 0.33735692501068115, - 0.26028409600257874, - -0.04082590714097023, - -0.135816752910614, - -0.13909098505973816, - 0.4667492210865021, - -0.2696774899959564, - 0.46427950263023376, - -0.48746323585510254, - 0.06286367774009705, - 0.14144213497638702, - -0.3030308485031128, - -0.056460484862327576, - 0.07677639275789261, - 0.05395236611366272, - 0.33006832003593445, - -0.06897107511758804, - -0.13764017820358276, - 0.012192770838737488, - 0.03623608872294426, - -0.11426950246095657, - 0.40463176369667053, - -0.044142503291368484, - 0.16351355612277985, - -0.06884920597076416, - -0.10242035984992981, - 0.2029731720685959, - -0.2510397434234619, - 0.08136317133903503, - 0.028738683089613914, - -0.4006012976169586, - 0.4184788167476654, - -0.028715573251247406, - -0.154597207903862, - 0.14366252720355988, - -0.13943582773208618, - -0.09763345122337341, - 0.15922962129116058, - -0.10088170319795609, - -0.3189184367656708, - 0.2153245061635971, - 0.10251444578170776, - 0.16937114298343658, - 0.3747340142726898, - 0.054426033049821854, - -0.04271594062447548, - -0.413448691368103, - 0.19344840943813324, - -0.024294273927807808, - -0.0772751197218895, - -0.4334566593170166, - 0.10619517415761948, - -0.34201502799987793, - 0.006509624421596527, - 0.24947905540466309, - -0.008853008970618248, - -0.1661585122346878, - 0.07974010705947876, - -0.18288201093673706, - -0.07533561438322067, - -0.40985798835754395, - 0.067476786673069, - 0.27375900745391846, - -0.075074702501297, - 0.17313379049301147, - -0.12923800945281982, - -0.12094511836767197, - 0.1721431463956833, - -0.28256723284721375, - -0.24916251003742218, - -0.38847672939300537, - -0.09403025358915329, - 0.05106024816632271, - -0.405582070350647, - 0.23059557378292084, - 0.05928253009915352, - -0.072181336581707, - -0.005881907884031534, - -0.2475137710571289, - -0.17939354479312897, - 0.09048786014318466, - -0.1508682370185852, - 0.021808376535773277, - 0.018271347507834435, - 0.11503053456544876, - -0.2114352136850357, - -0.3047686517238617, - -0.22384530305862427, - -0.09827858954668045, - 0.10696051269769669, - 0.07760587334632874, - -0.17969168722629547, - -0.13017039000988007, - 0.1038367822766304, - -0.2766321003437042, - -0.36624875664711, - 0.28650182485580444, - -0.08110731095075607, - 0.09820276498794556, - -0.03329989314079285, - 0.33045321702957153, - 0.0988786593079567, - -0.10366421937942505, - 0.06028594449162483, - 0.3911769390106201, - 0.5341885685920715, - 0.17068935930728912, - 0.043469130992889404, - -0.14090386033058167, - -0.07493159174919128, - -0.13546469807624817, - -0.4136233627796173, - 0.37483540177345276, - 0.10196995735168457, - -0.051735419780015945, - 0.04934224113821983, - 0.22684256732463837, - 0.14396075904369354, - -0.4280366599559784, - -0.16426706314086914, - 0.5573795437812805, - -0.04074380174279213, - 0.048320043832063675, - 0.0691380500793457, - 0.3954283893108368, - 0.678138017654419, - -0.03454875946044922, - -0.1016673818230629, - 0.084197998046875, - 0.00750374561175704, - -0.22610235214233398, - -0.06779544800519943, - 0.10169506818056107, - 0.5168731212615967, - -0.1505005806684494, - -0.042034000158309937, - 0.20306754112243652, - -0.09602037817239761, - -0.021799592301249504, - -0.1986166387796402, - -0.09983617067337036, - -0.0226000864058733, - -0.24916958808898926, - 0.47841131687164307, - -0.03324337676167488, - -0.08554657548666, - 0.44878950715065, - -0.17464379966259003, - -0.21563875675201416, - 0.1419552117586136, - -0.16669635474681854, - -0.6626150012016296, - 0.2328748255968094, - -0.1341627687215805, - -0.12986353039741516, - 0.42494651675224304, - 0.03062487579882145, - -0.08983782678842545, - -0.27506741881370544, - 0.49694588780403137, - 0.08067440986633301, - -0.08811963349580765, - -0.096425361931324, - 0.08180604875087738, - 0.37660136818885803, - 0.6148494482040405, - 0.20654530823230743, - 0.2933645248413086, - 0.5388324856758118, - 0.05001749470829964, - -0.24983006715774536, - -0.14874614775180817, - 0.12354717403650284, - 0.37616539001464844, - -0.17116235196590424, - -0.20130860805511475, - -0.3236638307571411, - -0.11367016285657883, - 0.1557912975549698, - -0.22135354578495026, - 0.02333947829902172, - 0.16448284685611725, - 0.03779447078704834, - -0.06024624779820442, - 0.183921679854393, - 0.16703177988529205, - -0.18795521557331085, - 0.3378758132457733, - -0.022704854607582092, - -0.06773103028535843, - 0.2121073454618454, - -0.27194929122924805, - 0.22983519732952118, - -0.12476903945207596, - -0.37102627754211426, - -0.36135146021842957, - -0.016541125252842903, - -0.3874332010746002, - -0.0940878614783287, - 0.02007303200662136, - -0.3772667944431305, - 0.10322427749633789, - -0.22529222071170807, - 0.1153930202126503, - 0.1438031941652298, - 0.33676978945732117, - 0.10866376757621765, - 0.4264952838420868, - 0.2190948873758316, - -0.22840513288974762, - 0.1045515164732933, - -0.2046426683664322, - 0.12325694411993027, - -0.14307814836502075, - -0.030300410464406013, - -0.08462776988744736, - 0.5158798694610596, - 0.1830156445503235, - -0.09632595628499985, - -0.030905038118362427, - 0.03387178108096123, - -0.2078799158334732, - -0.39124050736427307, - -0.25190284848213196, - -0.18647928535938263, - -0.03149080276489258, - 0.016730058938264847, - 0.05352554842829704, - -0.3722710907459259, - -0.28807154297828674, - -0.09175633639097214, - 0.14350128173828125, - 0.09866578131914139, - -0.12090641260147095, - 0.044013068079948425, - 0.34197625517845154, - 0.05192260816693306, - 0.3562060594558716, - -0.1663912534713745, - 0.1565546989440918, - 0.14726302027702332, - -0.48303428292274475, - 0.008545054122805595, - 0.03822505846619606, - -0.2749291658401489, - -0.040790408849716187, - 0.3350977897644043, - 0.24803684651851654, - 0.06085463985800743, - -0.006296847015619278, - 0.1869978904724121, - 0.3082644045352936, - -0.49922218918800354, - -0.1558949202299118, - 0.297989159822464, - 0.23977714776992798, - 0.5399264097213745, - -0.07175121456384659, - -0.3642609119415283, - -0.13309411704540253, - -0.01023685559630394, - -0.3957871198654175, - 0.13229069113731384, - 0.21839351952075958, - -0.3072367310523987, - -0.11105629056692123, - 0.14854423701763153, - -0.03693987801671028, - -0.006507532205432653, - 0.1581149697303772, - -0.12859870493412018, - 0.22252380847930908, - 0.044940706342458725, - -0.20735733211040497, - -0.12382151931524277, - -0.18659506738185883, - -0.30098238587379456, - -0.13125135004520416, - 0.4016812741756439, - 0.34076786041259766, - -0.32496756315231323, - 0.07214223593473434, - 0.04219283163547516, - -0.25916412472724915, - -0.2640756666660309, - -0.15624357759952545, - -0.2547512650489807, - 0.32960137724876404, - -0.2121124416589737, - -0.1298261433839798, - 0.05076824128627777, - -0.372775673866272, - 0.15544575452804565, - 0.2193928360939026, - 0.015916774049401283, - 0.41949784755706787, - 0.2979274392127991, - 0.12490435689687729, - 0.297406405210495, - 0.01885177753865719, - -0.01569005846977234, - 0.253350168466568, - -0.026847735047340393, - -0.014257587492465973, - -0.1742265224456787, - -0.13847921788692474, - 0.2683720588684082, - -0.30792561173439026, - 0.12654325366020203, - 0.3447130620479584, - 0.20055769383907318, - -0.47759580612182617, - -0.2365545630455017, - -0.07583025842905045, - 0.05415143445134163, - -0.10736274719238281, - -0.29489168524742126, - -0.16288314759731293, - 0.0809013694524765, - -0.12513378262519836, - -0.16591334342956543, - 0.3000882565975189, - 0.31882956624031067, - 0.04868127033114433, - 0.1831132173538208, - -0.33442196249961853, - -0.41347643733024597, - 0.13727976381778717, - 0.30553099513053894, - -0.0019482970237731934, - -0.08148317784070969, - -0.2510068714618683, - 0.332955926656723, - 0.6421900391578674, - -0.16719599068164825, - 0.025820741429924965, - 0.0336749367415905, - 0.11857970803976059, - 0.15314221382141113, - 0.17436237633228302, - -0.19084179401397705, - 0.14351870119571686, - -0.3643704652786255, - 0.3631077706813812, - -0.3282874822616577, - -0.1022457703948021, - 0.2416631132364273, - -0.11928466707468033, - -0.46645116806030273, - -0.21617066860198975, - 0.4866280257701874, - -0.20845408737659454, - -0.02713753469288349, - 0.14643238484859467, - 0.5337359309196472, - 0.1042320504784584, - -0.34738659858703613, - 0.0780247151851654, - -0.4741765558719635, - -0.09153936058282852, - 0.04712247848510742, - -0.15491464734077454, - -0.030437370762228966, - -0.18307431042194366, - 0.40902015566825867, - 0.4341925382614136, - 0.09944408386945724, - -0.05857411026954651, - 0.06813406199216843, - 0.21257035434246063, - 0.351852148771286, - -0.16517408192157745, - -10.696385383605957, - 0.08947757631540298, - -0.3235389292240143, - 0.6214336156845093, - -0.2847406566143036, - -0.04602588340640068, - 0.0622689314186573, - -0.07753685116767883, - -0.030190808698534966, - 0.02812592126429081, - -0.14662860333919525, - 0.06933770328760147, - 0.36432579159736633, - 0.3089110553264618, - -0.13865086436271667, - -0.15325336158275604, - -0.18933339416980743, - 0.17559605836868286, - -0.043805401772260666, - 0.30726563930511475, - 0.22761309146881104, - 0.406486839056015, - -0.3058054745197296, - 0.2413964718580246, - 0.07033171504735947, - -0.40084946155548096, - -0.22004981338977814, - 0.6523023247718811, - 0.1705946922302246, - -0.2580893039703369, - 0.3245163857936859, - 0.2855913043022156, - -0.30612459778785706, - 0.1704527735710144, - -0.1327863484621048, - -0.07284746319055557, - 0.004032632801681757, - -0.03175688162446022, - 0.23475247621536255, - 0.1051781177520752, - -0.10584268718957901, - -0.27533823251724243, - 0.25331932306289673, - 0.2575684189796448, - -0.2212311178445816, - -0.5380603671073914, - -0.15242181718349457, - -1.5252615213394165, - 0.21881145238876343, - 0.38092169165611267, - 0.447542279958725, - 0.05662431940436363, - 0.1594395488500595, - 0.11298314481973648, - -0.4088262617588043, - 0.0745827779173851, - -0.20342892408370972, - -0.030261151492595673, - 0.10569833964109421, - 0.07416641712188721, - 0.09360381960868835, - -0.2519964277744293, - 0.4135836660861969, - -0.137808158993721, - -0.3726528584957123, - 0.058830201625823975, - 0.06929994374513626, - -0.04357905313372612, - -0.20546849071979523, - -0.4559309780597687, - -0.45889750123023987, - 0.0038210004568099976, - -0.002218355657532811, - -0.052970025688409805, - 0.551442563533783, - 0.009390238672494888, - -0.299750417470932, - 0.1834694892168045, - 0.05571199581027031, - 0.5421097874641418, - 0.19629167020320892, - -0.09736425429582596, - 0.041664667427539825, - -0.08587676286697388, - -0.441127210855484, - -0.2162787765264511, - 0.10138394683599472, - 0.4863532483577728, - 0.021734535694122314, - 0.11847960948944092, - 0.008275563828647137, - 0.39933255314826965, - 0.07021576911211014, - -0.1566905528306961, - -0.4506320059299469, - 0.08993678539991379, - -0.1058262288570404, - 0.14905905723571777, - 0.09357014298439026, - -0.1506110280752182, - -0.278011292219162, - 0.08941177278757095, - -0.12621618807315826, - -0.4539858400821686, - -0.43350669741630554, - 0.1009003296494484, - 0.0908517837524414, - 0.21964360773563385, - 0.09002294391393661, - -0.15110395848751068, - -0.23119883239269257, - 0.04710010811686516, - 0.10503026843070984, - 0.5425638556480408, - 0.1520182490348816, - 0.023759083822369576, - -0.0624953955411911, - -0.387238472700119, - -0.21234168112277985, - 0.20065563917160034, - 0.3276001214981079, - -0.27673497796058655, - 0.32038411498069763, - 0.7085633277893066, - -0.12014124542474747, - -0.07677537947893143, - 1.0679117441177368, - -0.19159144163131714, - 0.3714933395385742, - -0.25225159525871277, - 0.16138187050819397, - -0.08190486580133438, - -0.3474377691745758, - 0.13265050947666168, - 0.34365156292915344, - -0.29666703939437866, - 0.6284262537956238, - 0.23948973417282104, - -0.3748980760574341, - 0.12418612092733383, - -0.31935620307922363, - 0.4985201358795166, - 0.3137863278388977, - 0.17917583882808685, - -0.03732016310095787, - -0.34272050857543945, - -0.1823723465204239, - 0.18177001178264618, - -0.4208186864852905, - -0.2803672254085541, - -0.16702836751937866, - 0.15541458129882812, - 0.31520089507102966, - -0.2805477976799011, - 0.3430659770965576, - 0.10352038592100143, - -0.1605072170495987, - -0.3442021310329437, - -0.46736398339271545, - -0.08180318027734756, - 0.08650700002908707, - 0.8310564160346985, - -0.11916478723287582, - 0.05509529635310173, - -0.09057893604040146, - 0.18557630479335785, - -0.10518945008516312, - 0.20370543003082275, - 0.05196814239025116, - -0.061092808842659, - -0.454100102186203, - 0.261759489774704, - -0.007629778236150742, - -0.39780792593955994, - -0.12359728664159775, - -0.2059127539396286, - -0.0893588438630104, - 0.11700839549303055, - -0.1693694144487381, - 0.17578516900539398, - 0.3254343569278717, - -0.1111014187335968, - -0.0199649129062891, - -0.36808180809020996, - 0.1326427012681961, - 0.13516975939273834, - 0.13114914298057556, - 0.19489987194538116, - -0.28813454508781433, - -0.3206564486026764, - -0.37855467200279236, - 0.1762486845254898, - -0.3110061585903168, - -0.0863831415772438, - -0.022728750482201576, - 0.24485403299331665, - -0.31534287333488464, - -0.008384250104427338, - -0.21698908507823944, - 0.04126561060547829, - -0.2706139385700226, - 0.24860239028930664, - 0.41023001074790955, - -0.1756933182477951, - 0.1744261384010315, - -0.2324109822511673, - 0.08062459528446198, - 0.06217345595359802, - -0.4316578209400177, - 0.28146860003471375, - -0.14903905987739563 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_005.json b/src/benchmark/output/results/results_graph_005.json deleted file mode 100644 index bac95d4..0000000 --- a/src/benchmark/output/results/results_graph_005.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 54-year-old Chinese male with a significant smoking history of 30 years. He presented with worsening cough for 3 months, which led to further investigation via CT imaging.\n\n**Timeline of Diagnoses:**\n\n1. **April 2023:** Enhanced CT revealed a 22 mm \u00d7 12 mm \u00d7 16 mm mass in the right upper lobe with invasion in the right hilum and mediastinal. PET-CT scan confirmed the CT findings.\n2. **Biopsy (Upper Right Lobe):** Biopsy of the lung lesion showed positive immunohistochemistry (IHC) for TTF-1, NpA, CK7, CD5/6, and Ki67 (60%); and negative for p40, p63, and CD56. Diagnosed with stage IIIA lung adenocarcinoma (cT1cN2M0).\n3. **May 2023:** Targeted NGS analysis identified an EGFRG719X mutation with a mutant allele frequency (MAF) of 3.8%.\n\n**Timeline of Treatments:**\n\n1. **May 2023:** The patient received two cycles of PC chemotherapy (pemetrexed 0.9g d1 and carboplatin 600mg d1) and dacomitinib (30mg).\n2. **Initial Treatment Evaluation:** Initial tumor was considered unresectable due to metastasis in the right hilum and mediastinum.\n\n**Timeline of Outcomes:**\n\n1. **May 2023:** Chest CT showed obvious shrinkage in the lesions in the right upper lung lobe and the lymph nodes of the mediastinum, contributing to partial response (PR).\n2. **Current Status:** The patient is currently receiving treatment for stage IIIA lung adenocarcinoma with EGFRG719X mutation.\n\n**Clinical Summary:**\nThe patient presented with worsening cough and a significant smoking history, leading to further investigation via CT imaging. Biopsy of the lung lesion confirmed the diagnosis of stage IIIA lung adenocarcinoma (cT1cN2M0) with an EGFRG719X mutation. The patient received two cycles of PC chemotherapy and dacomitinib, resulting in a partial response (PR). Further treatment is ongoing to manage this complex case.\n\n**Key Findings:**\n\n* Stage IIIA lung adenocarcinoma with EGFRG719X mutation\n* Partial response (PR) after initial treatment evaluation\n* Significant smoking history of 30 years\n* Worsening cough for 3 months\n\n**Recommendations:**\nFurther evaluation and management are necessary to optimize the patient's care. This may include additional imaging, laboratory tests, or other treatments to manage this complex case.\n\nNote: The above narrative is based on the provided data and may not be a comprehensive clinical case report.", - "bertscore": { - "precision": [ - 0.7573888301849365 - ], - "recall": [ - 0.7618044018745422 - ], - "f1": [ - 0.759590208530426 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 5, - "edge_count": 4, - "avg_in_degree": 0.8, - "density": 0.2 - }, - "trajectory_embedding": [ - 0.26444298028945923, - 0.15941788256168365, - -0.1746055781841278, - 0.1967768669128418, - 0.13093367218971252, - 0.108800008893013, - 0.047415077686309814, - 0.3190433979034424, - 0.4498003125190735, - -0.4936943054199219, - -0.028453731909394264, - 0.19775180518627167, - -0.6453556418418884, - -0.2056516706943512, - -0.17296206951141357, - 0.10433705896139145, - -0.08722388744354248, - 0.390603631734848, - -0.16305780410766602, - -0.2122727930545807, - -0.4088035523891449, - 0.1627717912197113, - -0.44224637746810913, - 0.022073950618505478, - 0.17852269113063812, - -0.062067460268735886, - 0.3639596700668335, - 0.569270133972168, - 0.364279180765152, - 0.27838003635406494, - 0.07867208868265152, - -0.20546475052833557, - 0.04605097696185112, - 0.013336477801203728, - -0.15748649835586548, - 0.26580068469047546, - 0.28932029008865356, - 0.39360129833221436, - -0.23011581599712372, - -0.11030633747577667, - -0.078081414103508, - -0.018068676814436913, - 0.7918617129325867, - 0.16979047656059265, - 0.5370013117790222, - -0.6131890416145325, - -0.19347310066223145, - 0.5365955233573914, - -0.5480602979660034, - -0.32550469040870667, - 0.2359710931777954, - 0.7565101981163025, - 0.5041403770446777, - -0.2397071123123169, - 0.4378383755683899, - -0.22332391142845154, - -0.20167522132396698, - -0.13796362280845642, - -0.17543330788612366, - 0.042690061032772064, - 0.02397197112441063, - -0.04287847876548767, - 0.27494025230407715, - -0.10107463598251343, - -0.09495393931865692, - -0.26205503940582275, - -0.27165770530700684, - 0.036628853529691696, - 0.010086539201438427, - -0.37737196683883667, - -0.21605443954467773, - -0.25396811962127686, - -0.08632999658584595, - 0.11548461765050888, - 0.20971211791038513, - -0.10876703262329102, - 0.2750052809715271, - -0.0752566009759903, - 0.07908450067043304, - 0.14167554676532745, - 0.012829994782805443, - -0.10998060554265976, - -0.016856277361512184, - 0.32763800024986267, - -0.3715936839580536, - 0.02066645585000515, - -0.1057099923491478, - -0.15630166232585907, - -0.3564395308494568, - 0.19048824906349182, - 0.10057153552770615, - -0.3014791011810303, - 0.09028486162424088, - -0.2506754398345947, - -0.017363328486680984, - 0.15851105749607086, - 0.49282804131507874, - 0.166995570063591, - 0.9529813528060913, - 0.014598676934838295, - 0.18515194952487946, - -0.03545413538813591, - 0.1201309785246849, - 0.05223888158798218, - 0.4652419686317444, - -0.18059960007667542, - 0.19650860130786896, - -0.505384624004364, - 0.16876018047332764, - 0.4273758828639984, - 0.04789828136563301, - -0.14991816878318787, - -0.012555981054902077, - -0.2510371208190918, - 0.17002657055854797, - 0.17869381606578827, - -0.020138174295425415, - 0.15021224319934845, - 0.20156557857990265, - -0.4831060767173767, - -0.15941780805587769, - -0.13622929155826569, - 0.324978768825531, - 0.214555025100708, - -0.5191226005554199, - -0.10466263443231583, - -0.1056557446718216, - 0.03231992572546005, - -0.13290998339653015, - 0.13541147112846375, - -0.4916798174381256, - -0.20754575729370117, - -0.11399044841527939, - 0.11582426726818085, - -0.27831584215164185, - 0.3694887161254883, - -0.36065706610679626, - 0.07822888344526291, - -1.139994740486145, - 0.3266427218914032, - -0.4491669237613678, - -0.13711878657341003, - 0.020153993740677834, - -0.5781341195106506, - -0.17323558032512665, - -0.18497522175312042, - -0.1455450803041458, - 0.12946856021881104, - -0.036234062165021896, - -0.07339540868997574, - 0.003791165305301547, - -0.06739691644906998, - 0.2355768382549286, - 0.37865930795669556, - 0.10425474494695663, - 0.22910253703594208, - 0.048134695738554, - 0.3423025608062744, - 0.24893251061439514, - -0.14016327261924744, - 0.11029203981161118, - 0.4786514341831207, - 0.22046053409576416, - -0.016301019117236137, - -0.038135699927806854, - -0.623832106590271, - 0.06389786303043365, - -0.1485079973936081, - 0.05580617114901543, - 0.12250997871160507, - -0.16259676218032837, - 0.08546064794063568, - -0.10227549076080322, - 0.5625059008598328, - 0.16142921149730682, - 0.4568749964237213, - -0.08332149684429169, - 0.010616607964038849, - 0.0946546271443367, - 0.2393914759159088, - 0.03938936069607735, - -0.2937808632850647, - 0.7030659914016724, - 0.3660908341407776, - -0.242463156580925, - 0.23471656441688538, - 0.4681726396083832, - -0.13847549259662628, - -0.33584561944007874, - -0.1295376569032669, - 0.47047853469848633, - -0.21746821701526642, - 0.5052754282951355, - -0.43891334533691406, - 0.07624028623104095, - 0.0781157836318016, - -0.23918123543262482, - -0.019108915701508522, - 0.023412484675645828, - -0.15876367688179016, - 0.2233765870332718, - 0.013265090063214302, - -0.27820059657096863, - 0.06996011734008789, - 0.12561726570129395, - -0.12418381124734879, - 0.24710974097251892, - -0.003401172114536166, - 0.08434903621673584, - 0.07389038056135178, - -0.07700999081134796, - 0.20359942317008972, - 0.08988092839717865, - 0.2677081525325775, - -0.046653736382722855, - -0.31211763620376587, - 0.2533976435661316, - -0.058825623244047165, - -0.2366064339876175, - 0.13747508823871613, - -0.1293993443250656, - -0.2816670835018158, - 0.09862317144870758, - -0.04895424097776413, - -0.46308016777038574, - 0.24614211916923523, - 0.19535012543201447, - 0.20770525932312012, - 0.10454127937555313, - -0.06568097323179245, - 0.015821048989892006, - -0.5318699479103088, - 0.3571562170982361, - -0.029392218217253685, - -0.11664308607578278, - -0.32178542017936707, - 0.25908562541007996, - -0.12581484019756317, - -0.13722440600395203, - 0.4060828685760498, - 0.0326664038002491, - -0.06013842672109604, - 0.04090610519051552, - -0.31625327467918396, - -0.025044357404112816, - -0.28987154364585876, - 0.042393073439598083, - 0.28785213828086853, - 0.14498302340507507, - 0.29223042726516724, - 0.1767764538526535, - -0.19618161022663116, - 0.13886326551437378, - -0.1817779690027237, - -0.39477795362472534, - -0.3424406945705414, - -0.030069774016737938, - -0.020694833248853683, - -0.6699351072311401, - 0.24384908378124237, - -0.14709126949310303, - 0.03677447885274887, - 0.147049218416214, - -0.4412923753261566, - -0.1646527796983719, - -0.05756424739956856, - -0.04163757711648941, - 0.05752462148666382, - -0.1536444127559662, - 0.02227427437901497, - -0.3373582363128662, - -0.3324770927429199, - -0.06726725399494171, - 0.0903121829032898, - 0.09357617050409317, - 0.05206674337387085, - -0.3169952630996704, - 0.04694559425115585, - 0.284548819065094, - -0.33872148394584656, - -0.2569897770881653, - 0.16392681002616882, - -0.2700750231742859, - 0.11068473011255264, - -0.11211707442998886, - 0.17844170331954956, - 0.3257884681224823, - 0.145432248711586, - 0.14286966621875763, - 0.48899954557418823, - 0.4766181409358978, - -0.08813217282295227, - 0.0742560550570488, - 0.07247768342494965, - -0.048548467457294464, - -0.0719694048166275, - -0.27989187836647034, - 0.2888413369655609, - -0.07350458204746246, - 0.02597568929195404, - 0.03725794702768326, - 0.33235830068588257, - 0.16973096132278442, - -0.36056822538375854, - -0.024160826578736305, - 0.5726142525672913, - 0.1274251490831375, - 0.0720137432217598, - 0.09204301983118057, - 0.3280442953109741, - 0.3754640519618988, - -0.011867234483361244, - -0.020063292235136032, - 0.03426354005932808, - -0.10167889297008514, - -0.003683286951854825, - -0.1615658700466156, - 0.24738983809947968, - 0.37143439054489136, - -0.11800484359264374, - -0.3787926733493805, - 0.19062861800193787, - -0.10042177140712738, - -0.0920012891292572, - -0.188311368227005, - -0.02597857639193535, - 0.03697410225868225, - -0.1832079291343689, - 0.37874919176101685, - -0.09673632681369781, - 0.034678392112255096, - 0.5132294297218323, - -0.1839822381734848, - -0.05141686275601387, - 0.2306409329175949, - -0.16698555648326874, - -0.47715896368026733, - 0.2924748957157135, - -0.14144392311573029, - -0.07684727013111115, - 0.39445576071739197, - -0.3700679838657379, - 0.014759650453925133, - -0.12398584187030792, - 0.29324641823768616, - -0.04657968133687973, - 0.006628687493503094, - -0.005731302313506603, - -0.00021234751329757273, - 0.03934416174888611, - 0.5866349935531616, - 0.05733019858598709, - 0.10452653467655182, - 0.5318712592124939, - -0.04209374636411667, - -0.3857511281967163, - 0.07638968527317047, - 0.019100463017821312, - 0.3273197412490845, - -0.25662511587142944, - -0.12148809432983398, - -0.20611067116260529, - 0.17535126209259033, - 0.06717584282159805, - -0.1954023241996765, - -0.08450596034526825, - 0.10032176971435547, - 0.09494118392467499, - 0.01739845797419548, - 0.3453163504600525, - 0.09542397409677505, - -0.1084357276558876, - 0.4954783320426941, - -0.1315261572599411, - -0.1482975035905838, - 0.4415794312953949, - -0.20641303062438965, - 0.3011438250541687, - -0.1731223315000534, - -0.18088027834892273, - -0.33862677216529846, - 0.14215219020843506, - -0.3085923492908478, - -0.2220015972852707, - 0.04336664080619812, - -0.12681689858436584, - 0.09120196849107742, - -0.12737341225147247, - 0.17651645839214325, - 0.02825837768614292, - 0.054775822907686234, - 0.18003126978874207, - 0.4720068573951721, - 0.07884915918111801, - -0.4161751866340637, - 0.20082008838653564, - -0.06317639350891113, - 0.11472564935684204, - -0.2989615797996521, - 0.1219843178987503, - -0.19053146243095398, - 0.4439583420753479, - 0.034178465604782104, - -0.0072060851380229, - 0.16246744990348816, - -0.03201517462730408, - -0.1445402204990387, - -0.5315333604812622, - 0.04227222129702568, - -0.05526598542928696, - 0.02870592474937439, - 0.05986417084932327, - 0.11589948832988739, - -0.35593554377555847, - -0.1692359745502472, - 0.06701365858316422, - 0.10297272354364395, - 0.13722950220108032, - -0.22621572017669678, - 0.05933862179517746, - 0.2716220021247864, - 0.22544816136360168, - 0.44579941034317017, - -0.3770504295825958, - 0.1628856211900711, - 0.200343519449234, - -0.34084969758987427, - -0.053314875811338425, - -0.1345786303281784, - -0.36352282762527466, - -0.04250466078519821, - 0.20133817195892334, - 0.15243177115917206, - 0.043334923684597015, - 0.007842861115932465, - -0.013355100527405739, - 0.2043103277683258, - -0.3694179654121399, - 0.012494584545493126, - 0.5102630853652954, - 0.21045568585395813, - 0.48889145255088806, - -0.05580740422010422, - -0.5707851648330688, - -0.23632535338401794, - -0.08670255541801453, - -0.49997586011886597, - 0.0857858657836914, - 0.21489588916301727, - -0.11693079769611359, - -0.04312785714864731, - 0.12231558561325073, - 0.06176489591598511, - -0.03878216817975044, - 0.0468897745013237, - -0.38922375440597534, - 0.19669672846794128, - -0.00937594287097454, - -0.36596208810806274, - -0.03625774383544922, - -0.20736178755760193, - -0.35025161504745483, - -0.23090562224388123, - 0.3388487994670868, - 0.26125267148017883, - -0.2289842665195465, - 0.00018537938012741506, - 0.12364313751459122, - -0.2201654016971588, - -0.3170410096645355, - -0.0636974424123764, - -0.29080936312675476, - 0.5260792970657349, - -0.05918588489294052, - -0.1896524429321289, - 0.10338175296783447, - -0.25339287519454956, - 0.011904867365956306, - 0.1397339403629303, - 0.06271512806415558, - 0.41630515456199646, - -0.0025386542547494173, - 0.11965905129909515, - 0.5557200312614441, - 0.1450423300266266, - 0.06909553706645966, - 0.28708428144454956, - -0.07803681492805481, - -0.04901803657412529, - -0.05292012169957161, - -0.3050917088985443, - 0.4445802569389343, - -0.33791106939315796, - 0.08996917307376862, - 0.0697154700756073, - 0.3222559988498688, - -0.4623467028141022, - -0.3673073649406433, - -0.10213188827037811, - -0.0171823687851429, - -0.06902258843183517, - -0.31103968620300293, - -0.22007064521312714, - -0.1482122242450714, - -0.19951453804969788, - -0.004743661731481552, - 0.22902658581733704, - 0.46087178587913513, - 0.16014492511749268, - 0.1784369796514511, - -0.3276606500148773, - -0.18040016293525696, - 0.11403970420360565, - 0.25914961099624634, - 0.15003474056720734, - -0.06528967618942261, - -0.185510516166687, - 0.22951605916023254, - 0.4858551621437073, - -0.053555238991975784, - -0.016514942049980164, - 0.11476574093103409, - 0.03903410583734512, - 0.0017821133369579911, - 0.006769922561943531, - -0.09870482981204987, - 0.05872776359319687, - -0.3077263832092285, - 0.2027784287929535, - -0.1770610213279724, - -0.23810212314128876, - 0.24148087203502655, - -0.23222407698631287, - -0.5650317668914795, - -0.19477856159210205, - 0.15111960470676422, - -0.13109645247459412, - -0.07055538892745972, - 0.204031303524971, - 0.3559121787548065, - -0.006582754664123058, - -0.25657814741134644, - 0.02635561302304268, - -0.48771458864212036, - -0.23422065377235413, - 0.14435827732086182, - -0.12046962976455688, - 0.009029055014252663, - -0.0837835818529129, - 0.27395758032798767, - 0.43363967537879944, - 0.27297443151474, - -0.27179041504859924, - 0.1114642471075058, - 0.4251101016998291, - 0.3218974471092224, - -0.1977650225162506, - -10.5908842086792, - -0.08685319125652313, - -0.31190934777259827, - 0.5034602880477905, - -0.09497231245040894, - 0.10752934217453003, - -0.13767294585704803, - -0.04231105372309685, - 0.22920577228069305, - 0.15235842764377594, - -0.16417630016803741, - -0.04306260496377945, - 0.24129971861839294, - 0.2839868664741516, - 0.09350141137838364, - 0.08771146833896637, - -0.3204841911792755, - 0.21960051357746124, - -0.024087198078632355, - 0.12094122171401978, - 0.22182981669902802, - 0.5025917291641235, - -0.32004934549331665, - 0.2369130402803421, - 0.11897021532058716, - -0.40965256094932556, - -0.19889792799949646, - 0.5966641902923584, - 0.34774017333984375, - -0.47192734479904175, - 0.27572983503341675, - 0.16872575879096985, - -0.16094693541526794, - 0.08402447402477264, - -0.053623683750629425, - -0.2379598617553711, - -0.1617407500743866, - 0.219281405210495, - 0.035501640290021896, - -0.06771695613861084, - 0.14385788142681122, - -0.25415951013565063, - 0.3277502655982971, - 0.15785981714725494, - -0.09087453782558441, - -0.4941312372684479, - -0.054533619433641434, - -1.5412847995758057, - 0.16122953593730927, - 0.3375662863254547, - 0.3884543478488922, - 0.11754526942968369, - 0.13307985663414001, - 0.2947734594345093, - -0.28290247917175293, - -0.018010545521974564, - -0.225310280919075, - 0.026250740513205528, - 0.20847436785697937, - -0.028243619948625565, - 0.040125180035829544, - 0.06619243323802948, - 0.45875972509384155, - 0.03913953900337219, - -0.22780942916870117, - 0.18178462982177734, - 0.06808008998632431, - -0.19776836037635803, - -0.3751186728477478, - -0.6779531836509705, - -0.6565596461296082, - 0.1161058098077774, - -0.03779923915863037, - -0.014081376604735851, - 0.4053921699523926, - -0.023084603250026703, - -0.30915552377700806, - 0.11302802711725235, - 0.041265204548835754, - 0.39814597368240356, - 0.2175280600786209, - -0.020090360194444656, - 0.04153497889637947, - -0.13007913529872894, - -0.17516666650772095, - -0.1990775316953659, - 0.07741371542215347, - 0.5744197368621826, - 0.0051642791368067265, - 0.003565080463886261, - 0.02012748457491398, - 0.3525918126106262, - -0.11620154231786728, - -0.13370291888713837, - -0.391549289226532, - 0.04494868963956833, - 0.05321664735674858, - 0.10255566984415054, - -0.08858299255371094, - -0.08601029217243195, - -0.24060718715190887, - -0.020026855170726776, - -0.11588732153177261, - -0.41942930221557617, - -0.5410914421081543, - 0.20725569128990173, - 0.20417055487632751, - 0.15526965260505676, - -0.004157430026680231, - 0.023549994453787804, - -0.15507926046848297, - -0.05191318318247795, - 0.34866026043891907, - 0.5562551617622375, - 0.2522204518318176, - -0.023343289270997047, - 0.007140076253563166, - -0.08937744051218033, - -0.19463960826396942, - -0.017210185527801514, - 0.4520553648471832, - 0.019033867865800858, - 0.04146445542573929, - 0.558208167552948, - 0.018179263919591904, - -0.055671386420726776, - 0.9056228399276733, - -0.3774851858615875, - 0.25849539041519165, - -0.1187991127371788, - 0.1613101065158844, - 0.0014520942931994796, - -0.526279091835022, - 0.04984378069639206, - 0.4215150773525238, - -0.37005680799484253, - 0.8397720456123352, - 0.3449508547782898, - -0.3784930109977722, - 0.02001301385462284, - -0.35369402170181274, - 0.42638564109802246, - 0.2703634202480316, - 0.2578088343143463, - -0.23114927113056183, - -0.19035080075263977, - -0.4070289134979248, - 0.029389183968305588, - -0.460902601480484, - -0.33441486954689026, - -0.13435077667236328, - 0.10411826521158218, - 0.06014033406972885, - -0.16343533992767334, - 0.2967160642147064, - 0.1560571938753128, - -0.23506078124046326, - -0.15030960738658905, - -0.49159687757492065, - -0.288693904876709, - -0.004842457361519337, - 0.7797421216964722, - 0.07439661026000977, - -0.12136934697628021, - -0.09562963247299194, - 0.16359283030033112, - -0.1262212097644806, - 0.0713212639093399, - 0.06340330094099045, - -0.012859612703323364, - -0.3709489405155182, - 0.1904623806476593, - 0.17486698925495148, - -0.3707614541053772, - -0.2279631644487381, - -0.11814628541469574, - 0.04541970044374466, - 0.0864521712064743, - -0.13294580578804016, - 0.03790726140141487, - 0.3080064654350281, - -0.14976727962493896, - 0.00935194082558155, - -0.35069507360458374, - -0.0067945122718811035, - 0.11920662224292755, - 0.21115157008171082, - 0.12239930778741837, - -0.3420785963535309, - -0.25314730405807495, - -0.40954717993736267, - 0.25935789942741394, - -0.44630423188209534, - -0.02935277298092842, - 0.023297931998968124, - 0.2896445393562317, - -0.2899172902107239, - 0.1287817507982254, - -0.1425635814666748, - 0.03875355422496796, - -0.3075428605079651, - 0.30901435017585754, - 0.5397374033927917, - -0.19223614037036896, - 0.2921281158924103, - -0.1078154444694519, - 0.24127164483070374, - -0.007835115306079388, - -0.30574044585227966, - 0.1526556760072708, - -0.24457792937755585 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_006.json b/src/benchmark/output/results/results_graph_006.json deleted file mode 100644 index 89b6ec6..0000000 --- a/src/benchmark/output/results/results_graph_006.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 54-year-old man with a history of colitis. He is an ex-smoker with 60 pack-years of smoking experience.\n\n**Timeline of Diagnoses:**\n\n1. **June 2014:** The patient presents to the clinic with right hip pain for two months.\n2. **June 2014 (CT scan):** A CT scan reveals a ~25-mm nodule in the right upper lobe of the lung and a 50-mm mass in the right pelvic region.\n3. **June 2014 (18F-fluorodeoxyglucose positron emission tomography-CT):** The patient undergoes further imaging, which shows intense accumulation in the right S2 nodule of the lung.\n4. **June 2014 (18F-fluorodeoxyglucose positron emission tomography-CT):** The patient receives additional imaging, which reveals standardized uptake value (SUV) max: 15.2 in the right adrenal gland and a pelvic mass from the right sciatic/pubic bone to the right internal obturator muscle (SUV max: 10.81).\n5. **Biopsy:** A transbronchial biopsy (TBB) specimen from the nodule in the right lung is performed, which identifies carcinoma with neuroendocrine features.\n6. **June 2014 (staging and mutation status):** The patient's cancer is staged, and his mutation status is determined.\n\n**Timeline of Treatments:**\n\n1. **June 2014:** The patient undergoes a CT scan to evaluate the right hip pain.\n2. **June 2014:** The patient receives further imaging using 18F-fluorodeoxyglucose positron emission tomography-CT.\n3. **June 2014:** The patient undergoes additional imaging using 18F-fluorodeoxyglucose positron emission tomography-CT.\n4. **June 2014:** The patient receives a transbronchial biopsy (TBB) of the nodule in the right lung.\n\n**Outcomes:**\n\n1. **Diagnosis:** The patient is diagnosed with carcinoma with neuroendocrine features, which is confirmed by histopathological examination of the TBB specimen.\n2. **Staging and Mutation Status:** The patient's cancer is staged as stage IV lung cancer (T1bN0M1b), and his mutation status is negative for epidermal growth factor receptor and anaplastic lymphoma kinase gene, with a programmed death-ligand 1 (PD-L1) tumor proportion score of less than 1%.\n3. **Treatment:** The patient's treatment plan is not specified in the provided data.\n\n**Conclusion:**\nThe patient presents with right hip pain and is diagnosed with carcinoma with neuroendocrine features after undergoing imaging studies and a transbronchial biopsy (TBB). His cancer is staged as stage IV lung cancer, and his mutation status is negative. The patient's treatment plan is not specified in the provided data.", - "bertscore": { - "precision": [ - 0.704978883266449 - ], - "recall": [ - 0.6731678247451782 - ], - "f1": [ - 0.6887062788009644 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 6, - "edge_count": 5, - "avg_in_degree": 0.8333333333333334, - "density": 0.16666666666666666 - }, - "trajectory_embedding": [ - 0.22079414129257202, - 0.0068036518059670925, - -0.10039127618074417, - 0.16631634533405304, - 0.10629185289144516, - 0.08402007818222046, - 0.24246330559253693, - 0.2994869649410248, - 0.36667490005493164, - -0.5220186710357666, - -0.11857226490974426, - 0.10266987234354019, - -0.7685451507568359, - 0.058542799204587936, - -0.482259601354599, - 0.13929423689842224, - 0.1318996697664261, - 0.4940612316131592, - 0.04252505302429199, - -0.15624141693115234, - -0.44017040729522705, - 0.15033189952373505, - -0.4038124084472656, - -0.11106905341148376, - 0.19717921316623688, - -0.12546579539775848, - 0.3431145250797272, - 0.4914620816707611, - 0.2694730758666992, - 0.23003725707530975, - 0.1788916438817978, - 0.03423051908612251, - 0.049904029816389084, - -0.02016344480216503, - -0.23770107328891754, - 0.24308933317661285, - 0.23280774056911469, - 0.40942931175231934, - -0.026274390518665314, - 0.17399978637695312, - -0.11446791142225266, - -0.04195946455001831, - 0.8968066573143005, - 0.2236592173576355, - 0.5602929592132568, - -0.7041261792182922, - -0.10314673185348511, - 0.36623892188072205, - -0.6300966143608093, - -0.16875718533992767, - 0.2137339562177658, - 0.9334409236907959, - 0.5245199799537659, - -0.1517276018857956, - 0.5086846351623535, - -0.14341230690479279, - -0.16930514574050903, - -0.09730882197618484, - -0.17902076244354248, - 0.15082213282585144, - 0.17585481703281403, - -0.07869728654623032, - 0.16509877145290375, - -0.07819914072751999, - -0.30090823769569397, - -0.21946464478969574, - -0.28894203901290894, - -0.04872637614607811, - -0.10376960039138794, - -0.4606766700744629, - -0.3887186348438263, - -0.08500645309686661, - -0.17090988159179688, - 0.07650268822908401, - 0.05579487606883049, - -0.15813195705413818, - 0.21702039241790771, - -0.06479009240865707, - -0.0040860590524971485, - 0.09251502901315689, - 0.13362562656402588, - -0.1260027140378952, - 0.17094404995441437, - 0.24321693181991577, - -0.46696171164512634, - 0.06823756545782089, - 0.07724779099225998, - -0.09863746166229248, - -0.3433823883533478, - 0.11276907473802567, - 0.3425576984882355, - -0.34901031851768494, - -0.0958196148276329, - -0.1562359780073166, - -0.041846465319395065, - -0.013722777366638184, - 0.259452223777771, - 0.4240398108959198, - 0.9436850547790527, - 0.10621755570173264, - 0.3363731801509857, - 0.2632546126842499, - 0.1998424381017685, - 0.09690434485673904, - 0.5815617442131042, - -0.18132996559143066, - 0.3244759738445282, - -0.3675495684146881, - -0.08069717139005661, - 0.34332945942878723, - -0.05375170707702637, - -0.12344181537628174, - -0.10996752977371216, - -0.12526308000087738, - 0.06525233387947083, - 0.1104477271437645, - -0.23697347939014435, - 0.10229384154081345, - 0.23051869869232178, - -0.33135369420051575, - -0.10747476667165756, - -0.11386413127183914, - 0.20419567823410034, - 0.4044123589992523, - -0.36454907059669495, - -0.030490867793560028, - -0.1701083928346634, - 0.1706821471452713, - 0.03659148886799812, - 0.15833266079425812, - -0.3549974858760834, - -0.27909743785858154, - -0.07552865892648697, - 0.25933876633644104, - -0.24047040939331055, - 0.18552474677562714, - -0.39167866110801697, - -0.07685046643018723, - -1.1124176979064941, - 0.26425859332084656, - -0.4439237117767334, - -0.032162588089704514, - 0.02874627523124218, - -0.40296506881713867, - -0.19871585071086884, - -0.23611372709274292, - -0.19041521847248077, - 0.10303816944360733, - 0.0797235295176506, - -0.0895484983921051, - 0.12768779695034027, - -0.02637212537229061, - 0.14894819259643555, - 0.20680344104766846, - 0.1126171126961708, - 0.2035607546567917, - 0.16398178040981293, - 0.22596649825572968, - 0.13256238400936127, - -0.09712529182434082, - -0.011426550336182117, - 0.22385120391845703, - 0.1396864652633667, - 0.027051517739892006, - 0.11868343502283096, - -0.5744277834892273, - 0.1545202136039734, - -0.3565215766429901, - 0.2055472731590271, - 0.10641887038946152, - 0.014608405530452728, - 0.10834010690450668, - -0.16103188693523407, - 0.4335976839065552, - 0.12601865828037262, - 0.3254782259464264, - -0.09430418163537979, - -0.2529444396495819, - -0.05710095167160034, - 0.08799135684967041, - 0.06612095236778259, - -0.23296570777893066, - 0.6526739597320557, - 0.2884293496608734, - -0.21988075971603394, - 0.20764988660812378, - 0.5347834229469299, - -0.27766022086143494, - -0.17226870357990265, - -0.11798069626092911, - 0.38795337080955505, - -0.2307334989309311, - 0.4399009943008423, - -0.43759146332740784, - -0.05755443871021271, - 0.04299235716462135, - -0.27087801694869995, - -0.09536450356245041, - 0.21022562682628632, - -0.23772500455379486, - 0.11388953775167465, - 0.17025728523731232, - -0.4522460997104645, - 0.14414696395397186, - 0.17819000780582428, - -0.16169734299182892, - 0.4047943353652954, - 0.17276054620742798, - 0.1322757750749588, - -0.16878004372119904, - -0.03749946132302284, - 0.19344262778759003, - 0.07374321669340134, - 0.2004312425851822, - -0.09735529869794846, - -0.302091509103775, - 0.3800511062145233, - -0.05587804690003395, - -0.3234705626964569, - 0.09815727919340134, - -0.23396049439907074, - -0.35002967715263367, - 0.330935001373291, - -0.015080389566719532, - -0.5263404846191406, - 0.1741846650838852, - 0.2116841822862625, - 0.16481342911720276, - 0.10368741303682327, - -0.11404214054346085, - -0.10746178776025772, - -0.2864334285259247, - 0.3936462700366974, - -0.011800636537373066, - -0.24480010569095612, - -0.2115149348974228, - 0.25830671191215515, - -0.15830115973949432, - -0.2725900113582611, - 0.48065876960754395, - 0.06234290078282356, - -0.06465213745832443, - 0.15510065853595734, - -0.34781190752983093, - -0.025452444329857826, - -0.19982145726680756, - 0.05827787518501282, - 0.3428863286972046, - 0.023153021931648254, - 0.2199355959892273, - 0.2810784876346588, - -0.20293982326984406, - 0.22098056972026825, - -0.25315889716148376, - -0.4629002809524536, - -0.2407120317220688, - -0.058896537870168686, - -0.09344895929098129, - -0.5377377867698669, - 0.14901863038539886, - 0.1255534291267395, - -0.14845746755599976, - 0.11232221871614456, - -0.21508552134037018, - 0.011460770852863789, - -0.11231038719415665, - -0.07024973630905151, - 0.11023566871881485, - -0.16388089954853058, - 0.13134844601154327, - -0.304773211479187, - -0.270674467086792, - -0.08208248764276505, - 0.06594706326723099, - 0.22898180782794952, - 0.14642421901226044, - -0.14233045279979706, - 0.15510578453540802, - 0.34092628955841064, - -0.3536076247692108, - -0.2824692726135254, - 0.229201078414917, - -0.25876644253730774, - 0.030594659969210625, - -0.10574366897344589, - 0.19737417995929718, - 0.46873411536216736, - -0.08920243382453918, - 0.2107650488615036, - 0.43203678727149963, - 0.485553115606308, - 0.18064232170581818, - -0.03805295377969742, - 0.012246537022292614, - -0.11030981689691544, - -0.0027868703473359346, - -0.4539550244808197, - 0.13978344202041626, - -0.058640409260988235, - -5.440165477921255e-05, - 0.09393271803855896, - 0.3259073793888092, - 0.09322289377450943, - -0.5760225653648376, - -0.033931832760572433, - 0.5999140739440918, - 0.08858650922775269, - -0.02700190246105194, - 0.032323505729436874, - 0.28788506984710693, - 0.6021357178688049, - 0.03305639699101448, - -0.14865659177303314, - 0.14405660331249237, - -0.13897894322872162, - -0.09233909845352173, - -0.011767186224460602, - -0.10709307342767715, - 0.31594613194465637, - -0.042544495314359665, - -0.09414880722761154, - 0.17955677211284637, - -0.1633128672838211, - -0.1542462706565857, - -0.013720334507524967, - 0.05147669091820717, - 0.004824144300073385, - -0.2277732938528061, - 0.29496249556541443, - -0.042988765984773636, - -0.11788808554410934, - 0.5201581716537476, - -0.05039083585143089, - -0.2486046552658081, - 0.302303284406662, - -0.21761350333690643, - -0.582029402256012, - 0.19308650493621826, - -0.2496802657842636, - 0.07102323323488235, - 0.2501809298992157, - -0.29045209288597107, - 0.05501468852162361, - -0.017994580790400505, - 0.3139117658138275, - 0.012506749480962753, - -0.06005227565765381, - -0.10003703832626343, - -0.1066574826836586, - 0.18209423124790192, - 0.6474147439002991, - 0.09461668133735657, - 0.17633883655071259, - 0.6098618507385254, - -0.08829215914011002, - -0.3072599470615387, - 0.017276709899306297, - 0.0022809531074017286, - 0.3820231258869171, - -0.29842817783355713, - -0.03244083747267723, - -0.25422340631484985, - 0.0009374500368721783, - 0.04893822968006134, - -0.3796083927154541, - -0.030428295955061913, - 0.09868858009576797, - -0.11614179611206055, - 0.008694696240127087, - 0.22211825847625732, - 0.3671889007091522, - -0.0009426574106328189, - 0.47206875681877136, - -0.07574746757745743, - -0.10498600453138351, - 0.2520662844181061, - -0.16737580299377441, - 0.31326642632484436, - -0.09920656681060791, - -0.30135247111320496, - -0.4270583689212799, - 0.039883311837911606, - -0.3513769805431366, - -0.10385512560606003, - -0.04402327165007591, - -0.01592855155467987, - 0.01000981405377388, - -0.12827791273593903, - 0.2715034782886505, - 0.035369858145713806, - 0.13323481380939484, - 0.13791193068027496, - 0.43259355425834656, - -0.005205173511058092, - -0.37963005900382996, - 0.1343412846326828, - -0.02357921563088894, - 0.05957635119557381, - -0.12053096294403076, - 0.03773908317089081, - -0.24475590884685516, - 0.45484817028045654, - 0.11953041702508926, - -0.04500192403793335, - 0.03669946268200874, - -0.21489308774471283, - -0.13656622171401978, - -0.580854058265686, - -0.04611116275191307, - -0.12314959615468979, - 0.13981828093528748, - 0.051384419202804565, - 0.03139876574277878, - -0.26936283707618713, - -0.11874673515558243, - 0.019214266911149025, - 0.2721843421459198, - 0.22975707054138184, - -0.10396451503038406, - 0.025812318548560143, - 0.08467414230108261, - 0.23219065368175507, - 0.3321336507797241, - -0.2593180239200592, - 0.21241474151611328, - 0.13340948522090912, - -0.19853274524211884, - -0.025188006460666656, - 0.03496231511235237, - -0.38808634877204895, - -0.018659139052033424, - 0.25908979773521423, - 0.1340169757604599, - 0.08905681222677231, - -0.10959099978208542, - 0.09189996868371964, - 0.3874637186527252, - -0.4711107015609741, - -0.018386000767350197, - 0.39791426062583923, - 0.09700528532266617, - 0.6057591438293457, - -0.12522096931934357, - -0.3472076952457428, - -0.03601638600230217, - -0.058673154562711716, - -0.5560763478279114, - 0.09290676563978195, - 0.17779670655727386, - -0.305651992559433, - -0.06663582473993301, - 0.09272433072328568, - 0.13379186391830444, - -0.08197511732578278, - 0.22000505030155182, - -0.044205281883478165, - 0.07498061656951904, - -0.055478159338235855, - -0.3313036262989044, - -0.14635932445526123, - -0.35792073607444763, - -0.3312450349330902, - -0.2529447674751282, - 0.3988436162471771, - 0.3061753809452057, - -0.11526856571435928, - 0.17605692148208618, - -0.0007515226607210934, - -0.2814123332500458, - -0.1484595686197281, - -0.01846146024763584, - -0.2123296707868576, - 0.5361337065696716, - 0.12008785456418991, - -0.23897050321102142, - 0.22844462096691132, - -0.37481215596199036, - 0.15108340978622437, - 0.15056148171424866, - 0.12636294960975647, - 0.3509195148944855, - 0.2777665853500366, - 0.09697417169809341, - 0.43843722343444824, - 0.3124072253704071, - -0.07572551816701889, - 0.19811131060123444, - -0.08091238141059875, - -0.08688917756080627, - -0.13214188814163208, - -0.09865088015794754, - 0.4838005602359772, - -0.30266332626342773, - -0.03403162583708763, - 0.10319817066192627, - 0.1325846165418625, - -0.36536845564842224, - -0.16807138919830322, - -0.07807651907205582, - -0.0537039153277874, - -0.11788507550954819, - -0.45104503631591797, - -0.28826671838760376, - 0.0798415020108223, - -0.27211225032806396, - -0.043952081352472305, - 0.34794870018959045, - 0.4874558746814728, - 0.2083568125963211, - 0.05756905674934387, - -0.21766509115695953, - -0.4300067722797394, - 0.09749796241521835, - 0.19903719425201416, - 0.09355106949806213, - 0.009175081737339497, - -0.2838975191116333, - 0.24456417560577393, - 0.5851269960403442, - -0.10942459106445312, - 0.01835516467690468, - 0.1404767483472824, - -0.08869767189025879, - -0.09694862365722656, - -0.054631203413009644, - -0.20034998655319214, - -0.0019746620673686266, - -0.3720794916152954, - 0.2800564765930176, - -0.40893101692199707, - -0.30932316184043884, - 0.2936365306377411, - -0.11880290508270264, - -0.5519880056381226, - -0.18199597299098969, - 0.16779719293117523, - -0.2803634703159332, - 0.0043396796099841595, - 0.27434730529785156, - 0.4991426467895508, - 0.12240400165319443, - -0.25896984338760376, - 0.08953503519296646, - -0.560848593711853, - -0.11070572584867477, - 0.21627259254455566, - -0.14092548191547394, - 0.07231991738080978, - 0.05766952037811279, - 0.30796676874160767, - 0.5023131966590881, - 0.31072893738746643, - -0.43833982944488525, - 0.03072943724691868, - 0.4111979305744171, - 0.26888135075569153, - -0.2015589028596878, - -10.723095893859863, - -0.04805627465248108, - -0.381538063287735, - 0.5767348408699036, - -0.16299591958522797, - 0.03251035138964653, - 0.0075267404317855835, - -0.10211920738220215, - 0.16362044215202332, - 0.21265755593776703, - -0.19062048196792603, - 0.030612563714385033, - 0.28202539682388306, - 0.3649527132511139, - -0.12857939302921295, - -0.009245823137462139, - -0.18335022032260895, - 0.17392456531524658, - -0.1457454115152359, - 0.09156125038862228, - 0.10381583124399185, - 0.42891955375671387, - -0.3075563311576843, - 0.3947888910770416, - 0.06674876809120178, - -0.24433112144470215, - -0.11992726475000381, - 0.5517933964729309, - 0.11905160546302795, - -0.4133559763431549, - 0.36222970485687256, - 0.22189702093601227, - -0.11719927936792374, - 0.10985630005598068, - -0.004017889499664307, - -0.09445381164550781, - -0.15481187403202057, - 0.18345069885253906, - 0.1444598287343979, - 0.09864375740289688, - -0.10048773139715195, - -0.3825542628765106, - 0.15289442241191864, - 0.22854356467723846, - -0.14393357932567596, - -0.42122340202331543, - -0.09839614480733871, - -1.5444248914718628, - 0.29442864656448364, - 0.4110785722732544, - 0.29480671882629395, - 0.004414116498082876, - 0.19256694614887238, - 0.25935569405555725, - -0.4519692361354828, - 0.0019144341349601746, - -0.14617261290550232, - 0.09103530645370483, - 0.1367589235305786, - -0.013281870633363724, - 0.06831762939691544, - -0.07128817588090897, - 0.3834187984466553, - -0.12835346162319183, - -0.30257460474967957, - 0.0046989344991743565, - -0.12740753591060638, - -0.22382010519504547, - -0.2488587349653244, - -0.4704655706882477, - -0.5008402466773987, - 0.15579168498516083, - -0.04764612019062042, - -0.13072627782821655, - 0.5651500821113586, - -0.11657309532165527, - -0.4930977523326874, - 0.1580595076084137, - -0.04607750102877617, - 0.3741014897823334, - 0.3018045127391815, - 0.0002569444477558136, - 0.10475415736436844, - -0.08884236216545105, - -0.284866601228714, - -0.10637445002794266, - 0.13435019552707672, - 0.5735387206077576, - -0.04928717389702797, - -0.04725106433033943, - -0.047593310475349426, - 0.2544075548648834, - -0.19604408740997314, - -0.2657857835292816, - -0.3921540677547455, - 0.20282351970672607, - -0.02939351089298725, - 0.06602819263935089, - -0.0009625132079236209, - -0.29845884442329407, - -0.06852135062217712, - -0.050568997859954834, - -0.07190074771642685, - -0.5092532634735107, - -0.41709065437316895, - 0.17302536964416504, - 0.17931543290615082, - 0.21324847638607025, - -0.054451972246170044, - 0.13683770596981049, - -0.0013424456119537354, - -0.13062059879302979, - 0.3010106086730957, - 0.5147088170051575, - 0.23393391072750092, - 0.0022712349891662598, - -0.04706616327166557, - -0.08006804436445236, - -0.2959813177585602, - 0.020057324320077896, - 0.45714232325553894, - -0.23143665492534637, - 0.25972187519073486, - 0.6607144474983215, - 0.05597605183720589, - -0.20643214881420135, - 0.9364756941795349, - -0.240656316280365, - 0.377833753824234, - -0.16904675960540771, - 0.08066660910844803, - 0.03507379814982414, - -0.2872448265552521, - 0.10992223024368286, - 0.2644364833831787, - -0.2445099949836731, - 0.6211056113243103, - 0.16068509221076965, - -0.4300248622894287, - 0.039174702018499374, - -0.3107549846172333, - 0.46138930320739746, - 0.16994208097457886, - 0.22318512201309204, - -0.19939838349819183, - -0.25415006279945374, - -0.3582250773906708, - 0.056574393063783646, - -0.6048431396484375, - -0.41541776061058044, - -0.20515280961990356, - 0.19856178760528564, - 0.05603891611099243, - -0.13194513320922852, - 0.3243832290172577, - 0.08444619178771973, - -0.20330137014389038, - -0.17615211009979248, - -0.5368889570236206, - -0.1295514553785324, - 0.10480222851037979, - 0.7439088225364685, - 0.21773558855056763, - 0.008171528577804565, - -0.03804825618863106, - 0.15058137476444244, - -0.1812482476234436, - -0.04600593075156212, - 0.099144846200943, - -0.09599566459655762, - -0.5940706133842468, - 0.1768624186515808, - 0.12865322828292847, - -0.5072010159492493, - -0.12698523700237274, - -0.36456993222236633, - -0.021914318203926086, - -0.14252997934818268, - -0.10113666206598282, - 0.2121715098619461, - 0.17331118881702423, - -0.09052104502916336, - 0.06488226354122162, - -0.3238545060157776, - 0.11093670129776001, - 0.20846180617809296, - 0.15281696617603302, - 0.1912001222372055, - -0.17219674587249756, - -0.3727891147136688, - -0.34874603152275085, - 0.23405487835407257, - -0.34826186299324036, - 0.003866473911330104, - 0.11267878860235214, - 0.16053332388401031, - -0.4200209379196167, - 0.11626137048006058, - -0.2655887305736542, - 0.22083480656147003, - -0.2490333467721939, - 0.41136959195137024, - 0.3822364807128906, - -0.2349826842546463, - 0.026200085878372192, - 0.03188640624284744, - 0.2639707028865814, - 0.140677347779274, - -0.23416881263256073, - 0.2829485833644867, - -0.21638703346252441 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_007.json b/src/benchmark/output/results/results_graph_007.json deleted file mode 100644 index 6caecfd..0000000 --- a/src/benchmark/output/results/results_graph_007.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 58-year-old Chinese male who presented for a physical examination on April 20, 2020. He has a smoking history of over 7 years, with an average of 20-30 cigarettes per day, and had abstained from smoking for nearly 30 years.\n\n**Timeline of Diagnoses:**\n\n1. **April 20, 2020:** The patient presented asymptomatic, with no cough, sputum, hemoptysis, chest pain, or dyspnea. A chest CT revealed a 4.0 cm x 3.4 cm mass in the inferior lobe of the right lung, with swollen and fused lymph nodes in the hilum and mediastinum.\n2. **May 2, 2020:** The diagnosis of stage IIIA (T2aN2M0) lung adenocarcinoma was confirmed.\n3. **May 20, 2020:** Alectinib therapy was initiated at 600 mg twice daily following a multidisciplinary team discussion for potentially resectable NSCLC with ALK rearrangement.\n\n**Timeline of Treatments:**\n\n1. **May 20, 2020:** Initiation of alectinib therapy.\n2. **Unknown date (after 4 months):** A chest CT scan was performed after 4 months of alectinib therapy, showing shrinkage of the primary tumor and a 1.1 cm x 0.6 cm nodule in the inferior lobe of the right lung.\n\n**Outcomes:**\n\nThe patient's treatment with alectinib has resulted in partial response, as evidenced by the shrinkage of the primary tumor and the development of a new nodule. The patient remains on treatment, and further follow-up is required to assess the efficacy of the therapy and monitor for any signs of disease progression.\n\n**Additional Notes:**\n\nThe patient's NGS results revealed ELMOD3-ALK (E8: A20) fusion at 41.23% abundance and EML4-ALK (E13: A20) double-ALK fusion at 68.21% abundance, confirming the presence of ALK rearrangement in the tumor tissue. The patient's CEA levels are not reported.\n\nIn conclusion, this patient has been diagnosed with stage IIIA lung adenocarcinoma and is currently undergoing treatment with alectinib. While the partial response to therapy is encouraging, further follow-up is necessary to assess the long-term efficacy of the treatment and monitor for any signs of disease progression.", - "bertscore": { - "precision": [ - 0.6810472011566162 - ], - "recall": [ - 0.7104792594909668 - ], - "f1": [ - 0.6954519748687744 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 7, - "edge_count": 6, - "avg_in_degree": 0.8571428571428571, - "density": 0.14285714285714285 - }, - "trajectory_embedding": [ - 0.34632283449172974, - 0.13255642354488373, - -0.16146747767925262, - 0.06857442855834961, - -0.053984127938747406, - -0.0689462199807167, - 0.14064376056194305, - 0.2152150720357895, - 0.37596216797828674, - -0.42233654856681824, - -0.13927848637104034, - 0.08689076453447342, - -0.6545354127883911, - 0.01794014871120453, - -0.3974427878856659, - 0.21673455834388733, - 0.03596607223153114, - 0.282396137714386, - 0.07912762463092804, - -0.21548102796077728, - -0.4564354717731476, - 0.0973014160990715, - -0.3728351891040802, - -0.10991263389587402, - 0.21367859840393066, - -0.11565183103084564, - 0.46477219462394714, - 0.5114681124687195, - 0.199381485581398, - 0.307439386844635, - 0.11510273069143295, - 0.07371513545513153, - 0.042246997356414795, - 0.10649548470973969, - -0.23146000504493713, - 0.22565957903862, - 0.18104961514472961, - 0.3094044625759125, - -0.056192945688962936, - 0.02726457454264164, - -0.09899432212114334, - -0.003670332720503211, - 0.7646036148071289, - 0.3114856779575348, - 0.48961538076400757, - -0.6004807353019714, - 0.016522962599992752, - 0.41916465759277344, - -0.5135390758514404, - -0.186994269490242, - 0.11330743879079819, - 0.7531782984733582, - 0.5578981041908264, - -0.08171800523996353, - 0.4931648373603821, - -0.12142842262983322, - -0.3848889172077179, - -0.06053968891501427, - -0.11271004378795624, - 0.09480737149715424, - 0.0074682957492768764, - -0.0980970486998558, - 0.21625415980815887, - -0.07251524180173874, - -0.20488722622394562, - -0.23675839602947235, - -0.13235799968242645, - 0.004237169865518808, - -0.02240622043609619, - -0.3877705931663513, - -0.17664487659931183, - -0.19140028953552246, - -0.004209420643746853, - 0.19125621020793915, - 0.17009125649929047, - -0.23860134184360504, - 0.36604657769203186, - 0.08724112808704376, - 0.08363865315914154, - 0.13477301597595215, - 0.08571993559598923, - -0.12648576498031616, - 0.14050470292568207, - 0.2407083511352539, - -0.32378503680229187, - 0.2219134271144867, - -0.0017401257064193487, - -0.09653002768754959, - -0.3067910671234131, - 0.06916661560535431, - 0.2701018750667572, - -0.24032466113567352, - -0.16102221608161926, - -0.16938550770282745, - 0.07037699967622757, - 0.15551796555519104, - 0.22664904594421387, - 0.37320223450660706, - 0.9206088781356812, - 0.020441245287656784, - 0.25928106904029846, - 0.18093964457511902, - 0.20001861453056335, - 0.13743962347507477, - 0.4313031733036041, - -0.20201943814754486, - 0.27726855874061584, - -0.37737804651260376, - 0.1108958050608635, - 0.5044432878494263, - 0.034018050879240036, - -0.10582584887742996, - -0.10786550492048264, - -0.285695880651474, - 0.07052969932556152, - 0.12992320954799652, - -0.1073002815246582, - 0.18021489679813385, - 0.2272896021604538, - -0.4946577250957489, - -0.06874880194664001, - 0.053847309201955795, - 0.38674196600914, - 0.26050421595573425, - -0.4407788813114166, - 0.0307450108230114, - -0.12287396937608719, - 0.04365866258740425, - 0.035397835075855255, - 0.06575658172369003, - -0.5081478953361511, - -0.14883017539978027, - -0.01828754134476185, - 0.16226984560489655, - -0.1292199045419693, - 0.3322567045688629, - -0.352784126996994, - -0.06846196949481964, - -1.1467586755752563, - 0.14150294661521912, - -0.35074302554130554, - -0.08152854442596436, - 0.058214545249938965, - -0.33657822012901306, - -0.27162057161331177, - -0.16385789215564728, - -0.1922508180141449, - 0.18805156648159027, - -0.14898982644081116, - -0.1907767802476883, - -0.018739299848675728, - 0.0241533275693655, - 0.10213565826416016, - 0.3388950526714325, - 0.06684867292642593, - 0.09704535454511642, - 0.04026297107338905, - 0.22388260066509247, - 0.19154810905456543, - -0.21175767481327057, - -0.06596600264310837, - 0.29928058385849, - 0.023883836343884468, - 0.016106462106108665, - 0.03622102737426758, - -0.652101457118988, - 0.14782443642616272, - -0.22757966816425323, - 0.09344861656427383, - 0.13462352752685547, - -0.09652338922023773, - 0.05251036211848259, - -0.36391252279281616, - 0.5542654395103455, - -0.021111836656928062, - 0.3859107792377472, - -0.1745777428150177, - -0.05616386607289314, - -0.09968718141317368, - 0.13040867447853088, - -0.04929199069738388, - -0.05909138545393944, - 0.5792575478553772, - 0.2081926167011261, - -0.4119703769683838, - 0.22170796990394592, - 0.5314750075340271, - -0.217849999666214, - 0.018375864252448082, - -0.05288035422563553, - 0.5090137124061584, - -0.2639523446559906, - 0.34441664814949036, - -0.48156923055648804, - 0.043778784573078156, - 0.17637112736701965, - -0.24536021053791046, - -0.214883491396904, - 0.15299423038959503, - -0.18543457984924316, - 0.13353310525417328, - 0.059175796806812286, - -0.42381808161735535, - 0.14562539756298065, - 0.18831917643547058, - -0.15437491238117218, - 0.14858554303646088, - 0.09433804452419281, - 0.021166671067476273, - -0.10624085366725922, - -0.2271008938550949, - 0.19631457328796387, - 0.12351208180189133, - 0.2053762972354889, - 0.12965740263462067, - -0.4027119278907776, - 0.268777459859848, - -0.055202044546604156, - -0.1911349594593048, - 0.07801239937543869, - -0.058668557554483414, - -0.19082598388195038, - 0.2597486972808838, - 0.046251896768808365, - -0.4082432687282562, - 0.13291774690151215, - 0.22084590792655945, - 0.253616064786911, - 0.11834321171045303, - -0.056760311126708984, - 0.05113843083381653, - -0.18232157826423645, - 0.3190477788448334, - -0.047857675701379776, - -0.24504569172859192, - -0.31638088822364807, - 0.20518624782562256, - -0.2550453245639801, - -0.19599619507789612, - 0.45776885747909546, - -0.2817407250404358, - -0.1649864763021469, - 0.11414431035518646, - -0.31051796674728394, - -0.06410244107246399, - -0.05414607375860214, - -0.0987599566578865, - 0.3260372281074524, - 0.038238201290369034, - 0.23180630803108215, - 0.24067114293575287, - -0.24413955211639404, - 0.18034419417381287, - -0.35002684593200684, - -0.2675524652004242, - -0.28777843713760376, - -0.15203669667243958, - -0.2569221258163452, - -0.502211332321167, - 0.028952045366168022, - 0.1422329694032669, - -0.19708609580993652, - 0.15137410163879395, - -0.3218376934528351, - -0.17026712000370026, - -0.06560563296079636, - 0.0026329681277275085, - 0.17039036750793457, - -0.3414532244205475, - 0.16003188490867615, - -0.3142453134059906, - -0.22482971847057343, - -0.14486517012119293, - 0.05717916041612625, - 0.17858967185020447, - 0.008025292307138443, - -0.1782718002796173, - 0.06522785872220993, - 0.17299745976924896, - -0.35594063997268677, - -0.26811760663986206, - -0.0870235338807106, - -0.3093550205230713, - 0.1003846526145935, - -0.1752350777387619, - 0.2492910772562027, - 0.30772900581359863, - 0.056921329349279404, - 0.22895820438861847, - 0.4130989611148834, - 0.4247635006904602, - 0.11066063493490219, - -0.028021035715937614, - 0.10072942078113556, - -0.04860067367553711, - 0.02282506786286831, - -0.4291365444660187, - 0.18790915608406067, - -0.09323705732822418, - 0.05062669515609741, - 0.09998495131731033, - 0.2546255588531494, - 0.1829005777835846, - -0.38708922266960144, - -0.12896110117435455, - 0.49586600065231323, - 0.13936150074005127, - 0.0028288024477660656, - 0.1399322897195816, - 0.26460906863212585, - 0.5125473737716675, - 0.012328228913247585, - -0.06001440808176994, - 0.15023374557495117, - -0.331268846988678, - -0.2625787556171417, - -0.0582139678299427, - 0.0780731588602066, - 0.3200647234916687, - -0.13212020695209503, - -0.0664762482047081, - 0.1200450137257576, - -0.039581023156642914, - -0.18453292548656464, - -0.0205280389636755, - -0.03259355574846268, - -0.022378528490662575, - -0.2135610729455948, - 0.16477321088314056, - -0.1177186369895935, - 0.020337354391813278, - 0.4477369487285614, - -0.23601080477237701, - -0.20698000490665436, - 0.25482335686683655, - -0.1178610771894455, - -0.4280704855918884, - 0.3759384751319885, - -0.20326055586338043, - 0.09865853935480118, - 0.3146040737628937, - -0.22686339914798737, - -0.04431885480880737, - 0.04189407452940941, - 0.24962091445922852, - -0.1399933248758316, - 0.07818048447370529, - -0.13080723583698273, - -0.0223658736795187, - 0.10581879317760468, - 0.6017864346504211, - 0.17141400277614594, - 0.11439137905836105, - 0.4817686378955841, - 0.04856312274932861, - -0.3279663026332855, - 0.01271877158433199, - -0.0015516068087890744, - 0.3048696517944336, - -0.14525774121284485, - -0.0855211615562439, - -0.22864116728305817, - 0.15198580920696259, - 0.02848448045551777, - -0.2400398552417755, - 0.032943349331617355, - 0.11586856096982956, - -0.07472366839647293, - 0.03158846125006676, - 0.31529170274734497, - 0.3244169354438782, - 0.09684034436941147, - 0.5443024039268494, - 0.04810034856200218, - -0.0671914741396904, - 0.39355477690696716, - -0.1454528421163559, - 0.19794189929962158, - -0.1559365689754486, - -0.18007461726665497, - -0.3979979157447815, - 0.0789010301232338, - -0.17988288402557373, - -0.08295933902263641, - 0.014375852420926094, - 0.05476394295692444, - 0.055615782737731934, - -0.22319602966308594, - 0.2742428779602051, - -0.11870920658111572, - 0.12124725431203842, - 0.060055527836084366, - 0.4022494852542877, - -0.14758551120758057, - -0.3292035758495331, - 0.13684237003326416, - 0.05052774399518967, - 0.23615503311157227, - -0.04939810559153557, - -0.10074607282876968, - -0.24896904826164246, - 0.3973776400089264, - -0.003953867591917515, - 0.06291907280683517, - 0.07598952203989029, - -0.06714044511318207, - -0.23038236796855927, - -0.4332585334777832, - -0.04678770527243614, - -0.18224099278450012, - -0.1298196017742157, - -0.13972225785255432, - 0.08444498479366302, - -0.16851358115673065, - -0.16012048721313477, - 0.0963839516043663, - 0.20963777601718903, - 0.28625813126564026, - -0.06501932442188263, - 0.0034833166282624006, - 0.1900634467601776, - 0.061782028526067734, - 0.22969529032707214, - -0.2658024728298187, - 0.14898903667926788, - 0.04798702523112297, - -0.19122453033924103, - -0.0819980725646019, - 0.013480189256370068, - -0.2811538875102997, - 0.021630926057696342, - 0.12116018682718277, - 0.1726771742105484, - -0.03500344231724739, - -0.014292880892753601, - 0.09051401168107986, - 0.3177947998046875, - -0.3903009593486786, - -0.0073287165723741055, - 0.361543208360672, - -0.06547866016626358, - 0.4194928705692291, - -0.02773270569741726, - -0.3815111219882965, - -0.07328487932682037, - -0.1680523008108139, - -0.34097257256507874, - 0.17753945291042328, - 0.19097281992435455, - -0.027399586513638496, - -0.07271251827478409, - -0.03372975438833237, - 0.013569866307079792, - -0.026740116998553276, - 0.23957674205303192, - -0.1819392442703247, - 0.12571711838245392, - 0.026177706196904182, - -0.3643864691257477, - -0.18141809105873108, - -0.2844131886959076, - -0.2283564954996109, - -0.3698243498802185, - 0.3565422594547272, - 0.22168263792991638, - -0.11805517226457596, - 0.1532808542251587, - 0.18205618858337402, - -0.36349374055862427, - -0.24219787120819092, - 0.16874206066131592, - -0.22768817842006683, - 0.5593675971031189, - 0.07186911255121231, - -0.1522439420223236, - 0.18085047602653503, - -0.1891041249036789, - 0.2411697953939438, - 0.0587523877620697, - 0.12903490662574768, - 0.3185088634490967, - 0.24071983993053436, - 0.08876078575849533, - 0.6035990118980408, - 0.23192887008190155, - -0.15383002161979675, - 0.20910513401031494, - -0.08697020262479782, - -0.06550946086645126, - -0.18487422168254852, - -0.22437021136283875, - 0.43880635499954224, - -0.4509376883506775, - -0.0052852630615234375, - 0.11509265750646591, - 0.23703017830848694, - -0.35235705971717834, - -0.19191710650920868, - 0.036525748670101166, - -0.08356952667236328, - -0.08595328032970428, - -0.2544604241847992, - -0.26742759346961975, - 0.07365290075540543, - -0.39135414361953735, - 0.005402126349508762, - 0.17047245800495148, - 0.40175893902778625, - 0.1593630462884903, - 0.04142970219254494, - -0.25165578722953796, - -0.5444652438163757, - 0.13095541298389435, - 0.2602980434894562, - 0.1049882248044014, - -0.008003605529665947, - -0.12000119686126709, - 0.2759704887866974, - 0.439725399017334, - -0.05441727861762047, - 0.08230762183666229, - 0.11778289824724197, - -0.08327669650316238, - 0.07409663498401642, - 0.1324022114276886, - -0.1600790023803711, - -0.09167666733264923, - -0.3979511260986328, - 0.0816434845328331, - -0.29025760293006897, - -0.34616923332214355, - 0.1855783760547638, - -0.26658546924591064, - -0.5087555050849915, - -0.26514577865600586, - 0.09068584442138672, - -0.33557799458503723, - -0.20998744666576385, - 0.2478923797607422, - 0.4804439842700958, - 0.1670471727848053, - -0.17141270637512207, - 0.023544544354081154, - -0.4834950566291809, - -0.2555929720401764, - 0.24668677151203156, - -0.0199048463255167, - -0.05564726144075394, - -0.006191185675561428, - 0.35192832350730896, - 0.47485417127609253, - 0.2897241413593292, - -0.3993774354457855, - 0.032233450561761856, - 0.343721866607666, - 0.25937968492507935, - -0.17476844787597656, - -10.769038200378418, - -0.13643351197242737, - -0.18618904054164886, - 0.49261242151260376, - -0.16529743373394012, - -0.01580941304564476, - 0.061412420123815536, - 0.07388816028833389, - 0.283748596906662, - 0.29226207733154297, - -0.2359391748905182, - -0.06629572808742523, - 0.19578556716442108, - 0.27029597759246826, - 0.05834921449422836, - -0.05005519837141037, - -0.23387077450752258, - 0.11344098299741745, - -0.00246788514778018, - 0.07369377464056015, - 0.2085832804441452, - 0.3615915775299072, - -0.16010703146457672, - 0.29699602723121643, - 0.07131291180849075, - -0.2032707780599594, - -0.18129612505435944, - 0.3942018151283264, - 0.18683992326259613, - -0.3789488673210144, - 0.31899547576904297, - 0.18245799839496613, - -0.11413189023733139, - 0.09642170369625092, - -0.012330898083746433, - -0.043496739119291306, - -0.14220942556858063, - 0.017735633999109268, - 0.14798550307750702, - -0.11324461549520493, - 0.04839903488755226, - -0.3642114996910095, - 0.27072250843048096, - 0.2930915951728821, - -0.1902686506509781, - -0.38970789313316345, - -0.25576385855674744, - -1.5267226696014404, - 0.35992178320884705, - 0.28119486570358276, - 0.445952832698822, - 0.08364830911159515, - 0.29149648547172546, - 0.15386874973773956, - -0.40435388684272766, - 0.03021029569208622, - -0.26856571435928345, - 0.14219024777412415, - 0.06614173203706741, - -0.08421572297811508, - 0.15845561027526855, - -0.10110180079936981, - 0.5034095644950867, - -0.24883361160755157, - -0.20588038861751556, - 0.10210978239774704, - 0.050570808351039886, - -0.11698190122842789, - -0.23608842492103577, - -0.5109882950782776, - -0.4893497824668884, - -0.023171523585915565, - -0.01904931664466858, - 0.03591518849134445, - 0.49239763617515564, - -0.0677020251750946, - -0.3856819272041321, - 0.1646692007780075, - 0.14587971568107605, - 0.3274044394493103, - 0.1620274931192398, - -0.016097305342555046, - 0.19069872796535492, - -0.12335796654224396, - -0.15754465758800507, - -0.06534690409898758, - 0.005380036775022745, - 0.5823365449905396, - -0.010449043475091457, - -0.011117198504507542, - -0.08787759393453598, - 0.3873448967933655, - -0.07530701905488968, - -0.20183464884757996, - -0.4622398316860199, - 0.003994079772382975, - 0.12430695444345474, - 0.03902101516723633, - -0.06319894641637802, - -0.23457841575145721, - -0.176997572183609, - -0.09998750686645508, - 0.10038237273693085, - -0.5920015573501587, - -0.2858719825744629, - 0.1841582953929901, - 0.07055030763149261, - 0.2681312561035156, - 0.09098577499389648, - 0.006964609958231449, - -0.04632188007235527, - -0.12880419194698334, - 0.3875395953655243, - 0.591077983379364, - 0.3302749693393707, - -0.13473956286907196, - -0.11325649917125702, - -0.11139772087335587, - -0.22241456806659698, - 0.06057487055659294, - 0.3546738028526306, - -0.02666267566382885, - 0.3742377460002899, - 0.508595883846283, - 0.0977615937590599, - -0.03895801305770874, - 0.9067800641059875, - -0.32107916474342346, - 0.2313782125711441, - -0.1612183004617691, - 0.0779300406575203, - 0.017649242654442787, - -0.23685379326343536, - 0.02110827900469303, - 0.4051358997821808, - -0.1702803522348404, - 0.6364380121231079, - 0.13370411098003387, - -0.5057786703109741, - 0.04034915566444397, - -0.26939648389816284, - 0.5029028058052063, - 0.29749467968940735, - 0.3397000730037689, - -0.14253097772598267, - -0.29288747906684875, - -0.37792688608169556, - -0.07253073155879974, - -0.4054388105869293, - -0.2549642026424408, - -0.18917761743068695, - 0.21658183634281158, - -0.02134360559284687, - -0.2323160022497177, - 0.3579040467739105, - 0.13971196115016937, - -0.19356374442577362, - -0.2358325570821762, - -0.5030080676078796, - -0.006258704699575901, - 0.24298062920570374, - 0.6727714538574219, - 0.05212661251425743, - -0.1169188842177391, - -0.15262660384178162, - 0.2157876342535019, - -0.14499004185199738, - 0.18440701067447662, - 0.10109228640794754, - -0.041441015899181366, - -0.5617343783378601, - 0.06759311258792877, - 0.2167104035615921, - -0.40405821800231934, - -0.183258056640625, - -0.22895583510398865, - -0.06816086918115616, - -0.02269592508673668, - -0.16934062540531158, - 0.14488928020000458, - 0.25242525339126587, - -0.05369926244020462, - 0.06188229098916054, - -0.35344547033309937, - 0.0028270366601645947, - 0.23596127331256866, - 0.13236187398433685, - 0.15592189133167267, - -0.12496714293956757, - -0.37063127756118774, - -0.39475420117378235, - 0.1129080057144165, - -0.21878959238529205, - -0.14842180907726288, - 0.24278025329113007, - 0.23198676109313965, - -0.3166256844997406, - 0.07222945988178253, - -0.2306237518787384, - -0.01905098371207714, - -0.24526868760585785, - 0.31020474433898926, - 0.37052956223487854, - -0.15445652604103088, - 0.1092943325638771, - -0.0847192034125328, - 0.268240362405777, - 0.19493219256401062, - -0.23118934035301208, - 0.2652192711830139, - -0.2649229168891907 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_008.json b/src/benchmark/output/results/results_graph_008.json deleted file mode 100644 index 28f3ac2..0000000 --- a/src/benchmark/output/results/results_graph_008.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 37-year-old female. Her medical history includes untreated congenital heart disease (patent ductus arteriosus) for 20 years and hypertension for half a year, with irregular use of valsartan.\n\n**Timeline of Diagnoses:**\n\n1. **Step 1:** The patient reported intermittent cough and slight chest discomfort for 3 months and painless cervical mass for 1 month.\n2. **Step 2:** A left cervical lymph node puncture was performed one week ago, which showed granulomatous inflammation with caseous necrosis and Langhans' giant cells observed.\n3. **Step 3:** The patient's past medical history of untreated congenital heart disease and hypertension became relevant.\n4. **Step 4:** Physical examination revealed a well-defined, poorly mobile, non-tender mass on the left clavicle without surface ulceration or redness.\n5. **Step 5:** Laboratory tests showed normal blood CEA, squamous cell carcinoma antigen, cytokeratin 19 fragment, and NSE levels, with no evidence of cancer in sputum AFB and GeneXpert MTB/RIF.\n6. **Step 6:** EB virus blood test results indicated increased antibody titers for capsid antigen IgG antibody, early antigen IgM antibody, and core antigen IgG antibody.\n7. **Step 7:** Ultrasound-guided left supraclavicular lymph node puncture was performed, showing focal distribution of epithelioid cells and multinucleated giant cells suggestive of granulomatous inflammation.\n8. **Step 8:** Histopathology confirmed the presence of granuloma.\n\n**Timeline of Treatments:**\n\n1. **Step 2:** Left cervical lymph node puncture was performed due to intermittent cough, slight chest discomfort, and painless cervical mass.\n2. **Step 7:** Ultrasound-guided left supraclavicular lymph node puncture was performed as part of the diagnostic workup.\n\n**Outcomes:**\n\n1. The patient's diagnosis of granuloma was confirmed through histopathology.\n2. No evidence of cancer was found in sputum AFB and GeneXpert MTB/RIF, ruling out tuberculosis or other infections.\n3. EB virus blood test results indicated increased antibody titers, suggesting a possible infection or autoimmune response.\n\n**Conclusion:**\nThe patient's diagnosis of granuloma is likely related to her underlying medical history of untreated congenital heart disease and hypertension. Further investigation into the cause of granulomatous inflammation is necessary to determine the best course of treatment.", - "bertscore": { - "precision": [ - 0.6920709609985352 - ], - "recall": [ - 0.6939922571182251 - ], - "f1": [ - 0.6930302977561951 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 2, - "node_count": 9, - "edge_count": 7, - "avg_in_degree": 0.7777777777777778, - "density": 0.09722222222222222 - }, - "trajectory_embedding": [ - 0.32178184390068054, - 0.0587812140583992, - -0.04031328856945038, - 0.1223248541355133, - 0.1420980840921402, - 0.1322871595621109, - 0.09575825184583664, - 0.21854537725448608, - 0.3668004274368286, - -0.415396511554718, - -0.23321908712387085, - 0.043559107929468155, - -0.6951784491539001, - -0.018354633823037148, - -0.3261258900165558, - 0.10526271909475327, - 0.0806720182299614, - 0.30150094628334045, - 0.05325983837246895, - -0.17181721329689026, - -0.49571317434310913, - 0.2012018859386444, - -0.5006043314933777, - -0.11711462587118149, - 0.13844826817512512, - -0.07041510194540024, - 0.3694150745868683, - 0.4067281484603882, - 0.32587283849716187, - 0.30198124051094055, - 0.10556425899267197, - 0.02767544612288475, - -0.006537702400237322, - 0.09393756836652756, - -0.18413406610488892, - 0.29104113578796387, - 0.30991673469543457, - 0.39546114206314087, - -0.19016744196414948, - 0.01576823741197586, - -0.08541415631771088, - -0.0035670134238898754, - 0.8345164060592651, - 0.3533182740211487, - 0.5232931971549988, - -0.6903773546218872, - -0.10210395604372025, - 0.4474469721317291, - -0.5333614945411682, - -0.238445445895195, - 0.13270704448223114, - 0.838481605052948, - 0.42854592204093933, - -0.05961171165108681, - 0.45818471908569336, - -0.09204962104558945, - -0.28622737526893616, - -0.2482616901397705, - -0.34262704849243164, - 0.135522723197937, - 0.06123517453670502, - -0.2093307375907898, - 0.19139666855335236, - -0.11058877408504486, - -0.18178412318229675, - -0.06930741667747498, - -0.13635903596878052, - -0.10343820601701736, - -0.07338438183069229, - -0.4254007935523987, - -0.27045580744743347, - -0.183482363820076, - -0.22135131061077118, - 0.06227385997772217, - 0.1561308354139328, - -0.09068230539560318, - 0.28921377658843994, - -0.10375780612230301, - 0.1113702729344368, - 0.1205735057592392, - -0.05523458495736122, - -0.04171212017536163, - 0.12852293252944946, - 0.2609008848667145, - -0.459573894739151, - 0.09324205666780472, - -0.057778775691986084, - -0.050998467952013016, - -0.3697819709777832, - 0.13482025265693665, - 0.21746261417865753, - -0.3303653597831726, - -0.013938731513917446, - -0.19032444059848785, - -0.012671641074120998, - 0.08839395642280579, - 0.37868306040763855, - 0.23950256407260895, - 0.9266045689582825, - 0.009919242933392525, - 0.21141479909420013, - 0.26653969287872314, - 0.2811274528503418, - 0.1162969172000885, - 0.4665778875350952, - -0.03941546753048897, - 0.17238283157348633, - -0.3564433455467224, - 0.15530797839164734, - 0.3903099596500397, - -0.07272467017173767, - -0.25950583815574646, - -0.0656658187508583, - -0.231586754322052, - -0.04168401286005974, - 0.12029455602169037, - -0.1913430094718933, - 0.0871143564581871, - 0.2444240003824234, - -0.35754671692848206, - -0.032186251133680344, - -0.054842062294483185, - 0.28438231348991394, - 0.3507777750492096, - -0.34075018763542175, - 0.0023666603956371546, - -0.14281146228313446, - 0.022844364866614342, - 0.01721859537065029, - 0.10938265919685364, - -0.5908386707305908, - -0.21993988752365112, - 0.0467560812830925, - 0.21187233924865723, - -0.20345015823841095, - 0.19650402665138245, - -0.4655933976173401, - 0.10103397816419601, - -1.1829770803451538, - 0.24051533639431, - -0.2856246829032898, - -0.03343421220779419, - 0.05990317836403847, - -0.46977800130844116, - -0.2836901545524597, - -0.2557894289493561, - -0.13383887708187103, - 0.08556684851646423, - -0.02390054054558277, - -0.05300867557525635, - -0.005133193451911211, - 0.05319741740822792, - 0.23253577947616577, - 0.31148284673690796, - 0.1872185617685318, - 0.05715598165988922, - 0.04053667560219765, - 0.242471382021904, - 0.210669606924057, - -0.12356742471456528, - -0.18174877762794495, - 0.3470229208469391, - 0.1284300982952118, - 0.03684166446328163, - 0.07123604416847229, - -0.7283098101615906, - 0.21158723533153534, - -0.21140918135643005, - 0.16918735206127167, - 0.08621041476726532, - -0.06987984478473663, - 0.17207151651382446, - -0.22078922390937805, - 0.5830124020576477, - 0.1587946116924286, - 0.368658185005188, - -0.09451908618211746, - -0.16905517876148224, - 0.049191370606422424, - 0.2360401749610901, - 0.0680384710431099, - -0.16712987422943115, - 0.5529953837394714, - 0.1420280635356903, - -0.4020548164844513, - 0.1896764636039734, - 0.4466969668865204, - -0.21751484274864197, - -0.1401064544916153, - -0.12103942781686783, - 0.3518214821815491, - -0.43472009897232056, - 0.39658674597740173, - -0.2795937955379486, - -0.0344034768640995, - 0.09301462769508362, - -0.3150613307952881, - -0.13218411803245544, - 0.12559378147125244, - -0.09989943355321884, - 0.2460460364818573, - 0.16068203747272491, - -0.21281592547893524, - 0.2937512695789337, - 0.019342144951224327, - -0.05292874574661255, - 0.3754124641418457, - 0.11231725662946701, - 0.0945693701505661, - -0.024625606834888458, - -0.09737903624773026, - 0.12437456101179123, - -0.04436493292450905, - 0.11820510029792786, - 0.08406633138656616, - -0.2726324796676636, - 0.3474253714084625, - -0.09621790796518326, - -0.2518599033355713, - 0.21834029257297516, - -0.17659656703472137, - -0.2798433303833008, - 0.22201639413833618, - -0.05844061076641083, - -0.4587531089782715, - 0.14475703239440918, - 0.21445783972740173, - 0.1950705349445343, - 0.1425207108259201, - -0.03384677693247795, - -0.06995048373937607, - -0.33688509464263916, - 0.39714691042900085, - -0.13234379887580872, - -0.1534186452627182, - -0.23380514979362488, - 0.17687591910362244, - -0.16212034225463867, - -0.13440465927124023, - 0.41018977761268616, - -0.08066099882125854, - -0.09884938597679138, - 0.02423275262117386, - -0.17881669104099274, - -0.04277099296450615, - -0.24749310314655304, - 0.12916605174541473, - 0.2636314630508423, - 0.1299065202474594, - 0.29293444752693176, - 0.18072935938835144, - -0.16630510985851288, - 0.2095223218202591, - -0.274707555770874, - -0.266833633184433, - -0.347224622964859, - -0.17040622234344482, - -0.047463927417993546, - -0.5827317237854004, - 0.2105824202299118, - -0.08439192175865173, - -0.07409091293811798, - 0.02815353497862816, - -0.22386428713798523, - -0.18218082189559937, - -0.015736659988760948, - -0.04946249723434448, - 0.12370084226131439, - -0.1376749724149704, - 0.07068774104118347, - -0.31323838233947754, - -0.23025411367416382, - -0.17107626795768738, - 0.05153964087367058, - 0.24963563680648804, - -0.016446657478809357, - -0.2559627294540405, - 0.09753367304801941, - -0.009258200414478779, - -0.3847027122974396, - -0.3331104516983032, - 0.06476327776908875, - -0.24909496307373047, - 0.23316659033298492, - -0.0756588876247406, - 0.22949011623859406, - 0.39408019185066223, - 0.03471510112285614, - 0.13951560854911804, - 0.43903475999832153, - 0.4437906742095947, - 0.07818680256605148, - 0.1046346053481102, - -0.020075002685189247, - -0.07496032863855362, - -0.008577846921980381, - -0.34209126234054565, - 0.2878102660179138, - 0.18816518783569336, - -0.08333851397037506, - 0.1847076565027237, - 0.3222832679748535, - 0.07663938403129578, - -0.5163805484771729, - -0.10820431262254715, - 0.5252039432525635, - 0.16367141902446747, - 0.0774790495634079, - 0.09702352434396744, - 0.29092395305633545, - 0.5684838891029358, - -0.05465574935078621, - -0.021250128746032715, - 0.1918373703956604, - -0.11625722795724869, - -0.137563094496727, - 0.10620621591806412, - -0.001004664460197091, - 0.16058844327926636, - -0.14757229387760162, - -0.08134961128234863, - 0.18731115758419037, - -0.08642522245645523, - -0.22128160297870636, - -0.12657791376113892, - -0.13462279736995697, - 0.044050559401512146, - -0.3199692964553833, - 0.36030614376068115, - -0.11800796538591385, - -0.014752212911844254, - 0.5300659537315369, - -0.1476159244775772, - -0.3223278820514679, - 0.22379374504089355, - -0.06419085711240768, - -0.4758998453617096, - 0.3226974308490753, - -0.20392075181007385, - 0.011337722651660442, - 0.27262577414512634, - -0.21782363951206207, - -0.08845141530036926, - -0.018287695944309235, - 0.3063170313835144, - -0.020608382299542427, - -0.12740080058574677, - -0.008797626942396164, - -0.009513621218502522, - 0.2591574490070343, - 0.612575352191925, - 0.16324354708194733, - 0.2025555968284607, - 0.5985039472579956, - -0.009529554285109043, - -0.3360339403152466, - -0.032654378563165665, - -0.07462343573570251, - 0.26602503657341003, - -0.23274673521518707, - -0.05679423362016678, - -0.21113090217113495, - 0.06130954995751381, - -0.037814680486917496, - -0.3433321714401245, - 0.05501053109765053, - 0.11750365793704987, - 0.07155635952949524, - -0.06659450381994247, - 0.276471883058548, - 0.1853334903717041, - 0.00012623269867617637, - 0.38866889476776123, - 0.026428937911987305, - -0.17691045999526978, - 0.27471697330474854, - -0.09421806037425995, - 0.348401814699173, - -0.047985926270484924, - -0.35829392075538635, - -0.40219125151634216, - 0.017191890627145767, - -0.287667453289032, - -0.2931564748287201, - -0.006540605332702398, - -0.06754858046770096, - 0.006069008726626635, - -0.18329453468322754, - 0.14828670024871826, - -0.04169226810336113, - 0.17401623725891113, - 0.17856580018997192, - 0.4291289746761322, - -0.018275227397680283, - -0.28150978684425354, - 0.21720661222934723, - -0.012173552066087723, - -0.0008567787008360028, - -0.1284516155719757, - 0.02730163186788559, - -0.23550184071063995, - 0.39568161964416504, - 0.030560709536075592, - -0.059391021728515625, - 0.04127660021185875, - -0.07267840206623077, - -0.2133440375328064, - -0.5620805621147156, - -0.10165606439113617, - -0.09908498823642731, - 0.06438065320253372, - 0.07434544712305069, - 0.06772330403327942, - -0.21854114532470703, - -0.2298194319009781, - 0.07366134226322174, - 0.2848809063434601, - 0.18651369214057922, - -0.1377827525138855, - 0.05242909491062164, - 0.22165018320083618, - 0.07855748385190964, - 0.3990407884120941, - -0.23178161680698395, - 0.05214346945285797, - 0.1888972520828247, - -0.3208756446838379, - -0.10172249376773834, - -0.044798657298088074, - -0.2715843915939331, - -0.15131992101669312, - 0.1855420470237732, - 0.1645175814628601, - 0.0349091961979866, - 0.007298680022358894, - -0.07925812155008316, - 0.22184696793556213, - -0.45909982919692993, - -0.1025075614452362, - 0.3575679063796997, - 0.12284011393785477, - 0.5294378995895386, - -0.04689325392246246, - -0.4196237027645111, - -0.12507852911949158, - -0.023498430848121643, - -0.48307159543037415, - 0.06831827759742737, - 0.18486618995666504, - -0.14835722744464874, - -0.04832920432090759, - 0.041186146438121796, - -0.08373869955539703, - -0.10094965994358063, - 0.22338716685771942, - -0.046411603689193726, - 0.2210119217634201, - 0.09670628607273102, - -0.24205902218818665, - -0.061728160828351974, - -0.3234194815158844, - -0.38051843643188477, - -0.2765519917011261, - 0.33077049255371094, - 0.16808347404003143, - -0.05882269889116287, - 0.11807309091091156, - 0.01401209644973278, - -0.21194730699062347, - -0.23584502935409546, - 0.04901963472366333, - -0.18166571855545044, - 0.4985811412334442, - -0.04389837756752968, - -0.08017394691705704, - 0.1095072329044342, - -0.2545522451400757, - 0.10503782331943512, - 0.1339978277683258, - 0.11273174732923508, - 0.35173499584198, - 0.1856675148010254, - 0.07977791875600815, - 0.4892643690109253, - 0.11970542371273041, - -0.009819591417908669, - 0.172042578458786, - 0.0028777027036994696, - 0.012823116034269333, - -0.25553199648857117, - -0.17727917432785034, - 0.27531668543815613, - -0.27513158321380615, - -0.08250728249549866, - 0.14657293260097504, - 0.15222737193107605, - -0.3555891811847687, - -0.24886454641819, - 0.03017233870923519, - 0.0019182844553142786, - -0.11983786523342133, - -0.27462154626846313, - -0.21385988593101501, - 0.04064253717660904, - -0.29773756861686707, - -0.20546948909759521, - 0.25590476393699646, - 0.39466309547424316, - 0.21495464444160461, - 0.03933090344071388, - -0.11707663536071777, - -0.41989126801490784, - 0.13917756080627441, - 0.2889692783355713, - 0.06650194525718689, - 0.06463951617479324, - -0.21423029899597168, - 0.124488964676857, - 0.6269210577011108, - -0.09561538696289062, - 0.05140833556652069, - 0.04992810636758804, - -0.028386371210217476, - -0.030111422762274742, - 0.03585105761885643, - -0.07877829670906067, - -0.10415715724229813, - -0.3253501355648041, - 0.22535981237888336, - -0.3374183773994446, - -0.23110876977443695, - 0.16368120908737183, - -0.15909487009048462, - -0.43274354934692383, - -0.23980344831943512, - 0.312335342168808, - -0.20945435762405396, - -0.07988880574703217, - 0.12158122658729553, - 0.42453157901763916, - 0.11340466886758804, - -0.2019163817167282, - 0.222909614443779, - -0.6142799258232117, - -0.1839669942855835, - 0.1288950890302658, - -0.16853027045726776, - -0.03778260946273804, - 0.08082526177167892, - 0.25896501541137695, - 0.5084782242774963, - 0.358426570892334, - -0.29939937591552734, - 0.09308972954750061, - 0.3027191758155823, - 0.28485503792762756, - -0.1913285106420517, - -10.637735366821289, - 0.09545019268989563, - -0.2596852481365204, - 0.6284665465354919, - -0.12558770179748535, - -0.019234606996178627, - 0.10494551062583923, - 0.045418985188007355, - 0.1320284754037857, - 0.17745868861675262, - -0.23860372602939606, - 0.07438228279352188, - 0.3959399461746216, - 0.28593093156814575, - 0.028599023818969727, - -0.007402932271361351, - -0.282490074634552, - 0.1582685261964798, - -0.08721087872982025, - 0.26587122678756714, - 0.14465846121311188, - 0.5118622183799744, - -0.21978002786636353, - 0.37363201379776, - 0.03855099156498909, - -0.33037900924682617, - -0.2264271080493927, - 0.5745084881782532, - 0.172709122300148, - -0.4754544794559479, - 0.33281439542770386, - 0.2566337585449219, - -0.304614782333374, - 0.22838790714740753, - -0.10053606331348419, - -0.0964573323726654, - -0.0428738109767437, - 0.1445562243461609, - 0.206826314330101, - -0.052082404494285583, - -0.05296452343463898, - -0.2923671305179596, - 0.2264208197593689, - 0.26710742712020874, - -0.1356736719608307, - -0.3833749294281006, - -0.2867141366004944, - -1.5798529386520386, - 0.3151170015335083, - 0.33501821756362915, - 0.34017670154571533, - -0.02905278652906418, - 0.27190762758255005, - 0.24609988927841187, - -0.3265301585197449, - 0.015079895965754986, - -0.29252126812934875, - -0.016788644716143608, - 0.10301514714956284, - -0.031413931399583817, - 0.20614907145500183, - -0.1270168423652649, - 0.41353368759155273, - -0.16701680421829224, - -0.3021659553050995, - 0.0133744515478611, - 0.055997058749198914, - -0.0681668370962143, - -0.31388038396835327, - -0.5147495865821838, - -0.4927768111228943, - 0.012458733282983303, - 0.03655955195426941, - -0.05347471311688423, - 0.5857234597206116, - -0.06947802752256393, - -0.380942702293396, - 0.18310607969760895, - 0.010218213312327862, - 0.4450663924217224, - 0.2641662657260895, - -0.17969438433647156, - 0.21651965379714966, - -0.1935727894306183, - -0.2532018721103668, - -0.23166921734809875, - 0.09277978539466858, - 0.5229415893554688, - -0.043149542063474655, - -0.06301707029342651, - -0.04477791488170624, - 0.22806262969970703, - -0.05626372992992401, - -0.17599450051784515, - -0.4240625202655792, - 0.06488002836704254, - 0.07392842322587967, - 0.026791799813508987, - 0.1692909598350525, - -0.19362719357013702, - -0.21053653955459595, - -0.03502477705478668, - -0.012501033022999763, - -0.5527909994125366, - -0.4264358878135681, - 0.15655475854873657, - 0.1990380883216858, - 0.24487437307834625, - 0.13199962675571442, - 0.12365330755710602, - -0.056404273957014084, - -0.03628714755177498, - 0.3528117537498474, - 0.5215819478034973, - 0.15988637506961823, - -0.10803283005952835, - -0.07049331814050674, - -0.267477422952652, - -0.302575021982193, - 0.14412683248519897, - 0.44464942812919617, - -0.2073928862810135, - 0.20162945985794067, - 0.6935946941375732, - 0.019730815663933754, - -0.014449293725192547, - 0.920211672782898, - -0.3438548147678375, - 0.36203205585479736, - -0.14337018132209778, - 0.27485227584838867, - -0.05315638706088066, - -0.24085992574691772, - 0.13573333621025085, - 0.2705618441104889, - -0.2652859091758728, - 0.49344050884246826, - 0.219620943069458, - -0.35901862382888794, - 0.07334572076797485, - -0.2570989727973938, - 0.46759742498397827, - 0.22440187633037567, - 0.2695810794830322, - -0.10774626582860947, - -0.3553600609302521, - -0.3090141713619232, - 0.06284630298614502, - -0.3371935188770294, - -0.2083614468574524, - -0.19041165709495544, - 0.12273308634757996, - 0.05916270986199379, - -0.08029699325561523, - 0.31982535123825073, - 0.13016262650489807, - -0.04917954280972481, - -0.2898949384689331, - -0.5071355700492859, - -0.0888039767742157, - 0.1655799001455307, - 0.7769743204116821, - -0.004823592025786638, - -0.089121013879776, - -0.07563244551420212, - 0.1895747184753418, - -0.1521088182926178, - 0.11633741855621338, - 0.04279331862926483, - -0.04444596916437149, - -0.4504188001155853, - 0.25204789638519287, - 0.16403810679912567, - -0.3669571280479431, - -0.17002585530281067, - -0.25143080949783325, - -0.10692963004112244, - -0.197170227766037, - -0.16792333126068115, - 0.21416082978248596, - 0.28538626432418823, - -0.002483615418896079, - 0.06806439161300659, - -0.3846953213214874, - 0.1552981585264206, - 0.20944826304912567, - 0.20863336324691772, - 0.08073324710130692, - -0.2736304998397827, - -0.3032132387161255, - -0.5043969750404358, - 0.1798803210258484, - -0.2973431348800659, - -0.09343209862709045, - 0.2295827567577362, - 0.10146166384220123, - -0.3073643445968628, - -0.00600307947024703, - -0.1969331055879593, - 0.027428634464740753, - -0.262356162071228, - 0.36152341961860657, - 0.3324403762817383, - -0.24731598794460297, - 0.12492736428976059, - -0.05752915143966675, - 0.12010082602500916, - 0.15870201587677002, - -0.32285600900650024, - 0.17364966869354248, - -0.20896956324577332 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_009.json b/src/benchmark/output/results/results_graph_009.json deleted file mode 100644 index b3d8964..0000000 --- a/src/benchmark/output/results/results_graph_009.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 73-year-old female who presented with bilateral chest wall discomfort, exertional breathlessness, and chronic fatigue in March 2025.\n\n**Timeline of Diagnoses:**\n\n1. **March 2025:** The patient's symptoms began, including bilateral chest wall discomfort, exertional breathlessness, and chronic fatigue.\n2. **April 2025 (Step 2):** Chest radiograph showed a left lung opacification, indicating the presence of an abnormality in the lung tissue.\n3. **May 2025 (Step 3):** CT and PET-CT scan confirmed a 53 mm avid left upper lobe mass with associated hilar and mediastinal lymphadenopathy (T3N2M0), which is indicative of cancerous cells.\n4. **June 2025 (Step 4):** Endobronchial ultrasound scan and biopsy (EBUS) sampling of station 11L confirmed lung adenocarcinoma metastasis, a type of non-small cell lung cancer.\n5. **July 2025 (Step 5):** Molecular testing showed 60% PD-L1 positivity, indicating the presence of a protein that can help the immune system recognize and attack cancer cells.\n6. **August 2025 (Step 6):** The patient consented to radical treatment with four weeks of radiotherapy dosed at 55 Gy/20 with concurrent chemotherapy.\n7. **September 2025 (Step 7):** Initial scan post radiotherapy showed a limited response to treatment, indicating that the cancer had not fully responded to the treatment.\n8. **October 2025 (Step 8):** Subsequent CT scan in a year showed that there was no tumor visible on axial images but there was apparent collapse of the left lung base.\n9. **November 2025 (Step 9):** Post radiotherapy imaging showed complete response to treatment, with two small bullae seen in the post aspect of the lower lobe.\n10. **December 2025 (Step 10):** Follow-up scan showed upward curving of the lower segmental bronchi and pulmonary vessels.\n11. **January 2026 (Step 11):** Imaging showed two small bullae initially seen in the post aspect of the lower lobe relocated to the upper zone anteriorly, with lung torsion with 180-degree rotation diagnosed.\n12. **February 2026 (Step 12):** Follow-up imaging 12 months after previous imaging demonstrated migration of the emphysematous bullae anteriorly and superiorly towards the apex of the lung.\n13. **March 2026 (Step 13):** CT imaging showed left lung base collapse and tapering/curved orientation of the lower lobe segmental bronchi and pulmonary vessels of the right lung, indicating twisting of the lobe.\n\n**Treatments:**\n\n* Radiotherapy with concurrent chemotherapy\n* Surgery to remove the tumor\n\n**Outcomes:**\n\n* The patient's cancer was diagnosed and treated, but unfortunately, the treatment did not completely eliminate the cancer.\n* The patient developed lung torsion with 180-degree rotation, which is a complication of radiotherapy.\n* Despite this complication, the patient remains asymptomatic and managed conservatively.\n\nThis case highlights the complexities of treating non-small cell lung cancer, particularly in older adults. While the patient's cancer was diagnosed and treated, the treatment did not completely eliminate the cancer, and the patient developed a significant complication. Further research is needed to improve treatment outcomes for patients with this type of cancer.", - "bertscore": { - "precision": [ - 0.6804789304733276 - ], - "recall": [ - 0.7055283188819885 - ], - "f1": [ - 0.6927772164344788 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 13, - "edge_count": 12, - "avg_in_degree": 0.9230769230769231, - "density": 0.07692307692307693 - }, - "trajectory_embedding": [ - 0.30061694979667664, - 0.13679052889347076, - -0.03965549170970917, - 0.1295793503522873, - 0.008763031102716923, - 0.07028906792402267, - 0.014980574138462543, - 0.28833457827568054, - 0.4558904469013214, - -0.27837973833084106, - -0.10914869606494904, - 0.01314648985862732, - -0.4926709830760956, - -0.17142295837402344, - -0.19755218923091888, - 0.20304308831691742, - 0.08181775361299515, - 0.25292664766311646, - -0.10463114827871323, - -0.2849089205265045, - -0.4398835003376007, - 0.17565952241420746, - -0.3815237879753113, - -0.05371331796050072, - 0.2289101481437683, - -0.023963481187820435, - 0.3267512023448944, - 0.3687443435192108, - 0.17262332141399384, - 0.3902463912963867, - 0.1786838173866272, - -0.11511321365833282, - 0.24315889179706573, - 0.09894391894340515, - -0.17505592107772827, - 0.22489789128303528, - 0.13174273073673248, - 0.48279789090156555, - -0.05140730366110802, - -0.039840467274188995, - 0.04140697047114372, - 0.0911102369427681, - 0.8759787678718567, - 0.16071189939975739, - 0.4434395134449005, - -0.7881634831428528, - -0.013953831046819687, - 0.5566041469573975, - -0.46610304713249207, - -0.28513842821121216, - 0.13145405054092407, - 0.7494055032730103, - 0.5836555361747742, - -0.23875251412391663, - 0.4100865125656128, - -0.11990626156330109, - -0.299298495054245, - -0.41026559472084045, - -0.25793033838272095, - -0.012172216549515724, - -0.05021212622523308, - -0.27538809180259705, - 0.3145725131034851, - -0.07997635006904602, - -0.23025700449943542, - -0.1760639101266861, - -0.21407635509967804, - 0.16087102890014648, - -0.028203509747982025, - -0.32823577523231506, - -0.12537476420402527, - -0.21558700501918793, - -0.16074074804782867, - 0.21151819825172424, - 0.11540118604898453, - -0.10252586007118225, - 0.3055439293384552, - -0.09755905717611313, - 0.16688179969787598, - 0.2583809196949005, - -0.12420583516359329, - -0.021927695721387863, - 0.11568288505077362, - 0.39876824617385864, - -0.4562661945819855, - 0.11368121206760406, - -0.11668206006288528, - -0.29154446721076965, - -0.36951372027397156, - 0.13675305247306824, - 0.2025599628686905, - -0.3179859519004822, - -0.08689871430397034, - -0.11686761677265167, - -0.01470477320253849, - 0.09144262969493866, - 0.4006587564945221, - 0.38419339060783386, - 0.8686131834983826, - -0.04427336901426315, - 0.2588061988353729, - 0.00879510398954153, - 0.3341047167778015, - 0.10098455846309662, - 0.4529469609260559, - -0.16254223883152008, - 0.0770118311047554, - -0.5748443603515625, - 0.1845024675130844, - 0.48405328392982483, - 0.0717751607298851, - -0.16776061058044434, - 0.05395988002419472, - -0.20196738839149475, - 0.1278553605079651, - 0.14417311549186707, - -0.06608190387487411, - 0.1926525980234146, - 0.19811591506004333, - -0.5679795742034912, - -0.14674319326877594, - -0.030886434018611908, - 0.2587715983390808, - 0.4735981523990631, - -0.4278338849544525, - -0.09040682762861252, - -0.15139435231685638, - 0.03937403857707977, - 0.10797028243541718, - -0.04693116992712021, - -0.4267384707927704, - -0.08839917927980423, - -0.05420388653874397, - 0.1780317723751068, - -0.09646733850240707, - 0.28063270449638367, - -0.29917776584625244, - -0.0038886459078639746, - -1.1382931470870972, - 0.20060311257839203, - -0.473506897687912, - -0.17987725138664246, - 0.022121606394648552, - -0.4768145680427551, - -0.25343701243400574, - -0.18583407998085022, - -0.24112629890441895, - 0.07995658367872238, - -0.17025576531887054, - 0.009840866550803185, - 0.03749207407236099, - 0.10546726733446121, - 0.24547265470027924, - 0.4258173704147339, - 0.06830018013715744, - 0.08510681241750717, - 0.031653113663196564, - 0.3108045160770416, - 0.12054185569286346, - -0.17161637544631958, - 0.03911770135164261, - 0.4646453857421875, - 0.14199791848659515, - -0.0230838842689991, - -0.06750763207674026, - -0.661117672920227, - 0.10041659325361252, - -0.12651437520980835, - 0.2375250607728958, - 0.024257034063339233, - -0.2762560248374939, - 0.10550963133573532, - -0.4198901355266571, - 0.6018848419189453, - 0.028342843055725098, - 0.5319833755493164, - -0.014234955422580242, - -0.1325477510690689, - 0.02436298131942749, - 0.2349904477596283, - 0.1855607032775879, - -0.04987580329179764, - 0.714210569858551, - 0.1998637616634369, - -0.22537361085414886, - 0.17992551624774933, - 0.32676663994789124, - -0.06474563479423523, - -0.1759558469057083, - -0.04366090148687363, - 0.4514440894126892, - -0.2471381276845932, - 0.44863641262054443, - -0.4933909773826599, - 0.02599494718015194, - 0.14395929872989655, - -0.28906872868537903, - -0.22576163709163666, - 0.11280890554189682, - -0.16796067357063293, - 0.31411492824554443, - 0.010976210236549377, - -0.30717724561691284, - 0.09624658524990082, - 0.08549268543720245, - -0.18921564519405365, - 0.35846397280693054, - -0.05323498696088791, - 0.08630605787038803, - -0.0893084853887558, - -0.10765568166971207, - 0.1585487574338913, - -0.08442001789808273, - 0.2502497434616089, - -0.0020892953034490347, - -0.355630099773407, - 0.29041728377342224, - -0.055248700082302094, - -0.0535493828356266, - 0.1703161895275116, - 0.01709926128387451, - -0.2261430323123932, - -0.08543924987316132, - -0.05553868040442467, - -0.49373042583465576, - 0.12487110495567322, - 0.08447746187448502, - 0.1704041063785553, - 0.18718859553337097, - 0.004237837623804808, - -0.012829344719648361, - -0.3660625219345093, - 0.308660089969635, - -0.04517054930329323, - -0.12193892896175385, - -0.35245034098625183, - 0.14472424983978271, - -0.27395230531692505, - -0.016010599210858345, - 0.37598860263824463, - -0.11055636405944824, - -0.11281686276197433, - 0.12977129220962524, - -0.3308854103088379, - -0.13021978735923767, - -0.36070045828819275, - -0.045203797519207, - 0.20274265110492706, - 0.1969032883644104, - 0.3639537990093231, - 0.0021560133900493383, - -0.1443532258272171, - 0.18161657452583313, - -0.23573677241802216, - -0.3882991671562195, - -0.4035549461841583, - -0.1076691672205925, - -0.08269966393709183, - -0.5464775562286377, - 0.08204801380634308, - 0.15259136259555817, - -0.10634008795022964, - 0.10091282427310944, - -0.36274534463882446, - -0.09690795838832855, - 0.08264486491680145, - -0.06528517603874207, - 0.09825009852647781, - -0.1459175944328308, - 0.15750159323215485, - -0.1699351966381073, - -0.22618983685970306, - -0.15173055231571198, - -0.0513962097465992, - 0.19419118762016296, - -0.04743727296590805, - -0.277227520942688, - -0.06412526965141296, - 0.025830289348959923, - -0.3341001868247986, - -0.13842087984085083, - 0.1855609267950058, - -0.18642815947532654, - 0.04520953446626663, - -0.05126287415623665, - 0.3484516143798828, - 0.27548331022262573, - 0.030118810012936592, - 0.1437336653470993, - 0.45063358545303345, - 0.43261459469795227, - -0.021106014028191566, - -0.04305964335799217, - -0.08271972090005875, - -0.04309805482625961, - -0.017475774511694908, - -0.34120607376098633, - 0.38230520486831665, - 0.0014461118262261152, - 0.001412954181432724, - -0.07718673348426819, - 0.21210694313049316, - 0.08777040988206863, - -0.4074777066707611, - -0.1181207075715065, - 0.6013200283050537, - 0.07930512726306915, - 0.05659172311425209, - 0.15421055257320404, - 0.4511648416519165, - 0.4693281948566437, - -0.08559887111186981, - -0.004478659015148878, - 0.02723422646522522, - -0.09928381443023682, - -0.17495237290859222, - -0.10801483690738678, - 0.05428190901875496, - 0.4454018175601959, - -0.18753816187381744, - -0.16722679138183594, - 0.14452001452445984, - -0.11844377219676971, - -0.06312468647956848, - -0.12458428740501404, - -0.058220818638801575, - 0.09688936918973923, - -0.32000526785850525, - 0.3266426622867584, - 0.0907057523727417, - -0.004910896997898817, - 0.44846493005752563, - -0.2727970778942108, - -0.2381770759820938, - 0.18086402118206024, - -0.2162107676267624, - -0.5297332406044006, - 0.40511271357536316, - -0.22811414301395416, - -0.01803208328783512, - 0.38160768151283264, - -0.16530653834342957, - -0.13248711824417114, - -0.11113110184669495, - 0.36434170603752136, - -0.028015095740556717, - 0.016195105388760567, - -0.07578729093074799, - 0.16008298099040985, - 0.28509604930877686, - 0.703616201877594, - 0.15215228497982025, - 0.25275829434394836, - 0.5163010358810425, - 0.10418011248111725, - -0.4169873893260956, - 0.006468948442488909, - 0.15739339590072632, - 0.37506911158561707, - -0.25019562244415283, - -0.16702260076999664, - -0.25331413745880127, - 0.11383897811174393, - 0.16331805288791656, - -0.42755401134490967, - -0.11986570805311203, - 0.0740637257695198, - 0.06725609302520752, - -0.05157637968659401, - 0.25265949964523315, - 0.18118897080421448, - -0.09112044423818588, - 0.4455313980579376, - -0.027181733399629593, - -0.061666134744882584, - 0.3762528598308563, - -0.24566780030727386, - 0.22963637113571167, - -0.13125869631767273, - -0.32454994320869446, - -0.3511371612548828, - 0.034271240234375, - -0.2743928134441376, - -0.11009233444929123, - -0.01887180283665657, - -0.23085759580135345, - 0.08150995522737503, - -0.2623516917228699, - 0.09205848723649979, - 0.005691364873200655, - 0.1479693353176117, - 0.058960992842912674, - 0.2840757966041565, - 0.02537568472325802, - -0.25926917791366577, - 0.2983348071575165, - -0.09818986803293228, - 0.09370679408311844, - -0.13930289447307587, - -0.0355282723903656, - -0.24087683856487274, - 0.5961702466011047, - 0.11484932899475098, - 0.00980472657829523, - 0.06667700409889221, - -0.031554512679576874, - -0.18407481908798218, - -0.37044331431388855, - -0.14252103865146637, - -0.12424002587795258, - -0.054767172783613205, - 0.03530232980847359, - 0.010114665143191814, - -0.42102527618408203, - -0.27045637369155884, - -0.1023460328578949, - 0.015308256261050701, - 0.14392806589603424, - -0.08428843319416046, - -0.014125552028417587, - 0.36155539751052856, - 0.08494310826063156, - 0.40472522377967834, - -0.25833719968795776, - 0.07099326699972153, - 0.08779150992631912, - -0.30545279383659363, - 0.002410974819213152, - 0.026546578854322433, - -0.178069606423378, - -0.15582162141799927, - 0.1547548472881317, - 0.17638622224330902, - 0.018014103174209595, - -0.054739151149988174, - 0.1821134239435196, - 0.21567286550998688, - -0.44771549105644226, - -0.10571227967739105, - 0.33651965856552124, - 0.06612350046634674, - 0.5217255353927612, - 0.02953796274960041, - -0.47818735241889954, - -0.1924521028995514, - -0.1356043815612793, - -0.40143269300460815, - 0.07575634121894836, - 0.22889836132526398, - -0.08029444515705109, - -0.18779706954956055, - 0.08182274550199509, - 0.04091830924153328, - -0.03593051806092262, - 0.269060879945755, - -0.023404208943247795, - 0.1995745599269867, - -0.036690909415483475, - -0.25589945912361145, - -0.11970376968383789, - -0.2082243710756302, - -0.22910167276859283, - -0.26949697732925415, - 0.3689024746417999, - 0.32058143615722656, - -0.4239586293697357, - -0.07353271543979645, - 0.12156892567873001, - -0.22333869338035583, - -0.20101632177829742, - -0.06726569682359695, - -0.37388283014297485, - 0.33694547414779663, - -0.05474402382969856, - -0.2278801053762436, - 0.08034788817167282, - -0.24536393582820892, - 0.11807370185852051, - 0.15784810483455658, - 0.07384534925222397, - 0.44827958941459656, - 0.1802339255809784, - 0.053415730595588684, - 0.4752578139305115, - 0.07408022880554199, - -0.05163595452904701, - 0.2263970673084259, - -0.01489220466464758, - 0.11164931207895279, - -0.13326396048069, - -0.18918675184249878, - 0.2881137728691101, - -0.24008001387119293, - 0.017847053706645966, - 0.24039219319820404, - 0.23311178386211395, - -0.4901817739009857, - -0.40220049023628235, - 0.012230409309267998, - -0.03174203261733055, - -0.023231299594044685, - -0.17308670282363892, - -0.2651897966861725, - -0.03122134879231453, - -0.1750163435935974, - -0.16663116216659546, - 0.3131754994392395, - 0.4662439227104187, - 0.1532408595085144, - 0.2069384902715683, - -0.27394938468933105, - -0.3539448380470276, - 0.18794472515583038, - 0.20758238434791565, - 0.15963761508464813, - -0.08640924841165543, - -0.23264583945274353, - 0.37114784121513367, - 0.4759943187236786, - -0.14757072925567627, - 0.047958310693502426, - 0.11256660521030426, - -0.014573823660612106, - 0.13800741732120514, - 0.02295101061463356, - -0.20576684176921844, - 0.018195323646068573, - -0.380094051361084, - 0.2328863888978958, - -0.29317909479141235, - -0.18156932294368744, - 0.16800563037395477, - -0.032914821058511734, - -0.5177411437034607, - -0.2488110214471817, - 0.3510724604129791, - -0.15607918798923492, - -0.09867240488529205, - 0.22018471360206604, - 0.4333863854408264, - 0.14446261525154114, - -0.32532328367233276, - 0.03614373505115509, - -0.48205000162124634, - -0.16096417605876923, - 0.15163753926753998, - -0.1432255357503891, - -0.09035832434892654, - -0.04294264689087868, - 0.39902570843696594, - 0.4454062581062317, - 0.1671011745929718, - -0.2351011484861374, - 0.08211175352334976, - 0.3034988343715668, - 0.2524162530899048, - -0.18156926333904266, - -10.762006759643555, - -0.14592768251895905, - -0.253853440284729, - 0.5869689583778381, - -0.18957209587097168, - 0.05521729961037636, - 0.23849312961101532, - -0.03640863671898842, - 0.15324296057224274, - 0.12518952786922455, - -0.16701294481754303, - 0.02260957472026348, - 0.3558577001094818, - 0.319719523191452, - 9.897981362883002e-05, - -0.0976332500576973, - -0.2451423555612564, - 0.1911085695028305, - 0.09918362647294998, - 0.21917954087257385, - 0.3449452519416809, - 0.4619852900505066, - -0.2624243497848511, - 0.19446516036987305, - -0.01851411908864975, - -0.31936803460121155, - -0.19016598165035248, - 0.6226457357406616, - 0.2877163290977478, - -0.301921010017395, - 0.2533606290817261, - 0.16141226887702942, - -0.23086364567279816, - 0.10981079936027527, - -0.08707976341247559, - -0.13567127287387848, - -0.10659296810626984, - 0.09787356853485107, - 0.14902850985527039, - -0.06700917333364487, - -0.01091080904006958, - -0.2019205242395401, - 0.25938141345977783, - 0.2418721467256546, - -0.07433436065912247, - -0.6163228154182434, - -0.189094677567482, - -1.624807357788086, - 0.29751163721084595, - 0.3411565124988556, - 0.35926735401153564, - 0.09449572116136551, - 0.26612645387649536, - 0.17533062398433685, - -0.4075483977794647, - -0.03598267585039139, - -0.24271151423454285, - -0.0990070253610611, - 0.09483333677053452, - -0.011217181570827961, - 0.14968831837177277, - -0.11055661737918854, - 0.5952299237251282, - -0.008566970936954021, - -0.27102991938591003, - 0.1513008028268814, - 0.13443483412265778, - -0.10219740867614746, - -0.10483658313751221, - -0.6270326972007751, - -0.6471126079559326, - -0.018335454165935516, - -0.059232670813798904, - 0.09001737087965012, - 0.37462642788887024, - -0.06301868706941605, - -0.304246723651886, - 0.3087085485458374, - 0.020992564037442207, - 0.351842999458313, - 0.1851048767566681, - 0.014869739301502705, - 0.11163853853940964, - -0.09392062574625015, - -0.29666247963905334, - -0.16072581708431244, - 0.08666288107633591, - 0.5329807996749878, - 0.07284241169691086, - -0.022023212164640427, - -0.1301341950893402, - 0.47861021757125854, - 0.07298403978347778, - -0.2088329941034317, - -0.4215949773788452, - 0.1055564358830452, - -0.07730000466108322, - 0.1267498880624771, - 0.042888328433036804, - -0.1842184215784073, - -0.17291368544101715, - -0.016733799129724503, - -0.039818260818719864, - -0.5295361280441284, - -0.4278663992881775, - 0.22105154395103455, - 0.13221736252307892, - 0.1635342240333557, - 0.024788588285446167, - -0.13592389225959778, - -0.22702556848526, - 0.004032918252050877, - 0.21240797638893127, - 0.5880923867225647, - 0.1824669986963272, - 0.02210739627480507, - -0.02677292935550213, - -0.22889898717403412, - -0.22626489400863647, - 0.06338854879140854, - 0.36331498622894287, - -0.19626453518867493, - 0.3129028081893921, - 0.6032834053039551, - -0.009738324210047722, - -0.10209986567497253, - 0.9311566948890686, - -0.2882600724697113, - 0.30083853006362915, - -0.16729091107845306, - 0.2787630558013916, - -0.02740929275751114, - -0.34643417596817017, - -0.07002197206020355, - 0.4803674519062042, - -0.3723117411136627, - 0.7538663148880005, - 0.23880721628665924, - -0.4755764603614807, - -0.01853349059820175, - -0.3872881531715393, - 0.5384923815727234, - 0.38153794407844543, - 0.27703750133514404, - -0.14233160018920898, - -0.28452613949775696, - -0.32556769251823425, - 0.13847297430038452, - -0.4264545440673828, - -0.2940461337566376, - -0.06874234974384308, - 0.10370154678821564, - 0.19563931226730347, - -0.2518042325973511, - 0.41201624274253845, - 0.1889844536781311, - -0.24337175488471985, - -0.24316948652267456, - -0.4608098268508911, - -0.008641954511404037, - 0.2593584954738617, - 0.7476592659950256, - -0.09565087407827377, - -0.02225889079272747, - -0.09001682698726654, - 0.1463794857263565, - -0.1314922422170639, - 0.24893686175346375, - 0.1432054191827774, - -0.08623763173818588, - -0.4624679386615753, - 0.21225954592227936, - 0.12379222363233566, - -0.30427664518356323, - -0.1385560929775238, - -0.13254867494106293, - -0.05852615460753441, - 0.07713782042264938, - -0.3416714072227478, - 0.04809129610657692, - 0.40662819147109985, - -0.11169688403606415, - -0.07529763877391815, - -0.24947215616703033, - -0.02488165721297264, - 0.1389564424753189, - 0.27902042865753174, - 0.1072269007563591, - -0.18563948571681976, - -0.2865413427352905, - -0.48267582058906555, - 0.25808268785476685, - -0.20624206960201263, - -0.09471286833286285, - 0.15300051867961884, - 0.17397376894950867, - -0.22994564473628998, - 0.09576177597045898, - -0.15919622778892517, - 0.07856888324022293, - -0.1563364565372467, - 0.2717364430427551, - 0.4111707806587219, - -0.24405409395694733, - 0.21035033464431763, - -0.1762838512659073, - 0.2774675786495209, - 0.021981405094265938, - -0.3391790986061096, - 0.1877278983592987, - -0.2832621932029724 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_010.json b/src/benchmark/output/results/results_graph_010.json deleted file mode 100644 index 41e4bf2..0000000 --- a/src/benchmark/output/results/results_graph_010.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 55-year-old female diagnosed with squamous cell carcinoma (SCC) of the esophagus. She underwent various treatments, including surgery, chemotherapy, radiation therapy, and immunotherapy, before being diagnosed with another type of cancer.\n\n**Timeline of Diagnoses:**\n\n1. **Step 1:** The patient was diagnosed with SCC of the esophagus (cT3N2M0, stage IIIB) at an unknown date.\n2. **Step 2:** Six months later, she underwent esophagectomy with gastric pull-up reconstruction.\n3. **Step 3:** Two years after her surgery, she received neo-adjuvant concurrent chemoradiation therapy (ypT2N1 stage IIB disease).\n4. **Step 4:** Six weeks after completing her chemotherapy and radiation therapy, she received a total of 50 Gray of radiation over 6 weeks, along with Carboplatin and Paclitaxel for 6 weeks.\n5. **Step 5:** Six years later, a CT scan revealed stage IA TTF-1 positive adenocarcinoma in the left upper lobe.\n6. **Step 6:** Two years after her diagnosis of adenocarcinoma, she underwent treatment with stereotactic radiotherapy.\n7. **Step 7:** Two years after her radiotherapy, squamous cell carcinoma of the right upper lobe was discovered.\n8. **Step 8:** The patient initiated Pembrolizumab with curative intent due to high PD-L1 expression.\n9. **Step 9:** A follow-up CT scan showed no biological response and a tumor diameter of 54 mm.\n10. **Step 10:** Salvage lobectomy including complete mediastinal lymph node dissection was performed.\n11. **Step 11:** Pre-operative positron emission tomography CT scan demonstrated the exact localization of the tumor in the right upper lobe.\n\n**Timeline of Treatments:**\n\n1. **Esophagectomy with gastric pull-up reconstruction (Step 2):**\n - Date: Unknown\n - Treatment: Surgery\n\n2. **Neo-adjuvant concurrent chemoradiation therapy (Step 3):**\n - Date: Two years after esophagectomy\n - Treatment: Chemotherapy and radiation therapy\n\n3. **Radiation therapy with Carboplatin and Paclitaxel (Step 4):**\n - Date: Six weeks after completing chemotherapy and radiation therapy\n - Treatment: Radiation therapy, chemotherapy, and medication\n\n4. **Stereotactic radiotherapy (Step 6):**\n - Date: Two years after diagnosis of adenocarcinoma\n - Treatment: Radiotherapy\n\n5. **Pembrolizumab (Step 8):**\n - Date: After diagnosis of squamous cell carcinoma of the right upper lobe\n - Treatment: Immunotherapy\n\n**Outcomes:**\n\n1. **Esophagectomy with gastric pull-up reconstruction:** The patient underwent successful surgery.\n2. **Neo-adjuvant concurrent chemoradiation therapy:** The patient received treatment for her cancer, but no further information is available on the effectiveness of this treatment.\n3. **Radiation therapy with Carboplatin and Paclitaxel:** No biological response was observed after completing this treatment.\n4. **Stereotactic radiotherapy:** No biological response was observed after completing this treatment.\n5. **Pembrolizumab:** The patient did not respond to Pembrolizumab, as indicated by a follow-up CT scan showing no biological response and a tumor diameter of 54 mm.\n\n**Conclusion:**\nThe patient underwent various treatments for her esophageal cancer before being diagnosed with another type of cancer. Despite receiving multiple treatments, she did not achieve a complete response to any treatment. Salvage lobectomy including complete mediastinal lymph node dissection was performed, but the outcome is unknown.", - "bertscore": { - "precision": [ - 0.6025055050849915 - ], - "recall": [ - 0.7357915043830872 - ], - "f1": [ - 0.6625112891197205 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 11, - "edge_count": 10, - "avg_in_degree": 0.9090909090909091, - "density": 0.09090909090909091 - }, - "trajectory_embedding": [ - 0.21590237319469452, - 0.1823497712612152, - -0.11964480578899384, - 0.07587544620037079, - 0.18606476485729218, - 0.21188677847385406, - -0.11044882982969284, - 0.41281792521476746, - 0.48045822978019714, - -0.37073710560798645, - -0.20201373100280762, - -0.17259280383586884, - -0.5821730494499207, - -0.11790329962968826, - -0.2575705647468567, - 0.43589040637016296, - -0.25557705760002136, - 0.2976360023021698, - -0.1255851835012436, - -0.3479345142841339, - -0.42114880681037903, - 0.2342861145734787, - -0.49920159578323364, - 0.053388942033052444, - 0.36746883392333984, - -0.12336592376232147, - 0.40533649921417236, - 0.47145435214042664, - 0.32052573561668396, - 0.3062628209590912, - 0.060986198484897614, - -0.2907654345035553, - 0.34394797682762146, - 0.0025140107609331608, - -0.34577620029449463, - 0.1963474601507187, - 0.2551204264163971, - 0.3567274808883667, - -0.11241114884614944, - 0.008462523110210896, - -0.057969581335783005, - 0.08375213295221329, - 0.9651418924331665, - 0.09407640248537064, - 0.294234037399292, - -0.864651083946228, - 0.021013660356402397, - 0.549808144569397, - -0.4663076102733612, - -0.4325103759765625, - 0.07601156085729599, - 0.7564382553100586, - 0.6105517148971558, - -0.5527001023292542, - 0.4612109363079071, - -0.29281437397003174, - -0.2601868212223053, - -0.3369051218032837, - -0.0942709669470787, - -0.0454891063272953, - 0.06313750892877579, - -0.42570894956588745, - 0.6730190515518188, - -0.29049554467201233, - -0.13298633694648743, - -0.18029017746448517, - -0.36059853434562683, - 0.23151804506778717, - -0.029649443924427032, - -0.4749322235584259, - -0.17641116678714752, - -0.12117630988359451, - 0.07174529880285263, - 0.13247133791446686, - 0.040357477962970734, - -0.14585012197494507, - 0.44345685839653015, - -0.0824585109949112, - 0.2532438039779663, - 0.34335774183273315, - -0.0770181268453598, - -0.27296867966651917, - -0.08578407019376755, - 0.32531020045280457, - -0.380910187959671, - -0.09985964745283127, - -0.10276868939399719, - -0.3483111262321472, - -0.3892504870891571, - 0.12806926667690277, - 0.2747079133987427, - -0.5248789191246033, - -0.040011920034885406, - -0.15131600201129913, - -0.006086945533752441, - 0.4184017479419708, - 0.7352264523506165, - 0.14150895178318024, - 0.9071729183197021, - -0.060770224779844284, - 0.1861913651227951, - -0.08676314353942871, - 0.1727498471736908, - -0.0030242407228797674, - 0.33739760518074036, - -0.06031491607427597, - 0.08220886439085007, - -0.4953893721103668, - 0.436631977558136, - 0.6962245106697083, - 0.23626847565174103, - -0.009914754889905453, - -8.520043775206432e-05, - -0.2581094801425934, - 0.28486135601997375, - 0.15629810094833374, - 0.11284124851226807, - 0.30738207697868347, - 0.44610920548439026, - -0.32457104325294495, - -0.28642943501472473, - 0.06683402508497238, - 0.22503350675106049, - 0.25068628787994385, - -0.5718020796775818, - -0.21503977477550507, - -0.15192455053329468, - -0.2313249260187149, - 0.11885866522789001, - -0.12040448188781738, - -0.503815233707428, - -0.2980988621711731, - -0.13322007656097412, - -0.03965024650096893, - -0.05886439234018326, - 0.3938021957874298, - -0.3212750256061554, - -0.2357817143201828, - -1.086217999458313, - 0.22418466210365295, - -0.403675377368927, - -0.12092361599206924, - -0.10353822261095047, - -0.5101791024208069, - -0.2993016242980957, - -0.19096218049526215, - -0.13450735807418823, - 0.2105664312839508, - -0.23272837698459625, - -0.06980859488248825, - 0.15782161056995392, - 0.049955107271671295, - 0.24539758265018463, - 0.6937840580940247, - 0.15109121799468994, - -0.03952617570757866, - -0.04447723925113678, - 0.142830953001976, - 0.011787771247327328, - -0.0088141318410635, - 0.07805755734443665, - 0.6065551042556763, - 0.35458824038505554, - 0.10089345276355743, - -0.2530367076396942, - -0.6255857348442078, - 0.0426565520465374, - -0.17884178459644318, - 0.10706183314323425, - 0.07893088459968567, - -0.1982448697090149, - -0.004573941230773926, - -0.45561400055885315, - 0.7102386951446533, - 0.011311220936477184, - 0.1981527954339981, - -0.026383014395833015, - -0.05192248523235321, - 0.07338760048151016, - 0.3007173538208008, - 0.2839224636554718, - -0.3822489082813263, - 0.7527574896812439, - 0.24243173003196716, - -0.2207026332616806, - 0.19979052245616913, - 0.22234949469566345, - 0.1908295750617981, - -0.18085280060768127, - 0.052776943892240524, - 0.6797260642051697, - -0.3959343135356903, - 0.7085362076759338, - -0.34702861309051514, - -0.1467304676771164, - 0.25778162479400635, - -0.13579301536083221, - -0.16440899670124054, - -0.10112521797418594, - -0.20624040067195892, - 0.1542985588312149, - 0.015027835965156555, - -0.5716752409934998, - 0.07781431823968887, - 0.21812938153743744, - -0.06461017578840256, - 0.13918548822402954, - -0.04052561894059181, - 0.15764157474040985, - 0.05454079806804657, - -0.14800725877285004, - 0.3894988000392914, - -0.22248126566410065, - 0.2159782499074936, - 0.04732801765203476, - -0.5005247592926025, - 0.17623524367809296, - -0.07339435815811157, - 0.04299303516745567, - 0.11912648379802704, - 0.018885206431150436, - -0.31233635544776917, - -0.3005068898200989, - 0.024661654606461525, - -0.7458246350288391, - 0.2947142422199249, - 0.08730471879243851, - 0.25584670901298523, - 0.3227587938308716, - -0.04480193182826042, - -0.0967700406908989, - -0.43592357635498047, - 0.3502056300640106, - -0.12611745297908783, - -0.1002458855509758, - -0.20970949530601501, - 0.44554415345191956, - -0.17481082677841187, - 0.40101996064186096, - 0.34196141362190247, - -0.0571710504591465, - -0.12144474685192108, - 0.16072238981723785, - -0.34354162216186523, - -0.18675561249256134, - -0.3795614242553711, - 0.03640662506222725, - 0.22029586136341095, - 0.15135325491428375, - 0.2890349328517914, - -0.052695706486701965, - -0.12853240966796875, - 0.12517811357975006, - -0.14526847004890442, - -0.5223375558853149, - -0.3590468764305115, - -0.03908499702811241, - -0.19553233683109283, - -0.8702585697174072, - 0.2009977400302887, - -0.1210380494594574, - -0.030405575409531593, - 0.14748002588748932, - -0.4756527841091156, - -0.10037972778081894, - 0.19319742918014526, - 0.11438903212547302, - 0.07027962058782578, - -0.2624141275882721, - 0.3148486018180847, - -0.14488649368286133, - -0.24938522279262543, - -0.20283173024654388, - 0.03396051004528999, - 0.06458678096532822, - -0.017872486263513565, - -0.35600942373275757, - -0.05896160751581192, - 0.05699622631072998, - -0.34331652522087097, - 0.10431026667356491, - 0.21210800111293793, - -0.2277608960866928, - 0.22937029600143433, - 0.13927359879016876, - 0.3286478817462921, - 0.28556978702545166, - 0.14501941204071045, - 0.10344479233026505, - 0.3135758340358734, - 0.5232022404670715, - -0.12015588581562042, - 0.048353735357522964, - -0.020848143845796585, - -0.1004922166466713, - -0.0619792677462101, - -0.3061378300189972, - 0.480991393327713, - 0.02188427932560444, - 0.08436595648527145, - -0.08969787508249283, - 0.3157120645046234, - 0.010198063217103481, - -0.13475917279720306, - 0.15670229494571686, - 0.4864586591720581, - 0.1618918925523758, - 0.2415582537651062, - 0.28244879841804504, - 0.21782447397708893, - 0.08219602704048157, - -0.24083980917930603, - 0.010587697848677635, - 0.24863901734352112, - -0.03379552438855171, - -0.27998507022857666, - -0.1042419970035553, - 0.25208818912506104, - 0.566378653049469, - -0.3394303619861603, - -0.3438229560852051, - -0.13283134996891022, - -0.32532942295074463, - 0.04778009653091431, - -0.3592623472213745, - -0.15757814049720764, - 0.29535365104675293, - -0.17852330207824707, - 0.3009174168109894, - 0.1418439894914627, - -0.12254238873720169, - 0.28147855401039124, - -0.5833076238632202, - -0.09236320853233337, - 0.22421836853027344, - -0.12967288494110107, - -0.4142408072948456, - 0.46086862683296204, - -0.21735717356204987, - 0.021204644814133644, - 0.4388979971408844, - -0.5074916481971741, - -0.08560466766357422, - 0.07725746929645538, - 0.40178030729293823, - -0.006670522503554821, - 0.09029139578342438, - 0.00365213374607265, - 0.1763836145401001, - 0.006295544095337391, - 0.6056994795799255, - 0.055184755474328995, - 0.2966027855873108, - 0.739279568195343, - 0.3945513069629669, - -0.4544866681098938, - 0.12829795479774475, - -0.13830822706222534, - 0.5085112452507019, - 0.003618975868448615, - -0.08832399547100067, - -0.15757626295089722, - 0.23373430967330933, - 0.141469344496727, - -0.4132903218269348, - 0.009987146593630314, - 0.17295542359352112, - 0.1110105961561203, - -0.10160476714372635, - 0.3964204788208008, - 0.13185428082942963, - -0.20239359140396118, - 0.6286218166351318, - -0.062239598482847214, - -0.10296947509050369, - 0.4334150552749634, - -0.28439539670944214, - 0.0605875700712204, - 0.12451266497373581, - -0.14610013365745544, - -0.293875128030777, - 0.11912915855646133, - -0.272060364484787, - -0.1503898650407791, - 0.06305347383022308, - -0.24081364274024963, - 0.2861063778400421, - -0.41631755232810974, - 0.005559006705880165, - 0.006819125730544329, - 0.11628010869026184, - 0.22329702973365784, - 0.24607442319393158, - 0.0553882010281086, - -0.15096598863601685, - 0.3314759433269501, - -0.019949622452259064, - -0.183464914560318, - -0.23240290582180023, - 0.023668430745601654, - -0.12780286371707916, - 0.7312068939208984, - 0.12836094200611115, - 0.058139726519584656, - 0.1797611266374588, - 0.020714445039629936, - -0.03492628037929535, - -0.3810606002807617, - -0.07285462319850922, - -0.25312089920043945, - 0.08072521537542343, - 0.17859703302383423, - 0.02869158796966076, - -0.45385029911994934, - -0.052854977548122406, - -0.10228786617517471, - -0.31381210684776306, - 0.20363011956214905, - -0.1839343160390854, - -0.34478700160980225, - 0.34845998883247375, - 0.2600806951522827, - 0.5304790139198303, - -0.48169466853141785, - 0.17187190055847168, - 0.06121542677283287, - -0.1790156066417694, - -0.12077934294939041, - -0.12641283869743347, - -0.4685874283313751, - -0.19879423081874847, - 0.3651999235153198, - 0.3620489835739136, - -0.07656969875097275, - -0.016773587092757225, - 0.1984638273715973, - 0.25676143169403076, - -0.3755060136318207, - -0.06233000382781029, - 0.25915491580963135, - 0.22407189011573792, - 0.3000026345252991, - 0.1267809271812439, - -0.6364288926124573, - -0.2246905416250229, - -0.1367657631635666, - -0.4588977098464966, - 0.09708669036626816, - 0.4115796387195587, - 0.13946032524108887, - -0.15444856882095337, - -0.0019916559103876352, - 0.052998971194028854, - -0.22925853729248047, - 0.39913761615753174, - -0.1431451290845871, - 0.3455853760242462, - 0.07208026200532913, - -0.2115941047668457, - -0.1737886220216751, - -0.2041017860174179, - -0.2656811773777008, - -0.24458765983581543, - 0.2784392535686493, - 0.31715381145477295, - -0.5012989640235901, - -0.06527727097272873, - 0.03430992364883423, - -0.061333153396844864, - -0.07604950666427612, - -0.002813592553138733, - -0.42847201228141785, - 0.36687374114990234, - -0.17704638838768005, - -0.362190842628479, - 0.07445082068443298, - 0.06805776059627533, - 0.010887187905609608, - 0.20469221472740173, - -0.0462353453040123, - 0.45758846402168274, - 0.01733853667974472, - -0.18237261474132538, - 0.6269033551216125, - -0.024406682699918747, - 0.2362523078918457, - 0.44672510027885437, - 0.018733007833361626, - 0.09249767661094666, - -0.36418282985687256, - -0.216614231467247, - 0.19839972257614136, - -0.3216416537761688, - -0.1985752433538437, - 0.20513653755187988, - 0.19407664239406586, - -0.425906777381897, - -0.2907130718231201, - 0.17222712934017181, - 0.17602160573005676, - -0.13269492983818054, - -0.0850786566734314, - -0.2737032473087311, - -0.27297234535217285, - -0.2863575220108032, - -0.03092205338180065, - 0.36809489130973816, - 0.6632392406463623, - 0.13107527792453766, - 0.35327014327049255, - -0.3204362690448761, - -0.2232578694820404, - 0.20471739768981934, - 0.1476530134677887, - 0.1250983625650406, - -0.09704925864934921, - -0.14115136861801147, - 0.44066759943962097, - 0.34541213512420654, - 0.05260004103183746, - 0.2024940848350525, - 0.06710478663444519, - 0.01844465732574463, - 0.24406331777572632, - 0.04498077929019928, - -0.28428733348846436, - -0.0852501392364502, - -0.4182281494140625, - 0.24348658323287964, - -0.27447760105133057, - 0.0449427105486393, - 0.2295486479997635, - -0.06275468319654465, - -0.5555527210235596, - -0.3637843132019043, - 0.1983642429113388, - -0.10650011897087097, - -0.3293856978416443, - 0.2616897225379944, - 0.24779215455055237, - -0.11454148590564728, - -0.4148692786693573, - -0.03152432665228844, - -0.6366443634033203, - -0.49154528975486755, - 0.1543934941291809, - -0.03131168708205223, - -0.23623046278953552, - 0.17196887731552124, - 0.6275867819786072, - 0.6269531846046448, - 0.303356796503067, - -0.1537037342786789, - -0.042672786861658096, - 0.39632874727249146, - 0.19053898751735687, - -0.1982375979423523, - -10.520903587341309, - -0.45543333888053894, - -0.4238056242465973, - 0.4959370493888855, - -0.26033610105514526, - 0.11924351006746292, - 0.2103087306022644, - -0.13614404201507568, - 0.031938258558511734, - 0.02957097813487053, - -0.1468767523765564, - -0.19613513350486755, - 0.1908685564994812, - 0.3430176079273224, - 0.06249995157122612, - 0.10130365192890167, - -0.37138041853904724, - 0.27020832896232605, - 0.06435931473970413, - 0.17015020549297333, - 0.16328643262386322, - 0.38614776730537415, - -0.3137998878955841, - 0.18528784811496735, - -0.057620856910943985, - -0.4933769404888153, - -0.25841954350471497, - 0.7841097116470337, - 0.5228127837181091, - -0.4163779318332672, - 0.05881595239043236, - 0.11414346098899841, - -0.13709606230258942, - 0.13486459851264954, - -0.19170890748500824, - -0.06518664211034775, - -0.034283317625522614, - 0.27914610505104065, - 0.46864527463912964, - -0.2280544638633728, - 0.03463822975754738, - -0.050573743879795074, - 0.4353070557117462, - 0.15129929780960083, - -0.12089471518993378, - -0.5003877282142639, - -0.1233668252825737, - -1.624966025352478, - 0.329545259475708, - 0.2612573802471161, - 0.20151901245117188, - 0.08569856733083725, - 0.12731987237930298, - 0.2936391830444336, - -0.3348862826824188, - -0.043426722288131714, - -0.26265597343444824, - -0.24289633333683014, - -0.01316000521183014, - 0.12560588121414185, - 0.008696120232343674, - -0.09595168381929398, - 0.7172963619232178, - 0.2271573543548584, - -0.24970601499080658, - 0.09322309494018555, - 0.03955945745110512, - -0.2601698338985443, - -0.3453007936477661, - -0.9648702144622803, - -0.5467386245727539, - 0.09752054512500763, - -0.28753143548965454, - -0.16136804223060608, - 0.23258493840694427, - -0.1290704905986786, - -0.14448848366737366, - 0.25413843989372253, - 0.06670472770929337, - 0.2808320224285126, - 0.24495282769203186, - 0.00383972586132586, - 0.19700171053409576, - -0.1484602838754654, - -0.19943566620349884, - -0.046106044203042984, - 0.2977018654346466, - 0.4696962237358093, - 0.06438077241182327, - -0.042949315160512924, - 0.10755424946546555, - 0.5550330281257629, - 0.07803688943386078, - -0.28718340396881104, - -0.44683074951171875, - -0.06381496787071228, - -0.031176209449768066, - 0.12648655474185944, - -0.10428597778081894, - -0.10076022148132324, - -0.1586959958076477, - 0.19724388420581818, - -0.02676946111023426, - -0.573161244392395, - -0.6854441165924072, - 0.2897382974624634, - 0.17305988073349, - 0.20174121856689453, - -0.11601892113685608, - -0.2899537682533264, - -0.38740718364715576, - 0.056517865508794785, - 0.16432657837867737, - 0.5992275476455688, - 0.24109534919261932, - -0.10421078652143478, - 0.05725301429629326, - -0.2598061263561249, - -0.2034962773323059, - -0.13817761838436127, - 0.4938572943210602, - -0.09090340882539749, - 0.12154055386781693, - 0.681384265422821, - -0.10799916088581085, - -0.03918606787919998, - 0.8796634078025818, - -0.41005846858024597, - 0.13608083128929138, - -0.10962557792663574, - 0.207235187292099, - -0.1725875735282898, - -0.5457109808921814, - 0.034471139311790466, - 0.6386486291885376, - -0.4264855682849884, - 1.0231140851974487, - 0.27568984031677246, - -0.3936195373535156, - -0.1718919426202774, - -0.24598270654678345, - 0.585798978805542, - 0.21429309248924255, - 0.1213797777891159, - -0.1344074159860611, - -0.2812458872795105, - -0.3619706332683563, - 0.04954996332526207, - -0.24513192474842072, - -0.41721728444099426, - -0.30665096640586853, - 0.12913966178894043, - 0.3485114872455597, - -0.28898847103118896, - 0.29065725207328796, - 0.24006104469299316, - -0.21690520644187927, - -0.3587509095668793, - -0.31044140458106995, - 0.11637648940086365, - 0.3949897885322571, - 1.014526128768921, - -0.018359819427132607, - -0.038108158856630325, - -0.003685867879539728, - -0.06152348220348358, - -0.3292338252067566, - 0.20332609117031097, - 0.05394000932574272, - -0.16492098569869995, - -0.505751371383667, - 0.3256921172142029, - 0.17891107499599457, - -0.16508711874485016, - -0.019382420927286148, - -0.0703776553273201, - -0.23023515939712524, - 0.17742003500461578, - -0.2121150642633438, - -0.05127786472439766, - 0.4847959578037262, - -0.2184029519557953, - -0.040687303990125656, - -0.14056028425693512, - -0.26539433002471924, - 0.2230241745710373, - 0.5399031043052673, - -0.04145977273583412, - -0.39322957396507263, - -0.26942670345306396, - -0.6696906685829163, - 0.319172739982605, - -0.46518391370773315, - -0.036665178835392, - 0.12934942543506622, - 0.15355736017227173, - -0.20464898645877838, - 0.14402543008327484, - 0.07539442181587219, - -0.007209260482341051, - -0.1798970103263855, - 0.31624922156333923, - 0.5696040987968445, - -0.1820838451385498, - 0.46405795216560364, - -0.11399805545806885, - 0.1447509080171585, - 0.19153818488121033, - -0.09939324855804443, - 0.12201487272977829, - -0.5398766994476318 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_011.json b/src/benchmark/output/results/results_graph_011.json deleted file mode 100644 index a8b1bba..0000000 --- a/src/benchmark/output/results/results_graph_011.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Patient Profile**\n\nThe patient is a [insert age]-year-old individual with a history of [insert relevant medical conditions or symptoms]. The patient's demographic information includes:\n\n* Name: [insert name]\n* Date of Birth: [insert date of birth]\n* Sex: [insert sex]\n\n**Diagnosis Timeline**\n\nThe patient's diagnosis timeline began on [insert date], when they presented to the clinic with [insert initial symptoms or concerns]. Following a series of diagnostic tests, including imaging studies and biopsies, the patient was diagnosed with [insert primary diagnosis].\n\nOver the next several months, the patient underwent various treatments, including:\n\n* First-line systemic therapy: The patient received treatment with [insert medication] from [insert start date] to [insert end date].\n* Maintenance therapy: Following completion of first-line therapy, the patient transitioned to maintenance therapy with pemetrexed from [insert start date] to [insert end date].\n* Second-line treatment: In response to disease progression, the patient received treatment with cabozantinib from [insert start date] to [insert end date], which was discontinued due to adverse effects.\n* Third-line treatment: The patient then transitioned to pembrolizumab, initiating treatment on [insert start date].\n\n**Treatment Timeline**\n\nThe patient's treatment timeline is as follows:\n\n| Treatment | Start Date | End Date |\n| --- | --- | --- |\n| First-line therapy | [insert start date] | [insert end date] |\n| Maintenance therapy | [insert start date] | [insert end date] |\n| Cabozantinib | [insert start date] | [insert end date] (discontinued) |\n| Pembrolizumab | [insert start date] | Ongoing |\n\n**Outcomes**\n\nThe patient's treatment outcomes have been as follows:\n\n* Partial tumor response: The patient experienced a partial tumor response to first-line therapy, which was observed on imaging studies.\n* Disease progression: Following completion of first-line therapy, the patient experienced disease progression, leading to the initiation of second-line treatment.\n* Adverse effects: The patient experienced adverse effects while receiving cabozantinib, leading to discontinuation of treatment.\n* Symptomatic improvement: The patient has experienced significant symptomatic improvement since initiating pembrolizumab, including complete hearing recovery and a substantial reduction in dizziness and headache complaints.\n\n**Current Status**\n\nThe patient is currently undergoing treatment with pembrolizumab, which was initiated on [insert start date]. The patient's current status includes:\n\n* Ongoing treatment with pembrolizumab\n* Continued monitoring for disease progression or adverse effects\n* Regular follow-up appointments to assess treatment outcomes and adjust treatment as needed\n\nOverall, the patient has undergone a complex treatment journey, involving multiple treatments and transitions. Despite challenges, the patient has experienced significant symptomatic improvement and is currently receiving ongoing treatment with pembrolizumab.", - "bertscore": { - "precision": [ - 0.5634559392929077 - ], - "recall": [ - 0.5314140915870667 - ], - "f1": [ - 0.5469661355018616 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 6, - "node_count": 16, - "edge_count": 10, - "avg_in_degree": 0.625, - "density": 0.041666666666666664 - }, - "trajectory_embedding": [ - 0.16245156526565552, - 0.1600143313407898, - -0.07061316072940826, - 0.19158999621868134, - 0.05907982587814331, - 0.1717534214258194, - 0.06727615743875504, - 0.25085461139678955, - 0.6407455801963806, - -0.26162946224212646, - -0.03981025144457817, - -0.11866048723459244, - -0.46796175837516785, - -0.20894984900951385, - -0.15915517508983612, - 0.2649320065975189, - -0.21555562317371368, - 0.3820728063583374, - -0.021528776735067368, - -0.27717623114585876, - -0.39110615849494934, - 0.1743275225162506, - -0.4355752766132355, - -0.0171490628272295, - 0.2160544991493225, - -0.03524874895811081, - 0.3605571985244751, - 0.45980265736579895, - 0.2619229853153229, - 0.4579738974571228, - 0.19228222966194153, - -0.18174847960472107, - 0.20433653891086578, - 0.10540352016687393, - -0.32221299409866333, - 0.13911373913288116, - 0.18993476033210754, - 0.39680156111717224, - -0.2436806559562683, - -0.09531586617231369, - -0.18699277937412262, - 0.09185943752527237, - 0.8638661503791809, - 0.08321192860603333, - 0.416931688785553, - -0.6076541543006897, - -0.006086857058107853, - 0.742171585559845, - -0.40258216857910156, - -0.44886454939842224, - 0.30314552783966064, - 0.6558233499526978, - 0.6408657431602478, - -0.5083865523338318, - 0.37826335430145264, - -0.18690016865730286, - -0.25506943464279175, - -0.3894357681274414, - -0.08891396969556808, - 0.0011250635143369436, - 0.19676822423934937, - -0.3200245797634125, - 0.3724333345890045, - -0.30866220593452454, - -0.17224334180355072, - -0.2494162917137146, - -0.31551557779312134, - 0.22387799620628357, - 0.117152139544487, - -0.26064589619636536, - -0.2537911832332611, - -0.23230360448360443, - -0.14073289930820465, - 0.0779939740896225, - -0.07943879812955856, - -0.11109791696071625, - 0.37159109115600586, - -0.11787549406290054, - 0.264809250831604, - 0.0703866109251976, - -0.033959079533815384, - -0.18957018852233887, - -0.1917015165090561, - 0.32271701097488403, - -0.25020113587379456, - 0.03848632797598839, - -0.1203107014298439, - -0.27800795435905457, - -0.4308099150657654, - 0.11843013018369675, - 0.12286663800477982, - -0.3775346875190735, - 0.11357871443033218, - -0.14681434631347656, - -0.08807821571826935, - 0.24711011350154877, - 0.5010116100311279, - 0.16630350053310394, - 0.8785226345062256, - 0.09974634647369385, - 0.04344193637371063, - -0.12789025902748108, - 0.19089391827583313, - 0.01997448317706585, - 0.428890585899353, - -0.19787494838237762, - 0.1801803857088089, - -0.5435901284217834, - 0.2729465365409851, - 0.4214964807033539, - 0.20293940603733063, - -0.3062528371810913, - 0.01664607785642147, - -0.23817436397075653, - 0.33383116126060486, - 0.2094971090555191, - 0.009084811434149742, - 0.3734797537326813, - 0.31777793169021606, - -0.48594850301742554, - -0.2855514585971832, - -0.1359705775976181, - 0.1983971893787384, - 0.23080818355083466, - -0.5031739473342896, - -0.11189668625593185, - -0.0542006753385067, - -0.04810883849859238, - 0.05927913263440132, - 0.0006070862291380763, - -0.5785590410232544, - -0.278917521238327, - -0.030001698061823845, - -0.037566859275102615, - -0.09188113361597061, - 0.33172470331192017, - -0.31583699584007263, - 0.07175884395837784, - -0.9909507036209106, - 0.119020476937294, - -0.36410704255104065, - -0.022763557732105255, - 0.11758037656545639, - -0.6215351223945618, - -0.26971104741096497, - -0.09321658313274384, - -0.1374003142118454, - 0.1704597771167755, - -0.20298784971237183, - 0.0763852596282959, - 0.1373308300971985, - -0.025474432855844498, - 0.30031707882881165, - 0.67862468957901, - 0.0007495105382986367, - -0.07678147405385971, - -0.03204861655831337, - 0.24855299293994904, - 0.0846346914768219, - -0.196183443069458, - 0.11495129019021988, - 0.5373055934906006, - 0.09238936007022858, - 0.06041057035326958, - -0.14419163763523102, - -0.5951148867607117, - -0.0798611268401146, - -0.25916871428489685, - 0.02695642225444317, - -0.061491210013628006, - -0.25564637780189514, - 0.012750999070703983, - -0.27353230118751526, - 0.7026057839393616, - -0.09857435524463654, - 0.32529523968696594, - -0.026297466829419136, - 0.15630412101745605, - 0.20306937396526337, - 0.08634381741285324, - 0.15534323453903198, - -0.2713169753551483, - 0.5717553496360779, - 0.13538406789302826, - -0.24871189892292023, - 0.17096397280693054, - 0.20481301844120026, - 0.14885635673999786, - -0.25734448432922363, - 0.024741964414715767, - 0.5564239621162415, - -0.283203125, - 0.6690607070922852, - -0.18619005382061005, - -0.01426878571510315, - 0.17602774500846863, - -0.14749585092067719, - -0.047437671571969986, - -0.2419000118970871, - -0.025392884388566017, - 0.309783935546875, - 0.0033604963682591915, - -0.477562814950943, - 0.02867126651108265, - 0.20586368441581726, - -0.10453956574201584, - 0.21134954690933228, - -0.07513932883739471, - 0.07223227620124817, - 0.034810442477464676, - -0.058812327682971954, - 0.22262254357337952, - -0.14241869747638702, - 0.3165176808834076, - 0.07775286585092545, - -0.4665459990501404, - 0.10352783650159836, - 0.11230264604091644, - -0.12250849604606628, - 0.12984977662563324, - -0.017463160678744316, - -0.2787351906299591, - -0.33644288778305054, - 0.10812408477067947, - -0.5682505369186401, - 0.3071981966495514, - 0.14078184962272644, - 0.21117588877677917, - 0.2862820327281952, - 0.06327229738235474, - -0.10339625924825668, - -0.3226338028907776, - 0.31105417013168335, - -0.1716984659433365, - -0.1241089329123497, - -0.3806838393211365, - 0.28730952739715576, - 0.010507351718842983, - 0.16846901178359985, - 0.35049453377723694, - -0.041265711188316345, - -0.20084095001220703, - 0.1492597609758377, - -0.28664031624794006, - -0.1353910118341446, - -0.41120415925979614, - -0.11244585365056992, - 0.3438543975353241, - 0.14637498557567596, - 0.23196211457252502, - -0.010446413420140743, - -0.06335321813821793, - 0.180773064494133, - -0.09338242560625076, - -0.48535019159317017, - -0.40611279010772705, - -0.18672305345535278, - -0.21179045736789703, - -0.6999671459197998, - 0.217674121260643, - 0.01753554865717888, - -0.03029773011803627, - 0.1277058869600296, - -0.2320680171251297, - -0.14082303643226624, - 0.04180663824081421, - 0.06477045267820358, - 0.11478924006223679, - -0.3187384307384491, - 0.05777837336063385, - -0.3452073335647583, - -0.2922958433628082, - -0.30748075246810913, - -0.01562795601785183, - 0.09567911922931671, - 0.060069140046834946, - -0.41079023480415344, - 0.04098355397582054, - 0.059345487505197525, - -0.31660306453704834, - -0.10614398121833801, - 0.2051360309123993, - -0.057914044708013535, - 0.10038500279188156, - -0.0613558292388916, - 0.2245662957429886, - 0.31220918893814087, - 0.09747075289487839, - 0.07767906785011292, - 0.3386450707912445, - 0.3851276636123657, - -0.08256098628044128, - -0.010707486420869827, - -0.05073433369398117, - -0.10731181502342224, - 0.01561440248042345, - -0.48184412717819214, - 0.42408692836761475, - -0.055638089776039124, - 0.10660780966281891, - 0.046430934220552444, - 0.24357345700263977, - 0.16865070164203644, - -0.05438386648893356, - 0.10387720912694931, - 0.47241976857185364, - 0.11271689832210541, - 0.21221022307872772, - 0.2705940902233124, - 0.16588911414146423, - 0.40247979760169983, - -0.18358273804187775, - 0.016978692263364792, - 0.20307636260986328, - -0.18915507197380066, - -0.241989865899086, - 0.07001299411058426, - 0.23857074975967407, - 0.589773416519165, - -0.01950402371585369, - -0.20245146751403809, - 0.054474472999572754, - -0.1335858851671219, - -0.09583098441362381, - -0.4321800768375397, - -0.2415412813425064, - 0.0770038291811943, - -0.14758621156215668, - 0.4208151698112488, - 0.2720576524734497, - 0.002531715203076601, - 0.3300319015979767, - -0.4187275469303131, - -0.10987110435962677, - 0.225368469953537, - -0.1325102150440216, - -0.39815929532051086, - 0.384732186794281, - -0.153453066945076, - 0.02423241175711155, - 0.27913838624954224, - -0.35957300662994385, - 0.0007714996463619173, - 0.138849675655365, - 0.4005502462387085, - -0.04827239364385605, - 0.0885753408074379, - -0.09135408699512482, - 0.19406361877918243, - -0.0006583700305782259, - 0.44764232635498047, - 0.06908275187015533, - 0.23763103783130646, - 0.5976005792617798, - 0.25941526889801025, - -0.4335401952266693, - 0.09858392179012299, - -0.16187770664691925, - 0.3733406662940979, - -0.13031376898288727, - -0.1488236039876938, - -0.11551103740930557, - 0.07429931312799454, - 0.04963960126042366, - -0.351158082485199, - 0.2407115399837494, - 0.16445809602737427, - 0.010365576483309269, - 0.0025012993719428778, - 0.38234883546829224, - 0.10678961873054504, - -0.16650933027267456, - 0.5129143595695496, - 0.023392103612422943, - -0.19645501673221588, - 0.41039225459098816, - -0.1551801711320877, - 0.10881633311510086, - 0.034511227160692215, - -0.13134299218654633, - -0.3230586051940918, - 0.052246276289224625, - -0.22134727239608765, - -0.21316103637218475, - 0.037701986730098724, - -0.34579575061798096, - 0.20042334496974945, - -0.20393651723861694, - 0.0869881883263588, - -0.0023645658511668444, - 0.1485261172056198, - 0.04056515544652939, - 0.3398059010505676, - 0.07087814807891846, - -0.12700890004634857, - 0.23298421502113342, - 0.08273950964212418, - -0.11697864532470703, - -0.3195975124835968, - -0.01608797162771225, - -0.14133517444133759, - 0.7711898684501648, - 0.19085493683815002, - 0.03091355413198471, - 0.20081333816051483, - -0.010870455764234066, - -0.18354524672031403, - -0.3269854187965393, - -0.02242014743387699, - -0.17676566541194916, - 0.047413069754838943, - 0.1330634504556656, - 0.08071282505989075, - -0.37875160574913025, - -0.15482810139656067, - -0.2328101545572281, - -0.0671430304646492, - 0.048319678753614426, - -0.09171833097934723, - -0.2341337502002716, - 0.3371189534664154, - 0.15241378545761108, - 0.4341224133968353, - -0.3700358271598816, - 0.24980831146240234, - 0.06248313933610916, - -0.40659916400909424, - -0.05996696278452873, - -0.11607363075017929, - -0.37493187189102173, - -0.12307775020599365, - 0.3208409547805786, - 0.3430353105068207, - -0.11905394494533539, - 0.08755329251289368, - 0.13721242547035217, - 0.13097620010375977, - -0.2746444046497345, - -0.06178935989737511, - 0.18429657816886902, - 0.20303602516651154, - 0.3103589117527008, - 0.21349811553955078, - -0.49614647030830383, - -0.274776428937912, - -0.12761662900447845, - -0.3798926770687103, - 0.02725476771593094, - 0.2739526629447937, - -0.016357962042093277, - -0.1415828913450241, - 0.08315490931272507, - 0.07899128645658493, - -0.16900239884853363, - 0.20980869233608246, - -0.13898847997188568, - 0.2676476836204529, - 0.07797494530677795, - -0.2538994550704956, - -0.15634888410568237, - -0.18480996787548065, - -0.3092120289802551, - -0.1522260159254074, - 0.08071649074554443, - 0.19048675894737244, - -0.32392701506614685, - -0.02081672102212906, - 0.048389602452516556, - -0.14120277762413025, - -0.18376563489437103, - -0.0017155189998447895, - -0.43115779757499695, - 0.3209339380264282, - -0.31359052658081055, - -0.21016925573349, - 0.03895113989710808, - -0.10737566649913788, - -0.07650454342365265, - 0.2830735146999359, - 0.07670741528272629, - 0.36396488547325134, - 0.04495328292250633, - -0.0018465628381818533, - 0.5355179309844971, - 0.08951808512210846, - 0.12100305408239365, - 0.4186916947364807, - 0.06465388089418411, - -0.005260893609374762, - -0.3078297972679138, - -0.13931836187839508, - 0.027160078287124634, - -0.4757441282272339, - -0.16003713011741638, - 0.16252021491527557, - 0.3289731740951538, - -0.3332098424434662, - -0.1891380399465561, - 0.1529703140258789, - 0.019018415361642838, - -0.14274261891841888, - -0.08100107312202454, - -0.2719969153404236, - -0.11481327563524246, - -0.23644065856933594, - -0.016506819054484367, - 0.16306978464126587, - 0.43404659628868103, - 0.2508237957954407, - 0.25189876556396484, - -0.2417704164981842, - -0.1930759847164154, - 0.3287059962749481, - 0.1651315689086914, - -0.07181573659181595, - -0.10282671451568604, - -0.0792161300778389, - 0.3777916133403778, - 0.31520289182662964, - -0.019154995679855347, - 0.21673813462257385, - 0.014757184311747551, - 0.0993335023522377, - 0.3360329568386078, - 0.16681329905986786, - -0.12398365885019302, - 0.05139445513486862, - -0.41673511266708374, - 0.14279310405254364, - -0.30060112476348877, - 0.012536918744444847, - 0.24960018694400787, - -0.22632098197937012, - -0.5404300093650818, - -0.19504639506340027, - 0.3774123787879944, - -0.10665451735258102, - -0.14708974957466125, - 0.26938241720199585, - 0.3281824290752411, - 0.012587044388055801, - -0.2604916989803314, - 0.04198538884520531, - -0.47093626856803894, - -0.20694318413734436, - 0.07113853842020035, - -0.14388355612754822, - -0.18418000638484955, - 0.08070231974124908, - 0.5169589519500732, - 0.4943906366825104, - 0.27048537135124207, - -0.02232401631772518, - 0.18135175108909607, - 0.4792899787425995, - 0.22551099956035614, - -0.3417358100414276, - -10.612969398498535, - -0.23583458364009857, - -0.3083089292049408, - 0.4867674708366394, - -0.2295663058757782, - 0.14240138232707977, - -0.031202634796500206, - -0.08864539116621017, - 0.03624901548027992, - 0.016107553616166115, - -0.1606530249118805, - -0.1502046138048172, - 0.15010227262973785, - 0.30066171288490295, - 0.02771230973303318, - 0.1821480542421341, - -0.2997840940952301, - 0.3419417440891266, - 0.006251112092286348, - 0.17480513453483582, - 0.21505513787269592, - 0.331558495759964, - -0.4022463262081146, - 0.019186489284038544, - -0.12365611642599106, - -0.5105155110359192, - -0.2717512249946594, - 0.7244556546211243, - 0.2511548399925232, - -0.27882707118988037, - 0.051846060901880264, - -0.007568527944386005, - -0.15154413878917694, - 0.13126392662525177, - -0.2907302975654602, - -0.07211855053901672, - 0.011965657584369183, - 0.18208487331867218, - 0.37152326107025146, - -0.16603466868400574, - -0.09436435252428055, - -0.04516251012682915, - 0.4002867639064789, - 0.030036546289920807, - -0.20653727650642395, - -0.7610589265823364, - -0.06475897878408432, - -1.60093355178833, - 0.30361273884773254, - 0.31187334656715393, - 0.26000887155532837, - 0.043115656822919846, - -0.001017667818814516, - 0.3027673661708832, - -0.42958736419677734, - -0.0931563526391983, - -0.3676496148109436, - -0.12975189089775085, - 0.13273227214813232, - 0.21343253552913666, - 0.06282711029052734, - -0.09698394685983658, - 0.599332869052887, - -0.05345505475997925, - -0.278120219707489, - 0.051881931722164154, - 0.13636283576488495, - -0.12086709588766098, - -0.30884993076324463, - -0.8131843209266663, - -0.570020318031311, - 0.06906065344810486, - -0.2309681624174118, - 0.01350134052336216, - 0.3473992645740509, - -0.013177391141653061, - -0.12457465380430222, - 0.2357025444507599, - 0.032397136092185974, - 0.31870728731155396, - 0.1343131959438324, - -0.10926651209592819, - 0.078617624938488, - -0.170307457447052, - -0.17320023477077484, - -0.04526785761117935, - 0.22200177609920502, - 0.38666069507598877, - -0.02993401326239109, - -0.04467448219656944, - 0.05063362792134285, - 0.3480444550514221, - 0.061648063361644745, - -0.12721116840839386, - -0.38754549622535706, - -0.08483155071735382, - -0.11407165974378586, - 0.06103251874446869, - -0.11673273891210556, - -0.07863239198923111, - -0.18443593382835388, - 0.256980836391449, - -0.03315865993499756, - -0.5444391369819641, - -0.4686245024204254, - 0.32892554998397827, - 0.1829226315021515, - 0.18527507781982422, - -0.026170967146754265, - -0.0825628787279129, - -0.24655309319496155, - 0.11517484486103058, - 0.14945384860038757, - 0.39595937728881836, - 0.3182738423347473, - 0.11714871972799301, - 0.04442942887544632, - -0.378705769777298, - -0.05602655187249184, - -0.024040378630161285, - 0.3787958323955536, - -0.1422569453716278, - 0.2779502868652344, - 0.6218904256820679, - 0.07571735978126526, - 0.024187447503209114, - 0.8384838104248047, - -0.2752505838871002, - 0.3071387708187103, - -0.011463401839137077, - 0.13295239210128784, - -0.08327719569206238, - -0.3586958050727844, - -0.032209012657403946, - 0.3978140950202942, - -0.2785652279853821, - 0.709858775138855, - 0.3140382766723633, - -0.4077271521091461, - -0.11811770498752594, - -0.31901615858078003, - 0.5046700239181519, - 0.2688835561275482, - 0.2533348798751831, - -0.1543290913105011, - -0.28520897030830383, - -0.28006991744041443, - 0.20231947302818298, - -0.2105804830789566, - -0.3378787338733673, - -0.06397655606269836, - 0.16288582980632782, - 0.1850431114435196, - -0.22425603866577148, - 0.3228513300418854, - 0.16201657056808472, - -0.1018156185746193, - -0.3589440882205963, - -0.31506431102752686, - 0.0256855096668005, - 0.0537852980196476, - 0.8486726880073547, - -0.01510709710419178, - -0.09814850240945816, - 0.16427114605903625, - 0.07269837707281113, - -0.3097020387649536, - 0.09929049760103226, - 0.17957067489624023, - -0.10508234798908234, - -0.4071674048900604, - 0.19892005622386932, - 0.14888890087604523, - -0.39404556155204773, - -0.0024191022384911776, - -0.027029216289520264, - -0.052089039236307144, - 0.32305586338043213, - -0.31200653314590454, - 0.034821320325136185, - 0.3923436105251312, - -0.1271146684885025, - 0.09398619085550308, - -0.20401090383529663, - -0.2753010094165802, - 0.17496135830879211, - 0.35346296429634094, - 0.08663932979106903, - -0.30915939807891846, - -0.2591710388660431, - -0.5727899670600891, - 0.33444511890411377, - -0.4370860159397125, - -0.0007108812569640577, - 0.18735988438129425, - 0.14898787438869476, - -0.010595777072012424, - 0.14697815477848053, - 0.02961094118654728, - -0.010038983076810837, - -0.1301976442337036, - 0.26193931698799133, - 0.40523019433021545, - -0.25720494985580444, - 0.43329671025276184, - -0.05697001516819, - 0.08231837302446365, - 0.09476158767938614, - -0.23526009917259216, - 0.058678608387708664, - -0.3299776613712311 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_012.json b/src/benchmark/output/results/results_graph_012.json deleted file mode 100644 index f401ed8..0000000 --- a/src/benchmark/output/results/results_graph_012.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 79-year-old male with a height of 174 cm, weight of 65 kg, and BMI of 21.5 kg/m\u00b2. He has a significant smoking history, having consumed two packs per day for 55 years, which is reflected in his Brinkman Index score of 1100. Additionally, he has a history of total thyroidectomy five years prior due to papillary thyroid carcinoma (PTC).\n\n**Timeline of Diagnoses:**\n\n1. **Six years ago:** The patient was found to have left cervical lymphadenopathy of unknown origin, suspected to be cervical lymph node metastasis of PTC.\n2. **Five years ago:** The patient underwent total thyroidectomy and left cervical lymph node dissection, with histopathology revealing multiple papillary thyroid microcarcinomas (pT1a [m], pEx0, pN1b 4/10, pStage IVA) with negative surgical margins.\n3. **Two years prior to current encounter:** A nodule in the right upper lobe of the lung was identified and monitored with chest CT scans. Increase in nodule density observed compared to two years prior, prompting a transbronchial biopsy; however, no definitive diagnosis was made.\n\n**Timeline of Treatments:**\n\n1. **Five years ago:** The patient underwent total thyroidectomy and left cervical lymph node dissection.\n2. **Current encounter:** The patient was treated with radioiodine therapy (Iodine-131).\n\n**Timeline of Outcomes:**\n\n1. **Six years ago:** Left cervical lymphadenopathy of unknown origin, suspected to be cervical lymph node metastasis of PTC.\n2. **Five years ago:** Multiple papillary thyroid microcarcinomas (pT1a [m], pEx0, pN1b 4/10, pStage IVA) with negative surgical margins.\n3. **Current encounter:** Serum thyroglobulin levels showed a gradual increase over time, indicating progression of disease.\n\n**Clinical Findings:**\n\n* The patient's serum thyroglobulin levels have shown a gradual increase over time, indicating progression of disease.\n* Chest X-rays and CT scans revealed an irregular nodule measuring 15\u00d714 mm in the S1 segment of the right upper lobe.\n* Pulmonary function and electrocardiogram tests showed no abnormalities.\n\n**Surgical Plan:**\nA surgical plan was made to perform intraoperative rapid diagnosis, followed by right upper lobectomy.", - "bertscore": { - "precision": [ - 0.7508742809295654 - ], - "recall": [ - 0.7241371870040894 - ], - "f1": [ - 0.7372633814811707 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 7, - "edge_count": 6, - "avg_in_degree": 0.8571428571428571, - "density": 0.14285714285714285 - }, - "trajectory_embedding": [ - 0.34912702441215515, - -0.02949952892959118, - -0.1141456887125969, - 0.04978491738438606, - 0.08703146129846573, - 0.0669483095407486, - 0.02256781794130802, - 0.284852534532547, - 0.38056764006614685, - -0.44284701347351074, - -0.2560020983219147, - -0.03550972789525986, - -0.5788337588310242, - -0.1445084661245346, - -0.24920526146888733, - 0.2240239828824997, - 0.07581473886966705, - 0.2688005268573761, - 0.006481123622506857, - -0.20998379588127136, - -0.4488418996334076, - 0.18358050286769867, - -0.5051833391189575, - -0.13090825080871582, - 0.21088945865631104, - -0.1182168573141098, - 0.3503682017326355, - 0.4108595848083496, - 0.14657174050807953, - 0.3305985927581787, - -0.047380659729242325, - -0.028875555843114853, - -0.03075440041720867, - 0.04564068838953972, - -0.17507144808769226, - 0.21696984767913818, - 0.24659356474876404, - 0.21421027183532715, - -0.19461318850517273, - 0.11628194898366928, - -0.08906944841146469, - 0.0660843774676323, - 1.0212129354476929, - 0.3617345988750458, - 0.45793724060058594, - -0.8245080709457397, - 0.1244044229388237, - 0.5986994504928589, - -0.530306339263916, - -0.2822190821170807, - 0.05630314350128174, - 0.7602814435958862, - 0.6037783622741699, - -0.2708291709423065, - 0.5852006673812866, - -0.08884161710739136, - -0.2647480070590973, - -0.31245046854019165, - -0.23111963272094727, - 0.06027394160628319, - 0.043433062732219696, - -0.2634923756122589, - 0.32280173897743225, - -0.03592408448457718, - -0.1862800419330597, - -0.13577650487422943, - -0.15646091103553772, - 0.18510083854198456, - -0.012599676847457886, - -0.5517652630805969, - -0.33734774589538574, - -0.2450791597366333, - 0.01607285812497139, - 0.1967383176088333, - 0.19955874979496002, - -0.21433880925178528, - 0.3879709541797638, - -0.1173420175909996, - 0.09098713099956512, - 0.0624917633831501, - 0.021920502185821533, - -0.0988655537366867, - 0.022524211555719376, - 0.30643004179000854, - -0.47196075320243835, - 0.13867785036563873, - -0.05094168707728386, - -0.04814055189490318, - -0.27602967619895935, - 0.2499721348285675, - 0.1930617243051529, - -0.3913283050060272, - 0.10579882562160492, - -0.16372521221637726, - 0.14036870002746582, - 0.16836513578891754, - 0.4297027587890625, - 0.2321961373090744, - 1.0303356647491455, - 0.08436057716608047, - 0.15721552073955536, - 0.09022055566310883, - 0.27458569407463074, - -0.08807633072137833, - 0.4154239296913147, - -0.003092352766543627, - -0.03148782253265381, - -0.591769814491272, - -0.0019117210758849978, - 0.3443872630596161, - -0.08693529665470123, - -0.1702326387166977, - -0.14862915873527527, - -0.2792896032333374, - 0.10609530657529831, - 0.12266699224710464, - -0.0519021674990654, - 0.08607795089483261, - 0.2386460304260254, - -0.37170061469078064, - -0.23081375658512115, - -0.059534721076488495, - 0.4224798381328583, - 0.2547086775302887, - -0.4898169934749603, - -0.04685995727777481, - -0.19544875621795654, - 0.0259504783898592, - 0.0306636281311512, - 0.05665105581283569, - -0.5848091840744019, - -0.2513822019100189, - -0.09858478605747223, - 0.15667612850666046, - -0.10562200099229813, - 0.3138039708137512, - -0.48902803659439087, - 0.049352653324604034, - -1.0541898012161255, - 0.22616569697856903, - -0.44049856066703796, - -0.04880871996283531, - 0.0015412718057632446, - -0.48380210995674133, - -0.2588922083377838, - -0.24927107989788055, - -0.019146597012877464, - 0.11328625679016113, - -0.15966352820396423, - -0.08167292177677155, - -0.0450931079685688, - 0.03404774144291878, - 0.2052077054977417, - 0.3952527642250061, - 0.18712380528450012, - 0.07587383687496185, - 0.057035837322473526, - 0.17694725096225739, - 0.24866966903209686, - -0.04592056944966316, - -0.011520660482347012, - 0.3257269263267517, - 0.22446787357330322, - -0.06067768111824989, - -0.08734660595655441, - -0.698763906955719, - 0.12298839539289474, - -0.19496574997901917, - 0.32353490591049194, - 0.04254220053553581, - -0.03399810940027237, - 0.18894624710083008, - -0.2430749386548996, - 0.5954481363296509, - 0.2610640227794647, - 0.27750423550605774, - 0.2081575095653534, - -0.1408429890871048, - 0.23352769017219543, - 0.14471249282360077, - 0.13488861918449402, - -0.06867638230323792, - 0.6120306849479675, - 0.20315130054950714, - -0.2978260815143585, - 0.39537835121154785, - 0.28284427523612976, - -0.08538173139095306, - -0.13239069283008575, - -0.031643398106098175, - 0.5852556228637695, - -0.3002280592918396, - 0.5396333336830139, - -0.2753986418247223, - -0.00623607961460948, - 0.2320530265569687, - -0.13932274281978607, - -0.1922721564769745, - -0.038019031286239624, - -0.16758358478546143, - 0.15114101767539978, - -0.004590235184878111, - -0.3172590732574463, - 0.16954341530799866, - 0.2641846239566803, - -0.01461394876241684, - 0.22353710234165192, - 0.13508953154087067, - 0.05145808309316635, - 0.023270342499017715, - -0.15243622660636902, - 0.252886563539505, - -0.02915545366704464, - 0.24480369687080383, - 0.08687268942594528, - -0.39741426706314087, - 0.2764303982257843, - -0.1786734163761139, - -0.16349993646144867, - 0.38238978385925293, - -0.20401506125926971, - -0.13379734754562378, - 0.10524261742830276, - -0.11972670257091522, - -0.4784856140613556, - 0.2753630578517914, - 0.19757647812366486, - 0.24940665066242218, - 0.15966102480888367, - -0.053645409643650055, - -0.09984846413135529, - -0.37046170234680176, - 0.22912488877773285, - -0.16166189312934875, - -0.051615502685308456, - -0.32292619347572327, - 0.2529051601886749, - -0.1811572015285492, - 0.07145268470048904, - 0.38077035546302795, - -0.13668085634708405, - -0.22789020836353302, - 0.09857458621263504, - -0.3458169102668762, - -0.14620234072208405, - -0.3458803594112396, - 0.06859606504440308, - 0.22523094713687897, - 0.07779598236083984, - 0.33442798256874084, - 0.07891600579023361, - -0.16664385795593262, - 0.24716536700725555, - -0.16279128193855286, - -0.3939233422279358, - -0.37541550397872925, - -0.0756673589348793, - -0.04616222903132439, - -0.517883837223053, - 0.2069285809993744, - -0.0534944012761116, - -0.14819787442684174, - 0.1001494750380516, - -0.27998989820480347, - 0.002067770343273878, - 0.003959515132009983, - -0.04693029448390007, - 0.02733398787677288, - -0.17418095469474792, - 0.08961211144924164, - -0.26426148414611816, - -0.22724488377571106, - -0.22503675520420074, - 0.09272491931915283, - 0.2799288034439087, - 0.04561690613627434, - -0.28532204031944275, - 0.07959657907485962, - 0.18369926512241364, - -0.40514087677001953, - -0.3344474732875824, - 0.21275243163108826, - -0.29538407921791077, - 0.21573348343372345, - -0.06991275399923325, - 0.14933562278747559, - 0.30430111289024353, - -0.03246872499585152, - 0.11188304424285889, - 0.46682146191596985, - 0.5570749640464783, - 0.0537145733833313, - -0.0025517046451568604, - -0.04218192771077156, - -0.13471266627311707, - 0.0504104420542717, - -0.372021347284317, - 0.3152562081813812, - -0.023027360439300537, - 0.03293919190764427, - 0.15068911015987396, - 0.27848631143569946, - 0.014423404820263386, - -0.2786399722099304, - 0.02508571371436119, - 0.4770130217075348, - 0.14342975616455078, - 0.1388871669769287, - 0.25094056129455566, - 0.2749658524990082, - 0.522006094455719, - -0.030868591740727425, - -0.17360495030879974, - 0.1257772147655487, - -0.07723430544137955, - -0.2924761474132538, - -0.06445921212434769, - 0.09230276197195053, - 0.3389088213443756, - -0.0624522902071476, - -0.2924641966819763, - 0.03977290168404579, - -0.2626831531524658, - 0.033505089581012726, - -0.22059787809848785, - -0.012052314355969429, - 0.1259598582983017, - -0.18582427501678467, - 0.15497036278247833, - -0.009828724898397923, - 0.028030280023813248, - 0.33083996176719666, - -0.4208439886569977, - -0.10353244096040726, - 0.2841397821903229, - -0.08381066471338272, - -0.43060949444770813, - 0.3268898129463196, - -0.05870749428868294, - -0.026811877265572548, - 0.2847345471382141, - -0.3469688296318054, - -0.12066631764173508, - -0.016388650983572006, - 0.20288090407848358, - 0.0478665828704834, - -0.032469116151332855, - -0.11974936723709106, - -0.08826424926519394, - 0.15027663111686707, - 0.6676344275474548, - 0.139017254114151, - 0.154179647564888, - 0.572816789150238, - 0.06794752925634384, - -0.30073657631874084, - 0.00436066510155797, - 0.060047250241041183, - 0.31398770213127136, - -0.20698562264442444, - -0.16434547305107117, - -0.13860981166362762, - 0.0535019114613533, - 0.1551714986562729, - -0.23046518862247467, - 0.024460557848215103, - 0.16666863858699799, - 0.026447126641869545, - -0.02990804612636566, - 0.3802620470523834, - 0.11486423015594482, - -0.052223436534404755, - 0.5798689723014832, - -0.009377921931445599, - -0.1098940521478653, - 0.4223315119743347, - -0.23030082881450653, - 0.22301717102527618, - -0.10496322065591812, - -0.20494519174098969, - -0.5225878357887268, - 0.07972753047943115, - -0.3454532325267792, - -0.13595876097679138, - 0.010636774823069572, - 0.05786373093724251, - 0.17766988277435303, - -0.07888446003198624, - 0.16611576080322266, - 0.01453852653503418, - 0.18580545485019684, - 0.15223738551139832, - 0.3952200710773468, - 0.1183270588517189, - -0.21230557560920715, - 0.163146510720253, - 0.0805780366063118, - -0.011008723638951778, - -0.21883271634578705, - 0.05529912933707237, - -0.18993350863456726, - 0.48405179381370544, - 0.07167265564203262, - 0.10945974290370941, - 0.010476736351847649, - 0.039730753749608994, - -0.21236597001552582, - -0.42956897616386414, - -0.15992143750190735, - -0.08552392572164536, - -0.010301679372787476, - -0.04030225798487663, - 0.03176066651940346, - -0.37172502279281616, - -0.2008632868528366, - 0.008598200045526028, - 0.08835069090127945, - 0.20418262481689453, - -0.14018075168132782, - 0.04195110872387886, - 0.26043573021888733, - 0.12413877248764038, - 0.3675624430179596, - -0.3737724721431732, - 0.262431800365448, - 0.10910743474960327, - -0.2242717742919922, - -0.18791277706623077, - -0.12986454367637634, - -0.3620084822177887, - -0.12181329727172852, - 0.17927227914333344, - 0.40192297101020813, - 0.07194090634584427, - -0.04478076100349426, - 0.0951777920126915, - 0.22410431504249573, - -0.38217562437057495, - 0.023130280897021294, - 0.48125967383384705, - 0.10917042195796967, - 0.4884260296821594, - -0.03412669152021408, - -0.3717055320739746, - -0.19735373556613922, - 0.022388577461242676, - -0.46646079421043396, - 0.12390688806772232, - 0.37782129645347595, - -0.0387258306145668, - -0.02858060598373413, - -0.043513063341379166, - -0.0409785695374012, - -0.17857865989208221, - 0.2816339135169983, - -0.11379048973321915, - 0.1792859584093094, - -0.033952098339796066, - -0.3150966465473175, - 0.0072593530640006065, - -0.21882738173007965, - -0.4675885736942291, - -0.40899866819381714, - 0.27792543172836304, - 0.39745381474494934, - -0.24378658831119537, - 0.12360461801290512, - 0.09182281047105789, - -0.16513462364673615, - -0.21797500550746918, - 0.055653300136327744, - -0.24980108439922333, - 0.39607319235801697, - -0.19262538850307465, - -0.06227564066648483, - 0.11013676971197128, - -0.22036990523338318, - 0.1597326099872589, - 0.27755796909332275, - 0.10789460688829422, - 0.3922363221645355, - 0.16625027358531952, - 0.09647568315267563, - 0.5032820701599121, - 0.1534314900636673, - 0.08936967700719833, - 0.32384201884269714, - 0.031165635213255882, - 0.08457168191671371, - -0.18306802213191986, - -0.13306626677513123, - 0.3010052740573883, - -0.17369475960731506, - 0.02220235764980316, - 0.13540339469909668, - 0.21562834084033966, - -0.32154130935668945, - -0.38056617975234985, - 0.008013888262212276, - -0.06401778012514114, - -0.061384838074445724, - -0.16478140652179718, - -0.23393867909908295, - -0.0012538220034912229, - -0.3803446888923645, - -0.1289863884449005, - 0.324005126953125, - 0.3680182099342346, - 0.20178399980068207, - 0.17466284334659576, - -0.28998902440071106, - -0.24926969408988953, - 0.1451042741537094, - 0.3355887830257416, - 0.10344559699296951, - -0.0348132885992527, - -0.1671663224697113, - 0.36884886026382446, - 0.4820818305015564, - -0.05353472754359245, - 0.07481981813907623, - -0.10058970749378204, - -0.01891663298010826, - 0.020158635452389717, - 0.10136805474758148, - -0.2110435515642166, - -0.019238905981183052, - -0.43389803171157837, - 0.06986375898122787, - -0.26008644700050354, - -0.07571829110383987, - 0.2860575020313263, - -0.19814011454582214, - -0.45445480942726135, - -0.18006505072116852, - 0.29624074697494507, - -0.12175989896059036, - -0.10139206796884537, - 0.2061890810728073, - 0.2551634609699249, - 0.006098269484937191, - -0.24872300028800964, - -0.008317285217344761, - -0.5766156315803528, - -0.2174808233976364, - 0.04830077663064003, - -0.09829165041446686, - -0.05213158577680588, - 0.07611196488142014, - 0.3801928162574768, - 0.6902078986167908, - 0.3016752600669861, - -0.34682029485702515, - 0.00012837137910537422, - 0.3416616916656494, - 0.37189239263534546, - -0.3323756158351898, - -10.57846736907959, - -0.10384257882833481, - -0.29994210600852966, - 0.6008599996566772, - -0.1929602324962616, - 0.0525691919028759, - 0.1420503705739975, - -0.09228786081075668, - 0.06321951001882553, - 0.021961748600006104, - -0.2175065129995346, - 0.09034532308578491, - 0.2904525101184845, - 0.3302747309207916, - -0.054273128509521484, - -0.03558045253157616, - -0.37554749846458435, - 0.20507708191871643, - -0.16768446564674377, - 0.20007142424583435, - 0.07630275189876556, - 0.37696173787117004, - -0.16058634221553802, - 0.21219630539417267, - 0.00133796245791018, - -0.4706459045410156, - -0.261104017496109, - 0.524927020072937, - 0.2364773452281952, - -0.45299774408340454, - 0.3804377615451813, - 0.19451120495796204, - -0.19988247752189636, - 0.18239320814609528, - 0.004885929170995951, - -0.13724645972251892, - -0.10083391517400742, - 0.21629180014133453, - 0.2583012580871582, - -3.820232086582109e-05, - 0.15783634781837463, - -0.24397031962871552, - 0.21927669644355774, - 0.1769656240940094, - -0.20944233238697052, - -0.3838804066181183, - -0.2564419209957123, - -1.6516151428222656, - 0.2230798751115799, - 0.20410595834255219, - 0.35605907440185547, - 0.02410106174647808, - 0.12986193597316742, - 0.2378428876399994, - -0.24728284776210785, - 0.11483412235975266, - -0.2773919105529785, - -0.060972291976213455, - 0.06309967488050461, - 0.08956406265497208, - 0.17815935611724854, - -0.19210192561149597, - 0.3725724518299103, - -0.09898660331964493, - -0.2139996588230133, - 0.12628188729286194, - 0.038749005645513535, - -0.18604646623134613, - -0.424171507358551, - -0.5182550549507141, - -0.5384815335273743, - -0.05332527309656143, - -0.09635304659605026, - -0.08507629483938217, - 0.5718836784362793, - -0.14024926722049713, - -0.4287819564342499, - 0.15545354783535004, - 0.0014794979942962527, - 0.3291144073009491, - 0.18697579205036163, - 0.03824906796216965, - 0.11402428895235062, - -0.14842459559440613, - -0.21594016253948212, - -0.14107011258602142, - 0.33744654059410095, - 0.481460303068161, - 0.034050118178129196, - -0.09563392400741577, - 0.08926020562648773, - 0.28167349100112915, - -0.08176964521408081, - -0.12263821810483932, - -0.43963003158569336, - -0.0022131470032036304, - -0.015330599620938301, - 0.04596559330821037, - 0.010645076632499695, - -0.1596696823835373, - -0.10800908505916595, - -0.025477048009634018, - -0.08623572438955307, - -0.5266116857528687, - -0.46822887659072876, - 0.3009326159954071, - 0.2862165868282318, - 0.17628976702690125, - 0.11820138990879059, - 0.004915459547191858, - -0.06927520781755447, - -0.006213414017111063, - 0.3070330023765564, - 0.4315526783466339, - 0.29945704340934753, - -0.08815063536167145, - -0.10899823904037476, - -0.08312006294727325, - -0.3230603039264679, - -0.07957810908555984, - 0.48067113757133484, - -0.05445441976189613, - 0.034361328929662704, - 0.6462908983230591, - -0.0646815299987793, - -0.06650891155004501, - 0.8824979662895203, - -0.3547782897949219, - 0.22562280297279358, - -0.1433381885290146, - 0.2547093331813812, - -0.15317924320697784, - -0.2504928410053253, - -0.018617331981658936, - 0.4023151993751526, - -0.3056267201900482, - 0.5928489565849304, - 0.18466976284980774, - -0.28410980105400085, - 0.03158803656697273, - -0.2618817687034607, - 0.44646719098091125, - 0.19164946675300598, - 0.195534810423851, - -0.13493798673152924, - -0.29433685541152954, - -0.35262587666511536, - 0.01041866559535265, - -0.3445282280445099, - -0.3317458927631378, - -0.3547325134277344, - 0.08216866105794907, - 0.11067318916320801, - -0.19596758484840393, - 0.31631582975387573, - 0.09930415451526642, - -0.13905668258666992, - -0.21911326050758362, - -0.3050417900085449, - -0.07955537736415863, - 0.2565334439277649, - 0.8179190754890442, - 0.08944594115018845, - -0.1722370833158493, - -0.10371098667383194, - 0.14470167458057404, - -0.16642709076404572, - 0.22122301161289215, - -0.023443171754479408, - -0.04659540206193924, - -0.4497292637825012, - 0.20588989555835724, - 0.1110755205154419, - -0.3885223865509033, - -0.24612747132778168, - -0.26481425762176514, - -0.13152053952217102, - -0.07895217090845108, - -0.15108680725097656, - 0.25676029920578003, - 0.30707836151123047, - -0.08148007094860077, - 0.13577410578727722, - -0.2778380513191223, - 0.0019063694635406137, - 0.03889375552535057, - 0.37004026770591736, - -0.0022121795918792486, - -0.3124537765979767, - -0.46391841769218445, - -0.5121660232543945, - 0.2615920603275299, - -0.4142514765262604, - -0.05625532194972038, - 0.06885974854230881, - 0.16227827966213226, - -0.3209053575992584, - 0.0714024230837822, - -0.14051857590675354, - -0.035339634865522385, - -0.26284530758857727, - 0.25494813919067383, - 0.3801710605621338, - -0.42007240653038025, - 0.22609515488147736, - -0.00981009192764759, - 0.09631197899580002, - 0.13880892097949982, - -0.18120265007019043, - 0.09524141252040863, - -0.20740239322185516 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_013.json b/src/benchmark/output/results/results_graph_013.json deleted file mode 100644 index d436e7d..0000000 --- a/src/benchmark/output/results/results_graph_013.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is an adult with a diagnosis of stage III Non-Small Cell Lung Carcinoma (NSCLC) accompanied by an upper esophageal stricture. The patient's demographic information is not explicitly provided in the data, but based on the clinical presentation and treatment plan, it can be inferred that the patient is likely an older adult.\n\n**Timeline of Diagnoses:**\n\n1. **Step 1:** The patient was diagnosed with stage III NSCLC and upper esophageal stricture around the same time.\n2. **Step 2 (Two months later):** An initial MRI performed revealed no abnormalities, but the patient's diagnosis of NSCLC remained active.\n3. **Step 3 (One year after Step 1):** Follow-up CT scans showed metastatic spread throughout the brain after presentation to the ED with neurological weakness.\n4. **Step 4:** The patient was admitted to hospital and started on dexamethasone, continued treatment for hypokalemia, and placed on neutropenic precautions. Pantoprazole and enoxaparin sodium were initiated due to possible hemorrhages and deep vein thrombosis prophylaxis.\n5. **Step 5:** MRI confirmed multiple new brain metastases with vasogenic edema and possible hemorrhagic components. The patient's oncologist confirmed metastasis to the brain and bone, and dexamethasone was increased to 6 mg every eight hours. Enoxaparin sodium was discontinued due to possible hemorrhages; mechanical prophylaxis started with thromboembolic deterrent stockings and sequential compression devices.\n6. **Step 6:** The patient tolerated radiation therapy well and docetaxel was re-initiated.\n7. **Step 7 (Refractory disease):** CT scans revealed new developments in the liver and possibly pancreas, indicating refractory disease to second-line docetaxel.\n8. **Step 8 (Hospice care recommendation):** The oncologist discussed a third-line option and recommended hospice care.\n\n**Timeline of Treatments:**\n\n1. **Dexamethasone:** Initially started at 4 mg twice daily, increased to 6 mg every eight hours due to metastasis.\n2. **Docetaxel:** Re-initiated after radiation therapy, with no specified dosage or frequency.\n3. **Pantoprazole and Enoxaparin Sodium:** Initiated for possible hemorrhages and deep vein thrombosis prophylaxis.\n\n**Outcomes:**\n\n1. **Radiation Therapy:** The patient tolerated the treatment well, indicating a positive response to radiation therapy.\n2. **Hospice Care Recommendation:** The oncologist recommended hospice care due to refractory disease, indicating a poor prognosis for the patient's overall health and quality of life.\n\nIn conclusion, this patient was diagnosed with stage III NSCLC accompanied by an upper esophageal stricture and underwent multiple treatments, including radiation therapy, dexamethasone, docetaxel, pantoprazole, and enoxaparin sodium. Despite initial positive responses to treatment, the patient's disease progressed, leading to a recommendation for hospice care due to refractory disease.", - "bertscore": { - "precision": [ - 0.5511878728866577 - ], - "recall": [ - 0.5822768211364746 - ], - "f1": [ - 0.5663059949874878 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 9, - "edge_count": 8, - "avg_in_degree": 0.8888888888888888, - "density": 0.1111111111111111 - }, - "trajectory_embedding": [ - 0.24155695736408234, - 0.21537359058856964, - -0.07995787262916565, - 0.12391994893550873, - -0.0372464694082737, - 0.15261226892471313, - -0.11476530134677887, - 0.32324033975601196, - 0.4738871157169342, - -0.23460787534713745, - -0.20247039198875427, - -0.08712716400623322, - -0.6125581860542297, - -0.031501494348049164, - -0.20453636348247528, - 0.20022889971733093, - -0.16431254148483276, - 0.29454290866851807, - -0.23962701857089996, - -0.17309172451496124, - -0.2758984863758087, - 0.1059381514787674, - -0.5465917587280273, - -0.0003402531147003174, - 0.15933232009410858, - 0.031305454671382904, - 0.32929545640945435, - 0.5477815270423889, - 0.1594933718442917, - 0.2540544867515564, - 0.14029796421527863, - -0.1244959831237793, - 0.2018236517906189, - 0.0449417382478714, - -0.2452317625284195, - 0.24212630093097687, - 0.24442964792251587, - 0.4833468198776245, - -0.07787999510765076, - -0.06768157333135605, - -0.07964158803224564, - 0.0008284167852252722, - 0.8772623538970947, - 0.024648617953062057, - 0.26762256026268005, - -0.7976613640785217, - 0.0019980918150395155, - 0.6135618686676025, - -0.3571402132511139, - -0.14905542135238647, - 0.12183341383934021, - 0.7270091772079468, - 0.5443129539489746, - -0.36728304624557495, - 0.4682283401489258, - -0.2588065266609192, - -0.21307438611984253, - -0.3388199508190155, - -0.11955253034830093, - -0.03675445169210434, - -0.002368973335251212, - -0.33122900128364563, - 0.45348984003067017, - -0.11281886696815491, - -0.20961236953735352, - -0.12740486860275269, - -0.23833529651165009, - 0.1451364904642105, - -0.045388154685497284, - -0.2403751164674759, - -0.15419939160346985, - -0.3230229318141937, - -0.0910692885518074, - 0.14790748059749603, - 0.041459981352090836, - -0.206843301653862, - 0.3894253373146057, - -0.07595756649971008, - 0.18960782885551453, - 0.13335663080215454, - -0.030964652076363564, - -0.13484208285808563, - -0.12176130712032318, - 0.3728886842727661, - -0.20234252512454987, - 0.0016239003743976355, - -0.20775629580020905, - -0.0699281319975853, - -0.30638110637664795, - 0.23557382822036743, - 0.04188374802470207, - -0.4083743393421173, - 0.08051607012748718, - -0.1916392594575882, - 0.0030252535361796618, - 0.27882376313209534, - 0.5132365226745605, - 0.15610343217849731, - 0.827597975730896, - -0.11964982002973557, - 0.2349698841571808, - 0.06182524934411049, - 0.174056276679039, - 0.15932923555374146, - 0.3266720473766327, - -0.22590965032577515, - 0.17611642181873322, - -0.5313708186149597, - 0.35758882761001587, - 0.5984790325164795, - 0.10640716552734375, - -0.15097194910049438, - -0.017119668424129486, - -0.15137934684753418, - 0.1897292137145996, - 0.14832034707069397, - -0.04469786584377289, - 0.2143532782793045, - 0.19945654273033142, - -0.4254097044467926, - -0.09676656126976013, - -0.1194058284163475, - 0.24252387881278992, - 0.1517648994922638, - -0.37359386682510376, - -0.11687571555376053, - -0.12634143233299255, - -0.062346987426280975, - 0.11124014854431152, - 0.08090682327747345, - -0.33239224553108215, - -0.11807307600975037, - -0.1302884817123413, - 0.0671614333987236, - 0.06077427417039871, - 0.3060888648033142, - -0.35121950507164, - -0.06750120967626572, - -1.0770100355148315, - 0.15920908749103546, - -0.44611474871635437, - 0.00039295852184295654, - -0.16818030178546906, - -0.7213994860649109, - -0.216000497341156, - -0.0821317583322525, - -0.08832965046167374, - 0.17001938819885254, - -0.2577148377895355, - 0.12229795008897781, - 0.04230130463838577, - -0.06636832654476166, - 0.16916221380233765, - 0.4746445417404175, - 0.00531361810863018, - -0.055137310177087784, - -0.030731383711099625, - 0.4306242763996124, - 0.15991631150245667, - -0.23452642560005188, - 0.036741480231285095, - 0.46159300208091736, - -0.04295675456523895, - 0.08154748380184174, - -0.06777488440275192, - -0.657522976398468, - -0.09001371264457703, - -0.051591746509075165, - 0.00817882176488638, - 0.13230735063552856, - -0.17399320006370544, - 0.08227026462554932, - -0.35297974944114685, - 0.5669633746147156, - 0.11720393598079681, - 0.4058569669723511, - -0.049811575561761856, - -0.038685962557792664, - 0.1598951816558838, - 0.15935125946998596, - 0.011667225509881973, - -0.2277788519859314, - 0.5574589371681213, - 0.2693471610546112, - -0.20592756569385529, - 0.026243533939123154, - 0.24838703870773315, - 0.12592069804668427, - -0.41700243949890137, - 0.00327802705578506, - 0.5660539269447327, - -0.31072595715522766, - 0.4585483968257904, - -0.26150617003440857, - 0.034883253276348114, - 0.17964760959148407, - -0.18886232376098633, - -0.08186636120080948, - 0.035565122961997986, - -0.17793779075145721, - 0.19144436717033386, - -0.02238658256828785, - -0.40682798624038696, - -0.00039794377516955137, - 0.09830164164304733, - -0.08517023921012878, - 0.02812509983778, - -0.06149401143193245, - 0.11783480644226074, - 0.03988480567932129, - 0.008082837797701359, - 0.2380465418100357, - -0.022804560139775276, - 0.2225331962108612, - 0.004692764952778816, - -0.4686604142189026, - -0.05721122771501541, - -0.05054028332233429, - -0.04461255297064781, - 0.08090267330408096, - 0.1183868795633316, - -0.3092455565929413, - -0.14980101585388184, - 0.02167956717312336, - -0.526171863079071, - 0.2465953230857849, - 0.131320059299469, - 0.2511613368988037, - 0.20704039931297302, - 0.008696241304278374, - -0.014560025185346603, - -0.36080485582351685, - 0.3467772901058197, - -0.12624897062778473, - -0.18852436542510986, - -0.32335978746414185, - 0.22572872042655945, - -0.1190427914261818, - 0.17208603024482727, - 0.292746901512146, - 0.029593685641884804, - -0.04226994514465332, - 0.2001456469297409, - -0.30924275517463684, - 0.0181588064879179, - -0.29900336265563965, - -0.16698414087295532, - 0.36746883392333984, - 0.14116379618644714, - 0.18033351004123688, - -0.0004899862105958164, - -0.1911129504442215, - 0.15002883970737457, - -0.25037968158721924, - -0.40363365411758423, - -0.3135179877281189, - -0.06087428331375122, - -0.1274440437555313, - -0.70119309425354, - 0.20250943303108215, - -0.006145748775452375, - -0.09775877743959427, - 0.1399988979101181, - -0.2688709497451782, - -0.155520498752594, - -0.09042874723672867, - 0.028022922575473785, - 0.1310429722070694, - -0.36349284648895264, - 0.033691566437482834, - -0.16610130667686462, - -0.1955234706401825, - -0.15266183018684387, - -0.007524983957409859, - 0.10932084918022156, - 0.025655873119831085, - -0.3500211834907532, - 0.03381055220961571, - 0.04968787729740143, - -0.4316314458847046, - -0.06891779601573944, - 0.06449755281209946, - -0.21540646255016327, - 0.3267812728881836, - 0.008800899609923363, - 0.32915136218070984, - 0.2613288462162018, - 0.12813709676265717, - 0.14492428302764893, - 0.34034502506256104, - 0.5050050616264343, - -0.07383128255605698, - -0.03463876247406006, - -0.12566155195236206, - -0.11848434805870056, - -0.08477093279361725, - -0.44429799914360046, - 0.46254879236221313, - 0.03885037451982498, - 0.0508064366877079, - 0.004927083849906921, - 0.2280394285917282, - 0.1169482171535492, - -0.25205108523368835, - -0.048436589539051056, - 0.36231517791748047, - 0.15091532468795776, - 0.2599165737628937, - 0.19282156229019165, - 0.16700248420238495, - 0.23195971548557281, - -0.15707296133041382, - 0.11036384850740433, - 0.22283941507339478, - -0.08980632573366165, - -0.14549654722213745, - -0.04020605981349945, - 0.2666403353214264, - 0.4998273253440857, - -0.06692996621131897, - -0.21176013350486755, - -0.01596781238913536, - -0.04991384968161583, - -0.09778814762830734, - -0.3200053572654724, - -0.18764692544937134, - 0.08455508947372437, - -0.14097356796264648, - 0.291954904794693, - 0.13266724348068237, - 0.04797739163041115, - 0.3550804555416107, - -0.41618818044662476, - -0.10743103921413422, - 0.1664910912513733, - -0.16606368124485016, - -0.312967985868454, - 0.6062343716621399, - -0.25771278142929077, - -0.0013112624874338508, - 0.34544655680656433, - -0.32606643438339233, - 0.026833537966012955, - 0.017975404858589172, - 0.34656456112861633, - -0.13261549174785614, - 0.16263563930988312, - -0.038597047328948975, - 0.06752984970808029, - -0.012437749654054642, - 0.4742298126220703, - 0.21687664091587067, - 0.0252423956990242, - 0.5284286141395569, - 0.1975318342447281, - -0.32550764083862305, - 0.14438821375370026, - -0.13664278388023376, - 0.35603272914886475, - -0.27747562527656555, - -0.09235963225364685, - -0.16708365082740784, - 0.18514083325862885, - 0.11126849055290222, - -0.3430049419403076, - 0.03171159327030182, - 0.06763497740030289, - -0.024170134216547012, - -0.06650260090827942, - 0.3168039917945862, - 0.09125544130802155, - -0.23942960798740387, - 0.4465724229812622, - -0.05282427370548248, - -0.16144904494285583, - 0.4569963216781616, - -0.1437179297208786, - 0.13761450350284576, - 0.1127144992351532, - -0.23600077629089355, - -0.2248530387878418, - 0.1559731364250183, - -0.05172814428806305, - -0.18690167367458344, - 0.04961433634161949, - -0.14382441341876984, - 0.07923392206430435, - -0.36201024055480957, - 0.06428803503513336, - 0.00085721246432513, - 0.15947455167770386, - 0.10765368491411209, - 0.25942671298980713, - 0.03479692339897156, - -0.235140860080719, - 0.21229302883148193, - 0.07802985608577728, - 0.07191018015146255, - -0.2942546308040619, - -0.009596031159162521, - -0.018777254968881607, - 0.5741297006607056, - -0.057629168033599854, - 0.00856948271393776, - 0.06073133647441864, - -0.010361773893237114, - -0.18509222567081451, - -0.4136068522930145, - 0.04926762729883194, - -0.19605028629302979, - 0.10411420464515686, - 0.05534903332591057, - 0.10573378205299377, - -0.2977267801761627, - -0.09907933324575424, - -0.06637433171272278, - -0.0462399385869503, - 0.05609910935163498, - -0.05832063406705856, - -0.15888355672359467, - 0.3146088421344757, - 0.25871631503105164, - 0.4351678192615509, - -0.27371957898139954, - 0.17106184363365173, - 0.08135560154914856, - -0.1977299004793167, - 0.11241979151964188, - -0.08693860471248627, - -0.46330520510673523, - -0.13701243698596954, - 0.2106388658285141, - 0.22903227806091309, - -0.11263370513916016, - -0.07803452759981155, - 0.08713499456644058, - 0.13808225095272064, - -0.18711066246032715, - -0.09250027686357498, - 0.3962304890155792, - -0.002254633465781808, - 0.2343401312828064, - 0.03170916065573692, - -0.6213518381118774, - -0.19844931364059448, - -0.2018902599811554, - -0.37373340129852295, - 0.09655988216400146, - 0.3098083734512329, - 0.05260675027966499, - -0.11784887313842773, - -0.03582240641117096, - -0.021124400198459625, - -0.04373055696487427, - 0.3409253656864166, - -0.17100651562213898, - 0.19073598086833954, - 0.059218354523181915, - -0.20401841402053833, - -0.05425725877285004, - -0.2159264236688614, - -0.27113592624664307, - -0.23053810000419617, - 0.21711087226867676, - 0.16023214161396027, - -0.35370469093322754, - -0.014339636079967022, - -0.0014454068150371313, - -0.11599821597337723, - -0.13153047859668732, - 0.026755884289741516, - -0.1900964379310608, - 0.34747445583343506, - -0.06484807282686234, - -0.2343011498451233, - 0.05442841351032257, - -0.01754981465637684, - -0.0358896404504776, - 0.279585063457489, - 0.23285818099975586, - 0.2612352669239044, - 0.10170546174049377, - 0.10291460156440735, - 0.5390164852142334, - 0.03270624950528145, - 0.09692253917455673, - 0.1990957409143448, - -0.04463128373026848, - 0.07410280406475067, - -0.37692031264305115, - -0.30622726678848267, - 0.2972744405269623, - -0.2718070447444916, - -0.15260562300682068, - 0.1595229059457779, - 0.23568344116210938, - -0.4395192563533783, - -0.3215208649635315, - -0.08459683507680893, - 0.051929887384176254, - -0.05153917148709297, - -0.14262405037879944, - -0.14354681968688965, - -0.1756318062543869, - -0.09349746257066727, - -0.08696410804986954, - 0.16840334236621857, - 0.4684618413448334, - 0.15833033621311188, - 0.38052690029144287, - -0.3756466209888458, - -0.2781062424182892, - 0.2124059647321701, - 0.20991568267345428, - 0.042279597371816635, - -0.14751948416233063, - -0.1784704029560089, - 0.3049623370170593, - 0.347293883562088, - -0.08212367445230484, - 0.016853369772434235, - 0.04574248194694519, - -0.0009136919979937375, - 0.17393185198307037, - 0.1004016250371933, - -0.0010571065358817577, - -0.0818040668964386, - -0.3738876283168793, - 0.07030986994504929, - -0.0918787270784378, - -0.058571211993694305, - 0.13702678680419922, - -0.1960516721010208, - -0.556880533695221, - -0.19149485230445862, - 0.20317649841308594, - -0.06477893888950348, - -0.11078114062547684, - 0.10036469250917435, - 0.3240278661251068, - -0.014925054274499416, - -0.25963079929351807, - 0.16798456013202667, - -0.5065494775772095, - -0.23348909616470337, - 0.24681547284126282, - -0.029935160651803017, - -0.11212442815303802, - 0.038584526628255844, - 0.4622439742088318, - 0.4085366427898407, - 0.2291470170021057, - -0.1898837685585022, - 0.18331663310527802, - 0.4277838468551636, - 0.2599075734615326, - -0.3321033716201782, - -10.781160354614258, - -0.10366761684417725, - -0.293734073638916, - 0.47978121042251587, - -0.26044803857803345, - 0.1099102720618248, - 0.07514674961566925, - -0.12935002148151398, - 0.12093876302242279, - 0.10419774800539017, - -0.19865158200263977, - -0.05598168075084686, - 0.2874721884727478, - 0.21560944616794586, - 0.13291381299495697, - 0.0542290098965168, - -0.2692578136920929, - 0.1859169900417328, - 0.15526315569877625, - 0.259503036737442, - -0.021331720054149628, - 0.442475825548172, - -0.2479737550020218, - 0.2758244276046753, - 0.008308266289532185, - -0.36576688289642334, - -0.23775188624858856, - 0.6633375287055969, - 0.2957693636417389, - -0.3615431487560272, - 0.09340029209852219, - 0.09177090972661972, - -0.18398882448673248, - 0.01615513116121292, - -0.13900011777877808, - -0.09415915608406067, - -0.09468085318803787, - -0.022492917254567146, - 0.1913793683052063, - -0.15864193439483643, - 0.1019134670495987, - -0.13772110641002655, - 0.27784594893455505, - -0.01200948841869831, - -0.1644136905670166, - -0.5386754274368286, - -0.13066406548023224, - -1.6463642120361328, - 0.3407993018627167, - 0.3141472637653351, - 0.4143645763397217, - 0.004793903790414333, - 0.07217314839363098, - 0.2548612356185913, - -0.3113287687301636, - 0.0022354957181960344, - -0.33011141419410706, - -0.15120093524456024, - 0.08631902933120728, - 0.01618902198970318, - 0.12534892559051514, - -0.20028457045555115, - 0.5586374998092651, - -0.061824340373277664, - -0.33100053668022156, - 0.08600368350744247, - 0.06636752188205719, - 0.05553329735994339, - -0.24358715116977692, - -0.7141892910003662, - -0.5033979415893555, - -0.028620921075344086, - -0.06953250616788864, - -0.006344159599393606, - 0.34178483486175537, - 0.03332378342747688, - -0.26986467838287354, - 0.30130770802497864, - -0.06494703888893127, - 0.22317205369472504, - 0.27392733097076416, - -0.05275188013911247, - 0.1365334391593933, - -0.18610860407352448, - -0.1038220226764679, - -0.09767290949821472, - 0.16559270024299622, - 0.4100814759731293, - -0.002759655239060521, - -0.05510718747973442, - 0.010698553174734116, - 0.36826616525650024, - 0.03306090831756592, - -0.24538257718086243, - -0.5187779068946838, - 0.037447281181812286, - 0.04056726023554802, - 0.09725210815668106, - 0.012242469936609268, - 0.009624186903238297, - -0.2076747864484787, - 0.09715893864631653, - 0.003859913907945156, - -0.5736606121063232, - -0.5300700068473816, - 0.37477362155914307, - 0.1465151607990265, - 0.16475725173950195, - -0.027807533740997314, - -0.1493527591228485, - -0.23046022653579712, - 0.0705937072634697, - 0.2837875783443451, - 0.5248658657073975, - 0.22655895352363586, - -0.048853132873773575, - 0.12442824244499207, - -0.2865041494369507, - -0.09623543918132782, - 6.0217247664695606e-05, - 0.3253086805343628, - -0.05707065388560295, - 0.2002371847629547, - 0.5235603451728821, - 0.037757329642772675, - -0.12214464694261551, - 0.9256930947303772, - -0.3156319260597229, - 0.12378469854593277, - -0.05458957329392433, - 0.36882245540618896, - 0.01957804337143898, - -0.46116992831230164, - 0.1366707980632782, - 0.49655675888061523, - -0.3697976768016815, - 0.7759338617324829, - 0.3545314371585846, - -0.29505518078804016, - -0.10062983632087708, - -0.2132190316915512, - 0.550788164138794, - 0.240797758102417, - 0.25003620982170105, - -0.1688372790813446, - -0.33338749408721924, - -0.1559317708015442, - 0.283538818359375, - -0.2576529085636139, - -0.3646518290042877, - -0.03736989200115204, - -0.02738192304968834, - 0.09532589465379715, - -0.19825789332389832, - 0.3232133090496063, - 0.25160884857177734, - -0.13130715489387512, - -0.3464490473270416, - -0.2850421667098999, - 0.0613701269030571, - 0.0981491431593895, - 0.8693107962608337, - 0.08792977035045624, - -0.12719029188156128, - -0.05109942704439163, - 0.2078925520181656, - -0.20768263936042786, - 0.2597372531890869, - 0.03239227831363678, - -0.13414791226387024, - -0.32784679532051086, - 0.3180330693721771, - 0.17056220769882202, - -0.24091897904872894, - -0.11497812718153, - -0.11078345030546188, - -0.0807366892695427, - 0.202336385846138, - -0.15432195365428925, - 0.2014816552400589, - 0.3424786925315857, - -0.11987282335758209, - -0.008677203208208084, - -0.22635920345783234, - -0.12274949997663498, - 0.28366073966026306, - 0.2928275167942047, - 0.03801976144313812, - -0.29831549525260925, - -0.20850878953933716, - -0.5864761471748352, - 0.31621038913726807, - -0.4213752746582031, - -0.14210301637649536, - 0.17691545188426971, - 0.20287653803825378, - -0.21846409142017365, - 0.14086991548538208, - -0.035652488470077515, - -0.12748683989048004, - -0.11935247480869293, - 0.2757931053638458, - 0.5565747618675232, - -0.20916032791137695, - 0.3051387071609497, - -0.10723290592432022, - 0.23448880016803741, - 0.2270893007516861, - -0.21272096037864685, - 0.05457596108317375, - -0.2712676525115967 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_014.json b/src/benchmark/output/results/results_graph_014.json deleted file mode 100644 index de6b176..0000000 --- a/src/benchmark/output/results/results_graph_014.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient's demographic information is not explicitly provided in the data. However, based on the content of the clinical notes, it appears that the patient has been diagnosed with a malignancy affecting the right upper lobe of the lung.\n\n**Timeline of Diagnoses and Treatments:**\n\n1. **Initial Diagnosis:** The patient underwent an enhanced chest CT scan on March 3, 2023 (Node N2), which revealed an irregular thin-walled cystic lesion in the right upper lobe with fine line compartments, measuring approximately 32\u00d727 mm. Enlarged and moderately enhanced lymph nodes were also detected in the 10R, 4R, and 2R regions.\n2. **Treatment Initiation:** Vancomycin was administered for anti-infection and anti-viral treatment (Node N1) on an unspecified date prior to March 3, 2023.\n3. **Repeat Imaging:** A repeat enhanced chest CT scan was performed on May 29, 2023 (Node N2), which showed a significant reduction in the size of the solid component of the right upper lobe mass and similar-sized mediastinal lymph nodes compared to the previous CT scan.\n4. **Immunotherapy and Chemotherapy:** A second cycle of immunotherapy combined with chemotherapy was administered on June 27, 2023 (Node N3).\n\n**Outcomes:**\n\n1. **Partial Remission:** The patient's response assessment indicated partial remission following the repeat imaging study on May 29, 2023.\n2. **Treatment Tolerability:** The patient tolerated the immunotherapy and chemotherapy treatment well, as evidenced by the administration of a second cycle of these treatments.\n\n**Clinical Implications:**\n\nThe patient's clinical course suggests that the malignancy affecting the right upper lobe of the lung is responsive to immunotherapy and chemotherapy. However, further monitoring and follow-up are necessary to assess the durability of the partial remission and to identify potential side effects or toxicities associated with these treatments.\n\n**Future Directions:**\n\n1. **Regular Imaging:** Regular imaging studies should be performed to monitor the patient's response to treatment and to detect any signs of disease progression.\n2. **Dose Escalation:** The dose of immunotherapy and chemotherapy may need to be escalated in subsequent cycles to maintain efficacy and tolerability.\n3. **Combination Therapy:** Further investigation into combination therapies involving immunotherapy, chemotherapy, and targeted therapies may be warranted to optimize treatment outcomes.\n\nIn conclusion, the patient's clinical case report highlights the importance of regular imaging studies, effective treatment strategies, and careful monitoring to manage malignancies affecting the lung.", - "bertscore": { - "precision": [ - 0.5968338847160339 - ], - "recall": [ - 0.5870294570922852 - ], - "f1": [ - 0.5918910503387451 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": true, - "all_nodes_have_timestamps": true, - "weakly_connected_components": 1, - "node_count": 3, - "edge_count": 2, - "avg_in_degree": 0.6666666666666666, - "density": 0.3333333333333333 - }, - "trajectory_embedding": [ - 0.27679479122161865, - 0.12618878483772278, - 0.06410834938287735, - 0.07259220629930496, - 0.051831673830747604, - -0.047761719673871994, - -0.06988674402236938, - 0.16675150394439697, - 0.24480462074279785, - -0.23132383823394775, - -0.13387064635753632, - -0.039049163460731506, - -0.6928800940513611, - -0.08344907313585281, - -0.19096191227436066, - 0.10806896537542343, - -0.06820740550756454, - 0.26352909207344055, - -0.08120671659708023, - -0.3735276758670807, - -0.24116463959217072, - 0.2065410614013672, - -0.5051259994506836, - 0.0012382144341245294, - 0.06261781603097916, - 0.14203502237796783, - 0.20985770225524902, - 0.49529847502708435, - 0.23134948313236237, - 0.37051472067832947, - 0.31670892238616943, - 0.05085783079266548, - 0.10684212297201157, - 0.002364224521443248, - -0.07854381203651428, - 0.32216453552246094, - 0.10401471704244614, - 0.34007135033607483, - -0.10930722951889038, - 0.0519295372068882, - -0.2209366112947464, - 0.1273813098669052, - 0.8545814156532288, - 0.07992769032716751, - 0.4504881799221039, - -0.6817919611930847, - -0.060925792902708054, - 0.6630328297615051, - -0.5316515564918518, - -0.23018185794353485, - 0.2515213191509247, - 0.7087499499320984, - 0.6248883605003357, - -0.22057275474071503, - 0.5395660996437073, - -0.1684308499097824, - -0.47392240166664124, - -0.20602916181087494, - -0.10061100125312805, - -0.03121829777956009, - 0.12562845647335052, - -0.31086885929107666, - 0.19950099289417267, - -0.03786991909146309, - -0.30708739161491394, - -0.05163047835230827, - -0.15409062802791595, - 0.23749355971813202, - 0.01096398290246725, - -0.27745187282562256, - -0.14374859631061554, - -0.05299360677599907, - -0.26444506645202637, - 0.07693296670913696, - -0.021922366693615913, - -0.18057763576507568, - 0.37339434027671814, - -0.05024931952357292, - 0.08762291818857193, - -0.21892769634723663, - 0.06516865640878677, - -0.09712675958871841, - -0.004805462900549173, - 0.4370975196361542, - -0.03376588225364685, - 0.19879813492298126, - -0.329249769449234, - 0.025027751922607422, - -0.28995612263679504, - 0.21761202812194824, - 0.2727013826370239, - -0.18986694514751434, - -0.02583196759223938, - -0.14460568130016327, - 0.016965338960289955, - 0.1475137323141098, - 0.38819894194602966, - 0.26755577325820923, - 1.0292162895202637, - 0.002463751705363393, - 0.3255591094493866, - -0.07840409129858017, - 0.09589558839797974, - -0.05735135078430176, - 0.4885930120944977, - 0.02925599366426468, - 0.23097141087055206, - -0.4386206567287445, - 0.2566349506378174, - 0.37014040350914, - 0.18467263877391815, - -0.14619989693164825, - 0.17433099448680878, - 0.033484190702438354, - 0.12034621089696884, - 0.13527758419513702, - -0.22670197486877441, - 0.4806640148162842, - 0.09475499391555786, - -0.45028814673423767, - -0.04512825980782509, - -0.17038792371749878, - 0.19541440904140472, - 0.3800118863582611, - -0.2640606164932251, - -0.2376171499490738, - -0.1046384945511818, - -0.18447744846343994, - 0.2010146975517273, - -0.09428048133850098, - -0.3328667879104614, - -0.12174857407808304, - -0.04166221246123314, - 0.1328779011964798, - 0.10650335997343063, - 0.2286609262228012, - -0.09750965237617493, - 0.051554158329963684, - -1.0638278722763062, - 0.0668773427605629, - -0.413263201713562, - 0.014753547497093678, - -0.05007404088973999, - -0.5301017165184021, - -0.098699651658535, - 0.11111348867416382, - -0.06931860744953156, - 0.0368628203868866, - -0.1587170958518982, - -0.008111332543194294, - -0.08837559074163437, - 0.042673785239458084, - 0.21223211288452148, - 0.4080146253108978, - 0.12998352944850922, - -0.24962472915649414, - 0.0004037966427858919, - 0.2902468144893646, - 0.20929645001888275, - -0.2655467092990875, - 0.04093274101614952, - 0.30863046646118164, - -0.041205644607543945, - -0.16294892132282257, - -0.03004244528710842, - -0.6792353987693787, - 0.0426594577729702, - -0.0919528678059578, - 0.1862005740404129, - -0.06967917829751968, - -0.19178088009357452, - -0.08000696450471878, - -0.15852133929729462, - 0.5836230516433716, - 0.13843290507793427, - 0.5136252045631409, - -0.08173000067472458, - 0.04967617988586426, - 0.3093126118183136, - 0.15399375557899475, - 0.24573977291584015, - 0.063449926674366, - 0.4750452935695648, - 0.13490748405456543, - -0.37441667914390564, - 0.10103141516447067, - 0.2603847086429596, - 0.06290242820978165, - -0.009709857404232025, - -0.04046066105365753, - 0.28573882579803467, - -0.2640421390533447, - 0.4442528784275055, - -0.30492523312568665, - 0.023284271359443665, - 0.053438469767570496, - -0.3166077435016632, - -0.11086749285459518, - -0.0005651687388308346, - -0.08221239596605301, - 0.10236925631761551, - -0.0001946886332007125, - -0.23157937824726105, - 0.20808322727680206, - 0.1902700662612915, - -0.04687081277370453, - 0.17751772701740265, - 0.06442385911941528, - 0.06932586431503296, - -0.2429075390100479, - -0.11576718091964722, - 0.21667592227458954, - -0.052358973771333694, - 0.18139590322971344, - 0.07352574914693832, - -0.4045393466949463, - -0.0698242336511612, - 0.14627383649349213, - 0.07967320829629898, - 0.010323296301066875, - 0.10056743770837784, - -0.07472719252109528, - -0.024361303076148033, - 0.06330441683530807, - -0.34420880675315857, - 0.32381099462509155, - 0.09316466003656387, - 0.22887159883975983, - 0.21672451496124268, - 0.050610970705747604, - 0.09258028119802475, - -0.26909053325653076, - 0.375466912984848, - -0.13534407317638397, - 0.0397241972386837, - -0.1772078424692154, - 0.03661021217703819, - 0.042105477303266525, - 0.007648626808077097, - 0.1563829630613327, - -0.10942184180021286, - -0.0317070372402668, - 0.12305904179811478, - -0.0319063700735569, - 0.056604016572237015, - -0.29822465777397156, - 0.11449003219604492, - 0.36486899852752686, - 0.17365491390228271, - 0.20230047404766083, - 0.05721811577677727, - -0.03431251645088196, - 0.36714664101600647, - -0.22852003574371338, - -0.312507688999176, - -0.46473726630210876, - -0.2614840269088745, - -0.34238144755363464, - -0.5205318331718445, - -0.05343985557556152, - 0.04127506911754608, - -0.13117022812366486, - 0.21724413335323334, - -0.1875009983778, - -0.29381629824638367, - -0.04038449004292488, - 0.07693775743246078, - 0.1861618012189865, - -0.14896108210086823, - 0.22206945717334747, - -0.05329321697354317, - -0.24990566074848175, - -0.19792942702770233, - -0.02949179895222187, - 0.15711671113967896, - 0.15747611224651337, - -0.022253328934311867, - -0.14027275145053864, - -0.07822053879499435, - -0.30058568716049194, - -0.20757968723773956, - 0.26996275782585144, - -0.11570292711257935, - 0.1235208511352539, - -0.0665619745850563, - 0.4547291100025177, - 0.22234265506267548, - 0.14791616797447205, - -0.01122146937996149, - 0.0678667202591896, - 0.344651460647583, - 0.0899815559387207, - -0.20718109607696533, - -0.09427426010370255, - -0.05318191647529602, - -0.1111338660120964, - -0.2556239068508148, - 0.35056623816490173, - 0.07964632660150528, - 0.23832964897155762, - 0.0246121883392334, - 0.32887494564056396, - 0.1453317403793335, - 0.01320184301584959, - -0.19307227432727814, - 0.40156683325767517, - 0.21225236356258392, - 0.04999319836497307, - 0.12021594494581223, - 0.17970681190490723, - 0.441604882478714, - -0.05704985186457634, - -0.042021576315164566, - -0.1032443717122078, - -0.2320123165845871, - -0.2828953266143799, - -0.04472646117210388, - 0.19763337075710297, - 0.40467891097068787, - -0.07983356714248657, - -0.07960843294858932, - 0.1981615573167801, - -0.131442591547966, - -0.1654232293367386, - -0.18826806545257568, - -0.33340176939964294, - 0.06129930913448334, - -0.12150812149047852, - 0.47293147444725037, - 0.04380020126700401, - 0.06328459084033966, - 0.2956768274307251, - -0.3471057713031769, - -0.21680568158626556, - 0.01784111000597477, - -0.0695519968867302, - -0.42456844449043274, - 0.36384978890419006, - -0.23012472689151764, - -0.11912200599908829, - 0.20001626014709473, - -0.3702971935272217, - -0.1666375994682312, - -0.15023106336593628, - 0.3654572069644928, - 0.14009225368499756, - -0.023508617654442787, - -0.11044768244028091, - 0.2470555454492569, - 0.01955532468855381, - 0.36383605003356934, - 0.05502639338374138, - 0.2019302099943161, - 0.13316448032855988, - -0.03498097136616707, - -0.19249550998210907, - 0.09353720396757126, - 0.04357808828353882, - -0.06466036289930344, - -0.2618125379085541, - -0.146221324801445, - -0.14355574548244476, - 0.0959744080901146, - 0.13427844643592834, - -0.4750765860080719, - 0.14416474103927612, - 0.28550925850868225, - 0.09306600689888, - -0.017036939039826393, - 0.370781272649765, - 0.17031610012054443, - 0.0190906822681427, - 0.3595050871372223, - 0.019342904910445213, - -0.07493378221988678, - 0.2953473627567291, - 0.01306274626404047, - 0.15884017944335938, - 0.0009968876838684082, - -0.4273696839809418, - -0.2834527790546417, - 0.08715614676475525, - -0.14300477504730225, - -0.07442623376846313, - 0.020420486107468605, - -0.3000558316707611, - 0.09010418504476547, - -0.3193618953227997, - 0.055127907544374466, - -0.04916481301188469, - 0.14593560993671417, - 0.052162785083055496, - 0.3041764795780182, - -0.07939920574426651, - -0.15525050461292267, - 0.29369762539863586, - 0.062000762671232224, - 0.12035015225410461, - -0.0543101541697979, - -0.28199201822280884, - -0.02475348673760891, - 0.7319598197937012, - 0.050173070281744, - -0.19156140089035034, - 0.04697426036000252, - -0.09658347815275192, - -0.30366161465644836, - -0.21830220520496368, - -0.0689663365483284, - -0.31673464179039, - -0.04836093261837959, - -0.021496234461665154, - -0.0016167486319318414, - -0.22088532149791718, - -0.27171894907951355, - -0.18977642059326172, - -0.031083041802048683, - 0.012492716312408447, - 0.09031275659799576, - -0.30837568640708923, - 0.16883766651153564, - 0.08607671409845352, - 0.41132426261901855, - -0.18461525440216064, - 0.18155233561992645, - -0.12680839002132416, - -0.3434540331363678, - -0.04572116956114769, - 0.17495162785053253, - -0.2512817680835724, - -0.0063690789975225925, - 0.08377096056938171, - 0.12645137310028076, - -0.20827555656433105, - 0.2250029295682907, - 0.0899825468659401, - -0.02533005177974701, - -0.10225532203912735, - -0.04715387150645256, - 0.15249736607074738, - -0.12323033809661865, - 0.29295065999031067, - -0.09351879358291626, - -0.42179742455482483, - -0.10419949144124985, - -0.11433607339859009, - -0.1471673995256424, - 0.0026477184146642685, - 0.13630646467208862, - -0.03010624088346958, - -0.17058922350406647, - -0.004100287798792124, - 0.10173997282981873, - -0.02191179431974888, - 0.2599031627178192, - 0.11655479669570923, - 0.2709404230117798, - -0.04587378725409508, - -0.3610052168369293, - -0.10513880103826523, - -0.3275708258152008, - -0.13998375833034515, - -0.17367790639400482, - 0.2992000877857208, - -0.01680152863264084, - -0.28253844380378723, - -0.13146258890628815, - 0.02028496004641056, - -0.17221327126026154, - -0.17177975177764893, - -0.13927105069160461, - -0.1999528855085373, - 0.34796619415283203, - -0.2507767975330353, - -0.2681841552257538, - 0.13007612526416779, - -0.3177326023578644, - 0.2494804412126541, - 0.14459489285945892, - -0.018600741401314735, - 0.21674536168575287, - -0.07219605892896652, - -0.10554937273263931, - 0.36096081137657166, - -0.07216360419988632, - -0.08158066123723984, - 0.29566383361816406, - -0.06433480232954025, - 0.20521318912506104, - -0.1613079011440277, - -0.13310769200325012, - 0.23678374290466309, - -0.41320839524269104, - 0.20448648929595947, - -0.005529175046831369, - 0.39598870277404785, - -0.28862133622169495, - -0.2531064450740814, - 0.07823903113603592, - 0.005604463163763285, - -0.14403419196605682, - -0.3016914427280426, - -0.2123241424560547, - 0.0471818633377552, - -0.16554351150989532, - 0.2598092257976532, - 0.09658980369567871, - 0.41419628262519836, - 0.0071196905337274075, - 0.18518173694610596, - -0.020540595054626465, - -0.5993547439575195, - 0.11823168396949768, - 0.20067165791988373, - 0.05622433125972748, - -0.10937537997961044, - -0.09106176346540451, - 0.2717893123626709, - 0.2693256735801697, - -0.05731789395213127, - 0.04044942185282707, - -0.14990895986557007, - -0.35142090916633606, - 0.2149152308702469, - 0.20791476964950562, - -0.14390359818935394, - 0.1806323528289795, - -0.22661490738391876, - 0.1579340249300003, - -0.27953362464904785, - 0.008327390067279339, - 0.2217966467142105, - -0.38696369528770447, - -0.5885074734687805, - -0.018901722505688667, - 0.09458047896623611, - -0.0622105747461319, - -0.12541086971759796, - 0.4085380733013153, - 0.6781013607978821, - 0.22610647976398468, - -0.12758605182170868, - 0.16945146024227142, - -0.43694472312927246, - 0.04243253543972969, - 0.11634664982557297, - -0.08940566331148148, - -0.12994445860385895, - -0.019390501081943512, - 0.5450975894927979, - 0.22248990833759308, - 0.21730440855026245, - -0.2511000335216522, - 0.17787164449691772, - 0.3563788831233978, - 0.18705792725086212, - -0.15333785116672516, - -10.89339542388916, - -0.16207025945186615, - -0.13600347936153412, - 0.5155193209648132, - -0.3339745104312897, - 0.17372064292430878, - 0.13067792356014252, - -0.24535112082958221, - 0.12202385067939758, - 0.032493848353624344, - -0.19920921325683594, - 0.10847526043653488, - 0.2270018309354782, - 0.16949833929538727, - 0.005090049933642149, - -0.09686598181724548, - -0.1314041167497635, - 0.2035239189863205, - 0.08207152038812637, - 0.2944895327091217, - 0.14620724320411682, - 0.40934792160987854, - -0.14815761148929596, - 0.19816382229328156, - 0.10601142793893814, - -0.224819615483284, - -0.20963817834854126, - 0.50124591588974, - 0.2780187427997589, - -0.2980700433254242, - 0.07935493439435959, - -0.007513252552598715, - -0.02329307235777378, - -0.2005077600479126, - -0.05102143809199333, - -0.3055952191352844, - 0.0369572639465332, - -0.09867945313453674, - 0.2827214300632477, - -0.1284017711877823, - -0.15666189789772034, - -0.10051128268241882, - 0.24477370083332062, - 0.12502320110797882, - -0.12218720465898514, - -0.6264570355415344, - -0.11115021258592606, - -1.5540027618408203, - 0.33794161677360535, - 0.3328131139278412, - 0.35076841711997986, - 0.18569977581501007, - 0.13187533617019653, - 0.17771656811237335, - -0.45981767773628235, - 0.08770660310983658, - -0.08996972441673279, - 0.027752414345741272, - -0.0637783631682396, - -0.0697624608874321, - 0.23598463833332062, - -0.1220000758767128, - 0.5305712819099426, - -0.23270805180072784, - -0.31364646553993225, - 0.19776897132396698, - 0.025294503197073936, - -0.06054943799972534, - -0.2785826623439789, - -0.523565948009491, - -0.6455312967300415, - 0.011781626380980015, - -0.3032590448856354, - 0.16843664646148682, - 0.19932453334331512, - 0.03955701366066933, - -0.12797340750694275, - 0.07661990076303482, - -0.07141813635826111, - 0.1534172147512436, - 0.034129124134778976, - -0.04402122274041176, - 0.1742907017469406, - -0.12378737330436707, - -0.053658414632081985, - -0.031857773661613464, - 0.08642350882291794, - 0.6212309002876282, - 0.07201962918043137, - -0.05798890069127083, - 0.06143666431307793, - 0.48982834815979004, - 0.10239949077367783, - -0.24389950931072235, - -0.5377797484397888, - -0.057787712663412094, - -0.07590919733047485, - 0.10738164186477661, - 0.018894897773861885, - 0.09657532721757889, - -0.20313458144664764, - 0.08355448395013809, - -0.0604703314602375, - -0.36544275283813477, - -0.29742613434791565, - 0.38614240288734436, - 0.22175811231136322, - 0.16717952489852905, - 0.13993757963180542, - -0.04724356532096863, - 0.024508053436875343, - 0.21301986277103424, - 0.20699329674243927, - 0.5728276371955872, - 0.19763313233852386, - -0.015668509528040886, - -0.29365959763526917, - -0.20929193496704102, - -0.18135511875152588, - 0.26355138421058655, - 0.29317155480384827, - 0.05395033583045006, - 0.3725375831127167, - 0.4928360879421234, - -0.18985378742218018, - 0.0013224134454503655, - 0.9201081395149231, - -0.35347089171409607, - 0.30169492959976196, - -0.18208235502243042, - 0.3008313775062561, - -0.05140416696667671, - -0.28655147552490234, - -0.03058987855911255, - 0.41242900490760803, - -0.2723323106765747, - 0.29219335317611694, - 0.06439600139856339, - -0.28926917910575867, - 0.0034048433881253004, - -0.23658651113510132, - 0.5842421650886536, - 0.38788434863090515, - 0.4202174246311188, - -0.23137922585010529, - -0.6165726780891418, - -0.07921815663576126, - 0.33722934126853943, - -0.25492027401924133, - -0.36950406432151794, - 0.049048084765672684, - -0.12366709858179092, - 0.0654856488108635, - -0.28239962458610535, - 0.427400678396225, - -0.10967753082513809, - -0.07580512017011642, - -0.34793102741241455, - -0.41095396876335144, - 0.19219987094402313, - 0.22497260570526123, - 0.44071850180625916, - -0.07375030964612961, - -0.00441725505515933, - -0.07125037163496017, - 0.1109541729092598, - -0.1671902984380722, - 0.2430492639541626, - -0.05391496419906616, - -0.13366587460041046, - -0.5287448167800903, - 0.06070120260119438, - -0.004863540176302195, - -0.17156203091144562, - -0.16008049249649048, - -0.2058091163635254, - 0.23383741080760956, - 0.09073931723833084, - -0.1545603722333908, - 0.2652296721935272, - 0.34470391273498535, - 0.04135886952280998, - -0.1305282711982727, - -0.32562628388404846, - -0.15752385556697845, - 0.26156288385391235, - 0.15287484228610992, - 0.03937121853232384, - -0.1431366205215454, - -0.3567705452442169, - -0.40526118874549866, - 0.2897845506668091, - -0.2629670202732086, - -0.15560011565685272, - 0.37807345390319824, - 0.05456409230828285, - 0.022167153656482697, - 0.038214508444070816, - -0.2187020629644394, - -0.06740371137857437, - -0.12110123038291931, - 0.04156218841671944, - 0.4454265534877777, - -0.28361883759498596, - 0.20849967002868652, - -0.247344970703125, - 0.02466297149658203, - 0.009776592254638672, - -0.29319116473197937, - 0.33941009640693665, - -0.24472258985042572 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_015.json b/src/benchmark/output/results/results_graph_015.json deleted file mode 100644 index ba741db..0000000 --- a/src/benchmark/output/results/results_graph_015.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 76-year-old male with a history of metastatic non-small cell carcinoma of the lung and coronary artery disease status post coronary artery bypass grafting (CABG).\n\n**Timeline of Diagnoses:**\n\n* Metastatic non-small cell carcinoma of the lung: The patient's cancer was diagnosed, which led to further complications.\n* Coronary artery disease: The patient had a history of coronary artery disease, which required CABG surgery.\n* Intracardiac metastasis: The patient developed intracardiac metastasis, indicating that the cancer had spread to the heart.\n* Transient ischemic attack (TIA): The patient experienced a TIA, which is a temporary interruption in blood flow to part of the brain.\n\n**Timeline of Treatments:**\n\n* Coronary artery bypass grafting (CABG): The patient underwent CABG surgery as part of his treatment for coronary artery disease.\n* No specific treatments are mentioned for the metastatic non-small cell carcinoma or intracardiac metastasis in this case report.\n\n**Clinical Findings and Outcomes:**\n\nThe patient's clinical findings include:\n- Metastatic non-small cell carcinoma of the lung (diagnosis code C34.9)\n- Atherosclerotic heart disease of native coronary artery without angina pectoris (diagnosis code I25.10)\n- Chronic total occlusion of coronary artery (diagnosis code I25.82)\n- Cerebral infarction, unspecified (diagnosis code I63.9)\n\nThe patient's treatment for coronary artery disease involved CABG surgery.\n\n**Current Status:**\n\nThe patient is currently under the care of [insert name] and has a diagnosis of malignant neoplasm of unspecified part of bronchus or lung (C34.9) and cerebral infarction, unspecified (I63.9). The patient's history of coronary artery disease is noted as historical.\n\n**Prognosis:**\n\nThe prognosis for this patient is uncertain due to the presence of metastatic non-small cell carcinoma of the lung and intracardiac metastasis. Further treatment options should be discussed with a healthcare provider.\n\nNote: This narrative is based on the provided data and may not reflect the actual clinical case report or patient's current status.", - "bertscore": { - "precision": [ - 0.5106064677238464 - ], - "recall": [ - 0.5770247578620911 - ], - "f1": [ - 0.5417876243591309 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 1, - "edge_count": 0, - "avg_in_degree": 0.0, - "density": 0 - }, - "trajectory_embedding": [ - 0.2389703392982483, - 0.3098335266113281, - -0.3165978193283081, - -9.601563215255737e-05, - 0.38989344239234924, - 0.5903520584106445, - -0.588888943195343, - -0.03018897771835327, - -0.08889243006706238, - -0.6207064390182495, - -0.0009037437266670167, - 0.39261308312416077, - -0.7441316843032837, - -0.2979073226451874, - 0.16640852391719818, - 0.43679654598236084, - 0.048064105212688446, - 0.2997942864894867, - 0.020915057510137558, - -0.35394373536109924, - -0.12917307019233704, - -0.42669862508773804, - -0.38161155581474304, - 0.2666407525539398, - -0.013479489833116531, - -0.1443164050579071, - 0.20557120442390442, - 0.7344173789024353, - 0.2633451223373413, - 0.07479584217071533, - -0.3639359474182129, - -0.21168191730976105, - -0.17456236481666565, - -0.1412750631570816, - -0.45164915919303894, - 0.5824820399284363, - 0.2571425437927246, - 0.058434873819351196, - -0.3002069294452667, - -0.2177613377571106, - 0.09065016359090805, - 0.17029985785484314, - 0.4070374667644501, - 0.15395845472812653, - 0.4567863345146179, - -0.5053019523620605, - -0.3927955627441406, - 0.3735124468803406, - -0.5367979407310486, - -0.37738627195358276, - 0.5273672938346863, - 1.0248315334320068, - 0.9738489389419556, - -0.3364623188972473, - 0.6211707592010498, - -0.2080739140510559, - -0.05168095976114273, - -0.42788687348365784, - -0.40873366594314575, - 0.2244822382926941, - -0.10075759887695312, - -0.08978196978569031, - 0.20909132063388824, - -0.1566423624753952, - 0.2230314016342163, - -0.21731460094451904, - 0.01558227464556694, - 0.23005594313144684, - -0.14157332479953766, - -0.37254050374031067, - -0.2757347822189331, - -0.5918483734130859, - 0.16276821494102478, - -0.18808773159980774, - 0.10414617508649826, - 0.07445500791072845, - 0.35065507888793945, - -0.018077298998832703, - 0.08305726945400238, - 0.048546068370342255, - -0.3140362799167633, - 0.03994307667016983, - -0.30580392479896545, - 0.10322455316781998, - -0.608963131904602, - 0.009167537093162537, - -0.1288742870092392, - -0.385078489780426, - -0.33450910449028015, - 0.3499438762664795, - -0.1614782065153122, - -0.3701261281967163, - 0.3107415735721588, - -0.34904929995536804, - 0.6092851758003235, - -0.1511904001235962, - 0.7860685586929321, - -0.06480143964290619, - 0.9641114473342896, - -0.006230007857084274, - 0.02379695139825344, - -0.16553464531898499, - 0.2170470952987671, - -0.2713906466960907, - -0.034845832735300064, - -0.07268562912940979, - -0.006441563367843628, - -0.5543556213378906, - 0.17041689157485962, - 0.4779095947742462, - 0.0811966210603714, - -0.332575261592865, - 0.13267382979393005, - -0.6709529161453247, - 0.4110915958881378, - 0.10410167276859283, - -0.17547795176506042, - 0.14404325187206268, - 0.21824617683887482, - 0.029060691595077515, - -0.22877137362957, - 0.16716638207435608, - 0.4145357012748718, - -0.20713195204734802, - -0.5956100821495056, - 0.10063037276268005, - -0.3717871904373169, - 0.522958517074585, - -0.41824573278427124, - 0.1846962720155716, - -0.3072289824485779, - -0.03729293867945671, - 0.11981947720050812, - 0.10904988646507263, - -0.16605128347873688, - 0.06266038119792938, - -0.9482381343841553, - 0.385905385017395, - -0.8172354102134705, - 0.36645805835723877, - -0.623996376991272, - -0.6455236673355103, - -0.03590235486626625, - -0.5301195383071899, - -0.5014537572860718, - -0.4331091046333313, - 0.1935933232307434, - 0.43719929456710815, - -0.055473390966653824, - -0.45591259002685547, - 0.05647442489862442, - -0.22726359963417053, - 0.49288076162338257, - 0.17855969071388245, - 0.3157171905040741, - 0.31841742992401123, - 0.18921761214733124, - 0.3025393486022949, - -0.3827427625656128, - 0.012406319379806519, - 0.5429196953773499, - 0.6159993410110474, - 0.2306712567806244, - 0.06609383970499039, - -0.24710452556610107, - -0.6565123200416565, - 0.05291781201958656, - -0.2089766263961792, - 0.371540367603302, - 0.21041856706142426, - -0.15523123741149902, - 0.42610108852386475, - -0.18869426846504211, - 0.6318644285202026, - 0.4073850214481354, - 0.41544288396835327, - 0.4542121887207031, - 0.5432044267654419, - 0.09603576362133026, - 0.23949187994003296, - -0.027804303914308548, - -0.5558944940567017, - 0.45558831095695496, - 0.3140001893043518, - 0.1982312798500061, - 0.7465840578079224, - 0.23025968670845032, - 0.10403624176979065, - -0.29151567816734314, - -0.010634269565343857, - 0.6111639142036438, - -0.3232841193675995, - 0.4231526851654053, - -0.43725457787513733, - -0.3464846611022949, - 0.017061039805412292, - -0.2285699099302292, - -0.1876550018787384, - -0.2980075776576996, - 0.2594115436077118, - 0.133003830909729, - 0.07222534716129303, - -0.20265358686447144, - 0.32673364877700806, - 0.37002483010292053, - -0.01477870438247919, - 0.14647141098976135, - -0.007400058209896088, - 0.3505983054637909, - -0.016183264553546906, - -0.6536762714385986, - 0.6340172290802002, - -0.571021556854248, - 0.09194068610668182, - 0.04613776504993439, - -0.32175320386886597, - 0.13421142101287842, - -0.08016829192638397, - 0.07741203159093857, - 0.40549108386039734, - -0.029363662004470825, - -0.021499834954738617, - -0.2499600201845169, - -0.11491072177886963, - -0.16818147897720337, - 0.24380303919315338, - 0.01120261661708355, - 0.4374444782733917, - 0.1797056496143341, - -0.47466692328453064, - 0.015287317335605621, - -0.3805888891220093, - -0.016915656626224518, - 0.005951583385467529, - 0.09004507213830948, - -0.36537405848503113, - 0.1543998271226883, - -0.057106923311948776, - 0.22450803220272064, - -0.008389126509428024, - 0.05972324311733246, - -0.08909795433282852, - 0.11305461823940277, - -0.35245224833488464, - -0.018799209967255592, - -0.5273708701133728, - 0.17344793677330017, - 0.0860033631324768, - -0.2016955316066742, - 0.20644137263298035, - -0.033858995884656906, - 0.1698063313961029, - -0.18886756896972656, - -0.147933691740036, - -0.31989797949790955, - -0.32472655177116394, - -0.14421366155147552, - 0.26201221346855164, - -0.1793866753578186, - 0.23140989243984222, - -0.1385350227355957, - -0.03702983260154724, - 0.3329506814479828, - -0.44802021980285645, - -0.12889400124549866, - 0.15176373720169067, - -0.14790992438793182, - -0.12356607615947723, - -0.2684727907180786, - 0.12000677734613419, - -0.46702829003334045, - -0.049279674887657166, - -0.0700707882642746, - 0.10644999146461487, - 0.22632363438606262, - 0.16765142977237701, - -0.17514774203300476, - 0.2578108310699463, - 0.4613259732723236, - -0.4161635637283325, - -0.16292433440685272, - 0.5992622375488281, - -0.06727410107851028, - 0.7997097969055176, - 0.276291161775589, - 0.02702915295958519, - 0.28205782175064087, - -0.1051710918545723, - 0.43137118220329285, - 0.0883198231458664, - 0.6171201467514038, - 0.04202908277511597, - 0.03374591842293739, - 0.23114104568958282, - 0.0631459578871727, - -0.009284839034080505, - -0.2547362446784973, - 0.5557323694229126, - -0.4143935441970825, - 0.07173341512680054, - -0.5556164979934692, - -0.04506325349211693, - 0.0285508893430233, - -0.6258847117424011, - 0.1453758180141449, - 0.20794081687927246, - 0.32577255368232727, - 0.29005688428878784, - -0.3703134059906006, - 0.45825162529945374, - 0.3708838224411011, - 0.1895563155412674, - -0.4704546630382538, - -0.08926907181739807, - 0.20663368701934814, - -0.05621600151062012, - -0.27574488520622253, - 0.5411112904548645, - 0.12566693127155304, - -0.3637026846408844, - -0.10469653457403183, - 0.4923703670501709, - -0.49658769369125366, - 0.17811483144760132, - 0.1805437207221985, - 0.033693745732307434, - 0.10318517684936523, - -0.23825687170028687, - 0.14425522089004517, - -0.27074316143989563, - -0.060507506132125854, - 0.12243480980396271, - -0.13268448412418365, - -0.08557020872831345, - 0.40370067954063416, - 0.30130016803741455, - -0.618583619594574, - 0.22126927971839905, - 0.3465271592140198, - -0.014495469629764557, - 0.6946158409118652, - 0.1527618169784546, - 0.1356368362903595, - -0.31592026352882385, - -0.004844323731958866, - -0.2391519546508789, - -0.1071392372250557, - 0.2698078155517578, - -0.16164061427116394, - -0.06592604517936707, - 0.35281726717948914, - 0.18694272637367249, - 0.019529417157173157, - 0.6196505427360535, - -0.41608303785324097, - -0.40083959698677063, - -0.03867078572511673, - -0.31046736240386963, - 0.014953549951314926, - 0.21786372363567352, - -0.5568239688873291, - -0.5550671219825745, - -0.15971170365810394, - 0.03841513767838478, - -0.027597397565841675, - 0.09484322369098663, - 0.21285507082939148, - 0.28787460923194885, - -0.10962551087141037, - 0.26338711380958557, - 0.05503835156559944, - -0.3152390718460083, - 0.5449952483177185, - -0.13711729645729065, - -0.35061997175216675, - 0.14951394498348236, - -0.3936808407306671, - 0.30108407139778137, - -0.16283853352069855, - -0.2801792323589325, - -0.42588046193122864, - 0.03448659926652908, - -0.40357667207717896, - -0.7284085750579834, - 0.24703344702720642, - -0.45491668581962585, - 0.3542909622192383, - 0.29765307903289795, - 0.26006168127059937, - 0.28016453981399536, - 0.18972787261009216, - -0.22739890217781067, - 0.18606609106063843, - 0.1025865375995636, - -0.29099059104919434, - -0.14638546109199524, - -0.116187185049057, - 0.0714387521147728, - -0.0777483657002449, - 0.4307873249053955, - 0.21791532635688782, - 0.3522239327430725, - -0.16662029922008514, - -0.10012664645910263, - -0.03351317346096039, - 0.3161313533782959, - 0.2803148925304413, - -0.25653356313705444, - -0.10975254327058792, - -0.003858368843793869, - -0.03618452697992325, - 0.08194563537836075, - 0.3689180314540863, - -0.3240503966808319, - -0.5956764221191406, - -0.1468779593706131, - 0.07775306701660156, - 0.2198868989944458, - 0.12102263420820236, - -0.04229359328746796, - 0.35199928283691406, - 0.20200452208518982, - 0.41259610652923584, - -0.4956706464290619, - 0.3694636821746826, - -0.079969622194767, - -0.40642043948173523, - -0.38314715027809143, - -0.17921429872512817, - -0.13085292279720306, - -0.014782138168811798, - 0.24626626074314117, - 0.5360507965087891, - 0.31954294443130493, - -0.13702955842018127, - 0.33798158168792725, - -0.10651233792304993, - -0.42653709650039673, - 0.23125754296779633, - 0.3267395794391632, - -0.051813751459121704, - 0.19039073586463928, - 0.042733240872621536, - -0.4041391611099243, - -0.7801225781440735, - -0.1850864291191101, - -0.5212448239326477, - 0.48097535967826843, - 0.003191854804754257, - -0.3584572970867157, - -0.3347712457180023, - -0.46353498101234436, - -0.18914750218391418, - -0.3836524784564972, - -0.09465295821428299, - -0.23992778360843658, - 0.518112063407898, - 0.5191221237182617, - -0.11515665054321289, - 0.3566492199897766, - -0.14425210654735565, - -0.44946739077568054, - -0.33885300159454346, - 0.5608147382736206, - 0.4803211987018585, - -0.5010053515434265, - -0.1264108419418335, - -0.11029957234859467, - 0.11882941424846649, - -0.4111101031303406, - -0.21157428622245789, - 0.1516641527414322, - 0.46489036083221436, - 0.30386096239089966, - -0.3437502086162567, - -0.10685817152261734, - -0.016663722693920135, - -0.1269133985042572, - 0.06840302795171738, - 0.0034700408577919006, - 0.44815877079963684, - 0.40635213255882263, - 0.020577024668455124, - 0.48065972328186035, - 0.3182986080646515, - 0.2734185755252838, - 0.33232566714286804, - -0.10746391117572784, - 0.20910504460334778, - -0.5217775106430054, - -0.0855599120259285, - 0.08855283260345459, - -0.35151317715644836, - -0.1877375692129135, - -0.21275702118873596, - -0.14520278573036194, - -0.3594425320625305, - -0.2736580967903137, - 0.09262949228286743, - -0.3425097167491913, - -0.4552379846572876, - -0.02626919187605381, - 0.0339023619890213, - -0.0381702221930027, - 0.14885617792606354, - -0.17025981843471527, - 0.19888223707675934, - -0.26312315464019775, - -0.03204527497291565, - 0.0583663210272789, - -0.09758896380662918, - -0.053306903690099716, - -0.07854506373405457, - 0.5047153830528259, - 0.15904831886291504, - 0.340497225522995, - -0.06721927225589752, - 0.604390561580658, - 0.17915835976600647, - 0.0964708998799324, - -0.21578893065452576, - 0.18773609399795532, - 0.45928817987442017, - -0.08562985062599182, - 0.28325554728507996, - 0.07660016417503357, - 0.39923933148384094, - -0.30445486307144165, - 0.15936273336410522, - -0.04912811145186424, - -0.5333974361419678, - 0.23860691487789154, - -0.4876668155193329, - -0.5751733779907227, - 0.42516013979911804, - 0.5291058421134949, - 0.08667256683111191, - 0.1469327211380005, - 0.2787007987499237, - 0.6868070363998413, - -0.15365184843540192, - -0.5677317976951599, - -0.1178092360496521, - -0.319806307554245, - -0.39507097005844116, - -0.32486867904663086, - -0.0563889816403389, - 0.003801180049777031, - -0.07082203030586243, - 0.3203139007091522, - 0.7005394697189331, - 0.025692548602819443, - -0.1564420610666275, - 0.5258826017379761, - -0.06738251447677612, - 0.4000523090362549, - -0.0536981001496315, - -10.711305618286133, - -0.1449575126171112, - -0.6231441497802734, - 0.39226406812667847, - -0.714655876159668, - 0.0378347784280777, - -0.45853790640830994, - 0.21601159870624542, - 0.13231375813484192, - -0.34025105834007263, - -0.04726651310920715, - -0.036692265421152115, - 0.15629012882709503, - 0.16548781096935272, - 0.133566215634346, - 0.3076207637786865, - -0.4604633152484894, - 0.09870724380016327, - 0.12063025683164597, - 0.32105255126953125, - 0.3838058412075043, - 0.1058037281036377, - -0.3724234104156494, - 0.06379919499158859, - -0.011733680963516235, - -0.2047603875398636, - -0.03533114492893219, - 0.5476711392402649, - 0.3195372223854065, - -0.4195501208305359, - -0.02223062328994274, - 0.1635567545890808, - -0.3894299864768982, - 0.026286743581295013, - -0.2793394923210144, - -0.20398971438407898, - -0.3511773645877838, - 0.5380673408508301, - 0.3460114896297455, - -0.05018182098865509, - 0.38531118631362915, - -0.061097778379917145, - 0.14386464655399323, - 0.1530020833015442, - -0.22344166040420532, - -0.39629989862442017, - -0.06028113514184952, - -0.9311598539352417, - 0.1262911856174469, - 0.4711177945137024, - 0.3620136082172394, - 0.028508277609944344, - -0.24469590187072754, - 0.28008362650871277, - -0.5704947710037231, - 0.2661471664905548, - 0.06691775470972061, - -0.24330076575279236, - -0.0031814593821763992, - 0.08243328332901001, - -0.25633376836776733, - 0.03288063034415245, - 0.2929503321647644, - 0.08160365372896194, - -0.2454083263874054, - 0.26800525188446045, - -0.3297995328903198, - -0.17020776867866516, - -0.07999513298273087, - 0.06291785836219788, - -0.36410778760910034, - -0.4124906361103058, - -0.008598655462265015, - -0.11039707809686661, - 0.3039734959602356, - -0.15164630115032196, - -0.21235790848731995, - 0.3480929732322693, - 0.053720034658908844, - 0.48116323351860046, - 0.2768861651420593, - 0.23602229356765747, - -0.36102741956710815, - -0.06162703037261963, - -0.043666377663612366, - -0.21106478571891785, - 0.3418733477592468, - 0.03724270686507225, - -0.023518698289990425, - 0.13965801894664764, - 0.06488068401813507, - 0.5754842758178711, - 0.35106706619262695, - 0.14473360776901245, - -0.07573537528514862, - -0.02823122963309288, - 0.4051150977611542, - 0.21460549533367157, - 0.2992425560951233, - 0.1299932897090912, - -0.34851399064064026, - 0.30520641803741455, - -0.2706047594547272, - -0.46294325590133667, - -0.5099635720252991, - 0.5756202340126038, - -0.05299358442425728, - -0.2153313308954239, - -0.1415293961763382, - -0.6019071340560913, - 0.11131608486175537, - 0.054658420383930206, - 0.14690452814102173, - 0.13583894073963165, - 0.1392155885696411, - -0.06760229915380478, - 0.013267731294035912, - -0.15766541659832, - -0.17240901291370392, - -0.11290384829044342, - 0.7853330969810486, - 0.015672093257308006, - -0.07745862007141113, - 0.4994644820690155, - 0.07972700148820877, - 0.05725289136171341, - 0.9127302765846252, - -0.11025770753622055, - 0.3141229748725891, - 0.3418240547180176, - 0.2828817367553711, - -0.35764947533607483, - -0.3530988097190857, - 0.5672844648361206, - 0.39066243171691895, - -0.7800267934799194, - 0.7573832273483276, - 0.2109900563955307, - -0.33114784955978394, - -0.05240429937839508, - -0.2099815011024475, - 0.3776448369026184, - 0.16627627611160278, - 0.07136334478855133, - -0.13862623274326324, - -0.3808680474758148, - -0.4662131369113922, - 0.17233781516551971, - -0.16338245570659637, - 0.08264303207397461, - -0.16289584338665009, - -0.006147764623165131, - 0.2345556616783142, - 0.07044225931167603, - 0.42202916741371155, - 0.289324015378952, - -0.1625698208808899, - -0.07522528618574142, - -0.10786674916744232, - -0.27087754011154175, - -0.0075887590646743774, - 0.7138149738311768, - 0.13017895817756653, - 0.04552684724330902, - 0.11597730964422226, - 0.10303081572055817, - -0.055636048316955566, - -0.1403372883796692, - 0.17642050981521606, - 0.427278995513916, - -0.10313038527965546, - 0.18800871074199677, - 0.2491636574268341, - -0.32591599225997925, - 0.10489072650671005, - -0.6767205595970154, - -0.10484258085489273, - 0.21798337996006012, - 0.055985093116760254, - -0.07885462045669556, - 0.5883104205131531, - 0.41892603039741516, - 0.14416277408599854, - -0.096698097884655, - 0.11983804404735565, - 0.00701029971241951, - 0.2765469551086426, - -0.016873743385076523, - -0.4535837471485138, - -0.49388036131858826, - -0.7179098725318909, - -0.18648454546928406, - -0.3289138674736023, - -0.1417543888092041, - -0.024529799818992615, - -0.029816884547472, - -0.30814534425735474, - 0.14666488766670227, - 0.116928830742836, - -0.21834765374660492, - -0.2901517450809479, - 0.16573293507099152, - 0.5444180369377136, - -0.7286027073860168, - 0.35096311569213867, - -0.3314579427242279, - 0.36190342903137207, - 0.2605132460594177, - -0.5683344006538391, - -0.09386436641216278, - -0.05177345126867294 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_016.json b/src/benchmark/output/results/results_graph_016.json deleted file mode 100644 index 7574443..0000000 --- a/src/benchmark/output/results/results_graph_016.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 51-year-old female born in 1970. She presented with a subsolid pulmonary lesion incidentally detected during a routine follow-up for malignant melanoma.\n\n**Timeline of Diagnoses:**\n\n1. **April 2013:** The patient was diagnosed with malignant melanoma and underwent resection videothoracoscopically after preoperative labeling with a mixture of blue dye and contrast agent.\n2. **Late April 2013:** Left axillary dissection revealed metastasis in one of 19 lymph nodes, and molecular genetic testing confirmed a BRAF mutation at codon 600.\n3. **November 2017:** A routine CT scan detected a new asymptomatic 7 mm lesion in segment S10 of the right lower lobe with a density consistent with a pure ground glass nodule.\n4. **June 2020:** Follow-up CT scans showed the lesion changed character to a subsolid lesion with the presence of a solid component.\n5. **July 2020:** PET/CT scans confirmed the persistence of the lesion without increased metabolic activity.\n6. **April 2021:** Follow-up confirmed persistence and slight size progression of the solid component of the lesion, leading to indication for surgical resection.\n\n**Timeline of Treatments:**\n\n1. **April 2013:** Resection videothoracoscopically\n2. **Late April 2013:** Left axillary dissection and initiation of targeted therapy with BRAF inhibitors\n3. **November 2017:** No treatment mentioned\n4. **June 2020:** No treatment mentioned\n5. **July 2020:** No treatment mentioned\n6. **April 2021:** Surgical resection\n\n**Timeline of Outcomes:**\n\n1. **Late April 2013:** Metastasis in one of 19 lymph nodes confirmed, and targeted therapy with BRAF inhibitors initiated.\n2. **November 2017:** New asymptomatic lesion detected during routine CT scan\n3. **June 2020:** Lesion changed character to a subsolid lesion with the presence of a solid component.\n4. **July 2020:** Persistence of lesion without increased metabolic activity confirmed by PET/CT scans\n5. **April 2021:** Surgical resection performed, and follow-up confirmed persistence and slight size progression of the solid component of the lesion.\n\n**Conclusion:**\nThe patient was diagnosed with malignant melanoma in April 2013 and underwent resection videothoracoscopically. Following this, she developed metastasis in one of 19 lymph nodes and was treated with targeted therapy with BRAF inhibitors. In November 2017, a new asymptomatic lesion was detected during routine CT scan, which changed character to a subsolid lesion with the presence of a solid component by June 2020. The persistence of this lesion without increased metabolic activity was confirmed by PET/CT scans in July 2020. Finally, surgical resection was performed in April 2021, and follow-up confirmed persistence and slight size progression of the solid component of the lesion.", - "bertscore": { - "precision": [ - 0.4778168499469757 - ], - "recall": [ - 0.7119154334068298 - ], - "f1": [ - 0.5718348622322083 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 7, - "edge_count": 6, - "avg_in_degree": 0.8571428571428571, - "density": 0.14285714285714285 - }, - "trajectory_embedding": [ - 0.149007648229599, - 0.05697751045227051, - -0.07104989141225815, - 0.04486839473247528, - -0.15542572736740112, - -0.011686301790177822, - 0.04617166519165039, - 0.17946068942546844, - 0.2943315804004669, - -0.3095993399620056, - -0.16567997634410858, - 0.13099738955497742, - -0.5008986592292786, - -0.13083820044994354, - -0.32352951169013977, - 0.1127810999751091, - 0.0062797837890684605, - 0.2857533097267151, - 0.03578118607401848, - -0.2438744306564331, - -0.44955646991729736, - 0.09019305557012558, - -0.19413788616657257, - -0.18186815083026886, - 0.14855201542377472, - -0.10573150962591171, - 0.22670722007751465, - 0.3431566059589386, - 0.25918665528297424, - 0.4009040296077728, - 0.25138425827026367, - 0.21701757609844208, - -0.1275353878736496, - -0.041662055999040604, - -0.1936698704957962, - 0.39774492383003235, - 0.28334736824035645, - 0.3006748557090759, - -0.05811043456196785, - 0.099476158618927, - 0.024897025898098946, - 0.04008123278617859, - 0.7861876487731934, - 0.33442223072052, - 0.5511078238487244, - -0.5902429223060608, - 0.10700448602437973, - 0.4182768166065216, - -0.46466681361198425, - -0.16228441894054413, - 0.29604339599609375, - 0.6228020787239075, - 0.6718801856040955, - -0.0856071338057518, - 0.4806903302669525, - -0.1726718693971634, - -0.45378050208091736, - -0.27531421184539795, - -0.18921567499637604, - 0.001660780399106443, - -0.06694838404655457, - 0.006187962833791971, - 0.02872987650334835, - 0.06448187679052353, - -0.2927342653274536, - -0.23351627588272095, - -0.0652415081858635, - 0.09601820260286331, - -0.04088536277413368, - -0.4197840392589569, - -0.3027867078781128, - -0.31879428029060364, - -0.023790748789906502, - 0.15710191428661346, - 0.1020817682147026, - -0.26068592071533203, - 0.4140666723251343, - 0.09653288871049881, - 0.07721195369958878, - 0.10294198989868164, - 0.11773952096700668, - -0.026951700448989868, - 0.16670550405979156, - 0.13637231290340424, - -0.519151508808136, - 0.2775932252407074, - -0.00046344599104486406, - -0.22246699035167694, - -0.12537837028503418, - 0.15984176099300385, - 0.36777088046073914, - -0.26208433508872986, - 0.0554586797952652, - -0.07536662369966507, - 0.11229067295789719, - 0.016261518001556396, - 0.1107102707028389, - 0.44245752692222595, - 1.0226553678512573, - 0.10942617803812027, - 0.2453603595495224, - 0.08867114782333374, - 0.1637381911277771, - 0.01304391399025917, - 0.4720216989517212, - -0.1749333143234253, - 0.1800566166639328, - -0.5137348771095276, - -0.13287748396396637, - 0.4445939064025879, - 0.05004940554499626, - -0.006668818648904562, - 0.048609986901283264, - -0.30040109157562256, - 0.1704709529876709, - 0.17853577435016632, - -0.145791694521904, - 0.16842786967754364, - 0.017253974452614784, - -0.3570859432220459, - 0.020373128354549408, - -0.09356409311294556, - 0.2545779049396515, - 0.3598313629627228, - -0.3550417423248291, - -0.12489408254623413, - -0.16374334692955017, - 0.24083946645259857, - -0.01862839050590992, - 0.1879625916481018, - -0.2949100434780121, - -0.02791723422706127, - -0.004016424063593149, - 0.27251365780830383, - -0.17022550106048584, - 0.2353556901216507, - -0.48334452509880066, - 0.009961963631212711, - -1.1405383348464966, - 0.3128035366535187, - -0.4816643297672272, - -0.02448660135269165, - 0.06021618843078613, - -0.32783523201942444, - -0.11910342425107956, - -0.20099790394306183, - -0.18281759321689606, - 0.1917140632867813, - 0.0192653089761734, - -0.08564118295907974, - -0.14051686227321625, - 0.07632440328598022, - 0.15270088613033295, - 0.12322612851858139, - 0.13859768211841583, - 0.19256387650966644, - 0.13894349336624146, - 0.31800511479377747, - 0.07130169123411179, - -0.09077480435371399, - 0.07194185256958008, - 0.22424404323101044, - -0.16708149015903473, - -0.28174448013305664, - -0.024050967767834663, - -0.6272649168968201, - 0.25074413418769836, - -0.30784299969673157, - 0.4230305254459381, - 0.027091143652796745, - -0.2656240463256836, - 0.21628089249134064, - -0.18350084125995636, - 0.5172727704048157, - 0.3899320065975189, - 0.2974042594432831, - 0.1507805734872818, - -0.11765577644109726, - 0.11483273655176163, - 0.08034267276525497, - -0.029079964384436607, - 0.08371546864509583, - 0.5299779772758484, - 0.16074520349502563, - -0.28274765610694885, - 0.18512870371341705, - 0.35349830985069275, - -0.08689109236001968, - -0.16383282840251923, - -0.18638324737548828, - 0.5324181318283081, - -0.21633632481098175, - 0.23408548533916473, - -0.485595703125, - -0.044341180473566055, - -0.11767390370368958, - -0.22833393514156342, - -0.3595254123210907, - 0.07273086160421371, - -0.19727647304534912, - 0.08856060355901718, - 0.22125166654586792, - -0.26393067836761475, - 0.19978415966033936, - 0.1741233468055725, - -0.13679815828800201, - 0.33861806988716125, - 0.03460460156202316, - 0.07096666097640991, - -0.21560980379581451, - -0.22658932209014893, - 0.22366748750209808, - -0.07749990373849869, - 0.17199063301086426, - 0.011743745766580105, - -0.2402915358543396, - 0.29535284638404846, - -0.15165047347545624, - -0.08127845078706741, - 0.19690066576004028, - -0.04964834451675415, - -0.10646134614944458, - 0.20673716068267822, - -0.08133119344711304, - -0.4514186680316925, - 0.13141925632953644, - 0.17143623530864716, - 0.10138457268476486, - 0.2048143595457077, - -0.2293601781129837, - 0.11699935793876648, - -0.25878632068634033, - 0.3019300401210785, - -0.11675987392663956, - -0.20490455627441406, - -0.38961026072502136, - 0.1863611936569214, - -0.16779251396656036, - -0.3139910399913788, - 0.3562077581882477, - -0.2090889811515808, - -0.17176514863967896, - 0.16997289657592773, - -0.18476690351963043, - -0.024093022570014, - -0.3006589114665985, - -0.11506547778844833, - 0.3047492504119873, - 0.10178350657224655, - 0.4658617675304413, - 0.25754064321517944, - -0.01713309995830059, - 0.11407976597547531, - -0.40779078006744385, - -0.22889433801174164, - -0.35780858993530273, - -0.18386787176132202, - -0.1420406997203827, - -0.3163550794124603, - -0.14408431947231293, - 0.14728008210659027, - -0.28708189725875854, - 0.023967450484633446, - -0.4421789348125458, - -0.07866193354129791, - -0.04291430115699768, - -0.08899173140525818, - 0.11663661152124405, - -0.07704287767410278, - 0.21149499714374542, - -0.33184853196144104, - -0.33073291182518005, - -0.06890415400266647, - 0.04562417045235634, - 0.36256325244903564, - 0.21456176042556763, - 0.05299869552254677, - 0.15182499587535858, - 0.35609832406044006, - -0.4883159101009369, - -0.4211416244506836, - 0.25479933619499207, - -0.27316728234291077, - 0.19628626108169556, - -0.16280026733875275, - 0.1290157288312912, - 0.5500603318214417, - -0.08216161280870438, - 0.2718645930290222, - 0.45637276768684387, - 0.6205407977104187, - 0.07053525745868683, - -0.23062360286712646, - 0.019573288038372993, - 0.07509854435920715, - -0.08323037624359131, - -0.480135440826416, - 0.17558638751506805, - -0.0010581724345684052, - -0.08917411416769028, - -0.2953397035598755, - 0.18188220262527466, - 0.03344329074025154, - -0.4368859827518463, - -0.22266727685928345, - 0.7819164395332336, - 0.18446584045886993, - 0.005073959473520517, - 0.060471970587968826, - 0.4507676661014557, - 0.5521776080131531, - -0.028287597000598907, - -0.23836326599121094, - -0.06702963262796402, - -0.135664701461792, - -0.14731119573116302, - -0.17997999489307404, - 0.04193156957626343, - 0.2573223412036896, - -0.08895894885063171, - -0.04747382923960686, - 0.3244934380054474, - -0.15926189720630646, - -0.18268613517284393, - 0.029997989535331726, - 0.12768729031085968, - 0.05139603093266487, - -0.3358854353427887, - 0.3097713887691498, - -0.12237755209207535, - 0.008778358809649944, - 0.4478125274181366, - -0.2024850994348526, - -0.31536558270454407, - 0.4129892587661743, - -0.07838169485330582, - -0.4384450912475586, - 0.2800520658493042, - -0.17816059291362762, - -0.14930997788906097, - 0.30301350355148315, - 0.02044587768614292, - 0.08903608471155167, - -0.28684842586517334, - 0.06334658712148666, - 0.08009166270494461, - 0.13011053204536438, - -0.11726080626249313, - 0.04447104409337044, - 0.08492981642484665, - 0.6273911595344543, - 0.05128438398241997, - -0.0356660895049572, - 0.2713146507740021, - -0.07807900756597519, - -0.1936909407377243, - -0.06714644283056259, - 0.09671730548143387, - 0.11931876093149185, - -0.1588907688856125, - -0.2965388000011444, - -0.1887933760881424, - 0.21425509452819824, - 0.11581790447235107, - -0.2643400728702545, - -0.09745999425649643, - 0.20047511160373688, - 0.03081912361085415, - 0.05880020931363106, - 0.3479445278644562, - 0.3094443678855896, - -0.06010464206337929, - 0.4842193126678467, - 0.07414832711219788, - 0.059434741735458374, - 0.33504167199134827, - -0.11445585638284683, - 0.2179364413022995, - -0.12303794175386429, - -0.3619827330112457, - -0.37133118510246277, - 0.02734423615038395, - -0.08971305936574936, - -0.11990188807249069, - 0.09364838153123856, - -0.03146100416779518, - 0.1355171650648117, - -0.12323638051748276, - 0.3047865033149719, - 0.061490487307310104, - 0.22293590009212494, - -0.030570467934012413, - 0.4001728594303131, - -0.06571483612060547, - -0.4570596516132355, - 0.1613452434539795, - 0.04285292699933052, - 0.3343174159526825, - -0.14213846623897552, - -0.014229093678295612, - -0.17103296518325806, - 0.3143782913684845, - 0.07914572209119797, - -0.0579678900539875, - 0.08399105817079544, - -0.06174285337328911, - -0.23327653110027313, - -0.33439770340919495, - -0.05013931915163994, - -0.07882692664861679, - -0.24108530580997467, - -0.17518304288387299, - 0.2754305899143219, - -0.1648344248533249, - -0.23642277717590332, - -0.13911962509155273, - 0.21949927508831024, - 0.3323073089122772, - -0.16319380700588226, - 0.08721184730529785, - 0.21311324834823608, - 0.030476197600364685, - 0.2524578869342804, - -0.24762143194675446, - 0.17539478838443756, - -0.0546969473361969, - -0.16938011348247528, - -0.16302134096622467, - 0.09760161489248276, - -0.22073858976364136, - 0.11322716623544693, - 0.10706927627325058, - 0.1693253070116043, - 0.15796422958374023, - -0.005690584424883127, - 0.001867234124802053, - 0.2488340139389038, - -0.4359818398952484, - 0.04728331044316292, - 0.2851915657520294, - 0.13334141671657562, - 0.3754366338253021, - -0.028550080955028534, - -0.22848619520664215, - -0.04099491983652115, - -0.19737505912780762, - -0.425163596868515, - 0.24991482496261597, - 0.13335436582565308, - -0.2031845599412918, - 0.0011668031802400947, - -0.02215595543384552, - 0.08256707340478897, - -0.007839750498533249, - 0.19528000056743622, - 0.061652760952711105, - 0.15844516456127167, - -0.11049958318471909, - -0.33354783058166504, - -0.04695061966776848, - -0.25695955753326416, - -0.2144540399312973, - -0.37735700607299805, - 0.5394444465637207, - 0.3611312806606293, - -0.20879878103733063, - -0.019346101209521294, - 0.0793212428689003, - -0.3387911021709442, - -0.14294372498989105, - 0.03830769285559654, - 0.04001275822520256, - 0.5022501349449158, - 0.1165076494216919, - -0.22010208666324615, - 0.20333725214004517, - -0.3667992055416107, - 0.22271113097667694, - 0.24960047006607056, - 0.20079582929611206, - 0.43398669362068176, - 0.2691831886768341, - 0.17220944166183472, - 0.31041523814201355, - 0.03018771857023239, - -0.008522558957338333, - 0.32888588309288025, - -0.09168529510498047, - 0.0590447373688221, - -0.11439289897680283, - -0.20970843732357025, - 0.4053797721862793, - -0.3060360550880432, - 0.20626819133758545, - 0.17143411934375763, - 0.35203421115875244, - -0.26462939381599426, - -0.11910101026296616, - 0.05238369479775429, - -0.1582801789045334, - -0.2414531707763672, - -0.39464226365089417, - -0.19074887037277222, - 0.0827004611492157, - -0.14973881840705872, - -0.14191173017024994, - 0.3990061581134796, - 0.1976037472486496, - 0.31225305795669556, - 0.18471308052539825, - -0.297519326210022, - -0.471179336309433, - 0.005472133401781321, - 0.23930169641971588, - 0.11728083342313766, - -0.055923473089933395, - -0.17359934747219086, - 0.17742641270160675, - 0.4499150514602661, - -0.05114326998591423, - -0.17160773277282715, - 0.016612103208899498, - 0.01164229679852724, - -0.08964037150144577, - -0.022309033200144768, - -0.17685557901859283, - 0.048840731382369995, - -0.3607109487056732, - 0.16469454765319824, - -0.2612478733062744, - -0.2049931436777115, - 0.1359492987394333, - -0.10289991647005081, - -0.36701321601867676, - -0.20581389963626862, - 0.23771703243255615, - -0.24489180743694305, - -0.06095251813530922, - 0.14935438334941864, - 0.6309964060783386, - 0.16023217141628265, - -0.1311873346567154, - -0.0018406963208690286, - -0.436548113822937, - -0.011086353100836277, - 0.21615247428417206, - -0.1874493807554245, - 0.15074525773525238, - 0.14205308258533478, - 0.2843947112560272, - 0.2643941342830658, - 0.06968189775943756, - -0.5250326991081238, - -0.012063908390700817, - 0.20149286091327667, - 0.22135229408740997, - -0.2565729022026062, - -10.8950777053833, - -0.014275922439992428, - -0.1610095053911209, - 0.3567069470882416, - -0.2709408104419708, - 0.14687101542949677, - 0.067961186170578, - -0.15768249332904816, - 0.27950525283813477, - 0.09456899762153625, - -0.27138373255729675, - 0.21690122783184052, - 0.1255103498697281, - 0.06853402405977249, - -0.008888174779713154, - -0.2841257154941559, - -0.21313214302062988, - 0.11108551174402237, - 0.03102562390267849, - 0.0814855769276619, - 0.29929983615875244, - 0.47041916847229004, - -0.24838174879550934, - 0.39112576842308044, - 0.2612858712673187, - -0.22028137743473053, - -0.31997671723365784, - 0.6020379662513733, - 0.01608445681631565, - -0.4045555591583252, - 0.3231101930141449, - 0.17312417924404144, - -0.2591648995876312, - -0.13635623455047607, - -0.01277694571763277, - -0.14072541892528534, - -0.11625625938177109, - 0.018377259373664856, - -0.10914082080125809, - -0.045088425278663635, - 0.000920632213819772, - -0.2967469096183777, - 0.10532590001821518, - 0.3460637032985687, - -0.14897824823856354, - -0.3820381164550781, - -0.2983250319957733, - -1.4016674757003784, - 0.26880043745040894, - 0.3116580545902252, - 0.4638519287109375, - -0.027874866500496864, - 0.060319047421216965, - -0.08256819099187851, - -0.5507493615150452, - 0.1712900847196579, - -0.16875310242176056, - 0.1421382576227188, - 0.11727798730134964, - -0.0918300449848175, - 0.08475017547607422, - -0.1579543799161911, - 0.38024428486824036, - -0.1388607770204544, - -0.204164519906044, - 0.12698544561862946, - -0.17042918503284454, - 0.11051306128501892, - -0.1675906777381897, - -0.09794119000434875, - -0.5144696831703186, - -0.1455618292093277, - -0.09247380495071411, - 0.150482177734375, - 0.5692696571350098, - -0.004526566714048386, - -0.40319791436195374, - 0.07533236593008041, - 0.05501477047801018, - 0.25285276770591736, - -0.04087298363447189, - 0.08317755162715912, - 0.03346331790089607, - -0.07452282309532166, - -0.0284599456936121, - -0.09167101979255676, - -0.0057683982886374, - 0.37427613139152527, - -0.02662895806133747, - 0.1479039043188095, - -0.03818412497639656, - 0.20068590342998505, - -0.10632433742284775, - -0.30764999985694885, - -0.36150798201560974, - 0.17749850451946259, - -0.021376987919211388, - 0.029844874516129494, - -0.012457233853638172, - -0.09485349804162979, - -0.10275135189294815, - -0.16390644013881683, - -0.0011399040231481194, - -0.5165593028068542, - -0.2219998836517334, - 0.24507911503314972, - 0.1719716340303421, - 0.1918819397687912, - 0.04207620397210121, - 0.1438349038362503, - -0.0004373118281364441, - -0.024351486936211586, - 0.32816576957702637, - 0.5062565207481384, - 0.12524114549160004, - -0.15760143101215363, - -0.1365232914686203, - 0.0646929070353508, - -0.4370640814304352, - 0.026082945987582207, - 0.3360789716243744, - -0.1301776021718979, - 0.3196265995502472, - 0.5236454606056213, - -0.05504294112324715, - -0.27307501435279846, - 0.9474371075630188, - -0.10833009332418442, - 0.33625730872154236, - -0.2507100999355316, - 0.3430663049221039, - -0.16495995223522186, - -0.18020008504390717, - -0.020167561247944832, - 0.41105031967163086, - -0.38351163268089294, - 0.5739270448684692, - 0.02605474181473255, - -0.5437390208244324, - 0.14681516587734222, - -0.279568612575531, - 0.33418893814086914, - 0.292450875043869, - 0.3269631564617157, - -0.11713773012161255, - -0.30824846029281616, - -0.14510640501976013, - 0.01003886479884386, - -0.48418179154396057, - -0.3084162473678589, - -0.06875260919332504, - -0.040361519902944565, - 0.0021706235129386187, - -0.3749571740627289, - 0.347759872674942, - 0.0030957460403442383, - -0.20894260704517365, - -0.13570784032344818, - -0.4610741138458252, - -0.05976365506649017, - 0.33356180787086487, - 0.6913776397705078, - 0.10544293373823166, - -0.007619538810104132, - -0.15609662234783173, - 0.032743439078330994, - 0.004234522581100464, - 0.08795130997896194, - 0.14947186410427094, - -0.05471336841583252, - -0.4978923797607422, - 0.10482891649007797, - 0.07960840314626694, - -0.3150716722011566, - -0.2566353976726532, - -0.46026530861854553, - 0.14011268317699432, - 0.043455760926008224, - -0.14900940656661987, - 0.1598261594772339, - 0.30667534470558167, - -0.06878077238798141, - -0.07167943567037582, - -0.13321931660175323, - 0.2081092745065689, - 0.1455438882112503, - 0.07379525154829025, - 0.16254504024982452, - -0.1644214540719986, - -0.42043641209602356, - -0.3934575021266937, - 0.22928230464458466, - -0.06722743064165115, - -0.06020986661314964, - 0.08721967786550522, - 0.21020393073558807, - -0.30149802565574646, - 0.09720593690872192, - -0.2895645797252655, - 0.053723305463790894, - -0.21436144411563873, - 0.09759900718927383, - 0.3977299630641937, - -0.3412288427352905, - 0.037040602415800095, - -0.06027490273118019, - 0.29710695147514343, - 0.12309661507606506, - -0.23711462318897247, - 0.25581642985343933, - 0.03416205197572708 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_018.json b/src/benchmark/output/results/results_graph_018.json deleted file mode 100644 index f950ec1..0000000 --- a/src/benchmark/output/results/results_graph_018.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 52-year-old male diagnosed with primary lung adenocarcinoma in 2023. He presented with severe, debilitating shoulder pain (VAS 9) in the low dorsal area, which prompted further investigation and diagnosis.\n\n**Timeline of Diagnoses:**\n\n1. **Primary Lung Adenocarcinoma Diagnosis:** The patient was diagnosed with primary lung adenocarcinoma in 2023.\n2. **Shoulder Pain Presentation:** The patient presented with severe, debilitating shoulder pain (VAS 9) in the low dorsal area, which prompted further investigation and diagnosis.\n3. **Compression Fracture Diagnosis:** A CT scan revealed a compression fracture of the T8 vertebral body with multiple fracture lines and a mixed lytic-sclerotic tumor component.\n4. **Pathological Fracture Diagnosis:** The patient was diagnosed with pathological fracture due to metastasis from lung adenocarcinoma.\n5. **Treatment of Pathological Fracture:** The patient underwent treatment for the pathological fracture, including microwave ablation and SpineJack system.\n\n**Timeline of Treatments:**\n\n1. **Microwave Ablation and SpineJack System Treatment:** The patient received treatment with microwave ablation and SpineJack system to manage the pathological fracture.\n2. **Initial CT Scan:** An initial CT scan was performed to assess the lesion's size, location, and radiological characteristics.\n3. **Conscious Sedation Administration:** Patient was positioned prone, and conscious sedation was administered using continuous intravenous infusion of fentanyl citrate.\n\n**Timeline of Outcomes:**\n\n1. **Pathological Fracture Management:** The patient's pathological fracture was successfully managed with microwave ablation and SpineJack system treatment.\n2. **Lesion Assessment:** The initial CT scan provided valuable information on the lesion's size, location, and radiological characteristics.\n3. **Patient Recovery:** The patient recovered from the procedure without any significant complications.\n\n**Conclusion:**\nThe patient underwent a comprehensive evaluation for severe shoulder pain, which led to the diagnosis of compression fracture due to metastasis from lung adenocarcinoma. Treatment with microwave ablation and SpineJack system was effective in managing the pathological fracture, and the initial CT scan provided valuable information on the lesion's characteristics. The patient recovered without any significant complications.\n\n**Recommendations:**\n\n1. **Regular Follow-up:** Regular follow-up appointments are recommended to monitor the patient's condition and adjust treatment as needed.\n2. **Imaging Studies:** Imaging studies should be performed regularly to assess the progression of the disease and the effectiveness of treatment.\n3. **Pain Management:** Pain management strategies should be implemented to ensure optimal pain control for the patient.\n\n**Limitations:**\nThis case report is limited by its retrospective nature, which may not capture all relevant information or outcomes. Further follow-up studies are necessary to fully evaluate the effectiveness of treatment and monitor long-term outcomes.", - "bertscore": { - "precision": [ - 0.6227207183837891 - ], - "recall": [ - 0.6329694986343384 - ], - "f1": [ - 0.6278032660484314 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 10, - "edge_count": 9, - "avg_in_degree": 0.9, - "density": 0.1 - }, - "trajectory_embedding": [ - 0.18080228567123413, - -0.01176790613681078, - 0.10657219588756561, - 0.21200677752494812, - 0.1496204435825348, - 0.09226961433887482, - -0.08451242744922638, - 0.22056791186332703, - 0.5967764258384705, - -0.16920879483222961, - -0.2202618569135666, - -0.1208207830786705, - -0.3906412720680237, - -0.08555690199136734, - -0.24673983454704285, - 0.1816776692867279, - 0.06529556214809418, - 0.02827569469809532, - -0.09853260964155197, - -0.2589186131954193, - -0.23060894012451172, - 0.1607668101787567, - -0.4982452988624573, - -0.12803354859352112, - 0.4065679609775543, - -0.054250918328762054, - 0.4879893660545349, - 0.47116923332214355, - 0.32868561148643494, - 0.3994295001029968, - 0.12956276535987854, - -0.16741320490837097, - 0.37050727009773254, - 0.008158018812537193, - -0.27188247442245483, - 0.30122601985931396, - 0.11358846724033356, - 0.4379844069480896, - -0.06921736896038055, - -0.058322757482528687, - 0.0398700088262558, - -0.018977338448166847, - 0.6379135847091675, - 0.07238949835300446, - 0.3782787024974823, - -1.0066730976104736, - -0.07919521629810333, - 0.6632041931152344, - -0.4872465133666992, - -0.22507886588573456, - 0.1191381961107254, - 0.9122927784919739, - 0.4148992598056793, - -0.31649288535118103, - 0.1749749779701233, - -0.04647786542773247, - -0.10799217224121094, - -0.33544838428497314, - -0.07086233049631119, - -0.06648202985525131, - -0.040213145315647125, - -0.2936286926269531, - 0.6395710706710815, - -0.12639407813549042, - -0.2798466086387634, - -0.2717442512512207, - -0.2166782170534134, - 0.02977166511118412, - 0.090509794652462, - -0.43489742279052734, - 0.01880752667784691, - -0.1073092669248581, - -0.1822459101676941, - -0.03869251534342766, - -0.012155568227171898, - -0.0800856500864029, - 0.44240719079971313, - -0.27236056327819824, - 0.06528262794017792, - 0.2615131735801697, - -0.1727137714624405, - -0.07845132797956467, - -0.14616914093494415, - 0.4488287568092346, - -0.41877931356430054, - -0.023292502388358116, - -0.1205289214849472, - -0.1838746964931488, - -0.4314506947994232, - 0.024112675338983536, - 0.4491371512413025, - -0.08627332001924515, - -0.11888758093118668, - -0.05572397634387016, - -0.17336609959602356, - 0.09026477485895157, - 0.4665488600730896, - 0.25556525588035583, - 0.8552974462509155, - -0.09775623679161072, - 0.22694818675518036, - 0.023394756019115448, - 0.07997588813304901, - -0.12623944878578186, - 0.6304507851600647, - 0.0905766636133194, - 0.2788030505180359, - -0.5239270925521851, - 0.1359589844942093, - 0.4220182001590729, - 0.047534264624118805, - -0.31927675008773804, - 0.12090591341257095, - -0.21242551505565643, - 0.27985817193984985, - 0.06889084726572037, - -0.029826965183019638, - 0.23574984073638916, - 0.35847771167755127, - -0.4014444351196289, - -0.21308934688568115, - 0.02410946972668171, - 0.1135321706533432, - 0.40135693550109863, - -0.21737270057201385, - 0.019315669313073158, - -0.09644161909818649, - -0.10575883090496063, - 0.25135594606399536, - -0.03173360973596573, - -0.5806550979614258, - -0.030823951587080956, - -0.06364428251981735, - 0.1700437366962433, - 0.01817057654261589, - 0.07863375544548035, - -0.25125327706336975, - -0.14459624886512756, - -1.0069786310195923, - 0.30785617232322693, - -0.20543141663074493, - -0.1808246374130249, - -0.07307955622673035, - -0.37389668822288513, - -0.1739678680896759, - -0.25672462582588196, - -0.056980349123477936, - -0.009938669390976429, - -0.09601225703954697, - -0.15805765986442566, - 0.1939161717891693, - 0.07921172678470612, - 0.1661098599433899, - 0.428825318813324, - 0.08629055321216583, - -0.13798007369041443, - -0.014471838250756264, - 0.2117127925157547, - 0.03313329070806503, - -0.2310362309217453, - 0.1552940160036087, - 0.3762097954750061, - 0.22943255305290222, - -0.10934446007013321, - -0.019935717806220055, - -0.5073190331459045, - 0.14993512630462646, - 0.02047419175505638, - 0.08063825219869614, - -0.01758430339396, - -0.14688755571842194, - 0.052874110639095306, - -0.5299620628356934, - 0.5163717269897461, - 0.14194446802139282, - 0.3084823787212372, - -0.05514836311340332, - -0.24508270621299744, - -0.052499353885650635, - 0.25067028403282166, - 0.232674241065979, - -0.23664537072181702, - 0.8400418162345886, - 0.02948017790913582, - -0.04404253885149956, - 0.16941367089748383, - 0.02503216825425625, - 0.14574596285820007, - 0.10063252598047256, - 0.16167397797107697, - 0.4748764932155609, - -0.4223252832889557, - 0.4751572012901306, - -0.4439395070075989, - -0.02406109683215618, - 0.023899894207715988, - -0.2207961082458496, - -0.18593929708003998, - 0.021083667874336243, - -0.09107114374637604, - 0.1557237207889557, - -0.08171699941158295, - -0.455692857503891, - 0.12328244745731354, - 0.0853915587067604, - -0.09796318411827087, - 0.24080348014831543, - 0.0092757698148489, - 0.06535378843545914, - -0.06035728380084038, - -0.24344511330127716, - 0.08912792056798935, - -0.31067895889282227, - 0.10331477969884872, - 0.08217747509479523, - -0.31495505571365356, - 0.32268670201301575, - 0.027277514338493347, - -0.046530582010746, - 0.15847209095954895, - -0.027692511677742004, - -0.2804194390773773, - -0.16271880269050598, - -0.14289097487926483, - -0.5133852362632751, - 0.22814197838306427, - -0.0018551737302914262, - 0.38071030378341675, - 0.2576569616794586, - -0.021414145827293396, - -0.04249856621026993, - -0.43571606278419495, - 0.3212115168571472, - -0.1930529624223709, - -0.06902634352445602, - -0.23078212141990662, - 0.32586660981178284, - -0.046510279178619385, - 0.19792813062667847, - 0.47486042976379395, - -0.12198323011398315, - -0.1150355115532875, - 0.1445361077785492, - -0.2828145921230316, - -0.10201382637023926, - -0.30554190278053284, - -0.03902518004179001, - 0.28339534997940063, - -0.13020867109298706, - 0.3814140260219574, - 0.14740443229675293, - -0.16865724325180054, - 0.04686436802148819, - -0.10992328077554703, - -0.2952519655227661, - -0.419279009103775, - -0.01984257623553276, - -0.02636871300637722, - -0.62844318151474, - 0.3164001405239105, - 0.22354421019554138, - -0.042722187936306, - 0.0024397671222686768, - -0.2095610797405243, - -0.10780356824398041, - 0.23694714903831482, - 0.1830405592918396, - 0.12091624736785889, - -0.07943491637706757, - 0.09637685120105743, - 0.061220504343509674, - -0.2557205855846405, - -0.08662181347608566, - -0.06079213693737984, - -0.15851108729839325, - 0.005804705433547497, - -0.20028109848499298, - -0.31456807255744934, - -0.01416665781289339, - -0.32673734426498413, - 0.0026571513153612614, - 0.30156320333480835, - 0.0163559727370739, - 0.12551644444465637, - 0.1689138114452362, - 0.4393697679042816, - 0.1511962115764618, - 0.004254430532455444, - -0.058884941041469574, - 0.4741742014884949, - 0.42894449830055237, - -0.04851292073726654, - -0.03823057562112808, - 0.0345749594271183, - -0.0689871683716774, - -0.083586685359478, - -0.3363313674926758, - 0.5168023109436035, - 0.1351577341556549, - 0.19023475050926208, - 0.001547901309095323, - 0.3912992775440216, - 0.09638214111328125, - -0.2628122568130493, - 0.1194857507944107, - 0.3332417607307434, - -0.050922941416502, - 0.24345159530639648, - 0.12254858016967773, - 0.32288235425949097, - 0.3163105249404907, - -0.09431519359350204, - 0.048666369169950485, - 0.10329260677099228, - -0.2740444242954254, - -0.37506094574928284, - -0.0034713209606707096, - 0.10616147518157959, - 0.4855469763278961, - -0.056008774787187576, - -0.20518632233142853, - -0.009745949879288673, - -0.45294389128685, - -0.0406918004155159, - -0.270822674036026, - -0.26217371225357056, - -0.0032680972944945097, - -0.09911789000034332, - 0.43520087003707886, - 0.21570630371570587, - -0.04201502352952957, - 0.3989032804965973, - -0.43160349130630493, - -0.16422918438911438, - 0.09664754569530487, - -0.2197050303220749, - -0.5856510400772095, - 0.22343280911445618, - -0.23632416129112244, - 0.04095623642206192, - 0.2782185673713684, - -0.20104317367076874, - -0.08752135187387466, - -0.037702567875385284, - 0.534119725227356, - -0.15990714728832245, - -0.17288538813591003, - -0.11948715150356293, - 0.22521451115608215, - 0.14077888429164886, - 0.4337480962276459, - 0.24267983436584473, - 0.22421208024024963, - 0.5820209383964539, - 0.21926827728748322, - -0.5478330850601196, - 0.054576385766267776, - -0.0816010981798172, - 0.3782133460044861, - 0.09617184847593307, - -0.052605561912059784, - -0.11833552271127701, - 0.1349993199110031, - 0.3371524214744568, - -0.511915385723114, - -0.07551680505275726, - 0.39216241240501404, - 0.1411595642566681, - -0.1559242308139801, - 0.1100635752081871, - 0.21536299586296082, - -0.1741642951965332, - 0.416384756565094, - -0.04623742029070854, - -0.11856915801763535, - 0.18833111226558685, - -0.11851085722446442, - 0.16858772933483124, - -0.08077974617481232, - -0.21286806464195251, - -0.42354297637939453, - 0.11213965713977814, - -0.23250934481620789, - -0.18660104274749756, - -0.008649994619190693, - -0.28246450424194336, - 0.12663178145885468, - -0.1894332617521286, - 0.1435701847076416, - 0.0703112930059433, - 0.250792920589447, - 0.04386848211288452, - 0.22878336906433105, - -0.009622213430702686, - -0.04477044567465782, - 0.2578672468662262, - 0.05461767315864563, - -0.059029899537563324, - -0.032909177243709564, - -0.12912902235984802, - -0.18240796029567719, - 0.6154057383537292, - 0.00046119242324493825, - 0.09849599748849869, - 0.15228970348834991, - 0.26632770895957947, - -0.0188828743994236, - -0.3420865535736084, - -0.21050135791301727, - -0.18494465947151184, - 0.17218001186847687, - -0.0790201872587204, - -0.038812629878520966, - -0.43654608726501465, - -0.35641151666641235, - -0.20081551373004913, - -0.23381778597831726, - 0.1923908293247223, - -0.1263551265001297, - -0.19449038803577423, - 0.16276882588863373, - 0.32101160287857056, - 0.40700221061706543, - -0.35479816794395447, - 0.04592689871788025, - 0.08842023462057114, - -0.17675676941871643, - -0.19122156500816345, - 0.07573790103197098, - -0.2681026756763458, - -0.2921406328678131, - 0.14372174441814423, - 0.32090166211128235, - 0.13443772494792938, - -0.10093607753515244, - 0.14338117837905884, - 0.12543842196464539, - -0.3955574929714203, - -0.00841659028083086, - 0.04087035357952118, - 0.3690086007118225, - 0.2569124102592468, - 0.06731332838535309, - -0.5220013856887817, - -0.36011242866516113, - -0.2295265644788742, - -0.3029358983039856, - -0.03752909228205681, - 0.18121106922626495, - -0.00933180470019579, - -0.1240331158041954, - 0.31577903032302856, - 0.08201666176319122, - -0.11488574743270874, - 0.4317074418067932, - 0.04024495184421539, - 0.16195061802864075, - -0.1131494864821434, - -0.14419274032115936, - -0.13691599667072296, - -0.2709304392337799, - -0.19742998480796814, - -0.17759399116039276, - 0.29617875814437866, - 0.405205100774765, - -0.5471307039260864, - 0.04830843582749367, - 0.16349990665912628, - -0.15345445275306702, - 0.0077515216544270515, - -0.08132295310497284, - -0.30772310495376587, - 0.1594967544078827, - -0.22749805450439453, - -0.19870468974113464, - -0.049899645149707794, - 0.01719614863395691, - 0.08701404929161072, - 0.06250052154064178, - -0.05188096687197685, - 0.3555279076099396, - 0.1670723557472229, - -0.06035251170396805, - 0.5705299973487854, - -0.016568515449762344, - 0.06468668580055237, - 0.310992956161499, - -0.17957276105880737, - 0.10827712714672089, - -0.14532606303691864, - -0.11435351520776749, - 0.277736634016037, - -0.16965775191783905, - 0.004729387350380421, - 0.3133980929851532, - 0.022419599816203117, - -0.47710490226745605, - -0.13033826649188995, - -0.049325961619615555, - 0.08594794571399689, - -0.13482394814491272, - -0.12601934373378754, - -0.10331179946660995, - -0.1629619598388672, - 0.04431350901722908, - -0.01611955277621746, - 0.32885029911994934, - 0.4294351041316986, - 0.12616273760795593, - -0.011064747348427773, - -0.18425029516220093, - -0.3806869387626648, - 0.08866606652736664, - 0.1951519101858139, - 0.021320397034287453, - -0.015601697377860546, - -0.2960579991340637, - 0.3382592499256134, - 0.3266311287879944, - -0.14992554485797882, - 0.17268522083759308, - -0.0631607323884964, - 0.057071030139923096, - 0.25652024149894714, - 0.183600515127182, - -0.15713392198085785, - 0.049168724566698074, - -0.29920709133148193, - 0.16166158020496368, - -0.324540913105011, - 0.16019423305988312, - 0.24177980422973633, - -0.07650451362133026, - -0.5726067423820496, - -0.23133628070354462, - 0.18832817673683167, - -0.11637101322412491, - -0.19521956145763397, - 0.19697049260139465, - 0.35131922364234924, - -0.020310310646891594, - -0.4405250549316406, - 0.03495339676737785, - -0.49165233969688416, - -0.06041143089532852, - 0.027465611696243286, - -0.01696046069264412, - -0.2719774544239044, - -0.02638258971273899, - 0.6542733907699585, - 0.4646313786506653, - 0.12896105647087097, - -0.15519416332244873, - -0.022978512570261955, - 0.34370020031929016, - 0.2596079409122467, - -0.08083067834377289, - -10.481201171875, - -0.25835418701171875, - -0.28384846448898315, - 0.5044430494308472, - -0.07726659625768661, - 0.12268976867198944, - 0.24901223182678223, - -0.2417420893907547, - 0.09939704835414886, - 0.08386819064617157, - -0.14737458527088165, - -0.047819431871175766, - 0.29613196849823, - 0.14676813781261444, - 0.004237097688019276, - -0.10682084411382675, - -0.3216649293899536, - 0.02120881713926792, - 0.08521019667387009, - 0.272356778383255, - 0.25631073117256165, - 0.40576857328414917, - -0.13181361556053162, - 0.21475112438201904, - -0.053637586534023285, - -0.3384622037410736, - -0.24540598690509796, - 0.6930016279220581, - 0.19857126474380493, - -0.3681641221046448, - 0.07673364877700806, - 0.2106361836194992, - -0.25972265005111694, - 0.16568109393119812, - -0.13793453574180603, - -0.17157354950904846, - 0.04621996358036995, - 0.22452235221862793, - 0.4387247562408447, - -0.06328455358743668, - 0.005709358025342226, - -0.058704208582639694, - 0.2392045557498932, - 0.30752044916152954, - -0.02021036669611931, - -0.5520853996276855, - -0.18461112678050995, - -1.5094987154006958, - 0.3585963845252991, - 0.33253711462020874, - 0.12430952489376068, - -0.007720676250755787, - 0.1369563341140747, - 0.02615961991250515, - -0.2912444472312927, - 0.21794895827770233, - -0.2232695370912552, - -0.1398496925830841, - -0.10798479616641998, - 0.13098354637622833, - 0.006744260899722576, - -0.08222191780805588, - 0.7388594746589661, - 0.18307524919509888, - -0.3886552155017853, - 0.14155837893486023, - 0.250388503074646, - -0.2318299114704132, - -0.3808532655239105, - -0.8916643857955933, - -0.4975194036960602, - 0.08829494565725327, - -0.3031240701675415, - -0.07554978877305984, - 0.4941633343696594, - 0.04941884055733681, - -0.16369780898094177, - 0.2346387803554535, - 0.11115541309118271, - 0.2628590166568756, - 0.15798088908195496, - -0.05106746032834053, - 0.07955525070428848, - -0.01571587473154068, - -0.28826338052749634, - 0.09093034267425537, - 0.15528491139411926, - 0.42871707677841187, - 0.0803108960390091, - 0.1980857253074646, - -0.05221964791417122, - 0.5418431758880615, - 0.08626648038625717, - -0.10329276323318481, - -0.29989713430404663, - -0.02142104133963585, - -0.2526542544364929, - -0.019726034253835678, - -0.024580899626016617, - -0.18294721841812134, - -0.21072547137737274, - 0.26553022861480713, - -0.09661936014890671, - -0.29525822401046753, - -0.555350661277771, - 0.19318172335624695, - 0.06072841212153435, - 0.23232145607471466, - 0.019771840423345566, - -0.17774201929569244, - -0.38739025592803955, - 0.0640963539481163, - 0.06612581759691238, - 0.5564566850662231, - 0.11645855009555817, - 0.08258692175149918, - -0.005765484180301428, - -0.5227267742156982, - -0.06448572129011154, - 0.029370281845331192, - 0.459303081035614, - -0.3825070858001709, - 0.21516692638397217, - 0.5109866261482239, - 0.005237954668700695, - -0.03321230784058571, - 0.9885676503181458, - -0.17053072154521942, - 0.2725587487220764, - -0.17094235122203827, - 0.12407808005809784, - -0.004757312126457691, - -0.36118602752685547, - 0.08850610256195068, - 0.4966040253639221, - -0.3652281165122986, - 0.5549978017807007, - 0.21066689491271973, - -0.33831900358200073, - -0.11580425500869751, - -0.2081233561038971, - 0.7061569690704346, - 0.44655150175094604, - 0.2644329071044922, - -0.05232151225209236, - -0.17664991319179535, - -0.2868686318397522, - -0.004061572253704071, - -0.4278712272644043, - -0.30717217922210693, - -0.10365542024374008, - 0.21857771277427673, - 0.21416731178760529, - -0.2505403161048889, - 0.31649595499038696, - 0.012409175746142864, - -0.1728948950767517, - -0.4973970055580139, - -0.38191190361976624, - 0.2325998842716217, - 0.2052634209394455, - 0.6408977508544922, - -0.06420251727104187, - 0.07117738574743271, - 0.1161578893661499, - -0.022071728482842445, - -0.11899296194314957, - 0.08358817547559738, - -0.19331997632980347, - -0.04534788057208061, - -0.5590869188308716, - 0.13242803514003754, - 0.134657621383667, - -0.2665143311023712, - -0.07427165657281876, - -0.010571402497589588, - -0.03759165480732918, - -0.16223645210266113, - -0.2110995352268219, - -0.17650088667869568, - 0.43182405829429626, - -0.052093155682086945, - -0.04779242351651192, - -0.45683997869491577, - 0.022001590579748154, - 0.15714818239212036, - 0.32170289754867554, - 0.014694523997604847, - -0.4049762189388275, - -0.20063170790672302, - -0.5217366814613342, - 0.0972893238067627, - -0.2650051712989807, - -0.004584124777466059, - 0.05918153002858162, - 0.033948786556720734, - -0.07111585885286331, - 0.04798559099435806, - -0.005485606379806995, - 0.05956367775797844, - -0.27138304710388184, - 0.3143259584903717, - 0.3504866063594818, - -0.04908745735883713, - 0.14431913197040558, - -0.13152949512004852, - 0.18396052718162537, - 0.06691806763410568, - -0.21878103911876678, - 0.1946871131658554, - -0.25770455598831177 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_019.json b/src/benchmark/output/results/results_graph_019.json deleted file mode 100644 index 5551d00..0000000 --- a/src/benchmark/output/results/results_graph_019.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 54-year-old male who presented with facial and dorsal hand edema. He was diagnosed with small-cell lung cancer (SCLC) with hilar, mediastinal lymph node, and pleural metastases (cT1N3M1a, extensive stage) and a Performance Status (PS) score of 1.\n\n**Timeline of Diagnoses:**\n\n* July 2023: The patient presented with facial and dorsal hand edema, leading to the diagnosis of small-cell lung cancer.\n* September 9, 2024: The patient was admitted to the gastroenterology department due to a 5-day period of no bowel movement, resulting in a diagnosis of constipation.\n\n**Timeline of Treatments:**\n\n* July 2023: The patient started chemotherapy with four cycles of intravenous etoposide 160 mg (days 1-3), carboplatin (400 mg) on day 1, and serplulimab 300 mg on day 1 (Q3W).\n* After 18 cycles of chemotherapy and serplulimab maintenance: The patient experienced a partial response (PR).\n\n**Timeline of Outcomes:**\n\n* After two cycles of serplulimab treatment: The patient intermittently experienced hard stools and occasional constipation, relieved with glycerin suppositories.\n* September 9, 2024: The patient was admitted to the gastroenterology department due to a 5-day period of no bowel movement, resulting in a diagnosis of constipation.\n* Abdominal CT revealed diffuse dilatation and gas accumulation in the bowel, particularly the colon, suggesting incomplete intestinal obstruction.\n* Gastroscopy showed chronic atrophic gastritis (C2) with bile reflux.\n* Colonoscopy revealed a subpedunculated polyp approximately 1.5 cm in size, 20 cm from the anus, with smooth mucosa in the sigmoid colon.\n\n**Clinical Course:**\n\nThe patient's clinical course was marked by a series of diagnostic and therapeutic challenges. Initially, the patient presented with symptoms suggestive of small-cell lung cancer, which led to the initiation of chemotherapy and serplulimab maintenance. However, despite this treatment, the patient experienced worsening constipation, prompting further evaluation.\n\nFurther investigation revealed chronic atrophic gastritis (C2) with bile reflux, as well as a subpedunculated polyp in the sigmoid colon. These findings suggested incomplete intestinal obstruction and gastrointestinal distress, which were exacerbated by the patient's underlying small-cell lung cancer.\n\nThe patient's clinical course was ultimately marked by a series of diagnostic and therapeutic challenges, including worsening constipation, chronic atrophic gastritis, and gastrointestinal distress. Despite these challenges, the patient received treatment for their underlying small-cell lung cancer, as well as management for their gastrointestinal symptoms.\n\n**Conclusion:**\n\nThis case highlights the complexities of managing patients with multiple comorbidities, particularly those with small-cell lung cancer. The patient's clinical course was marked by a series of diagnostic and therapeutic challenges, including worsening constipation, chronic atrophic gastritis, and gastrointestinal distress. Despite these challenges, the patient received treatment for their underlying small-cell lung cancer, as well as management for their gastrointestinal symptoms.", - "bertscore": { - "precision": [ - 0.7377782464027405 - ], - "recall": [ - 0.7519990801811218 - ], - "f1": [ - 0.744820773601532 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 9, - "edge_count": 8, - "avg_in_degree": 0.8888888888888888, - "density": 0.1111111111111111 - }, - "trajectory_embedding": [ - 0.19909723103046417, - 0.12390078604221344, - -0.27012550830841064, - 0.19638073444366455, - 0.11007723957300186, - 0.15321364998817444, - -0.10099908709526062, - 0.23281972110271454, - 0.6538661122322083, - -0.3013831377029419, - -0.03854934498667717, - -0.08443812280893326, - -0.5399647355079651, - -0.23934105038642883, - -0.10716229677200317, - 0.29621395468711853, - -0.2592211961746216, - 0.2792671024799347, - -0.25490981340408325, - -0.23020631074905396, - -0.29704248905181885, - 0.12899354100227356, - -0.5010572075843811, - 0.1330016404390335, - 0.18603765964508057, - 0.030646972358226776, - 0.4461609423160553, - 0.7296259999275208, - 0.10095615684986115, - 0.3112495243549347, - 0.14305222034454346, - -0.1818583607673645, - 0.1911737322807312, - 0.016829578205943108, - -0.26111307740211487, - 0.1700342744588852, - 0.17858237028121948, - 0.29006248712539673, - -0.1708105504512787, - 0.08543959259986877, - -0.15736167132854462, - -0.002793323714286089, - 0.8496239185333252, - 0.25984305143356323, - 0.20885822176933289, - -0.8013790249824524, - 0.029717378318309784, - 0.5803494453430176, - -0.34097912907600403, - -0.46418496966362, - 0.33596235513687134, - 0.7838987112045288, - 0.4716772437095642, - -0.49436071515083313, - 0.43013617396354675, - -0.33885571360588074, - -0.0917196124792099, - -0.24095644056797028, - -0.20423835515975952, - -0.0022659103851765394, - -0.05130799114704132, - -0.37365174293518066, - 0.42869213223457336, - -0.35488346219062805, - -0.17748013138771057, - -0.19142718613147736, - -0.33871763944625854, - 0.06410905718803406, - -0.01672314666211605, - -0.3155437409877777, - -0.11558156460523605, - -0.22111405432224274, - -0.13510248064994812, - 0.014290805906057358, - -0.04450581222772598, - 0.01796274073421955, - 0.4593769311904907, - -0.1122528687119484, - 0.23057852685451508, - 0.10651896893978119, - -0.15196967124938965, - -0.20288540422916412, - -0.14287078380584717, - 0.2750104069709778, - -0.3845120966434479, - -0.1304098665714264, - -0.12232924997806549, - -0.25440073013305664, - -0.45816025137901306, - 0.123037189245224, - -0.02416444569826126, - -0.5225105285644531, - 0.1453988254070282, - -0.17666690051555634, - -0.015996700152754784, - 0.2545388638973236, - 0.5004193782806396, - 0.06407417356967926, - 0.9713221788406372, - 0.07305207848548889, - 0.1709176003932953, - -0.09464304894208908, - 0.19971032440662384, - -0.15980851650238037, - 0.22772282361984253, - -0.1274232268333435, - 0.171792134642601, - -0.5795132517814636, - 0.35699597001075745, - 0.5003740787506104, - 0.028167052194476128, - -0.19489189982414246, - -0.10832971334457397, - -0.3410586714744568, - 0.3480602502822876, - 0.011513292789459229, - 0.12778586149215698, - 0.23461419343948364, - 0.370263934135437, - -0.3954519033432007, - -0.17107993364334106, - -0.1738090217113495, - 0.33467257022857666, - 0.10220269858837128, - -0.48203039169311523, - -0.025997359305620193, - -0.06695178151130676, - -0.22274062037467957, - -0.028841935098171234, - 0.04336724057793617, - -0.5167129635810852, - -0.3045061230659485, - -0.07856421917676926, - 0.0719352662563324, - -0.16233058273792267, - 0.3335307240486145, - -0.32254865765571594, - 0.07632079720497131, - -1.0536999702453613, - 0.1973331719636917, - -0.3294254541397095, - -0.048184093087911606, - -0.07108385115861893, - -0.6211445331573486, - -0.28156813979148865, - -0.19369074702262878, - -0.05635496601462364, - 0.26989278197288513, - -0.3016151785850525, - 0.01702713966369629, - -0.0030329700093716383, - -0.13547807931900024, - 0.3298708200454712, - 0.4940706789493561, - -0.0020518386736512184, - -0.027424639090895653, - 0.09221560508012772, - 0.3022794723510742, - 0.09920457750558853, - 0.02039874903857708, - 0.06653458625078201, - 0.4971488416194916, - 0.1996951699256897, - 0.09398715943098068, - -0.20150664448738098, - -0.6276114583015442, - -0.055517688393592834, - -0.08787989616394043, - -0.02679705247282982, - 0.21543125808238983, - -0.20122088491916656, - 0.1209706962108612, - -0.3471846282482147, - 0.6964630484580994, - 0.1169300377368927, - 0.3529699146747589, - -0.05458519980311394, - 0.144490584731102, - 0.12219730019569397, - 0.17748819291591644, - 0.09919121116399765, - -0.3622337877750397, - 0.7631471753120422, - 0.27162501215934753, - -0.23217150568962097, - 0.28127729892730713, - 0.4202446937561035, - 0.031117938458919525, - -0.13553720712661743, - 0.2113097757101059, - 0.5825421810150146, - -0.30400124192237854, - 0.6364341378211975, - -0.21627822518348694, - -0.048633743077516556, - 0.25614702701568604, - -0.08426525443792343, - 0.05715221166610718, - -0.23215490579605103, - -0.13997584581375122, - 0.28813278675079346, - 0.07745169848203659, - -0.5237348079681396, - 0.06048907712101936, - 0.2194172888994217, - 0.030357055366039276, - -0.07441368699073792, - -0.15125387907028198, - 0.24632014334201813, - 0.18284355103969574, - -0.07196968793869019, - 0.19174006581306458, - -0.05178814008831978, - 0.2552845776081085, - -0.11361205577850342, - -0.33625492453575134, - 0.19741231203079224, - 0.024253984913229942, - -0.08444301784038544, - 0.3008236289024353, - 0.08063642680644989, - -0.19854122400283813, - -0.17625990509986877, - -0.0370684415102005, - -0.5457280278205872, - 0.20227894186973572, - 0.1767687201499939, - 0.3832779824733734, - 0.22176629304885864, - 0.02016485296189785, - 0.029661409556865692, - -0.3565033972263336, - 0.2776525020599365, - -0.21078842878341675, - -0.12305029481649399, - -0.2142259031534195, - 0.2925986647605896, - 0.03596269339323044, - 0.27059492468833923, - 0.32430213689804077, - -0.03782106190919876, - -0.023007771000266075, - 0.09087443351745605, - -0.374246746301651, - -0.054388031363487244, - -0.3958289623260498, - 0.034103021025657654, - 0.2878572642803192, - 0.058158859610557556, - 0.15779772400856018, - -0.0729631707072258, - -0.1460275948047638, - 0.12360986322164536, - -0.09007097780704498, - -0.5609275102615356, - -0.2896277606487274, - -0.04321350157260895, - -0.07872996479272842, - -0.7075194120407104, - 0.3000930845737457, - -0.14442938566207886, - 0.08850523829460144, - -0.0016160367522388697, - -0.27469444274902344, - -0.09906518459320068, - 0.12652941048145294, - 0.07225087285041809, - 0.07707363367080688, - -0.2957340478897095, - 0.030236342921853065, - -0.2996215224266052, - -0.22972546517848969, - -0.25770580768585205, - -0.12797003984451294, - -0.08668201416730881, - 0.08507980406284332, - -0.5964611768722534, - 0.13568715751171112, - 0.045900508761405945, - -0.3548845052719116, - -0.040928736329078674, - 0.23933260142803192, - -0.07098934054374695, - 0.3368254601955414, - 0.15363581478595734, - 0.2875361144542694, - 0.2520596981048584, - 0.1488121747970581, - 0.06530972570180893, - 0.44233450293540955, - 0.45465293526649475, - -0.21719352900981903, - 0.06951471418142319, - 0.04662976786494255, - 0.06100882589817047, - -0.01784619502723217, - -0.3901360034942627, - 0.49434852600097656, - 0.03777149319648743, - 0.1055348664522171, - 0.06453415751457214, - 0.14601345360279083, - 0.09583877772092819, - -0.22637520730495453, - 0.041225992143154144, - 0.3744617700576782, - 0.25816094875335693, - 0.30146610736846924, - 0.06127047538757324, - 0.22721242904663086, - 0.12968900799751282, - -0.18046389520168304, - 0.19437377154827118, - 0.26255661249160767, - 0.021445807069540024, - -0.0770421177148819, - -0.05702552571892738, - 0.33875900506973267, - 0.4634922444820404, - -0.1466171145439148, - -0.3887169063091278, - 0.04515815153717995, - -0.06479458510875702, - -0.038190390914678574, - -0.37213587760925293, - -0.13165323436260223, - 0.06705917418003082, - -0.04306260123848915, - 0.34176501631736755, - -0.012059872969985008, - -0.010004495270550251, - 0.35177338123321533, - -0.5120624303817749, - -0.06462785601615906, - 0.06004807725548744, - -0.1645970195531845, - -0.2898377776145935, - 0.514485776424408, - -0.03791142255067825, - 0.122385673224926, - 0.38692912459373474, - -0.36577877402305603, - -0.0016772606177255511, - 0.14521604776382446, - 0.4538114368915558, - -0.20255176723003387, - 0.07069593667984009, - -0.029767479747533798, - 0.03076869249343872, - -0.016696177423000336, - 0.4388335049152374, - 0.15579372644424438, - 0.1804802119731903, - 0.6990742683410645, - 0.2816333770751953, - -0.41386669874191284, - 0.06855649501085281, - -0.1287926584482193, - 0.35342398285865784, - -0.12396196275949478, - 0.06573930382728577, - -0.18229785561561584, - 0.04983297362923622, - 0.0652749165892601, - -0.3443256616592407, - 0.16264183819293976, - 0.11601737886667252, - 0.16142447292804718, - -0.07182321697473526, - 0.37290337681770325, - -0.14761386811733246, - -0.16121891140937805, - 0.48058509826660156, - -0.10320034623146057, - -0.24009265005588531, - 0.3178821802139282, - -0.30285996198654175, - 0.19271664321422577, - -0.05298333615064621, - -0.05711605027318001, - -0.26488396525382996, - 0.04807160422205925, - -0.09244593977928162, - -0.29870474338531494, - -0.016153637319803238, - -0.25895798206329346, - 0.0975273996591568, - -0.22251290082931519, - 0.17424649000167847, - 0.03698086366057396, - 0.16909264028072357, - 0.13813263177871704, - 0.25904345512390137, - -0.005986137315630913, - -0.22493202984333038, - 0.14341993629932404, - -0.004422907251864672, - -0.17893844842910767, - -0.4690161347389221, - 0.02348335087299347, - 0.019819768145680428, - 0.6711062788963318, - 0.0439656563103199, - 0.1488417387008667, - 0.10140099376440048, - -0.11318286508321762, - 0.03121180646121502, - -0.45663800835609436, - -0.04500769451260567, - -0.1603698432445526, - 0.10206641256809235, - 0.1262248009443283, - 0.07850800454616547, - -0.3086963891983032, - -0.13689249753952026, - 0.02447224035859108, - -0.12349656224250793, - 0.06483553349971771, - -0.07712164521217346, - -0.17201219499111176, - 0.3911958932876587, - 0.3354993462562561, - 0.45734474062919617, - -0.2746765911579132, - 0.2080497145652771, - 0.17041002213954926, - -0.29049068689346313, - 0.07253152877092361, - -0.11837686598300934, - -0.5038295388221741, - -0.21005219221115112, - 0.25660941004753113, - 0.3902057409286499, - -0.028941048309206963, - -0.08184876292943954, - 0.023525679484009743, - 0.08218313753604889, - -0.2306618094444275, - -0.12661142647266388, - 0.49625247716903687, - 0.2756560444831848, - 0.12646642327308655, - 0.03982553631067276, - -0.5808138251304626, - -0.44855642318725586, - -0.10753795504570007, - -0.2619767487049103, - 0.07503499835729599, - 0.3632398247718811, - 0.004044032655656338, - -0.24119554460048676, - -0.033398084342479706, - -0.16890859603881836, - -0.1671431064605713, - 0.31312647461891174, - -0.15776854753494263, - 0.15734481811523438, - 0.10583211481571198, - -0.20047177374362946, - -0.0447390042245388, - -0.15319904685020447, - -0.43272683024406433, - -0.23819512128829956, - 0.14289496839046478, - 0.15092091262340546, - -0.32524579763412476, - -0.039750438183546066, - 0.06546007841825485, - -0.15324841439723969, - -0.08672139048576355, - 0.026160340756177902, - -0.345871239900589, - 0.3375440239906311, - -0.09580637514591217, - -0.13964727520942688, - 0.038095418363809586, - -0.10430708527565002, - -0.11868970841169357, - 0.22095555067062378, - 0.05759384110569954, - 0.5017678141593933, - 0.03804092854261398, - 0.16137215495109558, - 0.5594597458839417, - 0.028902731835842133, - 0.10458949208259583, - 0.31545424461364746, - 0.14177905023097992, - 0.08111873269081116, - -0.4019169211387634, - -0.3299172520637512, - 0.1645774245262146, - -0.4592001736164093, - -0.17618875205516815, - 0.1771056205034256, - 0.3601227402687073, - -0.4261142909526825, - -0.24805137515068054, - 0.03718184679746628, - 0.16099676489830017, - -0.0330050066113472, - -0.10186436772346497, - -0.18327705562114716, - -0.16637906432151794, - -0.2691357731819153, - 0.0019914847798645496, - 0.15452127158641815, - 0.548710286617279, - 0.19844776391983032, - 0.20770733058452606, - -0.4603167772293091, - -0.0875997468829155, - 0.33485472202301025, - 0.17505566775798798, - 0.04642563313245773, - -0.0016026728553697467, - -0.003409197786822915, - 0.2442578673362732, - 0.267121285200119, - -0.003769666887819767, - 0.09719066321849823, - -0.014339839108288288, - 0.06438358128070831, - 0.1902666687965393, - 0.08345533907413483, - -0.0773223489522934, - 0.043732158839702606, - -0.32588401436805725, - 0.0807325690984726, - -0.10127485543489456, - -0.10039543360471725, - 0.26209795475006104, - -0.09970222413539886, - -0.5285391807556152, - -0.1855221539735794, - 0.369540810585022, - -0.10455159842967987, - -0.10919353365898132, - 0.07852448523044586, - 0.19653929769992828, - -0.13951830565929413, - -0.1865592747926712, - 0.04539806395769119, - -0.43937981128692627, - -0.4277142286300659, - 0.10029187798500061, - 0.06945955753326416, - -0.21271030604839325, - -0.011490840464830399, - 0.4974828362464905, - 0.6609566807746887, - 0.32059991359710693, - -0.08826495707035065, - 0.300033837556839, - 0.49126747250556946, - 0.045913323760032654, - -0.2948635518550873, - -10.6453275680542, - -0.026239063590765, - -0.46502891182899475, - 0.48803603649139404, - -0.0635530948638916, - 0.019974367693066597, - 0.03302427753806114, - 0.10970905423164368, - 0.08611094206571579, - 0.028397269546985626, - -0.30255159735679626, - -0.14272035658359528, - 0.2923988401889801, - 0.3444305658340454, - 0.1327124387025833, - 0.09953495115041733, - -0.2801118791103363, - 0.12973006069660187, - 0.12572292983531952, - 0.12208294868469238, - 0.029554234817624092, - 0.2411179542541504, - -0.24112993478775024, - 0.06428408622741699, - -0.22956180572509766, - -0.3825181722640991, - -0.30170944333076477, - 0.6563892960548401, - 0.36797118186950684, - -0.23864033818244934, - 0.25227510929107666, - 0.07721731811761856, - -0.19981367886066437, - 0.2960242033004761, - -0.24150967597961426, - -0.0671287477016449, - -0.06080261245369911, - 0.2987983226776123, - 0.29808828234672546, - -0.15446864068508148, - -0.0790267288684845, - -0.21375370025634766, - 0.3488219976425171, - 0.0870993584394455, - -0.17020206153392792, - -0.5367139577865601, - -0.015563626773655415, - -1.4589170217514038, - 0.3219459354877472, - 0.31813108921051025, - 0.26541268825531006, - 0.1866665929555893, - 0.06806393712759018, - 0.29075542092323303, - -0.11094903945922852, - -4.5912132918601856e-05, - -0.43015357851982117, - -0.1292637288570404, - 0.10101264715194702, - 0.14830872416496277, - 0.09703104943037033, - -0.09465660154819489, - 0.553466260433197, - 0.014735119417309761, - -0.3499966859817505, - 0.08379123359918594, - 0.08724480122327805, - -0.08744580298662186, - -0.27693361043930054, - -0.7689602971076965, - -0.5867736339569092, - -0.045583054423332214, - -0.19767290353775024, - -0.11399487406015396, - 0.30802711844444275, - -0.019876232370734215, - -0.23401512205600739, - 0.33145058155059814, - -0.014609156176447868, - 0.23450326919555664, - 0.338288277387619, - -0.03132055327296257, - 0.22704410552978516, - -0.16944512724876404, - -0.12146801501512527, - -0.13622966408729553, - 0.23274898529052734, - 0.3675716817378998, - -0.05216458812355995, - 0.005810308735817671, - 0.057689785957336426, - 0.29633092880249023, - -0.16739092767238617, - -0.32240521907806396, - -0.41637489199638367, - -0.056138038635253906, - -0.07697215676307678, - 0.0481019951403141, - -0.11374317109584808, - -0.0998888611793518, - -0.2176859974861145, - 0.1016792580485344, - 0.008500780910253525, - -0.6118297576904297, - -0.584271252155304, - 0.371229350566864, - 0.03983033448457718, - 0.12032609432935715, - 0.0020116360392421484, - -0.22729730606079102, - -0.2585941553115845, - 0.09544052183628082, - 0.26489177346229553, - 0.42616117000579834, - 0.19450026750564575, - -0.045677971094846725, - 0.24193856120109558, - -0.5123358964920044, - -0.07548251003026962, - -0.09871569275856018, - 0.4066866934299469, - -0.029788251966238022, - -0.034812841564416885, - 0.5099251866340637, - 0.12809966504573822, - 0.023663179948925972, - 0.9343306422233582, - -0.3605087101459503, - 0.03144390881061554, - 0.12759487330913544, - 0.1631469875574112, - -0.21607862412929535, - -0.49202483892440796, - 0.20500046014785767, - 0.5751309990882874, - -0.37988948822021484, - 0.802206814289093, - 0.3865589499473572, - -0.19988945126533508, - 0.006565405055880547, - -0.34281590580940247, - 0.4420979619026184, - 0.1311047226190567, - 0.2935642600059509, - -0.18770861625671387, - -0.24266216158866882, - -0.1753983348608017, - 0.1093071922659874, - -0.26628923416137695, - -0.2550507187843323, - -0.14665892720222473, - 0.14498800039291382, - 0.10976126790046692, - -0.06511794775724411, - 0.22863514721393585, - 0.2512516379356384, - -0.11330869793891907, - -0.3603987693786621, - -0.3604857325553894, - 0.009053453803062439, - -0.034714434295892715, - 0.9433810710906982, - 0.0898495465517044, - -0.1004301980137825, - 0.05699677765369415, - 0.15536443889141083, - -0.2841053009033203, - 0.035080235451459885, - 0.10534774512052536, - -0.10900156944990158, - -0.3474469780921936, - 0.22728675603866577, - 0.2037973701953888, - -0.19832998514175415, - -0.010063092224299908, - -0.01222736295312643, - -0.15109913051128387, - 0.18324784934520721, - -0.32605409622192383, - -0.06760057806968689, - 0.35840532183647156, - -0.26426640152931213, - 0.05605033412575722, - -0.3325038552284241, - -0.10457861423492432, - 0.020052053034305573, - 0.45472443103790283, - -0.03129701316356659, - -0.39722779393196106, - -0.15162406861782074, - -0.6529621481895447, - 0.24892377853393555, - -0.42748919129371643, - -0.022422917187213898, - 0.216586172580719, - 0.23906299471855164, - -0.20437484979629517, - 0.16357572376728058, - 0.06086691841483116, - -0.022161515429615974, - -0.15703554451465607, - 0.231160506606102, - 0.43596112728118896, - -0.4192539155483246, - 0.42052313685417175, - -0.012064438313245773, - 0.14102450013160706, - 0.0819764956831932, - -0.16554062068462372, - 0.01683872938156128, - -0.27073824405670166 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_020.json b/src/benchmark/output/results/results_graph_020.json deleted file mode 100644 index 6195460..0000000 --- a/src/benchmark/output/results/results_graph_020.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "The patient in question is a male who was initially seen at the hospital with symptoms of toe redness and pain. This condition had been present for several weeks prior to his current encounter. The patient's vital signs were stable during this initial visit, but as time progressed, he began to experience coughing, expectoration, fever, and left lumbar/groin erythema/pain.\n\nFollowing a hospital admission, the patient underwent various tests, including cultures and CT scans, which initially suggested a possible bacterial infection. Despite treatment with piperacillin-tazobactam, the patient's condition worsened, leading to further hospitalization.\n\nDuring this period, the patient experienced significant changes in his vital signs and mental status, including stupor and hypoxia. His electrocardiogram revealed atrial fibrillation, and antimicrobial susceptibility testing indicated sensitivity to meropenem.\n\nThe patient's lab values continued to show abnormal results, with elevated white blood cell count, neutrophil percentage, albumin levels, C-reactive protein, procalcitonin, N-terminal pro b-type natriuretic peptide, alanine aminotransferase, aspartate aminotransferase, and creatinine.\n\nThroughout the patient's hospital stay, he received treatment with meropenem, which was found to be sensitive in antimicrobial susceptibility testing. Despite this, the patient continued to experience persistent symptoms and abnormal lab values.\n\nThe timeline of diagnoses and treatments for this patient can be summarized as follows:\n\n* Initial visit: Toe redness/pain (weeks prior)\n* Hospital admission: Coughing, expectoration, fever, left lumbar/groin erythema/pain\n* Treatment with piperacillin-tazobactam\n* Further hospitalization due to worsening condition\n* Development of stupor, hypoxia, and atrial fibrillation\n* Treatment with meropenem\n\nThe patient's outcomes are currently uncertain, as the narrative does not provide information on his current status or any subsequent treatments. However, it is clear that this patient has experienced a significant decline in his health status over time, requiring multiple hospitalizations and various treatments to manage his symptoms and lab values.", - "bertscore": { - "precision": [ - 0.510433554649353 - ], - "recall": [ - 0.565669059753418 - ], - "f1": [ - 0.5366336703300476 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 9, - "edge_count": 8, - "avg_in_degree": 0.8888888888888888, - "density": 0.1111111111111111 - }, - "trajectory_embedding": [ - 0.2106419950723648, - 0.10880613327026367, - -0.019303588196635246, - 0.17433996498584747, - 0.13737574219703674, - 0.09073399007320404, - 0.057045288383960724, - 0.16380244493484497, - 0.42614296078681946, - -0.31337109208106995, - -0.12151220440864563, - 0.03720476105809212, - -0.6054100394248962, - -0.16327770054340363, - -0.23895896971225739, - 0.11631965637207031, - 0.07228496670722961, - 0.3089013695716858, - -0.08493703603744507, - -0.21022090315818787, - -0.36365726590156555, - 0.15588967502117157, - -0.6294155716896057, - 0.02243931032717228, - 0.14175309240818024, - 0.028116196393966675, - 0.34108197689056396, - 0.5240073204040527, - 0.2693374752998352, - 0.39593401551246643, - 0.2061617076396942, - -0.0823725163936615, - -0.01497750822454691, - -0.11281473189592361, - -0.17413188517093658, - 0.2308027148246765, - 0.16070705652236938, - 0.25993311405181885, - -0.254983514547348, - -0.012941830791532993, - -0.12176794558763504, - 0.0334942527115345, - 0.748900294303894, - 0.2642892599105835, - 0.5050461292266846, - -0.6466915607452393, - -0.16702505946159363, - 0.6085689067840576, - -0.38124507665634155, - -0.17354196310043335, - 0.2572113275527954, - 0.7883853316307068, - 0.3161424696445465, - -0.23819337785243988, - 0.40180984139442444, - -0.16260910034179688, - -0.07393442839384079, - -0.3350485563278198, - -0.3879830539226532, - 0.08519802987575531, - 0.0686965137720108, - -0.21108095347881317, - 0.39452508091926575, - -0.24813801050186157, - -0.07792378962039948, - -0.07639443129301071, - -0.2561207413673401, - -0.04235279560089111, - -0.07110276818275452, - -0.2653505504131317, - -0.2081567943096161, - -0.29729583859443665, - -0.2592744529247284, - -0.0328715480864048, - 0.06224221736192703, - -0.11933320015668869, - 0.1404157429933548, - -0.21414032578468323, - 0.08842240273952484, - 0.019864855334162712, - -0.13814669847488403, - 0.05013658106327057, - -0.00995088741183281, - 0.2800530791282654, - -0.3295649290084839, - 0.04662759602069855, - -0.04814550280570984, - -0.01855117827653885, - -0.3901212513446808, - 0.030686549842357635, - 0.03157952055335045, - -0.37435856461524963, - 0.14389216899871826, - -0.2745380997657776, - -0.20200186967849731, - -0.038155313581228256, - 0.5022233128547668, - 0.15282216668128967, - 0.9131649732589722, - -0.021530376747250557, - 0.19801171123981476, - 0.1947164535522461, - 0.28294938802719116, - -0.04407372698187828, - 0.4101736843585968, - 0.04008377343416214, - 0.27078568935394287, - -0.43427789211273193, - 0.23837001621723175, - 0.4297575354576111, - -0.012920886278152466, - -0.3983277678489685, - 0.007414809428155422, - -0.2391667366027832, - 0.10856423527002335, - 0.08856745064258575, - -0.19410164654254913, - 0.21437537670135498, - 0.09220040589570999, - -0.19481675326824188, - 0.2031209021806717, - -0.2674005329608917, - 0.2941111922264099, - 0.24663108587265015, - -0.33615925908088684, - -0.12216104567050934, - 0.022472789511084557, - -0.1328117996454239, - 0.028869040310382843, - 0.18503564596176147, - -0.5876986980438232, - -0.2229851931333542, - 0.04128291830420494, - 0.22066853940486908, - -0.13331471383571625, - 0.2536861300468445, - -0.3597288727760315, - 0.20986202359199524, - -1.2085487842559814, - 0.1784917712211609, - -0.23913131654262543, - -0.10125952214002609, - 0.03965725004673004, - -0.6547300815582275, - -0.20017921924591064, - -0.1738467514514923, - -0.13050611317157745, - 0.0769798532128334, - -0.11141714453697205, - -0.12569600343704224, - -0.04234907403588295, - -0.06415896862745285, - 0.17401480674743652, - 0.4063470959663391, - 0.07412313669919968, - -0.0013055503368377686, - 0.08718417584896088, - 0.3166393041610718, - 0.12322766333818436, - -0.20843945443630219, - -0.17917610704898834, - 0.37217438220977783, - 0.1289624273777008, - 0.164078950881958, - -0.006611814256757498, - -0.691051721572876, - 0.06098173186182976, - -0.11591410636901855, - -0.010937662795186043, - 0.05780157074332237, - 0.038090869784355164, - 0.13337305188179016, - -0.24601279199123383, - 0.5995233654975891, - 0.09303423762321472, - 0.5979005098342896, - -0.09620755910873413, - -0.03145679458975792, - 0.1369025856256485, - 0.18680353462696075, - 0.14828112721443176, - -0.25307267904281616, - 0.44141536951065063, - 0.2667800188064575, - -0.2671961188316345, - 0.1362007111310959, - 0.4275444746017456, - -0.18255257606506348, - -0.3445335626602173, - -0.1323455274105072, - 0.19190388917922974, - -0.28857946395874023, - 0.3873940706253052, - -0.10226834565401077, - -0.005907071754336357, - 0.08240007609128952, - -0.29760873317718506, - -0.014471936970949173, - -0.04865902289748192, - 0.051368389278650284, - 0.22010141611099243, - -0.006548302248120308, - -0.139135479927063, - 0.08370070904493332, - 0.03029615432024002, - -0.05691031739115715, - 0.23927678167819977, - -0.00032897459459491074, - 0.02383904904127121, - 0.1396598219871521, - -0.06683990359306335, - 0.005486647132784128, - 0.0335293672978878, - 0.23604409396648407, - 0.05257992818951607, - -0.2611464262008667, - 0.27949732542037964, - -0.05187162384390831, - -0.24943383038043976, - 0.0999513566493988, - -0.026103181764483452, - -0.2645890712738037, - 0.08105620741844177, - -0.06066850200295448, - -0.3288972079753876, - 0.2152763456106186, - 0.26106521487236023, - 0.13299284875392914, - 0.06712249666452408, - -0.0036029228940606117, - -0.024390533566474915, - -0.39200952649116516, - 0.25125300884246826, - -0.09972210973501205, - -0.01672961935400963, - -0.4031425416469574, - 0.11387026309967041, - -0.010314497165381908, - 0.07092046737670898, - 0.2209128588438034, - 0.09548868238925934, - -0.0066885375417768955, - -0.0388578437268734, - -0.21163244545459747, - 0.10249677300453186, - -0.3668613135814667, - 0.02157323807477951, - 0.24533557891845703, - 0.08131830394268036, - 0.1166636273264885, - 0.028722962364554405, - -0.12230498343706131, - 0.2545979619026184, - -0.16561362147331238, - -0.344129353761673, - -0.41324448585510254, - -0.25268593430519104, - -0.004012306686490774, - -0.6349512934684753, - 0.2825089693069458, - -0.06362907588481903, - 0.11967791616916656, - 0.15481652319431305, - -0.11944307386875153, - -0.23064589500427246, - 0.004724820610135794, - 0.037951841950416565, - 0.2509922981262207, - -0.1105724573135376, - -0.029459217563271523, - -0.23905031383037567, - 0.05526715889573097, - -0.16028793156147003, - -0.08846305310726166, - 0.07943443208932877, - 0.04724115505814552, - -0.2919447720050812, - 0.10423599183559418, - -0.02120865322649479, - -0.4848921000957489, - -0.25769510865211487, - 0.039068277925252914, - -0.12566950917243958, - 0.32244065403938293, - -0.006217098794877529, - 0.25699612498283386, - 0.28179454803466797, - 0.0574057511985302, - 0.14040599763393402, - 0.46977704763412476, - 0.3829237222671509, - 0.01944318413734436, - 0.23722368478775024, - -0.02852700464427471, - -0.0552494078874588, - 0.047712769359350204, - -0.39025256037712097, - 0.4625300168991089, - -0.021601783111691475, - -0.05186959728598595, - 0.1796717792749405, - 0.27574384212493896, - 0.039285819977521896, - -0.40603864192962646, - -0.05720657855272293, - 0.23120254278182983, - 0.013557596132159233, - 0.2843467891216278, - 0.03118785284459591, - 0.12376386672258377, - 0.6033554673194885, - 0.01809762790799141, - 0.09081161022186279, - 0.22636277973651886, - -0.08533717691898346, - -0.11263079196214676, - 0.1082049310207367, - 0.09601285308599472, - 0.2585923969745636, - -0.08516531437635422, - -0.1704254150390625, - 0.27755099534988403, - -0.04964151233434677, - -0.23925775289535522, - -0.31483009457588196, - -0.2097657471895218, - -0.043941888958215714, - -0.24499072134494781, - 0.4660603702068329, - -0.11674865335226059, - 0.0035512621980160475, - 0.46072325110435486, - -0.16448718309402466, - -0.18456865847110748, - 0.2116323858499527, - 0.004152936860918999, - -0.5332901477813721, - 0.3758310377597809, - -0.25869661569595337, - 0.14831966161727905, - 0.10567215085029602, - -0.21225646138191223, - -0.21028804779052734, - -0.016575435176491737, - 0.3650599718093872, - -0.04673073813319206, - -0.06386672705411911, - -0.01176233310252428, - 0.0024944907054305077, - 0.13979898393154144, - 0.36130473017692566, - 0.1873580813407898, - 0.36930689215660095, - 0.502091646194458, - -0.12396284937858582, - -0.275184690952301, - 0.06207086518406868, - -0.10762478411197662, - 0.26644954085350037, - -0.2610054016113281, - 0.010221986100077629, - -0.10803590714931488, - 0.10237875580787659, - 0.04380020126700401, - -0.46530792117118835, - 0.11609501391649246, - 0.048537541180849075, - 0.034690458327531815, - -0.11273365467786789, - 0.5013396739959717, - 0.12820205092430115, - -0.01811562292277813, - 0.37537795305252075, - -0.02617756277322769, - -0.417361319065094, - 0.20435605943202972, - 0.057851552963256836, - 0.2426651269197464, - -0.025920942425727844, - -0.33280059695243835, - -0.3120358884334564, - 0.0036580199375748634, - -0.26735690236091614, - -0.22433406114578247, - 0.031395357102155685, - -0.17828482389450073, - -0.020577430725097656, - -0.1498924046754837, - -0.0015054108807817101, - 0.07858897745609283, - 0.2234927862882614, - 0.1780727505683899, - 0.5300737619400024, - 0.06557422876358032, - -0.23937126994132996, - 0.06533487886190414, - -0.14372606575489044, - -0.04926498234272003, - -0.06283512711524963, - 0.04361394792795181, - -0.1348077952861786, - 0.49056026339530945, - 0.16172295808792114, - -0.0380152091383934, - 0.01756528951227665, - -0.002001962624490261, - -0.06437436491250992, - -0.5427749156951904, - 0.0913388729095459, - -0.09944786876440048, - 0.046869829297065735, - 0.08029285073280334, - -0.01959826797246933, - -0.287925660610199, - -0.16743609309196472, - 0.0776854157447815, - 0.058170121163129807, - 0.047429487109184265, - -0.0467129610478878, - 0.004028946161270142, - 0.3432208299636841, - 0.05046764388680458, - 0.3982134163379669, - -0.15908339619636536, - 0.14505964517593384, - 0.15614759922027588, - -0.5210883617401123, - -0.07178674638271332, - -0.1250327229499817, - -0.42979878187179565, - -0.08908174186944962, - 0.2816658318042755, - 0.07305563986301422, - 0.09571482241153717, - -0.036772388964891434, - 0.01433420367538929, - 0.01667613536119461, - -0.2952002286911011, - -0.15986622869968414, - 0.32725703716278076, - -0.048746585845947266, - 0.4558311700820923, - 0.0642189085483551, - -0.554359495639801, - -0.21787665784358978, - 0.03771365061402321, - -0.30953097343444824, - 0.03352799639105797, - -0.024731462821364403, - -0.21345891058444977, - -0.08389066159725189, - 0.04913676530122757, - 0.001876132795587182, - -0.06407073140144348, - 0.26029089093208313, - -0.0849052295088768, - 0.22275573015213013, - 0.23937413096427917, - -0.2794078588485718, - 0.032483410090208054, - -0.2779526710510254, - -0.46873393654823303, - -0.03967384994029999, - 0.17431889474391937, - 0.14102889597415924, - -0.09394723922014236, - -0.027646789327263832, - 0.06408976018428802, - -0.15337562561035156, - -0.26637160778045654, - -0.11144962906837463, - -0.24772270023822784, - 0.3612811863422394, - -0.16475017368793488, - -0.07819262892007828, - 0.07063306868076324, - -0.1513233184814453, - 0.01993541419506073, - 0.10848093777894974, - 0.05637967586517334, - 0.2162838578224182, - 0.10294682532548904, - 0.04776406288146973, - 0.42827680706977844, - 0.1970646232366562, - 0.16319654881954193, - 0.08388814330101013, - -0.07115040719509125, - 0.035336270928382874, - -0.2576919496059418, - -0.12773118913173676, - 0.2690187692642212, - -0.29856836795806885, - -0.18090234696865082, - 0.1893032193183899, - 0.23560217022895813, - -0.3732868731021881, - -0.24898409843444824, - 0.004679245874285698, - 0.2064153552055359, - -0.11779399961233139, - -0.12840741872787476, - -0.12739640474319458, - 0.040899910032749176, - -0.13410554826259613, - -0.12014937400817871, - 0.1415196657180786, - 0.38951170444488525, - 0.19969764351844788, - 0.00902127381414175, - -0.15469568967819214, - -0.23547792434692383, - 0.23927658796310425, - 0.2202182412147522, - 0.03696039691567421, - -0.023240072652697563, - -0.012270305305719376, - 0.1277340203523636, - 0.5939412713050842, - 0.018129723146557808, - 0.008941730484366417, - 0.1182049885392189, - 0.11063812673091888, - -0.061624690890312195, - 0.07146619260311127, - 0.030123773962259293, - 0.12261079251766205, - -0.26300257444381714, - 0.01722853258252144, - -0.11200818419456482, - -0.3125417232513428, - 0.19035694003105164, - -0.2562330961227417, - -0.5949046611785889, - -0.03783639147877693, - 0.22862643003463745, - -0.13511858880519867, - -0.03775954991579056, - 0.14774495363235474, - 0.30907484889030457, - -0.015085216611623764, - -0.1509649157524109, - 0.16433508694171906, - -0.4784407615661621, - -0.030887149274349213, - 0.13038332760334015, - -0.17825466394424438, - -0.09779169410467148, - 0.16942480206489563, - 0.3118239641189575, - 0.46368545293807983, - 0.3189510107040405, - -0.14981594681739807, - 0.33393678069114685, - 0.3780025243759155, - 0.29118144512176514, - -0.19218090176582336, - -10.664474487304688, - 0.1653156280517578, - -0.3729970455169678, - 0.5418894290924072, - -0.18439900875091553, - -0.01135027315467596, - -0.026082856580615044, - 0.16700035333633423, - 0.17641745507717133, - 0.1791881024837494, - -0.2384231686592102, - 0.04542221501469612, - 0.29394057393074036, - 0.2608250379562378, - 0.0627342164516449, - 0.1665218472480774, - -0.14856934547424316, - 0.25972676277160645, - -0.01727714203298092, - 0.27669772505760193, - 0.2533832788467407, - 0.47019439935684204, - -0.2583813965320587, - 0.21632330119609833, - -0.1058894619345665, - -0.3098553717136383, - -0.2507351338863373, - 0.44931289553642273, - 0.16022315621376038, - -0.3592587113380432, - 0.268943190574646, - 0.07086031883955002, - -0.3500669598579407, - 0.23772910237312317, - -0.23403435945510864, - -0.1868886649608612, - -0.004067720379680395, - 0.1637546867132187, - 0.1208803653717041, - -0.10315802693367004, - -0.09091874957084656, - -0.21950823068618774, - 0.30612102150917053, - 0.17800267040729523, - -0.06381233781576157, - -0.5735015869140625, - -0.22828303277492523, - -1.4967691898345947, - 0.23377346992492676, - 0.5447242259979248, - 0.46675682067871094, - 0.08239992707967758, - 0.18533556163311005, - 0.3716229200363159, - -0.21887388825416565, - -0.06498956680297852, - -0.35945212841033936, - 0.0049874186515808105, - 0.10829704999923706, - 0.0706065222620964, - 0.13616807758808136, - -0.028316788375377655, - 0.537838339805603, - -0.15659059584140778, - -0.4233495593070984, - 0.10359988361597061, - 0.13554327189922333, - -0.1485866755247116, - -0.17028838396072388, - -0.6819295883178711, - -0.47188296914100647, - 0.049371153116226196, - -0.022138705477118492, - -0.08931586891412735, - 0.1411208063364029, - 0.051849015057086945, - -0.294107049703598, - 0.19275082647800446, - -0.005019370466470718, - 0.36029598116874695, - 0.3933006525039673, - -0.20219288766384125, - 0.18850451707839966, - -0.2755528688430786, - -0.19528096914291382, - -0.23470014333724976, - 0.03514869883656502, - 0.449699729681015, - 0.031063105911016464, - -0.09356974065303802, - -0.0036744277458637953, - 0.3233049809932709, - 0.0032861013896763325, - -0.05181475356221199, - -0.39285480976104736, - -0.049771443009376526, - 0.13946110010147095, - 0.07027340680360794, - 0.09844367206096649, - -0.0031550361309200525, - -0.3504365086555481, - 0.24938304722309113, - -0.12474925071001053, - -0.44034117460250854, - -0.45049625635147095, - 0.10239197313785553, - 0.30806633830070496, - 0.09706321358680725, - 0.1664925366640091, - -0.07769337296485901, - -0.07114646583795547, - 0.05691900476813316, - 0.2987230122089386, - 0.4158226549625397, - 0.12941177189350128, - -0.2177663892507553, - -0.040048278868198395, - -0.24905282258987427, - -0.1267763078212738, - 0.11009705811738968, - 0.293184757232666, - -0.1922222226858139, - 0.01451030746102333, - 0.5699648261070251, - -0.035883828997612, - 0.03697851300239563, - 0.8519302010536194, - -0.33734142780303955, - 0.41937506198883057, - -0.04599520564079285, - 0.15714877843856812, - 0.06544811278581619, - -0.37183910608291626, - 0.25773394107818604, - 0.23937958478927612, - -0.20910392701625824, - 0.4539826214313507, - 0.2718534767627716, - -0.1819753497838974, - 0.03914070874452591, - -0.19234038889408112, - 0.446667343378067, - 0.22861544787883759, - 0.09070474654436111, - -0.20197565853595734, - -0.32054442167282104, - -0.325752854347229, - 0.06719858944416046, - -0.2085573524236679, - -0.10946115851402283, - -0.10337796807289124, - 0.1261908859014511, - -0.021561887115240097, - 0.04795725643634796, - 0.26324981451034546, - 0.023370875045657158, - 0.014798513613641262, - -0.3700186014175415, - -0.3549252450466156, - -0.08499384671449661, - -0.0766405314207077, - 0.746932327747345, - -0.010739777237176895, - -0.1592572033405304, - -0.03287466987967491, - 0.23088687658309937, - -0.10033045709133148, - 0.20249146223068237, - 0.02324358932673931, - -0.059443797916173935, - -0.3397334814071655, - 0.25858521461486816, - 0.11550690233707428, - -0.3533007502555847, - -0.07568727433681488, - -0.1121782436966896, - 0.022715957835316658, - -0.09050838649272919, - -0.12819808721542358, - 0.22416141629219055, - 0.32218196988105774, - -0.10593453794717789, - 0.12955349683761597, - -0.44497668743133545, - 0.05902339518070221, - 0.1542040854692459, - 0.21490533649921417, - 0.0332803837954998, - -0.19498544931411743, - -0.20270460844039917, - -0.5063670873641968, - 0.17138439416885376, - -0.3961268663406372, - -0.03199204429984093, - 0.2578156888484955, - -0.024249456822872162, - -0.1954578012228012, - 0.1126016229391098, - -0.023953845724463463, - -0.04997359216213226, - -0.2592393755912781, - 0.3175237774848938, - 0.3671363294124603, - -0.2631262242794037, - 0.31645116209983826, - -0.08269727230072021, - 0.13271668553352356, - 0.03882494196295738, - -0.3732842803001404, - 0.1384139060974121, - -0.2786295711994171 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_022.json b/src/benchmark/output/results/results_graph_022.json deleted file mode 100644 index 98c102e..0000000 --- a/src/benchmark/output/results/results_graph_022.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 77-year-old man with a history of hypertension, hyperlipidemia, and right-sided hearing loss due to chronic otitis media. He is a heavy smoker with no medical history of malignancy.\n\n**Initial Presentation (Step 1):**\nThe patient presented with left-sided hearing loss, otalgia, and a red mass in the left external auditory canal (EAC) that persisted for several weeks. Physical examination revealed a red, soft mass measuring approximately 20 mm occupying the left EAC.\n\n**Diagnostic Workup:**\nImaging studies, including CT scans and MRI, were performed to evaluate the extent of the mass. Laboratory tests showed normal Span-1 and DUPAN2 levels, elevated ProGRP (698 pg/mL) and NSE (31.1 ng/mL). Pure-tone audiometry revealed bilateral mixed hearing loss.\n\n**Diagnosis:**\nThe diagnosis was initially suspected to be carcinoma of the EAC based on imaging findings and laboratory results. However, further testing, including biopsies from the EAC mass, lung, and pancreas, confirmed the presence of small cell lung cancer (SCLC).\n\n**Treatment:**\nChemotherapy with carboplatin, etoposide, and zoledronic acid was initiated to treat bone metastases. The treatment resulted in a reduction in size of metastatic lesions in the EAC and middle ear, improvement in hearing impairment and otalgia, and a decrease in ProGRP levels.\n\n**Outcome:**\nThe patient experienced severe hearing loss but regained the ability to understand conversations as the tumor shrank. Otalgia resolved, and opioid therapy was discontinued. Unfortunately, the patient died 15 months later due to complications from SCLC.\n\n**Autopsy Findings:**\nAt autopsy, resolution of EAC lesions was observed grossly. CT imaging revealed mastoid destruction and tumor invasion into the EAC.\n\n**Conclusion:**\nThis case highlights the importance of comprehensive diagnostic workup and multidisciplinary treatment approaches for patients with suspected carcinoma of the EAC. Early detection and treatment can improve outcomes, but the disease is often aggressive, leading to poor prognosis in some cases.", - "bertscore": { - "precision": [ - 0.6627601981163025 - ], - "recall": [ - 0.6721744537353516 - ], - "f1": [ - 0.6674340963363647 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 6, - "edge_count": 5, - "avg_in_degree": 0.8333333333333334, - "density": 0.16666666666666666 - }, - "trajectory_embedding": [ - 0.14263400435447693, - -0.013967558741569519, - -0.2280512899160385, - 0.02719009481370449, - -0.11668924242258072, - -0.14093691110610962, - 0.10111647099256516, - 0.0954238548874855, - 0.22714979946613312, - -0.2350296974182129, - -0.3323439657688141, - 0.36267557740211487, - -0.6519513130187988, - 0.014573529362678528, - -0.52058345079422, - -0.19109226763248444, - 0.09013906866312027, - 0.25849395990371704, - 0.0019105846295133233, - -0.085513174533844, - -0.3053945004940033, - -0.014985094778239727, - -0.44441214203834534, - -0.3733973801136017, - 0.012094889767467976, - -0.17213447391986847, - 0.2521288990974426, - 0.38103732466697693, - 0.18762850761413574, - 0.3369557857513428, - 0.28039857745170593, - 0.13269275426864624, - -0.2109321802854538, - 0.026624105870723724, - -0.14454267919063568, - 0.378347784280777, - 0.3238556683063507, - 0.38173845410346985, - 0.03301335126161575, - 0.14019817113876343, - -0.013893429189920425, - -0.00844264030456543, - 0.7344319820404053, - 0.4458934962749481, - 0.6813879013061523, - -0.4836479723453522, - 0.06258084625005722, - 0.4463832378387451, - -0.4775741398334503, - -0.09614425152540207, - 0.24064618349075317, - 0.4909329116344452, - 0.7274518013000488, - -0.06812626123428345, - 0.42710113525390625, - -0.1063355877995491, - -0.4724377691745758, - -0.14793984591960907, - -0.3198566734790802, - 0.07773143798112869, - -0.11058685183525085, - -0.017126763239502907, - -0.04867764934897423, - 0.18652234971523285, - -0.3085411489009857, - -0.28183987736701965, - -0.15067940950393677, - 0.08860085159540176, - 0.026836806908249855, - -0.5083489418029785, - -0.22759635746479034, - -0.33625760674476624, - -0.1233116164803505, - 0.09633906930685043, - 0.2236749529838562, - -0.21123677492141724, - 0.31595247983932495, - 0.0187645573168993, - -0.05732910707592964, - -0.0105271702632308, - 0.25871405005455017, - 0.040202222764492035, - 0.07267433404922485, - 0.2021091729402542, - -0.41539713740348816, - 0.19434837996959686, - -0.1053701639175415, - -0.1784449964761734, - -0.11617955565452576, - 0.3612995147705078, - 0.3753054141998291, - -0.13045118749141693, - 0.016498982906341553, - -0.023300131782889366, - 0.2533210813999176, - -0.16480009257793427, - 0.22336417436599731, - 0.45945000648498535, - 1.073231816291809, - -0.0172868724912405, - 0.2346866875886917, - 0.15012632310390472, - 0.32151302695274353, - 0.010287362150847912, - 0.4225732386112213, - -0.05394242703914642, - 0.2426641434431076, - -0.38593652844429016, - -0.049994368106126785, - 0.23788189888000488, - -0.05269990488886833, - -0.06275355815887451, - 0.19462771713733673, - -0.5031318664550781, - -0.07803850620985031, - -0.026726817712187767, - -0.1625668853521347, - 0.13421104848384857, - 0.08291395753622055, - -0.402536004781723, - 0.037196263670921326, - -0.2469092607498169, - 0.3950437307357788, - 0.33380207419395447, - -0.38963091373443604, - 0.05624598264694214, - -0.07670390605926514, - 0.3195331394672394, - -0.0684373751282692, - 0.2322998195886612, - -0.3820244371891022, - -0.027936413884162903, - -0.013474990613758564, - 0.36200079321861267, - -0.22275769710540771, - 0.26239094138145447, - -0.5345274806022644, - 0.05793166533112526, - -1.1662644147872925, - 0.24915778636932373, - -0.5248550772666931, - -0.13557937741279602, - 0.16355261206626892, - -0.33764007687568665, - -0.13752518594264984, - -0.23485082387924194, - -0.19018171727657318, - 0.08590900897979736, - 0.27862659096717834, - -0.18283338844776154, - -0.2579822242259979, - 0.12817968428134918, - 0.10596403479576111, - 0.1177777647972107, - 0.09708749502897263, - 0.04826320335268974, - 0.0875403881072998, - 0.4118797481060028, - 0.2490370273590088, - -0.2016640454530716, - 0.020789114758372307, - 0.23313969373703003, - -0.19102288782596588, - -0.2374248057603836, - 0.052522968500852585, - -0.6940896511077881, - 0.33676788210868835, - -0.2718869149684906, - 0.1882142275571823, - 0.18219949305057526, - -0.14405351877212524, - 0.25275924801826477, - 0.07379674166440964, - 0.410624623298645, - 0.3487526476383209, - 0.47222718596458435, - -0.000444069504737854, - -0.041859086602926254, - 0.3834359645843506, - -0.04782509803771973, - 0.030522486194968224, - 0.16536222398281097, - 0.5314124226570129, - -0.019230825826525688, - -0.2920495569705963, - 0.25392016768455505, - 0.30274954438209534, - -0.1455223709344864, - -0.12706588208675385, - -0.238215371966362, - 0.4677692651748657, - -0.2808533012866974, - 0.32104650139808655, - -0.41079720854759216, - 0.024386964738368988, - -0.06672697514295578, - -0.3667617738246918, - -0.3351384699344635, - 0.1860668808221817, - -0.23425179719924927, - 0.31457921862602234, - 0.27680978178977966, - -0.19925864040851593, - 0.32063326239585876, - 0.095461905002594, - -0.002454414963722229, - 0.25662705302238464, - 0.16951984167099, - -0.002350362716242671, - -0.2267133742570877, - -0.10220292955636978, - 0.09658321738243103, - 0.04379658401012421, - 0.1875181645154953, - 0.10189547389745712, - -0.09258469194173813, - 0.2902921736240387, - -0.16729296743869781, - -0.07412782311439514, - 0.19305114448070526, - -0.15209262073040009, - 0.059456855058670044, - 0.4065520465373993, - -0.07519810646772385, - -0.27348092198371887, - 0.14677099883556366, - 0.07312337309122086, - 0.09485184401273727, - 0.06311219185590744, - -0.173783078789711, - 0.09116180986166, - -0.11250779777765274, - 0.4344259202480316, - -0.07776370644569397, - -0.22094595432281494, - -0.11717989295721054, - -0.00699470704421401, - -0.3443423807621002, - -0.2452765554189682, - 0.36058831214904785, - -0.2918640375137329, - -0.06476696580648422, - 0.07017479091882706, - -0.1306014209985733, - -0.18783533573150635, - -0.19026534259319305, - 0.08397919684648514, - 0.5696138739585876, - 0.17420321702957153, - 0.42639556527137756, - 0.2834916412830353, - -0.00813677441328764, - 0.20436836779117584, - -0.3348608911037445, - -0.057846084237098694, - -0.30112388730049133, - -0.130253404378891, - -0.2163717895746231, - -0.22372090816497803, - -0.04609327018260956, - 0.05644960328936577, - -0.26830312609672546, - 0.038906943053007126, - -0.3113308548927307, - -0.17096959054470062, - -0.012628472410142422, - -0.14673437178134918, - 0.12185537070035934, - -0.09331504255533218, - 0.09289703518152237, - -0.45535218715667725, - -0.2708885073661804, - -0.07045597583055496, - 0.008830440230667591, - 0.299381822347641, - 0.22943608462810516, - 0.005335009191185236, - 0.02736729383468628, - 0.18723881244659424, - -0.5697064995765686, - -0.5402962565422058, - 0.1659899353981018, - -0.44307419657707214, - 0.1457926481962204, - -0.1431875079870224, - 0.20127899944782257, - 0.48397621512413025, - -0.08031558990478516, - 0.04315729811787605, - 0.47172513604164124, - 0.6166759729385376, - 0.12520791590213776, - -0.13148976862430573, - -0.05134965851902962, - 0.048514384776353836, - -0.024920329451560974, - -0.42191219329833984, - 0.09434044361114502, - -0.13445593416690826, - 0.11218368262052536, - 0.052102331072092056, - 0.30143335461616516, - -0.05832936242222786, - -0.5497106909751892, - -0.1685875803232193, - 0.5849449634552002, - 0.3072609007358551, - -0.03890387341380119, - 0.00650314474478364, - 0.32299116253852844, - 0.6608852744102478, - -0.05233335494995117, - -0.47857144474983215, - 0.05955417454242706, - -0.20224042236804962, - -0.17796681821346283, - -0.14911261200904846, - -0.10554260015487671, - 0.21079343557357788, - 0.07488243281841278, - -0.10986461490392685, - 0.40088751912117004, - -0.19407276809215546, - -0.27904316782951355, - 0.045372992753982544, - -0.05334864556789398, - 0.059350788593292236, - -0.2784360349178314, - 0.3607245683670044, - -0.2549184262752533, - -0.00532691553235054, - 0.49520382285118103, - -0.10048238188028336, - -0.22394336760044098, - 0.30194392800331116, - 0.03614988178014755, - -0.23382902145385742, - 0.18731428682804108, - -0.07350298017263412, - -0.149375319480896, - 0.3451267182826996, - -0.018015749752521515, - -0.0681331679224968, - -0.19080893695354462, - 0.010501175187528133, - 0.15878276526927948, - -0.06580855697393417, - -0.3513306677341461, - 0.135676309466362, - 0.216532900929451, - 0.67995285987854, - 0.06578756868839264, - -0.02210354618728161, - 0.3613463342189789, - -0.280923992395401, - -0.16245709359645844, - -0.11651108413934708, - 0.22889924049377441, - 0.18944710493087769, - -0.4091402292251587, - -0.3709990680217743, - -0.5098230838775635, - 0.32766464352607727, - 0.19306272268295288, - -0.15183629095554352, - 0.05738084390759468, - 0.16719631850719452, - -0.10030317306518555, - 0.1294422447681427, - 0.1308947205543518, - 0.36838552355766296, - -0.013272752054035664, - 0.5209472179412842, - 0.15077461302280426, - -0.07293983548879623, - 0.2264697551727295, - 0.016163988038897514, - 0.41577985882759094, - -0.23550790548324585, - -0.38704678416252136, - -0.36177098751068115, - 0.012008328922092915, - -0.1024169996380806, - -0.13821591436862946, - -0.014633658342063427, - 0.12988923490047455, - -0.11960884183645248, - -0.05947687849402428, - 0.3747653067111969, - -0.17041254043579102, - 0.20024631917476654, - -0.06413153558969498, - 0.6005843281745911, - -0.015310402028262615, - -0.38573190569877625, - 0.01649341732263565, - -0.011321929283440113, - 0.39044925570487976, - -0.19996392726898193, - -0.04440264031291008, - -0.21982036530971527, - 0.37472236156463623, - -0.04276905581355095, - -0.09620026499032974, - 0.02908872626721859, - -0.09099507331848145, - -0.2753008306026459, - -0.3301914930343628, - -0.04791897535324097, - -0.15440554916858673, - -0.16816763579845428, - -0.06730172783136368, - 0.3915735185146332, - -0.09142514318227768, - -0.27188313007354736, - -0.0064256563782691956, - 0.24760763347148895, - 0.24148720502853394, - -0.19531966745853424, - 0.3006075918674469, - -0.04432208463549614, - 0.016827555373311043, - 0.31624773144721985, - -0.055343568325042725, - 0.051810842007398605, - 0.025378888472914696, - -0.09153778105974197, - -0.04661935940384865, - 0.08529358357191086, - -0.18797290325164795, - -0.006317213177680969, - -0.014395952224731445, - 0.13675059378147125, - 0.20835058391094208, - 0.05316430702805519, - -0.18120451271533966, - 0.22870458662509918, - -0.2968134880065918, - -0.04303964972496033, - 0.4027644395828247, - -0.045180436223745346, - 0.3334524631500244, - -0.10494107753038406, - -0.3927772343158722, - -0.13229545950889587, - -0.02299315668642521, - -0.4296928942203522, - 0.09050929546356201, - -0.11670929193496704, - -0.1279643028974533, - -0.14898915588855743, - 0.17724640667438507, - 0.03909764811396599, - 0.10060129314661026, - 0.15947546064853668, - 0.06152903661131859, - 0.14317896962165833, - -0.23866748809814453, - -0.43254828453063965, - -0.09901084750890732, - -0.38773587346076965, - -0.22253715991973877, - -0.3123810589313507, - 0.495396226644516, - 0.3451974391937256, - 0.027216836810112, - 0.30889615416526794, - 0.17671746015548706, - -0.3696812689304352, - -0.4285455048084259, - 0.09291333705186844, - 0.002520974725484848, - 0.6669923663139343, - 0.1204298809170723, - -0.1391136795282364, - 0.21396581828594208, - -0.35269927978515625, - 0.16999216377735138, - 0.11407909542322159, - 0.3363466262817383, - 0.2050272673368454, - 0.17792630195617676, - 0.18760748207569122, - 0.40716585516929626, - 0.04768723249435425, - -0.07181703299283981, - 0.26335182785987854, - -0.06776238977909088, - -0.07599229365587234, - 0.05318622663617134, - -0.26008141040802, - 0.4335303008556366, - -0.2083413451910019, - 0.2967942953109741, - 0.03481077775359154, - 0.40641748905181885, - -0.3295558989048004, - -0.2863113582134247, - -0.14955826103687286, - -0.19514746963977814, - -0.16241545975208282, - -0.3860439360141754, - -0.09196055680513382, - 0.035194072872400284, - -0.39686882495880127, - -0.02615247666835785, - 0.313225120306015, - 0.20985959470272064, - 0.22650933265686035, - 0.10929300636053085, - -0.18530885875225067, - -0.5958649516105652, - 0.11688381433486938, - 0.3786272704601288, - 0.06033504009246826, - -0.06098856404423714, - -0.21456551551818848, - 0.13519680500030518, - 0.5937404632568359, - -0.147824227809906, - -0.15363654494285583, - -0.15835800766944885, - -0.019994698464870453, - -0.15189863741397858, - 0.04986085370182991, - 0.13520026206970215, - 0.008173215202987194, - -0.2559444308280945, - 0.18466399610042572, - -0.21693170070648193, - -0.25183194875717163, - 0.10293535143136978, - -0.3428787291049957, - -0.4075143337249756, - -0.0813012421131134, - 0.2764708399772644, - -0.14183409512043, - 0.0046338909305632114, - 0.06969350576400757, - 0.40910664200782776, - 0.15494349598884583, - -0.08243357390165329, - 0.10991507768630981, - -0.5248034000396729, - 0.029160523787140846, - 0.17612718045711517, - -0.3105247914791107, - 0.2706470489501953, - -0.03267401456832886, - 0.18293577432632446, - 0.20804639160633087, - 0.07241339981555939, - -0.40840888023376465, - -0.08385428786277771, - 0.24835951626300812, - 0.22726011276245117, - -0.2244320660829544, - -10.831900596618652, - 0.1381629854440689, - -0.1419145166873932, - 0.4843686521053314, - 0.008148173801600933, - 0.24655388295650482, - -0.1386006623506546, - -0.16020391881465912, - 0.14758320152759552, - 0.16683460772037506, - -0.3707302510738373, - 0.15639722347259521, - 0.3231031000614166, - 0.14578105509281158, - 0.04817182943224907, - -0.15438298881053925, - -0.1909579485654831, - 0.18654601275920868, - -0.025016173720359802, - 0.23805248737335205, - 0.2697882056236267, - 0.42605042457580566, - -0.09362324327230453, - 0.4333173334598541, - 0.3440745770931244, - -0.41225871443748474, - -0.20885245501995087, - 0.4244694411754608, - -0.0009001542930491269, - -0.41644108295440674, - 0.38396862149238586, - 0.16719354689121246, - -0.20909343659877777, - -0.26766908168792725, - 0.125658318400383, - -0.2478829175233841, - -0.12063967436552048, - -0.06583867222070694, - -0.06625141948461533, - -0.16925008594989777, - 0.3026072680950165, - -0.23537801206111908, - 0.013111191801726818, - 0.4063257873058319, - -0.012322620488703251, - -0.4491974115371704, - -0.1948428899049759, - -1.5686559677124023, - 0.24957232177257538, - 0.2833564281463623, - 0.659206748008728, - -0.0719742551445961, - 0.20845049619674683, - -0.033496227115392685, - -0.42099812626838684, - 0.05533331632614136, - -0.19142358005046844, - 0.08809811621904373, - 0.14123114943504333, - -0.16483594477176666, - 0.18626272678375244, - -0.0611964613199234, - 0.34045663475990295, - -0.3796728551387787, - -0.26251330971717834, - 0.1821005791425705, - -0.16539882123470306, - 0.11766568571329117, - -0.07272273302078247, - -0.0325261615216732, - -0.5570471882820129, - -0.24050140380859375, - 0.06079098582267761, - 0.042218852788209915, - 0.6986186504364014, - -0.09289368987083435, - -0.6226604580879211, - 0.09811966866254807, - -0.09182079881429672, - 0.4755999743938446, - 0.0031919304747134447, - -0.014835499227046967, - 0.13750164210796356, - -0.170401930809021, - 0.028249362483620644, - -0.16577740013599396, - 0.033027153462171555, - 0.5239070653915405, - -0.13378073275089264, - 0.15647996962070465, - -0.052812982350587845, - 0.15455414354801178, - -0.23594321310520172, - -0.23997335135936737, - -0.5261127352714539, - 0.09306284785270691, - 0.10780894756317139, - -0.2664227783679962, - 0.2574707567691803, - -0.05846063792705536, - 0.15417315065860748, - -0.20315617322921753, - -0.10560189932584763, - -0.4453847408294678, - -0.319789856672287, - 0.36412957310676575, - 0.14279498159885406, - 0.2212648242712021, - 0.26385000348091125, - 0.29368487000465393, - 0.13152553141117096, - -0.14904069900512695, - 0.3844359219074249, - 0.6140542030334473, - 0.15995867550373077, - -0.10019343346357346, - -0.2933753430843353, - 0.06507351249456406, - -0.2785865366458893, - 0.2224576473236084, - 0.3866521418094635, - -0.24133612215518951, - 0.27513235807418823, - 0.46849003434181213, - -0.00592648983001709, - -0.29155170917510986, - 1.000962257385254, - -0.04557621479034424, - 0.33111485838890076, - -0.20990490913391113, - 0.26791682839393616, - -0.18381904065608978, - -0.31385475397109985, - 0.15310752391815186, - 0.17991626262664795, - -0.3248556852340698, - 0.5527488589286804, - 0.022951176390051842, - -0.4245847463607788, - 0.048204973340034485, - -0.31499767303466797, - 0.4523840844631195, - 0.3257444202899933, - 0.3073401153087616, - -0.05427958443760872, - -0.48438799381256104, - -0.15765132009983063, - -0.07379958778619766, - -0.37495508790016174, - -0.2840275466442108, - -0.34312787652015686, - 0.022317776456475258, - -0.057873573154211044, - -0.45010027289390564, - 0.34556588530540466, - -0.011164420284330845, - -0.126723513007164, - 0.05070757865905762, - -0.49313345551490784, - -0.08720388263463974, - 0.30873796343803406, - 0.47946181893348694, - 0.06861132383346558, - -0.08337995409965515, - -0.07410212606191635, - 0.2933086156845093, - 0.08885056525468826, - 0.13537798821926117, - 0.05270006135106087, - 0.08064326643943787, - -0.3264540731906891, - 0.030107364058494568, - 0.15699632465839386, - -0.28945884108543396, - -0.2642630338668823, - -0.4108756482601166, - 0.28373464941978455, - -0.20364826917648315, - -0.11685913056135178, - 0.32205578684806824, - 0.17525340616703033, - -0.030546369031071663, - 0.003553539514541626, - -0.175478994846344, - 0.3904249966144562, - 0.2324962168931961, - 0.08687630295753479, - 0.2173994928598404, - -0.2631611227989197, - -0.4131915271282196, - -0.17108672857284546, - 0.05756508186459541, - -0.20615601539611816, - -0.029633240774273872, - -0.07155118137598038, - 0.11545458436012268, - -0.2921455502510071, - 0.1385897397994995, - -0.4446395933628082, - -0.064232237637043, - -0.22451208531856537, - 0.0709381252527237, - 0.3895019590854645, - -0.313774973154068, - 0.010707773268222809, - -0.14516572654247284, - 0.26597046852111816, - 0.158262237906456, - -0.27256155014038086, - 0.2485845685005188, - -0.11817363649606705 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_023.json b/src/benchmark/output/results/results_graph_023.json deleted file mode 100644 index 333b710..0000000 --- a/src/benchmark/output/results/results_graph_023.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "Here is a coherent narrative based on the provided data:\n\n**Patient Demographics**\n\nThe patient is an adult male with no specified age or background information. However, it can be inferred that he has been diagnosed with multiple conditions over the years, including melanoma and choroidal neoplasms.\n\n**Timeline of Diagnoses**\n\nThe patient's journey began with a diagnosis of melanoma in 2015 (N1). He underwent lymph node scintigraphy and removal of four sentinel lymph nodes as part of his treatment plan. This was followed by yearly follow-up visits at the dermato-oncologist, which helped monitor his condition for any signs of recurrence or metastasis.\n\nIn 2018, the patient presented with worsening eyesight in one eye due to a pigmented choroidal tumor (N4). He underwent brachytherapy for this condition, which involved the placement of a ruthenium-106 plaque in the affected area. This treatment helped stabilize his visual function and reduce the size of the tumor.\n\nOver the next few years, the patient's oncologist conducted regular follow-up appointments to monitor his condition. In 2020, it was discovered that the patient had metastatic disease throughout his body, with a pattern characteristic of primary cutaneous melanoma (N6). As a result, he began systemic cancer treatment with ipilimumab and nivolumab.\n\n**Timeline of Treatments**\n\n* 2015: Melanoma diagnosis and lymph node scintigraphy\n* 2018: Brachytherapy for pigmented choroidal tumor\n* 2020: Systemic cancer treatment with ipilimumab and nivolumab\n\n**Outcomes**\n\nThe patient's treatment plan has been successful in managing his conditions. His melanoma was successfully treated, and he has not experienced any significant recurrence or metastasis.\n\nRegarding the pigmented choroidal tumor, brachytherapy helped stabilize his visual function and reduce the size of the tumor. However, a new lesion developed in 2022 (N13), which required further treatment with brachytherapy.\n\nThe patient's PET/CT scan in 2023 showed no pathological processes, indicating that his cancer is currently under control (N9).\n\n**Current Status**\n\nThe patient continues to receive regular follow-up appointments with his oncologist and dermato-oncologist. He is being monitored for any signs of recurrence or metastasis, and his treatment plan will be adjusted as needed.\n\nOverall, the patient's journey has been marked by a series of diagnoses, treatments, and outcomes that have helped manage his conditions. While there are still challenges ahead, his current status suggests that he is in good hands with his healthcare team.", - "bertscore": { - "precision": [ - 0.6081898808479309 - ], - "recall": [ - 0.6577727794647217 - ], - "f1": [ - 0.6320104002952576 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 6, - "node_count": 15, - "edge_count": 9, - "avg_in_degree": 0.6, - "density": 0.04285714285714286 - }, - "trajectory_embedding": [ - 0.10540588945150375, - 0.12294507771730423, - -0.10281980782747269, - 0.1525949388742447, - 0.008018000051379204, - 0.2466597855091095, - 0.03886903077363968, - 0.2453383058309555, - 0.4833277463912964, - -0.4130333662033081, - -0.19181455671787262, - -0.0784992128610611, - -0.5563032031059265, - -0.12875708937644958, - -0.3123818039894104, - 0.17844067513942719, - -0.15840710699558258, - 0.31354740262031555, - -0.14745765924453735, - -0.240568146109581, - -0.464466392993927, - 0.16392968595027924, - -0.39374905824661255, - -0.04934096708893776, - 0.25246602296829224, - 0.0075703272596001625, - 0.37210211157798767, - 0.4643633961677551, - 0.2504419982433319, - 0.2829122841358185, - 0.12600451707839966, - -0.1761774718761444, - 0.18925292789936066, - 0.09302253276109695, - -0.2530670464038849, - 0.24846512079238892, - 0.2726340889930725, - 0.38299861550331116, - -0.09979867935180664, - 0.0023724823258817196, - -0.1422460526227951, - 0.09549273550510406, - 1.027288556098938, - 0.30371010303497314, - 0.35415127873420715, - -0.8291339874267578, - 0.008024404756724834, - 0.6264019012451172, - -0.41103553771972656, - -0.2886418402194977, - 0.19630712270736694, - 0.7624396085739136, - 0.6848915815353394, - -0.4350857436656952, - 0.35974159836769104, - -0.16606314480304718, - -0.2499833106994629, - -0.3592289984226227, - -0.20999979972839355, - -0.006635516881942749, - 0.07873689383268356, - -0.23369191586971283, - 0.46184810996055603, - -0.13427786529064178, - -0.18867765367031097, - -0.26090386509895325, - -0.2681501805782318, - 0.14255958795547485, - -0.021527666598558426, - -0.4072338342666626, - -0.11869309842586517, - -0.23740968108177185, - -0.03936491906642914, - 0.09508902579545975, - 0.04448454827070236, - -0.19890199601650238, - 0.3945222795009613, - -0.07774818688631058, - 0.21929572522640228, - 0.1994362622499466, - 0.005626731086522341, - -0.2045866996049881, - -0.03131599351763725, - 0.24741867184638977, - -0.39298582077026367, - -0.056732725352048874, - -0.04114944487810135, - -0.22727933526039124, - -0.39814555644989014, - 0.16487666964530945, - 0.15080752968788147, - -0.37798598408699036, - 0.06828337162733078, - -0.1537623256444931, - -0.00990469753742218, - 0.22966314852237701, - 0.5380993485450745, - 0.2210903912782669, - 0.906589925289154, - 0.05429588258266449, - 0.15897169709205627, - -0.02602461911737919, - 0.22510765492916107, - -0.01638304628431797, - 0.4049730896949768, - -0.12167565524578094, - 0.11328090727329254, - -0.6095162034034729, - 0.2929658889770508, - 0.4818204939365387, - 0.09354675561189651, - -0.09756139665842056, - -0.03538217395544052, - -0.3579121530056, - 0.15963099896907806, - 0.15470843017101288, - 0.06172731891274452, - 0.163257896900177, - 0.3083570897579193, - -0.3331752419471741, - -0.24518485367298126, - -0.09150578081607819, - 0.24035212397575378, - 0.24193598330020905, - -0.5483623147010803, - -0.1894088238477707, - -0.17043711245059967, - 0.021301865577697754, - 0.058352913707494736, - 0.01715903729200363, - -0.6233609318733215, - -0.1832914650440216, - -0.08317866176366806, - 0.07934686541557312, - -0.15344296395778656, - 0.2177623212337494, - -0.3933328092098236, - -0.059993941336870193, - -1.0207817554473877, - 0.291503369808197, - -0.49341270327568054, - -0.10910160839557648, - 0.020654018968343735, - -0.48037466406822205, - -0.2224712073802948, - -0.23720809817314148, - -0.06059173494577408, - 0.1687273383140564, - -0.13882222771644592, - -0.03924066573381424, - 0.06718704104423523, - 0.09149619936943054, - 0.38316699862480164, - 0.47747451066970825, - 0.09038378298282623, - 0.019614534452557564, - 0.028186606243252754, - 0.32537707686424255, - 0.1358811855316162, - -0.06952391564846039, - -0.04559817537665367, - 0.4944629371166229, - 0.12570516765117645, - -0.023196183145046234, - -0.12377288192510605, - -0.5686734914779663, - 0.03422827646136284, - -0.2508287727832794, - 0.19657284021377563, - 0.10473105311393738, - -0.13839533925056458, - 0.14451926946640015, - -0.2842901051044464, - 0.5750104784965515, - 0.05717456713318825, - 0.36666908860206604, - 0.08807339519262314, - 0.11755558103322983, - 0.20649833977222443, - 0.2453908622264862, - 0.14470511674880981, - -0.25060492753982544, - 0.7956674098968506, - 0.17484737932682037, - -0.28887996077537537, - 0.25873568654060364, - 0.20764043927192688, - 0.12429597228765488, - -0.271107941865921, - -0.051201045513153076, - 0.6041942238807678, - -0.352491557598114, - 0.5640609264373779, - -0.3402418792247772, - -0.12430182844400406, - 0.19616474211215973, - -0.1318172961473465, - -0.16388756036758423, - -0.09876183420419693, - -0.2071043998003006, - 0.31041219830513, - 0.07279521971940994, - -0.37483087182044983, - 0.07370534539222717, - 0.17566488683223724, - -0.12789197266101837, - 0.1751793920993805, - -0.030174780637025833, - 0.17843356728553772, - -0.01687287911772728, - -0.03552335873246193, - 0.33537453413009644, - -0.192875474691391, - 0.21160462498664856, - 0.016802731901407242, - -0.34549659490585327, - 0.13406164944171906, - -0.12263575941324234, - -0.10731329768896103, - 0.19806906580924988, - -0.08674362301826477, - -0.2776440680027008, - -0.13555006682872772, - 0.03757258504629135, - -0.5905658006668091, - 0.32661813497543335, - 0.15398259460926056, - 0.24565400183200836, - 0.21549130976200104, - 0.004986894316971302, - -0.10407869517803192, - -0.4243234395980835, - 0.3127771317958832, - -0.19425766170024872, - -0.11120573431253433, - -0.2644818425178528, - 0.2955857813358307, - -0.29358914494514465, - 0.14961814880371094, - 0.3114207684993744, - -0.018594659864902496, - -0.17575189471244812, - 0.11870010942220688, - -0.3582589328289032, - -0.10156776756048203, - -0.4399971067905426, - -0.00157088041305542, - 0.24979476630687714, - 0.235335111618042, - 0.26279217004776, - 0.016557900235056877, - -0.16639743745326996, - 0.20357860624790192, - -0.02686806209385395, - -0.4637526273727417, - -0.4300419092178345, - -0.06695666909217834, - -0.11982548981904984, - -0.6362000107765198, - 0.22889503836631775, - -0.07727131247520447, - 0.05531517043709755, - 0.08499515056610107, - -0.3302699625492096, - -0.16438992321491241, - 0.10764308273792267, - 0.0494249127805233, - 0.08944695442914963, - -0.20453210175037384, - 0.1977028250694275, - -0.2303893119096756, - -0.15253441035747528, - -0.17145033180713654, - -0.03220642730593681, - 0.18061088025569916, - -0.09644664078950882, - -0.25604137778282166, - -0.031833868473768234, - 0.07496373355388641, - -0.35041046142578125, - -0.15845289826393127, - 0.20439700782299042, - -0.2330440878868103, - 0.20092608034610748, - 0.04754509776830673, - 0.28126204013824463, - 0.2688766121864319, - 0.023704219609498978, - 0.12472750246524811, - 0.37829363346099854, - 0.4846135377883911, - -0.050832267850637436, - 0.05144510418176651, - -0.13581392168998718, - -0.08318902552127838, - -0.04335296154022217, - -0.35636746883392334, - 0.4426424205303192, - -0.0073680938221514225, - -0.04162835702300072, - 0.05309077352285385, - 0.21295204758644104, - 0.04395555704832077, - -0.3232347071170807, - 0.03776474669575691, - 0.5808418989181519, - 0.06036875396966934, - 0.1372818946838379, - 0.09702330082654953, - 0.3045187294483185, - 0.2947564125061035, - -0.15899357199668884, - 0.04379658028483391, - 0.07026609033346176, - 0.010119128040969372, - -0.17713841795921326, - -0.12790073454380035, - 0.1939122974872589, - 0.4322517216205597, - -0.23470260202884674, - -0.28635936975479126, - 0.03168969601392746, - -0.20399382710456848, - 0.017741955816745758, - -0.293542742729187, - -0.10792018473148346, - 0.2653021812438965, - -0.11763367056846619, - 0.31381601095199585, - 0.004526435397565365, - -0.07504672557115555, - 0.34192556142807007, - -0.38925448060035706, - -0.11522834002971649, - 0.33429986238479614, - -0.10702872276306152, - -0.3208511769771576, - 0.46630755066871643, - -0.2657845616340637, - -0.03699672222137451, - 0.46819639205932617, - -0.338553786277771, - 0.03620921075344086, - -0.020941967144608498, - 0.2814064621925354, - -0.012520051561295986, - 0.03525084629654884, - 0.014351332560181618, - 0.10305849462747574, - 0.02191077545285225, - 0.622248649597168, - 0.0299111008644104, - 0.22913901507854462, - 0.6509575247764587, - 0.11966567486524582, - -0.40205392241477966, - 0.02945004589855671, - 0.008811768144369125, - 0.4460221230983734, - -0.22945356369018555, - -0.1987760365009308, - -0.16281132400035858, - 0.06571359932422638, - 0.137421116232872, - -0.3439699113368988, - -0.13022515177726746, - 0.1773623526096344, - 0.1496211439371109, - 0.025010693818330765, - 0.3171243667602539, - 0.13117240369319916, - -0.17258624732494354, - 0.5425522923469543, - -0.09149356931447983, - -0.13042902946472168, - 0.4048955738544464, - -0.26532939076423645, - 0.2410159409046173, - 0.01963857002556324, - -0.06822963058948517, - -0.3502468466758728, - 0.036000337451696396, - -0.27324965596199036, - -0.20855408906936646, - -0.00036915639066137373, - -0.12664860486984253, - 0.2492123544216156, - -0.20209312438964844, - 0.18984355032444, - -0.023039229214191437, - 0.0968957245349884, - 0.18058235943317413, - 0.3629196584224701, - 0.11933913826942444, - -0.2610386908054352, - 0.2077244073152542, - 0.003575290320441127, - -0.051995743066072464, - -0.2638947069644928, - 0.09006045013666153, - -0.17539477348327637, - 0.6198652982711792, - 0.10665176063776016, - -0.04038642346858978, - 0.15393748879432678, - -0.0005332917207852006, - -0.12166525423526764, - -0.45533448457717896, - -0.06451118737459183, - -0.13924480974674225, - 0.09588596224784851, - 0.08295547962188721, - 0.13122636079788208, - -0.4504825174808502, - -0.254278302192688, - -0.08515568822622299, - -0.013261860236525536, - 0.05260207876563072, - -0.23075418174266815, - -0.1282164752483368, - 0.2711666226387024, - 0.19158010184764862, - 0.5234825611114502, - -0.23971638083457947, - 0.20443391799926758, - 0.1009591743350029, - -0.24843372404575348, - -0.12269137054681778, - -0.0573158822953701, - -0.3664810359477997, - -0.035646744072437286, - 0.31044408679008484, - 0.259563148021698, - -0.04733399674296379, - 0.006295822095125914, - 0.1952313631772995, - 0.12567515671253204, - -0.24682599306106567, - -0.05689653009176254, - 0.297265887260437, - 0.20892806351184845, - 0.44249406456947327, - 0.05410837009549141, - -0.5714361071586609, - -0.2337433397769928, - -0.13934046030044556, - -0.3879508972167969, - 0.09951461851596832, - 0.30615949630737305, - -0.04025821387767792, - -0.10682633519172668, - 0.0612107589840889, - -0.059629034250974655, - -0.006856898311525583, - 0.25130030512809753, - -0.1468939185142517, - 0.16787134110927582, - 0.016428831964731216, - -0.28505510091781616, - -0.09632950276136398, - -0.22900022566318512, - -0.3894830346107483, - -0.2524265646934509, - 0.2745938003063202, - 0.33430683612823486, - -0.3580789268016815, - 0.023864872753620148, - 0.1575167030096054, - -0.09111759811639786, - -0.22547687590122223, - -0.08123160898685455, - -0.3247504234313965, - 0.39405861496925354, - -0.09096460789442062, - -0.16129444539546967, - 0.18877369165420532, - -0.12563948333263397, - 0.005846284795552492, - 0.2877874970436096, - 0.07605194300413132, - 0.47374430298805237, - 0.12929055094718933, - 0.10727591812610626, - 0.6219854950904846, - 0.03264620527625084, - 0.15305334329605103, - 0.37969112396240234, - 0.08025489747524261, - 0.09503491967916489, - -0.2763998806476593, - -0.18387603759765625, - 0.1978072077035904, - -0.2909025549888611, - -0.11386372148990631, - 0.224113330245018, - 0.31008103489875793, - -0.47914043068885803, - -0.38312312960624695, - 0.0913672223687172, - -0.014902893453836441, - -0.13913607597351074, - -0.13829882442951202, - -0.2270067036151886, - -0.20107460021972656, - -0.3130635619163513, - -0.046361956745386124, - 0.3646821975708008, - 0.5303696990013123, - 0.18667727708816528, - 0.34985432028770447, - -0.29128608107566833, - -0.21150325238704681, - 0.15369947254657745, - 0.2192392349243164, - 0.11378519237041473, - -0.016782617196440697, - -0.13254792988300323, - 0.2793768346309662, - 0.4502277076244354, - -0.0758567601442337, - -0.07392445206642151, - 0.13473327457904816, - 0.11926963180303574, - 0.12599562108516693, - 0.06355500966310501, - -0.16512838006019592, - 0.0979687049984932, - -0.40158045291900635, - 0.23024988174438477, - -0.22639204561710358, - -0.048249129205942154, - 0.19451647996902466, - -0.09980657696723938, - -0.5379163026809692, - -0.27807843685150146, - 0.35921797156333923, - -0.02428627200424671, - -0.09584607928991318, - 0.11113645136356354, - 0.25256115198135376, - 0.03493845462799072, - -0.3131742775440216, - 0.02731485292315483, - -0.5819074511528015, - -0.29746875166893005, - 0.07435032725334167, - -0.1648530662059784, - -0.1786605268716812, - -0.0399533286690712, - 0.36118289828300476, - 0.5316526889801025, - 0.20876045525074005, - -0.1711941510438919, - 0.05316804721951485, - 0.40342769026756287, - 0.2379724532365799, - -0.23538421094417572, - -10.623929977416992, - -0.26017510890960693, - -0.3488449156284332, - 0.540946900844574, - -0.17758601903915405, - 0.17842096090316772, - 0.022992338985204697, - -0.04153599590063095, - 0.02428966760635376, - -0.049408331513404846, - -0.0713285282254219, - 0.03228401020169258, - 0.3266829252243042, - 0.3734135925769806, - -0.02846616506576538, - 0.02300538308918476, - -0.35357388854026794, - 0.244655042886734, - -0.02367827109992504, - 0.17931996285915375, - 0.18457730114459991, - 0.3176308274269104, - -0.26505813002586365, - 0.18954713642597198, - 0.028089651837944984, - -0.4220680594444275, - -0.27149027585983276, - 0.7372685670852661, - 0.3427467346191406, - -0.45808425545692444, - 0.22815817594528198, - 0.19707633554935455, - -0.26014235615730286, - 0.1702694147825241, - -0.13480471074581146, - -0.12260546535253525, - -0.00746189383789897, - 0.21922212839126587, - 0.3099682629108429, - -0.11947111040353775, - 0.0020239194855093956, - -0.1375351846218109, - 0.19417990744113922, - 0.1811763346195221, - -0.06433601677417755, - -0.5704725980758667, - -0.1508082002401352, - -1.6320582628250122, - 0.2544516921043396, - 0.19476638734340668, - 0.3086756467819214, - -0.023497721180319786, - 0.07936050742864609, - 0.3015574812889099, - -0.4753776788711548, - -0.008248993195593357, - -0.34491968154907227, - -0.21359094977378845, - 0.2200906127691269, - 0.08279090374708176, - 0.09794500470161438, - -0.20005130767822266, - 0.5628446340560913, - 0.0028136095497757196, - -0.3437557518482208, - 0.1574714481830597, - 0.06340117007493973, - -0.15687288343906403, - -0.3473069369792938, - -0.8011226654052734, - -0.5776692032814026, - -0.08539724349975586, - -0.12839891016483307, - -0.02600221522152424, - 0.3583083748817444, - -0.06981637328863144, - -0.26374244689941406, - 0.15529952943325043, - -0.07142098993062973, - 0.401366263628006, - 0.27951952815055847, - -0.03975408151745796, - 0.1448942869901657, - -0.15060535073280334, - -0.20595379173755646, - -0.14473560452461243, - 0.2329442799091339, - 0.44619420170783997, - 0.04756370559334755, - 0.01109549030661583, - -0.004931437782943249, - 0.4391990005970001, - 0.04380490630865097, - -0.21931114792823792, - -0.3671543300151825, - -0.048517219722270966, - -0.02235555462539196, - 0.05229479447007179, - 0.011207119561731815, - -0.07917850464582443, - -0.12452850490808487, - 0.036820702254772186, - -0.02945583499968052, - -0.5879871845245361, - -0.634482741355896, - 0.3592011034488678, - 0.1528005748987198, - 0.2015140801668167, - -0.03147140517830849, - -0.15412244200706482, - -0.23307695984840393, - 0.08083023130893707, - 0.3005533516407013, - 0.4675835967063904, - 0.12514790892601013, - -0.026294536888599396, - 0.07941616326570511, - -0.21910913288593292, - -0.2745157480239868, - -0.04270196706056595, - 0.48088958859443665, - -0.16457298398017883, - 0.19873087108135223, - 0.7327362895011902, - -0.09735066443681717, - -0.11754926294088364, - 0.9171164035797119, - -0.3106139302253723, - 0.17107251286506653, - -0.15621306002140045, - 0.3079272508621216, - -0.14123736321926117, - -0.4331967234611511, - -0.004580462817102671, - 0.43857353925704956, - -0.48107585310935974, - 0.8163595795631409, - 0.3323533833026886, - -0.484063059091568, - -0.09240676462650299, - -0.31357043981552124, - 0.549168586730957, - 0.21792258322238922, - 0.15981420874595642, - -0.13272598385810852, - -0.3718981444835663, - -0.3920591175556183, - 0.10193683207035065, - -0.32276204228401184, - -0.3845391273498535, - -0.3087849020957947, - 0.005837361793965101, - 0.20779834687709808, - -0.27028197050094604, - 0.2845051884651184, - 0.21079584956169128, - -0.12711599469184875, - -0.36586621403694153, - -0.323087215423584, - -0.10290562361478806, - 0.23019053041934967, - 0.9724202752113342, - -0.02535000629723072, - -0.13651777803897858, - -0.0026215394027531147, - 0.012383543886244297, - -0.2120051085948944, - 0.19916346669197083, - 0.09989184886217117, - -0.14570428431034088, - -0.4238450229167938, - 0.25755029916763306, - 0.18661408126354218, - -0.1633668839931488, - -0.0990627259016037, - -0.21580679714679718, - -0.10193350166082382, - 0.07419272512197495, - -0.17382192611694336, - 0.15197031199932098, - 0.32341235876083374, - -0.18045124411582947, - 0.07654955238103867, - -0.06884613633155823, - -0.14268629252910614, - 0.16112728416919708, - 0.4973635673522949, - 0.13134917616844177, - -0.3417559266090393, - -0.31511548161506653, - -0.5136363506317139, - 0.42994651198387146, - -0.4218570291996002, - -0.0024242743384093046, - 0.15463702380657196, - 0.2214624136686325, - -0.21871942281723022, - 0.14731012284755707, - 0.05015827715396881, - -0.06620728224515915, - -0.13225476443767548, - 0.19293734431266785, - 0.4978739321231842, - -0.2862992286682129, - 0.2814665734767914, - -0.13345995545387268, - 0.1598857045173645, - 0.12978525459766388, - -0.25623899698257446, - 0.16946609318256378, - -0.3194625973701477 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_025.json b/src/benchmark/output/results/results_graph_025.json deleted file mode 100644 index ed4dab8..0000000 --- a/src/benchmark/output/results/results_graph_025.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 68-year-old male who was admitted to the hospital in June 2022 with correct upper lung occupancy on physical examination.\n\n**Timeline of Diagnoses:**\n\n1. **Step 1 (June 2022):** The patient presented with initial symptoms, which led to further evaluation.\n2. **Step 2 (June 2022):** PET-CT findings revealed right upper lung cancer and multiple tiny nodules in both lungs, as well as thyroid isthmus occupancy.\n3. **Step 3 (June 2022):** Diagnosis of the right upper lung nodule via CT-guided puncture confirmed lung adenocarcinoma with a PD-L1 TPS of 2%. Diagnosis of the thyroid gland via fine-needle aspiration revealed papillary carcinoma.\n4. **Step 4 (July 2022):** Chest CT scans showed stable disease following treatments.\n5. **Step 5 (August 2022):** Post-surgery chest CT examination revealed no signs of tumor recurrence.\n6. **Step 6 (September 2022):** Thyroid color ultrasonography suggested isthmic thyroid nodules.\n7. **Step 7 (October 2022):** Postoperative thyroid ultrasound showed no signs of tumor recurrence.\n8. **Step 8 (November 2022):** PET-CT scans revealed a primary tumor mass in the right neck subcutaneous at the time of diagnosis.\n9. **Step 9 (December 2022):** Ultrasound results suggested a hypoechoic mass in the V region of the right neck.\n10. **Step 10 (January 2023):** Puncture biopsies revealed adenocarcinoma of lung, papillary carcinoma of thyroid, and a spindle cell.\n\n**Timeline of Treatments:**\n\n1. **CT-guided puncture (June 2022):** Used to diagnose the right upper lung nodule.\n2. **Fine-needle aspiration (June 2022):** Used to diagnose the thyroid gland.\n3. **Treatments (July 2022):** Administered following PET-CT findings.\n4. **Surgery (August 2022):** Performed to remove the tumor.\n5. **Postoperative care (September 2022):** Provided to monitor for tumor recurrence.\n\n**Outcomes:**\n\n1. **Lung adenocarcinoma:** Stable disease was observed following treatments, and no signs of tumor recurrence were seen on post-surgery chest CT examination.\n2. **Papillary carcinoma of thyroid:** No signs of tumor recurrence were seen on postoperative thyroid ultrasound.\n3. **Primary tumor mass in the right neck subcutaneous:** PET-CT scans revealed a primary tumor mass at the time of diagnosis, but no further treatment was mentioned.\n\n**Conclusion:**\nThe patient underwent a series of diagnostic tests and treatments for lung cancer and papillary carcinoma of the thyroid. Following these interventions, stable disease was observed in both conditions, with no signs of tumor recurrence seen on post-surgery chest CT examination and postoperative thyroid ultrasound. However, PET-CT scans revealed a primary tumor mass in the right neck subcutaneous at the time of diagnosis, which warrants further evaluation and treatment.", - "bertscore": { - "precision": [ - 0.6954405307769775 - ], - "recall": [ - 0.7023525238037109 - ], - "f1": [ - 0.6988794207572937 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 10, - "edge_count": 9, - "avg_in_degree": 0.9, - "density": 0.1 - }, - "trajectory_embedding": [ - 0.34409192204475403, - 0.07935971021652222, - 0.046093933284282684, - 0.01933947391808033, - -0.0402722992002964, - 0.1429879069328308, - 0.05653051286935806, - 0.2529970109462738, - 0.3755955100059509, - -0.32734960317611694, - -0.2119436264038086, - -0.10174901783466339, - -0.4879678785800934, - -0.0025561749935150146, - -0.42852139472961426, - 0.38021185994148254, - 0.006385275162756443, - 0.34415745735168457, - 0.034441545605659485, - -0.2897089719772339, - -0.6047749519348145, - 0.19311702251434326, - -0.3682791292667389, - -0.16228988766670227, - 0.3098732829093933, - -0.07636822760105133, - 0.491788387298584, - 0.32804110646247864, - 0.24615177512168884, - 0.43646949529647827, - 0.10637984424829483, - -0.16918689012527466, - 0.2964051365852356, - 0.16695259511470795, - -0.276353120803833, - 0.22060327231884003, - 0.09466035664081573, - 0.4242221713066101, - -0.04981246218085289, - 0.07084467262029648, - -0.09227023273706436, - -0.019749227911233902, - 0.9331127405166626, - 0.22261857986450195, - 0.38208872079849243, - -0.8041372299194336, - 0.014897430315613747, - 0.5418993830680847, - -0.4335913062095642, - -0.41148990392684937, - 0.05835535377264023, - 0.7718365788459778, - 0.5373396873474121, - -0.3264762759208679, - 0.35430845618247986, - -0.11880211532115936, - -0.2558634877204895, - -0.3408660292625427, - -0.1965479552745819, - -0.0837758332490921, - 0.017880480736494064, - -0.4171941876411438, - 0.24733512103557587, - -0.13585253059864044, - -0.235460564494133, - -0.12074846029281616, - -0.18350398540496826, - 0.07242180407047272, - 0.07565711438655853, - -0.39984697103500366, - -0.14674818515777588, - -0.08842828124761581, - -0.14150972664356232, - 0.10859277099370956, - 0.03293155878782272, - -0.19246013462543488, - 0.30841201543807983, - -0.07365747541189194, - 0.15263035893440247, - 0.2795923054218292, - -0.16655288636684418, - -0.13266092538833618, - 0.15200862288475037, - 0.3052229881286621, - -0.45141467452049255, - 0.0778149738907814, - -0.02274831011891365, - -0.33950066566467285, - -0.41491207480430603, - 0.13640737533569336, - 0.2692234218120575, - -0.2633920907974243, - -0.017579253762960434, - -0.10412584245204926, - 0.027988016605377197, - 0.21585381031036377, - 0.4556496739387512, - 0.37310370802879333, - 0.854825496673584, - 0.08096719533205032, - 0.2081153839826584, - 0.07202550023794174, - 0.3097875714302063, - 0.1759634017944336, - 0.42980772256851196, - -0.15672524273395538, - 0.14431779086589813, - -0.44745659828186035, - 0.2056637555360794, - 0.32284390926361084, - 0.045483194291591644, - -0.1305679976940155, - -0.16680963337421417, - -0.1074424609541893, - 0.2910589873790741, - 0.13408495485782623, - -0.040139101445674896, - 0.2597724199295044, - 0.35030680894851685, - -0.542816698551178, - -0.16513656079769135, - 0.10210822522640228, - 0.2839711606502533, - 0.3802012801170349, - -0.4399718642234802, - -0.039091385900974274, - -0.13053271174430847, - 0.006130659021437168, - 0.0908668264746666, - -0.03621388599276543, - -0.5616754293441772, - -0.13141697645187378, - 0.023215685039758682, - 0.0977773517370224, - -0.011099062860012054, - 0.21458613872528076, - -0.28988397121429443, - -0.2817309498786926, - -0.9829242825508118, - 0.19844935834407806, - -0.4716169834136963, - -0.002095638308674097, - 0.11036380380392075, - -0.3770889639854431, - -0.30345481634140015, - -0.3001001477241516, - -0.23194973170757294, - 0.24940530955791473, - -0.1867944747209549, - -0.09672097861766815, - 0.20561590790748596, - 0.053852248936891556, - 0.09751758724451065, - 0.497453510761261, - 0.11201523244380951, - 0.04626644775271416, - -0.10618264973163605, - 0.1737644523382187, - 0.02491249516606331, - -0.23452958464622498, - -0.04758279398083687, - 0.42864590883255005, - 0.2014569342136383, - -0.06885853409767151, - -0.014541953802108765, - -0.6110870838165283, - 0.0030451356433331966, - -0.1998884230852127, - 0.20489351451396942, - 0.008913328871130943, - -0.1612914353609085, - 0.1453096866607666, - -0.38109922409057617, - 0.5990554690361023, - 0.0004708290216512978, - 0.32069629430770874, - -0.08127111196517944, - -0.20718082785606384, - -0.1049957424402237, - 0.12326383590698242, - 0.03287368267774582, - -0.062451399862766266, - 0.7835549712181091, - 0.1420402228832245, - -0.20643334090709686, - 0.1744142323732376, - 0.3822079300880432, - 0.06196935847401619, - -0.091549351811409, - -0.006322438828647137, - 0.5237022042274475, - -0.36614546179771423, - 0.47939425706863403, - -0.5360676050186157, - -0.09666240215301514, - 0.21724390983581543, - -0.23145151138305664, - -0.1408461183309555, - 0.0891164094209671, - -0.05942437797784805, - 0.19733189046382904, - -0.1009359359741211, - -0.3478679060935974, - 0.056424010545015335, - 0.1409929394721985, - -0.13846060633659363, - 0.474956214427948, - -0.004076138138771057, - 0.20285344123840332, - -0.06576456129550934, - -0.07919222116470337, - 0.09500087052583694, - -0.20882615447044373, - 0.045426785945892334, - 0.0767301544547081, - -0.46769294142723083, - 0.3010626435279846, - -0.08968665450811386, - -0.1328880786895752, - 0.22241711616516113, - -0.1452939510345459, - -0.4185153543949127, - -0.06098669022321701, - 0.07440386712551117, - -0.6659349203109741, - 0.10032595694065094, - 0.07138638943433762, - 0.07103453576564789, - 0.2508361041545868, - 0.01482794713228941, - -0.06833046674728394, - -0.20987391471862793, - 0.2960635721683502, - -0.05147011950612068, - -0.14352816343307495, - -0.410299152135849, - 0.16407112777233124, - -0.41320133209228516, - -0.0030202940106391907, - 0.38813281059265137, - -0.10843093693256378, - -0.2296278476715088, - 0.26454225182533264, - -0.2560572028160095, - -0.2512972354888916, - -0.3155098855495453, - 0.11653057485818863, - 0.1998750865459442, - 0.028979569673538208, - 0.2590837776660919, - -0.04228191450238228, - -0.17696233093738556, - 0.06993643939495087, - -0.181122288107872, - -0.2765224277973175, - -0.4668980538845062, - -0.08445848524570465, - -0.09790284186601639, - -0.690933883190155, - 0.19455251097679138, - 0.1545882523059845, - -0.07782334089279175, - -0.07072602957487106, - -0.3016374409198761, - -0.07491268962621689, - 0.18130536377429962, - -0.1462041288614273, - 0.1440945863723755, - -0.3009297847747803, - 0.2703302502632141, - -0.2663566470146179, - -0.32695525884628296, - -0.1166166216135025, - 0.14757469296455383, - 0.07960231602191925, - -0.04991868510842323, - -0.24090361595153809, - -0.09846314787864685, - -0.0020150437485426664, - -0.3079786002635956, - -0.03730855882167816, - 0.09744799882173538, - -0.10019735246896744, - 0.07911550998687744, - 0.04703402519226074, - 0.19398897886276245, - 0.26273849606513977, - 0.008508743718266487, - 0.11639855057001114, - 0.40372371673583984, - 0.4914776682853699, - -0.005682068411260843, - 0.020495468750596046, - -0.03221295028924942, - -0.08210901916027069, - 0.038266442716121674, - -0.43393364548683167, - 0.43159928917884827, - 0.13229352235794067, - -0.0053727151826024055, - -0.005543805658817291, - 0.4211336672306061, - 0.11322933435440063, - -0.2521112561225891, - 0.024090563878417015, - 0.5546082258224487, - 0.09096264839172363, - 0.07495968043804169, - 0.22281956672668457, - 0.28867417573928833, - 0.3520870506763458, - -0.2197461575269699, - 0.071861632168293, - 0.15291914343833923, - -0.20332777500152588, - -0.28232207894325256, - -0.009587623178958893, - 0.06598182767629623, - 0.4142846465110779, - -0.15252399444580078, - -0.029657285660505295, - 0.028149837628006935, - -0.058664001524448395, - 0.004716440103948116, - -0.14159348607063293, - -0.12126047909259796, - 0.1179777979850769, - -0.2545616030693054, - 0.3017883598804474, - 0.2357698231935501, - 0.05737247318029404, - 0.3814779222011566, - -0.37081393599510193, - -0.21278893947601318, - 0.13215741515159607, - -0.18531961739063263, - -0.48333439230918884, - 0.34340569376945496, - -0.2364344596862793, - -0.033892810344696045, - 0.3948160707950592, - -0.22435832023620605, - -0.0025246411096304655, - 0.01225079596042633, - 0.3711504638195038, - -0.0692736953496933, - -0.008203865960240364, - -0.04927559196949005, - 0.1161004900932312, - 0.2468988597393036, - 0.6624588966369629, - 0.14349114894866943, - 0.16445644199848175, - 0.6924375295639038, - 0.20582973957061768, - -0.3519481420516968, - 0.026891911402344704, - 0.046080637723207474, - 0.4941091537475586, - -0.17551246285438538, - -0.012057828716933727, - -0.20368599891662598, - -0.018322955816984177, - 0.043531130999326706, - -0.39472728967666626, - -0.040171585977077484, - 0.29997286200523376, - -0.01228110771626234, - -0.074879489839077, - 0.24861589074134827, - 0.1451931893825531, - -0.0754944309592247, - 0.5172557234764099, - -0.101374052464962, - -0.0023236542474478483, - 0.37532758712768555, - -0.4061834216117859, - 0.2539873719215393, - -0.15625077486038208, - -0.23557698726654053, - -0.33536142110824585, - 0.008579796180129051, - -0.22273826599121094, - -0.18272042274475098, - 0.008866168558597565, - -0.14304885268211365, - 0.17577452957630157, - -0.24075035750865936, - 0.14130714535713196, - -0.10155601799488068, - 0.14121365547180176, - 0.2552831172943115, - 0.22026333212852478, - 0.11719175428152084, - -0.1879720240831375, - 0.3372076451778412, - 0.14899040758609772, - 0.05395301431417465, - -0.0854962021112442, - -0.06199127435684204, - -0.25143963098526, - 0.5644934773445129, - 0.16444604098796844, - 0.030761191621422768, - 0.22783879935741425, - 0.031267598271369934, - -0.18935878574848175, - -0.4006851315498352, - -0.10948963463306427, - -0.10813689231872559, - 0.027576467022299767, - 0.07774531841278076, - 0.03390905261039734, - -0.47600072622299194, - -0.21587494015693665, - -0.08590082079172134, - 0.05886228010058403, - 0.13644926249980927, - -0.14275924861431122, - -0.08506400138139725, - 0.2593744695186615, - 0.01818004995584488, - 0.29972559213638306, - -0.2499568909406662, - 0.1344267576932907, - -0.04311636835336685, - -0.2831535041332245, - -0.07384838163852692, - -0.010022329166531563, - -0.33818453550338745, - -0.2164638340473175, - 0.2741811275482178, - 0.22546514868736267, - 0.046541012823581696, - -0.030199944972991943, - 0.23237189650535583, - 0.354775607585907, - -0.40847092866897583, - -0.015232485719025135, - 0.24940447509288788, - 0.11734180152416229, - 0.4726150631904602, - 0.015054690651595592, - -0.41058310866355896, - -0.17148104310035706, - -0.13723528385162354, - -0.3704623878002167, - 0.06683990359306335, - 0.3820953965187073, - -0.08136661350727081, - -0.26948028802871704, - 0.07124471664428711, - -0.06682553887367249, - -0.05776023864746094, - 0.4192635118961334, - -0.22636520862579346, - 0.21376335620880127, - -0.061835139989852905, - -0.35631063580513, - -0.17632554471492767, - -0.20711317658424377, - -0.24012556672096252, - -0.21103760600090027, - 0.27389010787010193, - 0.283041387796402, - -0.32464277744293213, - 0.018890153616666794, - 0.2057572305202484, - -0.293113648891449, - -0.053482700139284134, - 0.06273233145475388, - -0.3687474727630615, - 0.25579553842544556, - -0.09641166776418686, - -0.19231979548931122, - 0.032758187502622604, - -0.08952455222606659, - 0.20893383026123047, - 0.22381393611431122, - 0.1503385603427887, - 0.4326072633266449, - 0.20687779784202576, - 0.181828111410141, - 0.5760985612869263, - 0.07617873698472977, - -0.007986955344676971, - 0.3772718906402588, - 0.012241259217262268, - 0.021846292540431023, - -0.29399779438972473, - -0.1638963520526886, - 0.17834100127220154, - -0.2398909330368042, - -0.21189014613628387, - 0.25835180282592773, - 0.09032551944255829, - -0.4970058500766754, - -0.24736516177654266, - 0.05954643338918686, - 0.02432127483189106, - -0.03677936643362045, - -0.1377820074558258, - -0.26550450921058655, - 0.012497449293732643, - -0.36105749011039734, - -0.08158467710018158, - 0.29838499426841736, - 0.5350936055183411, - 0.25577783584594727, - 0.29303640127182007, - -0.28418800234794617, - -0.347956120967865, - 0.1854005753993988, - 0.15456965565681458, - -0.024988342076539993, - 0.1787085384130478, - -0.20947763323783875, - 0.32720598578453064, - 0.5461069345474243, - -0.09576515108346939, - 0.13289324939250946, - 0.2532498240470886, - 0.07627270370721817, - 0.25088077783584595, - 0.10918164253234863, - -0.17603369057178497, - -0.13441535830497742, - -0.34993523359298706, - 0.3254307508468628, - -0.4216597080230713, - -0.15539418160915375, - 0.16309864819049835, - -0.02840730920433998, - -0.3832947313785553, - -0.32173284888267517, - 0.3797154724597931, - -0.2556803822517395, - -0.06783922016620636, - 0.18756526708602905, - 0.29791852831840515, - 0.11234061419963837, - -0.4010881781578064, - 0.09605614840984344, - -0.5894181728363037, - -0.24999651312828064, - 0.22488638758659363, - -0.07722201198339462, - -0.200343519449234, - 0.08094879984855652, - 0.4464428424835205, - 0.580985426902771, - 0.12446089088916779, - -0.24944142997264862, - 0.00395713746547699, - 0.32494980096817017, - 0.2490430623292923, - -0.19164036214351654, - -10.719809532165527, - -0.28037816286087036, - -0.23766520619392395, - 0.5722590088844299, - -0.15406028926372528, - 0.10810510814189911, - 0.4375247061252594, - -0.10058359056711197, - 0.09238986670970917, - 0.13223741948604584, - -0.12574058771133423, - 0.02017359621822834, - 0.22973613440990448, - 0.3159524202346802, - -0.04853753373026848, - 0.015586012974381447, - -0.3300420641899109, - 0.14735691249370575, - -0.08748709410429001, - 0.2801184058189392, - 0.18157437443733215, - 0.3689839839935303, - -0.34503477811813354, - 0.1497897207736969, - -0.06614295393228531, - -0.4300752282142639, - -0.2093162089586258, - 0.7996499538421631, - 0.1994819939136505, - -0.27349185943603516, - 0.181228905916214, - 0.30252283811569214, - -0.3012550473213196, - 0.2618922293186188, - -0.09177912026643753, - 0.03209279850125313, - -0.022567864507436752, - 0.023853156715631485, - 0.29842907190322876, - -0.014488110318779945, - 0.012513277120888233, - -0.27927127480506897, - 0.3046706020832062, - 0.22727170586585999, - -0.17537321150302887, - -0.5176021456718445, - -0.29607653617858887, - -1.6267896890640259, - 0.3918142318725586, - 0.2506522536277771, - 0.1999918818473816, - 0.0162439476698637, - 0.21058709919452667, - 0.23642131686210632, - -0.39403143525123596, - -0.032000117003917694, - -0.2630804181098938, - -0.09884863346815109, - 0.031005701050162315, - 0.020396003499627113, - 0.13653582334518433, - -0.13026437163352966, - 0.5809638500213623, - 0.018768150359392166, - -0.2692745625972748, - -0.008539858274161816, - 0.0506180115044117, - -0.060655124485492706, - -0.34331923723220825, - -0.7488459944725037, - -0.48889198899269104, - 0.06029236316680908, - -0.19356563687324524, - -0.0422576442360878, - 0.514449417591095, - -0.07548607885837555, - -0.2854832112789154, - 0.28808075189590454, - 0.00420514028519392, - 0.3575906753540039, - 0.17086265981197357, - -0.06726327538490295, - 0.12187683582305908, - -0.21642258763313293, - -0.35635828971862793, - -0.19169196486473083, - 0.15630075335502625, - 0.5570071935653687, - -0.1054021343588829, - -0.03666896000504494, - -0.05820795148611069, - 0.4585803151130676, - 0.15499809384346008, - -0.2217729538679123, - -0.44370460510253906, - -0.07051233947277069, - -0.0974617600440979, - 0.043272726237773895, - 0.0608094222843647, - -0.2630999684333801, - -0.10398498922586441, - 0.174899622797966, - 0.06965627521276474, - -0.6105327606201172, - -0.4679718017578125, - 0.16064637899398804, - 0.10954791307449341, - 0.32295510172843933, - -0.08100434392690659, - -0.17834551632404327, - -0.366799920797348, - -0.04057823866605759, - 0.11180444061756134, - 0.5728477239608765, - 0.24480099976062775, - -0.03796643763780594, - 0.19618460536003113, - -0.3340276777744293, - -0.1117417961359024, - -0.05488685518503189, - 0.44266581535339355, - -0.2886485159397125, - 0.36200928688049316, - 0.631848156452179, - -0.013224090449512005, - -0.1214633360505104, - 0.9277117848396301, - -0.27645379304885864, - 0.31531834602355957, - -0.1582862138748169, - 0.20786234736442566, - -0.009583498351275921, - -0.28730660676956177, - 0.10049152374267578, - 0.42687663435935974, - -0.17020033299922943, - 0.8544890284538269, - 0.20705577731132507, - -0.4946337342262268, - -0.06917104870080948, - -0.22447817027568817, - 0.582987904548645, - 0.3872864842414856, - 0.22073523700237274, - -0.10151442140340805, - -0.2294798344373703, - -0.2882838845252991, - 0.01950891874730587, - -0.35184407234191895, - -0.3255501091480255, - -0.1485951691865921, - 0.10961510986089706, - 0.2541681230068207, - -0.2835978865623474, - 0.41619929671287537, - 0.21731451153755188, - -0.16955626010894775, - -0.22002235054969788, - -0.5310488939285278, - 0.025228425860404968, - 0.2814035415649414, - 0.8641403913497925, - -0.14933882653713226, - 0.07477717101573944, - -0.08773703128099442, - -0.0044355555437505245, - -0.25800246000289917, - 0.2328629493713379, - 0.07287655025720596, - -0.025799136608839035, - -0.5032259225845337, - 0.3004910945892334, - 0.13352911174297333, - -0.33226221799850464, - -0.11714889854192734, - -0.12422938644886017, - -0.2771795690059662, - 0.052819348871707916, - -0.2660619020462036, - 0.03252536803483963, - 0.29139822721481323, - -0.043582651764154434, - 0.01010213978588581, - -0.2030608206987381, - -0.02938220463693142, - 0.15659920871257782, - 0.2298862636089325, - 0.10958423465490341, - -0.21968773007392883, - -0.33514198660850525, - -0.578795313835144, - 0.2538703978061676, - -0.17176306247711182, - -0.12786559760570526, - 0.19861629605293274, - 0.1920209527015686, - -0.2855006456375122, - 0.050087105482816696, - -0.08774010837078094, - 0.02333415113389492, - -0.19158443808555603, - 0.3568897843360901, - 0.3656992018222809, - -0.06405075639486313, - 0.21348002552986145, - -0.17402249574661255, - 0.11066842079162598, - 0.07497961819171906, - -0.18353129923343658, - 0.22881066799163818, - -0.2509893774986267 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_026.json b/src/benchmark/output/results/results_graph_026.json deleted file mode 100644 index 07e4091..0000000 --- a/src/benchmark/output/results/results_graph_026.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 73-year-old East Asian woman who was admitted to the Pulmonology Department in November 2022 for evaluation of an abnormal chest CT scan. She has a medical history of hypertension but no smoking or family history of cancer.\n\n**Initial Presentation (Step 1):**\nThe patient presented with an abnormal chest CT scan, which led to further investigation. The initial presentation was characterized by the absence of respiratory symptoms such as cough or dyspnea.\n\n**Diagnostic Findings (Step 2):**\nChest CT revealed a 1.1-cm spiculated nodule in the right middle lobe (RML), multiple pleural nodules with mild pleural thickening, and fibrotic lesions in the right upper lobe (RUL). These findings prompted further investigation.\n\n**Biopsy and Diagnosis (Step 3):**\nLinear endobronchial ultrasound-guided transbronchial needle aspiration (EBUS-TBNA) of enlarged lymph node 7 revealed metastatic adenocarcinoma with ALK rearrangement, wild type EGFR mutation, and echinoderm microtubule-associated protein-like 4 (EML 4)-ALK fusion. The first biopsy of the mediastinal 7th lymph node was positive for ALK stain.\n\n**Diagnosis Confirmation (Step 4):**\nPET-CT revealed pleural, multiple enhancing nodules with lymph nodes metastasis, leading to a diagnosis of stage IV lung cancer (T2N2M1a).\n\n**Treatment Initiation (Step 5):**\nTargeted mutation chemotherapy with alectinib was initiated and continued for a period of one and a half years. Follow-up chest CT scans during treatment with alectinib demonstrated a reduction in the lung mass and pleural metastatic lesions.\n\n**Follow-Up and Recurrence (Step 6):**\nIn July 2024, Chest CT showed the previously observed main mass in the RML, indicating recurrence of the disease.\n\n**Timeline:**\n\n* November 2022: Patient admitted to Pulmonology Department for evaluation of abnormal chest CT scan.\n* Step 2: Chest CT reveals abnormalities.\n* Step 3: EBUS-TBNA and biopsy confirm diagnosis of metastatic adenocarcinoma.\n* Step 4: Diagnosis confirmed with PET-CT.\n* Step 5: Targeted mutation chemotherapy with alectinib initiated.\n* July 2024: Follow-up chest CT shows recurrence of the disease.\n\n**Outcomes:**\nThe patient received targeted mutation chemotherapy with alectinib, which led to a reduction in lung mass and pleural metastatic lesions. However, the disease recurred in July 2024, indicating the need for further treatment options.", - "bertscore": { - "precision": [ - 0.5603240728378296 - ], - "recall": [ - 0.662941038608551 - ], - "f1": [ - 0.6073283553123474 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 6, - "edge_count": 5, - "avg_in_degree": 0.8333333333333334, - "density": 0.16666666666666666 - }, - "trajectory_embedding": [ - 0.4501422345638275, - 0.09562578797340393, - -0.1269008368253708, - 0.16001977026462555, - -0.027514860033988953, - 0.06566961854696274, - 0.10955768078565598, - 0.3071059286594391, - 0.3549204170703888, - -0.3344673812389374, - -0.10898244380950928, - 0.05722176656126976, - -0.6175083518028259, - -0.03839653357863426, - -0.21359169483184814, - 0.22728413343429565, - 0.024842113256454468, - 0.2667379677295685, - 0.009542305953800678, - -0.11258780211210251, - -0.5507663488388062, - 0.1800224781036377, - -0.38638362288475037, - -0.05595463886857033, - 0.1456666886806488, - -0.15480490028858185, - 0.31889936327934265, - 0.46971026062965393, - 0.26137715578079224, - 0.34365904331207275, - 0.09903979301452637, - -0.01648278534412384, - 0.051299091428518295, - 0.00457097589969635, - -0.3097016513347626, - 0.1687018722295761, - 0.20818541944026947, - 0.4008319675922394, - -0.13016052544116974, - 0.07486172765493393, - -0.06891664862632751, - -0.059714850038290024, - 0.9107353091239929, - 0.09585195779800415, - 0.4596134424209595, - -0.6749725341796875, - -0.028921015560626984, - 0.4022016227245331, - -0.6281091570854187, - -0.36265695095062256, - 0.15239647030830383, - 0.8753838539123535, - 0.6245620250701904, - -0.1476702243089676, - 0.5172297358512878, - -0.19877244532108307, - -0.34182295203208923, - -0.2149602323770523, - -0.19249854981899261, - -0.021628746762871742, - -0.05311864987015724, - -0.15832610428333282, - 0.23065213859081268, - -0.12874692678451538, - -0.2737572491168976, - -0.1385738104581833, - -0.232293501496315, - 0.060851771384477615, - -0.04737399145960808, - -0.3695635497570038, - -0.19755862653255463, - -0.19063514471054077, - -0.10763237625360489, - 0.21944354474544525, - 0.2626520097255707, - -0.21812565624713898, - 0.3535262644290924, - -0.07768859714269638, - 0.13766629993915558, - 0.21651001274585724, - -0.032457996159791946, - -0.06887236982584, - 0.18521831929683685, - 0.23234407603740692, - -0.43382224440574646, - 0.17178793251514435, - 0.013450603932142258, - -0.27634602785110474, - -0.21174919605255127, - 0.17586451768875122, - 0.19728267192840576, - -0.32902106642723083, - -0.1337021440267563, - -0.1853039413690567, - 0.03338559716939926, - 0.12404843419790268, - 0.3724311888217926, - 0.2948210835456848, - 0.9162103533744812, - 0.010878938250243664, - 0.18720991909503937, - 0.09872931987047195, - 0.2834450900554657, - 0.19974787533283234, - 0.38279175758361816, - -0.14101840555667877, - 0.23198463022708893, - -0.4529477655887604, - 0.1672142744064331, - 0.3307790756225586, - 0.025161998346447945, - -0.05620580539107323, - -0.07099274545907974, - -0.22404320538043976, - 0.15629468858242035, - 0.08322843164205551, - -0.11712554097175598, - 0.10033272951841354, - 0.2586618661880493, - -0.5694459080696106, - -0.17429190874099731, - 0.09299486130475998, - 0.3613235056400299, - 0.26930370926856995, - -0.5705505609512329, - -0.06236475706100464, - -0.1939399242401123, - 0.03502381965517998, - -0.06876348704099655, - 0.11793192476034164, - -0.47509464621543884, - -0.11755009740591049, - 0.0232273880392313, - 0.08519168943166733, - -0.19192622601985931, - 0.28796085715293884, - -0.30297377705574036, - -0.028616705909371376, - -1.1629446744918823, - 0.29409462213516235, - -0.5166786313056946, - -0.11431930214166641, - 0.06448110193014145, - -0.3499186336994171, - -0.22720246016979218, - -0.10451003909111023, - -0.2686537206172943, - 0.19228146970272064, - -0.1187182292342186, - -0.09664297848939896, - 0.038146063685417175, - -0.02585843950510025, - 0.13758055865764618, - 0.2509004473686218, - 0.13591410219669342, - 0.18140070140361786, - 0.14681605994701385, - 0.19296739995479584, - 0.2584473192691803, - -0.17902927100658417, - -0.0698343887925148, - 0.4438004195690155, - 0.15269380807876587, - 0.13550148904323578, - -0.056324053555727005, - -0.6904330849647522, - 0.08048930019140244, - -0.2380780428647995, - 0.1362389773130417, - 0.08641836047172546, - -0.19890807569026947, - 0.1225866973400116, - -0.36152341961860657, - 0.6075365543365479, - 0.0363333486020565, - 0.4819530248641968, - -0.12185198813676834, - -0.14988888800144196, - -0.02694200538098812, - 0.15831001102924347, - 0.031690504401922226, - -0.0036247398238629103, - 0.6608149409294128, - 0.24203141033649445, - -0.3686065673828125, - 0.30839794874191284, - 0.50325608253479, - -0.22730982303619385, - -0.11761458963155746, - -0.026354655623435974, - 0.5206037759780884, - -0.1880761831998825, - 0.35984572768211365, - -0.47289013862609863, - 0.07613779604434967, - 0.08644445985555649, - -0.28509047627449036, - -0.11956431716680527, - 0.1783626228570938, - -0.15433889627456665, - 0.1889193058013916, - 0.08756100386381149, - -0.2516356408596039, - -0.03587493672966957, - 0.09449688345193863, - -0.1332808881998062, - 0.3364076614379883, - 0.012887534685432911, - 0.0973072350025177, - -0.006557032465934753, - -0.08415103703737259, - 0.20305298268795013, - -0.025557836517691612, - 0.22448159754276276, - -0.008308197371661663, - -0.4001011848449707, - 0.29311811923980713, - -0.14956697821617126, - -0.22400617599487305, - 0.13079231977462769, - -0.09128264337778091, - -0.29588255286216736, - 0.06430140137672424, - 0.06682155281305313, - -0.5501290559768677, - 0.2160441130399704, - 0.13156002759933472, - 0.15290461480617523, - 0.1966697722673416, - -0.033534374088048935, - 0.0813697949051857, - -0.29577550292015076, - 0.273113489151001, - -0.011590763926506042, - -0.2098325490951538, - -0.3837961256504059, - 0.2316405326128006, - -0.2776704728603363, - -0.1403576135635376, - 0.43232330679893494, - -0.12863151729106903, - -0.15169429779052734, - 0.11625748127698898, - -0.3726930618286133, - -0.12798403203487396, - -0.24107098579406738, - -0.04510223865509033, - 0.17985565960407257, - 0.10808221250772476, - 0.22306163609027863, - 0.09716857224702835, - -0.2690381109714508, - 0.13154661655426025, - -0.3012259304523468, - -0.4106391370296478, - -0.371407151222229, - -0.10213314741849899, - -0.06441835314035416, - -0.5508189797401428, - 0.12402859330177307, - 0.05542406439781189, - -0.1675950437784195, - 0.15655283629894257, - -0.40309903025627136, - -0.1422019600868225, - 0.012194381095468998, - -0.16410526633262634, - 0.07242079824209213, - -0.26897767186164856, - 0.16271886229515076, - -0.29384803771972656, - -0.20111043751239777, - -0.09125963598489761, - 0.04300512745976448, - 0.22896887362003326, - 0.01813109777867794, - -0.25395527482032776, - 0.026161691173911095, - 0.15280403196811676, - -0.32732877135276794, - -0.25006571412086487, - 0.028868822380900383, - -0.318211168050766, - 0.1653290092945099, - -0.1862725019454956, - 0.24290025234222412, - 0.2848130464553833, - 0.12248361855745316, - 0.19719970226287842, - 0.467583566904068, - 0.5766310691833496, - 0.1387052685022354, - -0.03842921555042267, - -0.0564095564186573, - -0.04448119178414345, - -0.07105773687362671, - -0.35950735211372375, - 0.2514190077781677, - 0.05224107578396797, - -0.0225185826420784, - 0.050865691155195236, - 0.3346787691116333, - 0.18259668350219727, - -0.46528494358062744, - -0.16995267570018768, - 0.6158903241157532, - 0.07465942949056625, - -0.009228496812283993, - 0.06533697992563248, - 0.3969036638736725, - 0.4883432686328888, - 0.008767381310462952, - 0.01995314471423626, - 0.1010066568851471, - -0.1360502392053604, - -0.2027920037508011, - -0.14865131676197052, - 0.09445963054895401, - 0.3824962377548218, - -0.2161310315132141, - -0.09505478292703629, - 0.15174010396003723, - 0.013152527622878551, - -0.15457887947559357, - -0.1275433450937271, - -0.01288128923624754, - 0.08048652857542038, - -0.2784362733364105, - 0.29848888516426086, - 0.016662226989865303, - 0.03685905039310455, - 0.4451824128627777, - -0.15955646336078644, - -0.25327757000923157, - 0.29143860936164856, - -0.17458802461624146, - -0.5572208762168884, - 0.3915020227432251, - -0.17814482748508453, - -0.02780790627002716, - 0.3723861277103424, - -0.192971333861351, - -0.0837494358420372, - -0.03246885538101196, - 0.29193738102912903, - -0.04781178757548332, - 0.02769869565963745, - -0.1336691826581955, - 0.0011481394758448005, - 0.24792028963565826, - 0.6442661285400391, - 0.223867729306221, - 0.16891874372959137, - 0.5151352286338806, - -0.0056146979331970215, - -0.3491246700286865, - -0.06811079382896423, - -0.010860760696232319, - 0.3636118173599243, - -0.2463924139738083, - -0.19255013763904572, - -0.2536795139312744, - 0.07878539711236954, - -0.044262614101171494, - -0.1773948222398758, - -0.05752274766564369, - 0.19367210566997528, - 0.04242894425988197, - -0.005040695425122976, - 0.29846569895744324, - 0.2922879159450531, - -0.04041433706879616, - 0.5480990409851074, - -0.01127179991453886, - 0.001986562041565776, - 0.4103861153125763, - -0.32289180159568787, - 0.23295873403549194, - -0.055803149938583374, - -0.2742874026298523, - -0.40690407156944275, - 0.17212145030498505, - -0.3150964677333832, - -0.14670546352863312, - 0.08263347297906876, - -0.07185041159391403, - 0.07126832008361816, - -0.20459575951099396, - 0.21382279694080353, - -0.0007080187206156552, - 0.22243548929691315, - 0.157779723405838, - 0.43767955899238586, - 0.0264971312135458, - -0.3277517259120941, - 0.18689115345478058, - -0.08930730074644089, - 0.17967122793197632, - -0.09641164541244507, - 0.046274829655885696, - -0.2120467573404312, - 0.4090823233127594, - 0.10966751724481583, - -0.0065622515976428986, - 0.09756311029195786, - -0.06413782387971878, - -0.16609857976436615, - -0.4501456022262573, - -0.10585525631904602, - -0.005897548049688339, - -0.1420794427394867, - 0.0004635155200958252, - 0.09543595463037491, - -0.29633164405822754, - -0.20544858276844025, - 0.09537210315465927, - 0.2330450564622879, - 0.16166479885578156, - -0.16920936107635498, - 0.01736464537680149, - 0.32222092151641846, - 0.09612657874822617, - 0.33261871337890625, - -0.29502618312835693, - 0.16354377567768097, - 0.09775719046592712, - -0.1704750508069992, - 0.004505498800426722, - 0.03940922021865845, - -0.3624630272388458, - -0.04720170423388481, - 0.23229078948497772, - 0.15151366591453552, - 0.0482650063931942, - -0.004547671880573034, - 0.05726783350110054, - 0.29967400431632996, - -0.44914984703063965, - -0.04189733788371086, - 0.45126914978027344, - 0.02094917558133602, - 0.5141586661338806, - -0.07070904970169067, - -0.46352720260620117, - -0.10041651129722595, - -0.07422646135091782, - -0.39690855145454407, - 0.1662837415933609, - 0.30820029973983765, - -0.11263338476419449, - -0.09582009166479111, - -0.024622419849038124, - 0.05750381946563721, - -0.04882928729057312, - 0.23525190353393555, - -0.29718223214149475, - 0.10987704992294312, - 0.04123862460255623, - -0.32657936215400696, - -0.19163541495800018, - -0.2490503042936325, - -0.3812367022037506, - -0.2995447814464569, - 0.3582834303379059, - 0.23494364321231842, - -0.28173401951789856, - 0.030401239171624184, - 0.1378955841064453, - -0.3495148718357086, - -0.15969499945640564, - 0.0528997965157032, - -0.31683149933815, - 0.584238588809967, - 0.023191682994365692, - -0.20008043944835663, - 0.15535502135753632, - -0.3458968698978424, - 0.09884252399206161, - 0.15266357362270355, - 0.2174551635980606, - 0.3907606899738312, - 0.15372513234615326, - 0.09229766577482224, - 0.46047845482826233, - 0.11956637352705002, - -0.11282530426979065, - 0.1676998883485794, - -0.03576347231864929, - -0.020295634865760803, - -0.19300436973571777, - -0.33135437965393066, - 0.32984963059425354, - -0.3352862596511841, - -0.014801864512264729, - 0.19090096652507782, - 0.24498139321804047, - -0.38964971899986267, - -0.24420654773712158, - 0.014300316572189331, - -0.06965646892786026, - -0.08157148957252502, - -0.31890180706977844, - -0.21479104459285736, - 0.06354471296072006, - -0.3465263843536377, - -0.16138856112957, - 0.3174036741256714, - 0.5496646165847778, - 0.12802620232105255, - 0.25583696365356445, - -0.3663226366043091, - -0.4844869077205658, - 0.1827523559331894, - 0.25285395979881287, - 0.07394387573003769, - 0.034069474786520004, - -0.18862859904766083, - 0.3163810968399048, - 0.5154316425323486, - -0.10955053567886353, - 0.03131056949496269, - 0.1892220377922058, - 0.041061148047447205, - 0.03671647235751152, - 0.04664452001452446, - -0.14760172367095947, - -0.05134166404604912, - -0.4625049829483032, - 0.17648369073867798, - -0.3116316497325897, - -0.24471479654312134, - 0.26184695959091187, - -0.09181680530309677, - -0.43382528424263, - -0.3052256107330322, - 0.23441942036151886, - -0.29231756925582886, - -0.05361919477581978, - 0.08342354744672775, - 0.43767476081848145, - 0.07741333544254303, - -0.26163923740386963, - 0.1187414601445198, - -0.4204951822757721, - -0.25282999873161316, - 0.17314518988132477, - -0.170502707362175, - -0.09393260627985, - -0.10286331921815872, - 0.32265087962150574, - 0.45830079913139343, - 0.20102542638778687, - -0.15931475162506104, - 0.06588107347488403, - 0.31090375781059265, - 0.3565657138824463, - -0.10295185446739197, - -10.744647026062012, - -0.04604804888367653, - -0.3253835141658783, - 0.5708732604980469, - -0.17608116567134857, - -0.015280908904969692, - 0.10093840211629868, - -0.019073545932769775, - 0.23316258192062378, - 0.23653054237365723, - -0.17266350984573364, - -0.011805769987404346, - 0.1931038498878479, - 0.26210615038871765, - 0.0567018985748291, - -0.07715386897325516, - -0.22639034688472748, - 0.14499923586845398, - -0.025134040042757988, - 0.11174985766410828, - 0.3162493407726288, - 0.44248703122138977, - -0.3188457787036896, - 0.28646230697631836, - 0.07125282287597656, - -0.3011704385280609, - -0.14805853366851807, - 0.4793212115764618, - 0.2731318473815918, - -0.32419320940971375, - 0.32479235529899597, - 0.18022365868091583, - -0.24581323564052582, - 0.15265615284442902, - -0.045147452503442764, - -0.0704122856259346, - -0.13164792954921722, - 0.020780477672815323, - 0.25776323676109314, - -0.04539954289793968, - 0.016500992700457573, - -0.29970577359199524, - 0.4260568618774414, - 0.22366832196712494, - -0.19919495284557343, - -0.3446005582809448, - -0.2480676919221878, - -1.6446250677108765, - 0.29945895075798035, - 0.3834644854068756, - 0.3988116681575775, - 0.1287742555141449, - 0.26201483607292175, - 0.19236047565937042, - -0.3775355815887451, - -0.09549596160650253, - -0.306159108877182, - 0.09446334838867188, - 0.2201187014579773, - -0.0587490051984787, - 0.17177008092403412, - -0.14922095835208893, - 0.43180403113365173, - -0.02549036405980587, - -0.2360544353723526, - 0.1747494339942932, - 0.06465249508619308, - -0.11621014028787613, - -0.22130507230758667, - -0.5160310864448547, - -0.5501842498779297, - -0.04760590195655823, - 0.035927366465330124, - -0.030000776052474976, - 0.44601771235466003, - -0.12932388484477997, - -0.3180038034915924, - 0.23234279453754425, - 0.07652866095304489, - 0.37424615025520325, - 0.10407953709363937, - -0.024255292490124702, - 0.15776683390140533, - -0.08109629899263382, - -0.23260821402072906, - -0.11793095618486404, - 0.07974673062562943, - 0.6373133063316345, - -0.030546078458428383, - -0.09549999237060547, - -0.06161344423890114, - 0.33912894129753113, - -0.001531595946289599, - -0.17225803434848785, - -0.49504247307777405, - 0.09331392496824265, - 0.07523858547210693, - 0.0987900123000145, - -0.04662521556019783, - -0.354826420545578, - -0.15885266661643982, - -0.11887846142053604, - 0.06934697926044464, - -0.5674009919166565, - -0.38548603653907776, - 0.18011574447155, - 0.0920599177479744, - 0.2919769287109375, - 0.007054060697555542, - -0.09748048335313797, - -0.1496010571718216, - -0.12677150964736938, - 0.3822607100009918, - 0.6217686533927917, - 0.2730559706687927, - -0.047466639429330826, - -0.0481189489364624, - -0.11883082985877991, - -0.22721809148788452, - -0.07056159526109695, - 0.34676405787467957, - -0.18096135556697845, - 0.278670996427536, - 0.6308524012565613, - 0.039686430245637894, - -0.07487715035676956, - 0.8989226222038269, - -0.2927185893058777, - 0.28625836968421936, - -0.21907790005207062, - 0.15038010478019714, - 0.02180330455303192, - -0.47294649481773376, - 0.06025141477584839, - 0.4711678922176361, - -0.26200541853904724, - 0.7392508387565613, - 0.2501610815525055, - -0.5181857943534851, - 0.07812300324440002, - -0.31538140773773193, - 0.4983167350292206, - 0.2706756889820099, - 0.22215671837329865, - -0.16635039448738098, - -0.20372362434864044, - -0.32605117559432983, - -0.024273226037621498, - -0.37327179312705994, - -0.3957570791244507, - -0.1794571727514267, - 0.14078038930892944, - 0.1823965162038803, - -0.20667339861392975, - 0.35273948311805725, - 0.16405248641967773, - -0.24374733865261078, - -0.14357635378837585, - -0.6168113350868225, - -0.13354188203811646, - 0.30628255009651184, - 0.8692931532859802, - -0.009245254099369049, - 0.020604895427823067, - -0.15789224207401276, - 0.20088154077529907, - -0.08336320519447327, - 0.1585778445005417, - 0.15057136118412018, - -0.08243253082036972, - -0.5259096622467041, - 0.24818044900894165, - 0.11514371633529663, - -0.4331342875957489, - -0.15646643936634064, - -0.20817995071411133, - -0.13318465650081635, - 0.10125886648893356, - -0.09144661575555801, - 0.129685178399086, - 0.2349615842103958, - -0.01617295853793621, - 0.019459806382656097, - -0.23556256294250488, - -0.01983431726694107, - 0.27739250659942627, - 0.24977988004684448, - 0.2293311208486557, - -0.1947038173675537, - -0.4206688404083252, - -0.42323604226112366, - 0.28891125321388245, - -0.33473289012908936, - -0.11426708847284317, - 0.039415210485458374, - 0.2419389933347702, - -0.3461688756942749, - 0.07015485316514969, - -0.20464546978473663, - 0.04194565489888191, - -0.36970528960227966, - 0.25305435061454773, - 0.46422937512397766, - -0.2465406060218811, - 0.21775542199611664, - -0.08515599370002747, - 0.33335113525390625, - 0.07463822513818741, - -0.3180834650993347, - 0.24211089313030243, - -0.24701601266860962 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_027.json b/src/benchmark/output/results/results_graph_027.json deleted file mode 100644 index 50d7376..0000000 --- a/src/benchmark/output/results/results_graph_027.json +++ /dev/null @@ -1,788 +0,0 @@ -{ - "status": "partial", - "errors": [ - "Topology validation failed: '<' not supported between instances of 'NoneType' and 'str'" - ], - "reconstructed_narrative": "The patient in question is an elderly individual with a history of hypertension, carotid artery stenosis, cerebral artery stenosis, and primary malignant neoplasm of the lung. The patient's demographic information includes a 30-year history of hypertension, a 7-year history of carotid stenosis on the left side, and a 4-year history of right lung cancer surgery.\n\nThe patient's timeline of diagnoses began with the discovery of black stool on January 9, 2024. Upon presentation to the emergency department, the patient was found to have a hemoglobin level of 58 g/L. This marked the beginning of an acute upper gastrointestinal hemorrhage, which required immediate attention.\n\nFollowing stabilization, the patient's medical history and current medications were reviewed (N11). The patient had been managed with compound reserpine, nifedipine extended-release tablets, and captopril for their hypertension, as well as a 30-year history of hypertension. Additionally, the patient had undergone right lung cancer surgery 4 years prior and thermal ablation of a right lung tumor 5 months prior.\n\nThe patient's symptoms and laboratory results led to the diagnosis of gastrointestinal hemorrhage, unspecified (K92.2). The patient was subsequently admitted for further evaluation and management.\n\nIn the course of their treatment, the patient underwent several procedures, including CT-guided percutaneous lung nodule aspiration biopsy (N7), thermal ablation of a right lung tumor (N8), and regular follow-up with surveillance imaging (N9).\n\nThe patient's hemoglobin level was found to be 58 g/L upon presentation, indicating severe anemia. The patient's symptoms and laboratory results led to the diagnosis of gastrointestinal hemorrhage, unspecified (K92.2). The patient was subsequently admitted for further evaluation and management.\n\nIn the course of their treatment, the patient underwent several procedures, including CT-guided percutaneous lung nodule aspiration biopsy (N7), thermal ablation of a right lung tumor (N8), and regular follow-up with surveillance imaging (N9).\n\nThe patient's timeline of diagnoses is as follows:\n\n* January 9, 2024: Patient presents with black stool and is found to have a hemoglobin level of 58 g/L.\n* January 9, 2024: Acute upper gastrointestinal hemorrhage diagnosed (K92.2).\n* January 9-10, 2024: Patient's medical history and current medications reviewed (N11).\n* January 9-10, 2024: Patient undergoes CT-guided percutaneous lung nodule aspiration biopsy (N7).\n* January 9-10, 2024: Patient undergoes thermal ablation of a right lung tumor (N8).\n* January 9-10, 2024: Patient begins regular follow-up with surveillance imaging (N9).\n\nThe patient's treatment plan is focused on managing their acute upper gastrointestinal hemorrhage and addressing any underlying causes. The patient will require close monitoring and ongoing evaluation to ensure the best possible outcome.\n\nIn terms of outcomes, the patient has made significant progress in their management of acute upper gastrointestinal hemorrhage. However, further evaluation and follow-up are necessary to determine the long-term prognosis and potential complications.\n\nThe patient's history of hypertension, carotid artery stenosis, cerebral artery stenosis, and primary malignant neoplasm of the lung will require ongoing management and monitoring. The patient's treatment plan should take into account these comorbidities and ensure that they receive comprehensive care to address all aspects of their health.\n\nIn conclusion, the patient's timeline of diagnoses and treatments is complex and multifaceted. Ongoing evaluation and follow-up are necessary to determine the best course of action for this patient.", - "bertscore": { - "precision": [ - 0.4498176574707031 - ], - "recall": [ - 0.5712114572525024 - ], - "f1": [ - 0.5032980442047119 - ] - }, - "trajectory_embedding": [ - 0.1456865519285202, - 0.1314917504787445, - -0.0931175947189331, - 0.04623199999332428, - 0.059770286083221436, - 0.0806192085146904, - 0.04538099840283394, - 0.17417706549167633, - 0.28361740708351135, - -0.24916689097881317, - -0.11881931871175766, - 0.03163249418139458, - -0.5529548525810242, - -0.09358691424131393, - -0.20111314952373505, - 0.28860440850257874, - 0.023606710135936737, - 0.25683730840682983, - 0.03913749381899834, - -0.2733571231365204, - -0.39962542057037354, - 0.18289844691753387, - -0.3924703598022461, - -0.05127008259296417, - 0.24216043949127197, - -0.03098374605178833, - 0.3974739611148834, - 0.6353550553321838, - 0.28633245825767517, - 0.38187721371650696, - 0.1768408566713333, - -0.006388118024915457, - 0.10218223184347153, - 0.04264649748802185, - -0.32773956656455994, - 0.37446129322052, - 0.17846442759037018, - 0.32650306820869446, - -0.09868700057268143, - 0.04879933223128319, - -0.09238523989915848, - 0.0028494198340922594, - 0.7947121262550354, - 0.32945314049720764, - 0.39667072892189026, - -0.852902352809906, - 0.09494761377573013, - 0.5418190360069275, - -0.47906485199928284, - -0.25899210572242737, - 0.16957390308380127, - 0.7068095207214355, - 0.5470502972602844, - -0.3676629066467285, - 0.4368591010570526, - -0.10245154052972794, - -0.30749839544296265, - -0.30228909850120544, - -0.2028266191482544, - 0.07307341694831848, - -0.0061266012489795685, - -0.21166078746318817, - 0.3589807450771332, - -0.1613215059041977, - -0.3071132302284241, - -0.1701512187719345, - -0.15831218659877777, - 0.08565256744623184, - 0.02320142649114132, - -0.4816090166568756, - -0.21285772323608398, - -0.14641958475112915, - -0.0672348141670227, - -0.02256728522479534, - 0.03905874863266945, - -0.1586652249097824, - 0.4870498478412628, - -0.003189854323863983, - 0.11620896309614182, - 0.11106175184249878, - -0.1002475917339325, - -0.13584192097187042, - -0.01988532766699791, - 0.19341562688350677, - -0.32707735896110535, - -0.00033312165760435164, - -0.07443244010210037, - -0.22330127656459808, - -0.39778366684913635, - 0.09796155244112015, - 0.2143556922674179, - -0.39230379462242126, - 0.06043307110667229, - -0.1679074615240097, - 0.08282572031021118, - 0.04906846210360527, - 0.4001304805278778, - 0.3513607680797577, - 0.9803833365440369, - 0.05956466495990753, - 0.12142235040664673, - -0.009364907629787922, - 0.20885096490383148, - -0.03894999995827675, - 0.43731367588043213, - -0.07036209851503372, - 0.254342257976532, - -0.6092242002487183, - 0.13192592561244965, - 0.40354230999946594, - 0.002747446298599243, - -0.1721498817205429, - 0.02024925872683525, - -0.268901526927948, - 0.18018870055675507, - 0.05465313792228699, - -0.018751537427306175, - 0.21257908642292023, - 0.22365348041057587, - -0.28528401255607605, - -0.01722920499742031, - 0.002669932320713997, - 0.2271677702665329, - 0.3048597276210785, - -0.28496724367141724, - 0.038819339126348495, - -0.20163895189762115, - 0.029794767498970032, - 0.10579521209001541, - -0.04326478764414787, - -0.5616032481193542, - -0.22392888367176056, - -0.08776507526636124, - 0.2197716385126114, - -0.0523286908864975, - 0.20740608870983124, - -0.3483254909515381, - 0.1365949511528015, - -1.0272430181503296, - 0.2777925729751587, - -0.276108980178833, - -0.09999044984579086, - 0.04566652700304985, - -0.44236406683921814, - -0.23953621089458466, - -0.13241897523403168, - -0.17023469507694244, - 0.06917040795087814, - -0.049871329218149185, - -0.12991203367710114, - -0.0426776222884655, - 0.054062921553850174, - 0.31863483786582947, - 0.36094704270362854, - 0.12669967114925385, - 0.02208367921411991, - 0.003476159879937768, - 0.20276808738708496, - 0.08475767821073532, - 0.04299396649003029, - 0.009042073041200638, - 0.3302220106124878, - 0.040912315249443054, - -0.10304901003837585, - -0.1404067724943161, - -0.642652153968811, - 0.22903193533420563, - -0.19090072810649872, - 0.27073585987091064, - 0.08046158403158188, - -0.11143959313631058, - 0.17426829040050507, - -0.20966394245624542, - 0.5847271084785461, - 0.08104787766933441, - 0.2242364138364792, - 0.07130274176597595, - -0.05077098309993744, - 0.08135097473859787, - 0.12716151773929596, - 0.19586052000522614, - -0.1481284350156784, - 0.6229590773582458, - 0.07295738905668259, - -0.23359091579914093, - 0.1496940404176712, - 0.27710023522377014, - 0.1249055489897728, - -0.0018076598644256592, - 0.007867508567869663, - 0.5114795565605164, - -0.3218313753604889, - 0.444132536649704, - -0.38868653774261475, - 0.0038155510555952787, - 0.11930453777313232, - -0.18728090822696686, - -0.2189697027206421, - -0.08448368310928345, - -0.1119043156504631, - 0.06893245130777359, - 0.07687660306692123, - -0.4267411231994629, - 0.17516140639781952, - 0.19721275568008423, - -0.14966316521167755, - 0.32080355286598206, - 0.04634542763233185, - 0.08398887515068054, - -0.03497517108917236, - -0.2645931541919708, - 0.17420290410518646, - -0.20361113548278809, - 0.17484259605407715, - 0.05111941322684288, - -0.25983306765556335, - 0.3083758056163788, - -0.07119970768690109, - -0.04145408794283867, - 0.30363383889198303, - 0.020714180544018745, - -0.14646072685718536, - -0.07512076199054718, - -0.09198033809661865, - -0.4462071359157562, - 0.22019235789775848, - 0.05422640219330788, - 0.3733670711517334, - 0.3035283386707306, - -0.03602537140250206, - 0.08126861602067947, - -0.3514270782470703, - 0.17338156700134277, - -0.18341165781021118, - -0.04446536675095558, - -0.23178650438785553, - 0.23551370203495026, - -0.17833565175533295, - 0.11697745323181152, - 0.2779746651649475, - -0.06602258235216141, - -0.11505930870771408, - 0.16690389811992645, - -0.07576322555541992, - -0.031179353594779968, - -0.3555029332637787, - 0.05127062276005745, - 0.2643754482269287, - 0.10375352948904037, - 0.2189914584159851, - 0.0283151064068079, - -0.1077921912074089, - 0.030457856133580208, - -0.18756575882434845, - -0.3123209774494171, - -0.4759158194065094, - -0.2477906197309494, - -0.1012088730931282, - -0.4581577777862549, - 0.0591692216694355, - 0.060034919530153275, - 0.005756005644798279, - 0.016255894675850868, - -0.2651378810405731, - -0.16575740277767181, - 0.09995990246534348, - 0.10617075115442276, - 0.0035487457644194365, - -0.22720664739608765, - 0.19884765148162842, - -0.08566022664308548, - -0.33878228068351746, - -0.1956682950258255, - -0.011640033684670925, - 0.08494067937135696, - 0.017346994951367378, - -0.2524566352367401, - -0.07991459965705872, - 0.13054406642913818, - -0.34944677352905273, - -0.21528689563274384, - 0.27825093269348145, - -0.17588943243026733, - 0.2961503863334656, - 0.05171816423535347, - 0.20392589271068573, - 0.27571019530296326, - 0.04150038957595825, - 0.121763676404953, - 0.3898531198501587, - 0.48784253001213074, - -0.016386276111006737, - -0.05224965140223503, - -0.0580747127532959, - -0.16659437119960785, - -0.05606919527053833, - -0.4605311453342438, - 0.4538081884384155, - 0.08903919905424118, - 0.07433950155973434, - -0.0453120656311512, - 0.20793254673480988, - 0.07330016791820526, - -0.21291740238666534, - 0.052704617381095886, - 0.4244097173213959, - 0.18684370815753937, - 0.12645255029201508, - 0.09527713060379028, - 0.3833683431148529, - 0.34740743041038513, - -0.06742605566978455, - -0.08702494949102402, - 0.05778743699193001, - -0.06877122074365616, - -0.23252196609973907, - -0.0694444328546524, - 0.21840794384479523, - 0.26807650923728943, - -0.15564791858196259, - -0.07727193832397461, - 0.13270868360996246, - -0.14759473502635956, - -0.03282037377357483, - -0.13700325787067413, - -0.09479516744613647, - 0.08507516235113144, - -0.16519558429718018, - 0.17379824817180634, - -0.05981030687689781, - -0.01846577785909176, - 0.290958046913147, - -0.36613354086875916, - -0.21703828871250153, - 0.13892751932144165, - -0.1300927996635437, - -0.4425717294216156, - 0.3906426429748535, - -0.19005222618579865, - 0.04384079575538635, - 0.31150761246681213, - -0.11899270862340927, - 0.03313010185956955, - -0.1352318525314331, - 0.35255590081214905, - -0.07056339085102081, - 0.016723651438951492, - -0.19115149974822998, - 0.06532660126686096, - 0.08415171504020691, - 0.587148129940033, - 0.17484550178050995, - 0.17625387012958527, - 0.5032609701156616, - 0.10333690792322159, - -0.2731017768383026, - 0.06781316548585892, - -0.08061856776475906, - 0.3201659619808197, - -0.05493263900279999, - -0.14302729070186615, - -0.115841805934906, - 0.08114995807409286, - 0.05610566958785057, - -0.3605881631374359, - 0.08978766202926636, - 0.24558301270008087, - 0.07346049696207047, - -0.036549683660268784, - 0.3176606595516205, - 0.18691067397594452, - -0.043143611401319504, - 0.49736347794532776, - -0.009831356815993786, - -0.19282181560993195, - 0.3291984796524048, - -0.2406240701675415, - 0.2340090423822403, - -0.07583093643188477, - -0.24275445938110352, - -0.313197523355484, - 0.10515817999839783, - -0.11001095175743103, - -0.1765470951795578, - -0.02710620127618313, - -0.17280858755111694, - 0.14573536813259125, - -0.062231216579675674, - 0.2029387205839157, - 0.01637336239218712, - 0.2205265313386917, - 0.10514068603515625, - 0.2907162010669708, - -0.07567355036735535, - -0.22349245846271515, - 0.16413210332393646, - 0.0882098451256752, - -0.001840973854996264, - -0.2872975468635559, - -0.08066767454147339, - -0.0437224805355072, - 0.4805550277233124, - 0.07598024606704712, - 0.004904346074908972, - 0.1339031308889389, - -0.04897042736411095, - -0.08183867484331131, - -0.46962258219718933, - -0.1719799041748047, - -0.15634091198444366, - -0.026649797335267067, - -0.05149250850081444, - 0.012214132584631443, - -0.22071653604507446, - -0.21102964878082275, - -0.12023656815290451, - 0.016242047771811485, - 0.19576583802700043, - -0.03847000002861023, - -0.15261830389499664, - 0.23020879924297333, - 0.1786094456911087, - 0.2929471731185913, - -0.26996320486068726, - 0.14221154153347015, - 0.04611949250102043, - -0.286937952041626, - -0.2315778136253357, - 0.048685457557439804, - -0.23915302753448486, - -0.11337003856897354, - 0.24421876668930054, - 0.3439832627773285, - 0.03118002414703369, - -0.0004935488104820251, - 0.16900157928466797, - 0.08510393649339676, - -0.27768537402153015, - -0.12045791000127792, - 0.2888939380645752, - 0.14683187007904053, - 0.3536902666091919, - 0.005751257296651602, - -0.43354570865631104, - -0.2490624189376831, - -0.23274385929107666, - -0.30380716919898987, - 0.12710361182689667, - 0.19689007103443146, - -0.067035011947155, - -0.226173996925354, - 0.020940013229846954, - -0.05853469297289848, - -0.11257699877023697, - 0.2574267089366913, - -0.006628349423408508, - 0.2189132422208786, - -0.03264753893017769, - -0.35858383774757385, - -0.08925256878137589, - -0.15321530401706696, - -0.38582172989845276, - -0.29216650128364563, - 0.3347117602825165, - 0.23261390626430511, - -0.3103792369365692, - -0.06118205189704895, - 0.10441329330205917, - -0.18380415439605713, - -0.19705843925476074, - -0.030935483053326607, - -0.24023348093032837, - 0.42824622988700867, - -0.0050687468610703945, - -0.2153976559638977, - 0.10332120209932327, - -0.29307958483695984, - 0.14216895401477814, - 0.19994230568408966, - 0.005204456392675638, - 0.4634797275066376, - 0.1676253080368042, - 0.04117312654852867, - 0.5320867896080017, - 0.1630219668149948, - 0.040645722299814224, - 0.29016056656837463, - -0.012242565862834454, - 0.16559091210365295, - -0.23617921769618988, - -0.19502049684524536, - 0.19014115631580353, - -0.3019009828567505, - -0.020164499059319496, - 0.2904292047023773, - 0.23309071362018585, - -0.37177038192749023, - -0.26091209053993225, - 0.09889450669288635, - -0.03276386484503746, - -0.16040657460689545, - -0.17855501174926758, - -0.10786333680152893, - -0.009773570112884045, - -0.33548736572265625, - 0.016741370782256126, - 0.21504418551921844, - 0.33842960000038147, - 0.19651301205158234, - 0.12223843485116959, - -0.19775240123271942, - -0.4388163387775421, - 0.16261108219623566, - 0.2647019326686859, - 0.09102475643157959, - 0.10252735018730164, - -0.08886929601430893, - 0.36285051703453064, - 0.3331838548183441, - -0.006188944447785616, - 0.00013060122728347778, - 0.006612370256334543, - 0.08137377351522446, - 0.0749107226729393, - 0.0765034630894661, - -0.07213237881660461, - 0.16251368820667267, - -0.3062576353549957, - 0.20147567987442017, - -0.295575350522995, - -0.2113134264945984, - 0.19270890951156616, - -0.13237054646015167, - -0.45177605748176575, - -0.03781764209270477, - 0.27468180656433105, - -0.13139353692531586, - -0.07021848857402802, - 0.16158215701580048, - 0.38347241282463074, - 0.06387980282306671, - -0.29125380516052246, - -0.04651208594441414, - -0.5139647722244263, - -0.17882366478443146, - 0.15607987344264984, - -0.1656659096479416, - -0.10491762310266495, - 0.04341155290603638, - 0.519360363483429, - 0.4849184453487396, - 0.1527681201696396, - -0.3393360674381256, - 0.13002805411815643, - 0.179610013961792, - 0.2267676740884781, - -0.30960479378700256, - -10.76770305633545, - -0.04937170073390007, - -0.3144756257534027, - 0.5559359192848206, - -0.22271651029586792, - 0.06824704259634018, - 0.26861894130706787, - -0.06791994720697403, - 0.0932488739490509, - 0.012506638653576374, - -0.25134721398353577, - -0.07482770830392838, - 0.4211214780807495, - 0.25350603461265564, - -0.06278140097856522, - -0.028454726561903954, - -0.29718682169914246, - 0.12587870657444, - 0.09172939509153366, - 0.2248041033744812, - 0.2456715852022171, - 0.3040908873081207, - -0.18598616123199463, - 0.24188870191574097, - -0.015356623567640781, - -0.26846081018447876, - -0.27155861258506775, - 0.5686387419700623, - 0.2483949065208435, - -0.35778677463531494, - 0.15259380638599396, - 0.16765427589416504, - -0.15358369052410126, - 0.08377446979284286, - -0.06913278251886368, - -0.1062631830573082, - -0.05402091518044472, - 0.24496670067310333, - 0.26557594537734985, - -0.13601666688919067, - -0.01946587674319744, - -0.1461888551712036, - 0.1319034844636917, - 0.2366631031036377, - -0.07172257453203201, - -0.5348557829856873, - -0.25056496262550354, - -1.5187650918960571, - 0.2662450969219208, - 0.2669421136379242, - 0.26520630717277527, - 0.010563071817159653, - 0.10831289738416672, - 0.2196856290102005, - -0.31343069672584534, - 0.13128410279750824, - -0.30309221148490906, - 0.00030535459518432617, - 0.09254341572523117, - -0.020958438515663147, - 0.0912056490778923, - -0.18538832664489746, - 0.6305069327354431, - -0.03261744603514671, - -0.3663763105869293, - 0.09078571945428848, - -0.008106958121061325, - -0.06837084144353867, - -0.213918074965477, - -0.5108022093772888, - -0.44243016839027405, - -0.08162274956703186, - -0.20782405138015747, - -0.037791118025779724, - 0.36206209659576416, - -0.001504547894001007, - -0.3054998815059662, - 0.24004192650318146, - 0.009462706744670868, - 0.26303303241729736, - 0.12812991440296173, - -0.032632481306791306, - 0.10949200391769409, - -0.17787569761276245, - -0.2450656145811081, - -0.10470136255025864, - 0.10865121334791183, - 0.38953685760498047, - 0.017910795286297798, - -0.05046108737587929, - 0.009701061993837357, - 0.4855739176273346, - 0.045494794845581055, - -0.2022409290075302, - -0.4212040901184082, - 0.03443121537566185, - -0.09647548943758011, - 0.06134197115898132, - -0.07736583054065704, - -0.10336653143167496, - -0.12365701049566269, - 0.054490745067596436, - -0.04871400073170662, - -0.40506336092948914, - -0.4064514935016632, - 0.26581472158432007, - 0.1118243858218193, - 0.16083692014217377, - 0.017890188843011856, - -0.1338598132133484, - -0.08353841304779053, - 0.06646173447370529, - 0.15495800971984863, - 0.4732852280139923, - 0.1861763596534729, - -0.13592012226581573, - -0.07004982233047485, - -0.3298652172088623, - -0.14015543460845947, - -0.0014337599277496338, - 0.3097314238548279, - -0.08943361788988113, - 0.22116829454898834, - 0.5188443064689636, - -0.056084632873535156, - -0.02667474001646042, - 0.9474626183509827, - -0.2289573699235916, - 0.274119108915329, - -0.1333768218755722, - 0.2108960747718811, - -0.12451473623514175, - -0.2178516536951065, - 0.09490235894918442, - 0.4119732081890106, - -0.3296416699886322, - 0.5915488004684448, - 0.08589138835668564, - -0.34869304299354553, - -0.03709444776177406, - -0.2086176723241806, - 0.41479000449180603, - 0.3705427348613739, - 0.32061073184013367, - -0.10620670765638351, - -0.32496586441993713, - -0.2598907947540283, - 0.006103502120822668, - -0.3872876465320587, - -0.3781029284000397, - -0.1958344727754593, - 0.11598614603281021, - 0.07771259546279907, - -0.225832000374794, - 0.26441118121147156, - 0.07841621339321136, - -0.08558175712823868, - -0.34056082367897034, - -0.3741566836833954, - 0.013456110842525959, - 0.10599487274885178, - 0.7825827598571777, - -0.10218832641839981, - 0.000811133359093219, - -0.0759391263127327, - 0.1383369117975235, - -0.14752595126628876, - 0.2306026816368103, - 0.012646404094994068, - 0.011233169585466385, - -0.5192301869392395, - 0.21423853933811188, - 0.19742269814014435, - -0.23473374545574188, - -0.1318122148513794, - -0.24404285848140717, - -0.04313606023788452, - -0.021017730236053467, - -0.2269909828901291, - 0.11024106293916702, - 0.41027021408081055, - -0.08353698998689651, - -0.05839782953262329, - -0.22980402410030365, - 0.09159130603075027, - 0.100079245865345, - 0.2716154158115387, - 0.04788695648312569, - -0.24102318286895752, - -0.33940353989601135, - -0.5361133217811584, - 0.2896086275577545, - -0.2815565764904022, - -0.03329748287796974, - 0.2046552449464798, - 0.11463269591331482, - -0.2241598516702652, - 0.07360406965017319, - -0.14863188564777374, - 0.0010421733604744077, - -0.11007536202669144, - 0.23892128467559814, - 0.4111049473285675, - -0.39125728607177734, - 0.31197166442871094, - -0.17779521644115448, - 0.1642216145992279, - 0.08717682212591171, - -0.19608311355113983, - 0.1685820370912552, - -0.16227419674396515 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_028.json b/src/benchmark/output/results/results_graph_028.json deleted file mode 100644 index ddbf1e1..0000000 --- a/src/benchmark/output/results/results_graph_028.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is an 84-year-old woman with a history of type 2 diabetes mellitus, arthritis, and hypertension. She presented to the clinic with an incidental finding of an enlarging solitary lung nodule.\n\n**Timeline of Diagnoses:**\n\n1. **Initial Presentation (Step 1):** The patient was diagnosed with an enlarging solitary lung nodule, which prompted further investigation.\n2. **Lung Nodule Measurement (Step 2):** A chest CT scan revealed a well-circumscribed lesion measuring 0.9 \u00d7 0.8 cm four years prior to the current presentation.\n3. **Recent Imaging (Step 2):** A recent chest CT scan showed a 1.3 \u00d7 1.2 cm well-circumscribed lesion, and a PET/CT scan revealed a 1.4 cm nodule with an avidity of 3.8 without any metastatic or nodal involvement.\n4. **Head CT Without Contrast (Step 3):** A head CT without contrast revealed mild white matter hypoattenuation, but no evidence of acute hemorrhage, mass effect, or extra-axial collection.\n5. **Differential Diagnoses and Treatment (Step 4):** Differential diagnoses included carcinoid tumor, non-small-cell lung cancer, or a hamartoma. The patient underwent a robotic-assisted left VATS wedge resection of the left upper lobe under general anesthesia to remove the nodule.\n\n**Outcomes:**\n\n1. **No Distant Metastasis:** No distant metastasis was observed after the surgical procedure.\n2. **Nodule Size and Growth:** The nodule was greater than 0.8 cm in size and increased in size over the preceding four years.\n3. **Post-Operative Period (Step 5):** The patient is currently in the post-operative period following robotic-assisted left VATS wedge resection.\n\n**Conclusion:**\nThe patient's clinical presentation, imaging findings, and treatment outcomes suggest a possible diagnosis of carcinoid tumor or non-small-cell lung cancer. Further investigation and surgical intervention were necessary to manage this condition. The patient's age, comorbidities, and nodule growth pattern warrant close follow-up to monitor for any signs of recurrence or metastasis.\n\n**Recommendations:**\n\n1. **Regular Follow-Up:** Regular follow-up appointments are recommended to monitor the patient's lung function, overall health, and any potential recurrences.\n2. **Imaging Surveillance:** Imaging surveillance, including chest CT scans and PET/CT scans, should be performed regularly to monitor the nodule for any changes or growth.\n3. **Comprehensive Cancer Screening:** Comprehensive cancer screening, including mammography, colonoscopy, and skin examination, is recommended due to the patient's age and comorbidities.\n\n**Limitations:**\nThis case report has several limitations, including the lack of detailed information on the patient's medical history, laboratory results, and long-term follow-up. Further investigation and data collection are necessary to provide a more comprehensive understanding of this clinical scenario.", - "bertscore": { - "precision": [ - 0.7183935642242432 - ], - "recall": [ - 0.7226868867874146 - ], - "f1": [ - 0.7205338478088379 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 5, - "edge_count": 4, - "avg_in_degree": 0.8, - "density": 0.2 - }, - "trajectory_embedding": [ - 0.24988213181495667, - 0.04165813326835632, - -0.10803090035915375, - 0.24811552464962006, - -0.10578621923923492, - 0.02792733535170555, - 0.1465204954147339, - 0.06951414048671722, - 0.26994967460632324, - -0.33724159002304077, - -0.28783297538757324, - 0.3368149995803833, - -0.748920202255249, - -0.056652992963790894, - -0.34884560108184814, - 0.025123193860054016, - 0.20900700986385345, - 0.30647820234298706, - 0.16403011977672577, - -0.24056905508041382, - -0.5396699905395508, - 0.07453572005033493, - -0.37687554955482483, - -0.1599014699459076, - 0.10857540369033813, - -0.19019807875156403, - 0.002367437817156315, - 0.441151887178421, - 0.2771269679069519, - 0.39614373445510864, - 0.1260596215724945, - 0.15626665949821472, - -0.20671449601650238, - 0.08241055905818939, - -0.03254906088113785, - 0.49300140142440796, - 0.42313554883003235, - 0.31458598375320435, - -0.055950894951820374, - 0.20752550661563873, - 0.023996805772185326, - -0.02388133853673935, - 0.6561620235443115, - 0.43024349212646484, - 0.7876812815666199, - -0.5390937924385071, - -0.04921523109078407, - 0.25373032689094543, - -0.6475976705551147, - -0.2266829013824463, - 0.19614575803279877, - 0.629033088684082, - 0.6878945827484131, - -0.14689123630523682, - 0.4091928005218506, - -0.03982734680175781, - -0.37421444058418274, - -0.28855448961257935, - -0.27741408348083496, - 0.1578247845172882, - -0.14264076948165894, - 0.054133057594299316, - -0.05268683284521103, - 0.011752783320844173, - -0.38190537691116333, - -0.10985147953033447, - -0.12343727797269821, - -0.08808933943510056, - -0.053731534630060196, - -0.48661091923713684, - -0.2602510452270508, - -0.31354638934135437, - -0.047760725021362305, - 0.016415659338235855, - 0.19678691029548645, - -0.20765042304992676, - 0.28304189443588257, - 0.11280994117259979, - -0.1535159796476364, - 0.18736112117767334, - 0.18949340283870697, - 0.013388917781412601, - 0.2651159167289734, - 0.21847812831401825, - -0.29957619309425354, - 0.14518333971500397, - 0.04775700718164444, - -0.051480792462825775, - -0.09006012231111526, - 0.3778984844684601, - 0.05007908493280411, - -0.06255543977022171, - 0.06388915330171585, - -0.2429647445678711, - 0.23963864147663116, - -0.16668182611465454, - 0.0683295726776123, - 0.4971874952316284, - 1.0385788679122925, - 0.03854465112090111, - 0.03941720724105835, - 0.21417783200740814, - 0.38597187399864197, - -0.09179486334323883, - 0.552760124206543, - -0.04010072723031044, - 0.10596469044685364, - -0.5964903831481934, - -0.17570026218891144, - 0.29510101675987244, - -0.18222549557685852, - -0.019581113010644913, - 0.11264835298061371, - -0.5163235664367676, - -0.08186056464910507, - -0.04308043792843819, - -0.0706762969493866, - -0.06449370086193085, - -0.06417985260486603, - -0.35346025228500366, - -0.1961788833141327, - -0.09441918134689331, - 0.3526613712310791, - 0.22500920295715332, - -0.4726870656013489, - 0.061542246490716934, - -0.4119330644607544, - 0.2873426675796509, - -0.15697376430034637, - 0.35182052850723267, - -0.6527619361877441, - -0.1532505750656128, - -0.054986998438835144, - 0.41105520725250244, - -0.13906626403331757, - 0.38883933424949646, - -0.5821400880813599, - 0.3734094798564911, - -1.0448148250579834, - 0.4298494756221771, - -0.39665651321411133, - -0.07176262140274048, - 0.13338087499141693, - -0.31489431858062744, - -0.18905577063560486, - -0.14524400234222412, - -0.2010194957256317, - 0.1261492371559143, - 0.23573482036590576, - -0.05266151949763298, - -0.38756895065307617, - 0.12492731213569641, - 0.35179299116134644, - -0.03773616626858711, - 0.09697072207927704, - 0.5479185581207275, - 0.18838346004486084, - 0.3274446129798889, - 0.23734913766384125, - -0.02722056210041046, - -0.054755840450525284, - 0.11886454373598099, - -0.12266896665096283, - -0.1384297013282776, - 0.161537766456604, - -0.761415421962738, - 0.37395888566970825, - -0.42707058787345886, - 0.36531537771224976, - 0.06110997498035431, - -0.26408684253692627, - 0.2967233657836914, - -0.19824998080730438, - 0.6136056780815125, - 0.27285850048065186, - 0.29862624406814575, - -0.011159747838973999, - -0.024548253044486046, - 0.21122494339942932, - 0.09457345306873322, - 0.10175056010484695, - 0.06594739854335785, - 0.7179597616195679, - -0.01110917329788208, - -0.3569522500038147, - 0.4279901385307312, - 0.48021355271339417, - -0.2694565951824188, - -0.21224075555801392, - -0.308268278837204, - 0.42844143509864807, - -0.24511966109275818, - 0.21259364485740662, - -0.3697514832019806, - -0.043424755334854126, - -0.05905310809612274, - -0.38086453080177307, - -0.3473367691040039, - 0.15921151638031006, - -0.05796431750059128, - 0.2699328362941742, - 0.03210911527276039, - -0.02575201913714409, - 0.10015124827623367, - -0.002884969115257263, - -0.14942947030067444, - 0.39105209708213806, - 0.07500222325325012, - 0.05315347760915756, - -0.12542083859443665, - -0.10714974254369736, - 0.15708103775978088, - -0.2556368112564087, - 0.22970902919769287, - 0.06194652244448662, - -0.2518940269947052, - 0.3208627998828888, - -0.13072383403778076, - -0.2693944573402405, - 0.3611364960670471, - -0.2598130404949188, - 0.08037535846233368, - 0.40833598375320435, - -0.01877836138010025, - -0.2058374434709549, - 0.16923287510871887, - 0.1367325633764267, - 0.36646342277526855, - 0.1603759378194809, - -0.08565084636211395, - 0.0646357387304306, - -0.3898411989212036, - 0.1853102147579193, - -0.17935343086719513, - -0.23266300559043884, - -0.4827398657798767, - 0.10309761762619019, - -0.3433033525943756, - -0.45442917943000793, - 0.39718109369277954, - -0.26731157302856445, - -0.37817034125328064, - 0.08806334435939789, - -0.37901997566223145, - -0.1540694683790207, - -0.3616562485694885, - -0.04405656084418297, - 0.3439060151576996, - 0.08407457917928696, - 0.3910491466522217, - 0.10212787985801697, - -0.08659480512142181, - 0.3117385804653168, - -0.333120733499527, - -0.11873139441013336, - -0.6026166677474976, - -0.04835689812898636, - 0.062148481607437134, - -0.1711754947900772, - 0.09840314835309982, - 0.11082879453897476, - -0.23742681741714478, - 0.06786245107650757, - -0.31647801399230957, - -0.19622588157653809, - -0.023910991847515106, - -0.13018369674682617, - 0.11915049701929092, - -0.05102436989545822, - 0.20286479592323303, - -0.4145895838737488, - -0.2159293293952942, - -0.18466685712337494, - -0.08267883956432343, - 0.4090767502784729, - 0.08698087185621262, - 0.006754912436008453, - 0.042074598371982574, - 0.33291223645210266, - -0.5579440593719482, - -0.6386004090309143, - 0.31109756231307983, - -0.3491000533103943, - 0.2129950076341629, - -0.13249072432518005, - 0.044969648122787476, - 0.21786004304885864, - -0.04421959072351456, - 0.12104171514511108, - 0.3809080123901367, - 0.6028088927268982, - 0.1566525250673294, - -0.16568368673324585, - 0.013802223838865757, - 0.09627717733383179, - -0.2585511803627014, - -0.5455210208892822, - 0.27302756905555725, - -0.02025097981095314, - -0.049181561917066574, - 0.14202918112277985, - 0.22363193333148956, - 0.06122303009033203, - -0.620705783367157, - -0.28261101245880127, - 0.6921907067298889, - 0.30897653102874756, - -0.13095495104789734, - 0.038894593715667725, - 0.4885551333427429, - 0.8991434574127197, - -0.009793994948267937, - -0.291365385055542, - -0.10257536917924881, - -0.16745911538600922, - 0.03227055445313454, - -0.12566159665584564, - -0.07582367211580276, - 0.10948953032493591, - -0.08031299710273743, - -0.001496812328696251, - 0.4108771085739136, - -0.15172725915908813, - -0.05784371495246887, - -0.02844110131263733, - 0.1364196240901947, - 0.06890656799077988, - -0.11680963635444641, - 0.2506498396396637, - -0.15618166327476501, - -0.054282352328300476, - 0.42413458228111267, - 0.10210828483104706, - -0.2648021876811981, - 0.08565498143434525, - -0.033764369785785675, - -0.48039793968200684, - 0.2330085039138794, - -0.22540771961212158, - -0.008325126022100449, - 0.39025717973709106, - 0.27285251021385193, - -0.05252488702535629, - -0.3510001301765442, - 0.38376742601394653, - 0.1496220976114273, - -0.27632826566696167, - -0.04951301962137222, - -0.09913429617881775, - 0.30488088726997375, - 0.631233811378479, - -0.09893051534891129, - 0.1089312955737114, - 0.24199941754341125, - -0.24416682124137878, - -0.19544020295143127, - -0.26655149459838867, - 0.2474132478237152, - 0.1718858778476715, - -0.3719154894351959, - -0.33020997047424316, - -0.20296333730220795, - 0.03985932096838951, - 0.11994127929210663, - -0.07495333254337311, - -0.02049437165260315, - 0.14593741297721863, - 0.16189604997634888, - 0.045800335705280304, - 0.12791183590888977, - 0.326564222574234, - 0.003236999735236168, - 0.5016437768936157, - 0.2258920669555664, - 0.01206602156162262, - 0.33470162749290466, - -0.19271308183670044, - 0.4043158292770386, - -0.2838933765888214, - -0.35749551653862, - -0.538527250289917, - -0.08889419585466385, - -0.2864341735839844, - -0.28615501523017883, - -0.010489385575056076, - -0.07575643062591553, - 0.17564426362514496, - 0.07608307152986526, - 0.48627933859825134, - 0.009794964455068111, - 0.1841098815202713, - -0.04366019368171692, - 0.6244029998779297, - -0.16167888045310974, - -0.4052530825138092, - -0.063870370388031, - -0.12027913331985474, - 0.29339897632598877, - -0.3412780463695526, - 0.0588264986872673, - -0.27009958028793335, - 0.17919597029685974, - 0.05519658327102661, - -0.2299697995185852, - 0.07593603432178497, - 0.0883258581161499, - -0.32639840245246887, - -0.43230384588241577, - -0.14468176662921906, - -0.0749778226017952, - -0.1294681280851364, - -0.23553383350372314, - 0.3178693652153015, - -0.09061311930418015, - -0.4092266857624054, - 0.16582244634628296, - 0.34682923555374146, - 0.1729491502046585, - -0.23025527596473694, - 0.3614092767238617, - 0.21790695190429688, - -0.021757274866104126, - 0.4046781659126282, - 0.05970476567745209, - 0.1626666635274887, - 0.1065303161740303, - -0.30168160796165466, - -0.09333296120166779, - 0.14914584159851074, - -0.09425300359725952, - -0.11435939371585846, - 0.16802722215652466, - 0.2642260193824768, - 0.08727394044399261, - 0.03393847495317459, - -0.04223345220088959, - 0.36773890256881714, - -0.3864034116268158, - -0.13297900557518005, - 0.36009785532951355, - -0.012147553265094757, - 0.42051243782043457, - -0.10084855556488037, - -0.1897163689136505, - -0.24470281600952148, - -0.049613360315561295, - -0.4489327073097229, - 0.07644712924957275, - 0.1263904869556427, - -0.178648442029953, - -0.03095049224793911, - 0.13470639288425446, - 0.1260073482990265, - 0.041757576167583466, - 0.01994745433330536, - -0.13755130767822266, - 0.08040015399456024, - -0.09657196700572968, - -0.5184705853462219, - -0.12362444400787354, - -0.28989753127098083, - -0.2749548554420471, - -0.27657684683799744, - 0.5791579484939575, - 0.5074058771133423, - -0.012112069875001907, - 0.17525579035282135, - 0.3119511008262634, - -0.31834089756011963, - -0.40215161442756653, - 0.055731967091560364, - -0.22586989402770996, - 0.6671525835990906, - 0.2209540158510208, - -0.07704392820596695, - 0.2672621011734009, - -0.42997488379478455, - 0.2415170669555664, - 0.32834523916244507, - 0.2545469105243683, - 0.4324030578136444, - 0.1807575821876526, - 0.16531457006931305, - 0.36100420355796814, - 0.07665898650884628, - -0.11054617911577225, - 0.19383278489112854, - 0.1509379893541336, - 0.030697427690029144, - -0.17564183473587036, - -0.16074466705322266, - 0.3573829233646393, - -0.19920189678668976, - 0.14963418245315552, - 0.10469672828912735, - 0.36890360713005066, - -0.34243521094322205, - -0.27980664372444153, - -0.18977858126163483, - -0.1723836362361908, - -0.22977794706821442, - -0.42820295691490173, - -0.08907686918973923, - 0.1436065435409546, - -0.3256458044052124, - -0.1669732630252838, - 0.30642956495285034, - 0.20507147908210754, - 0.005221404135227203, - 0.08225717395544052, - -0.37379932403564453, - -0.5571432113647461, - 0.010994002223014832, - 0.37657272815704346, - -0.03790885582566261, - 0.03367568552494049, - 0.012041637673974037, - 0.2583402991294861, - 0.5642861127853394, - -0.025817930698394775, - -0.06156376749277115, - 0.14910782873630524, - 0.16975723206996918, - -0.17064417898654938, - 0.10496899485588074, - 0.13446302711963654, - 0.29122859239578247, - -0.35499557852745056, - 0.3588106334209442, - -0.19667434692382812, - -0.46284395456314087, - 0.21075014770030975, - -0.3207918703556061, - -0.22155973315238953, - -0.11284134536981583, - 0.3416803479194641, - -0.07862832397222519, - 0.1549348384141922, - -0.03136681765317917, - 0.3869834244251251, - 0.28592994809150696, - -0.21571967005729675, - 0.07544198632240295, - -0.5512031316757202, - -0.0831262394785881, - 0.09452097117900848, - -0.2396325170993805, - 0.26245662569999695, - -0.3114672899246216, - 0.09836481511592865, - 0.4103238880634308, - 0.11073215305805206, - -0.47187137603759766, - -0.11948524415493011, - 0.25153106451034546, - 0.5818403363227844, - -0.23519408702850342, - -10.624322891235352, - 0.3269426226615906, - -0.10612601041793823, - 0.5663678050041199, - -0.24464499950408936, - 0.054410211741924286, - -0.18822874128818512, - -0.04137904942035675, - 0.17587362229824066, - 0.14251935482025146, - -0.2159690260887146, - 0.0735001191496849, - 0.2995039224624634, - 0.20136715471744537, - -0.06461650133132935, - -0.06055999547243118, - -0.3397282660007477, - 0.17649340629577637, - -0.10585691779851913, - 0.19900238513946533, - 0.4080880284309387, - 0.3479374647140503, - -0.34579867124557495, - 0.2792208194732666, - 0.4169769883155823, - -0.027352549135684967, - -0.09177891910076141, - 0.5199663639068604, - 0.06642578542232513, - -0.5249855518341064, - 0.2795584797859192, - 0.3627331554889679, - -0.3978032171726227, - -0.13832318782806396, - 0.04615655913949013, - -0.28699690103530884, - -0.21132409572601318, - -0.0734855979681015, - 0.1872953325510025, - -0.13160070776939392, - 0.053637370467185974, - -0.1522308886051178, - -0.011019296944141388, - 0.32306039333343506, - -0.27195197343826294, - -0.3403381109237671, - -0.17368409037590027, - -1.365607738494873, - 0.08369521796703339, - 0.19283510744571686, - 0.6310447454452515, - 0.041605886071920395, - 0.24419787526130676, - 0.09205684065818787, - -0.5366196632385254, - 0.21821197867393494, - -0.2580485939979553, - 0.07115389406681061, - 0.115046925842762, - -0.03062622621655464, - 0.11101993918418884, - -0.2671927511692047, - 0.2203294038772583, - -0.3489294648170471, - -0.39218270778656006, - 0.1703496277332306, - -0.02976548671722412, - 0.12372875958681107, - -0.14152362942695618, - -0.19081178307533264, - -0.4518090784549713, - -0.23518306016921997, - 0.17599017918109894, - 0.03501726686954498, - 0.586920976638794, - 0.11076638847589493, - -0.5714520812034607, - 0.25582367181777954, - -0.18436233699321747, - 0.4676063656806946, - -0.06299997121095657, - -0.05208819359540939, - 0.19359460473060608, - -0.05745904520153999, - -0.2507920563220978, - -0.23874062299728394, - 0.07631932944059372, - 0.535283088684082, - -0.0944284051656723, - -0.14412008225917816, - -0.025682605803012848, - 0.08455034345388412, - -0.156453475356102, - -0.09735377132892609, - -0.3482015132904053, - 0.17394469678401947, - -0.039378225803375244, - -0.031299326568841934, - 0.24428421258926392, - -0.07980446517467499, - 0.08333620429039001, - -0.24537129700183868, - -0.040994755923748016, - -0.5321431159973145, - -0.2895621657371521, - 0.268131822347641, - 0.10504809021949768, - 0.20934893190860748, - 0.305605947971344, - -0.03405064716935158, - 0.1315060257911682, - 0.03873268514871597, - 0.4050140380859375, - 0.4234151244163513, - -0.0024965833872556686, - -0.04109934717416763, - -0.2073049247264862, - 0.06758096814155579, - -0.4309483766555786, - 0.3075910210609436, - 0.37183982133865356, - -0.08383186161518097, - 0.2955496907234192, - 0.673592209815979, - 0.013524891808629036, - -0.18675564229488373, - 1.0520776510238647, - -0.23066453635692596, - 0.38603878021240234, - -0.23045065999031067, - 0.08601401001214981, - -0.0899546667933464, - -0.37613940238952637, - 0.10109558701515198, - 0.37093549966812134, - -0.444868803024292, - 0.48763543367385864, - 0.24651949107646942, - -0.48051196336746216, - 0.11792043596506119, - -0.2830681800842285, - 0.5411341190338135, - 0.28397414088249207, - 0.06386232376098633, - -0.0657220259308815, - -0.4055522680282593, - -0.34404832124710083, - -0.039463505148887634, - -0.40856966376304626, - -0.28635311126708984, - -0.16637295484542847, - 0.07177391648292542, - 0.01624847576022148, - -0.25796133279800415, - 0.37799912691116333, - 0.26031213998794556, - -0.13751450181007385, - -0.026012562215328217, - -0.49111542105674744, - -0.1955745369195938, - -0.016181878745555878, - 0.6326929926872253, - -0.06577854603528976, - 0.023203007876873016, - -0.24850453436374664, - 0.2804742157459259, - 0.046271394938230515, - 0.114347904920578, - -0.04138768091797829, - 0.03587115556001663, - -0.4854556918144226, - 0.018099479377269745, - 0.13255001604557037, - -0.34410300850868225, - -0.2092023342847824, - -0.5434504151344299, - 0.145143061876297, - 0.004886884242296219, - -0.046003881841897964, - 0.28410542011260986, - 0.4002301096916199, - -0.038889329880476, - 0.06524410843849182, - -0.1687408834695816, - 0.2878727316856384, - 0.1818474531173706, - 0.06496036797761917, - 0.29990100860595703, - -0.2852131724357605, - -0.4669058918952942, - -0.26640433073043823, - 0.1884451061487198, - -0.24581380188465118, - -0.002498416230082512, - -0.11721546947956085, - 0.10980923473834991, - -0.2691681385040283, - -0.03705187886953354, - -0.2889508008956909, - 0.04113560914993286, - -0.2978129982948303, - 0.14899519085884094, - 0.38782137632369995, - -0.294838011264801, - -0.031150314956903458, - -0.1887759417295456, - 0.3242749571800232, - 0.17932859063148499, - -0.4782394468784332, - 0.3271951973438263, - -0.1264503002166748 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_029.json b/src/benchmark/output/results/results_graph_029.json deleted file mode 100644 index 7b6ab3d..0000000 --- a/src/benchmark/output/results/results_graph_029.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 65-year-old woman with a history of palmoplantar pustulosis. She presented with a breast mass and a chest mass, which led to further investigation and diagnosis.\n\n**Initial Diagnosis (Step 1):**\nThe patient's initial presentation was characterized by a breast mass and a chest mass. Histopathological analysis of biopsy specimens from both the lung mass and the breast mass revealed small cell carcinoma (SCLC) in both lesions. Comprehensive staging, including contrast-enhanced MRI of the brain and FDG-PET, led to a diagnosis of stage cT2aN3M1c SCLC with multiple bone, peritoneal, and skin metastases.\n\n**Timeline of Diagnoses:**\n\n* **Step 1 (N1):** Patient presented with breast mass and chest mass.\n* **Step 2 (N2):** Histopathological analysis revealed small cell carcinoma in both lesions. Comprehensive staging confirmed stage cT2aN3M1c SCLC.\n\n**Treatment Initiation (Step 3):**\nThe patient initiated first-line treatment with carboplatin, etoposide, and durvalumab. Administration sequence: durvalumab, followed by ETP, and then CBDCA. During the first course of treatment, the patient experienced anaphylactic shock while receiving an ETP infusion on day 1.\n\n**Treatment Modification (Step 4):**\nDue to anaphylactic shock during etoposide infusion, treatment was switched to combination therapy with cisplatin (CDDP) and irinotecan (CPT-11).\n\n**Current Status:**\nThe patient is currently undergoing treatment with a modified regimen. The patient's condition is being closely monitored for any signs of disease progression or adverse reactions.\n\n**Outcomes:**\nWhile the patient has experienced anaphylactic shock during treatment, they are still receiving ongoing care and management. Further follow-up will be necessary to assess the effectiveness of the current treatment regimen and make any necessary adjustments.\n\nNote: The case report is based on the provided data and may not reflect the actual clinical scenario or outcomes.", - "bertscore": { - "precision": [ - 0.5255064368247986 - ], - "recall": [ - 0.6934730410575867 - ], - "f1": [ - 0.5979174375534058 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 4, - "edge_count": 3, - "avg_in_degree": 0.75, - "density": 0.25 - }, - "trajectory_embedding": [ - 0.15035732090473175, - 0.08811881393194199, - -0.19972163438796997, - 0.14578032493591309, - 0.23200318217277527, - 0.13004496693611145, - 0.015617452561855316, - 0.2698851525783539, - 0.4273703098297119, - -0.5097478032112122, - -0.08371931314468384, - 0.2273850440979004, - -0.7754285931587219, - 0.03681084141135216, - -0.3211135268211365, - 0.023278556764125824, - -0.047743119299411774, - 0.32534492015838623, - 0.027143247425556183, - -0.2724577784538269, - -0.5230530500411987, - 0.0914003849029541, - -0.42661213874816895, - -0.17604972422122955, - 0.1582137644290924, - -0.11511606723070145, - 0.24375087022781372, - 0.3639303147792816, - 0.30078983306884766, - 0.1481952965259552, - 0.0982765257358551, - 0.07514798641204834, - -0.14045822620391846, - -0.05991669371724129, - -0.21620173752307892, - 0.5434203147888184, - 0.2814257740974426, - 0.30924949049949646, - -0.06420550495386124, - 0.06908589601516724, - -0.13318544626235962, - 0.10258776694536209, - 0.8083333373069763, - 0.23025156557559967, - 0.606808602809906, - -0.4456811249256134, - -0.1107533872127533, - 0.6211190223693848, - -0.6121363639831543, - -0.24383987486362457, - 0.26599955558776855, - 0.7815065979957581, - 0.7041884660720825, - -0.09790679812431335, - 0.5647207498550415, - -0.10656889528036118, - -0.3475062847137451, - -0.09534834325313568, - -0.19805721938610077, - -0.030897479504346848, - 0.3047719895839691, - -0.04034978896379471, - 0.09445232897996902, - -0.19703462719917297, - -0.19587776064872742, - -0.2755402624607086, - -0.2612338662147522, - -0.062225084751844406, - -0.02951645478606224, - -0.3850701153278351, - -0.3721943497657776, - -0.31069427728652954, - -0.197273388504982, - 0.12435930222272873, - 0.05557815730571747, - -0.22090354561805725, - 0.2659367322921753, - -0.04172642529010773, - 0.005254209041595459, - 0.07337819784879684, - 0.15482300519943237, - 0.00045836344361305237, - 0.12372990697622299, - 0.305213987827301, - -0.3897011876106262, - 0.11810100823640823, - -0.21962682902812958, - 0.06196033954620361, - -0.07672929763793945, - 0.09647464752197266, - 0.22657150030136108, - -0.1528746783733368, - 0.03631039708852768, - -0.2797641158103943, - 0.08148163557052612, - -0.11708860844373703, - 0.3098274767398834, - 0.1963893622159958, - 0.9034712314605713, - -0.049965836107730865, - 0.2512938976287842, - 0.26801350712776184, - 0.3084595501422882, - -0.07162152230739594, - 0.5442402362823486, - -0.016050945967435837, - 0.2986084222793579, - -0.2577110826969147, - 0.0753178521990776, - 0.3752126097679138, - 0.05898970738053322, - -0.20055533945560455, - 0.13245722651481628, - -0.34535107016563416, - -0.006994746625423431, - 0.21054047346115112, - -0.2143578976392746, - 0.08399107307195663, - 0.043778225779533386, - -0.4922197461128235, - -0.10373472422361374, - -0.11313064396381378, - 0.3105468153953552, - 0.2122548222541809, - -0.36539602279663086, - -0.13001251220703125, - -0.2934725880622864, - 0.06563467532396317, - 0.01279892772436142, - 0.1863807737827301, - -0.3714646100997925, - -0.09065089374780655, - 0.0714176818728447, - 0.21681082248687744, - -0.24344199895858765, - 0.3045070171356201, - -0.5687077641487122, - 0.169362872838974, - -1.130785584449768, - 0.30985572934150696, - -0.39118704199790955, - -0.09087523818016052, - 0.04579455032944679, - -0.43984517455101013, - -0.130955308675766, - -0.2126157283782959, - -0.140931636095047, - 0.15842145681381226, - 0.031178168952465057, - -0.016274040564894676, - -0.23103465139865875, - -0.04341796785593033, - 0.20759788155555725, - 0.12309414893388748, - 0.19238199293613434, - 0.16843999922275543, - 0.13355569541454315, - 0.31758204102516174, - 0.1647462397813797, - -0.27267512679100037, - -0.05877390503883362, - 0.4191613793373108, - -0.12473881244659424, - 0.012259690091013908, - 0.05943474918603897, - -0.779281735420227, - 0.21288494765758514, - -0.22383490204811096, - 0.1658511757850647, - 0.10764306783676147, - -0.03768884763121605, - 0.13597480952739716, - 0.0055528804659843445, - 0.40644001960754395, - 0.2619713246822357, - 0.45598211884498596, - -0.0007789731025695801, - 0.09154902398586273, - 0.2806803584098816, - 0.030787654221057892, - 0.08364425599575043, - -0.08660861849784851, - 0.5961792469024658, - 0.14408645033836365, - -0.2795652747154236, - 0.24233701825141907, - 0.4976266622543335, - -0.25516176223754883, - -0.27442464232444763, - -0.18344378471374512, - 0.6251331567764282, - -0.21638593077659607, - 0.4347502589225769, - -0.391853928565979, - -0.07856140285730362, - 0.14384575188159943, - -0.2521666884422302, - -0.2443702518939972, - 0.16279950737953186, - -0.1309836059808731, - 0.24158386886119843, - 0.29584556818008423, - -0.14399248361587524, - 0.09044089168310165, - 0.28795504570007324, - -0.008826151490211487, - 0.20617961883544922, - 0.08215983211994171, - -0.006577081512659788, - -0.0948309451341629, - -0.2181766927242279, - 0.3311384320259094, - -0.15381696820259094, - 0.23943094909191132, - 0.08220815658569336, - -0.3224627375602722, - 0.2765353322029114, - 0.04827180877327919, - -0.310332715511322, - 0.13254289329051971, - -0.13208888471126556, - -0.18986046314239502, - 0.41949814558029175, - -0.05851202458143234, - -0.3244854807853699, - 0.3531220555305481, - 0.25011327862739563, - 0.3199182450771332, - 0.11079217493534088, - -0.059197187423706055, - 0.03877272084355354, - -0.3607223331928253, - 0.41567617654800415, - -0.07486863434314728, - -0.2852470874786377, - -0.32354456186294556, - 0.07133990526199341, - -0.09083409607410431, - -0.16720029711723328, - 0.4848332703113556, - -0.05888050049543381, - -0.07240745425224304, - -0.06843895465135574, - -0.3825176954269409, - -0.1425507366657257, - -0.2734854221343994, - -0.05055718123912811, - 0.42158007621765137, - -0.006317663937807083, - 0.12385077774524689, - 0.08918486535549164, - -0.13256102800369263, - 0.2745213508605957, - -0.2780851423740387, - -0.3515373468399048, - -0.15661406517028809, - -0.21939902007579803, - -0.028707878664135933, - -0.22431311011314392, - 0.14356249570846558, - 0.061870601028203964, - -0.050839848816394806, - 0.15007153153419495, - -0.3665141761302948, - -0.19492770731449127, - -0.13672906160354614, - -0.08776049315929413, - 0.3145122528076172, - -0.0763511061668396, - 0.3190010190010071, - -0.3214501738548279, - -0.1256009191274643, - -0.2234114706516266, - 0.10247466713190079, - 0.22402280569076538, - 0.2235291749238968, - -0.15936623513698578, - 0.17188525199890137, - 0.18709735572338104, - -0.4275096654891968, - -0.3772406578063965, - 0.13869608938694, - -0.3700858950614929, - 0.16574952006340027, - -0.26916319131851196, - 0.1620868444442749, - 0.5227580666542053, - -0.1351538896560669, - 0.1586870551109314, - 0.3367578089237213, - 0.6137332320213318, - 0.11050702631473541, - 0.05924917012453079, - 0.06975480914115906, - -0.06768328696489334, - 0.04994004964828491, - -0.3988339900970459, - 0.22922761738300323, - 0.07543687522411346, - 0.025239743292331696, - 0.0877264216542244, - 0.24504131078720093, - 0.0866163969039917, - -0.42070406675338745, - -0.21515575051307678, - 0.6003470420837402, - 0.17444464564323425, - 0.12091326713562012, - 0.0966772735118866, - 0.0027948133647441864, - 0.6938762068748474, - 0.14029844105243683, - -0.3007810115814209, - 0.24118241667747498, - -0.015391604974865913, - -0.27638038992881775, - -0.041414059698581696, - 0.028318554162979126, - 0.24682964384555817, - -0.17194335162639618, - -0.08336832374334335, - 0.3972686529159546, - -0.28531336784362793, - -0.21053777635097504, - -0.08046256005764008, - 0.012171542271971703, - -0.07503862679004669, - -0.22408804297447205, - 0.3863581120967865, - -0.20316822826862335, - -0.18604834377765656, - 0.49356135725975037, - -0.19834598898887634, - -0.2519786059856415, - 0.34436988830566406, - -0.08758200705051422, - -0.5814762711524963, - 0.13485053181648254, - -0.14816176891326904, - -0.042686764150857925, - 0.3301374912261963, - -0.1452496349811554, - -0.14636720716953278, - -0.050476692616939545, - 0.1555730253458023, - 0.18688040971755981, - 0.0298861563205719, - -0.0383761040866375, - -0.02968376874923706, - 0.2938281297683716, - 0.5456570386886597, - -0.17294497787952423, - 0.09730851650238037, - 0.2915459871292114, - 0.02802155911922455, - -0.292749285697937, - -0.09167329221963882, - 0.0427735261619091, - 0.22217139601707458, - -0.31327423453330994, - -0.16443021595478058, - -0.3029911518096924, - 0.12076716125011444, - 0.1034930869936943, - -0.19975899159908295, - 0.023916594684123993, - 0.17041020095348358, - -0.07729250937700272, - -0.052528806030750275, - 0.2507254481315613, - 0.2696673274040222, - -0.14416176080703735, - 0.40204742550849915, - -0.010719887912273407, - -0.03060590848326683, - 0.315259724855423, - -0.03484998643398285, - 0.0882989764213562, - 0.013330470770597458, - -0.32680508494377136, - -0.45251524448394775, - 0.016643106937408447, - -0.31067100167274475, - -0.19054633378982544, - 0.16639624536037445, - -0.09456495195627213, - -0.04880452901124954, - -0.1986597776412964, - 0.10074292868375778, - 0.10550490021705627, - 0.2743585407733917, - 0.10977855324745178, - 0.5622624158859253, - -0.00815143808722496, - -0.47350525856018066, - -0.02776990458369255, - -0.033460911363363266, - 0.16270244121551514, - -0.1761842966079712, - -0.0514773353934288, - -0.300570011138916, - 0.40235233306884766, - -0.003214634954929352, - -0.20296189188957214, - -0.017927728593349457, - -0.22651907801628113, - -0.27235597372055054, - -0.49347567558288574, - -0.1526629775762558, - -0.09169160574674606, - 0.005496315658092499, - -0.031811751425266266, - 0.18055564165115356, - 0.00853218138217926, - -0.17103028297424316, - 0.11777958273887634, - 0.4223080277442932, - 0.17727269232273102, - -0.13907240331172943, - -0.10714250057935715, - 0.22663921117782593, - -0.0012986734509468079, - 0.38060590624809265, - -0.05588870123028755, - 0.14727310836315155, - 0.06163933128118515, - -0.3660379648208618, - -0.026589736342430115, - -0.14065946638584137, - -0.3243272304534912, - -0.11314672231674194, - 0.33511295914649963, - 0.07411937415599823, - -0.0839025154709816, - -0.056707851588726044, - -0.038673777133226395, - 0.24374499917030334, - -0.47158539295196533, - -0.12583619356155396, - 0.3539115786552429, - 0.014892980456352234, - 0.470001757144928, - -0.20608855783939362, - -0.37365755438804626, - -0.21803498268127441, - 0.10704813152551651, - -0.45613551139831543, - 0.1995101273059845, - 0.038216959685087204, - -0.23452883958816528, - -0.026150815188884735, - 0.026768241077661514, - 0.03500731289386749, - -0.2321758270263672, - 0.10367514193058014, - -0.051840901374816895, - 0.14250263571739197, - 0.07993937283754349, - -0.34932956099510193, - -0.01264193281531334, - -0.37952128052711487, - -0.3767266273498535, - -0.28183797001838684, - 0.5280085206031799, - 0.1739700883626938, - -0.18372637033462524, - 0.058890435844659805, - 0.071327805519104, - -0.12311612814664841, - -0.2674154043197632, - -0.045537322759628296, - -0.04827253520488739, - 0.5374770164489746, - -0.1727357804775238, - -0.29129427671432495, - 0.4188222289085388, - -0.23409907519817352, - 0.07490140199661255, - 0.3064059615135193, - 0.14297285676002502, - 0.21151776611804962, - 0.18686801195144653, - 0.21509352326393127, - 0.4775988757610321, - 0.15696658194065094, - 0.03687877953052521, - 0.20499786734580994, - -0.026885375380516052, - 0.026583679020404816, - -0.19492124021053314, - -0.12437091767787933, - 0.4772647023200989, - -0.4242173731327057, - 0.10363228619098663, - -0.1486118733882904, - 0.31567060947418213, - -0.3919461965560913, - -0.18221206963062286, - -0.06811124831438065, - -0.07261928170919418, - -0.16310520470142365, - -0.3908563554286957, - -0.23347413539886475, - 0.041593436151742935, - -0.2824108600616455, - -0.08890575170516968, - 0.3584212064743042, - 0.27023792266845703, - 0.15537956357002258, - 0.1273878961801529, - -0.24296975135803223, - -0.5053679347038269, - 0.08073724061250687, - 0.4609663486480713, - 0.11543350666761398, - -0.12987348437309265, - -0.1967269778251648, - 0.29862478375434875, - 0.44801628589630127, - 0.1553916335105896, - -0.10514980554580688, - -0.10351458191871643, - -0.051483601331710815, - -0.07857932150363922, - 0.12600252032279968, - -0.22845253348350525, - 0.13111203908920288, - -0.3403601050376892, - 0.09868250787258148, - -0.18182969093322754, - -0.1762281209230423, - 0.27940887212753296, - -0.4322230815887451, - -0.5260947942733765, - -0.022753216326236725, - 0.14148125052452087, - -0.08305974304676056, - -0.2106950581073761, - 0.20440764725208282, - 0.40866124629974365, - -0.04415865242481232, - -0.0870879665017128, - 0.13561517000198364, - -0.581278920173645, - -0.12769488990306854, - 0.16459180414676666, - -0.1096542477607727, - 0.15798532962799072, - 0.1000177264213562, - 0.33330217003822327, - 0.4387405514717102, - 0.22411733865737915, - -0.2745407819747925, - 0.12751775979995728, - 0.40328729152679443, - 0.4359434247016907, - -0.24036023020744324, - -10.408804893493652, - 0.059284139424562454, - -0.3258499801158905, - 0.45536357164382935, - -0.0232965387403965, - 0.02595500275492668, - -0.054355401545763016, - -0.08148865401744843, - 0.13670077919960022, - 0.0884757786989212, - -0.07574758678674698, - 0.1643379181623459, - 0.10505308955907822, - 0.32812121510505676, - -0.09117082506418228, - 0.014583997428417206, - -0.3037165701389313, - 0.2310398668050766, - -0.2008664608001709, - 0.1839390993118286, - 0.28165826201438904, - 0.4859749674797058, - -0.17795445024967194, - 0.3330017626285553, - 0.19042964279651642, - -0.30623239278793335, - -0.08145035803318024, - 0.45627644658088684, - 0.17982810735702515, - -0.5801025032997131, - 0.3906877040863037, - 0.19491854310035706, - -0.12728528678417206, - -0.08678528666496277, - 0.06506156921386719, - -0.16734302043914795, - -0.09380630403757095, - -0.07341976463794708, - 0.27803564071655273, - -0.01934148371219635, - 0.12144480645656586, - -0.38676872849464417, - 0.10603571683168411, - 0.1997334361076355, - -0.16213330626487732, - -0.3502217233181, - -0.289284348487854, - -1.619271993637085, - 0.2950405478477478, - 0.32919415831565857, - 0.41065919399261475, - 0.12482833862304688, - 0.02699369378387928, - 0.17595382034778595, - -0.40100517868995667, - 0.18345822393894196, - -0.4366806447505951, - 0.05525290220975876, - 0.1564837545156479, - -0.16911140084266663, - 0.19962048530578613, - -0.14402653276920319, - 0.1968774050474167, - -0.2110728770494461, - -0.26534682512283325, - 0.07587093114852905, - -0.11695457994937897, - 0.026978611946105957, - -0.33342570066452026, - -0.3030700385570526, - -0.4818713963031769, - -0.04801848530769348, - -0.04070287197828293, - -0.12919208407402039, - 0.4492913782596588, - 0.03736908361315727, - -0.45754700899124146, - 0.15252640843391418, - -0.012836068868637085, - 0.4537890553474426, - 0.24320483207702637, - -0.10194840282201767, - 0.1294877678155899, - -0.11859562993049622, - -0.29960423707962036, - -0.11533036828041077, - 0.12476441264152527, - 0.4657996892929077, - 0.05771089345216751, - 0.1352422833442688, - 0.046063248068094254, - 0.22695627808570862, - -0.15504573285579681, - -0.032771993428468704, - -0.42587369680404663, - 0.16432026028633118, - 0.046401187777519226, - 0.14811545610427856, - -0.0013421401381492615, - -0.10969050228595734, - -0.26509082317352295, - -0.008090192452073097, - -0.046048469841480255, - -0.4376510679721832, - -0.47963571548461914, - 0.2977203130722046, - 0.14342939853668213, - 0.06663770973682404, - 0.15862588584423065, - 0.01906299591064453, - 0.12100471556186676, - 0.06829829514026642, - 0.5001391172409058, - 0.41836392879486084, - 0.24557198584079742, - -0.10947418957948685, - -0.11788798123598099, - 0.13734070956707, - -0.38681599497795105, - 0.10978840291500092, - 0.39899158477783203, - -0.1268235296010971, - 0.2679361402988434, - 0.6849151849746704, - 0.040771715342998505, - -0.05079515278339386, - 0.9351550340652466, - -0.22082459926605225, - 0.30078235268592834, - 0.018494335934519768, - 0.0820881575345993, - -0.03792400658130646, - -0.4008147716522217, - 0.15972162783145905, - 0.30996692180633545, - -0.3325650095939636, - 0.5711717009544373, - 0.21376530826091766, - -0.4492942690849304, - -0.04359077662229538, - -0.42370182275772095, - 0.436312198638916, - 0.23858344554901123, - 0.1840917468070984, - -0.1814172863960266, - -0.43209129571914673, - -0.2831170856952667, - 0.09883280098438263, - -0.4379417896270752, - -0.24989798665046692, - -0.2201814204454422, - 0.19447149336338043, - 0.1445395052433014, - -0.3734373450279236, - 0.37112027406692505, - -0.0038576405495405197, - -0.178182914853096, - -0.11725573241710663, - -0.3616572618484497, - -0.07877121865749359, - 0.16841274499893188, - 0.6709095239639282, - 0.14347845315933228, - -0.09105345606803894, - -0.04662903770804405, - 0.3231685161590576, - -0.0838908851146698, - 0.02553015574812889, - 0.05877991020679474, - 0.004997309297323227, - -0.5508643388748169, - 0.07590149343013763, - 0.09320506453514099, - -0.5048785209655762, - -0.19545148313045502, - -0.40843304991722107, - 0.1287948340177536, - -0.029411453753709793, - -0.03402042016386986, - 0.18018892407417297, - 0.20737633109092712, - 0.11560578644275665, - -0.03422579914331436, - -0.2287130504846573, - 0.03644973784685135, - 0.2337237298488617, - 0.14507167041301727, - 0.22508332133293152, - -0.28991416096687317, - -0.3894745111465454, - -0.17763294279575348, - 0.18675264716148376, - -0.29292547702789307, - -0.10768139362335205, - 0.10168568789958954, - 0.1762615591287613, - -0.36874812841415405, - 0.21619392931461334, - -0.18898330628871918, - 0.010760132223367691, - -0.3956816494464874, - 0.06285065412521362, - 0.42663949728012085, - -0.22983811795711517, - 0.0957484319806099, - -0.08724022656679153, - 0.21848884224891663, - 0.14141245186328888, - -0.26949915289878845, - 0.08861592411994934, - -0.1704709529876709 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_031.json b/src/benchmark/output/results/results_graph_031.json deleted file mode 100644 index c1f1346..0000000 --- a/src/benchmark/output/results/results_graph_031.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 73-year-old male with a history of situs inversus totalis (SIT), ex-smoking, mild chronic obstructive pulmonary disease, type 2 diabetes mellitus, dyslipidemia, peptic ulcer disease, gastroesophageal reflux disease, diverticulosis, and colonic polyps.\n\n**Initial Presentation:**\nThe patient presented with fatigue and weight loss. This was his initial presentation, but the exact onset date is unknown.\n\n**Imaging Findings:**\nA CT thorax, abdomen, and pelvis revealed a 20x20 mm nodule in the right upper lobe with a 7x4 mm central solid component, and an 8 mm ground glass opacity with a central solid dot in the right lower lobe. No lymphadenopathy was detected.\n\n**PET Scan Results:**\nA PET scan showed mild FDG uptake in the solid component of the nodule and some calcification in mediastinal lymph nodules, with no obvious nodal or distant metastasis.\n\n**Diagnosis:**\nThe patient was diagnosed with stage 1a (cT1cN0M0) lung adenocarcinoma.\n\n**Treatment:**\nThe patient underwent VATS right upper lobectomy and right lower lobe superior segmentectomy. A wedge resection of the lower lobe nodule was also performed, which confirmed adenocarcinoma with no lymph node involvement.\n\n**Histology Results:**\nHistology results revealed moderately differentiated adenocarcinoma pT1cN0 in the right upper lobe and moderately differentiated adenocarcinoma pT1aN0 in the right lower lobe with clear margins for both.\n\n**Post-Operative Care:**\nThe patient was discharged post-operative Day 9. Two weeks post-discharge, he was reviewed and planned for surveillance with his respiratory physician. A post-operative CT thorax, abdomen, pelvis was performed.\n\n**Outcome:**\nThe patient has been doing well since discharge. He is currently undergoing surveillance for any potential recurrence of the cancer. The patient's overall prognosis appears to be good given the stage of the disease at diagnosis and the successful surgical resection of the tumors.\n\nIn summary, this 73-year-old male patient presented with fatigue and weight loss due to a lung nodule discovered on CT thorax, abdomen, and pelvis. He was diagnosed with stage 1a (cT1cN0M0) lung adenocarcinoma and underwent successful surgical resection of the tumors. The patient has been doing well since discharge and is currently undergoing surveillance for any potential recurrence of the cancer.", - "bertscore": { - "precision": [ - 0.7101747393608093 - ], - "recall": [ - 0.6973774433135986 - ], - "f1": [ - 0.7037178874015808 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 9, - "edge_count": 8, - "avg_in_degree": 0.8888888888888888, - "density": 0.1111111111111111 - }, - "trajectory_embedding": [ - 0.3697826564311981, - 0.19609995186328888, - -0.1348923295736313, - 0.03747766464948654, - 0.12103570997714996, - 0.073272705078125, - 0.015903718769550323, - 0.2722088396549225, - 0.2596035897731781, - -0.4026437997817993, - -0.28131622076034546, - -0.03189341723918915, - -0.7069400548934937, - -0.026304425671696663, - -0.28115373849868774, - 0.34657856822013855, - -0.022818274796009064, - 0.41499125957489014, - 0.028753221035003662, - -0.30176809430122375, - -0.49341854453086853, - 0.1066407784819603, - -0.39469826221466064, - -0.075465127825737, - 0.3288094997406006, - -0.14417067170143127, - 0.42869219183921814, - 0.47333696484565735, - 0.2780090868473053, - 0.2511032223701477, - 0.10974785685539246, - 0.006162088830024004, - 0.21304868161678314, - 0.18376584351062775, - -0.4152108430862427, - 0.3690645396709442, - 0.2104286402463913, - 0.35462090373039246, - -0.10598008334636688, - 0.06962116807699203, - -0.13885270059108734, - 0.09608525782823563, - 0.7915133833885193, - 0.3106226325035095, - 0.5643410682678223, - -0.79161137342453, - 0.05989881977438927, - 0.4865630567073822, - -0.5408673286437988, - -0.3450809717178345, - 0.014920915476977825, - 0.7476895451545715, - 0.5345423221588135, - -0.1588098704814911, - 0.5071175694465637, - -0.16952362656593323, - -0.4304543137550354, - -0.09673159569501877, - -0.1853494495153427, - 0.030143283307552338, - 0.006896132603287697, - -0.1595173180103302, - 0.2974131405353546, - -0.13517862558364868, - -0.25843337178230286, - -0.1148691177368164, - -0.015452567487955093, - 0.17032665014266968, - -0.11313072592020035, - -0.4675641655921936, - -0.2277473658323288, - -0.1495341658592224, - 0.10225360840559006, - 0.1509607881307602, - 0.16223299503326416, - -0.23015539348125458, - 0.4384829103946686, - 0.1105680987238884, - 0.21523992717266083, - 0.21277518570423126, - 0.013331320136785507, - -0.25399333238601685, - 0.09425727277994156, - 0.30836930871009827, - -0.30080026388168335, - 0.06872282177209854, - -0.19270582497119904, - -0.19294553995132446, - -0.22429654002189636, - 0.18260528147220612, - 0.22292597591876984, - -0.2975671589374542, - -0.12205103039741516, - -0.15385442972183228, - 0.15382598340511322, - 0.21923142671585083, - 0.3041161894798279, - 0.3964725732803345, - 0.8807991743087769, - 0.01354086585342884, - 0.154620960354805, - 0.10139217972755432, - 0.2588009834289551, - 0.06887999176979065, - 0.452123761177063, - -0.1524965763092041, - 0.17381919920444489, - -0.49079883098602295, - 0.1634930968284607, - 0.47645384073257446, - 0.0257046427577734, - -0.013913831673562527, - -0.09975789487361908, - -0.2595967948436737, - 0.1118735745549202, - 0.135367751121521, - -0.047593872994184494, - 0.24855194985866547, - 0.1982676386833191, - -0.42636406421661377, - -0.19789528846740723, - 0.09132948517799377, - 0.3202555775642395, - 0.21789008378982544, - -0.46170881390571594, - -0.026089169085025787, - -0.22087202966213226, - -0.04839082062244415, - 0.07240244001150131, - 0.04677942767739296, - -0.5017255544662476, - -0.21070048213005066, - 0.04474000632762909, - 0.20990708470344543, - -0.06900618970394135, - 0.3617778420448303, - -0.4104064106941223, - -0.030865537002682686, - -1.1198902130126953, - 0.18648114800453186, - -0.404807448387146, - -0.07363586127758026, - -0.04891021549701691, - -0.3701968789100647, - -0.29994267225265503, - -0.1886274218559265, - -0.23561613261699677, - 0.2366444319486618, - -0.10943439602851868, - -0.14722387492656708, - -0.021298183128237724, - 0.12871962785720825, - 0.1497456133365631, - 0.3462465703487396, - 0.10042071342468262, - 0.17111992835998535, - -0.041005540639162064, - 0.22981469333171844, - 0.17135845124721527, - -0.16482731699943542, - 0.014616304077208042, - 0.2689073383808136, - 0.12932810187339783, - 0.07366572320461273, - -0.19483612477779388, - -0.6876255869865417, - 0.26886752247810364, - -0.2972082793712616, - 0.12204360961914062, - 0.1963283121585846, - -0.17396432161331177, - 0.0812365859746933, - -0.37885692715644836, - 0.4865362346172333, - 0.0995936393737793, - 0.24487775564193726, - 0.057142965495586395, - -0.1220589205622673, - -0.047600917518138885, - 0.2250843644142151, - 0.038691334426403046, - -0.16024558246135712, - 0.6678360104560852, - 0.23763884603977203, - -0.3317858576774597, - 0.08275309205055237, - 0.5023273825645447, - -0.03461580350995064, - -0.04279591515660286, - -0.07906942069530487, - 0.6798598766326904, - -0.3628486692905426, - 0.35476064682006836, - -0.5480861663818359, - -0.13933059573173523, - 0.173926442861557, - -0.1268218755722046, - -0.2631697356700897, - 0.12309087812900543, - -0.18449264764785767, - 0.0796835720539093, - 0.09406445920467377, - -0.40906843543052673, - 0.21131907403469086, - 0.1542060673236847, - -0.10647586733102798, - 0.28829875588417053, - 0.003166377544403076, - 0.06642863154411316, - -0.1738675981760025, - -0.25272136926651, - 0.25918614864349365, - -0.0876401960849762, - 0.25480931997299194, - 0.10384929925203323, - -0.29522502422332764, - 0.19021882116794586, - -0.12200101464986801, - -0.033454928547143936, - 0.14165470004081726, - -0.14576798677444458, - -0.16690288484096527, - 0.2550133168697357, - -0.04218902811408043, - -0.47100120782852173, - 0.08485686779022217, - 0.13086377084255219, - 0.33648252487182617, - 0.2094462513923645, - -0.19004136323928833, - 0.10917697846889496, - -0.3851611018180847, - 0.31429699063301086, - -0.0831984132528305, - -0.2862119674682617, - -0.2248259335756302, - 0.2360478788614273, - -0.1153235137462616, - -0.03244773671030998, - 0.4338131844997406, - -0.3013601005077362, - -0.16717660427093506, - 0.13908769190311432, - -0.2965276837348938, - -0.08178984373807907, - -0.2240011990070343, - 0.06272008270025253, - 0.29147112369537354, - 0.19646257162094116, - 0.17573793232440948, - 0.06264994293451309, - -0.2110782265663147, - 0.12087108194828033, - -0.278161883354187, - -0.36375921964645386, - -0.35102102160453796, - -0.08151581883430481, - -0.18229278922080994, - -0.5768169164657593, - 0.053561095148324966, - 0.01457303948700428, - -0.11168766021728516, - 0.11913781613111496, - -0.34440216422080994, - -0.11630577594041824, - 0.07615706324577332, - -0.010458771139383316, - 0.08163152635097504, - -0.21560309827327728, - 0.283636212348938, - -0.19528450071811676, - -0.2667553424835205, - -0.2961684763431549, - 0.054365918040275574, - 0.1612497866153717, - 0.0566960908472538, - -0.22777888178825378, - 0.1014561802148819, - 0.1512075811624527, - -0.47853660583496094, - -0.16776055097579956, - 0.1422044038772583, - -0.24532034993171692, - 0.16442079842090607, - -0.0743652805685997, - 0.15314476191997528, - 0.5133076310157776, - 0.07968214154243469, - 0.21654029190540314, - 0.39112842082977295, - 0.5559797286987305, - 0.028153071179986, - -0.0268121175467968, - 0.01654326356947422, - -0.11304739117622375, - -0.09591708332300186, - -0.4868406653404236, - 0.24561132490634918, - 0.1806669533252716, - 0.07237409055233002, - 0.005553593393415213, - 0.19746248424053192, - 0.07214467972517014, - -0.26365840435028076, - -0.003919541835784912, - 0.5629309415817261, - 0.25785601139068604, - 0.12197831273078918, - 0.18856053054332733, - 0.2906949818134308, - 0.32285845279693604, - -0.045042648911476135, - -0.10527695715427399, - 0.09205750375986099, - -0.1679009348154068, - -0.22533372044563293, - -0.0414116308093071, - 0.12850721180438995, - 0.3372979760169983, - -0.2069520652294159, - -0.10942669957876205, - 0.05569581314921379, - -0.16978605091571808, - -0.019144952297210693, - -0.08256767690181732, - -0.017157629132270813, - 0.007270080968737602, - -0.23025915026664734, - 0.15898452699184418, - -0.036597371101379395, - -0.16704393923282623, - 0.28797948360443115, - -0.3519660234451294, - -0.2639324963092804, - 0.33166834712028503, - -0.1131729781627655, - -0.4299337863922119, - 0.4460394084453583, - -0.1846965253353119, - 0.026455754414200783, - 0.35784217715263367, - -0.22514070570468903, - 0.041314058005809784, - -0.006925428751856089, - 0.2616634666919708, - -0.055290110409259796, - 0.05971350148320198, - -0.12333334982395172, - -0.09827305376529694, - 0.06603017449378967, - 0.6271012425422668, - 0.12050451338291168, - 0.0847301185131073, - 0.5108376145362854, - 0.19565506279468536, - -0.28178346157073975, - 0.032268740236759186, - -0.0968635156750679, - 0.31165340542793274, - -0.08788338303565979, - -0.09172070771455765, - -0.14769496023654938, - 0.26150524616241455, - 0.00858307909220457, - -0.33132460713386536, - -0.04353092610836029, - 0.05599501356482506, - -0.06829975545406342, - -0.009204136207699776, - 0.3380727767944336, - 0.2527041435241699, - -0.09022273123264313, - 0.5870925188064575, - -0.02195315808057785, - -0.0484466589987278, - 0.4092849791049957, - -0.24631285667419434, - 0.16258841753005981, - -0.04581856355071068, - -0.27127906680107117, - -0.36692750453948975, - 0.05404847115278244, - -0.2380269169807434, - -0.08009808510541916, - 0.0050226785242557526, - -0.02744632214307785, - 0.13696640729904175, - -0.1697227954864502, - 0.13261198997497559, - 0.02653009258210659, - 0.14808712899684906, - 0.08409467339515686, - 0.3072088062763214, - -0.09232619404792786, - -0.286288857460022, - 0.17954595386981964, - 0.06369107216596603, - 0.09335431456565857, - -0.1622895896434784, - -0.06356772780418396, - -0.18063616752624512, - 0.36914798617362976, - -0.07457288354635239, - -0.01797143928706646, - 0.12127768993377686, - -0.15831121802330017, - -0.22136421501636505, - -0.4062422513961792, - -0.0074943238869309425, - -0.1363530457019806, - -0.09721151739358902, - -0.018899494782090187, - 0.14755932986736298, - -0.15040451288223267, - -0.07477488368749619, - 0.05319446325302124, - 0.1285730004310608, - 0.3859412670135498, - -0.12196008116006851, - -0.12442295998334885, - 0.3023284375667572, - 0.141222283244133, - 0.27504852414131165, - -0.3276461362838745, - 0.2144664227962494, - 0.0781470239162445, - -0.17761099338531494, - -0.10660935193300247, - 0.04526242986321449, - -0.41993606090545654, - -0.11111334711313248, - 0.223979651927948, - 0.24687279760837555, - -0.09355781227350235, - -0.029234088957309723, - 0.17868539690971375, - 0.3505677282810211, - -0.3152255117893219, - -0.15962104499340057, - 0.24638541042804718, - 0.10381578654050827, - 0.33139118552207947, - -0.05232090502977371, - -0.39500436186790466, - -0.2516057789325714, - -0.08784255385398865, - -0.3178817331790924, - 0.23436444997787476, - 0.2935011386871338, - -0.05015670508146286, - -0.2211654782295227, - -0.015363761223852634, - -0.03306214511394501, - -0.16824477910995483, - 0.3149333894252777, - -0.1606009602546692, - 0.23665255308151245, - 0.03452126681804657, - -0.33757129311561584, - -0.13267451524734497, - -0.2164536565542221, - -0.2687220573425293, - -0.33655524253845215, - 0.30852052569389343, - 0.2962885797023773, - -0.22015228867530823, - 0.011474956758320332, - 0.127544105052948, - -0.2829132080078125, - -0.1305532157421112, - 0.14067868888378143, - -0.21961259841918945, - 0.4276374280452728, - -0.04614878445863724, - -0.3132982552051544, - 0.19720570743083954, - -0.128032386302948, - 0.08820375055074692, - 0.1767762154340744, - 0.10899746417999268, - 0.3704427480697632, - 0.13740913569927216, - 0.0432010143995285, - 0.5722969770431519, - 0.1315174400806427, - 0.021352823823690414, - 0.29296743869781494, - -0.05699295550584793, - 0.17972281575202942, - -0.2809816598892212, - -0.12354474514722824, - 0.37016671895980835, - -0.3919154703617096, - 0.049939218908548355, - 0.11978212743997574, - 0.19037456810474396, - -0.31362950801849365, - -0.3697395622730255, - 0.10934705287218094, - 0.06326592713594437, - -0.05997639149427414, - -0.1671193540096283, - -0.2805365324020386, - 0.10457703471183777, - -0.38927575945854187, - -0.013289873488247395, - 0.20404976606369019, - 0.43132284283638, - 0.11240509152412415, - 0.1850920468568802, - -0.2577589750289917, - -0.4615776836872101, - 0.16118377447128296, - 0.2580166757106781, - 0.1053452268242836, - 0.059493500739336014, - -0.19789452850818634, - 0.40720900893211365, - 0.36573272943496704, - 0.06970306485891342, - 0.09010861814022064, - 0.08398407697677612, - -0.06769707798957825, - 0.053998302668333054, - 0.09437353163957596, - -0.15221920609474182, - -0.02671043761074543, - -0.2869802713394165, - 0.1573699563741684, - -0.28224503993988037, - -0.24204403162002563, - 0.20191949605941772, - -0.25763627886772156, - -0.4137832224369049, - -0.2294294834136963, - 0.12207619100809097, - -0.16805914044380188, - -0.19716721773147583, - 0.3200203478336334, - 0.30526047945022583, - 0.04732832685112953, - -0.19835160672664642, - 0.07490584254264832, - -0.6314283013343811, - -0.46789830923080444, - 0.21697528660297394, - -0.04023648798465729, - -0.16160906851291656, - -0.037307847291231155, - 0.5300576686859131, - 0.5295775532722473, - 0.2020769864320755, - -0.4169057309627533, - -0.09204494953155518, - 0.3661491274833679, - 0.2549128830432892, - -0.21655143797397614, - -10.661651611328125, - -0.18448513746261597, - -0.27032437920570374, - 0.5609920024871826, - -0.36923301219940186, - 0.08443209528923035, - 0.222934752702713, - 0.015099819749593735, - 0.1783679723739624, - 0.07984213531017303, - -0.16619889438152313, - -0.1300245225429535, - 0.1491018384695053, - 0.32230082154273987, - 0.018557947129011154, - -0.21569649875164032, - -0.3123495578765869, - 0.09861168265342712, - -0.03183881938457489, - 0.09618925303220749, - 0.20904308557510376, - 0.36614087224006653, - -0.18992938101291656, - 0.3643651604652405, - 0.15157292783260345, - -0.2008931189775467, - -0.09050384163856506, - 0.5083619952201843, - 0.23062430322170258, - -0.420088529586792, - 0.26889216899871826, - 0.20210595428943634, - -0.10068056732416153, - 0.03269609436392784, - 0.02042694389820099, - -0.0509195551276207, - -0.1229524314403534, - 0.08551332354545593, - 0.3391815721988678, - -0.10198480635881424, - 0.096035897731781, - -0.2422686666250229, - 0.2294788360595703, - 0.19653598964214325, - -0.17017096281051636, - -0.40807655453681946, - -0.21238118410110474, - -1.5663397312164307, - 0.3868834376335144, - 0.22654989361763, - 0.2625182867050171, - 0.06963644921779633, - 0.2473987191915512, - 0.17078271508216858, - -0.38398703932762146, - 0.12305010855197906, - -0.22779427468776703, - 0.13590170443058014, - -0.010771185159683228, - -0.06551637500524521, - 0.09049993008375168, - -0.19770443439483643, - 0.4968249499797821, - -0.05854060873389244, - -0.18058878183364868, - 0.09751717001199722, - 0.03404564410448074, - -0.09314293414354324, - -0.2157525271177292, - -0.5735065937042236, - -0.48243311047554016, - -0.02728729136288166, - -0.1418277621269226, - -0.03040929324924946, - 0.42933765053749084, - -0.09354189783334732, - -0.44926345348358154, - 0.2609744668006897, - 0.04126746952533722, - 0.23501208424568176, - 0.20551574230194092, - -0.0031080294866114855, - 0.131047785282135, - -0.1312607228755951, - -0.19768232107162476, - -0.07466723769903183, - -0.025992387905716896, - 0.40222692489624023, - 0.00854059774428606, - -0.07001695781946182, - 0.03517581522464752, - 0.4622504413127899, - -0.13522356748580933, - -0.34945279359817505, - -0.3814668357372284, - 0.05581161752343178, - -0.030482010915875435, - 0.12512509524822235, - 0.020747952163219452, - -0.29198697209358215, - -0.16342060267925262, - -0.04457448422908783, - 0.05434617027640343, - -0.5794942378997803, - -0.3400299549102783, - 0.31448426842689514, - 0.03418111801147461, - 0.3196766674518585, - 0.025876127183437347, - -0.12685047090053558, - -0.10794440656900406, - -0.09137366712093353, - 0.3698883056640625, - 0.6778817176818848, - 0.34457525610923767, - -0.07404451072216034, - -0.042727094143629074, - -0.16562753915786743, - -0.2712450921535492, - 0.04909805208444595, - 0.41542065143585205, - -0.020283987745642662, - 0.23293539881706238, - 0.6158717274665833, - 0.041186749935150146, - -0.04701481759548187, - 1.0431015491485596, - -0.3643035590648651, - 0.17415982484817505, - -0.09588183462619781, - 0.08445242792367935, - -0.19100815057754517, - -0.35804712772369385, - 0.05261896550655365, - 0.5908573865890503, - -0.2958029508590698, - 0.6930728554725647, - 0.13267165422439575, - -0.44082382321357727, - -0.04386676102876663, - -0.25435906648635864, - 0.5988790988922119, - 0.2634618580341339, - 0.22310441732406616, - -0.07704561203718185, - -0.32553979754447937, - -0.324832946062088, - -0.1488925814628601, - -0.34300461411476135, - -0.4031631648540497, - -0.24860304594039917, - 0.12848740816116333, - 0.004983303602784872, - -0.26557403802871704, - 0.461078017950058, - 0.1794387698173523, - -0.20780491828918457, - -0.28017255663871765, - -0.4313103258609772, - 0.07057425379753113, - 0.27453720569610596, - 0.6395695209503174, - 0.12648865580558777, - 0.05585707724094391, - -0.12713000178337097, - 0.13493968546390533, - -0.20965589582920074, - 0.22707483172416687, - 0.008347688242793083, - -0.03802194818854332, - -0.6027443408966064, - 0.19536246359348297, - 0.20065119862556458, - -0.32646068930625916, - -0.24204999208450317, - -0.2438545972108841, - -0.023013750091195107, - 0.1704641729593277, - -0.07539540529251099, - 0.1288243532180786, - 0.3757937550544739, - -0.12607216835021973, - -0.03299457207322121, - -0.18554465472698212, - 0.04713656008243561, - 0.20602501928806305, - 0.2736959457397461, - 0.06762748956680298, - -0.2343052476644516, - -0.34182754158973694, - -0.5501744151115417, - 0.2666982412338257, - -0.24952292442321777, - -0.24963654577732086, - 0.14439696073532104, - 0.21281787753105164, - -0.3710671067237854, - 0.009524781256914139, - -0.17009711265563965, - -0.09047951549291611, - -0.17192065715789795, - 0.30960410833358765, - 0.45647627115249634, - -0.22552227973937988, - 0.23416072130203247, - -0.16011345386505127, - 0.18875974416732788, - 0.19740884006023407, - -0.16878022253513336, - 0.18544641137123108, - -0.22281882166862488 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_032.json b/src/benchmark/output/results/results_graph_032.json deleted file mode 100644 index 897bdfa..0000000 --- a/src/benchmark/output/results/results_graph_032.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 69-year-old male who presented to the Affiliated Hospital of Traditional Chinese Medicine of Southwest Medical University (SWMU) with chest pain. He has a history of coronary heart disease (CHD), gastroesophageal reflux disease (GERD), and pulmonary emphysema.\n\n**Timeline of Diagnoses:**\n\n1. **Step 1:** The patient presented to the hospital with chest pain affecting the subxiphoid process and posterior back, which lasted for several minutes.\n2. **Step 2:** Medical history revealed CHD, GERD, and pulmonary emphysema.\n3. **Step 3:** Current medications included indobufen, clopidogrel bisulfate, metoprolol succinate sustained-release, rosuvastatin calcium, vonoprazan fumarate, and rebamipide. The patient had a history of smoking for 30 years but had abstained for 20 years.\n4. **Step 4:** Physical examination revealed a palpably enlarged lymph node on the left supraclavicular bone, approximately 1.5 x 1.5 cm in size, hard, with poor mobility, ill-defined margins, and no tenderness. Hyperresonance on percussion sounds and weakened respiratory sounds without rales were also noted.\n\n**Timeline of Treatments:**\n\n1. **Step 3:** The patient's medications, social history, and physical exam were reviewed.\n2. **Step 4:** Physical exam and chest CT were performed.\n\n**Outcome:**\nThe patient underwent a chest CT scan, which revealed a nodule in the anterior segment of the upper lobe of the right lung. Further evaluation is needed to determine the nature and significance of this finding.\n\n**Conclusion:**\nThis case highlights the importance of thorough medical history review, physical examination, and imaging studies in diagnosing and managing complex conditions. The patient's history of smoking and CHD increases his risk for lung cancer, making further evaluation necessary to determine the cause of the nodule found on the chest CT scan.", - "bertscore": { - "precision": [ - 0.6696982383728027 - ], - "recall": [ - 0.7013179659843445 - ], - "f1": [ - 0.6851434111595154 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 5, - "edge_count": 4, - "avg_in_degree": 0.8, - "density": 0.2 - }, - "trajectory_embedding": [ - 0.31901928782463074, - -0.06873661279678345, - -0.07510910928249359, - 0.041425421833992004, - 0.10403101146221161, - 0.06021340936422348, - -0.02724645473062992, - 0.03207524120807648, - 0.42073389887809753, - -0.23793715238571167, - -0.3827399015426636, - 0.14158771932125092, - -0.6148425936698914, - -0.06542666256427765, - -0.16255712509155273, - 0.10072606801986694, - 0.03369670733809471, - -0.07027815282344818, - 0.1752215176820755, - 0.049448203295469284, - -0.2770465314388275, - 0.108904168009758, - -0.5084561109542847, - -0.11419861018657684, - 0.24694745242595673, - -0.17120061814785004, - 0.14972566068172455, - 0.6505931615829468, - 0.11529241502285004, - 0.5213634371757507, - -0.07934305816888809, - 0.07920245826244354, - -0.09716421365737915, - 0.10104615986347198, - -0.032815515995025635, - 0.20294493436813354, - 0.23475214838981628, - 0.35452955961227417, - -0.10215995460748672, - 0.02972644940018654, - -0.04981912672519684, - -0.023525863885879517, - 0.654321014881134, - 0.4688377380371094, - 0.5302110910415649, - -0.8168509006500244, - 0.03447433561086655, - 0.41577282547950745, - -0.4940091371536255, - -0.22192540764808655, - 0.10138699412345886, - 0.7037989497184753, - 0.6147356033325195, - -0.14592483639717102, - 0.5111383199691772, - -0.2421257644891739, - -0.3584728240966797, - -0.3563183546066284, - -0.29119664430618286, - 0.13465511798858643, - -0.2746813893318176, - -0.19388455152511597, - 0.276691734790802, - -0.05982865393161774, - -0.18148016929626465, - -0.03530311584472656, - 0.010457666590809822, - -0.05750156566500664, - 0.026613272726535797, - -0.3903506398200989, - -0.16324354708194733, - -0.16182653605937958, - 0.02362862043082714, - 0.01981363259255886, - 0.29526814818382263, - -0.16013213992118835, - 0.4840637743473053, - -0.048243582248687744, - -0.024182239547371864, - 0.196221724152565, - -0.050333570688962936, - 0.0589381605386734, - 0.07026602327823639, - 0.3201891779899597, - -0.3432542383670807, - 0.05437317490577698, - -0.01878480240702629, - -0.14999747276306152, - -0.32727909088134766, - 0.2216576784849167, - -0.1523689180612564, - -0.21019330620765686, - 0.013487542048096657, - -0.23366421461105347, - 0.22888334095478058, - 0.025260623544454575, - 0.16538473963737488, - 0.3983873426914215, - 1.0130972862243652, - -0.079024538397789, - 0.07586605846881866, - 0.19555824995040894, - 0.3432677984237671, - -0.12984830141067505, - 0.3021513819694519, - 0.04468041658401489, - 0.11931052058935165, - -0.6490710377693176, - 0.10944951325654984, - 0.4019078016281128, - -0.15469597280025482, - -0.13398206233978271, - -0.031180569902062416, - -0.5864899754524231, - 0.15030793845653534, - -0.06635363399982452, - -0.040003806352615356, - -0.06883411854505539, - 0.21152912080287933, - -0.3724733889102936, - -0.1864021122455597, - 0.07131930440664291, - 0.519938588142395, - 0.29023781418800354, - -0.49585020542144775, - 0.28815993666648865, - -0.22854450345039368, - 0.17222079634666443, - -0.18495525419712067, - 0.3431716561317444, - -0.7004998922348022, - -0.21973738074302673, - -0.17415516078472137, - 0.24823875725269318, - -0.10326783359050751, - 0.39230456948280334, - -0.4226386547088623, - 0.1118808314204216, - -1.1151622533798218, - 0.13966596126556396, - -0.3700428307056427, - -0.17851392924785614, - 0.06638769805431366, - -0.42746955156326294, - -0.18691043555736542, - -0.08990904688835144, - 0.03466825187206268, - 0.11395705491304398, - -0.08982399106025696, - -0.18071740865707397, - -0.27829837799072266, - -0.14771707355976105, - 0.32573699951171875, - 0.38914981484413147, - 0.1881484091281891, - 0.1151764839887619, - 0.3587973117828369, - 0.2974035143852234, - 0.18427006900310516, - 0.12693241238594055, - -0.07832752168178558, - 0.3173922300338745, - 0.053240519016981125, - -0.008220195770263672, - -0.011868009343743324, - -0.7103482484817505, - 0.19825772941112518, - -0.12957699596881866, - -0.01669127866625786, - 0.15802323818206787, - -0.10869075357913971, - 0.10279081761837006, - -0.45850977301597595, - 0.7589498162269592, - 0.16491106152534485, - 0.31608113646507263, - 0.015894640237092972, - -0.039057657122612, - 0.2441076934337616, - 0.25736820697784424, - 0.08419553935527802, - -0.026218079030513763, - 0.7656631469726562, - 0.05106762796640396, - -0.1574293076992035, - 0.52489173412323, - 0.24616871774196625, - -0.15964049100875854, - -0.10285046696662903, - 0.013744410127401352, - 0.4713722765445709, - -0.33762165904045105, - 0.38645416498184204, - -0.1792205274105072, - 0.02810532972216606, - 0.11949269473552704, - -0.15384134650230408, - -0.14651963114738464, - 0.03717249631881714, - 0.06352432072162628, - 0.2992584705352783, - 0.055698130279779434, - -0.258513480424881, - 0.10029599070549011, - -0.020157072693109512, - -0.03132732957601547, - 0.12127048522233963, - -0.04693116992712021, - 0.16063626110553741, - 0.08789249509572983, - -0.07846181094646454, - 0.11184590309858322, - 0.07003507018089294, - 0.23305806517601013, - -0.010940074920654297, - -0.2513292729854584, - 0.26107895374298096, - -0.23792260885238647, - -0.340495228767395, - 0.28292253613471985, - -0.185163676738739, - -0.04762949422001839, - 0.10594487935304642, - -0.05557563528418541, - -0.40914273262023926, - 0.16932784020900726, - 0.16747762262821198, - 0.27084600925445557, - -0.03136235475540161, - -0.025791890919208527, - 0.04580962657928467, - -0.28170710802078247, - 0.1609799563884735, - -0.26000186800956726, - -0.11207186430692673, - -0.26210376620292664, - 0.19968774914741516, - -0.40408483147621155, - -0.08123278617858887, - 0.1677221953868866, - -0.2081177830696106, - -0.26320770382881165, - -0.07736864686012268, - -0.3725631535053253, - -0.2142876833677292, - -0.3320339322090149, - 0.18860489130020142, - 0.33505138754844666, - 0.04624999687075615, - 0.4258134663105011, - 0.18571767210960388, - -0.12123902142047882, - 0.140569806098938, - -0.21558043360710144, - -0.12647293508052826, - -0.36641034483909607, - -0.058049414306879044, - 0.107510507106781, - -0.42181748151779175, - 0.1989029049873352, - -0.024110890924930573, - -0.17287321388721466, - 0.028216924518346786, - -0.08817070722579956, - -0.09503797441720963, - 0.005002222955226898, - -0.02745657227933407, - 0.1171465516090393, - -0.23263797163963318, - 0.017676427960395813, - -0.4095528721809387, - -0.22244074940681458, - 0.02283354476094246, - -0.05719910189509392, - 0.022143319249153137, - -0.03825162351131439, - -0.1597229242324829, - 0.14725947380065918, - 0.17763853073120117, - -0.48516416549682617, - -0.44427207112312317, - 0.10257123410701752, - -0.25081267952919006, - 0.4184616506099701, - -0.03224286437034607, - 0.2632615268230438, - 0.1174570769071579, - -0.02164474129676819, - -0.0622304305434227, - 0.7388560771942139, - 0.6303247213363647, - -0.026959583163261414, - -0.12069745361804962, - -0.020328955724835396, - 0.19767534732818604, - -0.0192244965583086, - -0.3345752954483032, - 0.3846442699432373, - 0.036352336406707764, - 0.01976083777844906, - 0.2987860143184662, - 0.23754245042800903, - 0.10463308542966843, - -0.36536040902137756, - -0.06661426275968552, - 0.5003076791763306, - 0.11204751580953598, - -0.06361961364746094, - -0.0443720668554306, - 0.5218935608863831, - 0.4692184329032898, - -0.16687951982021332, - -0.01803606003522873, - 0.019774936139583588, - -0.12256016582250595, - -0.04645782709121704, - -0.09527778625488281, - 0.22914442420005798, - 0.26944583654403687, - -0.0707894116640091, - -0.10994279384613037, - 0.052737362682819366, - -0.0715610682964325, - -0.09134906530380249, - -0.2871793210506439, - -0.07128554582595825, - 0.09794594347476959, - 0.010591771453619003, - 0.3954714834690094, - -0.17577025294303894, - 0.014565298333764076, - 0.3707349896430969, - -0.2658890187740326, - -0.07103350758552551, - 0.05772377550601959, - -0.03818207606673241, - -0.3669252097606659, - 0.3240475654602051, - -0.11130612343549728, - 0.016438696533441544, - 0.3753241300582886, - 0.0589669793844223, - -0.30514559149742126, - -0.1969059705734253, - 0.310879111289978, - -0.2583921551704407, - -0.20053155720233917, - -0.0656154677271843, - 0.0874486118555069, - 0.23680388927459717, - 0.5353515148162842, - 0.2315962314605713, - 0.16554395854473114, - 0.5056072473526001, - -0.16681277751922607, - -0.42593732476234436, - -0.011260956525802612, - 0.25313758850097656, - 0.19494472444057465, - -0.16552063822746277, - -0.30942314863204956, - -0.24936050176620483, - 0.14644652605056763, - 0.10212776809930801, - -0.029376449063420296, - 0.09727105498313904, - 0.07646553963422775, - 0.07665490359067917, - -0.0021072812378406525, - 0.3371374011039734, - 0.1432780921459198, - 0.06273528188467026, - 0.47100958228111267, - 0.08163383603096008, - -0.1742517501115799, - 0.30541446805000305, - -0.2701675593852997, - 0.26579612493515015, - -0.3453294634819031, - -0.24930059909820557, - -0.6306203603744507, - -0.01980091817677021, - -0.19966378808021545, - -0.4072286784648895, - -0.11560195684432983, - 0.02076626941561699, - 0.15757298469543457, - -0.07391822338104248, - 0.4774482846260071, - -0.1462635099887848, - 0.19459116458892822, - 0.0862087532877922, - 0.4026694595813751, - -0.15973688662052155, - -0.3437710404396057, - 0.009544845670461655, - -0.2267424464225769, - 0.110325887799263, - -0.2685973048210144, - -0.19963884353637695, - -0.15972380340099335, - 0.4118453562259674, - -0.15173140168190002, - 0.07342594861984253, - -0.007890157401561737, - 0.16188852488994598, - -0.08706134557723999, - -0.2601938843727112, - -0.340481698513031, - -0.14193545281887054, - -0.09412144869565964, - -0.22537869215011597, - 0.28510770201683044, - -0.2375616878271103, - -0.3717593550682068, - 0.032163143157958984, - 0.24330969154834747, - 0.1416257619857788, - -0.03383931890130043, - 0.3946128487586975, - 0.2842866778373718, - 0.19652718305587769, - 0.561444103717804, - -0.11140774190425873, - 0.01464509405195713, - 0.19051522016525269, - -0.2727469503879547, - -0.06331340968608856, - 0.07671015709638596, - -0.24237670004367828, - -0.22224798798561096, - 0.015128547325730324, - 0.3326447606086731, - 0.07534894347190857, - 0.06966685503721237, - -0.07223950326442719, - 0.17058700323104858, - -0.37919026613235474, - -0.08889725804328918, - 0.5165823698043823, - 0.07086005806922913, - 0.17427489161491394, - -0.1508132368326187, - -0.4152414798736572, - -0.32862478494644165, - -0.006803622469305992, - -0.3045071065425873, - 0.01491498202085495, - 0.208179771900177, - -0.012339044362306595, - 0.02628909796476364, - 0.12644599378108978, - -0.037045639008283615, - 0.07971110939979553, - 0.04634493216872215, - -0.19514712691307068, - -0.0313543938100338, - -0.07575313746929169, - -0.3767734467983246, - -0.0790431797504425, - -0.29254603385925293, - -0.3508901596069336, - -0.2426689863204956, - 0.23144856095314026, - 0.44591692090034485, - -0.14910432696342468, - 0.14345920085906982, - 0.1253993809223175, - -0.11988916248083115, - -0.3234860301017761, - 0.10162901133298874, - -0.20588979125022888, - 0.6605067849159241, - 0.14283165335655212, - 0.015117891132831573, - 0.03932494297623634, - -0.4488176107406616, - 0.19515453279018402, - 0.1707046627998352, - 0.16789962351322174, - 0.5134960412979126, - 0.3043840825557709, - 0.1854054033756256, - 0.4214616119861603, - -0.011156835593283176, - -0.073067307472229, - 0.0846296176314354, - 0.04666614159941673, - 0.034580979496240616, - -0.16883990168571472, - -0.1929706633090973, - 0.33795231580734253, - -0.32053908705711365, - -0.036665432155132294, - 0.17124173045158386, - 0.33155956864356995, - -0.44450926780700684, - -0.41650378704071045, - -0.07482258975505829, - -0.026465918868780136, - -0.042577266693115234, - -0.26148051023483276, - -0.05456582084298134, - 0.012220002710819244, - -0.5269604325294495, - -0.1640678346157074, - 0.17817117273807526, - 0.3049543499946594, - 0.17062945663928986, - -0.11413580924272537, - -0.3721097409725189, - -0.4084639549255371, - 0.039624832570552826, - 0.3214341998100281, - -0.13019484281539917, - 0.12998466193675995, - -0.1746923327445984, - 0.19341854751110077, - 0.501987099647522, - -0.25541168451309204, - -0.017652183771133423, - -0.010129809379577637, - 0.1466699093580246, - 0.01835322380065918, - 0.1326807737350464, - 0.030926313251256943, - 0.09870509803295135, - -0.2377074956893921, - 0.22913426160812378, - -0.21471251547336578, - -0.2825811505317688, - 0.18834954500198364, - -0.19141212105751038, - -0.28168800473213196, - -0.092449851334095, - 0.35411906242370605, - -0.07519829273223877, - -0.06327962875366211, - -0.03811381012201309, - 0.23301729559898376, - 0.048592254519462585, - -0.2044372856616974, - 0.12385863810777664, - -0.603821337223053, - -0.2472725659608841, - 0.05841566249728203, - -0.10876090824604034, - 0.02708740159869194, - -0.28748613595962524, - 0.26106905937194824, - 0.5698463916778564, - 0.012055043131113052, - -0.24857690930366516, - 0.0795917734503746, - 0.19578179717063904, - 0.3489235043525696, - -0.3281130790710449, - -10.682265281677246, - 0.24149857461452484, - -0.1480393260717392, - 0.6273286938667297, - 0.049767836928367615, - 0.13487312197685242, - 0.026327304542064667, - 0.05004820227622986, - 0.15184684097766876, - 0.24111361801624298, - -0.3574290871620178, - -0.0856979638338089, - 0.5103734135627747, - 0.17785920202732086, - 0.21440613269805908, - -0.09351807087659836, - -0.2305673360824585, - 0.2536824643611908, - -0.1060873344540596, - 0.2289230227470398, - 0.22705882787704468, - 0.3493140935897827, - -0.2633153200149536, - 0.026194140315055847, - 0.1458483636379242, - -0.259848028421402, - -0.1468621790409088, - 0.6071839928627014, - 0.028506023809313774, - -0.245283305644989, - 0.29054737091064453, - 0.25279948115348816, - -0.4234558939933777, - 0.21744607388973236, - -0.0015877969563007355, - -0.1850726157426834, - -0.1644163727760315, - 0.19607970118522644, - 0.18486611545085907, - -0.2546703815460205, - 0.046555954962968826, - -0.10956630110740662, - 0.27232304215431213, - 0.1508713662624359, - -0.16051214933395386, - -0.48381662368774414, - -0.1898616999387741, - -1.4432456493377686, - 0.033755671232938766, - 0.38715770840644836, - 0.4506153464317322, - 0.13044360280036926, - 0.40230128169059753, - 0.26198381185531616, - -0.37118273973464966, - 0.009521722793579102, - -0.2983689308166504, - 0.051853545010089874, - 0.32260265946388245, - 0.035490233451128006, - 0.029804319143295288, - -0.20580467581748962, - 0.26335906982421875, - -0.35241734981536865, - -0.5159322023391724, - 0.26787441968917847, - 0.12397418916225433, - 0.0077542588114738464, - -0.2547406852245331, - -0.3756146728992462, - -0.6648401618003845, - -0.23516008257865906, - 0.021061405539512634, - 0.019538436084985733, - 0.4562411904335022, - 0.0303946640342474, - -0.46706196665763855, - 0.20491167902946472, - 0.02235298790037632, - 0.42361435294151306, - 0.1378675103187561, - 0.05528303608298302, - 0.17969520390033722, - -0.27261799573898315, - -0.13272902369499207, - -0.22804474830627441, - 0.10616742074489594, - 0.6176806688308716, - -0.05132167041301727, - -0.14003446698188782, - -0.01940801367163658, - 0.2884393334388733, - -0.025333035737276077, - -0.12371278554201126, - -0.536709725856781, - -0.06523390114307404, - -0.0724184662103653, - 0.004302803426980972, - 0.1308768391609192, - -0.12126916646957397, - -0.05126870796084404, - -0.24687057733535767, - -0.0827379822731018, - -0.6207190155982971, - -0.4931887686252594, - 0.35662826895713806, - 0.04287086799740791, - 0.13096216320991516, - 0.23947027325630188, - -0.08768056333065033, - -0.07405966520309448, - -0.04779602214694023, - 0.28993964195251465, - 0.5211508870124817, - 0.10819096118211746, - 0.004637554287910461, - 0.12184587121009827, - -0.16711540520191193, - -0.16388854384422302, - 0.13414832949638367, - 0.4492797255516052, - 0.04640644043684006, - 0.07777717709541321, - 0.5374441146850586, - 0.10666224360466003, - -0.10612273216247559, - 1.0860695838928223, - -0.34391623735427856, - 0.11400242149829865, - -0.11603549122810364, - 0.10602554678916931, - -0.15829141438007355, - -0.29849347472190857, - 0.20418284833431244, - 0.41964191198349, - -0.4592821002006531, - 0.666392982006073, - 0.40676671266555786, - -0.36509960889816284, - -0.0595320425927639, - -0.1884332299232483, - 0.45994633436203003, - 0.19988170266151428, - 0.1554863005876541, - -0.0015921173617243767, - -0.30445006489753723, - -0.3298501968383789, - -0.06287911534309387, - -0.4084981381893158, - -0.25363051891326904, - -0.30456113815307617, - 0.03184209764003754, - 0.01677740551531315, - -0.047190696001052856, - 0.30283045768737793, - 0.3425282835960388, - -0.0231991708278656, - -0.14314617216587067, - -0.4367408752441406, - -0.10428041219711304, - -0.010550908744335175, - 0.8412999510765076, - -0.21502359211444855, - -0.046728361397981644, - -0.10254352539777756, - 0.22620658576488495, - 0.05123516917228699, - 0.13363422453403473, - 0.023692796006798744, - 0.0521576926112175, - -0.2564888298511505, - 0.11777336895465851, - 0.18473951518535614, - -0.2053784728050232, - -0.11783100664615631, - -0.10538530349731445, - -0.0553748644888401, - -0.142478808760643, - -0.13517992198467255, - 0.11310669034719467, - 0.4653163552284241, - 0.054109275341033936, - 0.04067550599575043, - -0.2935832142829895, - 0.32030266523361206, - -0.06284045428037643, - 0.2936175465583801, - 0.20003129541873932, - -0.31804701685905457, - -0.34935110807418823, - -0.38812360167503357, - 0.13915327191352844, - -0.3112402558326721, - 0.07836087048053741, - 0.053346458822488785, - 0.1413704752922058, - -0.2203589826822281, - -0.11281829327344894, - -0.2894502282142639, - 0.030319860205054283, - -0.2802214026451111, - 0.23733386397361755, - 0.3179011046886444, - -0.340139240026474, - 0.1817266345024109, - -0.12433017790317535, - 0.3183010518550873, - 0.10920943319797516, - -0.3740755319595337, - 0.19223164021968842, - -0.22673405706882477 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_033.json b/src/benchmark/output/results/results_graph_033.json deleted file mode 100644 index 05c340d..0000000 --- a/src/benchmark/output/results/results_graph_033.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 66-year-old woman with no history of smoking or other medical history.\n\n**Initial Presentation (Step 1):**\nOn February 13, 2025, the patient presented to our institution with an initial presentation and imaging. A chest CT scan revealed an 18 mm nodule in the S9 region of the right lower lobe, suspected to be primary lung cancer.\n\n**Diagnosis and Treatment Planning (Steps 2-4):**\nFollowing the initial presentation, a biopsy was performed to confirm the diagnosis (Step 2). The biopsy results confirmed lung adenocarcinoma. Further staging with PET/CT was conducted to determine the extent of disease (Step 3). Preoperative imaging revealed a bronchobiliary fistula communicating with the right main bronchus below the tracheal bifurcation.\n\n**Surgical Intervention (Steps 5-7):**\nPlanned surgical intervention, including robotic thoracoscopic surgery for lobectomy, lymph node dissection, and fistula repair, was performed on February 13, 2025. The surgical team successfully ligated the bronchobiliary fistula with an absorbable thread.\n\n**Postoperative Follow-up (Steps 8-10):**\nAfter surgery, the patient was discharged without postoperative complications. Pathology showed no lymph node metastases. Follow-up imaging revealed no recurrence of lung cancer but possible fistula opening. Further follow-up imaging confirmed air in the bronchobiliary fistula.\n\n**Recanalization of the Fistula (Step 11):**\nInterpretation of subsequent imaging revealed recanalization of the bronchobiliary fistula due to hydrolysis of the absorbable thread used during initial ligation.\n\n**Outcome:**\nThe patient was diagnosed with p-T1bN0M0 stage IA2. The patient has been discharged and is under follow-up care for potential recurrence or complications related to the bronchobiliary fistula.\n\nIn summary, this patient presented with a suspected primary lung cancer diagnosis, underwent surgical intervention, and experienced postoperative complications related to the bronchobiliary fistula. Despite initial successful treatment, recanalization of the fistula was observed due to thread hydrolysis.", - "bertscore": { - "precision": [ - 0.6585608720779419 - ], - "recall": [ - 0.6755024194717407 - ], - "f1": [ - 0.6669241189956665 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": true, - "all_nodes_have_timestamps": true, - "weakly_connected_components": 1, - "node_count": 11, - "edge_count": 10, - "avg_in_degree": 0.9090909090909091, - "density": 0.09090909090909091 - }, - "trajectory_embedding": [ - 0.2997225522994995, - 0.17090150713920593, - -0.10900215804576874, - 0.02509145811200142, - 0.055551812052726746, - 0.048874031752347946, - -0.12217725068330765, - 0.34865593910217285, - 0.3681047260761261, - -0.33607274293899536, - -0.27610263228416443, - -0.04256090894341469, - -0.6373363733291626, - -0.002124435966834426, - -0.21471427381038666, - 0.3575226068496704, - -0.061674728989601135, - 0.29316145181655884, - -0.007329100277274847, - -0.338481068611145, - -0.446434885263443, - 0.12736739218235016, - -0.3065786063671112, - 0.07943716645240784, - 0.3626073896884918, - -0.11427546292543411, - 0.36102163791656494, - 0.4706002175807953, - 0.22037635743618011, - 0.2718674838542938, - 0.060059431940317154, - -0.042913660407066345, - 0.2407301366329193, - 0.03398311510682106, - -0.3496033847332001, - 0.27658167481422424, - 0.14493563771247864, - 0.41827765107154846, - -0.045093927532434464, - 0.058754757046699524, - 0.05706401169300079, - 0.06269468367099762, - 0.825115442276001, - 0.24495695531368256, - 0.4410022497177124, - -0.8883432149887085, - 0.13839922845363617, - 0.4445591866970062, - -0.4529447853565216, - -0.5545081496238708, - 0.09837093949317932, - 0.7796363830566406, - 0.5804545879364014, - -0.20938435196876526, - 0.5586570501327515, - -0.23712429404258728, - -0.24355755746364594, - -0.2589998245239258, - -0.17659364640712738, - -0.042044684290885925, - -0.1180228739976883, - -0.21488572657108307, - 0.384295254945755, - -0.1141478568315506, - -0.20323939621448517, - -0.16567254066467285, - -0.1618223339319229, - 0.2501082420349121, - -0.03723547235131264, - -0.510745644569397, - -0.1330345720052719, - -0.15812087059020996, - -0.016478227451443672, - 0.10303426533937454, - 0.1648416370153427, - -0.16437667608261108, - 0.4974811375141144, - -0.0005599260330200195, - 0.1416080892086029, - 0.3203790485858917, - -0.010559063404798508, - -0.17594315111637115, - 0.12281337380409241, - 0.2599126994609833, - -0.4487256705760956, - 0.051504623144865036, - -0.11626743525266647, - -0.302840918302536, - -0.26622119545936584, - 0.13635225594043732, - 0.29047372937202454, - -0.3432757556438446, - -0.06275419145822525, - -0.10540363937616348, - 0.19814568758010864, - 0.15841127932071686, - 0.4304793179035187, - 0.3933051824569702, - 0.8821763396263123, - 0.046080708503723145, - 0.09296758472919464, - 0.001818250515498221, - 0.33799171447753906, - 0.07349147647619247, - 0.276917964220047, - -0.18578022718429565, - 0.12829576432704926, - -0.5147936940193176, - 0.26023104786872864, - 0.43757227063179016, - 0.05431811511516571, - -0.01662052795290947, - -0.02641577646136284, - -0.22275404632091522, - 0.14159198105335236, - 0.13909512758255005, - 0.11439693719148636, - 0.2605668902397156, - 0.27952930331230164, - -0.4976736903190613, - -0.2553514242172241, - 0.13805271685123444, - 0.3218674659729004, - 0.19029591977596283, - -0.5184631943702698, - -0.018461862578988075, - -0.24943633377552032, - -0.10028506070375443, - 0.02570153959095478, - 0.012677615508437157, - -0.5237783789634705, - -0.11341481655836105, - -0.04644379764795303, - 0.17582036554813385, - -0.08462519198656082, - 0.26098501682281494, - -0.4669886529445648, - -0.046165112406015396, - -1.0700637102127075, - 0.22184433043003082, - -0.41823017597198486, - -0.035347700119018555, - -0.01125851646065712, - -0.3584998846054077, - -0.27295148372650146, - -0.23526443541049957, - -0.17689284682273865, - 0.20921240746974945, - -0.1779661476612091, - -0.01564732939004898, - 0.10913726687431335, - 0.10447347164154053, - 0.15363074839115143, - 0.3657700717449188, - 0.06330116093158722, - 0.15791310369968414, - -0.05431688204407692, - 0.1156902015209198, - 0.10946392267942429, - -0.016019506379961967, - -0.00376247544772923, - 0.3615684509277344, - 0.20679372549057007, - -0.05814424902200699, - -0.24078063666820526, - -0.5549667477607727, - 0.3034473657608032, - -0.18883471190929413, - 0.11528627574443817, - 0.19273827970027924, - -0.202925905585289, - 0.17901606857776642, - -0.32511574029922485, - 0.4714984595775604, - 0.0956103727221489, - 0.21715469658374786, - 0.08760140091180801, - -0.18319348990917206, - -0.10207431763410568, - 0.18298916518688202, - 0.0011868301080539823, - -0.19538764655590057, - 0.692261278629303, - 0.1919974833726883, - -0.29421278834342957, - 0.22741574048995972, - 0.3984483778476715, - -0.07129312306642532, - -0.001349232392385602, - 0.014379683881998062, - 0.5546229481697083, - -0.30573752522468567, - 0.43848666548728943, - -0.4834362864494324, - 0.008964118547737598, - 0.2524825930595398, - -0.14177829027175903, - -0.3111468255519867, - 0.11775079369544983, - -0.22897912561893463, - 0.07090859860181808, - 0.026990197598934174, - -0.4522155523300171, - 0.10988258570432663, - 0.15222316980361938, - -0.08408534526824951, - 0.32288530468940735, - -0.025860965251922607, - 0.2060614973306656, - -0.08072224259376526, - -0.17987237870693207, - 0.2014206498861313, - -0.16527830064296722, - 0.07658617198467255, - 0.02237684838473797, - -0.4217027425765991, - 0.3149559199810028, - -0.051016341894865036, - 0.045372672379016876, - 0.3172542452812195, - -0.05839608609676361, - -0.1602560132741928, - 0.05615941062569618, - -0.12087183445692062, - -0.5456336140632629, - 0.13563162088394165, - 0.09638059884309769, - 0.2629709541797638, - 0.26091453433036804, - -0.09315735846757889, - 0.11738035827875137, - -0.33225521445274353, - 0.26871949434280396, - -0.11191404610872269, - -0.18731524050235748, - -0.27306878566741943, - 0.2604295611381531, - -0.25728437304496765, - 0.014559563249349594, - 0.338029682636261, - -0.2529425024986267, - -0.15784813463687897, - 0.10982272028923035, - -0.3312305212020874, - -0.07607387751340866, - -0.18536566197872162, - 0.03341001644730568, - 0.1244906410574913, - 0.16204039752483368, - 0.22826838493347168, - 0.040377177298069, - -0.13465271890163422, - 0.15283985435962677, - -0.2621614634990692, - -0.40681153535842896, - -0.39622271060943604, - -0.04939678683876991, - -0.15855292975902557, - -0.5634518265724182, - 0.0030023781582713127, - 0.016089333221316338, - -0.0094521539285779, - -0.0015017037512734532, - -0.39902397990226746, - -0.10759475827217102, - 0.1583576500415802, - -0.02309199422597885, - 0.003714547958225012, - -0.1170600950717926, - 0.34147173166275024, - -0.17942991852760315, - -0.3103298842906952, - -0.23220282793045044, - 0.02330954559147358, - 0.18461471796035767, - 0.027636373415589333, - -0.24720872938632965, - -0.049284759908914566, - 0.1747806817293167, - -0.35249775648117065, - -0.22448967397212982, - 0.2406281977891922, - -0.21447442471981049, - 0.2357436567544937, - 0.06559675186872482, - 0.23464559018611908, - 0.3464064300060272, - 0.1277618557214737, - 0.2224847376346588, - 0.41434571146965027, - 0.4918871819972992, - 0.046534132212400436, - 0.0029910721350461245, - 0.02384844236075878, - -0.07515298575162888, - -0.07504881173372269, - -0.3333078622817993, - 0.33484938740730286, - 0.14666186273097992, - -0.011626636609435081, - -0.14931516349315643, - 0.27606865763664246, - 0.047426510602235794, - -0.35144755244255066, - 0.03155578672885895, - 0.6447765827178955, - 0.18663915991783142, - 0.10503526031970978, - 0.17239266633987427, - 0.3973771035671234, - 0.2972050905227661, - -0.10547533631324768, - -0.07397616654634476, - 0.11127133667469025, - -0.06647476553916931, - -0.2679343521595001, - -0.0674225389957428, - 0.23409156501293182, - 0.36988934874534607, - -0.26490601897239685, - -0.2123458981513977, - 0.08254454284906387, - -0.09218213707208633, - 0.027889365330338478, - -0.022257236763834953, - 0.058834612369537354, - 0.17198365926742554, - -0.2773451805114746, - 0.17218166589736938, - -0.03221498802304268, - -0.07179928570985794, - 0.39186403155326843, - -0.44597816467285156, - -0.19246569275856018, - 0.2693040668964386, - -0.31082916259765625, - -0.4523104429244995, - 0.3688596487045288, - -0.14703033864498138, - -0.011421114206314087, - 0.43818503618240356, - -0.1925327181816101, - 0.048756781965494156, - -0.07173275947570801, - 0.38047030568122864, - -0.0883413553237915, - 0.03746939077973366, - -0.14616459608078003, - 0.023532487452030182, - 0.12558074295520782, - 0.705162525177002, - 0.10967635363340378, - 0.1790972799062729, - 0.7122183442115784, - 0.33635759353637695, - -0.32552069425582886, - 0.020781302824616432, - -0.023438220843672752, - 0.41091424226760864, - -0.0605277419090271, - -0.12584322690963745, - -0.21313773095607758, - 0.09949696809053421, - 0.12283234298229218, - -0.16945210099220276, - -0.09053666144609451, - 0.22270208597183228, - 0.11872243881225586, - -0.06659874320030212, - 0.22076568007469177, - 0.14393197000026703, - -0.0366511195898056, - 0.5519142150878906, - -0.01133953407406807, - -0.05534100532531738, - 0.4552401602268219, - -0.37855222821235657, - 0.15171478688716888, - -0.0128722433000803, - -0.13833679258823395, - -0.3374013900756836, - 0.10086435824632645, - -0.19964461028575897, - -0.1313105970621109, - 0.005349848885089159, - -0.01551737543195486, - 0.151595339179039, - -0.20990648865699768, - 0.15902625024318695, - -0.014792162925004959, - 0.2314709722995758, - 0.07963289320468903, - 0.33777371048927307, - -0.012659451924264431, - -0.26802298426628113, - 0.15994176268577576, - -0.034493766725063324, - 0.07662896811962128, - -0.1596756875514984, - 0.01686912029981613, - -0.11103271692991257, - 0.5120946168899536, - 0.020111005753278732, - -0.06793037056922913, - 0.14226040244102478, - -0.07784996181726456, - -0.12951989471912384, - -0.3915475606918335, - -0.10702328383922577, - -0.10917985439300537, - -0.08030633628368378, - 0.06679794192314148, - 0.096513532102108, - -0.36836376786231995, - -0.13380640745162964, - -0.05202993378043175, - -0.03581785038113594, - 0.4412965476512909, - -0.1562989503145218, - -0.137541264295578, - 0.2399810254573822, - 0.1158212348818779, - 0.33506643772125244, - -0.3977501690387726, - 0.19513936340808868, - 0.07610291987657547, - -0.022276312112808228, - -0.1391570121049881, - 0.04632958397269249, - -0.43261298537254333, - -0.08430971205234528, - 0.22112326323986053, - 0.28513386845588684, - 0.07183095812797546, - 0.03921131044626236, - 0.13149286806583405, - 0.3169865608215332, - -0.39125317335128784, - 0.014617369510233402, - 0.26788008213043213, - 0.2254611849784851, - 0.3219054043292999, - -0.08285977691411972, - -0.29552480578422546, - -0.2527967095375061, - -0.07475844025611877, - -0.43570318818092346, - 0.28818535804748535, - 0.3357337713241577, - -0.0945499911904335, - -0.24876126646995544, - -0.09366600215435028, - -0.05640077590942383, - -0.18710023164749146, - 0.3195178210735321, - -0.18357215821743011, - 0.1530047506093979, - 0.0061488221399486065, - -0.29145973920822144, - -0.12983649969100952, - -0.0658794492483139, - -0.36496400833129883, - -0.43772536516189575, - 0.4082850515842438, - 0.3117547631263733, - -0.3094722032546997, - -0.006013867445290089, - 0.09305071830749512, - -0.24640005826950073, - -0.15627449750900269, - 0.10089605301618576, - -0.24185733497142792, - 0.48139849305152893, - -0.019655970856547356, - -0.24491997063159943, - 0.048342905938625336, - -0.10615459084510803, - 0.07299508899450302, - 0.17103733122348785, - 0.07051429152488708, - 0.5131105184555054, - 0.2119724601507187, - -0.0025714675430208445, - 0.5169672966003418, - 0.10118421912193298, - 0.009528460912406445, - 0.36977022886276245, - 0.003227691864594817, - 0.1846330612897873, - -0.2613828480243683, - -0.16661396622657776, - 0.29785048961639404, - -0.3860602080821991, - 0.06312645226716995, - 0.24486437439918518, - 0.16324564814567566, - -0.2989039123058319, - -0.2119496762752533, - 0.1391337364912033, - -0.005472011398524046, - -0.00867170188575983, - -0.11946684867143631, - -0.26622438430786133, - -0.08857852220535278, - -0.42394936084747314, - -0.004486138001084328, - 0.3332582116127014, - 0.5578845739364624, - 0.1002531573176384, - 0.2562064230442047, - -0.2969885468482971, - -0.43189704418182373, - 0.12109637260437012, - 0.1750391572713852, - 0.03045092336833477, - -0.0020621309522539377, - -0.20395714044570923, - 0.44905540347099304, - 0.4649224281311035, - 0.03747037798166275, - 0.09811275452375412, - 0.08403230458498001, - -0.04583323001861572, - 0.11168564110994339, - 0.01999879628419876, - -0.27097007632255554, - -0.03904890641570091, - -0.4011135995388031, - 0.16690851747989655, - -0.278456449508667, - -0.13861416280269623, - 0.246538445353508, - -0.18596701323986053, - -0.45073139667510986, - -0.32809218764305115, - 0.2822127640247345, - -0.2004898190498352, - -0.2759394645690918, - 0.20343376696109772, - 0.3746183514595032, - -0.02776939980685711, - -0.2617757022380829, - -0.05537048727273941, - -0.4704679548740387, - -0.3349171578884125, - 0.16396164894104004, - -0.025446008890867233, - -0.1499261111021042, - -0.029335184022784233, - 0.3566302955150604, - 0.573430597782135, - 0.19493108987808228, - -0.3237588703632355, - -0.12970437109470367, - 0.3151785135269165, - 0.1721557080745697, - -0.107560895383358, - -10.693236351013184, - -0.2694595158100128, - -0.2752366364002228, - 0.47404682636260986, - -0.2533549666404724, - 0.035995543003082275, - 0.3046395182609558, - -0.006059073377400637, - 0.20956355333328247, - 0.018966086208820343, - -0.27400732040405273, - -0.052737269550561905, - 0.23172660171985626, - 0.2946239411830902, - -0.003580165095627308, - -0.2171463519334793, - -0.295930415391922, - 0.13473321497440338, - 0.027279186993837357, - 0.11601874977350235, - 0.20378398895263672, - 0.30750221014022827, - -0.23918098211288452, - 0.3185611963272095, - 0.057022880762815475, - -0.4172568619251251, - -0.2487625628709793, - 0.5459169149398804, - 0.3092145323753357, - -0.3010522723197937, - 0.24522241950035095, - 0.23370812833309174, - -0.21174941956996918, - 0.12697261571884155, - 0.06490892171859741, - -0.04187906160950661, - -0.026336902752518654, - 0.1653374582529068, - 0.24631716310977936, - -0.030459724366664886, - 0.07943648844957352, - -0.2388458102941513, - 0.3200909197330475, - 0.31448519229888916, - -0.17489828169345856, - -0.36431849002838135, - -0.2230379581451416, - -1.5891869068145752, - 0.2805584669113159, - 0.3274981677532196, - 0.28881293535232544, - 0.08258548378944397, - 0.2648078203201294, - 0.1418108344078064, - -0.39738988876342773, - 0.05250029265880585, - -0.2547436058521271, - -0.0010083832312375307, - 0.001935625565238297, - 0.041414275765419006, - 0.0805279091000557, - -0.13530994951725006, - 0.5083628296852112, - -0.0015548460651189089, - -0.20925618708133698, - 0.15884575247764587, - -0.02191568911075592, - -0.0867772102355957, - -0.25979018211364746, - -0.5716881155967712, - -0.552763044834137, - 0.06132373586297035, - -0.005505269393324852, - -0.06055488809943199, - 0.4020821750164032, - -0.15663345158100128, - -0.4087689518928528, - 0.26854249835014343, - -0.02506018802523613, - 0.3296263515949249, - 0.13085484504699707, - 0.04221518337726593, - 0.0662723034620285, - -0.014447418041527271, - -0.24978452920913696, - -0.05940668657422066, - 0.15609832108020782, - 0.5100307464599609, - -0.021021589636802673, - 0.014885815791785717, - -0.004596708808094263, - 0.4106135070323944, - -0.1551225334405899, - -0.3008715510368347, - -0.4451250731945038, - 0.10635356605052948, - -0.029526298865675926, - 0.0949481949210167, - 0.0015926604392006993, - -0.2449842095375061, - -0.18031080067157745, - -0.03594546392560005, - -0.01180313155055046, - -0.5062963962554932, - -0.3755844831466675, - 0.27855756878852844, - 0.01596592739224434, - 0.38701391220092773, - -0.05055608972907066, - -0.11070921272039413, - -0.2869168519973755, - -0.0658712312579155, - 0.19688352942466736, - 0.6834115982055664, - 0.2693687677383423, - -0.16031862795352936, - 0.06435371190309525, - -0.23401302099227905, - -0.2715247869491577, - -0.1330697238445282, - 0.4132518470287323, - -0.09390867501497269, - 0.06777747720479965, - 0.6371964812278748, - 0.00781968329101801, - -0.13410110771656036, - 0.9845170378684998, - -0.28020086884498596, - 0.0947791263461113, - -0.26534977555274963, - 0.2895837426185608, - -0.2596656084060669, - -0.49054718017578125, - 0.09178698807954788, - 0.5611507892608643, - -0.3578782081604004, - 0.807757556438446, - 0.1288566142320633, - -0.44504210352897644, - 0.09009426087141037, - -0.28877949714660645, - 0.4583364427089691, - 0.2390129715204239, - 0.2374929040670395, - -0.12717896699905396, - -0.18473348021507263, - -0.1979197859764099, - -0.13705287873744965, - -0.35424187779426575, - -0.39350655674934387, - -0.30722731351852417, - 0.14513184130191803, - 0.14779119193553925, - -0.35405290126800537, - 0.41243085265159607, - 0.2103242725133896, - -0.2903916537761688, - -0.2843779921531677, - -0.48720598220825195, - -0.013453599065542221, - 0.3806743919849396, - 0.8109135031700134, - 0.05305461585521698, - -0.03595462813973427, - -0.10473506152629852, - 0.07926826179027557, - -0.1948712021112442, - 0.16459833085536957, - 0.08201012015342712, - -0.0015237462939694524, - -0.551294207572937, - 0.20163984596729279, - 0.2563650906085968, - -0.31874924898147583, - -0.24696913361549377, - -0.18018513917922974, - -0.14027398824691772, - 0.10167369246482849, - -0.17537502944469452, - 0.020219601690769196, - 0.3543131649494171, - -0.16741299629211426, - -0.009683135896921158, - -0.19856251776218414, - -0.05643867328763008, - 0.14254766702651978, - 0.3738085627555847, - 0.014908242970705032, - -0.34483635425567627, - -0.28751257061958313, - -0.6223263144493103, - 0.20732878148555756, - -0.354229599237442, - -0.09976624697446823, - 0.0010391175746917725, - 0.2528060972690582, - -0.3753974139690399, - 0.0704156681895256, - -0.17204946279525757, - -0.0981154665350914, - -0.20122060179710388, - 0.243259996175766, - 0.47789326310157776, - -0.3276210427284241, - 0.21513815224170685, - -0.1918114721775055, - 0.11960604041814804, - 0.07547300308942795, - -0.11973462253808975, - 0.26870232820510864, - -0.27581968903541565 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_034.json b/src/benchmark/output/results/results_graph_034.json deleted file mode 100644 index 367a715..0000000 --- a/src/benchmark/output/results/results_graph_034.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 60-year-old female who presented with worsening cough and fever in December 2021. Her demographic information is not explicitly mentioned in the provided data, but based on the clinical presentation, it can be inferred that she is likely an adult female.\n\n**Timeline of Diagnoses:**\n\n1. **December 2021:** The patient presented with worsening cough and fever, which led to a CT scan revealing a large right pulmonary upper lobe mass.\n2. **Postoperative histologic examination (date not specified):** After surgical resection of the lung mass, the patient was diagnosed with inflammatory myofibroblastic tumor (IMT) with positive surgical margins and pleural invasion.\n3. **Three months post-surgery (March 2022):** The patient presented with fever, cough, and weight loss, which confirmed locally recurrent disease and metastatic spread to the ileum, right supraclavicular fossa, and soft tissue of the right thigh.\n4. **Ileal metastasis removal for symptomatic relief (March 2022):** The patient underwent surgical removal of the ileal metastasis for symptomatic relief.\n5. **February 2023:** Analysis of the primary (treatment-naive) tumor from the right upper lobe (RUL) lung revealed enlarged nuclei, infiltrating lymphocytes and plasma cells visible on H&E staining. ALK immunohistochemical staining was positive.\n6. **June 2023:** A needle biopsy from the right supraclavicular fossa mass showed metastasis. Metastasectomy of the right apical lung showed visible necrosis post-alectinib treatment.\n\n**Timeline of Treatments:**\n\n1. **Surgical resection (date not specified):** The patient underwent surgical resection of the lung mass.\n2. **Ileal metastasis removal for symptomatic relief (March 2022):** The patient underwent surgical removal of the ileal metastasis for symptomatic relief.\n3. **Alectinib treatment (June 2023):** The patient received alectinib treatment, which showed visible necrosis.\n\n**Outcomes:**\n\n1. **Locally recurrent disease and metastatic spread:** The patient's condition worsened over time, with locally recurrent disease and metastatic spread to multiple sites.\n2. **Symptomatic relief:** Surgical removal of the ileal metastasis provided symptomatic relief for the patient.\n3. **ALK positivity:** The primary tumor was positive for ALK, which is a biomarker for anaplastic lymphoma kinase-positive tumors.\n\n**Conclusion:**\nThe patient's clinical course was marked by worsening symptoms and progression of disease over time. Despite surgical interventions and targeted therapies, the patient's condition continued to deteriorate. Further treatment options should be considered to improve the patient's prognosis.", - "bertscore": { - "precision": [ - 0.6936006546020508 - ], - "recall": [ - 0.6804064512252808 - ], - "f1": [ - 0.6869401931762695 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 8, - "edge_count": 7, - "avg_in_degree": 0.875, - "density": 0.125 - }, - "trajectory_embedding": [ - 0.24237029254436493, - 0.2363709807395935, - -0.13420656323432922, - 0.003546524792909622, - -0.0821806862950325, - 0.164741650223732, - 0.14038313925266266, - 0.17643733322620392, - 0.3006155490875244, - -0.43382182717323303, - -0.11638984084129333, - 0.14135542511940002, - -0.6119062304496765, - -0.12884022295475006, - -0.33409583568573, - 0.2769036889076233, - -0.1681082397699356, - 0.46048834919929504, - -0.172684907913208, - -0.15695005655288696, - -0.3954640030860901, - 0.17023928463459015, - -0.23225252330303192, - -0.027941163629293442, - 0.2199840545654297, - 0.012671729549765587, - 0.34993237257003784, - 0.3461514711380005, - 0.17673557996749878, - 0.37119433283805847, - 0.294079452753067, - 0.13907021284103394, - -0.06374695897102356, - -0.021210025995969772, - -0.2489638775587082, - 0.39103636145591736, - 0.27643275260925293, - 0.2447320520877838, - -0.10294844210147858, - -0.0018316511996090412, - 0.013656050898134708, - 0.20587672293186188, - 0.7822971343994141, - 0.21609586477279663, - 0.5209213495254517, - -0.716457724571228, - 0.05496058613061905, - 0.34897562861442566, - -0.4143941104412079, - -0.1348949670791626, - 0.12508118152618408, - 0.7785993814468384, - 0.5179581046104431, - -0.0018606185913085938, - 0.3762286603450775, - -0.22046443819999695, - -0.24983245134353638, - -0.15333715081214905, - -0.24139100313186646, - 0.15119819343090057, - 0.00486432109028101, - -0.06198757514357567, - 0.20785704255104065, - -0.12337975949048996, - -0.30828431248664856, - -0.1508456915616989, - -0.10622470825910568, - 0.11199989914894104, - -0.035388145595788956, - -0.33002543449401855, - -0.3235487639904022, - -0.1460617035627365, - -0.029551275074481964, - 0.1447633057832718, - 0.07711298763751984, - -0.10315606743097305, - 0.33821481466293335, - 0.12644821405410767, - 0.24694742262363434, - 0.13258130848407745, - -0.03752598538994789, - -0.06229719519615173, - -0.0543103888630867, - 0.1959184855222702, - -0.3900566101074219, - 0.07127948850393295, - -0.05283515527844429, - -0.015468493103981018, - -0.28103917837142944, - 0.11538907885551453, - 0.1993100941181183, - -0.33345329761505127, - -0.004853101447224617, - -0.138612300157547, - 0.04812413081526756, - 0.20100556313991547, - 0.3035227060317993, - 0.26518917083740234, - 0.9399998784065247, - 0.07394137978553772, - 0.17247119545936584, - 0.04488483443856239, - 0.18229952454566956, - 0.0560210756957531, - 0.3287569582462311, - -0.2369658201932907, - 0.3447822630405426, - -0.49539950489997864, - 0.2408488392829895, - 0.5724201202392578, - 0.08703374117612839, - -0.03615448251366615, - -0.07711422443389893, - -0.3011609613895416, - 0.1183524802327156, - 0.09242668747901917, - -0.07413643598556519, - 0.24499230086803436, - 0.16020886600017548, - -0.3189999759197235, - -0.0027941949665546417, - 0.020141590386629105, - 0.19155605137348175, - 0.18997913599014282, - -0.31579262018203735, - -0.12006382644176483, - -0.07265349477529526, - -0.020666765049099922, - 0.1156330406665802, - -0.016241589561104774, - -0.42247119545936584, - -0.15896739065647125, - -0.02509208954870701, - 0.12791822850704193, - -0.06133519858121872, - 0.29880964756011963, - -0.31640058755874634, - 0.006498439237475395, - -1.05268132686615, - 0.18605738878250122, - -0.24223224818706512, - -0.13570016622543335, - -0.05157841369509697, - -0.3352285325527191, - -0.23686817288398743, - -0.09409252554178238, - -0.12358324229717255, - 0.24573202431201935, - -0.057409606873989105, - 0.11419151723384857, - -0.03792278468608856, - 0.036405399441719055, - 0.1392202526330948, - 0.29047903418540955, - -0.03503396734595299, - 0.04856614023447037, - 0.09708697348833084, - 0.20540443062782288, - 0.10289180278778076, - -0.029000885784626007, - 0.001958312466740608, - 0.2645643353462219, - 0.05017825961112976, - -0.004631936550140381, - -0.19374041259288788, - -0.5717155933380127, - 0.16042672097682953, - -0.2563199996948242, - 0.3045199513435364, - 0.0358748696744442, - -0.13118664920330048, - 0.08229291439056396, - -0.2474469542503357, - 0.4049350917339325, - 0.2994776964187622, - 0.23898763954639435, - 0.029474124312400818, - -0.08680585026741028, - -0.1279851794242859, - 0.17757242918014526, - -0.06529698520898819, - 0.004023615270853043, - 0.5241823792457581, - 0.18787503242492676, - -0.3260097801685333, - 0.07609173655509949, - 0.43320515751838684, - -0.06679930537939072, - -0.20954087376594543, - -0.10176847130060196, - 0.34212934970855713, - -0.23370660841464996, - 0.3242056965827942, - -0.3124348521232605, - 0.02607763186097145, - 0.025175049901008606, - -0.263454794883728, - -0.1513345092535019, - 0.014549585059285164, - -0.1987314671278, - 0.061649009585380554, - 0.1253819763660431, - -0.35368281602859497, - 0.13303838670253754, - 0.2873440384864807, - -0.05823168158531189, - 0.28306642174720764, - 0.0028213486075401306, - 0.16744373738765717, - -0.1454620361328125, - -0.22136743366718292, - 0.23658815026283264, - 0.03351446986198425, - 0.21695272624492645, - 0.06954407691955566, - -0.26325681805610657, - 0.142268568277359, - -0.03135328367352486, - -0.13485145568847656, - 0.0847398117184639, - 0.04720153659582138, - -0.15508973598480225, - 0.16531193256378174, - 0.043843723833560944, - -0.4885926842689514, - 0.15838932991027832, - 0.2925708293914795, - 0.13770447671413422, - 0.07699048519134521, - -0.10937181115150452, - 0.03762861713767052, - -0.33969035744667053, - 0.3731597661972046, - -0.10201747715473175, - -0.24819684028625488, - -0.18589705228805542, - 0.22533169388771057, - 0.00861472636461258, - -0.0883750468492508, - 0.3922699987888336, - -0.1908557415008545, - -0.1527247279882431, - 0.039073534309864044, - -0.2400915026664734, - 0.01948782242834568, - -0.159138485789299, - -0.07206986844539642, - 0.24803787469863892, - 0.13086463510990143, - 0.18381862342357635, - 0.24983160197734833, - -0.050706587731838226, - 0.12638597190380096, - -0.2813067138195038, - -0.358850359916687, - -0.3725643754005432, - -0.2032947838306427, - -0.20558764040470123, - -0.5666476488113403, - 0.02318275161087513, - 0.010926492512226105, - -0.13121387362480164, - 0.16208656132221222, - -0.33510708808898926, - -0.10093862563371658, - -0.0413154661655426, - -0.049002476036548615, - 0.07181155681610107, - -0.37009090185165405, - 0.263321191072464, - -0.3198581039905548, - -0.18211351335048676, - -0.13098785281181335, - 0.053537994623184204, - 0.24806131422519684, - 0.16237810254096985, - -0.12601512670516968, - 0.22047528624534607, - 0.1556641161441803, - -0.387481689453125, - -0.17143015563488007, - 0.1276715099811554, - -0.26728758215904236, - 0.16010387241840363, - 0.019621960818767548, - 0.24519380927085876, - 0.5153416395187378, - 0.03305526450276375, - 0.21818649768829346, - 0.34840261936187744, - 0.42812296748161316, - 0.02671419084072113, - -0.09131153672933578, - 0.16400986909866333, - -0.03711162880063057, - -0.034944746643304825, - -0.37735891342163086, - 0.27533015608787537, - -0.027977995574474335, - -0.05632195994257927, - -0.1395300328731537, - 0.0783085972070694, - 0.12022730708122253, - -0.352393239736557, - -0.07461832463741302, - 0.5401055216789246, - 0.08455029875040054, - 0.12047901004552841, - 0.08082771301269531, - 0.32589221000671387, - 0.44736355543136597, - -0.06010829284787178, - -0.041368380188941956, - 0.1552565097808838, - -0.20202505588531494, - -0.20307035744190216, - -0.23991639912128448, - 0.11542762070894241, - 0.332023561000824, - -0.105803482234478, - -0.11806466430425644, - 0.18350180983543396, - -0.06818123161792755, - -0.21833480894565582, - 0.0696645975112915, - 0.05547991767525673, - -0.011024653911590576, - -0.26677435636520386, - 0.18454720079898834, - -0.1564193069934845, - 0.021401632577180862, - 0.4267149269580841, - -0.28614896535873413, - -0.29602837562561035, - 0.4107281267642975, - -0.08860182762145996, - -0.35458484292030334, - 0.35817810893058777, - -0.3065158426761627, - 0.02743811532855034, - 0.20691817998886108, - -0.21387676894664764, - -0.07563862949609756, - -0.06890200823545456, - 0.199899822473526, - -0.020410090684890747, - 0.031822193413972855, - -0.08194073289632797, - 0.007650814019143581, - 0.01776225119829178, - 0.4561966359615326, - -0.035610977560281754, - 0.03860767185688019, - 0.44408512115478516, - 0.06239765137434006, - -0.2706258296966553, - 0.05405202880501747, - -0.07112257927656174, - 0.1685868203639984, - -0.08870504051446915, - -0.17459999024868011, - -0.22440403699874878, - 0.1157616376876831, - -0.030936475843191147, - -0.27118638157844543, - -0.03556189313530922, - 0.14983659982681274, - -0.036913223564624786, - 0.007929123938083649, - 0.24133488535881042, - 0.29275262355804443, - -0.0778195858001709, - 0.4666089415550232, - 0.019908783957362175, - -0.06973311305046082, - 0.2957398295402527, - -0.03794165700674057, - 0.20321179926395416, - -0.021685762330889702, - -0.27271708846092224, - -0.42963212728500366, - 0.053282178938388824, - -0.15792639553546906, - -0.14277197420597076, - 0.18210895359516144, - -0.0381169468164444, - 0.15522736310958862, - -0.16692638397216797, - 0.20940203964710236, - -0.0618094876408577, - 0.10342034697532654, - 0.030586376786231995, - 0.28513303399086, - -0.15182854235172272, - -0.2674780786037445, - 0.2158762812614441, - -0.025880195200443268, - 0.09428046643733978, - -0.18396557867527008, - -0.018592651933431625, - -0.22855308651924133, - 0.4397832155227661, - 0.005936078727245331, - -0.08176758140325546, - -0.0028843730688095093, - -0.13024231791496277, - -0.17257079482078552, - -0.35869100689888, - 0.09618889540433884, - -0.07822050154209137, - -0.07750503718852997, - -0.01728813350200653, - 0.14635558426380157, - -0.07308750599622726, - -0.21776865422725677, - -0.009866233915090561, - 0.11434868723154068, - 0.3112042248249054, - -0.1603008359670639, - 0.013171982020139694, - 0.27365806698799133, - 0.0926012247800827, - 0.23813483119010925, - -0.26934048533439636, - 0.19878020882606506, - -0.09139367938041687, - -0.2510448694229126, - -0.03759394586086273, - 0.033086586743593216, - -0.3892764449119568, - 0.0074541568756103516, - 0.14938151836395264, - 0.18138034641742706, - 0.025029996410012245, - -0.03829371556639671, - 0.020750554278492928, - 0.12251197546720505, - -0.3466969132423401, - -0.011196838691830635, - 0.19853439927101135, - -0.026878684759140015, - 0.3634965419769287, - -0.006123748607933521, - -0.3161609172821045, - -0.10868071019649506, - -0.21079692244529724, - -0.2758084833621979, - 0.1984379142522812, - 0.15728288888931274, - -0.036123521625995636, - -0.11072134971618652, - -0.04714746028184891, - 0.03680207580327988, - -0.13568991422653198, - 0.21126426756381989, - -0.0768728256225586, - 0.2071148008108139, - 0.08575046062469482, - -0.37960532307624817, - -0.12202827632427216, - -0.3106124699115753, - -0.2752760946750641, - -0.30671942234039307, - 0.42536643147468567, - 0.078725665807724, - -0.15455612540245056, - -0.048375725746154785, - 0.1286676973104477, - -0.31244146823883057, - -0.04127316549420357, - 0.006859399378299713, - -0.16135556995868683, - 0.45088082551956177, - 0.0446796715259552, - -0.1789412498474121, - 0.19094344973564148, - -0.15766078233718872, - 0.09439123421907425, - 0.1195729672908783, - 0.12067930400371552, - 0.34285491704940796, - 0.18705695867538452, - 0.02433175966143608, - 0.4262446165084839, - 0.18738213181495667, - 0.09192177653312683, - 0.1931905746459961, - -0.020821932703256607, - 0.045674458146095276, - -0.2896275222301483, - -0.2188575714826584, - 0.2904517948627472, - -0.4311187267303467, - 0.07275079190731049, - 0.1690751016139984, - 0.21907085180282593, - -0.24159713089466095, - -0.13509075343608856, - 0.04595588147640228, - -0.07433567196130753, - -0.20454062521457672, - -0.2736913561820984, - -0.24703264236450195, - 0.09698740392923355, - -0.33645784854888916, - -0.04454181343317032, - 0.35543715953826904, - 0.2983163893222809, - 0.18863022327423096, - -0.0058694928884506226, - -0.14175692200660706, - -0.37408268451690674, - 0.15606051683425903, - 0.15503579378128052, - 0.10245317220687866, - -0.011156924068927765, - -0.1338862031698227, - 0.20483911037445068, - 0.3858543634414673, - -0.024389436468482018, - 0.05183064565062523, - 0.023419659584760666, - -0.11110609024763107, - -0.005419330671429634, - -0.00966641865670681, - -0.38883405923843384, - -0.18845322728157043, - -0.2525588572025299, - 0.1274828463792801, - -0.27796870470046997, - -0.2523069381713867, - 0.12733066082000732, - -0.2241588532924652, - -0.4040215313434601, - -0.2805541455745697, - 0.12827882170677185, - -0.17570233345031738, - -0.14784367382526398, - 0.2078154981136322, - 0.5947222113609314, - 0.1468171328306198, - -0.12323127686977386, - 0.038675688207149506, - -0.42076215147972107, - -0.1751076728105545, - 0.2527959942817688, - -0.10160218924283981, - -0.09128620475530624, - 0.14387330412864685, - 0.42131802439689636, - 0.3556409478187561, - 0.24963849782943726, - -0.37525424361228943, - 0.03847194090485573, - 0.3298828899860382, - 0.14732491970062256, - -0.2423604279756546, - -10.850854873657227, - -0.10586756467819214, - -0.3027735650539398, - 0.31946611404418945, - -0.25729066133499146, - 0.10181444138288498, - 0.15456515550613403, - -0.024249302223324776, - 0.2581278681755066, - 0.1505487561225891, - -0.2823396325111389, - 0.023186344653367996, - 0.006364243105053902, - 0.19229909777641296, - 0.02737503871321678, - -0.032305292785167694, - -0.19592486321926117, - 0.21466770768165588, - 0.031105775386095047, - 0.1285131573677063, - 0.1319018304347992, - 0.48927292227745056, - -0.1287427544593811, - 0.3014511466026306, - 0.06575638055801392, - -0.260750949382782, - -0.2162771075963974, - 0.41402044892311096, - 0.1683340221643448, - -0.4302253723144531, - 0.19395200908184052, - 0.05233839154243469, - -0.07534226775169373, - 0.028991607949137688, - -0.06927990913391113, - -0.08029456436634064, - -0.00652080774307251, - 0.18020334839820862, - 0.12096644937992096, - -0.20954880118370056, - -0.015781858935952187, - -0.17561620473861694, - 0.25077736377716064, - 0.3093898594379425, - -0.11489473283290863, - -0.37830206751823425, - -0.214482843875885, - -1.3964431285858154, - 0.32017189264297485, - 0.21487200260162354, - 0.44482287764549255, - 0.15831874310970306, - 0.10684788972139359, - 0.11518069356679916, - -0.440194308757782, - 0.08963073790073395, - -0.12223505228757858, - 0.11353399604558945, - 0.16471867263317108, - 0.07119426131248474, - 0.14085443317890167, - -0.12334807217121124, - 0.4083344340324402, - -0.0502874031662941, - -0.13003791868686676, - 0.20324940979480743, - -0.12707629799842834, - -0.02141425386071205, - -0.08427514880895615, - -0.4861825108528137, - -0.4077373743057251, - 0.00435496773570776, - -0.09852736443281174, - 0.06946811825037003, - 0.40911954641342163, - -0.06004926189780235, - -0.3728499710559845, - 0.30930671095848083, - 0.10396711528301239, - 0.2953256368637085, - 0.23108920454978943, - 0.043643977493047714, - 0.04285284876823425, - -0.18073011934757233, - -0.11386881023645401, - -0.08886649459600449, - 0.04916437342762947, - 0.3323889970779419, - -0.0350208543241024, - -0.020046282559633255, - -0.09957048296928406, - 0.2884463369846344, - -0.08841228485107422, - -0.22652311623096466, - -0.30172911286354065, - 0.0006027729250490665, - 0.014256244525313377, - 0.1661597192287445, - 0.0014365464448928833, - -0.1328757405281067, - -0.21642009913921356, - 0.03864220902323723, - 0.12713375687599182, - -0.42900919914245605, - -0.34364020824432373, - 0.23637141287326813, - 0.17426104843616486, - 0.24076078832149506, - 0.07566837221384048, - 0.13263247907161713, - -0.05527009442448616, - -0.10966812819242477, - 0.2920474410057068, - 0.5575556755065918, - 0.27740561962127686, - -0.13476698100566864, - 0.0021363161504268646, - -0.06417505443096161, - -0.28456759452819824, - -0.007397511973977089, - 0.3347529172897339, - 0.035630963742733, - 0.23990921676158905, - 0.37262454628944397, - 0.0037117870524525642, - -0.1269049495458603, - 1.0391371250152588, - -0.257726788520813, - 0.18905843794345856, - -0.03724151849746704, - 0.20750148594379425, - -0.1499556601047516, - -0.2839234471321106, - 0.06278104335069656, - 0.4499482214450836, - -0.287700891494751, - 0.6020014882087708, - 0.16759687662124634, - -0.39773550629615784, - 0.09484604001045227, - -0.31220704317092896, - 0.38713300228118896, - 0.3185044229030609, - 0.204804927110672, - -0.14237068593502045, - -0.25665172934532166, - -0.26628416776657104, - 0.024964164942502975, - -0.3853726089000702, - -0.3730936050415039, - -0.21609218418598175, - 0.18079181015491486, - -0.07745721936225891, - -0.29644569754600525, - 0.2884235978126526, - 0.13539093732833862, - -0.1869397759437561, - -0.22642481327056885, - -0.48328813910484314, - -0.12274934351444244, - 0.21588578820228577, - 0.7016806602478027, - 0.12359582632780075, - -0.11619015038013458, - -0.04742156341671944, - 0.07175279408693314, - -0.1660573035478592, - 0.020167050883173943, - 0.07115453481674194, - -0.01128400769084692, - -0.5280985832214355, - 0.1674066036939621, - 0.14971673488616943, - -0.37622252106666565, - -0.16319498419761658, - -0.17148464918136597, - 0.06545991450548172, - 0.0846799686551094, - -0.08740612119436264, - 0.1644885241985321, - 0.2601078748703003, - -0.07577840238809586, - -0.06247124448418617, - -0.27311021089553833, - 0.1580091118812561, - 0.11153072118759155, - 0.2745862603187561, - 0.07697097957134247, - -0.16656410694122314, - -0.31730279326438904, - -0.3780134618282318, - 0.3243669271469116, - -0.3121802508831024, - -0.20141266286373138, - 0.13483035564422607, - 0.23742564022541046, - -0.25464165210723877, - -0.02801688015460968, - -0.12445501983165741, - 0.07065156102180481, - -0.2480458915233612, - 0.08234398066997528, - 0.40223222970962524, - -0.25739794969558716, - 0.12739552557468414, - -0.187395840883255, - 0.24203746020793915, - 0.15306290984153748, - -0.1510384976863861, - 0.2166929990053177, - -0.27506476640701294 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_035.json b/src/benchmark/output/results/results_graph_035.json deleted file mode 100644 index 7e17493..0000000 --- a/src/benchmark/output/results/results_graph_035.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 78-year-old male with a significant smoking history (25-pack-year). He was diagnosed with clinical stage IIA lung cancer in the left upper lobe.\n\n**Timeline of Diagnoses and Treatments:**\n\n1. **Initial Diagnosis:** The patient was diagnosed with clinical stage IIA lung cancer in the left upper lobe.\n2. **Surgical Intervention:** Following diagnosis, the patient underwent lobectomy combined with chest wall resection (Step 2).\n3. **Histopathological Examination:** Post-surgical histopathological examination revealed pleomorphic carcinoma of the lung (pT3N0M0, stage IIB, with chest wall invasion). The tumor was positive for the BRAF-V600E mutation.\n4. **New Symptoms:** Two months post-lobectomy, the patient presented with new abdominal symptoms, initially suspected to be appendicitis (Step 4).\n5. **Further Imaging and Diagnosis:** Abdominal pain and difficulty eating prompted further imaging, which revealed jejunal intussusception, dilatation of the upper small intestine, mass lesions in the pancreatic head, appendix, and hepatic flexure, and multiple enlarged abdominal lymph nodes (Step 5).\n6. **Electrolyte Levels Assessment:** Electrolyte levels were assessed to determine if there were any abnormalities (Step 6).\n7. **Enteroscopy and Diagnosis:** Enteroscopy was performed to investigate the cause of abdominal symptoms and CT findings, which revealed a neoplastic lesion in the upper jejunum with a narrowed lumen. Histology confirmed malignant lesion consistent with metastatic pleomorphic carcinoma of the lung.\n\n**Outcomes:**\n\n1. **Initial Surgery:** The patient underwent successful lobectomy combined with chest wall resection.\n2. **Post-Surgical Complications:** The patient developed new abdominal symptoms, initially suspected to be appendicitis, which required further investigation and treatment.\n3. **Intussusception and Malignant Lesion:** Further imaging revealed jejunal intussusception, dilatation of the upper small intestine, mass lesions in the pancreatic head, appendix, and hepatic flexure, and multiple enlarged abdominal lymph nodes. Histology confirmed malignant lesion consistent with metastatic pleomorphic carcinoma of the lung.\n4. **Enteroscopy and Treatment:** Enteroscopy was performed to investigate the cause of abdominal symptoms and CT findings, which revealed a neoplastic lesion in the upper jejunum with a narrowed lumen. The intussusception was reduced, and an ileus tube was placed.\n\n**Conclusion:**\nThe patient's clinical course has been marked by significant challenges following initial diagnosis and treatment for lung cancer. Despite successful surgical intervention, the patient developed new abdominal symptoms, which required further investigation and treatment. Ultimately, enteroscopy revealed a neoplastic lesion in the upper jejunum with a narrowed lumen, confirming metastatic pleomorphic carcinoma of the lung. The patient's prognosis remains uncertain at this time.", - "bertscore": { - "precision": [ - 0.7222839593887329 - ], - "recall": [ - 0.7161093950271606 - ], - "f1": [ - 0.7191834449768066 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 7, - "edge_count": 6, - "avg_in_degree": 0.8571428571428571, - "density": 0.14285714285714285 - }, - "trajectory_embedding": [ - 0.26367637515068054, - 0.048176705837249756, - -0.2154717743396759, - 0.09709109365940094, - 0.15133313834667206, - 0.11292798072099686, - -0.15835356712341309, - 0.21911518275737762, - 0.3441311717033386, - -0.3593378961086273, - -0.1768045276403427, - 0.055697981268167496, - -0.7211228609085083, - -0.14588463306427002, - -0.32662948966026306, - 0.18636056780815125, - -0.03485988453030586, - 0.3550634980201721, - -0.0623752661049366, - -0.31354016065597534, - -0.3823505938053131, - 0.10191021859645844, - -0.44576528668403625, - -0.03433436155319214, - 0.20647485554218292, - 0.052926305681467056, - 0.3503561019897461, - 0.5004863142967224, - 0.2639497220516205, - 0.2079770267009735, - 0.054727159440517426, - -0.10874438285827637, - 0.02508053183555603, - -0.06723034381866455, - -0.3305467665195465, - 0.3164825737476349, - 0.25427624583244324, - 0.20953835546970367, - -0.16920702159404755, - 0.10252491384744644, - -0.10152190923690796, - -0.019739553332328796, - 0.825546145439148, - 0.2970251441001892, - 0.5253682732582092, - -0.9268602132797241, - 0.07763757556676865, - 0.5993531942367554, - -0.4951746165752411, - -0.4112546741962433, - 0.1170085072517395, - 0.8495710492134094, - 0.5978049039840698, - -0.26562660932540894, - 0.5536863207817078, - -0.2107943594455719, - -0.20749345421791077, - -0.1956603229045868, - -0.3153260350227356, - 0.10206307470798492, - -0.04633107781410217, - -0.23282606899738312, - 0.2553304433822632, - -0.07428460568189621, - -0.2271665632724762, - -0.06366129219532013, - -0.3269701898097992, - 0.1434250921010971, - -0.09974527359008789, - -0.4858466684818268, - -0.18079932034015656, - -0.15483060479164124, - -0.13648192584514618, - -0.04963322728872299, - 0.13289426267147064, - -0.050083644688129425, - 0.3013920187950134, - 0.013408088125288486, - 0.12621358036994934, - 0.1623779833316803, - -0.015037762001156807, - -0.20776908099651337, - -0.021395649760961533, - 0.31833362579345703, - -0.4040749967098236, - -0.0073650735430419445, - -0.15956464409828186, - -0.17060641944408417, - -0.3324948847293854, - 0.14997485280036926, - 0.07341399043798447, - -0.30214881896972656, - 0.04657912999391556, - -0.19396628439426422, - 0.1211518719792366, - 0.07473649084568024, - 0.4785465896129608, - 0.33849114179611206, - 0.9650000929832458, - -0.033908452838659286, - 0.2486945241689682, - 0.0474131740629673, - 0.3759557902812958, - -0.030329067260026932, - 0.375460684299469, - -0.010672705247998238, - 0.11453807353973389, - -0.516088604927063, - 0.23890535533428192, - 0.4391511380672455, - 0.016528120264410973, - -0.14482520520687103, - 0.01259241160005331, - -0.2875552475452423, - 0.21400086581707, - 0.05319174751639366, - -0.12038993090391159, - 0.24414587020874023, - 0.21481692790985107, - -0.27524253726005554, - -0.021561790257692337, - -0.11951722204685211, - 0.36043581366539, - 0.13756878674030304, - -0.4818015992641449, - 0.011960494332015514, - -0.1381303369998932, - -0.011047827079892159, - 0.025360286235809326, - 0.02148537151515484, - -0.5142020583152771, - -0.13058771193027496, - -0.015643078833818436, - 0.17149360477924347, - -0.053242795169353485, - 0.2714352011680603, - -0.4371272623538971, - 0.10069214552640915, - -1.0930465459823608, - 0.16704954206943512, - -0.3853028118610382, - -0.09317038208246231, - -0.03483106568455696, - -0.5520843863487244, - -0.261414110660553, - -0.2191941738128662, - -0.10704045742750168, - 0.24270357191562653, - -0.08016303926706314, - -0.01283736526966095, - -0.10287600755691528, - 0.07669997215270996, - 0.185138538479805, - 0.30539628863334656, - 0.2073126882314682, - 0.10010631382465363, - 0.1790449321269989, - 0.243938609957695, - 0.08663559705018997, - -0.09823954105377197, - -0.030956124886870384, - 0.435149222612381, - 0.10379458963871002, - -0.03670407459139824, - -0.08091031759977341, - -0.7236076593399048, - 0.20303641259670258, - -0.14431419968605042, - 0.12507636845111847, - 0.10269588977098465, - -0.10577156394720078, - 0.10721725970506668, - -0.14168314635753632, - 0.6176190376281738, - 0.2606644034385681, - 0.34523656964302063, - 0.06204739585518837, - -0.041453707963228226, - 0.09803355485200882, - 0.16627158224582672, - 0.1633601039648056, - -0.195724755525589, - 0.577901303768158, - 0.19729936122894287, - -0.24194809794425964, - 0.2083078920841217, - 0.39551210403442383, - 0.011209050193428993, - -0.0754472091794014, - -0.044786762446165085, - 0.5327540040016174, - -0.2767825424671173, - 0.5223562717437744, - -0.3016781806945801, - -0.061180856078863144, - 0.20239917933940887, - -0.14658737182617188, - -0.05267323926091194, - 0.04460075870156288, - -0.09599912166595459, - 0.16033805906772614, - 0.05135471001267433, - -0.3419322371482849, - 0.16747458279132843, - 0.1425715535879135, - 0.014990425668656826, - 0.2158341109752655, - 0.030288109555840492, - 0.02575424686074257, - 0.10041394084692001, - -0.27617529034614563, - 0.2767980992794037, - -0.021382054314017296, - 0.14902694523334503, - 0.09670872986316681, - -0.41769513487815857, - 0.27342087030410767, - -0.0073138573206961155, - 0.013851702213287354, - 0.18614710867404938, - -0.020694341510534286, - -0.1495913714170456, - 0.05278085917234421, - -0.14652502536773682, - -0.4609500467777252, - 0.1858759969472885, - 0.14508987963199615, - 0.25713998079299927, - 0.31191110610961914, - -0.0673680305480957, - 0.04839605838060379, - -0.5039416551589966, - 0.2567088305950165, - -0.04183363914489746, - -0.02425752580165863, - -0.19425848126411438, - 0.16814061999320984, - -0.1144481971859932, - 0.12266509234905243, - 0.422315388917923, - -0.058221783488988876, - -0.007118482608348131, - 0.17276427149772644, - -0.30720043182373047, - -0.032304007560014725, - -0.3483777642250061, - 0.12562814354896545, - 0.3021952509880066, - 0.045553386211395264, - 0.26608118414878845, - 0.037222061306238174, - -0.08733604848384857, - 0.13259588181972504, - -0.2698078155517578, - -0.3026108741760254, - -0.4202382266521454, - -0.11895482987165451, - -0.12427578866481781, - -0.4856295585632324, - 0.19330117106437683, - -0.12733934819698334, - -0.04010988026857376, - 0.20476844906806946, - -0.3823299705982208, - -0.14120379090309143, - 0.07184554636478424, - 0.014332869090139866, - 0.016553731635212898, - -0.11087831109762192, - 0.1566164493560791, - -0.1798570305109024, - -0.17090392112731934, - -0.17681419849395752, - -0.04232543706893921, - 0.10573237389326096, - 0.1124519556760788, - -0.17589738965034485, - 0.044352468103170395, - 0.10174260288476944, - -0.4261125922203064, - -0.2859351336956024, - 0.30395904183387756, - -0.17235806584358215, - 0.30461910367012024, - 0.13674460351467133, - 0.27799472212791443, - 0.39154696464538574, - 0.08176745474338531, - 0.1402559131383896, - 0.3746100962162018, - 0.5237788558006287, - 0.061968155205249786, - 0.08954394608736038, - -0.06494670361280441, - -0.06615713983774185, - -0.06982745975255966, - -0.39971670508384705, - 0.3896321654319763, - -0.06382781267166138, - 0.015199712477624416, - 0.0009070123778656125, - 0.21233275532722473, - -0.027387630194425583, - -0.3505243957042694, - -0.08762837201356888, - 0.3786598742008209, - 0.2461361587047577, - 0.17190144956111908, - 0.09034208208322525, - 0.19577565789222717, - 0.3864634335041046, - -0.05548859387636185, - -0.044401850551366806, - 0.11642272025346756, - 0.07043582201004028, - -0.2615503668785095, - -0.05945565924048424, - 0.1753360778093338, - 0.40019962191581726, - -0.09456854313611984, - -0.19419200718402863, - 0.06432364135980606, - -0.15855105221271515, - -0.017040152102708817, - -0.21125541627407074, - -0.04380294308066368, - 0.0824279710650444, - -0.2759086787700653, - 0.3164060413837433, - -0.0778120905160904, - -0.05720840021967888, - 0.41777944564819336, - -0.3501738905906677, - -0.22583164274692535, - 0.2497851848602295, - -0.05178454518318176, - -0.46815916895866394, - 0.3462750315666199, - -0.0281272791326046, - -0.035898420959711075, - 0.39775896072387695, - -0.20493756234645844, - -0.1451864391565323, - -0.15395762026309967, - 0.3214016854763031, - -0.0007088780403137207, - 0.012811516411602497, - -0.02787075750529766, - 0.013090627267956734, - 0.21375982463359833, - 0.612976610660553, - 0.09666085243225098, - 0.2000362128019333, - 0.5911549925804138, - 0.10437057167291641, - -0.13167546689510345, - -0.007617514114826918, - -0.022030310705304146, - 0.23068472743034363, - -0.11277952045202255, - -0.09987913072109222, - -0.1995953470468521, - 0.11865883320569992, - 0.2306796759366989, - -0.29442933201789856, - -0.007965735159814358, - 0.15121586620807648, - 0.048466991633176804, - -0.017325112596154213, - 0.3105219006538391, - 0.22490143775939941, - -0.11994929611682892, - 0.5684388279914856, - -0.03263520076870918, - -0.1643795222043991, - 0.33628901839256287, - -0.2454565316438675, - 0.1779405027627945, - 0.01328512467443943, - -0.2939531207084656, - -0.374634325504303, - -0.0030266190879046917, - -0.23024095594882965, - -0.21842244267463684, - -0.0533255934715271, - -0.11790748685598373, - 0.0739058256149292, - -0.2217341959476471, - 0.05350112169981003, - 0.1217028945684433, - 0.26977601647377014, - 0.19499698281288147, - 0.35089948773384094, - 0.009212540462613106, - -0.34125661849975586, - 0.15764521062374115, - -0.017691481858491898, - 0.005653989966958761, - -0.08324495702981949, - -0.019195199012756348, - -0.0535406768321991, - 0.5679190754890442, - -0.054166506975889206, - 0.0133430827409029, - 0.03241809085011482, - -0.08832405507564545, - -0.15045571327209473, - -0.4577508866786957, - -0.06303201615810394, - -0.17879025638103485, - 0.05808735638856888, - 0.15435217320919037, - 0.11188488453626633, - -0.24792326986789703, - -0.17106327414512634, - -0.043231163173913956, - -0.011110684834420681, - 0.14811845123767853, - -0.10222721844911575, - -0.05742453411221504, - 0.3017112910747528, - 0.12147621065378189, - 0.43410173058509827, - -0.27961793541908264, - 0.08383768051862717, - 0.06349080801010132, - -0.3641655743122101, - -0.12110984325408936, - -0.06214771047234535, - -0.3881685435771942, - -0.11609654128551483, - 0.23257803916931152, - 0.29488393664360046, - -0.0178816057741642, - -0.03251179680228233, - 0.07553087919950485, - 0.16103895008563995, - -0.3254483640193939, - -0.07450295984745026, - 0.19226765632629395, - 0.17536762356758118, - 0.37501975893974304, - -0.025337358936667442, - -0.48070722818374634, - -0.24059703946113586, - -0.009424812160432339, - -0.3612661361694336, - 0.21655051410198212, - 0.18071866035461426, - -0.08509962260723114, - -0.15587687492370605, - -0.009846575558185577, - -0.1860634982585907, - -0.09066420048475266, - 0.1964496672153473, - -0.041065093129873276, - 0.307549387216568, - 0.011439068242907524, - -0.3218701183795929, - 3.6101257137488574e-05, - -0.20650658011436462, - -0.39621099829673767, - -0.1530836671590805, - 0.37734588980674744, - 0.2291632443666458, - -0.15881864726543427, - -0.04175961762666702, - 0.037115540355443954, - -0.22609277069568634, - -0.2753196358680725, - 0.07546082884073257, - -0.214421346783638, - 0.3947100043296814, - -0.09825844317674637, - -0.21710167825222015, - 0.11865855008363724, - -0.2514086365699768, - 0.05432453379034996, - 0.16592036187648773, - 0.019837437197566032, - 0.3350663483142853, - 0.16508731245994568, - 0.14133793115615845, - 0.4618324637413025, - 0.16800090670585632, - 0.1308952122926712, - 0.2610411047935486, - 0.041305433958768845, - 0.03668886423110962, - -0.26634734869003296, - -0.14032462239265442, - 0.3489757180213928, - -0.2770255506038666, - -0.01593068614602089, - 0.1536695510149002, - 0.2334093302488327, - -0.3478948175907135, - -0.3072466254234314, - 0.012269808910787106, - -0.06873487681150436, - -0.11498061567544937, - -0.26849350333213806, - -0.19852115213871002, - -0.04582706466317177, - -0.25253286957740784, - -0.09817782789468765, - 0.15455926954746246, - 0.3588576018810272, - 0.11117369681596756, - 0.10120289772748947, - -0.23112353682518005, - -0.30686622858047485, - 0.19748078286647797, - 0.22688592970371246, - 0.05778252333402634, - -0.036498188972473145, - -0.13458369672298431, - 0.26805001497268677, - 0.48100996017456055, - -0.01482084859162569, - -0.0071162814274430275, - -0.008503790013492107, - -0.06627122312784195, - -0.0937274694442749, - 0.11715925484895706, - -0.17045393586158752, - 0.05024878308176994, - -0.3430708050727844, - 0.1521095186471939, - -0.23651985824108124, - -0.19734278321266174, - 0.25913485884666443, - -0.26288411021232605, - -0.40088650584220886, - -0.23784871399402618, - 0.21869294345378876, - -0.08259259164333344, - -0.03804517909884453, - 0.10477829724550247, - 0.47259846329689026, - -0.004700360354036093, - -0.19043084979057312, - 0.017405148595571518, - -0.48736515641212463, - -0.2523077130317688, - 0.037511520087718964, - -0.048525888472795486, - -0.04319681599736214, - -0.00787732657045126, - 0.4427487850189209, - 0.5377885699272156, - 0.27027228474617004, - -0.333481103181839, - 0.10959271341562271, - 0.3255690932273865, - 0.2843661904335022, - -0.2505546510219574, - -10.654647827148438, - 0.031194070354104042, - -0.28193727135658264, - 0.6017528176307678, - -0.3235602378845215, - 0.06077531352639198, - 0.07019718736410141, - 0.0005207232316024601, - 0.06482665985822678, - 0.02499311976134777, - -0.27480170130729675, - -0.015362952835857868, - 0.204981729388237, - 0.348693311214447, - -0.021253900602459908, - -0.056552622467279434, - -0.2774498164653778, - 0.22319473326206207, - -0.01947801001369953, - 0.16658854484558105, - 0.10807299613952637, - 0.3027319312095642, - -0.21747533977031708, - 0.2739013135433197, - 0.049374036490917206, - -0.359483540058136, - -0.18652136623859406, - 0.47224846482276917, - 0.19934959709644318, - -0.33093908429145813, - 0.2813141942024231, - 0.2580116391181946, - -0.27672162652015686, - 0.07787070423364639, - -0.10773653537034988, - -0.075515016913414, - -0.0011001399252563715, - 0.09695673733949661, - 0.25531238317489624, - -0.056221265345811844, - 0.10402145236730576, - -0.21145184338092804, - 0.21088121831417084, - 0.3229428231716156, - -0.08466954529285431, - -0.4198654294013977, - -0.1657135933637619, - -1.6373947858810425, - 0.27488353848457336, - 0.3420321047306061, - 0.4814308285713196, - 0.07519418746232986, - 0.06128164753317833, - 0.2092587798833847, - -0.28377801179885864, - 0.1669389307498932, - -0.30006498098373413, - 0.02715397998690605, - 0.07749271392822266, - -0.05941170081496239, - 0.12979952991008759, - -0.22432170808315277, - 0.38847869634628296, - -0.10659105330705643, - -0.267580509185791, - 0.03963467851281166, - 0.037354711443185806, - -0.15561354160308838, - -0.26063862442970276, - -0.4386267364025116, - -0.4540724456310272, - 0.00944515224546194, - -0.0529281422495842, - -0.16354961693286896, - 0.2677425742149353, - -0.008236007764935493, - -0.48771634697914124, - 0.19996246695518494, - -0.036350902169942856, - 0.42238861322402954, - 0.26536720991134644, - -0.041730888187885284, - 0.05506131052970886, - -0.1061139777302742, - -0.27652889490127563, - -0.1462090015411377, - 0.11351436376571655, - 0.433709055185318, - -0.06417831033468246, - 0.03161386027932167, - 0.02727504074573517, - 0.40715596079826355, - -0.12358409911394119, - -0.20463064312934875, - -0.44660684466362, - 0.05458930507302284, - -0.038213979452848434, - 0.08127031475305557, - 0.05821714922785759, - -0.0911908969283104, - -0.1765953153371811, - 0.09240232408046722, - -0.13600783050060272, - -0.4405636787414551, - -0.48714178800582886, - 0.24027864634990692, - 0.09284399449825287, - 0.22925077378749847, - 0.18903973698616028, - -0.09158915281295776, - -0.1211928203701973, - 0.10753107815980911, - 0.2434326559305191, - 0.559352695941925, - 0.1600734442472458, - -0.08093452453613281, - -0.07386124134063721, - -0.2094700187444687, - -0.2189013957977295, - 0.05447763204574585, - 0.3791797459125519, - -0.08042730391025543, - 0.13882394134998322, - 0.5987772345542908, - -0.06865216046571732, - 0.008198936469852924, - 1.0333914756774902, - -0.3397672474384308, - 0.163704052567482, - -0.13775701820850372, - 0.16877523064613342, - -0.137618288397789, - -0.5134156942367554, - 0.16551412642002106, - 0.4436151087284088, - -0.34808090329170227, - 0.7037791013717651, - 0.15576942265033722, - -0.234120175242424, - 0.026723021641373634, - -0.20293639600276947, - 0.567287027835846, - 0.19554366171360016, - 0.17156434059143066, - -0.09365095943212509, - -0.38292649388313293, - -0.17347107827663422, - 0.11217623203992844, - -0.32200565934181213, - -0.18555739521980286, - -0.2189493179321289, - 0.0856126993894577, - 0.040070705115795135, - -0.2532980144023895, - 0.3874683082103729, - 0.1905737668275833, - -0.18037164211273193, - -0.2791435122489929, - -0.32822731137275696, - 0.0050958432257175446, - 0.13290508091449738, - 0.8165057897567749, - 0.03624973073601723, - -0.14220911264419556, - -0.15468361973762512, - 0.07723230123519897, - -0.16569530963897705, - 0.20368942618370056, - 0.0948202833533287, - 0.06273921579122543, - -0.5311828255653381, - 0.1821000874042511, - 0.15737369656562805, - -0.3652972877025604, - -0.1978296935558319, - -0.32589974999427795, - 0.03277477249503136, - -0.05508926138281822, - -0.14538607001304626, - 0.10450243949890137, - 0.364676296710968, - -0.007008946500718594, - 0.01040777750313282, - -0.2666504681110382, - 0.08394039422273636, - 0.06845252960920334, - 0.25433942675590515, - 0.005795760545879602, - -0.28979581594467163, - -0.37099844217300415, - -0.47360292077064514, - 0.29306164383888245, - -0.39265182614326477, - -0.15206895768642426, - 0.07584644109010696, - 0.1432015597820282, - -0.34454235434532166, - 0.1134193018078804, - -0.14534731209278107, - -0.14329001307487488, - -0.19986331462860107, - 0.1553807258605957, - 0.4451756775379181, - -0.3014802038669586, - 0.24748924374580383, - -0.22440750896930695, - 0.11168720573186874, - 0.09002811461687088, - -0.3058636784553528, - 0.2002572864294052, - -0.1841491311788559 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_037.json b/src/benchmark/output/results/results_graph_037.json deleted file mode 100644 index 7b05f26..0000000 --- a/src/benchmark/output/results/results_graph_037.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "The patient in question is a 55-year-old female who was diagnosed with lung adenocarcinoma. The patient's demographic information includes her age, sex, and the fact that she has never smoked.\n\nOver the course of several years, the patient underwent a series of diagnostic tests and treatments for her cancer. Initially, she experienced symptoms such as coughing and shortness of breath, which led to her diagnosis with lung adenocarcinoma (N1). Following this diagnosis, the patient underwent molecular testing to assess suitability for targeted therapies.\n\nThe results of these tests revealed that the patient had a mutation in the EGFR gene, specifically an exon 19 deletion. Based on this information, the patient was started on a regimen of cisplatin, pemetrexed, and pembrolizumab (N6). This treatment was initiated after a partial response to initial chemotherapy was observed on CT scans (N7).\n\nHowever, over time, the patient's cancer progressed, and she experienced a decline in her overall health. As a result, the treatment regimen was discontinued due to progressive disease (N8). Further analysis of the patient's tumor revealed an EGFR exon 19 variant, which is a specific type of mutation that can be targeted by certain therapies.\n\nDespite this new information, the patient did not respond to further treatment with targeted therapies. Her cancer continued to progress, and she experienced significant decline in her overall health. The patient's case highlights the challenges of treating lung cancer, particularly when it comes to identifying effective treatments for patients with specific genetic mutations.\n\nThroughout her treatment journey, the patient underwent a range of diagnostic tests and procedures, including CT scans, biopsies, and molecular testing. These tests helped guide her treatment plan and provided valuable information about the progression of her disease.\n\nIn summary, the patient's case is characterized by a complex and challenging treatment journey. Despite initial responses to targeted therapies, the patient ultimately did not respond to further treatment due to progressive disease. Her case highlights the importance of ongoing monitoring and adaptation in cancer treatment, as well as the need for continued research into effective treatments for patients with specific genetic mutations.\n\nTimeline:\n\n* N1: Patient diagnosed with lung adenocarcinoma\n* N2-N3: Molecular testing performed to assess suitability for targeted therapies\n* N4: Further characterization of tumor with PD-L1 expression and CT imaging for staging\n* N5: Pulmonary embolism detected, requiring anticoagulation. Staging revised.\n* N6: Initiation of immunochemotherapy with cisplatin, pemetrexed, and pembrolizumab\n* N7: Partial response to initial chemotherapy observed on CT scans\n* N8: Treatment discontinued due to progressive disease\n* N9: Further analysis of patient's tumor reveals EGFR exon 19 variant\n\nOutcomes:\n\n* Initial partial response to targeted therapies (N7)\n* Progressive disease despite treatment with targeted therapies (N8)\n* No further response to treatment with targeted therapies (N9)\n\nNote: The narrative is written in a coherent and concise manner, including the patient's demographic information, timeline of diagnoses, treatments, and outcomes.", - "bertscore": { - "precision": [ - 0.5877186059951782 - ], - "recall": [ - 0.5473370552062988 - ], - "f1": [ - 0.5668094754219055 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 2, - "node_count": 10, - "edge_count": 8, - "avg_in_degree": 0.8, - "density": 0.08888888888888889 - }, - "trajectory_embedding": [ - 0.2973478436470032, - 0.213597372174263, - -0.26652461290359497, - 0.14265039563179016, - -0.09238506853580475, - 0.058098435401916504, - 0.16162094473838806, - 0.17003603279590607, - 0.4512329697608948, - -0.4327089190483093, - -0.21140940487384796, - 0.13165901601314545, - -0.6449852585792542, - -0.04919489100575447, - -0.39067476987838745, - 0.09079138934612274, - -0.04448368027806282, - 0.2947588562965393, - -0.09124978631734848, - -0.22092291712760925, - -0.4013097286224365, - 0.16147540509700775, - -0.36732733249664307, - -0.07645691931247711, - 0.10481147468090057, - -0.1215447336435318, - 0.3616701662540436, - 0.5082522034645081, - 0.1629190593957901, - 0.31117504835128784, - 0.08973740041255951, - 0.06223168224096298, - -0.07807830721139908, - 0.09531733393669128, - -0.16955727338790894, - 0.29393118619918823, - 0.21584458649158478, - 0.2537279725074768, - -0.11761125177145004, - 0.09570920467376709, - -0.1760079711675644, - 0.050082217901945114, - 0.8954157829284668, - 0.25541022419929504, - 0.3878576457500458, - -0.5051566362380981, - -0.05349203199148178, - 0.47098201513290405, - -0.48809513449668884, - 0.0024508386850357056, - 0.221343994140625, - 0.6111078858375549, - 0.6481034159660339, - -0.07303118705749512, - 0.4072049558162689, - -0.15507812798023224, - -0.38532429933547974, - -0.17310844361782074, - -0.14275242388248444, - 0.05447354167699814, - 0.046874724328517914, - -0.0348333939909935, - 0.17956112325191498, - -0.047438256442546844, - -0.20832940936088562, - -0.18655821681022644, - -0.1803850680589676, - 0.0523335337638855, - -0.07601999491453171, - -0.34485745429992676, - -0.3074684739112854, - -0.3965626358985901, - -0.1764480173587799, - 0.24516117572784424, - 0.170719176530838, - -0.26435622572898865, - 0.2646937966346741, - 0.09200415760278702, - 0.15559960901737213, - 0.21181431412696838, - 0.1924770623445511, - -0.14759990572929382, - 0.08006152510643005, - 0.2910420894622803, - -0.3429906964302063, - 0.10225282609462738, - -0.013849297538399696, - -0.17029643058776855, - -0.3592832684516907, - 0.21575042605400085, - 0.1993679255247116, - -0.2658345103263855, - -0.11619627475738525, - -0.16343644261360168, - 0.004971387796103954, - 0.2087996006011963, - 0.20657765865325928, - 0.39146196842193604, - 0.8019098043441772, - 0.01737063005566597, - 0.16552743315696716, - 0.12958519160747528, - 0.19294001162052155, - 0.07133597135543823, - 0.4281597137451172, - -0.16402967274188995, - 0.14510966837406158, - -0.2977446913719177, - 0.15746696293354034, - 0.495241641998291, - 0.038712989538908005, - -0.26821693778038025, - -0.010437739081680775, - -0.2725454866886139, - 0.009451168589293957, - 0.10854083299636841, - -0.11238207668066025, - 0.15970543026924133, - 0.19025513529777527, - -0.5451871156692505, - -0.08637170493602753, - -0.06512601673603058, - 0.28337159752845764, - 0.32532745599746704, - -0.46347957849502563, - -0.22820024192333221, - -0.06759292632341385, - 0.01915283128619194, - -0.019707363098859787, - 0.16894379258155823, - -0.47493499517440796, - -0.2021845579147339, - 0.05014742165803909, - 0.12899740040302277, - -0.15750335156917572, - 0.4687170088291168, - -0.43115004897117615, - 0.00222128932364285, - -1.1725469827651978, - 0.13302549719810486, - -0.4249756932258606, - -0.11209161579608917, - 0.018784333020448685, - -0.5223278403282166, - -0.17774038016796112, - -0.10537439584732056, - -0.05421264097094536, - 0.15576796233654022, - -0.1559542566537857, - -0.09126315265893936, - 0.024734515696763992, - -0.03133287653326988, - 0.06073453277349472, - 0.4140976071357727, - 0.07258490473031998, - 0.12791317701339722, - -0.03050878271460533, - 0.27307912707328796, - 0.11075305938720703, - -0.19481100142002106, - 0.01591655984520912, - 0.412691205739975, - -0.03220333904027939, - 0.026956405490636826, - 0.060401421040296555, - -0.5861829519271851, - 0.10715758800506592, - -0.21102610230445862, - 0.07973615825176239, - 0.12372688949108124, - -0.1854279339313507, - 0.08971013873815536, - -0.20292463898658752, - 0.609667181968689, - 0.1571153849363327, - 0.5700043439865112, - -0.12571534514427185, - -0.013475027866661549, - 0.11781152337789536, - 0.142976775765419, - 0.09768368303775787, - -0.06703364849090576, - 0.5550130605697632, - 0.28725486993789673, - -0.36831629276275635, - 0.07751074433326721, - 0.508210301399231, - -0.2861294746398926, - -0.21691632270812988, - -0.1253993809223175, - 0.46061915159225464, - -0.1888410747051239, - 0.2803370952606201, - -0.382000207901001, - -0.06865362823009491, - 0.09472014009952545, - -0.26802757382392883, - -0.18275415897369385, - 0.11181322485208511, - -0.2345077097415924, - 0.18389199674129486, - 0.17216119170188904, - -0.2985478937625885, - 0.14144939184188843, - 0.11846604198217392, - -0.11264567077159882, - 0.12347477674484253, - 0.11150451004505157, - 0.011584704741835594, - -0.16619789600372314, - -0.18064825236797333, - 0.15645132958889008, - -0.008765440434217453, - 0.3310428261756897, - 0.0614660307765007, - -0.33525675535202026, - 0.21181175112724304, - -0.09236069768667221, - -0.3500283658504486, - 0.051085926592350006, - -0.08758890628814697, - -0.14285150170326233, - 0.24453215301036835, - 0.10465411841869354, - -0.36580219864845276, - 0.28598910570144653, - 0.23143625259399414, - 0.22953660786151886, - 0.01871364191174507, - -0.2009701281785965, - 0.06678597629070282, - -0.21763975918293, - 0.3575296998023987, - -0.0789748877286911, - -0.2550181448459625, - -0.3563215136528015, - 0.22337131202220917, - -0.14263352751731873, - -0.1901821494102478, - 0.49777641892433167, - -0.19807183742523193, - -0.058700717985630035, - 0.08448483794927597, - -0.2789837718009949, - -0.11738188564777374, - -0.2510851323604584, - -0.02987564727663994, - 0.3571155071258545, - 0.010183041915297508, - 0.353248655796051, - 0.1966777890920639, - -0.13223674893379211, - 0.14124663174152374, - -0.33031079173088074, - -0.27848559617996216, - -0.22934982180595398, - -0.10922446101903915, - -0.10035461187362671, - -0.5089799761772156, - -0.024540742859244347, - 0.2082904577255249, - -0.20562133193016052, - 0.21504418551921844, - -0.3874787390232086, - -0.07064901292324066, - -0.03493073210120201, - -0.014895627275109291, - 0.2860996723175049, - -0.21455781161785126, - 0.11338420957326889, - -0.41343894600868225, - -0.2761160731315613, - -0.11668294668197632, - 0.02228325605392456, - 0.23291876912117004, - -0.0399942621588707, - -0.1813070923089981, - 0.26624444127082825, - 0.1562185436487198, - -0.4010644555091858, - -0.24476781487464905, - -0.046863723546266556, - -0.27363523840904236, - 0.17972047626972198, - -0.2614172101020813, - 0.23991632461547852, - 0.4640532433986664, - 0.08323635160923004, - 0.23543235659599304, - 0.39431342482566833, - 0.5862389802932739, - -0.05206901580095291, - -0.012436216697096825, - -0.05129052326083183, - -0.061137668788433075, - 0.06973104178905487, - -0.39175665378570557, - 0.18626460433006287, - -0.05618595331907272, - 0.009050287306308746, - 0.0759764239192009, - 0.22606368362903595, - 0.06770393997430801, - -0.27815598249435425, - -0.13576015830039978, - 0.5364671945571899, - 0.16922199726104736, - 0.14975401759147644, - 0.09235069900751114, - 0.20343372225761414, - 0.40856271982192993, - 0.022928863763809204, - -0.11065566539764404, - 0.1398947536945343, - -0.29040345549583435, - -0.20986270904541016, - -0.04363910108804703, - 0.045766279101371765, - 0.364615261554718, - -0.06531036645174026, - -0.16994979977607727, - 0.25446227192878723, - -0.17777885496616364, - -0.2554882764816284, - -0.2144250124692917, - -0.11850105226039886, - 0.0324387326836586, - -0.3016135096549988, - 0.22730514407157898, - -0.06062645837664604, - -0.033094823360443115, - 0.5622068643569946, - -0.28498393297195435, - -0.2379269152879715, - 0.2500808835029602, - -0.09614171087741852, - -0.33580026030540466, - 0.3652879595756531, - -0.1803927719593048, - 0.01848425529897213, - 0.26712673902511597, - -0.23106904327869415, - -0.09390359371900558, - -0.0019821436144411564, - 0.10353271663188934, - -0.0643811747431755, - 0.09111706912517548, - -0.10355448722839355, - 0.1396629363298416, - 0.08426008373498917, - 0.5377449989318848, - 0.030694177374243736, - -0.026042599231004715, - 0.4147464632987976, - 0.04717271775007248, - -0.3038320541381836, - 0.07666710764169693, - -0.046703290194272995, - 0.15105560421943665, - -0.20138518512248993, - -0.12935759127140045, - -0.19987863302230835, - 0.23017458617687225, - 0.06214697286486626, - -0.24626168608665466, - 0.10661985725164413, - 0.08055945485830307, - -0.13787630200386047, - -0.04283718019723892, - 0.3989357352256775, - 0.19997480511665344, - 0.012587687000632286, - 0.5725971460342407, - 0.14587512612342834, - -0.0548894889652729, - 0.43835654854774475, - -0.07325377315282822, - 0.22422996163368225, - -0.045496616512537, - -0.32483819127082825, - -0.4419119954109192, - 0.0265636146068573, - -0.15983964502811432, - -0.13791406154632568, - -0.03825017809867859, - 0.024120474234223366, - -0.007683011703193188, - -0.18670760095119476, - 0.1150592789053917, - -0.12860457599163055, - 0.07255706191062927, - 0.057273030281066895, - 0.4032866060733795, - -0.08005695790052414, - -0.29634037613868713, - 0.13799817860126495, - 0.006743135862052441, - 0.24499090015888214, - -0.15817740559577942, - -0.08799348026514053, - -0.24228839576244354, - 0.4525067210197449, - -0.1212744265794754, - 0.09071303904056549, - 0.042748063802719116, - -0.0765172690153122, - -0.28938910365104675, - -0.46453237533569336, - 0.021910443902015686, - -0.02915680967271328, - -0.05457048490643501, - -0.17508363723754883, - 0.15402619540691376, - -0.04426188766956329, - -0.0745949000120163, - 0.09148772060871124, - 0.2803412973880768, - 0.23326678574085236, - -0.039588190615177155, - -0.06698165833950043, - 0.21509341895580292, - 0.12744097411632538, - 0.2930554747581482, - -0.32917895913124084, - 0.1767800748348236, - 0.0920964926481247, - -0.22417306900024414, - -0.03471262380480766, - -0.057953130453825, - -0.3101775050163269, - -0.03905202075839043, - 0.1290661096572876, - 0.13012287020683289, - 0.08808144927024841, - -0.022642692551016808, - 0.06921499222517014, - 0.2892024517059326, - -0.38980361819267273, - 0.04063274338841438, - 0.5117343664169312, - -0.14894169569015503, - 0.3270763158798218, - 0.027538836002349854, - -0.3831321597099304, - -0.09090112149715424, - -0.07629010081291199, - -0.37587255239486694, - 0.15296564996242523, - 0.2712826132774353, - -0.11867306381464005, - 0.03917580470442772, - 0.131465345621109, - 0.04729241877794266, - 0.01785494200885296, - 0.20670528709888458, - -0.029845058917999268, - 0.09780724346637726, - 0.07928798347711563, - -0.2560034990310669, - -0.10519541800022125, - -0.3386109471321106, - -0.33001118898391724, - -0.34942856431007385, - 0.294278085231781, - 0.1615186482667923, - -0.14234912395477295, - 0.15182936191558838, - 0.14393678307533264, - -0.25144854187965393, - -0.15611104667186737, - 0.11422040313482285, - -0.10238836705684662, - 0.5891097784042358, - 0.007394374813884497, - -0.21312138438224792, - 0.09602656215429306, - -0.16908420622348785, - 0.1631808578968048, - 0.08169858902692795, - 0.23632323741912842, - 0.2923133373260498, - 0.10109759867191315, - 0.11452126502990723, - 0.5235501527786255, - 0.15824057161808014, - 0.04312866926193237, - 0.37589818239212036, - -0.13536080718040466, - 0.052887000143527985, - -0.1610853374004364, - -0.20490813255310059, - 0.4927009046077728, - -0.423657089471817, - 0.09103773534297943, - 0.06869743764400482, - 0.30930647253990173, - -0.350879043340683, - -0.24091704189777374, - -0.038427017629146576, - 0.0063919080421328545, - -0.04856549948453903, - -0.28427934646606445, - -0.2623208165168762, - -0.06848406791687012, - -0.3110581040382385, - 0.040416356176137924, - 0.2509314715862274, - 0.3714333474636078, - 0.22620555758476257, - 0.09557143598794937, - -0.2422196865081787, - -0.44983309507369995, - 0.18362456560134888, - 0.32792988419532776, - -0.0027221888303756714, - 0.00204869220033288, - -0.16000083088874817, - 0.2171756476163864, - 0.5056746006011963, - -0.040909506380558014, - 0.002422693418338895, - -0.034768469631671906, - -0.13322417438030243, - -0.018557976931333542, - 0.05730031058192253, - -0.12884724140167236, - -0.07118363678455353, - -0.39532214403152466, - -0.05097319558262825, - -0.23715421557426453, - -0.18845930695533752, - 0.14217384159564972, - -0.187659353017807, - -0.40690869092941284, - -0.15335458517074585, - 0.06428486108779907, - -0.1709611564874649, - -0.21363499760627747, - 0.2198450118303299, - 0.36419227719306946, - 0.10657863318920135, - -0.1191234439611435, - 0.19758570194244385, - -0.4217056334018707, - -0.20196814835071564, - 0.22621753811836243, - -0.1609797179698944, - 0.08323772251605988, - 0.1843278706073761, - 0.31647956371307373, - 0.5150335431098938, - 0.35291439294815063, - -0.4961211085319519, - 0.09716646373271942, - 0.31784433126449585, - 0.24514997005462646, - -0.2021578997373581, - -10.58022689819336, - 0.005444732494652271, - -0.265595018863678, - 0.4934682250022888, - -0.09411946684122086, - 0.04887791723012924, - 0.062089819461107254, - 0.004052475094795227, - 0.16391341388225555, - 0.2929508686065674, - -0.3008149266242981, - -0.002367305802181363, - 0.15883943438529968, - 0.3216325044631958, - 0.06972253322601318, - 0.1690843105316162, - -0.18157540261745453, - 0.24679982662200928, - -0.08996591717004776, - 0.10121452808380127, - 0.2354227602481842, - 0.3276650011539459, - -0.19483743607997894, - 0.19064810872077942, - 0.124934121966362, - -0.26368585228919983, - -0.2707363963127136, - 0.44860273599624634, - 0.18514588475227356, - -0.39377567172050476, - 0.31197792291641235, - 0.1126205325126648, - -0.04166038706898689, - -0.03555299714207649, - -0.03155214339494705, - -0.13588352501392365, - -0.12299750000238419, - 0.06515569239854813, - 0.1015859842300415, - -0.15831699967384338, - 0.10040418058633804, - -0.3544919192790985, - 0.25091999769210815, - 0.24154695868492126, - -0.04679108411073685, - -0.4619430601596832, - -0.19225957989692688, - -1.5464177131652832, - 0.20526275038719177, - 0.17336954176425934, - 0.4919271469116211, - 0.02159770391881466, - 0.20877256989479065, - 0.18739715218544006, - -0.36831727623939514, - 0.07567764818668365, - -0.23463666439056396, - 0.16263660788536072, - 0.08419414609670639, - -0.10430750995874405, - 0.10333720594644547, - -0.04357994347810745, - 0.4601929783821106, - -0.2945036292076111, - -0.1644243746995926, - 0.17097538709640503, - -0.09466743469238281, - 0.05683464556932449, - -0.186793714761734, - -0.4027867317199707, - -0.5264387130737305, - 0.018406063318252563, - -0.05152442306280136, - -0.013640833087265491, - 0.39025214314460754, - -0.11472894251346588, - -0.4678116738796234, - 0.1675339639186859, - 0.1444229632616043, - 0.2968531847000122, - 0.11648932844400406, - 0.016348857432603836, - 0.13745588064193726, - -0.1719651073217392, - -0.08935602009296417, - -0.11625640094280243, - 0.08322218060493469, - 0.4513916075229645, - -0.10350003093481064, - -0.0703771784901619, - -0.0277300663292408, - 0.27957993745803833, - -0.2072618007659912, - -0.24752464890480042, - -0.5470784306526184, - 0.15738996863365173, - 0.06665913015604019, - 0.04071533679962158, - -0.049143172800540924, - -0.11508007347583771, - -0.17451879382133484, - -0.13020919263362885, - -0.0753975361585617, - -0.6041489839553833, - -0.351938396692276, - 0.28922176361083984, - 0.19882933795452118, - 0.18434293568134308, - 0.05909193679690361, - 0.02635478973388672, - -0.05624305084347725, - -0.06870351731777191, - 0.43173718452453613, - 0.5605422258377075, - 0.22557029128074646, - -0.08129461109638214, - -0.03435127064585686, - -0.13852140307426453, - -0.30092865228652954, - -0.04569672420620918, - 0.3390794098377228, - 0.0709572583436966, - 0.3220478594303131, - 0.5347108840942383, - 0.03689277544617653, - -0.11817999184131622, - 0.8385425806045532, - -0.42226800322532654, - 0.24951677024364471, - -0.09464509785175323, - 0.18243902921676636, - 0.07340744137763977, - -0.23596234619617462, - 0.005514123942703009, - 0.3640301525592804, - -0.2906130254268646, - 0.5534473657608032, - 0.04018903896212578, - -0.42959514260292053, - -0.0274212546646595, - -0.17367762327194214, - 0.3885131776332855, - 0.17389187216758728, - 0.25799280405044556, - -0.18639126420021057, - -0.384760320186615, - -0.368904709815979, - 0.06469441950321198, - -0.2645883858203888, - -0.2184680700302124, - -0.242640420794487, - 0.11357139050960541, - -0.10655967891216278, - -0.10258479416370392, - 0.36288535594940186, - 0.08958837389945984, - -0.16098830103874207, - -0.1333162784576416, - -0.42179951071739197, - -0.0239111240953207, - 0.2437087744474411, - 0.6975666284561157, - 0.18152295053005219, - -0.19107434153556824, - -0.1566355675458908, - 0.23030658066272736, - -0.15923252701759338, - 0.12921693921089172, - 0.055664945393800735, - -0.038543809205293655, - -0.44299501180648804, - 0.16891300678253174, - 0.213231161236763, - -0.3842950463294983, - -0.12327797710895538, - -0.2993555963039398, - 0.21591690182685852, - -0.08203113079071045, - -0.24864032864570618, - 0.19900526106357574, - 0.24735553562641144, - -0.12726765871047974, - 0.11446864902973175, - -0.2274194210767746, - 0.01693538948893547, - 0.20020437240600586, - 0.3488924503326416, - 0.16091245412826538, - -0.1850658655166626, - -0.36891740560531616, - -0.4010939598083496, - 0.0974682867527008, - -0.26090818643569946, - -0.10710962116718292, - 0.18155668675899506, - 0.1300736665725708, - -0.22400347888469696, - 0.2102278172969818, - -0.18260139226913452, - -0.009944267570972443, - -0.27348706126213074, - 0.22790125012397766, - 0.30052268505096436, - -0.34951770305633545, - 0.1577243059873581, - -0.10395818948745728, - 0.42517250776290894, - 0.24142396450042725, - -0.17577549815177917, - 0.23884205520153046, - -0.27828699350357056 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_038.json b/src/benchmark/output/results/results_graph_038.json deleted file mode 100644 index ccf2a61..0000000 --- a/src/benchmark/output/results/results_graph_038.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is an adult with a history of grade 3-4 cutaneous toxicity induced by PD-1 inhibitors. The exact age, sex, and medical history are not provided in the data, but it can be inferred that the patient has undergone significant treatment for this condition.\n\n**Timeline of Diagnoses and Treatments:**\n\n1. **Grade 3-4 Cutaneous Toxicity Induced by PD-1 Inhibitors (N1)**:\nThe patient experienced severe cutaneous toxicity due to PD-1 inhibitors, which led to stabilization with Traditional Chinese Medicine (TCM) intervention and initiation of glucocorticoid reduction.\n\n2. **Stabilization with TCM Intervention and Glucocorticoid Reduction (N2)**:\nAfter experiencing grade 3-4 cutaneous toxicity, the patient stabilized with TCM intervention and initiated glucocorticoid reduction.\n\n3. **Tapering Off Methylprednisolone (80mg/day Intravenously for Ten Days) Over Four Months (N3)**:\nThe patient tapered off methylprednisolone over four months to stop new blister formation, along with topical ointment.\n\n4. **Development of Pulmonary Fungal Infection Suspected to be Related to Prolonged Glucocorticoid Use (N4)**:\nAfter tapering off methylprednisolone, the patient developed a pulmonary fungal infection, which was suspected to be related to prolonged glucocorticoid use.\n\n5. **Initial TCM Prescription with Yu-Ping-Feng (N5)**:\nThe patient initially received a TCM prescription with Yu-Ping-Feng after developing a pulmonary fungal infection.\n\n6. **Development of Thirst, Self-Consciousness of Dryness and Heat, Hyperphagia, and Irritability After Intravenous Methylprednisolone Sodium Succinate (N6)**:\nAfter a week of intravenous methylprednisolone sodium succinate, the patient developed symptoms such as thirst, self-consciousness of dryness and heat, hyperphagia, and irritability.\n\n7. **Changes to TCM Prescriptions with Bubali Cornu, Sophorae Flavescentis Radix, Mori Cortex, Aurantii Fructus, and Ophiopogonis Radix (N7)**:\nDamp-dispelling herbs were removed to protect Yin, and herbs clearing the Qi system were replaced with Bubali Cornu, Sophorae Flavescentis Radix, Mori Cortex, Aurantii Fructus, and Ophiopogonis Radix to enhance the removal of heat-toxin.\n\n8. **Safe Switch from Intravenous Methylprednisolone to Oral Prednisone Dosed Once-Daily (N8)**:\nThe patient's stable status and normal liver function allowed a safe switch from intravenous methylprednisolone to oral prednisone, dosed once-daily.\n\n**Outcomes:**\nThe patient's symptoms improved significantly after the changes to TCM prescriptions. The patient was able to tolerate oral prednisone without any adverse effects, and their liver function remained normal. However, the exact outcome of the treatment is not explicitly stated in the data.\n\nIn conclusion, this clinical case report highlights the complexities of treating patients with grade 3-4 cutaneous toxicity induced by PD-1 inhibitors. The patient's response to TCM intervention and glucocorticoid reduction was significant, but further treatment was necessary to manage the development of a pulmonary fungal infection and subsequent symptoms. The safe switch from intravenous methylprednisolone to oral prednisone demonstrates the importance of careful medication management in this patient population.", - "bertscore": { - "precision": [ - 0.5299550294876099 - ], - "recall": [ - 0.5345411896705627 - ], - "f1": [ - 0.5322381854057312 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 2, - "node_count": 9, - "edge_count": 7, - "avg_in_degree": 0.7777777777777778, - "density": 0.09722222222222222 - }, - "trajectory_embedding": [ - 0.11096694320440292, - 0.09814351052045822, - -0.15955545008182526, - 0.21349959075450897, - -0.02232399582862854, - 0.10406240075826645, - -0.16111865639686584, - 0.38304680585861206, - 0.6322689652442932, - -0.14967861771583557, - -0.019383201375603676, - -0.15255877375602722, - -0.48460114002227783, - -0.21101084351539612, - -0.18652847409248352, - 0.2237519919872284, - -0.35093915462493896, - 0.1792953759431839, - -0.2576954662799835, - -0.2629040479660034, - -0.13744591176509857, - 0.09256409108638763, - -0.579329788684845, - 0.052764132618904114, - 0.13591617345809937, - 0.031127307564020157, - 0.42838770151138306, - 0.755632758140564, - 0.06690151989459991, - 0.1595149040222168, - 0.10755161195993423, - -0.36243513226509094, - 0.2540861964225769, - -0.06710419803857803, - -0.33676305413246155, - 0.0544854998588562, - 0.22047190368175507, - 0.3467787206172943, - -0.12434180825948715, - -0.12060920894145966, - -0.2097601741552353, - 0.17709583044052124, - 0.9916751384735107, - 0.11805779486894608, - 0.21766889095306396, - -0.7694767117500305, - -0.1776343286037445, - 0.7524600028991699, - -0.37611979246139526, - -0.21556955575942993, - 0.27681195735931396, - 0.741287887096405, - 0.46259161829948425, - -0.5294979810714722, - 0.36156395077705383, - -0.15170904994010925, - -0.1131741851568222, - -0.3664877414703369, - -0.1744987964630127, - 0.09441085904836655, - 0.039002321660518646, - -0.3585163354873657, - 0.6711829304695129, - -0.273953914642334, - -0.047657836228609085, - -0.16615942120552063, - -0.23273932933807373, - 0.1425238698720932, - 0.0133562833070755, - -0.06516207754611969, - -0.07814106345176697, - -0.2662438452243805, - -0.13350264728069305, - 0.01828160509467125, - 0.005746646784245968, - -0.039629243314266205, - 0.43344414234161377, - -0.1815211921930313, - 0.3491738736629486, - 0.05949518457055092, - -0.11100511252880096, - -0.1031826063990593, - -0.27858731150627136, - 0.4201260209083557, - -0.30853503942489624, - -0.14857137203216553, - -0.3463233709335327, - -0.28507688641548157, - -0.3797454833984375, - 0.08532949537038803, - 0.1489504873752594, - -0.5008118152618408, - 0.17384938895702362, - -0.21591925621032715, - -0.14692895114421844, - 0.21281230449676514, - 0.673583447933197, - 0.06252697110176086, - 0.8609883189201355, - -0.057698629796504974, - 0.2908778786659241, - -0.11706838756799698, - 0.06050891801714897, - -0.08376114070415497, - 0.2629138231277466, - -0.06184472143650055, - 0.2532044053077698, - -0.4844442307949066, - 0.6310205459594727, - 0.682339072227478, - 0.031184760853648186, - -0.29941612482070923, - 0.08408540487289429, - -0.29507267475128174, - 0.3315143287181854, - 0.1786646991968155, - 0.06837114691734314, - 0.2536500096321106, - 0.3460349142551422, - -0.44823315739631653, - -0.21103838086128235, - -0.16849379241466522, - 0.3967326283454895, - 0.17946377396583557, - -0.36605024337768555, - -0.16460900008678436, - -0.025369038805365562, - -0.30198848247528076, - 0.15868231654167175, - 0.0263055469840765, - -0.5414605736732483, - -0.1632300615310669, - -0.07523421943187714, - -0.09640850126743317, - -0.03423990309238434, - 0.32866355776786804, - -0.161454439163208, - 0.051369860768318176, - -1.1143746376037598, - 0.2703211009502411, - -0.32900726795196533, - -0.19918721914291382, - -0.2194431573152542, - -0.704869270324707, - -0.20532503724098206, - -0.09950397908687592, - -0.11974433064460754, - 0.24888649582862854, - -0.40598511695861816, - 0.0549132414162159, - 0.08925364166498184, - -0.14703470468521118, - 0.3031095564365387, - 0.7340222001075745, - 0.04809822142124176, - -0.11288221180438995, - -0.11447307467460632, - 0.28821462392807007, - -0.03792644292116165, - -0.17417235672473907, - 0.20009610056877136, - 0.6038960814476013, - 0.14381863176822662, - 0.0445111058652401, - -0.13135214149951935, - -0.6046182513237, - -0.060972779989242554, - -0.0433608740568161, - 0.04829806089401245, - 0.06018994376063347, - -0.14848746359348297, - 0.04731335490942001, - -0.3612442910671234, - 0.7616428136825562, - -0.009236741811037064, - 0.45653530955314636, - 0.0034330924972891808, - 0.10930517315864563, - 0.24168092012405396, - 0.10067349672317505, - 0.1797146052122116, - -0.44450342655181885, - 0.5396683216094971, - 0.2514190971851349, - -0.19511288404464722, - 0.2423475831747055, - 0.19131073355674744, - 0.11378435045480728, - -0.20376867055892944, - 0.1808992624282837, - 0.4481717348098755, - -0.32256361842155457, - 0.6695543527603149, - -0.11566244065761566, - 0.14011964201927185, - 0.1273634135723114, - -0.10531384497880936, - 0.09148245304822922, - -0.285336434841156, - -0.07201946526765823, - 0.21050135791301727, - -0.041381847113370895, - -0.49066871404647827, - 0.06509243696928024, - 0.19474393129348755, - -0.04685936123132706, - -0.014967622235417366, - -0.1208847239613533, - 0.17745167016983032, - 0.13065661489963531, - -0.03692469745874405, - 0.2549859583377838, - -0.0825638622045517, - 0.359502375125885, - -0.029934650287032127, - -0.5379395484924316, - 0.11898196488618851, - 0.06324734538793564, - -0.011243489570915699, - 0.1004447340965271, - 0.276100754737854, - -0.3831581771373749, - -0.4770384728908539, - -0.06171063333749771, - -0.6023484468460083, - 0.24894316494464874, - 0.06558867543935776, - 0.29727670550346375, - 0.1439036875963211, - 0.17516174912452698, - 0.0061292145401239395, - -0.48459625244140625, - 0.2847411334514618, - -0.2535456120967865, - 0.0738820880651474, - -0.34903353452682495, - 0.31892189383506775, - 0.043691497296094894, - 0.4093663692474365, - 0.2525218725204468, - 0.15005594491958618, - -0.011220934800803661, - 0.13622871041297913, - -0.30878153443336487, - 0.02639634907245636, - -0.37762904167175293, - -0.11157353967428207, - 0.39494460821151733, - 0.1346600353717804, - 0.31426963210105896, - -0.0512457974255085, - -0.14548484981060028, - -0.032387662678956985, - -0.012404661625623703, - -0.5061594247817993, - -0.2941829562187195, - -0.040210265666246414, - -0.1909799724817276, - -0.730292797088623, - 0.38014236092567444, - 0.013451246544718742, - 0.08305002748966217, - 0.17208699882030487, - -0.21115560829639435, - -0.16167691349983215, - 0.07301309704780579, - 0.14842045307159424, - 0.0018437132239341736, - -0.2882061004638672, - -0.10533105581998825, - -0.09379182755947113, - -0.11429034173488617, - -0.2890179455280304, - -0.1314859837293625, - -0.0662643164396286, - 0.08160379528999329, - -0.5475301742553711, - 0.08358155190944672, - 0.11002501100301743, - -0.5335209369659424, - 0.05014076828956604, - 0.11922504007816315, - -0.0724244937300682, - 0.27119022607803345, - 0.0008462816476821899, - 0.4298717975616455, - 0.11349082738161087, - 0.22242143750190735, - 0.03489365428686142, - 0.5496230125427246, - 0.3988177180290222, - -0.27687838673591614, - 0.068184994161129, - -0.10560987889766693, - -0.08835184574127197, - -0.07959674298763275, - -0.2745913863182068, - 0.47444215416908264, - 0.1377435326576233, - 0.17711810767650604, - -0.1148691326379776, - 0.18417204916477203, - 0.1399654895067215, - -0.11958423256874084, - 0.2141556292772293, - 0.43207335472106934, - 0.11886775493621826, - 0.36992737650871277, - 0.24998249113559723, - 0.19101251661777496, - 0.24274900555610657, - -0.11485454440116882, - 0.15419620275497437, - 0.2181653082370758, - -0.09062042832374573, - -0.1570902019739151, - 0.03500900790095329, - 0.32365700602531433, - 0.5392236709594727, - -0.12707245349884033, - -0.38798201084136963, - -0.06203055754303932, - -0.12979844212532043, - -0.03885314241051674, - -0.5121693015098572, - -0.3091830015182495, - 0.025215934962034225, - -0.05099369212985039, - 0.3145470917224884, - 0.1441710740327835, - 0.025112999603152275, - 0.2815128266811371, - -0.5567547082901001, - -0.10302325338125229, - 0.0544283390045166, - -0.2472984790802002, - -0.35698750615119934, - 0.4556542634963989, - -0.15897229313850403, - 0.17166799306869507, - 0.22226981818675995, - -0.4391813576221466, - -0.05752166360616684, - 0.24191179871559143, - 0.386435329914093, - -0.10345914214849472, - 0.1257966309785843, - -0.18372994661331177, - 0.1973131000995636, - 0.06875592470169067, - 0.4368525743484497, - 0.20346803963184357, - 0.24414783716201782, - 0.703770637512207, - 0.2957010865211487, - -0.47173628211021423, - 0.20721769332885742, - -0.19453784823417664, - 0.34137412905693054, - -0.11981765180826187, - -0.048545725643634796, - -0.014322983101010323, - 0.1358354687690735, - 0.11356864869594574, - -0.37876829504966736, - 0.07289796322584152, - 0.10795333981513977, - 0.20826824009418488, - -0.10505754500627518, - 0.34612539410591125, - 0.016716670244932175, - -0.1105029359459877, - 0.44028207659721375, - -0.010290775448083878, - -0.17428046464920044, - 0.20569120347499847, - -0.15599007904529572, - 0.0924995094537735, - 0.08477663993835449, - -0.1603730320930481, - -0.1837363839149475, - 0.1687627136707306, - 0.02060273103415966, - -0.10788537561893463, - 0.021213017404079437, - -0.30608057975769043, - 0.07894399762153625, - -0.3232616186141968, - -0.03879879042506218, - 0.04067128896713257, - 0.19302017986774445, - 0.15682083368301392, - 0.22395163774490356, - 0.012915283441543579, - -0.09035996347665787, - 0.19163623452186584, - 0.1806972771883011, - -0.16807974874973297, - -0.3369539678096771, - 0.15517465770244598, - 0.03164779394865036, - 0.8229939341545105, - -0.07109613716602325, - 0.155751034617424, - 0.13962937891483307, - 0.0810731053352356, - -0.01533176563680172, - -0.30034998059272766, - 0.014433245174586773, - -0.10671631991863251, - 0.2275461107492447, - 0.11868398636579514, - -0.05935805290937424, - -0.42534053325653076, - -0.12232070416212082, - -0.12567710876464844, - -0.24731716513633728, - 0.04778143763542175, - -0.08576403558254242, - -0.3601688742637634, - 0.5160072445869446, - 0.3394938111305237, - 0.5518644452095032, - -0.4092137813568115, - 0.23642325401306152, - 0.16249312460422516, - -0.3679523468017578, - 0.059654027223587036, - -0.15197888016700745, - -0.4722755253314972, - -0.15543650090694427, - 0.21686992049217224, - 0.2835230529308319, - -0.12861743569374084, - -0.19731689989566803, - 0.10224252194166183, - 0.002561945468187332, - -0.19397491216659546, - -0.11094260960817337, - 0.26066267490386963, - 0.17770659923553467, - 0.20020407438278198, - 0.2578105628490448, - -0.643285870552063, - -0.3662745952606201, - -0.2263249307870865, - -0.33929187059402466, - -0.08539041876792908, - 0.36861303448677063, - 0.0329151451587677, - -0.23427444696426392, - 0.03748493641614914, - -0.005659520626068115, - -0.14696209132671356, - 0.3249629735946655, - -0.2003791779279709, - 0.2861466705799103, - 0.1490027755498886, - -0.030332934111356735, - 0.051328305155038834, - -0.1915437877178192, - -0.451997309923172, - -0.16619235277175903, - -0.0159862469881773, - 0.14825797080993652, - -0.4700322449207306, - -0.07689876854419708, - -0.004128515720367432, - -0.07696730643510818, - -0.13726696372032166, - -0.07669428735971451, - -0.24930283427238464, - 0.21970811486244202, - -0.26336386799812317, - -0.06546687334775925, - -0.038677748292684555, - 0.047630392014980316, - -0.14021289348602295, - 0.05542994663119316, - 0.00925268605351448, - 0.36258944869041443, - 0.023375254124403, - 0.013200799003243446, - 0.5848636627197266, - -0.03397350758314133, - 0.12850910425186157, - 0.249134361743927, - -0.06773443520069122, - 0.007326561026275158, - -0.33818209171295166, - -0.1918242871761322, - 0.22405779361724854, - -0.3834340274333954, - -0.22623328864574432, - 0.2603299617767334, - 0.21954506635665894, - -0.4137365221977234, - -0.3747904598712921, - 0.06569091230630875, - 0.15098923444747925, - -0.14535775780677795, - -0.12062754482030869, - -0.12038781493902206, - -0.3364497423171997, - 0.011840693652629852, - -0.09318909794092178, - 0.05130903795361519, - 0.5499911308288574, - 0.11659352481365204, - 0.2312263548374176, - -0.29081013798713684, - -0.15017548203468323, - 0.2609476149082184, - 0.241740420460701, - 0.15475061535835266, - -0.09763891994953156, - -0.04313323646783829, - 0.24155838787555695, - 0.23877249658107758, - -0.08607077598571777, - 0.04964008182287216, - -0.029097972437739372, - 0.026845388114452362, - 0.2042059451341629, - 0.0319802425801754, - -0.1718970537185669, - 0.026244910433888435, - -0.4237222969532013, - 0.013146087527275085, - -0.1217045933008194, - -0.03758666664361954, - 0.2828989624977112, - -0.13097050786018372, - -0.7107792496681213, - -0.16487878561019897, - 0.15665856003761292, - -0.010773349553346634, - -0.34868282079696655, - 0.2068217694759369, - 0.1961439698934555, - -0.12811104953289032, - -0.2734467685222626, - -0.009252842515707016, - -0.41786468029022217, - -0.4276168942451477, - 0.20965245366096497, - -0.15660621225833893, - -0.2852913737297058, - 0.1328853815793991, - 0.4524427056312561, - 0.43457522988319397, - 0.3481961190700531, - 0.15849855542182922, - 0.39898014068603516, - 0.5404787063598633, - 0.05831765756011009, - -0.33472853899002075, - -10.690675735473633, - -0.12175184488296509, - -0.5052552819252014, - 0.5061363577842712, - -0.24360069632530212, - 0.06319490820169449, - -0.027486158534884453, - -0.02688586339354515, - 0.08235159516334534, - 0.024208614602684975, - -0.2632926106452942, - -0.12705197930335999, - 0.27933013439178467, - 0.3239613473415375, - 0.11557584255933762, - 0.1086951494216919, - -0.338029682636261, - 0.20706868171691895, - 0.1669113039970398, - 0.202029287815094, - 0.15471629798412323, - 0.3520072102546692, - -0.20970746874809265, - 0.02428145706653595, - -0.20384734869003296, - -0.4645908772945404, - -0.2659758925437927, - 0.6552196741104126, - 0.44598761200904846, - -0.18846583366394043, - 0.07041559368371964, - -0.11500140279531479, - -0.12824378907680511, - 0.15561388432979584, - -0.2648186683654785, - -0.10466533899307251, - 0.07148435711860657, - 0.17968548834323883, - 0.22748112678527832, - -0.24144452810287476, - 0.014875241555273533, - -0.033248171210289, - 0.5287392139434814, - -0.01612205058336258, - -0.08771215379238129, - -0.6826621890068054, - 0.0005677696317434311, - -1.5700268745422363, - 0.13552691042423248, - 0.33249109983444214, - 0.39049699902534485, - 0.048757992684841156, - 0.05047227814793587, - 0.3394201695919037, - -0.21072854101657867, - -0.02948516234755516, - -0.3667293190956116, - -0.3285808563232422, - 0.07594062387943268, - 0.1799970120191574, - 0.05310840532183647, - -0.0946166068315506, - 0.7834311723709106, - 0.1815943419933319, - -0.34315595030784607, - 0.09401436895132065, - 0.06810681521892548, - -0.1468716710805893, - -0.3171771466732025, - -0.8587921857833862, - -0.6261554956436157, - 0.030539242550730705, - -0.21497994661331177, - -0.05516273155808449, - 0.2202373594045639, - 0.02397376112639904, - -0.002575100865215063, - 0.33367323875427246, - 0.04274710267782211, - 0.14394353330135345, - 0.3810845911502838, - -0.12063077092170715, - 0.2364615499973297, - -0.3306020498275757, - -0.009717948734760284, - 0.03818528354167938, - 0.2320069670677185, - 0.4278271198272705, - 0.015379279851913452, - -0.03090599924325943, - -0.08970489352941513, - 0.44773298501968384, - 0.022385532036423683, - -0.1460280865430832, - -0.4332210421562195, - -0.16035903990268707, - -0.15441471338272095, - 0.08315452188253403, - -0.1814793199300766, - 0.018221497535705566, - -0.2508696913719177, - 0.25444597005844116, - -0.0796620100736618, - -0.4472338855266571, - -0.6823177337646484, - 0.3885980546474457, - 0.1994829773902893, - 0.015292505733668804, - -0.07266910374164581, - -0.23983082175254822, - -0.3492426872253418, - 0.21960298717021942, - 0.270746648311615, - 0.5150718688964844, - 0.18175512552261353, - -0.09883274137973785, - 0.1588912457227707, - -0.45678818225860596, - -0.0055758897215127945, - -0.08421012759208679, - 0.3726358115673065, - -0.04651102423667908, - 0.014289340004324913, - 0.5736133456230164, - 0.09863191097974777, - 0.04548337310552597, - 0.8351206183433533, - -0.3235526382923126, - 0.0525103434920311, - -0.012787502259016037, - 0.3183976411819458, - -0.08871971815824509, - -0.4553624391555786, - 0.18709442019462585, - 0.43001794815063477, - -0.3537280261516571, - 0.6873456239700317, - 0.4378923177719116, - -0.20680013298988342, - -0.08436137437820435, - -0.33991026878356934, - 0.41905662417411804, - 0.1667064130306244, - 0.19572392106056213, - -0.22820523381233215, - -0.1808469593524933, - -0.24664641916751862, - 0.18706469237804413, - -0.18884293735027313, - -0.30400994420051575, - 0.018797993659973145, - 0.06035887077450752, - 0.08677218854427338, - 0.07467712461948395, - 0.19512805342674255, - 0.19869594275951385, - 0.012934391386806965, - -0.4812888503074646, - -0.023788467049598694, - -0.034423038363456726, - 0.012547534890472889, - 0.9531716108322144, - -0.07288215309381485, - -0.11775800585746765, - 0.13574953377246857, - 0.057777367532253265, - -0.12285026162862778, - 0.19876959919929504, - 0.063735730946064, - -0.12402965128421783, - -0.26350656151771545, - 0.3101603090763092, - 0.1768718659877777, - -0.15372294187545776, - -0.02668958157300949, - 0.10332687199115753, - -0.023025479167699814, - 0.11884379386901855, - -0.3789295554161072, - -0.019750431180000305, - 0.43193697929382324, - -0.06126437336206436, - 0.09098167717456818, - -0.3124237358570099, - -0.27811193466186523, - 0.11091872304677963, - 0.4868679940700531, - -0.11697974056005478, - -0.40750396251678467, - -0.070494145154953, - -0.6241505146026611, - 0.18725699186325073, - -0.47423285245895386, - -0.018415994942188263, - 0.2208288311958313, - 0.05832655727863312, - -0.07445141673088074, - 0.25042498111724854, - 0.12965932488441467, - -0.07615204900503159, - -0.1966966837644577, - 0.3753678500652313, - 0.4871078133583069, - -0.32861563563346863, - 0.470686674118042, - -0.054696694016456604, - 0.10116127133369446, - 0.0433979295194149, - -0.24663206934928894, - 0.0072199683636426926, - -0.3791124224662781 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_039.json b/src/benchmark/output/results/results_graph_039.json deleted file mode 100644 index 6016707..0000000 --- a/src/benchmark/output/results/results_graph_039.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is an 80-year-old male with a history of hypertension, diabetes, and chronic obstructive pulmonary disease (COPD). He is a current smoker with a significant smoking history of 90 pack-years. There is no asbestos exposure in his medical history.\n\n**Initial Presentation:**\nThe patient presented to the hospital with a week-long history of shortness of breath. His symptoms began approximately one week ago, and he has not experienced any improvement since then. The patient's comorbidities include hypertension, diabetes, and COPD, which may have contributed to his respiratory symptoms.\n\n**Diagnostic Findings:**\nA chest X-ray revealed a large mass in the right lower lung field, which was not present one year prior. A non-contrast CT scan further confirmed the presence of a 60x50x80 mm mass with heterogeneous internal density in the right lower lobe. The patient's white blood cell count (WBC) was elevated at 9130/\\u00b5L, and his C-Reactive Protein (CRP) concentration was also elevated at 2.5 mg/dL.\n\n**Initial Treatment:**\nThe patient underwent intercostal tube drainage due to the presence of moderate pleural effusion. The pleural fluid was yellow and cloudy, and cytology revealed a diagnosis of class \\u2161, leading to a diagnosis of pulmonary suppuration with empyema. Antibiotic treatment was initiated.\n\n**Progression of Disease:**\nDespite two weeks of antibiotic treatment, the patient's inflammatory reaction worsened (WBC count and CRP concentration increased), and CT images showed that the mass had increased in size. The patient's condition did not improve, and he was referred for surgical intervention after three weeks of antibiotic treatment.\n\n**Blood Examination:**\nA blood examination revealed a high inflammatory reaction (WBC count and CRP concentration increased). However, tumor markers such as carcinoembryonic antigen, cytokeratin-19 fragment, and pro-gastrin-releasing peptide were not elevated. Markers of infectious disease such as tuberculosis, aspergillus, and fungus were also not elevated.\n\n**Surgical Intervention:**\nChest CT showed that the right lower lobe lesion had increased in size, with fluids within the mass. The diagnosis was pulmonary suppuration or lung cancer with infection, and surgical intervention was planned to control infection. Complete resection of the tumor was performed.\n\n**Outcome:**\nThe patient underwent successful surgical intervention, which controlled the infection. However, the outcome of the surgery is not yet known, as this information is not provided in the case report.", - "bertscore": { - "precision": [ - 0.6976175904273987 - ], - "recall": [ - 0.7103872895240784 - ], - "f1": [ - 0.7039445638656616 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 8, - "edge_count": 7, - "avg_in_degree": 0.875, - "density": 0.125 - }, - "trajectory_embedding": [ - 0.26108381152153015, - 0.10956008732318878, - -0.16029071807861328, - 0.027429969981312752, - 0.007913028821349144, - 0.08848574012517929, - 0.08643864095211029, - 0.2547394335269928, - 0.32366758584976196, - -0.4072262942790985, - -0.2856261730194092, - 0.0938202515244484, - -0.6436994671821594, - -0.09698508679866791, - -0.2764435410499573, - 0.16657090187072754, - 0.040932681411504745, - 0.3293660283088684, - 0.006018600892275572, - -0.27940264344215393, - -0.5322431921958923, - 0.08336814492940903, - -0.46076273918151855, - 0.02193072810769081, - 0.15864019095897675, - 0.004260247573256493, - 0.31802815198898315, - 0.505253255367279, - 0.2959457039833069, - 0.32208141684532166, - 0.1826891452074051, - -0.06416049599647522, - 0.001767970621585846, - 0.12592974305152893, - -0.2745921015739441, - 0.308141827583313, - 0.13212665915489197, - 0.41367417573928833, - -0.12898023426532745, - -0.01326046884059906, - 0.03202363848686218, - 0.045633673667907715, - 0.9199668765068054, - 0.24128061532974243, - 0.4769904613494873, - -0.8402373194694519, - 0.0331241674721241, - 0.49156954884529114, - -0.43149012327194214, - -0.37405404448509216, - 0.212617889046669, - 0.7396342754364014, - 0.538451611995697, - -0.2360236942768097, - 0.5396133661270142, - -0.23917993903160095, - -0.2316078543663025, - -0.3461512625217438, - -0.25714606046676636, - 0.12097959965467453, - -0.01364058256149292, - -0.263628751039505, - 0.15222007036209106, - -0.10793325304985046, - -0.24043555557727814, - -0.0003581168130040169, - -0.11521720886230469, - 0.18773521482944489, - -0.12374664098024368, - -0.4154062569141388, - -0.12005002796649933, - -0.206128790974617, - -0.05823666974902153, - 0.06777523458003998, - 0.09989593923091888, - -0.14829814434051514, - 0.3378392159938812, - 0.008703187108039856, - 0.13725383579730988, - 0.10783153772354126, - 0.0015741195529699326, - -0.11645939946174622, - 0.0743425190448761, - 0.31447458267211914, - -0.2658509314060211, - 0.02984762378036976, - -0.1517682522535324, - -0.16403637826442719, - -0.2839863896369934, - 0.1464269906282425, - -0.10478072613477707, - -0.3411523103713989, - 0.17801880836486816, - -0.20802906155586243, - 0.08668603003025055, - 0.15026292204856873, - 0.350862056016922, - 0.3626784086227417, - 0.9124852418899536, - 0.01606186106801033, - 0.13945719599723816, - 0.0620109848678112, - 0.2403155416250229, - -0.014615166932344437, - 0.28376898169517517, - -0.04775137081742287, - -0.04200923442840576, - -0.5334618091583252, - 0.12338021397590637, - 0.38850343227386475, - -0.04399586468935013, - -0.14367319643497467, - -0.004328500013798475, - -0.31254008412361145, - 0.04470028728246689, - 0.0496356301009655, - -0.08447247743606567, - 0.13141106069087982, - 0.0867786556482315, - -0.30087631940841675, - -0.017644893378019333, - -0.11784262210130692, - 0.33577868342399597, - 0.28908926248550415, - -0.38879695534706116, - -0.06971995532512665, - -0.12312028557062149, - -0.06331991404294968, - 0.17852790653705597, - 0.012833002023398876, - -0.7115823030471802, - -0.23463010787963867, - -0.008514540269970894, - 0.1880863606929779, - -0.1255132108926773, - 0.2688579559326172, - -0.39156508445739746, - 0.17819435894489288, - -1.066145896911621, - 0.16971296072006226, - -0.3950832486152649, - -0.006549840793013573, - -0.06114785745739937, - -0.524884045124054, - -0.26640045642852783, - -0.14146821200847626, - -0.19315102696418762, - 0.10373226553201675, - -0.14990116655826569, - 0.11369626969099045, - -0.10591395199298859, - 0.038807112723588943, - 0.22576190531253815, - 0.30733147263526917, - 0.08999641239643097, - 0.1521606743335724, - 0.0937381312251091, - 0.21061444282531738, - 0.13733132183551788, - -0.1382201910018921, - -0.07313410937786102, - 0.4010327160358429, - 0.07816857099533081, - 0.005521022714674473, - -0.1084146499633789, - -0.7234862446784973, - 0.14900684356689453, - -0.09972699731588364, - 0.26137909293174744, - 0.1347416192293167, - -0.20740903913974762, - 0.24665461480617523, - -0.24871379137039185, - 0.5462079048156738, - 0.1849108338356018, - 0.38951265811920166, - 0.1323326975107193, - -0.08376731723546982, - 0.0907968059182167, - 0.14496326446533203, - 0.1303991675376892, - -0.15082582831382751, - 0.5348730087280273, - 0.1911633163690567, - -0.4373701214790344, - 0.2820042371749878, - 0.479567289352417, - -0.1106085330247879, - -0.08432793617248535, - -0.14042387902736664, - 0.4303503632545471, - -0.22412559390068054, - 0.4713036119937897, - -0.2655247449874878, - -0.01709180325269699, - 0.07877364754676819, - -0.2142161726951599, - -0.06659610569477081, - 0.12511667609214783, - -0.087378591299057, - 0.10496803373098373, - -0.05519299954175949, - -0.172188401222229, - 0.11668449640274048, - 0.12576726078987122, - -0.057960283011198044, - 0.288836807012558, - -0.09773363918066025, - 0.15416881442070007, - -0.057143356651067734, - -0.1943022906780243, - 0.13287067413330078, - 0.060951750725507736, - 0.19307969510555267, - 0.13664168119430542, - -0.3554212152957916, - 0.2746574282646179, - -0.04259118437767029, - -0.09635819494724274, - 0.26359236240386963, - -0.04609980806708336, - -0.2062235176563263, - 0.063067726790905, - -0.01562793180346489, - -0.4547211229801178, - 0.19445200264453888, - 0.19321784377098083, - 0.2963288426399231, - 0.24512207508087158, - -0.03495975583791733, - 0.016590919345617294, - -0.38268256187438965, - 0.19702191650867462, - -0.1930912584066391, - -0.02492673695087433, - -0.3309885859489441, - 0.21460838615894318, - -0.08942128717899323, - -0.05529002845287323, - 0.2815519869327545, - -0.06929220259189606, - -0.05566215142607689, - 0.09188288450241089, - -0.2191166877746582, - 0.02704840525984764, - -0.17564058303833008, - 0.07481201738119125, - 0.2767612636089325, - 0.1425887495279312, - 0.28439342975616455, - 0.08139618486166, - -0.16298353672027588, - 0.10020460933446884, - -0.26223206520080566, - -0.21401049196720123, - -0.28438156843185425, - -0.12668076157569885, - -0.053119558840990067, - -0.5303084850311279, - 0.1517026573419571, - 0.05643362179398537, - -0.13650073111057281, - 0.10047369450330734, - -0.24921973049640656, - -0.20158854126930237, - 0.04695931077003479, - 0.022687522694468498, - -0.03254319727420807, - -0.06655892729759216, - 0.04624108225107193, - -0.23403345048427582, - -0.23345068097114563, - -0.1891750693321228, - -0.09573490917682648, - 0.23035943508148193, - 0.14415748417377472, - -0.3242157995700836, - 0.11186838895082474, - 0.12470215559005737, - -0.5318878889083862, - -0.31235796213150024, - 0.13329309225082397, - -0.2542419731616974, - 0.26559311151504517, - -0.026422657072544098, - 0.1930312067270279, - 0.33164069056510925, - 0.12118130922317505, - 0.18555685877799988, - 0.3553202748298645, - 0.3906884789466858, - -0.020364118739962578, - -0.04364766553044319, - -0.02025676518678665, - -0.14987768232822418, - -0.11193013191223145, - -0.4421951174736023, - 0.26006612181663513, - 0.0988776832818985, - -0.017480723559856415, - 0.0209624283015728, - 0.06539316475391388, - 0.10664348304271698, - -0.2472868412733078, - -0.088677778840065, - 0.49532899260520935, - 0.17661628127098083, - 0.1897870898246765, - 0.1464899182319641, - 0.3725239038467407, - 0.6254552602767944, - -0.05980955809354782, - -0.1639251708984375, - 0.05510258674621582, - -0.021347003057599068, - -0.11150425672531128, - 0.01486741378903389, - 0.1449670046567917, - 0.24062049388885498, - -0.14611665904521942, - -0.15488022565841675, - 0.11839546263217926, - -0.10642119497060776, - -0.0671810433268547, - -0.2549738883972168, - -0.017378639429807663, - 0.021671492606401443, - -0.26182764768600464, - 0.18211987614631653, - -0.07587289065122604, - 0.054152924567461014, - 0.25321924686431885, - -0.25455442070961, - -0.2658650875091553, - 0.17432817816734314, - -0.08007606863975525, - -0.45224663615226746, - 0.29709678888320923, - -0.11230533570051193, - 0.0768725797533989, - 0.3159419298171997, - -0.22780461609363556, - -0.021077385172247887, - -0.13842882215976715, - 0.37560585141181946, - -0.03367835655808449, - -0.03984193503856659, - -0.06632819026708603, - -0.13812501728534698, - 0.046138472855091095, - 0.5267994403839111, - 0.11226652562618256, - 0.06067535653710365, - 0.4457501471042633, - 0.07567295432090759, - -0.1957673728466034, - 0.034947916865348816, - 0.04490593075752258, - 0.2540675401687622, - -0.10197637230157852, - -0.11440776288509369, - -0.1500861942768097, - 0.16174443066120148, - 0.09807275235652924, - -0.28936266899108887, - 0.001110265962779522, - 0.01826828345656395, - 0.03836604952812195, - -0.11105979979038239, - 0.30882829427719116, - 0.07811032235622406, - -0.050577323883771896, - 0.5023103356361389, - 0.0601067841053009, - -0.21810145676136017, - 0.46265819668769836, - -0.20442968606948853, - 0.22336886823177338, - -0.01728568971157074, - -0.3222353458404541, - -0.389247328042984, - 0.05282651633024216, - -0.1537177413702011, - -0.11851619929075241, - -0.05921453237533569, - -0.039351433515548706, - 0.05760842189192772, - -0.12906339764595032, - 0.1824972927570343, - 0.1607268750667572, - 0.18587319552898407, - 0.14578574895858765, - 0.3652949333190918, - 0.08483246713876724, - -0.2645277976989746, - 0.1764509081840515, - -0.04818684607744217, - 0.02191002480685711, - -0.20937880873680115, - 0.07265955209732056, - -0.09518080204725266, - 0.4670676290988922, - -0.09033649414777756, - -0.010685251094400883, - 0.01981467939913273, - -0.08180395513772964, - -0.21471771597862244, - -0.37222984433174133, - 0.06566443294286728, - -0.098701111972332, - 0.012952522374689579, - 0.080662801861763, - 0.10607190430164337, - -0.32191216945648193, - -0.13531136512756348, - -0.08266860991716385, - 0.13191373646259308, - 0.19093836843967438, - -0.06758609414100647, - 0.02686997875571251, - 0.43397265672683716, - 0.08747178316116333, - 0.36986133456230164, - -0.21281063556671143, - 0.1861838549375534, - 0.09240783751010895, - -0.313646525144577, - -0.11604557931423187, - 0.024277906864881516, - -0.40692657232284546, - -0.02962636575102806, - 0.28134000301361084, - 0.2548559308052063, - -0.018261007964611053, - -0.012916240841150284, - 0.013372186571359634, - 0.189580038189888, - -0.2641013264656067, - -0.0823037400841713, - 0.38128170371055603, - 0.16726981103420258, - 0.41611602902412415, - -0.004165036603808403, - -0.3889404237270355, - -0.20949597656726837, - -0.07746655493974686, - -0.4250255525112152, - 0.15334174036979675, - 0.14663474261760712, - -0.023561742156744003, - -0.07911445945501328, - 0.02039201743900776, - -0.12477793544530869, - -0.08474144339561462, - 0.19284556806087494, - -0.14169526100158691, - 0.10896138101816177, - 0.12253233045339584, - -0.30720993876457214, - 0.02614348568022251, - -0.21727265417575836, - -0.4362068176269531, - -0.2241993099451065, - 0.3153983950614929, - 0.16387391090393066, - -0.20168554782867432, - -0.06994151324033737, - 0.18013262748718262, - -0.1882546991109848, - -0.3054368197917938, - 0.08707079291343689, - -0.15048030018806458, - 0.43799182772636414, - -0.1639455407857895, - -0.15713751316070557, - 0.04085534065961838, - -0.2574590742588043, - -0.011981097981333733, - 0.29828083515167236, - 0.1373225599527359, - 0.32341915369033813, - 0.16783566772937775, - 0.08083796501159668, - 0.37970924377441406, - 0.05350526422262192, - 0.12852443754673004, - 0.27364063262939453, - 0.07545080780982971, - 0.09822984039783478, - -0.27264851331710815, - -0.08880683034658432, - 0.4294930398464203, - -0.24933531880378723, - -0.05493703857064247, - 0.236446812748909, - 0.18813207745552063, - -0.32617810368537903, - -0.313213974237442, - 0.017831820994615555, - 0.021409127861261368, - -0.13986080884933472, - -0.19779004156589508, - -0.21191392838954926, - -0.0014556869864463806, - -0.25542184710502625, - -0.10628100484609604, - 0.13828647136688232, - 0.35715171694755554, - 0.057517554610967636, - 0.17822960019111633, - -0.23447009921073914, - -0.288011372089386, - 0.23305024206638336, - 0.3053782284259796, - 0.06717413663864136, - 0.019271481782197952, - -0.14902366697788239, - 0.3754567503929138, - 0.5130892395973206, - 0.07700489461421967, - 0.029752517119050026, - -0.04851246625185013, - 0.009241607040166855, - 0.06977184116840363, - 0.09742352366447449, - -0.052695468068122864, - 0.02381199598312378, - -0.40898996591567993, - 0.08436466753482819, - -0.11502960324287415, - -0.24442771077156067, - 0.18658778071403503, - -0.28718918561935425, - -0.3865501880645752, - -0.17907220125198364, - 0.3491918742656708, - -0.16290299594402313, - -0.01541578583419323, - 0.19542428851127625, - 0.3533684015274048, - 0.11393529921770096, - -0.22780780494213104, - 0.12423772364854813, - -0.4107705354690552, - -0.22534945607185364, - 0.1658276915550232, - -0.17730659246444702, - -0.04979734122753143, - 0.0209437757730484, - 0.30823957920074463, - 0.46903112530708313, - 0.29410773515701294, - -0.4213334918022156, - 0.11066675931215286, - 0.18551596999168396, - 0.2716827988624573, - -0.24508464336395264, - -10.740010261535645, - 0.07963219285011292, - -0.3055938184261322, - 0.4902179539203644, - -0.2831987142562866, - 0.03760141506791115, - 0.047090671956539154, - 0.09099259227514267, - 0.157918781042099, - 0.11956615746021271, - -0.25362706184387207, - 0.02217896655201912, - 0.3105844557285309, - 0.3568098545074463, - -0.11784039437770844, - -0.034573331475257874, - -0.15697123110294342, - 0.19858042895793915, - 0.016173288226127625, - 0.23168113827705383, - 0.1906142383813858, - 0.37407058477401733, - -0.2861088514328003, - 0.31984931230545044, - 0.09358207881450653, - -0.3077656626701355, - -0.2435898333787918, - 0.381186306476593, - 0.24108999967575073, - -0.3488410711288452, - 0.37144899368286133, - 0.1369529366493225, - -0.3326784372329712, - 0.1434841901063919, - -0.11145655810832977, - -0.13578113913536072, - -0.05350462347269058, - 0.20498992502689362, - 0.10372006148099899, - -0.059461671859025955, - 0.06093297153711319, - -0.17912572622299194, - 0.15637089312076569, - 0.23629595339298248, - -0.10228956490755081, - -0.33637508749961853, - -0.15283715724945068, - -1.5333231687545776, - 0.2607783377170563, - 0.30958032608032227, - 0.35814979672431946, - -0.04854445159435272, - 0.156670942902565, - 0.12752415239810944, - -0.316053181886673, - 0.07937970757484436, - -0.12375317513942719, - -0.004670258611440659, - 0.06078098341822624, - 0.03278311342000961, - 0.1640997976064682, - -0.27453744411468506, - 0.4591664671897888, - -0.2083195000886917, - -0.2759118378162384, - -0.007028764579445124, - 0.057477518916130066, - -0.129147008061409, - -0.23688432574272156, - -0.41172510385513306, - -0.4899739623069763, - -0.0762920081615448, - -0.017580505460500717, - -0.033423129469156265, - 0.3550511300563812, - -0.050940051674842834, - -0.42321455478668213, - 0.1725136786699295, - -0.048147208988666534, - 0.3803832232952118, - 0.23392558097839355, - -0.061555974185466766, - 0.041112203150987625, - -0.16832204163074493, - -0.33770275115966797, - -0.14280271530151367, - 0.1012912318110466, - 0.4825150966644287, - -0.04116811603307724, - -0.09034464508295059, - 0.050947945564985275, - 0.35335880517959595, - -0.00016191229224205017, - -0.2038704752922058, - -0.49043434858322144, - 0.06416571140289307, - 0.07357064634561539, - 0.15775752067565918, - -0.044531259685754776, - 0.009753544814884663, - -0.17763139307498932, - -0.0045500583946704865, - -0.09285283833742142, - -0.4826565980911255, - -0.45712780952453613, - 0.3056493103504181, - 0.188239187002182, - 0.16020309925079346, - 0.17628473043441772, - 0.04517633467912674, - -0.16594888269901276, - -0.007752992212772369, - 0.30505436658859253, - 0.5245564579963684, - 0.22786878049373627, - -0.12712806463241577, - -0.11479922384023666, - -0.1837502270936966, - -0.25407180190086365, - 0.08694951236248016, - 0.3028848171234131, - -0.03592965379357338, - 0.054662853479385376, - 0.6697776317596436, - -0.013575810007750988, - 0.011852584779262543, - 0.9225382804870605, - -0.2942582964897156, - 0.22683663666248322, - -0.11016172170639038, - 0.28608939051628113, - -0.10988981276750565, - -0.29542094469070435, - 0.10999923199415207, - 0.3883325457572937, - -0.2932502329349518, - 0.5186895728111267, - 0.1500958353281021, - -0.20667341351509094, - 0.05070701241493225, - -0.2535325884819031, - 0.5289908647537231, - 0.18570666015148163, - 0.23127515614032745, - -0.2028467208147049, - -0.29255354404449463, - -0.24322441220283508, - 0.07289934158325195, - -0.2591104209423065, - -0.25314757227897644, - -0.22186021506786346, - 0.10917772352695465, - -0.022797726094722748, - -0.2212141454219818, - 0.3110937476158142, - 0.22157369554042816, - -0.07133779674768448, - -0.30420202016830444, - -0.28645506501197815, - -0.09675527364015579, - 0.07180184870958328, - 0.8153170347213745, - 0.03291159123182297, - -0.24832026660442352, - -0.021695323288440704, - 0.1472565084695816, - -0.04786333441734314, - 0.14455097913742065, - 0.06527700275182724, - -0.04368188977241516, - -0.3844417333602905, - 0.19373361766338348, - 0.10792029649019241, - -0.41064929962158203, - -0.27405422925949097, - -0.24848634004592896, - 0.0927194282412529, - -0.05318191275000572, - -0.059866826981306076, - 0.22515085339546204, - 0.3909287750720978, - -0.0762612447142601, - 0.063418447971344, - -0.31868693232536316, - 0.08533719927072525, - 0.15523822605609894, - 0.28232869505882263, - 0.009727497585117817, - -0.214608833193779, - -0.3480148911476135, - -0.5524943470954895, - 0.30919426679611206, - -0.4412634074687958, - -0.16634061932563782, - 0.17567962408065796, - 0.12418901920318604, - -0.36208298802375793, - 0.04950477182865143, - -0.18972346186637878, - -0.13723085820674896, - -0.17865291237831116, - 0.2519596219062805, - 0.4251895844936371, - -0.3188205063343048, - 0.2255503386259079, - -0.13314136862754822, - 0.13665547966957092, - 0.05011523887515068, - -0.3031379282474518, - 0.16244915127754211, - -0.19290731847286224 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_040.json b/src/benchmark/output/results/results_graph_040.json deleted file mode 100644 index bcfdd19..0000000 --- a/src/benchmark/output/results/results_graph_040.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is an elderly female with no provided demographic information. However, based on the clinical data, it appears that she had undergone surgery for an enlarged right paratracheal node (4R) 5 months prior to presentation.\n\n**Timeline of Diagnoses and Treatments:**\n\n1. **Step 1:** The patient presented with an enlarged right paratracheal node (4R), which was identified on a restaging CT scan 5 months after surgery.\n2. **Step 2 (23 days post-EBUS-TBNA):** The patient developed hypotension, elevated leukocyte count, lactate, creatinine, and liver enzymes, indicating sepsis.\n3. **Step 3:** A chest X-ray revealed new opacities in the left lower lung field, leading to a diagnosis of pneumosepsis.\n4. **Step 4:** The patient developed unstable, narrow complex tachycardia.\n5. **Step 5:** Bedside echocardiogram diagnosed a large pericardial effusion and features of tamponade.\n6. **Step 6:** Emergent pericardiocentesis with insertion of pericardial drain was performed to evacuate purulent fluid.\n7. **Step 7:** Pericardial fluid cytology was negative, but cultures grew Streptococcus mitis-group, Actinomyces odontolyticus, Prevotella melaninogenica, and Lancefieldella rimae.\n8. **Step 8:** Repeat CT scan revealed a large loculated rim-enhancing fluid collection within the mediastinum and pericardium.\n9. **Step 9:** The patient developed progressive septic shock due to inability to obtain source control.\n10. **Step 10:** HRCT of the chest demonstrated large loculated fluid collection within the mediastinum, with multiple internal locules of gas and thickening with enhancement in the pericardium and mediastinal soft tissue.\n11. **Step 11:** Due to limited benefit-to-risk ratio for sternotomy and surgical drainage, the patient opted for palliative measures and passed away surrounded by her family.\n\n**Outcomes:**\nThe patient's condition progressed rapidly from an initial diagnosis of sepsis to a life-threatening situation with progressive septic shock. Despite multiple interventions, including pericardiocentesis and HRCT scans, the patient's condition did not improve significantly. Ultimately, the benefit-to-risk ratio for surgical intervention was deemed limited, and the patient opted for palliative care, passing away surrounded by her family.\n\n**Conclusion:**\nThis case highlights the importance of early recognition and management of sepsis, particularly in patients with underlying conditions such as pericardial effusion. The rapid progression of this patient's condition underscores the need for prompt intervention and careful consideration of treatment options to avoid further complications and improve outcomes.", - "bertscore": { - "precision": [ - 0.4804054796695709 - ], - "recall": [ - 0.6300804615020752 - ], - "f1": [ - 0.5451561212539673 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 12, - "edge_count": 11, - "avg_in_degree": 0.9166666666666666, - "density": 0.08333333333333333 - }, - "trajectory_embedding": [ - 0.28669193387031555, - 0.1691989153623581, - 0.019546089693903923, - -0.006544489413499832, - 0.12655074894428253, - 0.013121272437274456, - -0.1376185119152069, - 0.220974400639534, - 0.35357120633125305, - -0.13875794410705566, - -0.21811778843402863, - -0.0012483556056395173, - -0.5973541140556335, - -0.09496092051267624, - -0.24451704323291779, - 0.21331942081451416, - -0.01850639097392559, - 0.2408425360918045, - -0.08629199117422104, - -0.3109051287174225, - -0.3078397214412689, - 0.05068157985806465, - -0.4263876974582672, - 0.013189909048378468, - 0.17969514429569244, - 0.0028065491933375597, - 0.3465745449066162, - 0.40784239768981934, - 0.30199941992759705, - 0.36116981506347656, - 0.21482956409454346, - -0.04552584886550903, - 0.1663714349269867, - 0.04968811571598053, - -0.2264309674501419, - 0.28703972697257996, - 0.09475972503423691, - 0.5029977560043335, - -0.025729024782776833, - 0.007432017475366592, - 0.13865697383880615, - 0.06931067258119583, - 0.6747732758522034, - 0.06543879956007004, - 0.5356878638267517, - -0.8260799050331116, - -0.01202256977558136, - 0.5933248400688171, - -0.38372620940208435, - -0.46364542841911316, - 0.21553699672222137, - 0.7847979664802551, - 0.5796515345573425, - -0.17979292571544647, - 0.4322079122066498, - -0.20980535447597504, - -0.30280011892318726, - -0.3927961587905884, - -0.20376132428646088, - -0.07360654324293137, - -0.06386234611272812, - -0.21882058680057526, - 0.3052499294281006, - -0.06577533483505249, - -0.23158816993236542, - -0.0515180379152298, - -0.17486773431301117, - 0.22433018684387207, - -0.04340830072760582, - -0.35976889729499817, - -0.10883883386850357, - -0.20218081772327423, - -0.10752991586923599, - -0.05051349103450775, - -0.030051440000534058, - -0.11319702863693237, - 0.34640100598335266, - -0.15357957780361176, - 0.24591030180454254, - 0.052823249250650406, - -0.10555503517389297, - -0.027631668373942375, - 0.08385086804628372, - 0.4019663631916046, - -0.31141433119773865, - 0.012286531738936901, - -0.3138699233531952, - -0.13192100822925568, - -0.15999947488307953, - 0.14233355224132538, - 0.09314149618148804, - -0.2415354698896408, - 0.07506590336561203, - -0.085874043405056, - -0.03155766427516937, - 0.021568814292550087, - 0.29421308636665344, - 0.36821356415748596, - 0.9221912026405334, - -0.1390026956796646, - 0.12554529309272766, - 0.14942355453968048, - 0.2106071561574936, - 0.0886673554778099, - 0.31348326802253723, - -0.1185976043343544, - 0.12584827840328217, - -0.5578426718711853, - 0.138259619474411, - 0.36028537154197693, - 0.15888573229312897, - -0.1609366089105606, - 0.07229257375001907, - -0.14975973963737488, - 0.16213852167129517, - 0.19394175708293915, - -0.048996906727552414, - 0.2236260324716568, - -0.0095315957441926, - -0.38075995445251465, - -0.01841447688639164, - -0.06999660283327103, - 0.2630979120731354, - 0.2617112100124359, - -0.40843692421913147, - -0.05383364483714104, - -0.07420371472835541, - 0.005121608730405569, - 0.22903817892074585, - -0.05214007571339607, - -0.49988678097724915, - -0.037973564118146896, - -0.01628163456916809, - 0.18328963220119476, - 0.0718599483370781, - 0.24039645493030548, - -0.23588208854198456, - 0.13739533722400665, - -1.0868237018585205, - 0.1353054940700531, - -0.4249314069747925, - -0.07639597356319427, - 0.04215191677212715, - -0.520112931728363, - -0.27079206705093384, - -0.12117540836334229, - -0.19783902168273926, - 0.1884072870016098, - -0.1896921992301941, - 0.02419360913336277, - 0.014572027139365673, - 0.1534244865179062, - 0.15855737030506134, - 0.3265019655227661, - 0.05376647040247917, - 0.03961685672402382, - -0.004613223019987345, - 0.24374927580356598, - -0.003412604331970215, - -0.21475613117218018, - 0.050643086433410645, - 0.42922309041023254, - 0.040430620312690735, - -0.08765348792076111, - -0.19080179929733276, - -0.7116320133209229, - 0.16399654746055603, - -0.11907307058572769, - 0.1419195681810379, - 0.0400998592376709, - -0.30110105872154236, - 0.22079302370548248, - -0.3581848442554474, - 0.6236982941627502, - 0.209325909614563, - 0.46697887778282166, - 0.1469735950231552, - -0.15091200172901154, - -0.020106399431824684, - 0.1106165274977684, - 0.13190074265003204, - -0.1848374456167221, - 0.5411767959594727, - 0.06484044343233109, - -0.22837883234024048, - 0.11190006881952286, - 0.28079184889793396, - -0.010322482325136662, - -0.2372659295797348, - -0.038122113794088364, - 0.3101612329483032, - -0.2686740756034851, - 0.3785570561885834, - -0.22402171790599823, - -0.006461057811975479, - 0.07098260521888733, - -0.3295261561870575, - -0.24605965614318848, - 0.18706519901752472, - 0.045462582260370255, - 0.1824706792831421, - -0.15605348348617554, - -0.27233314514160156, - 0.06170235946774483, - 0.06722339987754822, - -0.07103795558214188, - 0.30365556478500366, - -0.2193838208913803, - 0.14082218706607819, - -0.11834023147821426, - -0.16000615060329437, - 0.02617289125919342, - -0.2162739634513855, - 0.21900467574596405, - 0.1531858742237091, - -0.3681906461715698, - 0.23178185522556305, - 0.041241612285375595, - -0.09126796573400497, - 0.15578247606754303, - -0.039845060557127, - -0.15267397463321686, - 0.04427572712302208, - -0.08277977257966995, - -0.3639785945415497, - 0.1864762157201767, - 0.1462380588054657, - 0.2494494915008545, - 0.39185941219329834, - -0.04628115892410278, - 0.09356730431318283, - -0.29051804542541504, - 0.07171998172998428, - -0.09823546558618546, - -0.061662692576646805, - -0.3894146978855133, - 0.14118805527687073, - -0.17086265981197357, - 0.017774203792214394, - 0.19957618415355682, - -0.11985643953084946, - -0.10975765436887741, - 0.02056412398815155, - -0.07530368119478226, - -0.04976620897650719, - -0.30624550580978394, - 0.06348299980163574, - 0.21748828887939453, - 0.21417862176895142, - 0.19527415931224823, - -0.11502816528081894, - -0.07707829028367996, - 0.05915222689509392, - -0.2793203592300415, - -0.22302822768688202, - -0.36246511340141296, - -0.08793774247169495, - -0.013654434122145176, - -0.4969799518585205, - 0.10282141715288162, - 0.20606772601604462, - -0.06401608139276505, - 0.0692179724574089, - -0.272441565990448, - -0.20785988867282867, - 0.05761973187327385, - -0.01220112293958664, - 0.00779695063829422, - -0.055667076259851456, - 0.11257278919219971, - -0.13053114712238312, - -0.14200228452682495, - -0.24395447969436646, - -0.0484749861061573, - 0.11776158213615417, - 0.14962710440158844, - -0.27830591797828674, - -0.08560391515493393, - 0.03429291024804115, - -0.4583478271961212, - -0.20286570489406586, - 0.3457643985748291, - -0.08061511069536209, - 0.22190706431865692, - -0.04228323698043823, - 0.2897568941116333, - 0.37156781554222107, - 0.040269188582897186, - 0.08758101612329483, - 0.3575168550014496, - 0.3711719512939453, - 0.1348014920949936, - 0.010586276650428772, - 0.058917462825775146, - -0.14736883342266083, - -0.13646730780601501, - -0.3680027425289154, - 0.432133287191391, - 0.10910732299089432, - 0.05955199897289276, - -0.13387660682201385, - 0.10775426030158997, - 0.129435732960701, - -0.25937047600746155, - -0.15835824608802795, - 0.46602025628089905, - 0.08226340264081955, - 0.11333569884300232, - 0.15931934118270874, - 0.27244317531585693, - 0.5506207346916199, - 0.056283872574567795, - -0.1177898645401001, - -0.002952082082629204, - -0.07795939594507217, - -0.3460918366909027, - -0.011193588376045227, - 0.20395559072494507, - 0.3868861198425293, - -0.1949620097875595, - -0.05413620546460152, - 0.2519850432872772, - -0.10437778383493423, - -0.07473907619714737, - -0.1767989844083786, - -0.15528874099254608, - -0.0036493216175585985, - -0.22104544937610626, - 0.2881387174129486, - 0.05212321877479553, - -0.061581164598464966, - 0.37195953726768494, - -0.31546276807785034, - -0.285865843296051, - 0.21102358400821686, - -0.10048932582139969, - -0.4610379636287689, - 0.35625675320625305, - -0.20660400390625, - 0.009336382150650024, - 0.3097992241382599, - 0.01823459006845951, - -0.06572092324495316, - -0.3018536865711212, - 0.4998917579650879, - -0.004818825516849756, - 0.009323135018348694, - -0.08686176687479019, - -0.02157263457775116, - 0.2092926949262619, - 0.48598727583885193, - 0.2776576578617096, - 0.26407870650291443, - 0.5021997094154358, - 0.05292866751551628, - -0.3201847970485687, - -0.010293897241353989, - 0.01930142007768154, - 0.2083577662706375, - 0.017872212454676628, - -0.0997745469212532, - -0.20195096731185913, - 0.14135365188121796, - 0.04806727170944214, - -0.2895495593547821, - -0.15765996277332306, - 0.10300830006599426, - 0.09191104024648666, - -0.08991285413503647, - 0.1347222775220871, - 0.16443021595478058, - -0.15019647777080536, - 0.40873590111732483, - 0.11141914129257202, - -0.17986440658569336, - 0.34716007113456726, - -0.13305944204330444, - 0.14498968422412872, - 0.026542412117123604, - -0.45693281292915344, - -0.2622758150100708, - 0.06299177557229996, - -0.1966027468442917, - -0.12339267879724503, - 0.03564261272549629, - -0.24511955678462982, - -0.01212288811802864, - -0.21585287153720856, - 0.08216943591833115, - 0.07222449034452438, - 0.2090044617652893, - 0.026764845475554466, - 0.25210943818092346, - -0.0023519210517406464, - -0.20214329659938812, - 0.15313361585140228, - -0.03482188656926155, - 0.08518984168767929, - -0.07289893180131912, - -0.0211122278124094, - 0.02887655794620514, - 0.4490208923816681, - 0.009322263300418854, - -0.11700824648141861, - 0.07086643576622009, - 0.12725088000297546, - -0.17704255878925323, - -0.2755112946033478, - -0.09371540695428848, - -0.236525759100914, - -0.2079169750213623, - 0.034852463752031326, - 0.03758084401488304, - -0.24843399226665497, - -0.0992543175816536, - -0.25878316164016724, - -0.037078987807035446, - 0.28418463468551636, - -0.025112511590123177, - -0.05046451464295387, - 0.43166181445121765, - 0.09265180677175522, - 0.23948855698108673, - -0.23897288739681244, - 0.1966056078672409, - 0.08644597977399826, - -0.2653413712978363, - -0.07257384806871414, - 0.09416624903678894, - -0.32036101818084717, - -0.09898167848587036, - 0.22344045341014862, - 0.273017942905426, - 0.017721040174365044, - 0.036064062267541885, - 0.06076476350426674, - 0.07160507887601852, - -0.3513258695602417, - -0.07528113573789597, - 0.12602455914020538, - 0.12180140614509583, - 0.43987786769866943, - 0.025460751727223396, - -0.41810885071754456, - -0.3014187216758728, - -0.1187405064702034, - -0.29285570979118347, - 0.14673706889152527, - 0.10816717147827148, - -0.11559494584798813, - -0.24644286930561066, - 0.1052325963973999, - -0.07540644705295563, - -0.10527638345956802, - 0.2645913064479828, - -0.11605269461870193, - 0.3188770115375519, - 0.09409498423337936, - -0.19941453635692596, - -0.1022973284125328, - -0.1055799201130867, - -0.24548138678073883, - -0.25419721007347107, - 0.4329320192337036, - 0.3032919466495514, - -0.27796268463134766, - -0.07650706171989441, - 0.036344319581985474, - -0.2901868224143982, - -0.21843081712722778, - -0.0613754503428936, - -0.15664418041706085, - 0.33196431398391724, - -0.061947375535964966, - -0.2609763443470001, - 0.04778829216957092, - -0.2321608066558838, - 0.05074295029044151, - 0.1350148469209671, - 0.05381980910897255, - 0.3563493490219116, - 0.20404304563999176, - -0.025042623281478882, - 0.23857776820659637, - 0.004135454539209604, - 0.025717640295624733, - 0.2688048481941223, - -0.10267829149961472, - 0.09762250632047653, - -0.2286939024925232, - -0.2117881327867508, - 0.16100965440273285, - -0.2713029682636261, - 0.11191627383232117, - 0.27136677503585815, - 0.1811058521270752, - -0.36082980036735535, - -0.3445775806903839, - -0.005027507897466421, - 0.010264168493449688, - -0.032476745545864105, - -0.1523899883031845, - -0.15726633369922638, - 0.07943437248468399, - -0.09339185804128647, - 0.0037190094590187073, - 0.14203356206417084, - 0.28511372208595276, - 0.03123265504837036, - 0.133090540766716, - -0.1909346729516983, - -0.4292370080947876, - 0.17778263986110687, - 0.20621556043624878, - -0.03376324847340584, - -0.07205662876367569, - -0.17686057090759277, - 0.3579288423061371, - 0.44633862376213074, - 0.08407029509544373, - 0.1676807999610901, - 0.022384310141205788, - -0.06089625135064125, - 0.1562354415655136, - 0.13147391378879547, - -0.04968927800655365, - 0.06171289458870888, - -0.3743605613708496, - 0.20814953744411469, - -0.17842815816402435, - -0.12424423545598984, - 0.1923644095659256, - -0.22653888165950775, - -0.4925333261489868, - -0.13193318247795105, - 0.37536486983299255, - -0.1783449798822403, - -0.16527535021305084, - 0.07734335213899612, - 0.630209743976593, - 0.05140430107712746, - -0.24980837106704712, - 0.07699554413557053, - -0.2638345956802368, - -0.040261417627334595, - 0.21359920501708984, - -0.1522991806268692, - -0.12676411867141724, - 0.03392794355750084, - 0.47888946533203125, - 0.3501335382461548, - 0.12325694411993027, - -0.2346516251564026, - 0.08157730847597122, - 0.1257614940404892, - 0.24519479274749756, - -0.21286970376968384, - -10.757946014404297, - -0.009291473776102066, - -0.22756892442703247, - 0.46466031670570374, - -0.5423631072044373, - -0.03934992477297783, - 0.23613341152668, - 0.021213358268141747, - 0.11404453963041306, - 0.096432626247406, - -0.31364408135414124, - -0.09043208509683609, - 0.19289661943912506, - 0.19799643754959106, - 0.0043192096054553986, - -0.09787527471780777, - -0.05964788421988487, - 0.21032612025737762, - 0.08695843070745468, - 0.4032469689846039, - 0.26899588108062744, - 0.4587112367153168, - -0.23318754136562347, - 0.341040700674057, - 0.21177931129932404, - -0.25358524918556213, - -0.12999172508716583, - 0.5090702772140503, - 0.07904168218374252, - -0.18045590817928314, - 0.11377272754907608, - 0.17934560775756836, - -0.2743142545223236, - 0.013526692986488342, - -0.13727936148643494, - -0.1518496870994568, - 0.012820740230381489, - 0.06898484379053116, - 0.20319044589996338, - -0.0939151868224144, - -0.12128333002328873, - -0.2013530731201172, - 0.3259390890598297, - 0.20313094556331635, - -0.0603552907705307, - -0.5567485094070435, - -0.13571934401988983, - -1.37828528881073, - 0.38680556416511536, - 0.5511536598205566, - 0.35951435565948486, - 0.08233394473791122, - 0.22801177203655243, - -0.0017556833336129785, - -0.37520062923431396, - 0.12067506462335587, - -0.25915592908859253, - -0.11339420080184937, - -0.05997457727789879, - 0.08562613278627396, - 0.1080334484577179, - -0.17564284801483154, - 0.4797980487346649, - -0.04734033718705177, - -0.24698187410831451, - 0.16455458104610443, - 0.00929794181138277, - -0.0011195391416549683, - -0.07806984335184097, - -0.32204949855804443, - -0.4876185655593872, - -0.06845023483037949, - 0.03131493926048279, - 0.016115590929985046, - 0.32492128014564514, - 0.0673675611615181, - -0.2671377658843994, - 0.281017005443573, - -0.04551045969128609, - 0.4274679124355316, - 0.11368148773908615, - -0.05841197073459625, - -0.04343247041106224, - -0.0510886125266552, - -0.2187102884054184, - -0.029945336282253265, - 0.05999518930912018, - 0.46895530819892883, - -0.05037398263812065, - -0.014261121861636639, - 0.07995612174272537, - 0.3651233911514282, - 0.09619594365358353, - -0.17362524569034576, - -0.3903440535068512, - 0.0940576121211052, - -0.08401218056678772, - 0.14387647807598114, - 0.029259881004691124, - -0.04417150840163231, - -0.2874564230442047, - 0.1145460233092308, - -0.013347026892006397, - -0.32140982151031494, - -0.3475984036922455, - 0.30111679434776306, - 0.14320456981658936, - 0.3390086591243744, - 0.11561665683984756, - -0.11282595992088318, - -0.22065280377864838, - 0.03474399819970131, - 0.0077105555683374405, - 0.6209810972213745, - 0.16166694462299347, - -0.10412747412919998, - -0.176285982131958, - -0.33293312788009644, - -0.17426474392414093, - 0.11394864320755005, - 0.31655171513557434, - -0.1508679836988449, - 0.20785969495773315, - 0.5534442067146301, - 0.03234969079494476, - 0.01733877696096897, - 1.0026479959487915, - -0.20979785919189453, - 0.2232944220304489, - -0.17640984058380127, - 0.31670764088630676, - -0.1273670792579651, - -0.42214158177375793, - -0.023469025269150734, - 0.441837877035141, - -0.3642885684967041, - 0.5917609930038452, - 0.08573174476623535, - -0.33090928196907043, - 0.0764731913805008, - -0.25858157873153687, - 0.4330381155014038, - 0.3999634087085724, - 0.32319486141204834, - -0.05311533436179161, - -0.20762354135513306, - -0.13541756570339203, - 0.10195139050483704, - -0.30530500411987305, - -0.1826472133398056, - -0.05373845621943474, - 0.1036587730050087, - 0.12404946237802505, - -0.43034979701042175, - 0.4102342426776886, - 0.10685396194458008, - -0.17151479423046112, - -0.3259042203426361, - -0.4469379484653473, - 0.07509299367666245, - 0.19275915622711182, - 0.5745915770530701, - -0.13430829346179962, - 0.025235487148165703, - -0.021532373502850533, - 0.09058181196451187, - 0.013817716389894485, - 0.24007266759872437, - 0.07725784927606583, - -0.040274929255247116, - -0.43460020422935486, - 0.21327219903469086, - -0.0029008935671299696, - -0.34916043281555176, - -0.16649727523326874, - -0.27635350823402405, - 0.07394051551818848, - 0.0357169546186924, - -0.19677084684371948, - 0.11489633470773697, - 0.3298250734806061, - 0.026993470266461372, - 0.005799110978841782, - -0.2985101342201233, - 0.09543661028146744, - 0.16362468898296356, - 0.23410403728485107, - 0.030738964676856995, - -0.25139448046684265, - -0.29827189445495605, - -0.6339108347892761, - 0.16044828295707703, - -0.30021023750305176, - -0.13482405245304108, - 0.10022813081741333, - 0.1504742056131363, - -0.3053823411464691, - -0.010070654563605785, - -0.23116815090179443, - -0.14159628748893738, - -0.1473172903060913, - 0.19586355984210968, - 0.46674203872680664, - -0.164049431681633, - 0.15731263160705566, - -0.29288679361343384, - 0.1594003140926361, - -0.025764748454093933, - -0.2894532382488251, - 0.24564482271671295, - -0.14940187335014343 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_041.json b/src/benchmark/output/results/results_graph_041.json deleted file mode 100644 index eae3de1..0000000 --- a/src/benchmark/output/results/results_graph_041.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is an adult male with no specified age or background information provided. However, based on the clinical data, it appears that the patient has a history of recurrent abdominal pain and was diagnosed with small intestinal malignancy and lung cancer.\n\n**Timeline of Diagnoses:**\n\n1. **April 2021:** The patient presented with recurrent lower abdominal pain persisting for 6 months.\n2. **April 2021:** Gastrointestinal color Doppler ultrasound and abdominal CT at an external hospital suggested a space-occupying lesion in the small intestine, indicative of a potential malignant tumor.\n3. **April 2021:** Contrast-enhanced abdominal CT at a tertiary (3A) hospital in Chongqing showed thickening of the small intestinal wall in the left mid-to-lower abdomen, accompanied by mass formation and multiple surrounding lesions, suggestive of small intestinal malignancy with lymph node metastasis and possible pelvic peritoneal involvement.\n4. **April 2021:** Comprehensive chest CT identified a space-occupying lesion in the apical-posterior segment of the left upper lobe, highly indicative of lung cancer, with enlarged mediastinal lymph nodes, suggesting potential metastasis.\n\n**Timeline of Treatments:**\n\n1. **Needle biopsies were performed on the lung, mediastinal lymph nodes, and the small intestinal mass:** All three lesions demonstrated features of high-grade neuroendocrine carcinoma, with suspected small-cell carcinoma based on morphological and immunohistochemical (IHC) findings.\n\n**Outcomes:**\nThe patient was diagnosed with small intestinal malignancy and lung cancer. The needle biopsies revealed high-grade neuroendocrine carcinoma, with suspected small-cell carcinoma. The patient's condition is currently active, with ongoing management of the malignancies.\n\n**Clinical Implications:**\nThis case highlights the importance of comprehensive imaging and diagnostic testing in identifying complex malignancies. The patient's presentation with recurrent abdominal pain led to further investigation, which ultimately revealed a diagnosis of small intestinal malignancy and lung cancer. The use of needle biopsies provided valuable information for diagnosis and management.\n\n**Conclusion:**\nThe patient's case demonstrates the need for careful consideration of multiple diagnoses and treatments in complex clinical scenarios. Further evaluation and management are necessary to ensure optimal outcomes for this patient.", - "bertscore": { - "precision": [ - 0.7356710433959961 - ], - "recall": [ - 0.6987081170082092 - ], - "f1": [ - 0.7167133092880249 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 6, - "edge_count": 5, - "avg_in_degree": 0.8333333333333334, - "density": 0.16666666666666666 - }, - "trajectory_embedding": [ - 0.30444931983947754, - 0.006148719694465399, - -0.020611906424164772, - 0.2112845629453659, - 0.04926128312945366, - 0.13728223741054535, - -0.0046950229443609715, - 0.26030847430229187, - 0.554278552532196, - -0.25159505009651184, - -0.08644217997789383, - -0.03688650205731392, - -0.6071491837501526, - -0.13639317452907562, - -0.18794214725494385, - 0.255354106426239, - 0.018570443615317345, - 0.3529287576675415, - -0.0292422566562891, - -0.10695735365152359, - -0.38087329268455505, - 0.16114011406898499, - -0.45488348603248596, - -0.022126339375972748, - 0.17385315895080566, - -0.04319499060511589, - 0.31062307953834534, - 0.47933781147003174, - 0.1913629025220871, - 0.34049686789512634, - 0.06065914407372475, - -0.03895307704806328, - 0.3099106550216675, - -0.07724110037088394, - -0.19021804630756378, - 0.19070327281951904, - 0.2158805876970291, - 0.3263753354549408, - -0.16358424723148346, - 0.08872426301240921, - -0.11923124641180038, - -0.02594313956797123, - 0.8924152255058289, - 0.16465145349502563, - 0.5067108273506165, - -0.6147108674049377, - 0.035269010812044144, - 0.48096713423728943, - -0.6432845592498779, - -0.3640672266483307, - 0.2969453036785126, - 0.9229333996772766, - 0.5794750452041626, - -0.3079588711261749, - 0.34281763434410095, - -0.08395107835531235, - -0.09220344573259354, - -0.3326992690563202, - -0.2840777337551117, - 0.042298391461372375, - -0.01765001006424427, - -0.3581271469593048, - 0.2612505853176117, - -0.22212429344654083, - -0.14039196074008942, - -0.13119292259216309, - -0.28255531191825867, - -0.10580545663833618, - -0.09806380420923233, - -0.29444313049316406, - -0.22714722156524658, - -0.2693648040294647, - -0.16948725283145905, - -0.0007233383948914707, - 0.1431458443403244, - -0.0934605598449707, - 0.37149012088775635, - -0.2216903120279312, - 0.1340092271566391, - 0.21820513904094696, - -0.24443423748016357, - -0.08248379081487656, - 0.10772529989480972, - 0.22480452060699463, - -0.5160013437271118, - 0.020863406360149384, - 0.0022128454875200987, - -0.26790690422058105, - -0.5027165412902832, - 0.12430763244628906, - 0.21313418447971344, - -0.3951311409473419, - -0.05263325944542885, - -0.17984895408153534, - -0.03142170608043671, - 0.06214052811264992, - 0.4918539524078369, - 0.2069437950849533, - 0.7984214425086975, - 0.0700187161564827, - 0.1832888126373291, - 0.039212312549352646, - 0.274178147315979, - 0.12993934750556946, - 0.4045471251010895, - 0.12273794412612915, - 0.18495221436023712, - -0.43898558616638184, - 0.2276018261909485, - 0.318191796541214, - 0.08985934406518936, - -0.3099229037761688, - -0.08233393728733063, - -0.2398369163274765, - 0.28303098678588867, - 0.025178534910082817, - -0.06817688792943954, - 0.13791577517986298, - 0.2812778055667877, - -0.44555583596229553, - -0.20539362728595734, - -0.13564391434192657, - 0.3893418312072754, - 0.3463900089263916, - -0.47483423352241516, - -0.02179686166346073, - -0.16696439683437347, - -0.01214887946844101, - -0.002025596797466278, - 0.21532867848873138, - -0.5002408623695374, - -0.32181844115257263, - -0.021876120939850807, - 0.1852828860282898, - -0.19096696376800537, - 0.17262887954711914, - -0.33545157313346863, - 0.021956196054816246, - -1.056033968925476, - 0.3122813403606415, - -0.2791072428226471, - -0.14266450703144073, - 0.13835079967975616, - -0.506390392780304, - -0.25919875502586365, - -0.2618001103401184, - -0.19948847591876984, - 0.24988268315792084, - -0.21026234328746796, - -0.025773974135518074, - 0.05344414338469505, - -0.0931263193488121, - 0.26468929648399353, - 0.35140061378479004, - 0.039396751672029495, - 0.1885678768157959, - 0.18540626764297485, - 0.2692510783672333, - 0.16111555695533752, - -0.012185454368591309, - -0.026385998353362083, - 0.4496593177318573, - 0.2337803691625595, - -0.029982587322592735, - 0.011976358480751514, - -0.6196801662445068, - -0.08217547833919525, - -0.2398442029953003, - 0.18498434126377106, - 0.036636460572481155, - -0.20689032971858978, - 0.04482651874423027, - -0.40754234790802, - 0.7139418125152588, - -0.009868025779724121, - 0.3622608482837677, - -0.16539287567138672, - -0.037632137537002563, - 0.039667412638664246, - 0.10138120502233505, - 0.07370016723871231, - -0.00611361488699913, - 0.7575839161872864, - 0.20178945362567902, - -0.18210189044475555, - 0.27738118171691895, - 0.3998847007751465, - 0.04084714129567146, - -0.2534026503562927, - 0.07988137751817703, - 0.371152400970459, - -0.39684322476387024, - 0.3362520933151245, - -0.3905141353607178, - -0.07642965763807297, - 0.11023340374231339, - -0.24483756721019745, - 0.04785129055380821, - -0.09020569175481796, - -0.013117658905684948, - 0.4007265269756317, - 0.09082914143800735, - -0.2717071771621704, - -0.018066564574837685, - 0.14314240217208862, - -0.06518880277872086, - 0.34539520740509033, - 0.07815980911254883, - 0.22026914358139038, - 0.1050342321395874, - -0.028370097279548645, - 0.21403586864471436, - -0.27480804920196533, - 0.1927311271429062, - -0.0955771803855896, - -0.4404812157154083, - 0.2970745265483856, - 0.029632292687892914, - -0.37322986125946045, - 0.21108366549015045, - -0.022920817136764526, - -0.3405972421169281, - -0.08165919035673141, - 0.07364395260810852, - -0.5523554682731628, - 0.18252336978912354, - 0.17434632778167725, - 0.2562771737575531, - 0.24669437110424042, - 0.11531581729650497, - -0.03303714096546173, - -0.4176623821258545, - 0.17865632474422455, - -0.04672049358487129, - -0.06918483227491379, - -0.4708064794540405, - 0.18723107874393463, - -0.15054015815258026, - 0.04950685426592827, - 0.47623422741889954, - 0.06712380796670914, - -0.14521940052509308, - 0.3006499707698822, - -0.3246456980705261, - -0.1354231834411621, - -0.46253564953804016, - -0.01633404567837715, - 0.1654849797487259, - -0.010873846709728241, - 0.16212640702724457, - 0.032451435923576355, - -0.20895487070083618, - 0.11191460490226746, - -0.19119377434253693, - -0.4182208478450775, - -0.44818270206451416, - -0.0025364782195538282, - 0.0068997666239738464, - -0.6253132224082947, - 0.2408476024866104, - 0.0479496605694294, - 0.12324211746454239, - -0.06413545459508896, - -0.30534180998802185, - -0.04952164366841316, - 0.10177504271268845, - -0.17027784883975983, - 0.08001428097486496, - -0.23682801425457, - 0.07406959682703018, - -0.30724063515663147, - -0.1402813047170639, - -0.16625487804412842, - -0.033153776079416275, - 0.013500084169209003, - 0.05284463241696358, - -0.27310362458229065, - 0.02987676113843918, - 0.08581081032752991, - -0.2991199791431427, - -0.12384138256311417, - 0.22327731549739838, - -0.05065109208226204, - 0.2236112803220749, - 0.07284777611494064, - 0.19818389415740967, - 0.07360146194696426, - -0.05433400347828865, - 0.03627709671854973, - 0.4331296384334564, - 0.45089077949523926, - 0.05217534676194191, - -0.04589804634451866, - -0.009615320712327957, - 0.03836708143353462, - -0.012824398465454578, - -0.42284658551216125, - 0.6141651272773743, - 0.18734614551067352, - 0.009260669350624084, - 0.004965019878000021, - 0.34772226214408875, - 0.0950869619846344, - -0.5887722373008728, - -0.07243833690881729, - 0.44805195927619934, - 0.22268271446228027, - 0.10217782855033875, - 0.09170948714017868, - 0.358333945274353, - 0.48717963695526123, - -0.1511884480714798, - 0.18778403103351593, - 0.10757309943437576, - -0.06427612900733948, - -0.047633539885282516, - -0.03943520411849022, - 0.009121266193687916, - 0.4501710832118988, - -0.023565126582980156, - -0.13157977163791656, - 0.005113040562719107, - -0.03177742660045624, - -0.14882640540599823, - -0.2571975290775299, - -0.1495993286371231, - 0.07313957810401917, - -0.11296123266220093, - 0.40896472334861755, - 0.0762522742152214, - -0.039601996541023254, - 0.5266361832618713, - -0.30094683170318604, - -0.15773415565490723, - 0.08998563885688782, - -0.24260520935058594, - -0.6098172068595886, - 0.3632773160934448, - -0.1268906146287918, - 0.08715053647756577, - 0.38993844389915466, - -0.1404844969511032, - -0.0275037232786417, - -0.011800660751760006, - 0.47239282727241516, - -0.06554708629846573, - -0.09342939406633377, - -0.030095987021923065, - -0.024251788854599, - 0.27482256293296814, - 0.4917822778224945, - 0.2155463695526123, - 0.35911181569099426, - 0.6020757555961609, - 0.14325813949108124, - -0.4743221700191498, - -0.0849204882979393, - -0.08339674025774002, - 0.5545393824577332, - -0.15834124386310577, - 0.0045108795166015625, - -0.17158234119415283, - -0.18110479414463043, - 0.016027240082621574, - -0.24640847742557526, - 0.060869913548231125, - 0.19582845270633698, - 0.1104227676987648, - 0.001631366671063006, - 0.33998653292655945, - 0.217234805226326, - -0.060860633850097656, - 0.3779362440109253, - -0.19866569340229034, - -0.06605822592973709, - 0.19021575152873993, - -0.30627137422561646, - 0.28145933151245117, - -0.1921641081571579, - -0.17014116048812866, - -0.37121525406837463, - -0.07470063120126724, - -0.22013790905475616, - -0.2916069030761719, - 0.09934493899345398, - -0.2262372225522995, - 0.24052095413208008, - -0.2031622678041458, - 0.19712810218334198, - 0.0374314971268177, - 0.22443974018096924, - 0.08369354158639908, - 0.21870796382427216, - 0.10906540602445602, - -0.2427939623594284, - 0.25505974888801575, - -0.08961344510316849, - -0.049828145653009415, - -0.042969804257154465, - 0.11021926999092102, - -0.16626115143299103, - 0.5141099691390991, - 0.32706594467163086, - -0.05500895157456398, - 0.11451997607946396, - 0.022258758544921875, - -0.018676405772566795, - -0.5041034817695618, - -0.19305311143398285, - -0.06704789400100708, - 0.14567503333091736, - 0.12242142111063004, - 0.04108719527721405, - -0.48506584763526917, - -0.3251029849052429, - -0.01945662684738636, - -0.02414090372622013, - -0.06035957857966423, - -0.17038653790950775, - -0.046822864562273026, - 0.2846166491508484, - 0.19154292345046997, - 0.4806869328022003, - -0.21407096087932587, - -0.04099218174815178, - 0.22916929423809052, - -0.30115312337875366, - -0.09253551810979843, - -0.0006849666242487729, - -0.4004303514957428, - -0.18804192543029785, - 0.17893235385417938, - 0.23328594863414764, - 0.0970485582947731, - -0.0643523707985878, - 0.10600432753562927, - 0.18999671936035156, - -0.466577410697937, - -0.22481556236743927, - 0.27017688751220703, - 0.18388251960277557, - 0.42199158668518066, - 0.019580280408263206, - -0.4013277590274811, - -0.2561156451702118, - -0.16564956307411194, - -0.3570898771286011, - 0.02255196124315262, - 0.2678517997264862, - -0.12221016734838486, - -0.12416303157806396, - 0.08655786514282227, - -0.05185982957482338, - -0.18796586990356445, - 0.23892159759998322, - -0.2473694235086441, - 0.1769278645515442, - 0.04884357750415802, - -0.28820934891700745, - -0.07720305770635605, - -0.20078523457050323, - -0.35594961047172546, - -0.12753050029277802, - 0.29869842529296875, - 0.2541065514087677, - -0.2823350727558136, - 0.07289289683103561, - 0.15148453414440155, - -0.18966080248355865, - -0.17110520601272583, - -0.09432125091552734, - -0.344870924949646, - 0.35822296142578125, - -0.0355808325111866, - -0.11803972721099854, - 0.10400390625, - -0.30159470438957214, - 0.16323436796665192, - 0.1279233992099762, - 0.11932297796010971, - 0.40000447630882263, - 0.16959452629089355, - 0.15890492498874664, - 0.5155372023582458, - 0.15445812046527863, - -0.024118982255458832, - 0.28242015838623047, - 0.06040565297007561, - -0.05152406916022301, - -0.2924273908138275, - -0.3050910532474518, - 0.28235629200935364, - -0.3471207618713379, - -0.20656134188175201, - 0.238897904753685, - 0.23410765826702118, - -0.546714723110199, - -0.25597119331359863, - -0.019604427739977837, - 0.01014996599406004, - -0.05783141031861305, - -0.28189751505851746, - -0.2620813548564911, - -0.038990676403045654, - -0.314668208360672, - -0.13775570690631866, - 0.30791059136390686, - 0.5520555377006531, - 0.19147740304470062, - 0.10137524455785751, - -0.4236726760864258, - -0.32559242844581604, - 0.1396380215883255, - 0.23868192732334137, - 0.05183298513293266, - 0.09206753224134445, - -0.2343614548444748, - 0.1743973046541214, - 0.46334776282310486, - -0.14249153435230255, - 0.18911488354206085, - 0.17258362472057343, - 0.23789972066879272, - 0.10186377912759781, - 0.06508586555719376, - -0.23495805263519287, - 0.07157877832651138, - -0.3077786862850189, - 0.328418105840683, - -0.2931845486164093, - -0.1655489206314087, - 0.19326068460941315, - -0.026658939197659492, - -0.48385629057884216, - -0.2675700783729553, - 0.43084803223609924, - -0.24279634654521942, - 0.00864074844866991, - 0.11004549264907837, - 0.3287257254123688, - 0.05707958713173866, - -0.4006049931049347, - 0.14712657034397125, - -0.5278785228729248, - -0.2744484543800354, - 0.13916929066181183, - -0.16277123987674713, - -0.1344803422689438, - -0.10934121161699295, - 0.30858954787254333, - 0.5813243985176086, - 0.3015866279602051, - -0.052073102444410324, - 0.32112106680870056, - 0.5261365175247192, - 0.36959195137023926, - -0.18850016593933105, - -10.730534553527832, - -0.0708615854382515, - -0.3673832416534424, - 0.5539219975471497, - -0.2215234637260437, - 0.04103736951947212, - -0.019703200086951256, - -0.07160046696662903, - 0.18566738069057465, - 0.06301019340753555, - -0.15237058699131012, - 0.016628960147500038, - 0.25163474678993225, - 0.3467964828014374, - 0.15247754752635956, - 0.0056220307014882565, - -0.28603681921958923, - 0.0821026936173439, - 0.046313751488924026, - 0.10677725821733475, - 0.25656983256340027, - 0.2772279679775238, - -0.34696272015571594, - 0.20607340335845947, - -0.06868680566549301, - -0.25486722588539124, - -0.26402974128723145, - 0.752619743347168, - 0.19968532025814056, - -0.3243994414806366, - 0.24373872578144073, - 0.21412618458271027, - -0.22057366371154785, - 0.3235640525817871, - -0.18494249880313873, - 0.0010357698192819953, - -0.04803740605711937, - 0.16697990894317627, - 0.34204497933387756, - -0.0044882893562316895, - -0.0889766588807106, - -0.22437135875225067, - 0.3465684652328491, - 0.13068701326847076, - -0.22928257286548615, - -0.6267004609107971, - -0.10688800364732742, - -1.593137264251709, - 0.29281461238861084, - 0.39948412775993347, - 0.33917248249053955, - 0.29968854784965515, - 0.0845453143119812, - 0.24865089356899261, - -0.36609458923339844, - -0.11906927078962326, - -0.24041865766048431, - -0.024461349472403526, - 0.11180273443460464, - 0.060140084475278854, - 0.049247175455093384, - -0.06128822639584541, - 0.6248126029968262, - -0.017972350120544434, - -0.4071972370147705, - 0.10678403824567795, - 0.14071334898471832, - -0.14433418214321136, - -0.2388710230588913, - -0.7463133931159973, - -0.6173333525657654, - -0.03395998105406761, - -0.16049452126026154, - -0.12471389770507812, - 0.4761318266391754, - 0.17905636131763458, - -0.20474974811077118, - 0.2829602360725403, - -0.06888570636510849, - 0.3597242534160614, - 0.2990966737270355, - -0.045687273144721985, - 0.2761387825012207, - -0.19643114507198334, - -0.37670040130615234, - -0.24287362396717072, - 0.16618947684764862, - 0.5839872360229492, - 0.15417195856571198, - 0.011940829455852509, - -0.05107298493385315, - 0.29189422726631165, - -0.009147892706096172, - -0.1692267805337906, - -0.378591924905777, - 0.02532440610229969, - -0.09168845415115356, - 0.09745490550994873, - 0.02221209742128849, - -0.332234650850296, - -0.16111986339092255, - 0.2007821649312973, - -0.08203088492155075, - -0.6269351840019226, - -0.44170525670051575, - 0.22449319064617157, - 0.14554975926876068, - 0.07123468071222305, - 0.03528293967247009, - -0.2921448349952698, - -0.20748262107372284, - 0.0266004279255867, - 0.17636388540267944, - 0.48992180824279785, - 0.11791204661130905, - -0.021128976717591286, - 0.06944285333156586, - -0.4364292621612549, - -0.08674383908510208, - -0.04822637140750885, - 0.3690490424633026, - -0.3274513781070709, - 0.24739038944244385, - 0.6773386001586914, - 0.11457597464323044, - -0.14864380657672882, - 0.9107500910758972, - -0.21528442203998566, - 0.2635842263698578, - -0.05684453248977661, - 0.10948190838098526, - -0.025602400302886963, - -0.40036359429359436, - 0.2605412006378174, - 0.47099781036376953, - -0.36715424060821533, - 0.8704816699028015, - 0.403118759393692, - -0.3874496519565582, - 0.0940251275897026, - -0.37551936507225037, - 0.40201130509376526, - 0.23748748004436493, - 0.18106471002101898, - -0.09214673191308975, - -0.22057150304317474, - -0.2621111571788788, - 0.13304631412029266, - -0.4304714500904083, - -0.3130161464214325, - -0.04137923941016197, - 0.2878616154193878, - 0.2829015552997589, - -0.06744743138551712, - 0.27781134843826294, - 0.22156965732574463, - -0.08226055651903152, - -0.2263639122247696, - -0.5534052848815918, - -0.149614617228508, - 0.029097318649291992, - 0.9729077816009521, - -0.09425804764032364, - 0.055647049099206924, - -0.07625884562730789, - 0.14813709259033203, - -0.2152082473039627, - 0.08070487529039383, - 0.13397134840488434, - -0.12320569902658463, - -0.45756617188453674, - 0.16502054035663605, - 0.10859443992376328, - -0.35189089179039, - -0.09274943917989731, - -0.08054706454277039, - -0.2427108883857727, - 0.17539434134960175, - -0.2347908765077591, - -0.0715331956744194, - 0.39140722155570984, - -0.0908501073718071, - 0.09455703943967819, - -0.38132593035697937, - -0.05619875714182854, - 0.1364186853170395, - 0.23979268968105316, - 0.17700563371181488, - -0.40335068106651306, - -0.336508184671402, - -0.5706771612167358, - 0.3133560121059418, - -0.3139462471008301, - 0.009091004729270935, - 0.06701447814702988, - 0.12172123789787292, - -0.2826508581638336, - 0.0670294463634491, - -0.0831211730837822, - 0.13625100255012512, - -0.3051292598247528, - 0.34360718727111816, - 0.3293860852718353, - -0.216498002409935, - 0.32716473937034607, - -0.02775339037179947, - 0.15987886488437653, - -0.045110415667295456, - -0.3444202244281769, - 0.13037140667438507, - -0.288843035697937 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_042.json b/src/benchmark/output/results/results_graph_042.json deleted file mode 100644 index d25aca4..0000000 --- a/src/benchmark/output/results/results_graph_042.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 55-year-old male with an 80-pack year smoking history and a positive family history of lung cancer. He presented to the emergency department with symptoms of fevers, productive cough, dyspnea, and wheeze.\n\n**Timeline of Diagnoses:**\n\n1. **Initial Presentation (Step 1):**\nThe patient was treated with oral amoxicillin and oral prednisone for his initial presentation of community-acquired pneumonia. However, his symptoms deteriorated, leading to a worsening consolidation on repeat chest X-ray.\n2. **Chest X-ray and Diagnosis (Step 2):**\nA chest X-ray revealed right middle and lower lobe consolidation with associated moderate pleural effusion, confirming the diagnosis of community-acquired pneumonia. The patient was admitted and treated for SIADH (Syndrome of Inappropriate Antidiuretic Hormone).\n3. **CT Scan and Diagnosis (Step 3):**\nA CT scan of the thorax revealed a right hilar mass with mediastinal involvement and right-sided hilar adenopathy with superimposed extensive air space consolidation, leading to a diagnosis of small cell lung cancer.\n\n**Timeline of Treatments:**\n\n1. **Initial Treatment (Step 1):**\nThe patient was treated with oral amoxicillin and oral prednisone for community-acquired pneumonia.\n2. **Intravenous Piperacillin-Tazobactam and Oral Clarithromycin (Step 2):**\nDespite treatment, the patient's condition deteriorated, and he was transferred to the intensive care unit, intubated, and ventilated.\n3. **Bronchoscopy with Biopsy (Step 3):**\nA biopsy during bronchoscopy revealed histologically monotonous, small cells with dark ovoid nuclei, no nucleoli, and several mitotic figures, confirming the diagnosis of small cell lung cancer.\n\n**Outcome:**\n\nThe patient was diagnosed with extensive stage disease with adrenal metastases. Full staging consisting of a CT-scan of the brain and Thorax-Abdomen-Pelvis confirmed the extent of the disease. The patient's condition continued to deteriorate, and he required ongoing treatment for small cell lung cancer.\n\n**Conclusion:**\n\nThis case highlights the importance of early diagnosis and aggressive treatment in patients with small cell lung cancer. Despite initial treatment for community-acquired pneumonia, the patient's symptoms worsened, leading to a delayed diagnosis of small cell lung cancer. Early intervention with bronchoscopy and biopsy is crucial in confirming the diagnosis and initiating appropriate treatment.", - "bertscore": { - "precision": [ - 0.7257970571517944 - ], - "recall": [ - 0.6911720037460327 - ], - "f1": [ - 0.7080615162849426 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 3, - "edge_count": 2, - "avg_in_degree": 0.6666666666666666, - "density": 0.3333333333333333 - }, - "trajectory_embedding": [ - 0.176760733127594, - 0.1953790932893753, - -0.051017407327890396, - 0.14911989867687225, - 0.029277389869093895, - -0.0038739393930882215, - -0.07321859896183014, - 0.11192312836647034, - 0.3296187222003937, - -0.43098923563957214, - -0.27918359637260437, - 0.277006596326828, - -0.8611040115356445, - -0.04954497516155243, - -0.2710709273815155, - -0.19137026369571686, - 0.1420251578092575, - 0.4031757414340973, - 0.10346460342407227, - -0.22770468890666962, - -0.3608964681625366, - 0.03099057264626026, - -0.5080804824829102, - -0.07784568518400192, - 0.05579877272248268, - 0.01793581247329712, - 0.1847047656774521, - 0.5364610552787781, - 0.3066644072532654, - 0.11463487893342972, - 0.11377624422311783, - 0.09345194697380066, - -0.3991524279117584, - 0.09671714901924133, - 0.0026664312463253736, - 0.47183895111083984, - 0.22618961334228516, - 0.19951260089874268, - -0.04075576737523079, - 0.07840671390295029, - 0.0052877566777169704, - 0.06341569870710373, - 0.617622435092926, - 0.35639631748199463, - 0.7551865577697754, - -0.5256202220916748, - 0.0021676868200302124, - 0.4564478397369385, - -0.5953836441040039, - -0.16581304371356964, - 0.17912375926971436, - 0.7993693351745605, - 0.5948236584663391, - 0.019268540665507317, - 0.5925260186195374, - -0.016624385491013527, - -0.3558383285999298, - 0.08631757646799088, - -0.27802327275276184, - 0.1422765851020813, - 0.11728540807962418, - 0.03832729533314705, - -0.036142852157354355, - 0.023794079199433327, - -0.3296973407268524, - -0.07221303135156631, - -0.25971147418022156, - 0.1371050775051117, - -0.13026796281337738, - -0.6547752022743225, - -0.21225517988204956, - -0.332579106092453, - -0.3397000730037689, - 0.2052355259656906, - 0.2875135838985443, - -0.3090141713619232, - 0.0012041330337524414, - -0.0013058781623840332, - -0.11375304311513901, - -0.2560129463672638, - 0.2976473867893219, - 0.07212474197149277, - 0.20104221999645233, - 0.30518805980682373, - -0.20540392398834229, - 0.17234499752521515, - -0.21182261407375336, - 0.13605709373950958, - 0.020500915125012398, - 0.24396371841430664, - -0.06944471597671509, - -0.05467161163687706, - 0.14779908955097198, - -0.1364244669675827, - 0.4281114637851715, - -0.3787524402141571, - 0.20131908357143402, - 0.3505699932575226, - 0.9610412120819092, - -0.11861929297447205, - 0.1679016500711441, - 0.15708953142166138, - 0.4255848228931427, - 0.07983220368623734, - 0.45402953028678894, - -0.06933274120092392, - 0.26480138301849365, - -0.3294649124145508, - -0.004628519061952829, - 0.050210271030664444, - 0.036194976419210434, - -0.1681593656539917, - 0.18578600883483887, - -0.30561795830726624, - -0.14128059148788452, - 0.08334984630346298, - -0.2851807475090027, - 0.018453950062394142, - -0.3289964199066162, - -0.19804048538208008, - 0.14542773365974426, - -0.3856911361217499, - 0.18717539310455322, - 0.06334962695837021, - -0.5010031461715698, - -0.13175028562545776, - -0.08844069391489029, - 0.033652182668447495, - -0.0029546990990638733, - 0.14489586651325226, - -0.44844546914100647, - -0.1317819356918335, - 0.14936427772045135, - 0.4307573139667511, - -0.08657777309417725, - 0.21823585033416748, - -0.5918814539909363, - 0.41923364996910095, - -1.3499425649642944, - 0.1190687045454979, - -0.3193255662918091, - 0.02653350867331028, - -0.024259373545646667, - -0.6500796675682068, - -0.09716632962226868, - 0.013658921234309673, - -0.16403459012508392, - 0.049708668142557144, - 0.10704775899648666, - 0.04599747434258461, - -0.359287291765213, - 0.1533820778131485, - 0.02779846452176571, - -0.02463662624359131, - 0.10845767706632614, - 0.18330542743206024, - 0.29589682817459106, - 0.45472416281700134, - 0.3848477900028229, - -0.2159098982810974, - -0.20531630516052246, - 0.2351929396390915, - -0.12688887119293213, - -0.12528391182422638, - 0.05640178918838501, - -0.689354419708252, - 0.3644484579563141, - -0.13600732386112213, - 0.15285834670066833, - -0.011670471169054508, - 0.051672324538230896, - 0.24712301790714264, - 0.12494352459907532, - 0.304101824760437, - 0.2736234664916992, - 0.4137122631072998, - 0.10276854038238525, - 0.08590883016586304, - 0.4124111235141754, - 0.10651130229234695, - 0.1396188586950302, - -0.09126026183366776, - 0.42278575897216797, - 0.206817626953125, - -0.4564301073551178, - 0.09470834583044052, - 0.46839380264282227, - -0.2693515717983246, - -0.39169231057167053, - -0.3115884065628052, - 0.2925197184085846, - -0.08546879142522812, - 0.17808695137500763, - -0.2727504372596741, - 0.15435650944709778, - 0.08746976405382156, - -0.39952540397644043, - -0.12534818053245544, - 0.346821665763855, - -0.04405486211180687, - 0.14733943343162537, - 0.1411191076040268, - 0.10362551361322403, - -0.05016171559691429, - 0.11964450031518936, - -0.209400475025177, - 0.46075424551963806, - 0.12432900071144104, - -0.018589450046420097, - -0.16844654083251953, - -0.08816959708929062, - 0.2965429127216339, - 0.19664736092090607, - 0.3215891718864441, - 0.0178938377648592, - -0.2796410620212555, - 0.188285231590271, - -0.0052331886254251, - -0.20459836721420288, - -0.051705848425626755, - -0.13801994919776917, - 0.044523030519485474, - 0.5482098460197449, - -0.08471328765153885, - -0.028035184368491173, - 0.20628733932971954, - 0.40967774391174316, - 0.21446162462234497, - 0.16855184733867645, - -0.044506046921014786, - 0.05750409886240959, - -0.46756669878959656, - 0.29467102885246277, - -0.10089502483606339, - -0.1413004845380783, - -0.4109868109226227, - 0.0672823116183281, - -0.1269810050725937, - -0.2562849819660187, - 0.21275724470615387, - -0.0876331552863121, - 0.06560695916414261, - 0.05654078349471092, - -0.20784306526184082, - 0.24041442573070526, - -0.3613337278366089, - 0.12500035762786865, - 0.616300106048584, - 0.10365105420351028, - 0.15147890150547028, - 0.10427824407815933, - -0.06110277771949768, - 0.4667545258998871, - -0.4844733774662018, - -0.24172718822956085, - -0.20445966720581055, - -0.2697950303554535, - -0.05595904588699341, - -0.17320246994495392, - 0.22019989788532257, - -0.337723970413208, - -0.08011826127767563, - 0.3359011113643646, - -0.20389066636562347, - -0.11227845400571823, - -0.18794380128383636, - 0.10551958531141281, - 0.22360821068286896, - 0.19195719063282013, - 0.00779077410697937, - -0.25294092297554016, - -0.09578210115432739, - -0.03647639602422714, - -0.1060033068060875, - 0.29585540294647217, - 0.42808738350868225, - -0.03658367320895195, - 0.15350563824176788, - 0.27926725149154663, - -0.5604315400123596, - -0.41471102833747864, - 0.14428895711898804, - -0.3980361521244049, - 0.27606824040412903, - -0.07569596916437149, - 0.009504512883722782, - 0.4999682903289795, - -0.05888872221112251, - 0.05150116980075836, - 0.19976115226745605, - 0.3974734842777252, - 0.27117249369621277, - -0.045356765389442444, - -0.08909095078706741, - -0.24926887452602386, - -0.020168231800198555, - -0.417531818151474, - 0.32412901520729065, - -0.03255428373813629, - -0.06625912338495255, - 0.3134082853794098, - 0.14072097837924957, - -0.08817127346992493, - -0.39243069291114807, - -0.31279775500297546, - 0.37170663475990295, - 0.12233477830886841, - -0.03529100492596626, - 0.04317374899983406, - 0.2573303282260895, - 0.89295893907547, - 0.07392948120832443, - -0.27497604489326477, - -0.014985700137913227, - -0.029071403667330742, - -0.22791443765163422, - 0.07956498861312866, - -0.1362917423248291, - 0.08953604847192764, - -0.20919257402420044, - -0.11047200113534927, - 0.5780686736106873, - -0.24313819408416748, - -0.019021116197109222, - 0.15542905032634735, - 0.09759455919265747, - -0.14222872257232666, - -0.2825522720813751, - 0.30805858969688416, - -0.5111961960792542, - -0.2703641653060913, - 0.5282735824584961, - -0.024953065440058708, - -0.18077902495861053, - 0.3839209973812103, - 0.10003919154405594, - -0.6877467036247253, - 0.05104682222008705, - -0.24696798622608185, - 0.01559971272945404, - 0.2788621485233307, - -0.008360214531421661, - -0.19113872945308685, - -0.403539776802063, - 0.06188927963376045, - 0.2664903998374939, - 0.051772892475128174, - -0.07798878103494644, - -0.25968730449676514, - 0.4350776672363281, - 0.40839776396751404, - -0.03997641056776047, - 0.15586845576763153, - 0.06610652804374695, - -0.35201239585876465, - 0.01364248525351286, - -0.29486972093582153, - 0.2955475151538849, - 0.0634290799498558, - -0.43355831503868103, - -0.27381500601768494, - -0.3912229835987091, - 0.20843924582004547, - 0.11445034295320511, - -0.15392738580703735, - -0.2048659324645996, - -0.025825968012213707, - -0.15386046469211578, - 0.037808600813150406, - 0.45052245259284973, - 0.2948647439479828, - -0.019571436569094658, - 0.567939043045044, - 0.023282736539840698, - -0.20568548142910004, - 0.2070475071668625, - -0.08443775773048401, - 0.19174475967884064, - -0.099333256483078, - -0.5209765434265137, - -0.4246678054332733, - -0.04948423430323601, - -0.47326698899269104, - -0.04744750261306763, - -0.024361511692404747, - 0.2183607965707779, - -0.20858126878738403, - 0.01522951852530241, - -0.017802583053708076, - 0.3053441643714905, - 0.28690871596336365, - -0.04408945143222809, - 0.7120891213417053, - 0.23640896379947662, - -0.26640576124191284, - 0.0014102855930104852, - -0.3209123909473419, - 0.05637433007359505, - 0.0466746985912323, - 0.15954428911209106, - -0.22269035875797272, - 0.325716108083725, - -0.15379256010055542, - -0.41118502616882324, - -0.18634571135044098, - -0.28260573744773865, - -0.25647491216659546, - -0.39370647072792053, - 0.1004372239112854, - -0.1269788146018982, - -0.17018036544322968, - 0.16157053411006927, - 0.12490684539079666, - 0.1283322274684906, - -0.1097780093550682, - 0.13323421776294708, - 0.46153607964515686, - 0.15318118035793304, - 0.04895490035414696, - 0.1789567470550537, - 0.1648648977279663, - -0.06159451603889465, - 0.3219197690486908, - 0.025522267445921898, - 0.23592786490917206, - 0.19767038524150848, - -0.5436839461326599, - 0.04449917748570442, - 0.008271892555058002, - -0.2718560993671417, - 0.1464080661535263, - 0.28075283765792847, - 0.012192651629447937, - -0.05324164032936096, - -0.1414031833410263, - -0.16207380592823029, - 0.11525227874517441, - -0.2502630650997162, - -0.1339118331670761, - 0.4359862804412842, - -0.16172578930854797, - 0.6355075836181641, - -0.14171887934207916, - -0.37877917289733887, - -0.15431591868400574, - 0.21045853197574615, - -0.37274932861328125, - 0.21095125377178192, - -0.25941893458366394, - -0.4650915563106537, - -0.10340850800275803, - 0.08325918018817902, - -0.06945455819368362, - -0.06968525052070618, - 0.13126736879348755, - -0.05673785135149956, - 0.26779162883758545, - 0.055392712354660034, - -0.4166419208049774, - 0.03647809848189354, - -0.47522807121276855, - -0.4738325774669647, - -0.09521538019180298, - 0.4758619964122772, - 0.11976557970046997, - 0.07454589754343033, - 0.006608337163925171, - 0.05471857264637947, - -0.15914873778820038, - -0.5294473767280579, - -0.14684784412384033, - 0.10514563322067261, - 0.4952622354030609, - -0.09489969164133072, - -0.14742045104503632, - 0.27939850091934204, - -0.334784597158432, - 0.028686678037047386, - 0.23571622371673584, - 0.1252385675907135, - 0.05279863253235817, - 0.09560441225767136, - 0.22002921998500824, - 0.12166499346494675, - 0.28376397490501404, - 0.13331301510334015, - 0.05580762028694153, - -0.0864090844988823, - 0.09063669294118881, - 0.059817779809236526, - -0.20827162265777588, - 0.45342445373535156, - -0.31427082419395447, - 0.3520161211490631, - -0.09930475801229477, - 0.5307863354682922, - -0.33972644805908203, - -0.3655671179294586, - -0.1881479024887085, - -0.18258804082870483, - -0.127990260720253, - -0.40887418389320374, - -0.1714436411857605, - 0.262963205575943, - -0.14577850699424744, - -0.05530623719096184, - 0.3025950789451599, - 0.16022606194019318, - 0.12745222449302673, - 0.0077459439635276794, - -0.2655176818370819, - -0.632535994052887, - 0.1538219004869461, - 0.49684441089630127, - 0.19823694229125977, - -0.34642505645751953, - -0.09009170532226562, - 0.28932783007621765, - 0.4393061697483063, - 0.11179962754249573, - -0.19989784061908722, - -0.1259882003068924, - 0.01101820170879364, - -0.3703646659851074, - -0.056064192205667496, - -0.1558464914560318, - 0.22711406648159027, - -0.32530638575553894, - 0.01644144020974636, - 0.08265962451696396, - -0.3949767053127289, - 0.23712849617004395, - -0.5054845213890076, - -0.5108644366264343, - 0.11063441634178162, - -0.028105640783905983, - -0.04547194764018059, - 0.05530448257923126, - 0.2863953113555908, - 0.45693543553352356, - 0.030841201543807983, - -0.033988796174526215, - 0.2957148551940918, - -0.47486379742622375, - 0.2359715849161148, - 0.17620253562927246, - -0.09015596657991409, - 0.23344407975673676, - 0.0012347897281870246, - 0.33786121010780334, - 0.27197620272636414, - 0.14999990165233612, - -0.49232470989227295, - 0.201588436961174, - 0.08742823451757431, - 0.39287471771240234, - -0.1673954278230667, - -10.671639442443848, - 0.38340577483177185, - -0.09533160924911499, - 0.47304537892341614, - -0.25323596596717834, - -0.17169515788555145, - -0.2515290677547455, - 0.17949140071868896, - 0.04081028699874878, - 0.19899797439575195, - -0.22160349786281586, - 0.24038934707641602, - 0.2943352460861206, - 0.4289005994796753, - -0.0772964134812355, - 0.0583774708211422, - -0.02861029841005802, - 0.3841901123523712, - -0.23587171733379364, - 0.24684830009937286, - 0.2615526616573334, - 0.3133337199687958, - -0.16772590577602386, - 0.5396270155906677, - 0.2792489230632782, - -0.27337634563446045, - -0.15890295803546906, - 0.09174960106611252, - 0.07703473418951035, - -0.5801268219947815, - 0.5248361229896545, - 0.22420674562454224, - -0.2239551693201065, - -0.1485213190317154, - 0.10806968808174133, - -0.4040209949016571, - -0.10093700885772705, - -0.11034881323575974, - 0.21808882057666779, - 0.08912518620491028, - 0.24358980357646942, - -0.36630353331565857, - -0.1102854534983635, - 0.3008137345314026, - -0.18784068524837494, - -0.31603947281837463, - -0.32549622654914856, - -1.5355390310287476, - 0.1900397092103958, - 0.4430789053440094, - 0.5844447016716003, - 0.09567203372716904, - 0.0803869292140007, - 0.25372055172920227, - -0.26404860615730286, - 0.2008887678384781, - -0.36325278878211975, - 0.13599081337451935, - 0.17971085011959076, - -0.26277604699134827, - 0.18849825859069824, - -0.2315889596939087, - 0.16898703575134277, - -0.4930959641933441, - -0.3613952398300171, - 0.08705425262451172, - -0.12067624181509018, - -0.14602230489253998, - -0.17770004272460938, - -0.15405301749706268, - -0.3939475119113922, - 0.019526440650224686, - 0.18451924622058868, - -0.16590403020381927, - 0.326973557472229, - 0.06615959107875824, - -0.6035897731781006, - 0.1961844563484192, - -0.2545764744281769, - 0.431539922952652, - 0.35627272725105286, - 0.0010225375881418586, - 0.04850681126117706, - -0.19375044107437134, - -0.2871033251285553, - -0.1466614305973053, - -0.09381990879774094, - 0.4194973409175873, - 0.19034157693386078, - 0.10091809183359146, - 0.11657927185297012, - 0.10435723513364792, - -0.33405789732933044, - -0.09452996402978897, - -0.43706297874450684, - 0.3594597578048706, - 0.1551724374294281, - 0.1706889420747757, - 0.12404068559408188, - 0.01611391454935074, - -0.2693396508693695, - -0.016864558681845665, - -0.18417353928089142, - -0.21909146010875702, - -0.11883008480072021, - 0.19189679622650146, - 0.29081234335899353, - 0.09379366785287857, - 0.46491947770118713, - 0.2151120901107788, - 0.2995355427265167, - 0.068540558218956, - 0.46501049399375916, - 0.49218252301216125, - 0.12894625961780548, - -0.2741226851940155, - -0.3826291859149933, - 0.025669187307357788, - -0.2856440842151642, - 0.2849830090999603, - 0.1671065241098404, - 0.060206856578588486, - 0.1865176409482956, - 0.5717129707336426, - -0.05836807191371918, - 0.06237626448273659, - 0.9824534058570862, - -0.3012833297252655, - 0.4209674596786499, - -0.008629280142486095, - 0.19291043281555176, - 0.06605979055166245, - -0.4317258894443512, - 0.029167592525482178, - 0.27556514739990234, - -0.2667998969554901, - 0.4749845564365387, - 0.10919895768165588, - -0.21581274271011353, - 0.04922570660710335, - -0.34519684314727783, - 0.37242913246154785, - 0.12207848578691483, - 0.16078944504261017, - -0.30542969703674316, - -0.37706276774406433, - -0.17368878424167633, - 0.0968138799071312, - -0.35141775012016296, - -0.08435503393411636, - -0.19869549572467804, - 0.003198837162926793, - -0.0310613214969635, - -0.41230401396751404, - 0.42263761162757874, - 0.019141511991620064, - -0.15781597793102264, - -0.07599152624607086, - -0.461268812417984, - -0.1550312042236328, - 0.001110504032112658, - 0.37515008449554443, - 0.27536654472351074, - -0.2189927101135254, - -0.2458224892616272, - 0.33492311835289, - -0.08430560678243637, - 0.059805672615766525, - 0.023478565737605095, - 0.09936013072729111, - -0.5733371376991272, - 0.25314828753471375, - 0.11184410005807877, - -0.5116942524909973, - -0.42027080059051514, - -0.40867987275123596, - 0.40452876687049866, - -0.016795402392745018, - 0.06636976450681686, - 0.6065109372138977, - 0.21969683468341827, - -0.010983326472342014, - 0.16668827831745148, - -0.3131900727748871, - 0.10839418321847916, - 0.14119262993335724, - -0.08084989339113235, - 0.20771722495555878, - -0.2592562437057495, - -0.35060128569602966, - -0.33079805970191956, - 0.2536146938800812, - -0.3335017263889313, - 0.017967144027352333, - -0.18372531235218048, - 0.09738472104072571, - -0.4425588846206665, - 0.15516291558742523, - -0.1677524298429489, - -0.14607693254947662, - -0.33311915397644043, - 0.07226600497961044, - 0.3769802153110504, - -0.35753121972084045, - 0.11794805526733398, - -0.23631729185581207, - 0.18605948984622955, - 0.12442031502723694, - -0.50091153383255, - 0.2867233157157898, - -0.11931165307760239 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_043.json b/src/benchmark/output/results/results_graph_043.json deleted file mode 100644 index 4903810..0000000 --- a/src/benchmark/output/results/results_graph_043.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 45-year-old female with a history of smoking (25 years, averaging 20 cigarettes per day) and no comorbidities. She has an Eastern Cooperative Oncology Group Performance Status of 1 (ECOG PS 1).\n\n**Timeline of Diagnoses:**\n\n* July 2023: The patient experiences frequent headaches, forgetfulness, and uncontrollable hand tremors.\n* August 2023: A metastatic lung cancer diagnosis is made with brain lesions. Imaging reveals an expansive frontal lesion in diameter of 3.9 \u00d7 3.4 \u00d7 3.8 cm, bordered by extensive perifocal vasogenic edema with a compressive effect on the surrounding brain parenchyma.\n* August 2023: A family history positive for malignancy (mother suffered from lung and cervical cancer) is noted.\n\n**Timeline of Treatments:**\n\n* August 2023: The patient undergoes surgery for a tumor in the frontal region of the left hemisphere of the brain.\n* September 2023: The cerebellar tumor is treated with X-knife radiosurgery. Pathohistological analysis reveals primary lung adenocarcinoma, and Pembrolizumab treatment is initiated due to PD-L1 expression > 50%.\n* October 2023: Follow-up imaging shows immune unconfirmed progressive disease (iUPD) in the upper left lobe, lymph node conglomerate, pericardial effusion, and stable disease in the endocranium.\n\n**Timeline of Outcomes:**\n\n* August 2023: The patient is diagnosed with metastatic lung cancer and brain lesions.\n* September 2023: The cerebellar tumor is treated successfully with X-knife radiosurgery.\n* October 2023: Follow-up imaging shows immune unconfirmed progressive disease (iUPD) in the upper left lobe, indicating a potential recurrence of the cancer.\n\n**Clinical Progression:**\nThe patient's clinical progression has been marked by an initial presentation of symptoms suggestive of neurological involvement (headaches, forgetfulness, hand tremors), followed by a diagnosis of metastatic lung cancer with brain lesions. The patient underwent surgery for a tumor in the frontal region of the left hemisphere of the brain and was treated with X-knife radiosurgery for the cerebellar tumor. Despite these interventions, follow-up imaging has revealed immune unconfirmed progressive disease (iUPD) in the upper left lobe, indicating a potential recurrence of the cancer.\n\n**Conclusion:**\nThis patient's clinical case highlights the complexities of managing metastatic lung cancer with brain lesions. The patient's initial presentation and subsequent diagnosis were marked by significant neurological involvement, which required prompt intervention. While the patient has undergone several treatments, including surgery and X-knife radiosurgery, follow-up imaging has revealed a potential recurrence of the cancer. Further management strategies will be necessary to address this emerging issue.", - "bertscore": { - "precision": [ - 0.40210187435150146 - ], - "recall": [ - 0.5993436574935913 - ], - "f1": [ - 0.48129868507385254 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 6, - "edge_count": 5, - "avg_in_degree": 0.8333333333333334, - "density": 0.16666666666666666 - }, - "trajectory_embedding": [ - 0.09525909274816513, - 0.09550046175718307, - -0.20907330513000488, - 0.1778288334608078, - -0.01808859594166279, - -0.017407741397619247, - 0.1336432248353958, - 0.2776424288749695, - 0.3049672544002533, - -0.5186644196510315, - -0.39235493540763855, - 0.13863205909729004, - -0.6392437219619751, - -0.09407756477594376, - -0.36295297741889954, - -0.03038630820810795, - 0.13283970952033997, - 0.26260003447532654, - -0.005716294050216675, - -0.1553003042936325, - -0.42395004630088806, - 0.08819957822561264, - -0.43013647198677063, - -0.15254174172878265, - 0.2930234372615814, - -0.09525247663259506, - 0.2066822648048401, - 0.4679269790649414, - 0.2818489968776703, - 0.20123203098773956, - 0.14681705832481384, - 0.03852735087275505, - -0.12049124389886856, - 0.0010110443690791726, - -0.03518563508987427, - 0.3390667140483856, - 0.40244463086128235, - 0.2594294548034668, - -0.06875213235616684, - 0.07848862558603287, - -0.0702722892165184, - 0.23162691295146942, - 0.7816303372383118, - 0.4180329740047455, - 0.5912573933601379, - -0.530232846736908, - 0.05792836844921112, - 0.46866393089294434, - -0.565815269947052, - -0.19378648698329926, - 0.0774909257888794, - 0.6212816834449768, - 0.6538401246070862, - -0.09370245784521103, - 0.49504420161247253, - -0.11058912426233292, - -0.3751920759677887, - -0.13758356869220734, - -0.17873086035251617, - 0.10599756240844727, - -0.09670057147741318, - 0.09471055865287781, - 0.1734563112258911, - 0.07272247970104218, - -0.24201028048992157, - -0.312794953584671, - -0.19031043350696564, - 0.1045469418168068, - -0.016497353091835976, - -0.501361072063446, - -0.3281736671924591, - -0.2012891173362732, - -0.09983757138252258, - 0.13818290829658508, - 0.30403706431388855, - -0.29739320278167725, - 0.3016909956932068, - 0.031920790672302246, - -0.11211105436086655, - 0.14282028377056122, - 0.295123428106308, - -0.16561834514141083, - 0.007161051034927368, - 0.20809270441532135, - -0.363174170255661, - 0.15119221806526184, - -0.09141770005226135, - -0.14454706013202667, - -0.2314302921295166, - 0.316809743642807, - 0.22135423123836517, - -0.21415914595127106, - -0.11266795545816422, - -0.09321215003728867, - 0.2281026989221573, - -0.017894569784402847, - 0.19705061614513397, - 0.5171425938606262, - 1.1243793964385986, - 0.03885626792907715, - 0.22470365464687347, - 0.08844824880361557, - 0.2244553565979004, - -0.00871605146676302, - 0.5624383091926575, - -0.07938951998949051, - 0.13358695805072784, - -0.5366116762161255, - -0.029276179149746895, - 0.3883516788482666, - 0.0010936235776171088, - -0.08579659461975098, - 0.15381455421447754, - -0.5134308338165283, - -0.09461348503828049, - 0.1553531438112259, - -0.12409541010856628, - 0.02394341491162777, - 0.030190065503120422, - -0.42640796303749084, - -0.1338324397802353, - -0.2208145260810852, - 0.4372215270996094, - 0.30920493602752686, - -0.6668525338172913, - -0.06948386132717133, - -0.23411144316196442, - 0.3144535720348358, - -0.026524623855948448, - 0.1361847072839737, - -0.5228275060653687, - -0.03873586654663086, - -0.1162203773856163, - 0.27695176005363464, - -0.24489302933216095, - 0.3557276427745819, - -0.5206514000892639, - 0.13910776376724243, - -1.1145668029785156, - 0.3693017065525055, - -0.4768098294734955, - -0.1623704731464386, - 0.10079312324523926, - -0.4389355182647705, - -0.15953339636325836, - -0.2504326403141022, - -0.08854974061250687, - 0.08887997269630432, - 0.044769495725631714, - -0.10872507840394974, - -0.1022803857922554, - 0.22332735359668732, - 0.2131807655096054, - 0.3020921051502228, - 0.08886826038360596, - 0.2041633278131485, - 0.0937061533331871, - 0.3795553743839264, - 0.34449532628059387, - -0.11926808208227158, - 0.05457328259944916, - 0.20861704647541046, - 0.05513465031981468, - -0.15487004816532135, - 0.19973981380462646, - -0.7281115055084229, - 0.35998186469078064, - -0.48408615589141846, - 0.18382520973682404, - 0.12717343866825104, - -0.09318947792053223, - 0.1630433052778244, - -0.09214235097169876, - 0.48308658599853516, - 0.34685277938842773, - 0.400411993265152, - 0.13527299463748932, - -0.12398535758256912, - 0.21059846878051758, - 0.14224332571029663, - 0.14225418865680695, - -0.10271662473678589, - 0.6476855278015137, - 0.1890830546617508, - -0.26332470774650574, - 0.23012302815914154, - 0.23844265937805176, - -0.22579850256443024, - -0.1814236044883728, - -0.24198400974273682, - 0.6755089163780212, - -0.33379510045051575, - 0.4035644233226776, - -0.4386764466762543, - 0.010704636573791504, - 0.14577649533748627, - -0.15491344034671783, - -0.32322564721107483, - 0.10033613443374634, - -0.40082892775535583, - 0.2794477045536041, - 0.0634000226855278, - -0.22455008327960968, - 0.10140854120254517, - 0.12052998691797256, - -0.11810001730918884, - 0.1337466686964035, - 0.15499281883239746, - 0.03131266310811043, - -0.13363775610923767, - -0.17178797721862793, - 0.3085792362689972, - -0.02657986618578434, - 0.25174999237060547, - 0.03444848954677582, - -0.308789998292923, - 0.18227632343769073, - -0.12396339327096939, - -0.2197050303220749, - 0.15430690348148346, - -0.152048259973526, - 0.1337318867444992, - 0.3735392391681671, - -0.11107132583856583, - -0.3768274784088135, - 0.3608436584472656, - 0.21080486476421356, - 0.2642073333263397, - 0.145765483379364, - -0.07784359902143478, - 0.12721042335033417, - -0.41665422916412354, - 0.3751732110977173, - -0.13365386426448822, - -0.24480558931827545, - -0.3582226037979126, - 0.30804872512817383, - -0.21378298103809357, - -0.13692019879817963, - 0.4645352065563202, - -0.1631310135126114, - -0.2575817406177521, - 0.15171414613723755, - -0.29432713985443115, - -0.10679741948843002, - -0.41790375113487244, - -0.00319768488407135, - 0.35343053936958313, - 0.22240833938121796, - 0.2929988205432892, - 0.2728756368160248, - -0.1451963633298874, - 0.35025152564048767, - -0.3279496729373932, - -0.28556808829307556, - -0.3299705982208252, - -0.07106142491102219, - -0.13497528433799744, - -0.30763232707977295, - 0.07954829186201096, - 0.014240212738513947, - -0.17747503519058228, - 0.259063184261322, - -0.3960525691509247, - -0.17260287702083588, - -0.04773559048771858, - -0.046419043093919754, - 0.13940703868865967, - -0.044593941420316696, - 0.24297146499156952, - -0.3277141749858856, - -0.39064016938209534, - -0.08779734373092651, - 0.023568013682961464, - 0.2961314618587494, - 0.1148843988776207, - 0.024307338520884514, - 0.033912286162376404, - 0.30754098296165466, - -0.41299644112586975, - -0.44720473885536194, - 0.27055177092552185, - -0.34258463978767395, - 0.2459760159254074, - -0.10893374681472778, - 0.3512541353702545, - 0.3531181514263153, - -0.034446075558662415, - 0.14790184795856476, - 0.4121835231781006, - 0.5353427529335022, - 0.08829069137573242, - -0.06143955513834953, - -0.02482522279024124, - -0.007702801376581192, - -0.16190774738788605, - -0.3395914137363434, - 0.17034243047237396, - -0.22750897705554962, - 0.16759192943572998, - 0.1356017142534256, - 0.2028847187757492, - 0.06350953876972198, - -0.517906129360199, - -0.10738358646631241, - 0.6667197346687317, - 0.1691632717847824, - 0.037839896976947784, - -0.05136692151427269, - 0.4450501501560211, - 0.5249065160751343, - 0.007340277079492807, - -0.3306441903114319, - -0.009493349120020866, - -0.06430380791425705, - -0.16328896582126617, - -0.2803487479686737, - 0.13696956634521484, - 0.22404222190380096, - -0.06747622042894363, - -0.3030094504356384, - 0.31825482845306396, - -0.27668923139572144, - -0.07380122691392899, - 0.01650739461183548, - 0.07529415190219879, - 0.168110653758049, - -0.17041702568531036, - 0.2555415630340576, - -0.17788666486740112, - -0.08755576610565186, - 0.570432186126709, - -0.17577219009399414, - -0.19930122792720795, - 0.4915766716003418, - -0.18205863237380981, - -0.4425560534000397, - 0.3090628981590271, - -0.20726893842220306, - -0.20070767402648926, - 0.3741373121738434, - -0.13651378452777863, - 0.017651302739977837, - -0.2737968862056732, - 0.11020190268754959, - 0.1302887350320816, - 0.003572646528482437, - -0.20874559879302979, - -0.004113053437322378, - 0.15316803753376007, - 0.6786465644836426, - 0.018732987344264984, - 0.06185932829976082, - 0.4203014075756073, - -0.11499608308076859, - -0.3057328164577484, - -0.09067092090845108, - 0.07244453579187393, - 0.30383774638175964, - -0.311058908700943, - -0.3524237871170044, - -0.36338141560554504, - 0.21940337121486664, - 0.17009277641773224, - -0.1095595732331276, - -0.09802025556564331, - 0.10814189910888672, - -0.012437346391379833, - 0.10475149750709534, - 0.2615726590156555, - 0.3095625340938568, - -0.06085452809929848, - 0.6036781668663025, - 0.06224172189831734, - -0.057407621294260025, - 0.2052885740995407, - -0.10321997851133347, - 0.3524329364299774, - -0.1934761255979538, - -0.2528340518474579, - -0.536365270614624, - 0.057307515293359756, - -0.4155358076095581, - -0.11181557178497314, - -0.03543207049369812, - 0.052159786224365234, - 0.1058875024318695, - 0.0655241459608078, - 0.19983959197998047, - 0.09082623571157455, - 0.13807253539562225, - -0.0781714990735054, - 0.6763191819190979, - -0.0028358970303088427, - -0.4592268168926239, - 0.054480019956827164, - -0.06566111743450165, - 0.2707873284816742, - -0.22144867479801178, - 0.02520383894443512, - -0.2331681251525879, - 0.35534587502479553, - -0.05164376273751259, - -0.17912553250789642, - -0.06126204505562782, - -0.02977651357650757, - -0.2634107768535614, - -0.5233835577964783, - -0.07791954278945923, - -0.01286820974200964, - -0.06538339704275131, - -0.014107778668403625, - 0.23272742331027985, - -0.26258257031440735, - -0.2913316786289215, - 0.07348854094743729, - 0.3264302909374237, - 0.28274598717689514, - -0.2698136866092682, - 0.18986044824123383, - 0.11581862717866898, - 0.14617927372455597, - 0.5362180471420288, - -0.19385333359241486, - 0.13332805037498474, - 0.24237030744552612, - -0.15043944120407104, - -0.09583289176225662, - 0.04404716566205025, - -0.27873632311820984, - 0.01804291643202305, - 0.16146320104599, - 0.17648302018642426, - 0.19123680889606476, - 0.06625751405954361, - 0.016465460881590843, - 0.2488224357366562, - -0.3326088488101959, - 0.031383734196424484, - 0.4730178415775299, - 0.07189471274614334, - 0.5191131234169006, - -0.12896524369716644, - -0.29288408160209656, - -0.185959592461586, - -0.016157394275069237, - -0.45811179280281067, - 0.1441950649023056, - 0.09145832061767578, - -0.16910462081432343, - -0.05055128410458565, - 0.10060884803533554, - 0.1372537612915039, - 0.10982144623994827, - 0.19215022027492523, - -0.12495272606611252, - 0.0020723144989460707, - -0.1678815633058548, - -0.37175431847572327, - -0.023162325844168663, - -0.26127299666404724, - -0.3706505298614502, - -0.3697110116481781, - 0.5079489350318909, - 0.4564405381679535, - -0.15140655636787415, - 0.17129985988140106, - 0.15173883736133575, - -0.19758932292461395, - -0.40609297156333923, - 0.054612964391708374, - -0.05562881752848625, - 0.6642163991928101, - 0.04661300778388977, - -0.1879602074623108, - 0.3275156021118164, - -0.2709139883518219, - 0.1818741112947464, - 0.17545635998249054, - 0.13700933754444122, - 0.41310739517211914, - 0.24256926774978638, - 0.18925808370113373, - 0.5659263730049133, - 0.16788816452026367, - 0.010269984602928162, - 0.33547651767730713, - -0.06713671237230301, - 0.03555089980363846, - 0.03223928436636925, - -0.1653062105178833, - 0.4727550745010376, - -0.2796788215637207, - 0.29398563504219055, - 0.06562589108943939, - 0.323544979095459, - -0.35793235898017883, - -0.4239784777164459, - -0.12615498900413513, - -0.20450246334075928, - -0.1271847039461136, - -0.21514225006103516, - -0.09260322898626328, - -0.0009155869483947754, - -0.34380897879600525, - -0.023843316361308098, - 0.3352773189544678, - 0.28108829259872437, - 0.15740536153316498, - 0.21506689488887787, - -0.3025817573070526, - -0.40007829666137695, - -0.0010334737598896027, - 0.35335230827331543, - 0.0674835667014122, - -0.07668166607618332, - -0.1503458172082901, - 0.19994334876537323, - 0.5326314568519592, - -0.1191307008266449, - -0.21396292746067047, - -0.002778073074296117, - 0.009433877654373646, - -0.11832737922668457, - 0.12917560338974, - -0.20948851108551025, - 0.09871751815080643, - -0.39094018936157227, - 0.0658707395195961, - -0.18459124863147736, - -0.2053675800561905, - 0.26418718695640564, - -0.2483014017343521, - -0.4517703056335449, - -0.2017059177160263, - 0.2568487524986267, - -0.1521771103143692, - -0.1356159895658493, - 0.17099298536777496, - 0.31242015957832336, - 0.012497381307184696, - -0.16275222599506378, - 0.03929504379630089, - -0.5324494242668152, - -0.06600645184516907, - 0.08828868716955185, - -0.2327049970626831, - 0.17292095720767975, - -0.11559615284204483, - 0.19002516567707062, - 0.42871272563934326, - 0.14057065546512604, - -0.4558219909667969, - -0.17123158276081085, - 0.391100138425827, - 0.2776581645011902, - -0.18214933574199677, - -10.70256519317627, - -0.024449797347187996, - -0.1813431978225708, - 0.5516294240951538, - -0.12300056964159012, - 0.13342295587062836, - -0.15039943158626556, - -0.043130144476890564, - 0.08451690524816513, - 0.03566787764430046, - -0.293976753950119, - 0.09247811883687973, - 0.2773444354534149, - 0.23217929899692535, - 0.11016100645065308, - -0.07389677315950394, - -0.34550943970680237, - 0.22127236425876617, - -0.19098417460918427, - 0.07597266882658005, - 0.12664009630680084, - 0.32337531447410583, - -0.21354947984218597, - 0.4016430675983429, - 0.2746007442474365, - -0.3939281404018402, - -0.16705016791820526, - 0.36346349120140076, - 0.24572108685970306, - -0.48732051253318787, - 0.4727989733219147, - 0.19823813438415527, - -0.1509220451116562, - -0.20888535678386688, - 0.17655380070209503, - -0.20186835527420044, - -0.11027917265892029, - 0.06701631098985672, - 0.08921521157026291, - -0.016171181574463844, - 0.27644768357276917, - -0.2612874507904053, - 0.0026395146269351244, - 0.4797150790691376, - -0.157114639878273, - -0.40081313252449036, - -0.19162620604038239, - -1.5974453687667847, - 0.12117483466863632, - 0.16665641963481903, - 0.6035687923431396, - -0.05501393973827362, - 0.21268051862716675, - 0.1707991361618042, - -0.5372670292854309, - 0.10222750157117844, - -0.24073141813278198, - 0.0768231749534607, - 0.2692219614982605, - -0.10774337500333786, - 0.02425704151391983, - -0.13518595695495605, - 0.2956274151802063, - -0.27093371748924255, - -0.24596565961837769, - 0.25455477833747864, - -0.09962616115808487, - -0.11272549629211426, - -0.1394905298948288, - -0.39257630705833435, - -0.6048027873039246, - -0.148551806807518, - 0.03970241919159889, - -0.08336308598518372, - 0.5661895275115967, - -0.14280717074871063, - -0.598362922668457, - 0.03717902675271034, - -0.11945304274559021, - 0.4401933252811432, - 0.08606108278036118, - 0.07183074206113815, - 0.058848973363637924, - 0.049645423889160156, - -0.14604312181472778, - -0.10111034661531448, - 0.17163006961345673, - 0.42448511719703674, - -0.06756223738193512, - 0.06883104890584946, - 0.10000089555978775, - 0.2961301803588867, - -0.2568218410015106, - -0.1182146668434143, - -0.38412240147590637, - 0.162176251411438, - 0.019004812464118004, - -0.04749155044555664, - 0.12719710171222687, - -0.087901271879673, - -0.06408625841140747, - -0.23437148332595825, - -0.23866675794124603, - -0.3585752546787262, - -0.36637961864471436, - 0.2380337119102478, - 0.1721259206533432, - 0.1006702110171318, - 0.2322978526353836, - 0.11195039004087448, - 0.04324770346283913, - -0.06280314922332764, - 0.4888695180416107, - 0.5146237015724182, - 0.1527283936738968, - -0.049920398741960526, - -0.2123621702194214, - 0.053516313433647156, - -0.4882737696170807, - 0.08011145144701004, - 0.5055177807807922, - -0.042962681502103806, - 0.2023872286081314, - 0.5114120841026306, - -0.05642039701342583, - -0.2017393261194229, - 1.1306227445602417, - -0.30909761786460876, - 0.214499831199646, - -0.3102737367153168, - 0.24262993037700653, - -0.16454657912254333, - -0.44077059626579285, - -0.12830527126789093, - 0.38467660546302795, - -0.4769868850708008, - 0.659824788570404, - 0.10313216596841812, - -0.4822559356689453, - 0.013273775577545166, - -0.2966170310974121, - 0.3982210159301758, - 0.22480671107769012, - 0.20150329172611237, - -0.10485976934432983, - -0.3869105279445648, - -0.36076846718788147, - 0.009654332883656025, - -0.4856027364730835, - -0.42252036929130554, - -0.38543403148651123, - 0.05345264449715614, - -0.032841455191373825, - -0.30861330032348633, - 0.3658311367034912, - 0.01062408834695816, - -0.2842189371585846, - -0.10713676363229752, - -0.5582472681999207, - -0.2581392228603363, - 0.15885162353515625, - 0.689320981502533, - 0.13512583076953888, - -0.20383308827877045, - -0.19608111679553986, - 0.22843199968338013, - -0.07894566655158997, - 0.07426539808511734, - -0.013954506255686283, - -0.02115006558597088, - -0.5382094383239746, - 0.07599659264087677, - 0.24509330093860626, - -0.38768383860588074, - -0.2890462875366211, - -0.4272282123565674, - 0.156494602560997, - 0.0048865810967981815, - 0.04524322226643562, - 0.3338363468647003, - 0.2932804524898529, - -0.05237109586596489, - 0.09623139351606369, - -0.08224257081747055, - 0.1166127547621727, - 0.13835734128952026, - 0.38503310084342957, - 0.22785723209381104, - -0.3324199318885803, - -0.4339541494846344, - -0.2408454418182373, - 0.2723948061466217, - -0.4089561998844147, - -0.0048524304293096066, - -0.18746109306812286, - 0.2237868458032608, - -0.3778100907802582, - 0.17141394317150116, - -0.29279792308807373, - 0.01189874392002821, - -0.22544653713703156, - 0.21580083668231964, - 0.5462278127670288, - -0.25721874833106995, - 0.07724293321371078, - -0.18359194695949554, - 0.2354123592376709, - 0.16073282063007355, - -0.22593700885772705, - 0.30614998936653137, - -0.15799112617969513 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_044.json b/src/benchmark/output/results/results_graph_044.json deleted file mode 100644 index a0075b9..0000000 --- a/src/benchmark/output/results/results_graph_044.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 44-year-old man with a significant smoking history of 24 years. He has no other notable medical history.\n\n**Initial Presentation (Step 1):**\nThe patient presented to the emergency department due to cough, dyspnea, and throat pain. This was his first visit to the hospital in two weeks, during which he had undergone noncontrast CT scans that showed a 5.0 x 5.0 cm tumor in the superior-to-anterior mediastinum.\n\n**Imaging Findings (Step 2):**\nFollow-up imaging revealed an enlarged shadow in the right upper mediastinum on chest radiography, which was later confirmed by CT scan to be a mediastinal mass.\n\n**Progression of Disease (Steps 3-5):**\nOver two weeks, the tumor grew from 5.0 x 5.0 cm to 9.0 x 7.0 cm in size, causing compression and narrowing of the right brachiocephalic vein and superior vena cava, as well as left deviation of the trachea.\n\n**Symptom Onset (Step 4):**\nThe patient developed respiratory symptoms, including cough, dyspnea, and throat pain, which prompted further imaging to evaluate the cause of these symptoms.\n\n**Imaging Evaluation (Steps 5-6):**\nNoncontrast CT scans two weeks prior to admission showed a tumor in the superior-to-anterior mediastinum. Dynamic CT scans at admission revealed a weakly enhanced tumor in the superior-to-middle mediastinum, which had grown to 9.0 x 7.0 cm over two weeks.\n\n**Laboratory Findings (Step 6):**\nLaboratory tests revealed slightly elevated levels of lactate dehydrogenase (LDH) and C-reactive protein (CRP), indicating inflammation or infection. Tumor markers, including CYFRA, pro-GRP, CEA, and CA19-9, were all negative.\n\n**Current Status:**\nThe patient is currently undergoing further evaluation and treatment for the mediastinal mass. The exact treatment plan has not been disclosed in this report.\n\n**Outcomes:**\nThe patient's current condition and potential outcomes are unknown at this time. Further follow-up will be necessary to determine the effectiveness of any treatments and to monitor for any changes in the patient's condition.", - "bertscore": { - "precision": [ - 0.692764401435852 - ], - "recall": [ - 0.7154231071472168 - ], - "f1": [ - 0.7039114236831665 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 6, - "edge_count": 5, - "avg_in_degree": 0.8333333333333334, - "density": 0.16666666666666666 - }, - "trajectory_embedding": [ - 0.3709355294704437, - 0.02028684876859188, - -0.037475328892469406, - 0.05414177477359772, - 0.11516084522008896, - 0.028672976419329643, - 0.002444108249619603, - 0.26623213291168213, - 0.3955191671848297, - -0.28058165311813354, - -0.18973876535892487, - 0.09418404847383499, - -0.6652488708496094, - -0.08837980031967163, - -0.3189680576324463, - 0.20539359748363495, - 0.10319840908050537, - 0.2507036030292511, - 0.034279193729162216, - -0.3032603859901428, - -0.44427958130836487, - 0.13780498504638672, - -0.45548200607299805, - -0.0463419146835804, - 0.23697422444820404, - -0.03626028075814247, - 0.41235625743865967, - 0.4622861444950104, - 0.22280657291412354, - 0.33370402455329895, - 0.08998050540685654, - 0.029371509328484535, - 0.11711568385362625, - 0.12784217298030853, - -0.2734856605529785, - 0.31026971340179443, - 0.23015107214450836, - 0.44062912464141846, - -0.02818652056157589, - 0.030641110613942146, - -0.006273791193962097, - -0.07089275866746902, - 0.9742924571037292, - 0.16635195910930634, - 0.47703030705451965, - -0.8083966374397278, - -0.0541016049683094, - 0.4484868049621582, - -0.4058903455734253, - -0.36903855204582214, - 0.10004440695047379, - 0.7282070517539978, - 0.48205241560935974, - -0.2034728080034256, - 0.4727686941623688, - -0.1137661561369896, - -0.2854260206222534, - -0.2783154249191284, - -0.23026008903980255, - 0.06855695694684982, - -0.06712787598371506, - -0.2664113938808441, - 0.3383827209472656, - -0.025055130943655968, - -0.1901993304491043, - -0.07115602493286133, - -0.21020036935806274, - 0.08970417827367783, - 0.013906293548643589, - -0.44624412059783936, - -0.02943798340857029, - -0.17864204943180084, - 0.0071489461697638035, - 0.04120977967977524, - 0.15927816927433014, - -0.10326626896858215, - 0.43982136249542236, - -0.12170781940221786, - 0.060487162321805954, - 0.26813143491744995, - -0.05804603919386864, - -0.0345066674053669, - 0.11151840537786484, - 0.27978721261024475, - -0.373654842376709, - 0.15464907884597778, - -0.023095345124602318, - -0.2016644924879074, - -0.2683722674846649, - 0.084203340113163, - 0.212515726685524, - -0.2508123219013214, - -0.02851727418601513, - -0.26750829815864563, - -0.04771529138088226, - 0.08708786219358444, - 0.29861557483673096, - 0.32486313581466675, - 0.8982602953910828, - 0.03220728412270546, - 0.09015234559774399, - 0.06618078798055649, - 0.26319169998168945, - 0.17664267122745514, - 0.459599107503891, - -0.06067446991801262, - 0.07814925163984299, - -0.55216383934021, - 0.22145207226276398, - 0.2868025600910187, - 0.05365445092320442, - -0.04029693081974983, - -0.022756367921829224, - -0.26143500208854675, - 0.2144930362701416, - 0.11377083510160446, - -0.09022236615419388, - 0.13659396767616272, - 0.21302317082881927, - -0.5276404023170471, - -0.11805599182844162, - 0.09615673869848251, - 0.18943308293819427, - 0.40989089012145996, - -0.33967623114585876, - 0.03003213368356228, - -0.25296202301979065, - 0.01777634583413601, - 0.05463758111000061, - 0.031284283846616745, - -0.6666356921195984, - -0.1602512151002884, - -0.056051645427942276, - 0.2529575228691101, - -0.09577626734972, - 0.22955743968486786, - -0.34167924523353577, - 0.031935837119817734, - -1.0398658514022827, - 0.27944672107696533, - -0.3510766327381134, - -0.11969054490327835, - 0.04185105860233307, - -0.37915992736816406, - -0.14408539235591888, - -0.23457372188568115, - -0.254799485206604, - 0.16993707418441772, - -0.04182658717036247, - -0.038153041154146194, - -0.05397158861160278, - 0.13948701322078705, - 0.196094810962677, - 0.2367267608642578, - 0.17823736369609833, - 0.13065539300441742, - 0.13852964341640472, - 0.24026137590408325, - 0.10159587860107422, - -0.1413310319185257, - 0.04598592594265938, - 0.21540939807891846, - 0.138239786028862, - -0.04086802527308464, - -0.07847775518894196, - -0.6931713223457336, - 0.12233629077672958, - -0.16755802929401398, - 0.13973216712474823, - 0.07444192469120026, - -0.31143471598625183, - 0.18391770124435425, - -0.2780292332172394, - 0.6395820379257202, - 0.16344054043293, - 0.3540366590023041, - -0.10454652458429337, - -0.14396260678768158, - 0.030690347775816917, - 0.07247544080018997, - 0.11944669485092163, - -0.06266411393880844, - 0.746099054813385, - 0.01752152293920517, - -0.21736067533493042, - 0.2475283294916153, - 0.378029465675354, - 0.05681362748146057, - -0.11917641013860703, - 0.05530008301138878, - 0.266002893447876, - -0.399318128824234, - 0.27910852432250977, - -0.5343899130821228, - -0.08214003592729568, - 0.14426210522651672, - -0.2697894275188446, - -0.07997474819421768, - 0.1840706616640091, - -0.017933830618858337, - 0.26634034514427185, - -0.131731316447258, - -0.25243809819221497, - 0.0835283175110817, - -0.031968142837285995, - -0.2028936743736267, - 0.39749446511268616, - 0.08120900392532349, - 0.09946431964635849, - 0.044041216373443604, - -0.02546260692179203, - 0.0724339559674263, - -0.16407684981822968, - 0.22411991655826569, - 0.03629983589053154, - -0.2842733561992645, - 0.33837684988975525, - -0.0886438712477684, - -0.1465633660554886, - 0.12527425587177277, - -0.18053577840328217, - -0.2895483672618866, - -0.012816091068089008, - -0.09556851536035538, - -0.35394033789634705, - 0.07229036837816238, - 0.08070308715105057, - 0.3121176064014435, - 0.20461921393871307, - 4.905710738967173e-05, - 0.08992432802915573, - -0.5199697613716125, - 0.2083672434091568, - -0.1663612723350525, - -0.06205447390675545, - -0.32892054319381714, - 0.17776262760162354, - -0.2799549698829651, - -0.0972403958439827, - 0.33253905177116394, - -0.08071468025445938, - -0.18257148563861847, - 0.17165090143680573, - -0.25163665413856506, - -0.08720184117555618, - -0.19364477694034576, - 0.054671499878168106, - 0.252407044172287, - 0.11490911990404129, - 0.2826528251171112, - 0.11767617613077164, - -0.12336000800132751, - 0.09276566654443741, - -0.27731582522392273, - -0.18298964202404022, - -0.47671476006507874, - -0.14202189445495605, - 0.018496515229344368, - -0.5993802547454834, - 0.16801469027996063, - 0.07973194867372513, - -0.0013876160373911262, - -0.045653682202100754, - -0.33230581879615784, - -0.0012772331247106194, - 0.163445845246315, - -0.03922129049897194, - 0.0017722795018926263, - -0.11665167659521103, - 0.07872911542654037, - -0.1943618804216385, - -0.3483332395553589, - -0.17248861491680145, - -0.07338465750217438, - 0.09968247264623642, - -0.1182420626282692, - -0.2505466639995575, - -0.11424145847558975, - 0.0013127898564562201, - -0.3670210838317871, - -0.1848040670156479, - 0.2742825448513031, - -0.1507759839296341, - 0.21252095699310303, - 0.05632394924759865, - 0.3326179087162018, - 0.2063983678817749, - 0.029591435566544533, - 0.18057890236377716, - 0.4103676974773407, - 0.3709429204463959, - -0.017779624089598656, - -0.034606318920850754, - -0.007724908646196127, - 0.045695602893829346, - -0.08002155274152756, - -0.38533344864845276, - 0.3793017566204071, - 0.1071031391620636, - 0.10296451300382614, - 0.07069254666566849, - 0.36779657006263733, - 0.005441606044769287, - -0.38927093148231506, - -0.10069600492715836, - 0.5456685423851013, - 0.08541423082351685, - -0.10129161924123764, - 0.10961446166038513, - 0.4655693769454956, - 0.4668560028076172, - -0.13056431710720062, - -0.04956544563174248, - 0.07061590999364853, - -0.18177707493305206, - -0.19679050147533417, - 0.00557708740234375, - 0.030663222074508667, - 0.3181333541870117, - -0.22169052064418793, - -0.06409766525030136, - 0.08539265394210815, - -0.09472513943910599, - 0.02657811902463436, - -0.13223829865455627, - -0.06731923669576645, - 0.06616104394197464, - -0.2302129715681076, - 0.3475155830383301, - -0.024517090991139412, - -0.08968755602836609, - 0.36126482486724854, - -0.19020330905914307, - -0.12211353331804276, - 0.016083644703030586, - -0.1588137298822403, - -0.5854529738426208, - 0.2755095958709717, - -0.22289706766605377, - -0.06993339955806732, - 0.4869135916233063, - 0.02377251349389553, - -0.01966768503189087, - -0.22424434125423431, - 0.5707665085792542, - 0.0332067646086216, - -0.07919532060623169, - -0.09923072904348373, - 0.029870420694351196, - 0.3073720335960388, - 0.620812177658081, - 0.13559965789318085, - 0.11281317472457886, - 0.6109906435012817, - 0.07495584338903427, - -0.38919031620025635, - -0.03515588864684105, - 0.0705595538020134, - 0.38878393173217773, - -0.17647235095500946, - -0.03561626002192497, - -0.12750737369060516, - 0.046741604804992676, - 0.10039909929037094, - -0.26356813311576843, - 0.01847011409699917, - 0.17721039056777954, - 0.08190552890300751, - -0.15950541198253632, - 0.2770512104034424, - 0.27112850546836853, - 0.0032518028747290373, - 0.35945752263069153, - -0.03184210881590843, - -0.10654445737600327, - 0.31992119550704956, - -0.3528558015823364, - 0.30592310428619385, - -0.09975346177816391, - -0.3961990773677826, - -0.36672520637512207, - -0.08207137137651443, - -0.12775923311710358, - -0.15936477482318878, - -0.12913481891155243, - -0.14401943981647491, - 0.11254676431417465, - -0.21620482206344604, - 0.29483357071876526, - -0.02212226577103138, - 0.16408224403858185, - 0.28115084767341614, - 0.3112162947654724, - 0.014696106314659119, - -0.2842748761177063, - 0.1381203979253769, - -0.11081848293542862, - 0.023555338382720947, - -0.11826885491609573, - -0.028673557564616203, - -0.2336243838071823, - 0.3967522382736206, - -0.04588780924677849, - 0.06092504784464836, - 0.1695277839899063, - 0.03718129172921181, - -0.1571987122297287, - -0.3715645372867584, - -0.13805319368839264, - -0.2159808874130249, - 0.014071543700993061, - -0.062045980244874954, - -0.029517801478505135, - -0.2533939778804779, - -0.23368202149868011, - -0.10982626676559448, - 0.08790113776922226, - 0.18961910903453827, - -0.12231236696243286, - 0.09637051075696945, - 0.3742850720882416, - 0.07072962075471878, - 0.3380357325077057, - -0.15378595888614655, - 0.008451796136796474, - 0.0217405017465353, - -0.37453365325927734, - -0.04701484739780426, - 0.0825422927737236, - -0.21404147148132324, - -0.19463223218917847, - 0.1623048633337021, - 0.28620991110801697, - -0.021477246657013893, - -0.12872157990932465, - 0.029457636177539825, - 0.3231445550918579, - -0.3518469035625458, - -0.17393644154071808, - 0.30389854311943054, - 0.1622898429632187, - 0.43758201599121094, - 0.07941227406263351, - -0.4650561809539795, - -0.15175531804561615, - 0.014103827066719532, - -0.44769176840782166, - -0.03098767064511776, - 0.3260617256164551, - -0.09110008925199509, - -0.11422155052423477, - 0.236707404255867, - -0.07638227194547653, - -0.06458715349435806, - 0.2565923035144806, - -0.23569516837596893, - 0.10280736535787582, - -0.056856125593185425, - -0.3487948179244995, - -0.14487729966640472, - -0.0796872079372406, - -0.25821229815483093, - -0.23597203195095062, - 0.4058920443058014, - 0.3858674466609955, - -0.27958741784095764, - 0.04305463656783104, - 0.18564464151859283, - -0.2107892483472824, - -0.3172265291213989, - -0.03658689185976982, - -0.35205087065696716, - 0.3962737023830414, - 0.059922248125076294, - -0.2386809140443802, - -0.00026689842343330383, - -0.2927051782608032, - 0.27056190371513367, - 0.0911899209022522, - 0.16944991052150726, - 0.42741313576698303, - 0.1214321032166481, - 0.1978882998228073, - 0.504374623298645, - 0.005633448716253042, - -0.0613153874874115, - 0.28258535265922546, - 0.05107240006327629, - 0.10605745762586594, - -0.2907721698284149, - -0.18825924396514893, - 0.2586396634578705, - -0.14710770547389984, - -0.10500334948301315, - 0.2620963454246521, - 0.2566259205341339, - -0.540591835975647, - -0.2529936730861664, - -0.0848318338394165, - 0.08593673259019852, - -0.06006813049316406, - -0.34598326683044434, - -0.14251643419265747, - -0.012761905789375305, - -0.11474955081939697, - -0.19960592687129974, - 0.3545219600200653, - 0.5344975590705872, - 0.025902435183525085, - 0.19099824130535126, - -0.33758866786956787, - -0.5173699855804443, - 0.1538613885641098, - 0.1805286854505539, - 0.06669548898935318, - -0.05540475249290466, - -0.1932937651872635, - 0.25104963779449463, - 0.43209215998649597, - -0.09778454899787903, - 0.12862829864025116, - 0.16517917811870575, - 0.06068188324570656, - -0.04963122680783272, - 0.06131303682923317, - -0.008265641517937183, - 0.10755834728479385, - -0.43452128767967224, - 0.3819529712200165, - -0.36276260018348694, - -0.3239673376083374, - 0.2665066719055176, - -0.045710813254117966, - -0.4091401994228363, - -0.27975839376449585, - 0.3073151409626007, - -0.14196984469890594, - 0.004132451955229044, - 0.11910352855920792, - 0.3948761224746704, - 0.031736768782138824, - -0.41514846682548523, - 0.09525658935308456, - -0.37080156803131104, - -0.259764701128006, - 0.06238173320889473, - -0.14729230105876923, - -0.12905482947826385, - -0.18828816711902618, - 0.3396526873111725, - 0.5465343594551086, - 0.14795686304569244, - -0.3229002356529236, - 0.04911140725016594, - 0.22349786758422852, - 0.20098602771759033, - -0.2806161940097809, - -10.61640453338623, - 0.004836500156670809, - -0.22633744776248932, - 0.5599594116210938, - -0.18089421093463898, - 0.006466247141361237, - 0.08144813776016235, - -0.11233105510473251, - 0.20984749495983124, - 0.18082423508167267, - -0.21274691820144653, - 0.029586076736450195, - 0.39225268363952637, - 0.3088441491127014, - 0.023165667429566383, - -0.2280430644750595, - -0.15842244029045105, - 0.14725680649280548, - 0.01297034788876772, - 0.3040338158607483, - 0.1762946993112564, - 0.4603245258331299, - -0.309648334980011, - 0.3325744569301605, - 0.19440679252147675, - -0.26723408699035645, - -0.15502987802028656, - 0.648459792137146, - 0.16438449919223785, - -0.2613111734390259, - 0.21759414672851562, - 0.22437064349651337, - -0.3554794490337372, - 0.23845221102237701, - -0.030861137434840202, - -0.23855642974376678, - 0.009867730550467968, - 0.13714003562927246, - 0.32355716824531555, - -0.2079150229692459, - 0.055450666695833206, - -0.20365482568740845, - 0.19912000000476837, - 0.21597127616405487, - -0.09915235638618469, - -0.47468945384025574, - -0.08271792531013489, - -1.429166316986084, - 0.269686222076416, - 0.41136956214904785, - 0.31794190406799316, - 0.07572992891073227, - 0.2117326855659485, - 0.21211153268814087, - -0.24880929291248322, - 0.024969441816210747, - -0.2851804792881012, - -0.12610290944576263, - 0.13055236637592316, - -0.07891478389501572, - 0.12094976752996445, - -0.1530510038137436, - 0.4795483648777008, - -0.08171482384204865, - -0.4182301461696625, - 0.033216141164302826, - 0.2239665538072586, - -0.08204814046621323, - -0.2721644341945648, - -0.6553576588630676, - -0.49013566970825195, - 0.05762360617518425, - -0.08884841948747635, - -0.002567797899246216, - 0.5008339285850525, - 0.04166834056377411, - -0.22496098279953003, - 0.25112268328666687, - -0.059415388852357864, - 0.3896584212779999, - 0.08378197997808456, - -0.07708150148391724, - 0.18656300008296967, - -0.10361650586128235, - -0.3212064504623413, - -0.20315741002559662, - 0.10339675098657608, - 0.643303632736206, - -0.10437323898077011, - -0.0773632600903511, - -0.09517675638198853, - 0.3152387738227844, - -0.04029890522360802, - -0.1806795448064804, - -0.4967038631439209, - 0.11987921595573425, - -0.18107642233371735, - 0.0642847791314125, - 0.1074148640036583, - -0.0740354135632515, - 0.0033364940900355577, - -0.02597319521009922, - -0.18950916826725006, - -0.5044722557067871, - -0.35946670174598694, - 0.19920969009399414, - 0.020135732367634773, - 0.29015153646469116, - 0.09725961089134216, - -0.16331429779529572, - -0.22278033196926117, - 0.05476031079888344, - 0.06840407848358154, - 0.7345065474510193, - 0.133744478225708, - -0.0048807524144649506, - 0.02288263477385044, - -0.4647581875324249, - -0.17210298776626587, - 0.16783495247364044, - 0.3405397832393646, - -0.08639329671859741, - 0.23816430568695068, - 0.669089138507843, - -0.055476535111665726, - -0.12739965319633484, - 1.0224874019622803, - -0.34021472930908203, - 0.28846606612205505, - -0.1920805126428604, - 0.2597421407699585, - 0.04337356612086296, - -0.45412933826446533, - 0.10811761766672134, - 0.44080421328544617, - -0.26053622364997864, - 0.6524688601493835, - 0.32140088081359863, - -0.46496903896331787, - 0.07720009237527847, - -0.2379464954137802, - 0.48834407329559326, - 0.3247201442718506, - 0.21568578481674194, - -0.018112363293766975, - -0.18466125428676605, - -0.30857929587364197, - -0.10561958700418472, - -0.4217849671840668, - -0.3501027822494507, - -0.10938239097595215, - 0.23045717179775238, - 0.11362884193658829, - -0.23097173869609833, - 0.33312419056892395, - 0.2232857346534729, - -0.18179292976856232, - -0.24263973534107208, - -0.5486912131309509, - -0.04603523388504982, - 0.10174617916345596, - 0.7319938540458679, - -0.17953132092952728, - 0.12761308252811432, - -0.16813963651657104, - 0.09682377427816391, - -0.07148442417383194, - 0.298421174287796, - 0.05831749737262726, - -0.07242394238710403, - -0.5346640944480896, - 0.11538214236497879, - 0.251813679933548, - -0.28705617785453796, - -0.25596556067466736, - -0.06288617104291916, - -0.16501039266586304, - -0.0160530898720026, - -0.1574195772409439, - 0.08763670176267624, - 0.364540696144104, - -0.03617069125175476, - -0.07612655311822891, - -0.39584532380104065, - 0.17263515293598175, - 0.10925782471895218, - 0.19620095193386078, - 0.221194788813591, - -0.32877370715141296, - -0.2730632424354553, - -0.5231608152389526, - 0.13386638462543488, - -0.24350003898143768, - -0.04871968552470207, - 0.036523785442113876, - 0.14355482161045074, - -0.2647777497768402, - 0.010369881987571716, - -0.14041107892990112, - -0.022885939106345177, - -0.08430659770965576, - 0.3382740318775177, - 0.37681302428245544, - -0.10922961682081223, - 0.18540708720684052, - -0.19820082187652588, - 0.17190410196781158, - 0.013123612850904465, - -0.32454729080200195, - 0.2598307132720947, - -0.21498900651931763 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_045.json b/src/benchmark/output/results/results_graph_045.json deleted file mode 100644 index 71bc4a0..0000000 --- a/src/benchmark/output/results/results_graph_045.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 67-year-old male with a significant smoking history (25-pack-year). He presented with left focal motor seizure and expressive aphasia, which led to the diagnosis of Seizure (C0003638) and Aphasia, Expressive (C0003684).\n\n**Timeline of Diagnoses:**\n\n1. **Initial Presentation:** The patient was diagnosed with Seizure (C0003638) and Aphasia, Expressive (C0003684) upon presentation.\n2. **Brain MRI:** A brain MRI revealed innumerable supra- and infratentorial peripheral enhancing lesions with edema, suggesting intracranial metastases (N2).\n3. **PET-CT:** Further investigation with PET-CT identified the primary cancer source as a hypermetabolic left lung mass and mediastinal and supraclavicular lymph nodes compatible with lung cancer (N3).\n4. **Lung Mass Biopsy:** Endobronchial biopsy of the lung mass revealed adenocarcinoma, with PD-L1 IHC testing showing 100% positivity and HER2 amplification (N4).\n\n**Timeline of Treatments:**\n\n1. **Pembrolizumab:** The patient was started on pembrolizumab due to high PD-L1 expression.\n2. **WBRT:** Whole-brain radiation therapy (WBRT) was recommended for brain metastases, but the treatment was discontinued after 1 cycle due to worsening of brain metastases.\n3. **T-DXd and Bevacizumab:** The patient's treatment was changed to T-DXd and bevacizumab due to disease progression and cerebral edema.\n\n**Timeline of Outcomes:**\n\n1. **Follow-up Brain MRI:** A repeat brain MRI 6 weeks after starting T-DXd revealed remarkable improvement in cerebral edema and metastases.\n2. **Repeat CT Chest:** A repeat CT chest scan showed a decrease in size of the previously noted spiculated left lower lung mass.\n\n**Conclusion:**\nThe patient's clinical course was marked by significant progression of brain metastases, which led to changes in treatment. Despite initial worsening, T-DXd and bevacizumab treatment resulted in remarkable improvement in cerebral edema and metastases, suggesting a positive response to therapy.", - "bertscore": { - "precision": [ - 0.6492398977279663 - ], - "recall": [ - 0.6405829787254333 - ], - "f1": [ - 0.6448824405670166 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 7, - "edge_count": 6, - "avg_in_degree": 0.8571428571428571, - "density": 0.14285714285714285 - }, - "trajectory_embedding": [ - 0.2637527883052826, - 0.15972600877285004, - -0.13202765583992004, - 0.0957951694726944, - -0.04258505254983902, - 0.0973554328083992, - -0.016224455088377, - 0.34089890122413635, - 0.39410585165023804, - -0.33490127325057983, - -0.20745256543159485, - 0.13487695157527924, - -0.6351459622383118, - -0.0365443155169487, - -0.3216632008552551, - 0.12383513897657394, - -0.04760764166712761, - 0.31662067770957947, - -0.06834237277507782, - -0.24286700785160065, - -0.37497809529304504, - 0.16411073505878448, - -0.43277332186698914, - -0.07514923065900803, - 0.06403642892837524, - -0.020005354657769203, - 0.2891775965690613, - 0.4582820534706116, - 0.22687070071697235, - 0.18308284878730774, - 0.18474015593528748, - -0.2568388283252716, - 0.19740566611289978, - 0.011691286228597164, - -0.16997148096561432, - 0.13903766870498657, - 0.17487506568431854, - 0.4176679253578186, - -0.15436698496341705, - 0.017137208953499794, - -0.011626942083239555, - 0.048110801726579666, - 0.8511399626731873, - 0.035195719450712204, - 0.5597261786460876, - -0.6147104501724243, - -0.07765679061412811, - 0.6431477665901184, - -0.4261336326599121, - -0.36867809295654297, - 0.229380264878273, - 0.7217655777931213, - 0.6602807641029358, - -0.15820109844207764, - 0.5177961587905884, - -0.1491081863641739, - -0.23740649223327637, - -0.2248646765947342, - -0.19848905503749847, - -0.056266844272613525, - 0.019042667001485825, - -0.20766322314739227, - 0.36757853627204895, - -0.038557298481464386, - -0.17710256576538086, - -0.2060033231973648, - -0.32802411913871765, - 0.09531055390834808, - -0.12682174146175385, - -0.2203969955444336, - -0.20830987393856049, - -0.31587299704551697, - -0.06893990188837051, - 0.23850920796394348, - 0.14400969445705414, - -0.11313515156507492, - 0.3342128396034241, - -0.1472698301076889, - 0.12926934659481049, - 0.19706390798091888, - 0.012676345184445381, - -0.02184647135436535, - -0.06154792383313179, - 0.34769007563591003, - -0.39192500710487366, - -0.014913676306605339, - -0.03524230048060417, - -0.22039905190467834, - -0.2709943950176239, - 0.3129062354564667, - 0.15639899671077728, - -0.34709206223487854, - 0.036033958196640015, - -0.16157105565071106, - -0.017415408045053482, - 0.17977771162986755, - 0.3931047320365906, - 0.16289864480495453, - 0.9117298722267151, - 0.0013929770793765783, - 0.2624664902687073, - 0.06068174168467522, - 0.3065105378627777, - 0.22417746484279633, - 0.46222397685050964, - -0.1442607343196869, - 0.24867503345012665, - -0.48799949884414673, - 0.27146345376968384, - 0.4364672303199768, - 0.037431444972753525, - -0.206253781914711, - 0.04022981971502304, - -0.28229907155036926, - 0.20460005104541779, - 0.1434260904788971, - -0.0176934152841568, - 0.15191173553466797, - 0.26090261340141296, - -0.4999381899833679, - -0.2115931212902069, - -0.2053930014371872, - 0.34489282965660095, - 0.309303343296051, - -0.45342567563056946, - -0.1935085505247116, - -0.1126754954457283, - 0.12421313673257828, - -0.049952130764722824, - 0.09485150128602982, - -0.39121586084365845, - -0.12530088424682617, - -0.009347187355160713, - 0.083448126912117, - -0.19457602500915527, - 0.205155611038208, - -0.31584784388542175, - 0.02956199273467064, - -1.1532951593399048, - 0.2815471589565277, - -0.430154949426651, - -0.03833770006895065, - 0.03226082772016525, - -0.6268243193626404, - -0.22153650224208832, - -0.1255929172039032, - -0.19101296365261078, - 0.11373525112867355, - 0.007232058327645063, - 0.05552083998918533, - 0.08721967041492462, - -0.0992443636059761, - 0.22382180392742157, - 0.34708285331726074, - 0.08398731797933578, - 0.1591593325138092, - 0.0587204173207283, - 0.3365333676338196, - 0.17984867095947266, - -0.23264136910438538, - 0.11239274591207504, - 0.46427610516548157, - 0.09222613275051117, - 0.06498251110315323, - -0.13669796288013458, - -0.7199097275733948, - -0.021586906164884567, - -0.18329082429409027, - 0.14229771494865417, - 0.06944538652896881, - -0.1886615753173828, - 0.11794548481702805, - -0.2587200701236725, - 0.544649064540863, - 0.07818958908319473, - 0.5304498672485352, - -0.18079236149787903, - -0.053740475326776505, - 0.2642553150653839, - 0.08616920560598373, - 0.01999683305621147, - -0.21340325474739075, - 0.6605494618415833, - 0.29717132449150085, - -0.26265785098075867, - 0.27423804998397827, - 0.311699241399765, - -0.001036086236126721, - -0.29678651690483093, - -0.10100467503070831, - 0.5553122162818909, - -0.18075333535671234, - 0.4518263339996338, - -0.4147214889526367, - -0.0034423598553985357, - 0.05800507590174675, - -0.20979823172092438, - -0.14451228082180023, - 0.06419872492551804, - -0.10712110996246338, - 0.2841126322746277, - 0.030792955309152603, - -0.3180393874645233, - 0.023522982373833656, - 0.12839145958423615, - -0.10140885412693024, - 0.18859948217868805, - 0.11593180149793625, - 0.10533011704683304, - 0.01946941390633583, - -0.07527224719524384, - 0.1365254670381546, - -0.14860615134239197, - 0.26855456829071045, - -0.009721837006509304, - -0.3767549991607666, - 0.10302142798900604, - -0.047712188214063644, - -0.23280011117458344, - 0.05171123519539833, - -0.06059455871582031, - -0.2602473795413971, - 0.05232662707567215, - -0.05336546525359154, - -0.5786672234535217, - 0.2160010039806366, - 0.1444745808839798, - 0.1140553280711174, - 0.16545473039150238, - -0.0035833269357681274, - -0.056768592447042465, - -0.27592307329177856, - 0.3437183201313019, - -0.07896008342504501, - -0.18098406493663788, - -0.4656810760498047, - 0.11493153870105743, - -0.1449211686849594, - 0.0034292936325073242, - 0.3769422471523285, - 0.040099237114191055, - -0.09804553538560867, - 0.18380889296531677, - -0.3745386004447937, - -0.0044115399941802025, - -0.4124279320240021, - -0.06304947286844254, - 0.3213532865047455, - 0.04136717692017555, - 0.26136744022369385, - 0.06261925399303436, - -0.2485232651233673, - 0.09210673719644547, - -0.26061758399009705, - -0.3736634850502014, - -0.3312024772167206, - -0.0318279042840004, - -0.08023025840520859, - -0.6199169754981995, - 0.1957211196422577, - 0.04584003612399101, - -0.03906792402267456, - 0.2552802860736847, - -0.39121267199516296, - -0.1781294196844101, - -0.015399664640426636, - -0.10242144018411636, - 0.12071461230516434, - -0.22393164038658142, - 0.13019175827503204, - -0.3749783933162689, - -0.2053486406803131, - -0.17232564091682434, - 0.047892410308122635, - 0.12914982438087463, - 0.15930365025997162, - -0.3059995770454407, - 0.16997560858726501, - 0.1808319389820099, - -0.37324258685112, - -0.27394071221351624, - 0.11035378277301788, - -0.24858367443084717, - 0.12700006365776062, - -0.01957264170050621, - 0.17109377682209015, - 0.2831864655017853, - 0.09330098330974579, - 0.2010422646999359, - 0.432858943939209, - 0.4787144958972931, - -0.047952957451343536, - -0.021694811061024666, - -0.15334513783454895, - -0.05889565125107765, - -0.0704054981470108, - -0.385530948638916, - 0.2582003176212311, - -0.07181493937969208, - 0.05231761187314987, - 0.11586909741163254, - 0.3327983319759369, - 0.08703934401273727, - -0.43144282698631287, - -0.04570610076189041, - 0.6240317225456238, - 0.02538215182721615, - 0.09686533361673355, - 0.1127510517835617, - 0.3463146388530731, - 0.5116881132125854, - -0.08836204558610916, - -0.013095702044665813, - 0.12576892971992493, - -0.12213891744613647, - -0.22938813269138336, - -0.0769309252500534, - 0.09046809375286102, - 0.4409720003604889, - -0.07795362174510956, - -0.2778860032558441, - 0.15930700302124023, - -0.08664760738611221, - -0.14723923802375793, - -0.14835111796855927, - -0.093327097594738, - 0.05378052964806557, - -0.2364777773618698, - 0.3124886453151703, - 0.0418986976146698, - 0.00939310621470213, - 0.4885781407356262, - -0.24560263752937317, - -0.14027772843837738, - 0.3196834921836853, - -0.09336373955011368, - -0.4874247610569, - 0.4141414165496826, - -0.13485676050186157, - -0.1001845970749855, - 0.37420058250427246, - -0.22730396687984467, - 0.00928629282861948, - -0.10739663988351822, - 0.30588290095329285, - -0.05714850500226021, - 0.07800091803073883, - -0.13693810999393463, - 0.005378518719226122, - 0.16613569855690002, - 0.5570912957191467, - 0.16769035160541534, - 0.13775865733623505, - 0.5849872827529907, - -0.06542567908763885, - -0.33793362975120544, - 0.060642652213573456, - -0.014186031185090542, - 0.36246150732040405, - -0.33592769503593445, - -0.20529766380786896, - -0.31354084610939026, - 0.08161328732967377, - 0.048976968973875046, - -0.17789551615715027, - 0.028911912813782692, - 0.1808389127254486, - 0.10076800733804703, - -0.0009220232022926211, - 0.30937886238098145, - 0.21956171095371246, - -0.2059270292520523, - 0.4281466007232666, - 0.022237194702029228, - -0.1602182537317276, - 0.3684556782245636, - -0.16353966295719147, - 0.26192668080329895, - -0.07123000174760818, - -0.2690967917442322, - -0.2597518563270569, - 0.11440259218215942, - -0.3152306079864502, - -0.19585253298282623, - -0.0339721143245697, - -0.23695333302021027, - 0.010022210888564587, - -0.19625461101531982, - 0.12993116676807404, - 0.10266727209091187, - 0.21011866629123688, - 0.0202326737344265, - 0.4409562945365906, - 0.21631334722042084, - -0.27948686480522156, - 0.09791842848062515, - -0.07134319841861725, - 0.2166842669248581, - -0.29761356115341187, - 0.1403992921113968, - -0.1599283218383789, - 0.5187095999717712, - 0.02781805396080017, - -0.058076974004507065, - 0.07819662988185883, - -0.018465561792254448, - -0.21467988193035126, - -0.457146018743515, - 0.01073733065277338, - -0.06304458528757095, - -0.0010013665305450559, - -0.02185508981347084, - 0.12238343805074692, - -0.23991276323795319, - -0.14299596846103668, - -0.02987738512456417, - 0.10046664625406265, - 0.06958045810461044, - -0.17561854422092438, - -0.09605572372674942, - 0.3901654779911041, - 0.1312832534313202, - 0.4573516249656677, - -0.2683428227901459, - 0.14714206755161285, - 0.0652875155210495, - -0.37555932998657227, - -0.05103660002350807, - -0.05366930738091469, - -0.3715563118457794, - -0.07986108213663101, - 0.21332654356956482, - 0.179373636841774, - 0.007311542052775621, - 0.001032271538861096, - -0.00010280683636665344, - 0.3239199221134186, - -0.2767238914966583, - -0.049160685390233994, - 0.530314028263092, - 0.12989477813243866, - 0.4905761182308197, - 0.004146810155361891, - -0.5527881383895874, - -0.22600515186786652, - 0.031683918088674545, - -0.41813912987709045, - 0.12095123529434204, - 0.21629633009433746, - -0.19794057309627533, - -0.19331757724285126, - 0.0949043408036232, - 0.05562594160437584, - -0.04136047512292862, - 0.21197029948234558, - -0.2531126141548157, - 0.12098496407270432, - 0.07788611203432083, - -0.1887999325990677, - -0.017728522419929504, - -0.254666268825531, - -0.34406372904777527, - -0.13412807881832123, - 0.31496280431747437, - 0.18840788304805756, - -0.2499838024377823, - 0.10926063358783722, - 0.18608450889587402, - -0.17826566100120544, - -0.3046448826789856, - -0.04454020783305168, - -0.18970942497253418, - 0.551347553730011, - -0.08273109048604965, - -0.19173946976661682, - 0.28548452258110046, - -0.11262212693691254, - 0.06890810281038284, - 0.17221508920192719, - 0.16801312565803528, - 0.3690635561943054, - 0.15949463844299316, - 0.19221487641334534, - 0.5538449883460999, - 0.08934397995471954, - 0.06078023090958595, - 0.2536282539367676, - 0.06985469907522202, - -0.04857928678393364, - -0.2065393030643463, - -0.2484283149242401, - 0.29207712411880493, - -0.38521578907966614, - -0.008189703337848186, - -0.015269530937075615, - 0.21376968920230865, - -0.39759543538093567, - -0.30834290385246277, - -0.081883504986763, - 0.028478655964136124, - -0.15560348331928253, - -0.26889750361442566, - -0.15018899738788605, - -0.056336574256420135, - -0.22019515931606293, - -0.106744185090065, - 0.3347203731536865, - 0.48884087800979614, - 0.190956249833107, - 0.2549979090690613, - -0.2988419830799103, - -0.3802010715007782, - 0.11378878355026245, - 0.2821696102619171, - 0.07678768783807755, - -0.10542363673448563, - -0.21799468994140625, - 0.19259928166866302, - 0.530512273311615, - -0.1731937676668167, - -0.013003485277295113, - 0.09567994624376297, - -0.0677076131105423, - 0.06797543913125992, - -0.031116720288991928, - -0.09281259775161743, - 0.06805676966905594, - -0.4920804500579834, - 0.23916271328926086, - -0.1083448976278305, - -0.2104412019252777, - 0.27111950516700745, - -0.21855852007865906, - -0.5184774994850159, - -0.1265622079372406, - 0.2419375330209732, - -0.20211681723594666, - -0.14468839764595032, - 0.1924026906490326, - 0.4019602835178375, - 0.04507601261138916, - -0.20694197714328766, - 0.0886058434844017, - -0.5126371383666992, - -0.21900807321071625, - 0.16007192432880402, - -0.13521035015583038, - -0.04983597621321678, - 0.007017518859356642, - 0.2386220544576645, - 0.3893115222454071, - 0.18145941197872162, - -0.1922331154346466, - 0.14157900214195251, - 0.5028610825538635, - 0.36395135521888733, - -0.19748075306415558, - -10.717467308044434, - -0.14767269790172577, - -0.25542184710502625, - 0.509068489074707, - -0.20895706117153168, - 0.07010151445865631, - 0.023230237886309624, - -0.045165419578552246, - 0.1871204376220703, - 0.2113236039876938, - -0.14502492547035217, - -0.014968454837799072, - 0.24801072478294373, - 0.28149133920669556, - -0.011811167001724243, - 0.13910724222660065, - -0.2954607605934143, - 0.2671447694301605, - 0.007963201031088829, - 0.22624894976615906, - 0.19095899164676666, - 0.41713374853134155, - -0.36062756180763245, - 0.21348626911640167, - 0.0687461718916893, - -0.3522712290287018, - -0.1540302038192749, - 0.5286874771118164, - 0.2612105906009674, - -0.3893272876739502, - 0.22630809247493744, - 0.09640133380889893, - -0.1321679800748825, - -0.02455376461148262, - -0.054253049194812775, - -0.13033358752727509, - -0.09656483680009842, - 0.133830264210701, - 0.2701391577720642, - -0.177614226937294, - 0.12847605347633362, - -0.16909202933311462, - 0.35832494497299194, - 0.23327329754829407, - -0.19464504718780518, - -0.5269423127174377, - -0.09118587523698807, - -1.675971269607544, - 0.3057993948459625, - 0.2951194643974304, - 0.5006667971611023, - -0.04268503934144974, - 0.2271026223897934, - 0.1632169932126999, - -0.4504690170288086, - -0.1289357990026474, - -0.3015478551387787, - -0.04091610386967659, - 0.16493450105190277, - -0.043372996151447296, - 0.16545049846172333, - -0.020705411210656166, - 0.5153104662895203, - -0.2186545580625534, - -0.16885803639888763, - 0.0722784474492073, - -0.0008209847728721797, - -0.05834666267037392, - -0.24107812345027924, - -0.5792292356491089, - -0.5673157572746277, - 0.06863474100828171, - 0.006406003143638372, - -0.09822483360767365, - 0.4548388123512268, - -0.0030777044594287872, - -0.29057884216308594, - 0.2774486839771271, - -0.10641195625066757, - 0.46444377303123474, - 0.3257273733615875, - -0.13071709871292114, - 0.07945980876684189, - -0.19545210897922516, - -0.2553441524505615, - -0.13610242307186127, - 0.1599007546901703, - 0.5419639348983765, - -0.08192604780197144, - -0.0570390485227108, - -0.02456311695277691, - 0.3714301288127899, - -0.11653799563646317, - -0.0926886796951294, - -0.4074513018131256, - 0.0068917651660740376, - 0.0073386915028095245, - 0.031838733702898026, - -0.0035169762559235096, - -0.10699260234832764, - -0.2188466489315033, - -0.025023801252245903, - -0.09684360027313232, - -0.5786617994308472, - -0.5661852955818176, - 0.23602087795734406, - 0.21873930096626282, - 0.17109178006649017, - 0.05161571875214577, - -0.07227950543165207, - -0.17798876762390137, - -0.005457459948956966, - 0.31478866934776306, - 0.545839250087738, - 0.16239574551582336, - 0.04875868558883667, - -0.13044869899749756, - -0.1900259107351303, - -0.18313400447368622, - 0.02145831473171711, - 0.4335358440876007, - -0.0728669986128807, - 0.2807242274284363, - 0.6965659856796265, - 0.026387104764580727, - -0.14012061059474945, - 1.0217301845550537, - -0.271355003118515, - 0.2382143884897232, - -0.16125039756298065, - 0.20323047041893005, - -0.03228753060102463, - -0.3927547037601471, - 0.09548906981945038, - 0.372710257768631, - -0.3653051555156708, - 0.7228313684463501, - 0.21654793620109558, - -0.5085169076919556, - 0.032327450811862946, - -0.4331655204296112, - 0.42982953786849976, - 0.25772780179977417, - 0.2714661955833435, - -0.2287147045135498, - -0.2991470992565155, - -0.3384869396686554, - 0.15062685310840607, - -0.3403807282447815, - -0.324948787689209, - -0.13339149951934814, - 0.11199881881475449, - 0.1223236471414566, - -0.1844135820865631, - 0.2829793095588684, - 0.21342121064662933, - -0.1674823760986328, - -0.3533896803855896, - -0.4094894826412201, - -0.213298961520195, - 0.058607518672943115, - 0.7778774499893188, - 0.032708700746297836, - -0.10342276096343994, - -0.04681689664721489, - 0.1619551032781601, - -0.19435203075408936, - 0.11240453273057938, - 0.20556488633155823, - -0.06238192319869995, - -0.41855505108833313, - 0.23142662644386292, - 0.1846342235803604, - -0.4124789237976074, - -0.14119097590446472, - -0.1496214121580124, - -0.028181463479995728, - 0.12397100776433945, - -0.16651932895183563, - 0.17961028218269348, - 0.21722204983234406, - 0.007520813960582018, - 0.07293646037578583, - -0.15725800395011902, - -0.04658053442835808, - 0.2346431016921997, - 0.2886977791786194, - 0.1455422192811966, - -0.3175258934497833, - -0.42687568068504333, - -0.43980544805526733, - 0.20059509575366974, - -0.4005231261253357, - -0.12408202886581421, - 0.07013263553380966, - 0.19881834089756012, - -0.21606789529323578, - 0.13770337402820587, - -0.12290889769792557, - -0.07209273427724838, - -0.18376101553440094, - 0.22134855389595032, - 0.5125210881233215, - -0.16460299491882324, - 0.30647435784339905, - -0.0637965202331543, - 0.26974478363990784, - 0.11607911437749863, - -0.34786686301231384, - 0.07689502090215683, - -0.1913035809993744 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_046.json b/src/benchmark/output/results/results_graph_046.json deleted file mode 100644 index 2cb557e..0000000 --- a/src/benchmark/output/results/results_graph_046.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "The patient in question is a 55-year-old male who was initially diagnosed with intermittent dry cough and left temporal headaches. Over time, his symptoms progressed to subacute vertigo, nausea, vomiting, and ataxia. These symptoms led to hospital admission, where initial investigations including cranial MRI and CSF analysis were unremarkable.\n\nFollowing the progression of symptoms, negative paraneoplastic antibody profiles and anti-neuronal surface antigen antibody spectrum in blood and CSF were found, indicating that symptomatic therapy was ineffective. The patient's condition continued to deteriorate, leading to hospital admission with positive Romberg sign and gait ataxia. A CT scan revealed a solid mass shadow in the upper lobe of the right lung, along with multiple enlarged lymph nodes in both hilum and mediastinum.\n\nAbnormal serum tumor markers, including SCCAg, NSE, and Cyfra21-1, were detected, and the patient was diagnosed with squamous cell lung carcinoma. Contrast-enhanced MRI of the head showed no obvious abnormality, but PET-CT revealed a malignant lesion in the upper lobe of the right lung with multiple lymph node metastasis.\n\nThe histological and immunohistochemical results confirmed that the patient had squamous cell lung carcinoma. Following this diagnosis, oral prednisone was initiated to alleviate symptoms such as vertigo, nausea, and vomiting. Intravenous immunoglobulin (IVIG) was also started, which led to an improvement in these symptoms.\n\nThe patient's treatment plan included three courses of intravenous etoposide and cisplatin, with radiotherapy administered at a dose of 50.4 Gy. The timeline for the patient's diagnosis and treatment is as follows:\n\n* Initial symptoms: intermittent dry cough and left temporal headaches\n* Progression of symptoms: subacute vertigo, nausea, vomiting, and ataxia (hospital admission)\n* Diagnosis: squamous cell lung carcinoma with multiple lymph node metastasis\n* Treatment:\n\t+ Oral prednisone initiated to alleviate symptoms\n\t+ Intravenous immunoglobulin (IVIG) started to alleviate symptoms\n\t+ Three courses of intravenous etoposide and cisplatin\n\t+ Radiotherapy administered at a dose of 50.4 Gy\n\nThe patient's current status is not explicitly stated in the provided data, but it can be inferred that they are receiving ongoing treatment for their squamous cell lung carcinoma. The timeline suggests that the patient has been under treatment for several weeks, with some improvement in symptoms and potentially some progression or stabilization of the disease.\n\nIt is worth noting that the patient's demographics, including age and sex, are not explicitly stated in the provided data. However, based on the information provided, it can be inferred that the patient is a 55-year-old male who has been diagnosed with squamous cell lung carcinoma.", - "bertscore": { - "precision": [ - 0.5163893103599548 - ], - "recall": [ - 0.6056607365608215 - ], - "f1": [ - 0.5574737191200256 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 2, - "node_count": 9, - "edge_count": 7, - "avg_in_degree": 0.7777777777777778, - "density": 0.09722222222222222 - }, - "trajectory_embedding": [ - 0.21283334493637085, - 0.2261987030506134, - -0.18569672107696533, - 0.07250019162893295, - -0.07191392034292221, - 0.026674848049879074, - 0.13202348351478577, - 0.17625777423381805, - 0.3370841145515442, - -0.3352464735507965, - -0.19530074298381805, - 0.2723828852176666, - -0.5447418689727783, - -0.1018790602684021, - -0.38133886456489563, - 0.0197188351303339, - -0.013194016180932522, - 0.2992449104785919, - -0.11195860803127289, - -0.15697285532951355, - -0.24436324834823608, - 0.10384102165699005, - -0.3071918785572052, - -0.1414511799812317, - 0.024036221206188202, - 0.044095903635025024, - 0.31548312306404114, - 0.39260685443878174, - 0.14768189191818237, - 0.28036460280418396, - 0.3064742088317871, - 0.18841558694839478, - -0.0862426608800888, - -0.041264329105615616, - -0.16962404549121857, - 0.31783565878868103, - 0.25215375423431396, - 0.2695865035057068, - -0.042982976883649826, - 0.03094445914030075, - -0.030378904193639755, - 0.06392259150743484, - 0.6801570057868958, - 0.21543031930923462, - 0.5389238595962524, - -0.605004608631134, - -0.043979160487651825, - 0.4234747886657715, - -0.33355647325515747, - -0.001393609563820064, - 0.2408851832151413, - 0.6266682147979736, - 0.5581599473953247, - -0.007645789068192244, - 0.363479346036911, - -0.16565929353237152, - -0.2857747972011566, - -0.2333429902791977, - -0.18875747919082642, - 0.16070450842380524, - 0.020091155543923378, - -0.015242391265928745, - 0.004262878559529781, - 0.0805559754371643, - -0.225491464138031, - -0.08067435771226883, - -0.10134094208478928, - 0.07511609047651291, - -0.036051489412784576, - -0.14822736382484436, - -0.3002973198890686, - -0.36176469922065735, - -0.10734054446220398, - 0.19100052118301392, - 0.08973736315965652, - -0.2704123556613922, - 0.27427226305007935, - 0.011898607015609741, - 0.13745014369487762, - 0.14464294910430908, - 0.07898195832967758, - 0.03388437256217003, - -0.002102586906403303, - 0.19303452968597412, - -0.3502916693687439, - 0.14056171476840973, - -0.06496694684028625, - -0.0340188704431057, - -0.2515440583229065, - 0.25466108322143555, - 0.2112123668193817, - -0.2544920742511749, - -0.06839431822299957, - -0.15561389923095703, - -0.008667134679853916, - 0.0018484062748029828, - 0.07454684376716614, - 0.42554399371147156, - 0.9718409776687622, - 0.03468671813607216, - 0.18116915225982666, - 0.13545650243759155, - 0.2403615564107895, - 0.04644368961453438, - 0.4630066454410553, - -0.289556086063385, - 0.23708555102348328, - -0.46381527185440063, - 0.12591427564620972, - 0.3964519500732422, - 0.01366723608225584, - -0.10981326550245285, - -0.0507669672369957, - -0.23785100877285004, - -0.0004187557497061789, - 0.02311922051012516, - -0.14743798971176147, - 0.2172967791557312, - 0.06545457243919373, - -0.37822937965393066, - 0.007886763662099838, - -0.2027176171541214, - 0.16810692846775055, - 0.30216607451438904, - -0.31726202368736267, - -0.09446362406015396, - -0.04623013734817505, - 0.07307060807943344, - 0.06007042154669762, - 0.14948076009750366, - -0.265523225069046, - -0.09516588598489761, - 0.02646833285689354, - 0.21589338779449463, - -0.12413574755191803, - 0.31536081433296204, - -0.46508774161338806, - 0.08332397788763046, - -1.0640779733657837, - 0.13872206211090088, - -0.33625900745391846, - -0.07653570175170898, - 0.09586820006370544, - -0.45436224341392517, - -0.09874200820922852, - -0.1680566370487213, - -0.19887857139110565, - 0.13407449424266815, - -0.043161749839782715, - -0.019084269180893898, - -0.03355707600712776, - -0.045656006783246994, - 0.0748986080288887, - 0.07378706336021423, - -0.018580952659249306, - 0.1397104114294052, - 0.19816569983959198, - 0.3265959918498993, - 0.17126215994358063, - -0.17007790505886078, - -0.011945413425564766, - 0.33434587717056274, - -0.1633022427558899, - 0.03446871414780617, - 0.02192101441323757, - -0.5796559453010559, - 0.1331268548965454, - -0.28031033277511597, - 0.19753162562847137, - -0.06252069026231766, - -0.14420628547668457, - 0.15576739609241486, - -0.09634782373905182, - 0.48831450939178467, - 0.33430176973342896, - 0.46575137972831726, - -0.049799975007772446, - -0.01480710506439209, - 0.10451763868331909, - 0.040878474712371826, - -0.07442136853933334, - -0.024852236732840538, - 0.43379896879196167, - 0.12939031422138214, - -0.3333817720413208, - 0.10121433436870575, - 0.41327017545700073, - -0.21703380346298218, - -0.16962268948554993, - -0.10190442204475403, - 0.28198665380477905, - -0.22347715497016907, - 0.22554223239421844, - -0.2476748824119568, - -0.06317707896232605, - -0.011066824197769165, - -0.29848989844322205, - -0.25970691442489624, - 0.13536418974399567, - -0.09653794765472412, - 0.16976243257522583, - 0.09345123916864395, - -0.24072140455245972, - 0.16812534630298615, - 0.16770689189434052, - -0.11964637786149979, - 0.23136168718338013, - 0.05894629284739494, - 0.07916602492332458, - -0.16929058730602264, - -0.27491092681884766, - 0.15414299070835114, - 0.1325346827507019, - 0.2680622935295105, - 0.04969082027673721, - -0.14524608850479126, - 0.15766379237174988, - -0.06972102075815201, - -0.11582052707672119, - 0.08449088037014008, - -0.033755555748939514, - -0.07581183314323425, - 0.24828237295150757, - 0.05252065137028694, - -0.30359601974487305, - 0.1934724599123001, - 0.15098494291305542, - 0.09961482137441635, - 0.010259062051773071, - -0.16212156414985657, - 0.0635111853480339, - -0.24676460027694702, - 0.31443431973457336, - -0.11933349072933197, - -0.26863938570022583, - -0.2714122533798218, - 0.09790021926164627, - -0.025338806211948395, - -0.22963809967041016, - 0.3331666886806488, - -0.0713672935962677, - -0.13498127460479736, - 0.17511877417564392, - -0.21284346282482147, - -0.050672683864831924, - -0.13277965784072876, - -0.02451874129474163, - 0.35359668731689453, - 0.14838196337223053, - 0.35270678997039795, - 0.20181067287921906, - -0.057285111397504807, - 0.1375797986984253, - -0.3551873564720154, - -0.13520625233650208, - -0.28147387504577637, - -0.05275240167975426, - -0.09671392291784286, - -0.4379449784755707, - -0.10087770968675613, - 0.14222633838653564, - -0.250449538230896, - 0.15648314356803894, - -0.3380715847015381, - -0.0799122005701065, - -0.1471976637840271, - -0.10669047385454178, - 0.1332779973745346, - -0.25184744596481323, - 0.02016431652009487, - -0.3227500021457672, - -0.1776902973651886, - -0.0762394517660141, - 0.09082266688346863, - 0.20542031526565552, - 0.1545739620923996, - 0.02847827784717083, - 0.2123955339193344, - 0.13280418515205383, - -0.4918714761734009, - -0.407980352640152, - 0.09903141111135483, - -0.30152398347854614, - 0.32844293117523193, - -0.1322653889656067, - 0.23518212139606476, - 0.5350030064582825, - 0.03905997425317764, - 0.19683937728405, - 0.33506685495376587, - 0.49745315313339233, - 0.12021812051534653, - -0.1583317220211029, - 0.005540571175515652, - 0.0022256742231547832, - -0.003721402259543538, - -0.42594677209854126, - 0.18814119696617126, - -0.20640332996845245, - -0.10578683018684387, - -0.04623890668153763, - 0.1836135983467102, - 0.08455851674079895, - -0.3398422300815582, - -0.22167637944221497, - 0.5941989421844482, - 0.045187801122665405, - 0.06291237473487854, - 0.0490005761384964, - 0.32379281520843506, - 0.50832599401474, - 0.061645057052373886, - -0.19589084386825562, - -0.03434114158153534, - -0.23751074075698853, - -0.1602248102426529, - -0.23692086338996887, - 0.04062122851610184, - 0.2064872533082962, - 0.01689378172159195, - -0.09402807801961899, - 0.3246709704399109, - -0.03264154866337776, - -0.33337417244911194, - 0.019046170637011528, - -0.03687463328242302, - -0.040471598505973816, - -0.34209638833999634, - 0.2732621729373932, - -0.12541009485721588, - 0.010057424195110798, - 0.4563547670841217, - -0.16165989637374878, - -0.24885593354701996, - 0.27481141686439514, - 0.09622248262166977, - -0.3593529760837555, - 0.288421630859375, - -0.21253246068954468, - 0.00503713870421052, - 0.18412859737873077, - -0.1113007590174675, - -0.02591375820338726, - -0.16554638743400574, - 0.16822431981563568, - 0.10946062207221985, - 0.027460826560854912, - -0.13611605763435364, - 0.04138593375682831, - 0.005130467936396599, - 0.4780403673648834, - 0.11630149930715561, - -0.017535844817757607, - 0.3281402587890625, - -0.13995331525802612, - -0.20071503520011902, - 0.07032229006290436, - 0.009234660305082798, - 0.06395798921585083, - -0.28026992082595825, - -0.1801179051399231, - -0.24279287457466125, - 0.24337822198867798, - 0.04438222944736481, - -0.2879486680030823, - 0.013043173588812351, - 0.0997292697429657, - -0.08866995573043823, - -0.0069495271891355515, - 0.20371156930923462, - 0.3201078772544861, - -0.00961106363683939, - 0.3998523950576782, - 0.015987148508429527, - -0.06414195895195007, - 0.1502019613981247, - 0.020884687080979347, - 0.26524603366851807, - -0.08179717510938644, - -0.4002271294593811, - -0.3346138894557953, - 0.05195220559835434, - -0.08302678167819977, - -0.12294937670230865, - 0.052113279700279236, - -0.0507148802280426, - -0.028813868761062622, - -0.10453584790229797, - 0.21591179072856903, - -0.10600656270980835, - 0.12666364014148712, - -0.08397616446018219, - 0.3688596189022064, - -0.09853846579790115, - -0.3165881037712097, - 0.05747140198945999, - 0.050059668719768524, - 0.21534447371959686, - -0.1537393182516098, - -0.06781406700611115, - -0.11774025857448578, - 0.26112401485443115, - -0.12978605926036835, - -0.048902615904808044, - -4.07341867685318e-05, - -0.0012700326042249799, - -0.2337864488363266, - -0.38982418179512024, - 0.0813867598772049, - -0.06676480919122696, - -0.19045819342136383, - -0.20997051894664764, - 0.23356352746486664, - -0.058150988072156906, - -0.19093768298625946, - 0.0025059713516384363, - 0.26999032497406006, - 0.20945996046066284, - -0.06236864626407623, - 0.12354644387960434, - 0.27220234274864197, - -0.04315519705414772, - 0.21787072718143463, - -0.1447262167930603, - 0.17601896822452545, - -0.03411378338932991, - -0.26682984828948975, - 0.0814981535077095, - 0.009347396902740002, - -0.21583884954452515, - -0.019352883100509644, - 0.02298767864704132, - 0.13206809759140015, - 0.05135887861251831, - -0.007022013887763023, - -0.0631742924451828, - 0.05752534419298172, - -0.2853194773197174, - 0.0693616047501564, - 0.4101787507534027, - -0.03222912922501564, - 0.31939446926116943, - -0.05273374170064926, - -0.3583529591560364, - -0.07946258038282394, - -0.11275181174278259, - -0.3122475743293762, - 0.1589924544095993, - 0.06508535891771317, - -0.181715726852417, - -0.06236620247364044, - 0.09195244312286377, - 0.12129002064466476, - -0.024573825299739838, - 0.19135305285453796, - 0.04742388054728508, - 0.05829234421253204, - -0.011050757020711899, - -0.281404584646225, - -0.01098252460360527, - -0.36622852087020874, - -0.18200738728046417, - -0.33202052116394043, - 0.35880517959594727, - 0.1444559097290039, - -0.04766280576586723, - 0.06378807872533798, - 0.05220311880111694, - -0.3367024064064026, - -0.13326400518417358, - 0.03771273419260979, - -0.06240672618150711, - 0.5404244661331177, - 0.18733787536621094, - -0.15763355791568756, - 0.18037450313568115, - -0.316437304019928, - 0.009263915941119194, - 0.20572476089000702, - 0.16431133449077606, - 0.28605031967163086, - 0.20958532392978668, - 0.2013704478740692, - 0.4319247007369995, - 0.20126846432685852, - -0.005891015287488699, - 0.3217604458332062, - -0.027137458324432373, - 0.007510947063565254, - -0.13873188197612762, - -0.1854327917098999, - 0.37591949105262756, - -0.3473818004131317, - 0.14400824904441833, - 0.1279822140932083, - 0.2321036458015442, - -0.2766396403312683, - -0.23293399810791016, - -0.0751987174153328, - -0.049745071679353714, - -0.16147270798683167, - -0.4183061420917511, - -0.14531849324703217, - 0.08848855644464493, - -0.3244529664516449, - 0.048147521913051605, - 0.3318268060684204, - 0.20140165090560913, - 0.20443791151046753, - 0.08305230736732483, - -0.18334899842739105, - -0.44337591528892517, - 0.14690585434436798, - 0.2870486080646515, - 0.015619761310517788, - -0.11644724011421204, - -0.1881403625011444, - 0.08180245012044907, - 0.49300214648246765, - -0.08759057521820068, - -0.1492140144109726, - -0.10097543150186539, - -0.09030762314796448, - -0.019598310813307762, - 0.009156394749879837, - -0.10598734021186829, - -0.12093382328748703, - -0.29830437898635864, - 0.14583489298820496, - -0.20407335460186005, - -0.3196157217025757, - 0.11356539279222488, - -0.23035423457622528, - -0.3347676992416382, - -0.07506687194108963, - 0.2951148748397827, - -0.1841394305229187, - -0.08473078906536102, - 0.057009320706129074, - 0.5688856840133667, - 0.15249386429786682, - 0.024907313287258148, - 0.09165069460868835, - -0.3258637487888336, - 0.0017414229223504663, - 0.21541738510131836, - -0.1512048840522766, - 0.16125212609767914, - 0.12769708037376404, - 0.26745450496673584, - 0.2590113878250122, - 0.20553970336914062, - -0.4713110327720642, - 0.12736015021800995, - 0.26676782965660095, - 0.16526669263839722, - -0.2720050513744354, - -10.899870872497559, - 0.045490071177482605, - -0.14056718349456787, - 0.48876774311065674, - -0.15082964301109314, - 0.11659985035657883, - 0.1083529070019722, - 0.03025604598224163, - 0.22857099771499634, - 0.2745342254638672, - -0.33267533779144287, - 0.059894442558288574, - 0.1682625561952591, - 0.11300323903560638, - 0.051654599606990814, - 0.014451961033046246, - -0.10297545790672302, - 0.2783627510070801, - 0.08534044772386551, - 0.2424316704273224, - 0.11571012437343597, - 0.4719645082950592, - -0.11004272848367691, - 0.29751279950141907, - 0.1504238396883011, - -0.25993359088897705, - -0.2020144760608673, - 0.3196897506713867, - 0.05853502079844475, - -0.3853840231895447, - 0.20245157182216644, - 0.03566883131861687, - -0.1107543557882309, - -0.10815233737230301, - -0.0011197924613952637, - -0.25315192341804504, - -0.05670708417892456, - -0.048502445220947266, - -0.04860137030482292, - -0.17308034002780914, - 0.006812499836087227, - -0.20557016134262085, - 0.14916878938674927, - 0.20557747781276703, - -0.06213407218456268, - -0.3531949818134308, - -0.2083752304315567, - -1.4600480794906616, - 0.3418825566768646, - 0.35777875781059265, - 0.5423658490180969, - 0.060710079967975616, - 0.21327579021453857, - 0.14046257734298706, - -0.4543054401874542, - 0.12098178267478943, - -0.20515523850917816, - 0.11073673516511917, - 0.1942926049232483, - -0.02554556354880333, - 0.12231021374464035, - -0.09081941097974777, - 0.40735042095184326, - -0.25884416699409485, - -0.1699652224779129, - 0.1723531037569046, - -0.18658211827278137, - 0.05605747923254967, - -0.027085013687610626, - -0.23952047526836395, - -0.41727176308631897, - -0.027840005233883858, - -0.008344557136297226, - 0.17404943704605103, - 0.48877158761024475, - 0.048919107764959335, - -0.34051406383514404, - 0.2041877806186676, - -0.05990995466709137, - 0.2882596254348755, - 0.13159213960170746, - 0.020799560472369194, - 0.045565515756607056, - -0.149105504155159, - -0.008681552484631538, - -0.24527771770954132, - -0.07267572730779648, - 0.43082869052886963, - -0.09393588453531265, - 0.006248306017369032, - -0.012732194736599922, - 0.17859205603599548, - -0.10465846210718155, - -0.14659176766872406, - -0.4048817455768585, - 0.05939580500125885, - 0.002015696605667472, - -0.041262369602918625, - -0.004457493778318167, - 0.014516751281917095, - -0.17552635073661804, - -0.07980498671531677, - 0.02432759292423725, - -0.44587981700897217, - -0.2516319751739502, - 0.3019556701183319, - 0.2567998766899109, - 0.22570385038852692, - 0.16664236783981323, - 0.2512465715408325, - 0.05109352618455887, - -0.07403482496738434, - 0.3565337359905243, - 0.4589897692203522, - 0.16411586105823517, - -0.10788187384605408, - -0.1400454342365265, - -0.02829481102526188, - -0.2165587991476059, - 0.04056546464562416, - 0.4594404995441437, - -0.008534431457519531, - 0.2554766535758972, - 0.3977060317993164, - 0.02593780681490898, - -0.20805838704109192, - 0.9135934114456177, - -0.20856255292892456, - 0.26527053117752075, - -0.11175020784139633, - 0.1500868797302246, - -0.06991802155971527, - -0.2677736282348633, - 0.13384991884231567, - 0.33276790380477905, - -0.2025960236787796, - 0.4392930865287781, - 0.09262576699256897, - -0.3638356626033783, - 0.06772565096616745, - -0.22991813719272614, - 0.36017489433288574, - 0.188194140791893, - 0.2976173758506775, - -0.15880116820335388, - -0.2994076907634735, - -0.18980084359645844, - 0.04826117306947708, - -0.43584704399108887, - -0.2398812472820282, - -0.14241263270378113, - 0.039177801460027695, - -0.08267208188772202, - -0.23236876726150513, - 0.2714538872241974, - 0.08902620524168015, - -0.16783401370048523, - -0.11827147006988525, - -0.5969451069831848, - -0.14278316497802734, - 0.07921724766492844, - 0.5476028919219971, - 0.06470826268196106, - -0.07706396281719208, - -0.03389648720622063, - 0.17959539592266083, - -0.031061602756381035, - 0.01697085052728653, - 0.030577894300222397, - -0.04744522273540497, - -0.44362449645996094, - 0.15526634454727173, - 0.03123527765274048, - -0.32432401180267334, - -0.1853085160255432, - -0.3158264458179474, - 0.188261479139328, - -0.0017749584512785077, - -0.15611261129379272, - 0.3042958974838257, - 0.2432161420583725, - 0.0450713112950325, - 0.023609524592757225, - -0.19505208730697632, - 0.26095151901245117, - 0.2553902268409729, - 0.18188053369522095, - 0.12970411777496338, - -0.13089893758296967, - -0.379459023475647, - -0.3980197608470917, - 0.2006080150604248, - -0.28226834535598755, - -0.0964260995388031, - 0.0914294645190239, - 0.1325417011976242, - -0.2629554271697998, - 0.10421829670667648, - -0.26234742999076843, - 0.036127373576164246, - -0.2396201491355896, - 0.14727406203746796, - 0.3077162206172943, - -0.2678605318069458, - 0.0037977034226059914, - -0.20072217285633087, - 0.34394168853759766, - 0.16432230174541473, - -0.22313080728054047, - 0.13270944356918335, - -0.055142730474472046 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_047.json b/src/benchmark/output/results/results_graph_047.json deleted file mode 100644 index 82a79f9..0000000 --- a/src/benchmark/output/results/results_graph_047.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 70-year-old male with a history of asbestos exposure and former smoking (20 pack-years).\n\n**Timeline of Diagnoses:**\n\n1. **2023:** The patient was diagnosed with large-cell squamous carcinoma of the left upper lobe with mediastinal lymph node metastases (cT4 cN3 cM0, stage IIIC).\n2. **2023:** The patient underwent treatment with curative intent, consisting of four cycles of vinorelbine/carboplatin, one cycle of durvalumab, and radiotherapy (total dose: 60 Gy).\n\n**Timeline of Treatments:**\n\n1. **2023:** The patient received four cycles of vinorelbine/carboplatin.\n2. **2023:** The patient received one cycle of durvalumab.\n3. **2023:** The patient underwent radiotherapy.\n\n**Timeline of Outcomes:**\n\n1. **After treatment (2023):** The patient's bilateral radiation pneumonitis progression was monitored.\n2. **After treatment (2023):** A CT scan showed regression of the left central tumor, mediastinal, and right hilar lymph nodes, along with a trend toward resolution of bipulmonary pneumonitis.\n3. **After treatment (2023):** Bronchoscopy revealed marked tumor regression in the left upper lobe, with histology showing bronchial wall reserve cell hyperplasia and mucosal changes, but no recurrence of the previously diagnosed poorly differentiated squamous cell carcinoma or evidence of malignancy.\n4. **After treatment (2023):** A CT scan revealed a new lesion suspicious for malignancy in liver segments V and VI, consistent with metastasis from the known squamous cell carcinoma of the lung.\n\n**Current Status:**\nThe patient is currently undergoing evaluation for surgical resection of solitary centrally located hepatic metastasis. The pulmonary tumor board has recommended this course of action based on imaging findings.\n\nIn summary, the patient was diagnosed with stage IIIC large-cell squamous carcinoma of the left upper lobe in 2023 and underwent treatment with curative intent. Following treatment, there were significant improvements in lung function and tumor regression, but a new lesion suspicious for malignancy was detected in the liver. The patient is now being evaluated for surgical resection of the hepatic metastasis.", - "bertscore": { - "precision": [ - 0.7259575724601746 - ], - "recall": [ - 0.749750554561615 - ], - "f1": [ - 0.7376622557640076 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 8, - "edge_count": 7, - "avg_in_degree": 0.875, - "density": 0.125 - }, - "trajectory_embedding": [ - 0.23916545510292053, - 0.0230923630297184, - -0.08824869245290756, - 0.20278996229171753, - 0.04306795075535774, - 0.1345890760421753, - 0.015297275967895985, - 0.4002745747566223, - 0.5124368071556091, - -0.3175220787525177, - -0.045064736157655716, - -0.16486221551895142, - -0.5308375358581543, - -0.10607318580150604, - -0.2521823048591614, - 0.38863450288772583, - -0.037071093916893005, - 0.2851150929927826, - 0.018904972821474075, - -0.19477026164531708, - -0.47042977809906006, - 0.13593415915966034, - -0.4420822858810425, - 0.009708592668175697, - 0.2584648132324219, - -0.03729706630110741, - 0.39717987179756165, - 0.4403141140937805, - 0.3876214027404785, - 0.3821466565132141, - -0.049008093774318695, - -0.25582513213157654, - 0.26447319984436035, - 0.1338401436805725, - -0.37289562821388245, - 0.19368356466293335, - 0.15885013341903687, - 0.3817512094974518, - -0.13554736971855164, - 0.006086982786655426, - -0.2432585209608078, - 0.016892213374376297, - 0.8058010339736938, - 0.08626192063093185, - 0.5061189532279968, - -0.7485342025756836, - -0.04848037660121918, - 0.633547306060791, - -0.5691675543785095, - -0.3443128168582916, - 0.04448810964822769, - 0.841015100479126, - 0.5138186812400818, - -0.3893077075481415, - 0.40973517298698425, - -0.09072116017341614, - -0.213058739900589, - -0.20061297714710236, - -0.17622539401054382, - 0.01604689285159111, - 0.1056060865521431, - -0.49434196949005127, - 0.5643545389175415, - -0.3151908218860626, - -0.1822681725025177, - -0.21250919997692108, - -0.23800277709960938, - 0.1030765250325203, - -0.03802601248025894, - -0.5116323232650757, - -0.29254502058029175, - -0.19391736388206482, - -0.11960951238870621, - 0.15392082929611206, - 0.09672687947750092, - -0.1783643662929535, - 0.34146153926849365, - -0.04866170138120651, - 0.23927748203277588, - 0.2640075087547302, - -0.12428838014602661, - -0.25246673822402954, - -0.16459450125694275, - 0.28464609384536743, - -0.29049500823020935, - 0.08885020017623901, - -0.07627468556165695, - -0.2656208872795105, - -0.4493290185928345, - 0.15903203189373016, - 0.18786358833312988, - -0.345028281211853, - -0.061763737350702286, - -0.14254821836948395, - -0.013278767466545105, - 0.3473942279815674, - 0.65049809217453, - 0.1609984040260315, - 0.8541498184204102, - 0.07158741354942322, - 0.15381012856960297, - -0.0981658324599266, - 0.23000434041023254, - 0.1067076027393341, - 0.42738673090934753, - -0.11173161119222641, - 0.23492659628391266, - -0.45706427097320557, - 0.2904343008995056, - 0.5158804059028625, - 0.1607303023338318, - -0.25217539072036743, - -0.059543635696172714, - -0.09460222721099854, - 0.2728523015975952, - 0.19561836123466492, - 0.016242103651165962, - 0.2902768552303314, - 0.37699025869369507, - -0.5121920704841614, - -0.31924423575401306, - -0.0025723539292812347, - 0.2821520268917084, - 0.3053229749202728, - -0.534160852432251, - -0.06154714524745941, - -0.1291109174489975, - -0.04548010975122452, - -0.04747118428349495, - 0.03312918543815613, - -0.4919358193874359, - -0.26127490401268005, - -0.0075714364647865295, - -0.05427156016230583, - -0.10557722300291061, - 0.2518463730812073, - -0.2499013990163803, - -0.01850511133670807, - -1.069656252861023, - 0.27897733449935913, - -0.36940649151802063, - -0.10615763813257217, - -0.01936846412718296, - -0.41995441913604736, - -0.32895535230636597, - -0.11551427096128464, - -0.16118542850017548, - 0.1899474859237671, - -0.19357386231422424, - -0.015926243737339973, - 0.11461936682462692, - 0.024804159998893738, - 0.21615669131278992, - 0.7853617668151855, - 0.08007519692182541, - 0.05699310451745987, - -0.012561127543449402, - 0.11941462755203247, - 0.1282266080379486, - -0.08349186182022095, - 0.014021685346961021, - 0.5199325680732727, - 0.33884796500205994, - 0.0853668600320816, - -0.1701793074607849, - -0.5042878985404968, - -0.00989300012588501, - -0.19875264167785645, - -0.0014421450905501842, - 0.10112608969211578, - -0.10305187851190567, - 0.09125569462776184, - -0.48077112436294556, - 0.6939082741737366, - -0.10595937073230743, - 0.17632851004600525, - -0.11461243778467178, - -0.052738502621650696, - 0.11999131739139557, - 0.22470800578594208, - 0.20191341638565063, - -0.30140095949172974, - 0.6688401103019714, - 0.18269459903240204, - -0.2808096408843994, - 0.21060001850128174, - 0.311078280210495, - 0.1429791897535324, - -0.1396367847919464, - 0.08299676328897476, - 0.6329383254051208, - -0.33071354031562805, - 0.550216019153595, - -0.3539048433303833, - -0.12094932794570923, - 0.27331990003585815, - -0.017761703580617905, - -0.0038242973387241364, - -0.14559796452522278, - -0.1315731257200241, - 0.26408910751342773, - 0.07293840497732162, - -0.5072392225265503, - -0.016257930546998978, - 0.1891871839761734, - -0.07932303845882416, - 0.2373342365026474, - 0.03519657999277115, - 0.0522322878241539, - 0.08119183778762817, - -0.03141401335597038, - 0.27265000343322754, - -0.2881734371185303, - 0.2721598744392395, - 0.028905320912599564, - -0.4228232800960541, - 0.2643834352493286, - 0.003331054002046585, - -0.15850666165351868, - 0.17926450073719025, - -0.009748805314302444, - -0.32150959968566895, - -0.1287781000137329, - 0.06742924451828003, - -0.6642765998840332, - 0.1319436877965927, - 0.034188564866781235, - 0.2950955629348755, - 0.276382714509964, - -0.01744288019835949, - -0.14421921968460083, - -0.36711204051971436, - 0.4551778733730316, - -0.08603548258543015, - -0.201155886054039, - -0.3019055128097534, - 0.279215544462204, - -0.17544490098953247, - 0.16002945601940155, - 0.4527830481529236, - -0.07686503231525421, - -0.14373202621936798, - 0.09858730435371399, - -0.2869427800178528, - -0.2016579508781433, - -0.38160017132759094, - -0.012671157717704773, - 0.34799814224243164, - 0.019776195287704468, - 0.1877691000699997, - 0.09789854288101196, - -0.23447027802467346, - 0.16238880157470703, - -0.15985991060733795, - -0.45827415585517883, - -0.46151238679885864, - -0.03140532597899437, - -0.22493813931941986, - -0.683695375919342, - 0.182869553565979, - -0.08783626556396484, - -0.04191240668296814, - 0.1721004694700241, - -0.23982855677604675, - -0.0641641765832901, - 0.1367921233177185, - -0.06810329854488373, - 0.001751813106238842, - -0.37681809067726135, - 0.24769265949726105, - -0.20568883419036865, - -0.28103840351104736, - -0.2688092887401581, - 0.03259442746639252, - 0.10483285784721375, - -0.06590881943702698, - -0.39494168758392334, - -0.07504241168498993, - 0.12199659645557404, - -0.25332510471343994, - 0.0020755608566105366, - 0.1859305202960968, - -0.08978505432605743, - 0.13364790380001068, - 0.07839521020650864, - 0.2208636850118637, - 0.11190396547317505, - -0.04260125756263733, - 0.042628321796655655, - 0.3449624478816986, - 0.48940905928611755, - -0.21866746246814728, - 0.06838104873895645, - -0.05458301305770874, - -0.03437357395887375, - -0.0042863450944423676, - -0.44777849316596985, - 0.39815208315849304, - 0.09851765632629395, - 0.07063926756381989, - 0.07985954731702805, - 0.2961411476135254, - 0.05039303004741669, - -0.1432095468044281, - 0.12772899866104126, - 0.4197957217693329, - 0.05026201158761978, - 0.18824194371700287, - 0.1270054429769516, - 0.2243354171514511, - 0.23185107111930847, - -0.20890329778194427, - 0.0867835283279419, - 0.33312249183654785, - -0.10439618676900864, - -0.29665976762771606, - 0.0401923768222332, - 0.12260034680366516, - 0.5354807376861572, - -0.19739985466003418, - -0.19240960478782654, - -0.14141829311847687, - -0.3047819435596466, - -0.008016234263777733, - -0.3746032118797302, - -0.25688785314559937, - 0.1265971064567566, - -0.2793007493019104, - 0.3787802457809448, - 0.18748435378074646, - -0.10201786458492279, - 0.3285340368747711, - -0.4618520140647888, - -0.11969727277755737, - 0.19547995924949646, - -0.20717766880989075, - -0.4529758095741272, - 0.4938090443611145, - -0.140267476439476, - -0.017146294936537743, - 0.381991982460022, - -0.4191562533378601, - -0.0011249706149101257, - 0.1729729175567627, - 0.31922033429145813, - -0.1018112301826477, - 0.07167018204927444, - -0.09922455251216888, - 0.11736948043107986, - 0.1284363567829132, - 0.5605899691581726, - 0.09406490623950958, - 0.3356720805168152, - 0.6863611340522766, - 0.3335127830505371, - -0.40812984108924866, - 0.038330331444740295, - -0.1938192993402481, - 0.4838044345378876, - -0.09166642278432846, - -0.10729428380727768, - -0.21923017501831055, - 0.08228041231632233, - 0.05134449154138565, - -0.4769124686717987, - 0.17687159776687622, - 0.17856737971305847, - 0.11245335638523102, - -0.10231593251228333, - 0.3954057991504669, - 0.11438082158565521, - -0.11861132830381393, - 0.5594603419303894, - -0.0075246915221214294, - -0.1524541676044464, - 0.39226430654525757, - -0.26632678508758545, - 0.12958218157291412, - 0.009744266048073769, - -0.0960906594991684, - -0.37086981534957886, - 0.07494677603244781, - -0.3257332444190979, - -0.17820055782794952, - 0.005342049524188042, - -0.2660077214241028, - 0.26408451795578003, - -0.27889934182167053, - 0.0432979017496109, - -0.0657203420996666, - 0.21732458472251892, - 0.2024593949317932, - 0.28990885615348816, - 0.005886562168598175, - -0.1550672948360443, - 0.2148192673921585, - 0.0015115812420845032, - -0.06681744754314423, - -0.18324996531009674, - -0.03741396963596344, - -0.1521233767271042, - 0.7285904884338379, - 0.18593727052211761, - 0.04043383151292801, - 0.21845121681690216, - -0.08911292999982834, - -0.1325589120388031, - -0.3723185658454895, - -0.16868582367897034, - -0.11426837742328644, - 0.1486630141735077, - 0.10422483086585999, - 0.10153140872716904, - -0.46194273233413696, - -0.21856406331062317, - -0.060465067625045776, - -0.09730280935764313, - -0.021878190338611603, - -0.1325068175792694, - -0.22135767340660095, - 0.18732614815235138, - 0.29881227016448975, - 0.4374503493309021, - -0.41367796063423157, - 0.11229455471038818, - -0.0002710586413741112, - -0.24133408069610596, - -0.12433796375989914, - -0.03534567356109619, - -0.3819577693939209, - -0.22154533863067627, - 0.2849128544330597, - 0.40452176332473755, - -0.06325969099998474, - -0.049002375453710556, - 0.17511479556560516, - 0.3053179979324341, - -0.3844383955001831, - -0.07662883400917053, - 0.26200243830680847, - 0.16683663427829742, - 0.3666679561138153, - 0.03493577241897583, - -0.4416690170764923, - -0.25778740644454956, - -0.16799700260162354, - -0.3037862777709961, - -0.021426640450954437, - 0.4362791180610657, - 0.03571189567446709, - -0.21172034740447998, - -0.0811365470290184, - 0.038668207824230194, - -0.14651688933372498, - 0.3068229854106903, - -0.2044486105442047, - 0.22866614162921906, - -0.04144268482923508, - -0.2558550238609314, - -0.16902348399162292, - -0.10302722454071045, - -0.3275451362133026, - -0.2208402305841446, - 0.11180940270423889, - 0.28104057908058167, - -0.34812524914741516, - -0.027566388249397278, - 0.10804525017738342, - -0.0959005355834961, - -0.06651468575000763, - -0.02577967941761017, - -0.3739625811576843, - 0.2859920263290405, - -0.180495947599411, - -0.10680633038282394, - 0.10557601600885391, - -0.08656129240989685, - 0.1028042584657669, - 0.0967804342508316, - 0.1276516616344452, - 0.33789464831352234, - 0.08203957229852676, - 0.00387607142329216, - 0.5865333080291748, - 0.1344289630651474, - 0.05920006334781647, - 0.36273401975631714, - 0.09247457981109619, - 0.10208229720592499, - -0.34571799635887146, - -0.22338548302650452, - 0.15807968378067017, - -0.37924081087112427, - -0.18483760952949524, - 0.0900421291589737, - 0.237489715218544, - -0.3945906162261963, - -0.26531246304512024, - 0.054495684802532196, - 0.07848251610994339, - -0.01681666634976864, - -0.10847945511341095, - -0.25728121399879456, - -0.17053720355033875, - -0.3721294105052948, - -0.05608925595879555, - 0.28020715713500977, - 0.5741140842437744, - 0.2486969232559204, - 0.18071886897087097, - -0.3345600366592407, - -0.3132767379283905, - 0.28371867537498474, - 0.260001003742218, - 0.11227370798587799, - 0.025435443967580795, - -0.1776626706123352, - 0.4133024215698242, - 0.2735271155834198, - -0.01336791180074215, - 0.19291508197784424, - 0.17389336228370667, - 0.14605510234832764, - 0.2845494747161865, - 0.17875203490257263, - -0.22361686825752258, - -0.02501485124230385, - -0.4463793933391571, - 0.17412002384662628, - -0.3153131902217865, - -0.05125986039638519, - 0.2922404110431671, - -0.13809095323085785, - -0.48151740431785583, - -0.3123106360435486, - 0.284854918718338, - -0.22633789479732513, - -0.1700834333896637, - 0.2542152404785156, - 0.25463560223579407, - -0.01636194810271263, - -0.37074896693229675, - 0.005656082183122635, - -0.6684494614601135, - -0.4096358120441437, - 0.10456229001283646, - 0.03701178729534149, - -0.2163981795310974, - -0.007624402642250061, - 0.5075787901878357, - 0.6817411780357361, - 0.28864145278930664, - -0.034330084919929504, - 0.10676489770412445, - 0.518778920173645, - 0.30994075536727905, - -0.16890737414360046, - -10.590301513671875, - -0.201033353805542, - -0.3370797634124756, - 0.542715847492218, - -0.2142484486103058, - 0.07573401927947998, - 0.18965254724025726, - -0.04836706817150116, - 0.008721616119146347, - 0.12023971229791641, - -0.12402694672346115, - -0.09447978436946869, - 0.16497579216957092, - 0.38085848093032837, - -0.012033773586153984, - 0.09906738996505737, - -0.4826853275299072, - 0.17155183851718903, - -0.050074994564056396, - 0.12218914926052094, - 0.20745059847831726, - 0.3177463710308075, - -0.3625527024269104, - 0.11794580519199371, - -0.10254329442977905, - -0.44881588220596313, - -0.26241692900657654, - 0.6618045568466187, - 0.32269206643104553, - -0.421120285987854, - 0.22773770987987518, - 0.1575206071138382, - -0.26591265201568604, - 0.29699644446372986, - -0.12249276041984558, - 0.08275548368692398, - -0.06796081364154816, - 0.20312267541885376, - 0.42439669370651245, - -0.19628728926181793, - -0.015452743507921696, - -0.10041250288486481, - 0.346131831407547, - 0.16988737881183624, - -0.1442452371120453, - -0.47870659828186035, - -0.1753164380788803, - -1.7188913822174072, - 0.3596162796020508, - 0.18570177257061005, - 0.18797504901885986, - 0.029428336769342422, - 0.14211221039295197, - 0.3416958153247833, - -0.32210758328437805, - -0.06409884989261627, - -0.28580808639526367, - -0.06817889213562012, - 0.022880181670188904, - 0.12477768957614899, - 0.057793404906988144, - -0.004381187260150909, - 0.5921834707260132, - 0.14404599368572235, - -0.3381609618663788, - 0.06214451044797897, - 0.1597573161125183, - -0.24752022325992584, - -0.4016862213611603, - -0.884687066078186, - -0.5153358578681946, - 0.09142717719078064, - -0.22958526015281677, - -0.0415487065911293, - 0.3864733576774597, - -0.1049053966999054, - -0.16927625238895416, - 0.22574736177921295, - 0.14636912941932678, - 0.3017677068710327, - 0.24858558177947998, - -0.021927732974290848, - 0.24723584949970245, - -0.21714502573013306, - -0.31538715958595276, - -0.10662338137626648, - 0.30110156536102295, - 0.5044937133789062, - 0.06342962384223938, - -0.13150478899478912, - 0.04200959950685501, - 0.45574551820755005, - 0.07219965755939484, - -0.16015474498271942, - -0.3810471296310425, - 0.013091824017465115, - -0.05510357767343521, - 0.15148821473121643, - -0.10503404587507248, - -0.2777521014213562, - -0.12041417509317398, - 0.13931074738502502, - 0.0038018710911273956, - -0.6154782176017761, - -0.5535193085670471, - 0.23641686141490936, - 0.10951529443264008, - 0.24948666989803314, - -0.04708016663789749, - -0.3074757158756256, - -0.33928537368774414, - -0.03250422328710556, - 0.1706535816192627, - 0.5144854187965393, - 0.3807712197303772, - -0.01118164137005806, - 0.1425674557685852, - -0.35734373331069946, - -0.1791289746761322, - -0.053970951586961746, - 0.39644381403923035, - -0.2435230016708374, - 0.3315151333808899, - 0.699695348739624, - 0.036628659814596176, - -0.04486513137817383, - 0.853065013885498, - -0.3219931721687317, - 0.341957688331604, - -0.09745914489030838, - 0.1111777126789093, - -0.07859998196363449, - -0.41244250535964966, - 0.1211860179901123, - 0.46449172496795654, - -0.30081796646118164, - 0.8033382296562195, - 0.3214571177959442, - -0.40712040662765503, - -0.07522925734519958, - -0.2641802430152893, - 0.5094892978668213, - 0.2626941204071045, - 0.24601514637470245, - -0.06743049621582031, - -0.31681814789772034, - -0.4083525836467743, - 0.13787397742271423, - -0.30240774154663086, - -0.42868757247924805, - -0.13032883405685425, - 0.13760055601596832, - 0.33177149295806885, - -0.2348630130290985, - 0.31368833780288696, - 0.2298021763563156, - -0.24536295235157013, - -0.3245990574359894, - -0.3302265703678131, - 0.07708606123924255, - 0.2903745472431183, - 0.874649703502655, - -0.0920020192861557, - -0.05545302480459213, - 0.035961199551820755, - 0.08331318199634552, - -0.36245790123939514, - 0.18016792833805084, - 0.12763799726963043, - -0.13697591423988342, - -0.4677819609642029, - 0.2779429256916046, - 0.15159916877746582, - -0.31069982051849365, - -0.01924152672290802, - -0.009670075960457325, - -0.3061944842338562, - 0.19513867795467377, - -0.27031609416007996, - -0.07804754376411438, - 0.41443678736686707, - -0.09974159300327301, - 0.03737006336450577, - -0.2673841118812561, - -0.26906025409698486, - 0.15568692982196808, - 0.33988505601882935, - 0.024549271911382675, - -0.3064970076084137, - -0.24274270236492157, - -0.5429519414901733, - 0.27536195516586304, - -0.32771047949790955, - -0.09318261593580246, - 0.2167423665523529, - 0.1457623392343521, - -0.1423267126083374, - 0.15250545740127563, - -0.01623339019715786, - -0.0032391436398029327, - -0.19003593921661377, - 0.32480764389038086, - 0.4902690351009369, - -0.16600196063518524, - 0.42654579877853394, - 0.019208291545510292, - 0.09474597871303558, - 0.14433564245700836, - -0.17818982899188995, - 0.16263402998447418, - -0.4094008803367615 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_048.json b/src/benchmark/output/results/results_graph_048.json deleted file mode 100644 index e62129b..0000000 --- a/src/benchmark/output/results/results_graph_048.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 68-year-old female who presented with cough and headache in May 2024. She was diagnosed with lung adenocarcinoma, which had metastasized to the brain, mediastinal lymph nodes, and other parts of her body.\n\n**Timeline of Diagnoses:**\n\n1. **May 2024:** The patient presented with cough and headache, leading to a biopsy of the right supraclavicular lymph node (N2). The biopsy confirmed lung adenocarcinoma.\n2. **May 2024:** A diagnosis of advanced lung adenocarcinoma was made, with multiple brain metastases (N3).\n3. **May 2024:** Initial imaging revealed multiple brain metastases, pulmonary lesions, and mediastinal lymphadenopathy.\n\n**Timeline of Treatments:**\n\n1. **May 2024:** The patient underwent whole-brain radiotherapy.\n2. **June 2024:** Next-generation sequencing (NGS) detected a ROS1 fusion and TP53 mutations. The patient started entrectinib therapy.\n3. **July 2024:** The patient experienced significant improvements in headache and insomnia symptoms, indicating a partial response to entrectinib treatment.\n\n**Timeline of Outcomes:**\n\n1. **July 2024:** Imaging showed a reduction in lung nodule size, mediastinal lymph nodes, and intracranial metastatic lesion size, indicating a partial response to entrectinib.\n2. **August 2024:** The patient experienced grade 2 blurred vision and oral mucositis.\n\n**Current Status:**\nThe patient's lung and brain lesions have consistently remained in a state of partial response since starting entrectinib therapy. However, the patient has experienced new symptoms, including blurred vision and oral mucositis, which may indicate a need for further treatment adjustments or additional therapies.\n\nThis clinical case report highlights the importance of personalized medicine approaches, such as targeted therapy with entrectinib, in managing advanced lung cancer with brain metastases.", - "bertscore": { - "precision": [ - 0.6425099968910217 - ], - "recall": [ - 0.6081539392471313 - ], - "f1": [ - 0.6248600482940674 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 8, - "edge_count": 7, - "avg_in_degree": 0.875, - "density": 0.125 - }, - "trajectory_embedding": [ - 0.14966541528701782, - 0.2221803069114685, - -0.19240516424179077, - 0.08077575266361237, - -0.02466701529920101, - 0.20474261045455933, - -0.0013346318155527115, - 0.23096227645874023, - 0.5076491236686707, - -0.410561740398407, - -0.19279606640338898, - 0.06629909574985504, - -0.6102768182754517, - -0.13243712484836578, - -0.3075253367424011, - 0.08040007203817368, - -0.1899433434009552, - 0.2449004352092743, - -0.09295471012592316, - -0.3203767240047455, - -0.37075814604759216, - 0.19448061287403107, - -0.4349818825721741, - -0.041269220411777496, - 0.21338310837745667, - 0.026771236211061478, - 0.3829358220100403, - 0.5876777172088623, - 0.21540428698062897, - 0.31802278757095337, - 0.10701864212751389, - -0.07597276568412781, - 0.080228790640831, - 0.026402857154607773, - -0.2959792912006378, - 0.3052590489387512, - 0.24379383027553558, - 0.23812590539455414, - -0.15856392681598663, - 0.04393874853849411, - -0.19312871992588043, - 0.18494360148906708, - 0.8416618704795837, - 0.2957839369773865, - 0.4321128726005554, - -0.7661833167076111, - -0.059204570949077606, - 0.40680021047592163, - -0.5490126013755798, - -0.1329321712255478, - 0.16410110890865326, - 0.6877588033676147, - 0.7257632613182068, - -0.39265066385269165, - 0.4182553291320801, - -0.327140748500824, - -0.2638970613479614, - -0.20179536938667297, - -0.1879032552242279, - 0.11053405702114105, - -0.00790945440530777, - -0.15319649875164032, - 0.35262438654899597, - -0.1678994596004486, - -0.14073026180267334, - -0.19237345457077026, - -0.2559381425380707, - -0.01022861897945404, - -0.01022962387651205, - -0.30871886014938354, - -0.12903502583503723, - -0.3100150227546692, - -0.03286907076835632, - 0.047581400722265244, - 0.12958477437496185, - -0.13006862998008728, - 0.4655739367008209, - -2.650078386068344e-05, - 0.1600201427936554, - 0.2462025284767151, - 0.07535600662231445, - -0.03262091428041458, - -0.14214198291301727, - 0.2881300449371338, - -0.39257240295410156, - 0.033486198633909225, - -0.06062737852334976, - -0.3609837293624878, - -0.4934014678001404, - 0.18431469798088074, - 0.13876578211784363, - -0.4963354468345642, - -0.007755663245916367, - -0.3198193311691284, - 0.05727698653936386, - 0.1270906925201416, - 0.42905372381210327, - 0.2753284275531769, - 1.0231908559799194, - 0.01168445311486721, - 0.17147968709468842, - 0.00883689895272255, - 0.3151686489582062, - -0.09211920201778412, - 0.3520906865596771, - -0.05493555963039398, - 0.16101008653640747, - -0.5193175077438354, - 0.40484780073165894, - 0.5066609382629395, - 0.023486629128456116, - -0.1306096613407135, - -0.029842006042599678, - -0.47159960865974426, - 0.1999700367450714, - 0.00868641585111618, - -0.004242550581693649, - 0.21268533170223236, - 0.22996659576892853, - -0.39017513394355774, - -0.21297958493232727, - -0.07519520819187164, - 0.3500320613384247, - 0.09663345664739609, - -0.6577458381652832, - -0.09034504741430283, - -0.14407029747962952, - 0.013760283589363098, - -0.0762048214673996, - 0.11406022310256958, - -0.4410538971424103, - -0.16260935366153717, - 0.006210539489984512, - 0.09438003599643707, - -0.17592106759548187, - 0.36640724539756775, - -0.39055371284484863, - -0.04375765100121498, - -1.113560438156128, - 0.28143739700317383, - -0.41744470596313477, - -0.2071913331747055, - -0.049886107444763184, - -0.5039052367210388, - -0.14809955656528473, - -0.09470503032207489, - -0.0655423104763031, - 0.29676926136016846, - -0.10690620541572571, - -0.15369364619255066, - -0.10252248495817184, - -0.12341412901878357, - 0.25864312052726746, - 0.45934349298477173, - 0.1208864375948906, - 0.06827418506145477, - 0.16117902100086212, - 0.32768329977989197, - 0.12742964923381805, - -0.15516196191310883, - 0.12348759174346924, - 0.3954579830169678, - 0.11865823715925217, - 0.023074284195899963, - -0.05963245406746864, - -0.6919969320297241, - -0.0629894807934761, - -0.2279326319694519, - 0.03778563067317009, - 0.015611687675118446, - -0.168528214097023, - 0.15991446375846863, - -0.2959767282009125, - 0.6005589962005615, - 0.1415327936410904, - 0.36508315801620483, - 0.12411679327487946, - 0.17255698144435883, - 0.22601726651191711, - 0.2752682566642761, - 0.11442600190639496, - -0.22074559330940247, - 0.7139566540718079, - 0.14659857749938965, - -0.18170620501041412, - 0.23043982684612274, - 0.30862271785736084, - -0.02431338280439377, - -0.1866346299648285, - -0.06116188317537308, - 0.6012552976608276, - -0.369964063167572, - 0.4033125042915344, - -0.31239941716194153, - -0.07184378057718277, - 0.1109662801027298, - -0.21895462274551392, - -0.09756544232368469, - -0.022591430693864822, - -0.10628204047679901, - 0.24357163906097412, - 0.058583229780197144, - -0.3314272165298462, - 0.060163818299770355, - 0.08720235526561737, - -0.16738876700401306, - 0.07735578715801239, - 0.03268592804670334, - 0.082100510597229, - -0.04631967097520828, - -0.1347777247428894, - 0.39574727416038513, - -0.007662732154130936, - 0.2506340742111206, - 0.09382070600986481, - -0.23156620562076569, - 0.04106605052947998, - -0.03970330208539963, - -0.005714173428714275, - 0.053621917963027954, - -0.015405518934130669, - -0.1627756506204605, - 0.06775444746017456, - 0.020024331286549568, - -0.5150232911109924, - 0.293191522359848, - 0.1893663853406906, - 0.2214912325143814, - 0.04300299286842346, - -0.06880903244018555, - 0.2100725769996643, - -0.4320003092288971, - 0.33475950360298157, - -0.2494293749332428, - -0.1188528761267662, - -0.2381303906440735, - 0.26598674058914185, - -0.2048133909702301, - 0.1102459728717804, - 0.20611214637756348, - 0.0015713870525360107, - -0.18390093743801117, - 0.13734285533428192, - -0.3716282248497009, - -0.10421121120452881, - -0.35344430804252625, - 0.028611907735466957, - 0.35775089263916016, - 0.1252744197845459, - 0.26168376207351685, - 0.041001878678798676, - -0.12618005275726318, - 0.19299019873142242, - -0.3003186285495758, - -0.44419705867767334, - -0.39347749948501587, - 0.01206064224243164, - -0.06137144938111305, - -0.5047451257705688, - 0.14586102962493896, - -0.11919607222080231, - -0.09853411465883255, - 0.17868906259536743, - -0.3945505917072296, - -0.20919030904769897, - 0.06539192795753479, - 0.029946383088827133, - 0.16423113644123077, - -0.3658868968486786, - 0.15530513226985931, - -0.37145504355430603, - -0.16940844058990479, - -0.11256575584411621, - -0.08767106384038925, - 0.08966058492660522, - 0.08268541842699051, - -0.23496395349502563, - 0.10549978911876678, - 0.1430770307779312, - -0.45286375284194946, - -0.1597563624382019, - 0.28214678168296814, - -0.20383206009864807, - 0.34975260496139526, - 0.024494178593158722, - 0.21344563364982605, - 0.3967927396297455, - 0.025586603209376335, - 0.20134910941123962, - 0.43563312292099, - 0.506211519241333, - 0.019012099131941795, - -0.019461151212453842, - -0.17752185463905334, - 0.013395741581916809, - -0.12360015511512756, - -0.5413646101951599, - 0.4100223779678345, - -0.2578169107437134, - 0.11095612496137619, - 0.039350926876068115, - 0.1751149445772171, - 0.09956784546375275, - -0.2817384600639343, - 0.1285194605588913, - 0.503248393535614, - 0.09906671941280365, - 0.1466788947582245, - 0.10587963461875916, - 0.298248827457428, - 0.35454419255256653, - -0.1312607377767563, - 0.08815548568964005, - 0.14608928561210632, - -0.0773802250623703, - -0.1357904076576233, - -0.12428709119558334, - 0.2663770020008087, - 0.41708460450172424, - -0.20405879616737366, - -0.26876136660575867, - 0.1692616045475006, - -0.204240620136261, - -0.09646928310394287, - -0.284659743309021, - -0.05400034040212631, - 0.1428770273923874, - -0.1144208312034607, - 0.3089889585971832, - -0.13333512842655182, - -0.07272183150053024, - 0.30432629585266113, - -0.3129817247390747, - -0.13805627822875977, - 0.24138188362121582, - 0.09373613446950912, - -0.35262376070022583, - 0.44554904103279114, - -0.19689060747623444, - -0.061121366918087006, - 0.4779767096042633, - -0.23004205524921417, - -0.14514708518981934, - -0.054542578756809235, - 0.20165501534938812, - -0.030881229788064957, - 0.02686215192079544, - -0.09550876915454865, - 0.03694058582186699, - -0.08501984179019928, - 0.43144291639328003, - 0.06662503629922867, - 0.15278424322605133, - 0.5706176161766052, - 0.0002505369484424591, - -0.3425573706626892, - 0.024810979142785072, - -0.11436178535223007, - 0.385290265083313, - -0.26779094338417053, - -0.20542795956134796, - -0.2295825183391571, - 0.24912382662296295, - -0.002022676169872284, - -0.18241669237613678, - 0.04846886545419693, - 0.06800426542758942, - 0.109351247549057, - 0.05069086700677872, - 0.44035500288009644, - 0.19157017767429352, - -0.2200274020433426, - 0.594021737575531, - -0.043430913239717484, - -0.08334025740623474, - 0.19627267122268677, - -0.09714414924383163, - 0.15777507424354553, - -0.01707877218723297, - -0.2894008755683899, - -0.407664030790329, - -4.3550506234169006e-05, - -0.14226371049880981, - -0.22250407934188843, - -0.00654911482706666, - -0.20683586597442627, - -0.010101859457790852, - -0.18304188549518585, - 0.1976441740989685, - -0.010327748022973537, - 0.1379888355731964, - 0.09076844155788422, - 0.4483475685119629, - -0.036712050437927246, - -0.22585119307041168, - 0.13708139955997467, - -0.07501131296157837, - 0.0924864336848259, - -0.370386004447937, - 0.10438291728496552, - -0.13176597654819489, - 0.4846189022064209, - -0.06380312144756317, - 0.11329922825098038, - 0.0026508159935474396, - 0.03457438573241234, - -0.04822884500026703, - -0.35917261242866516, - 0.026810241863131523, - -0.02438564971089363, - 0.09568949788808823, - -0.029696432873606682, - 0.19559037685394287, - -0.13150209188461304, - -0.19173374772071838, - -0.07646674662828445, - 0.0045642186887562275, - 0.09102612733840942, - -0.10593002289533615, - -0.07891631871461868, - 0.30214744806289673, - 0.20381468534469604, - 0.4647851288318634, - -0.16512057185173035, - 0.18576651811599731, - 0.026329604908823967, - -0.2904147803783417, - -0.08493931591510773, - -0.019690237939357758, - -0.2850853204727173, - -0.11248733103275299, - 0.1711881309747696, - 0.26951056718826294, - -0.05718488618731499, - -0.05659814924001694, - 0.13644389808177948, - 0.19095468521118164, - -0.29542630910873413, - -0.1384412944316864, - 0.41569817066192627, - 0.06373850256204605, - 0.2924818992614746, - -0.007768442388623953, - -0.5678085088729858, - -0.35601022839546204, - -0.0842316746711731, - -0.4524388909339905, - 0.06464432924985886, - 0.15538640320301056, - -0.021561825647950172, - -0.11072149872779846, - 0.1354161500930786, - -0.014118971303105354, - 0.043292317539453506, - 0.19208016991615295, - -0.1139904037117958, - 0.1905052363872528, - 0.04501256346702576, - -0.31513941287994385, - 0.03016841970384121, - -0.24742701649665833, - -0.345145046710968, - -0.23504333198070526, - 0.3023112714290619, - 0.21320348978042603, - -0.33193373680114746, - 0.1133820042014122, - 0.19751062989234924, - -0.08840218931436539, - -0.32704833149909973, - -0.013786576688289642, - -0.25966235995292664, - 0.5695237517356873, - 0.0567924901843071, - -0.18429242074489594, - 0.1445784866809845, - -0.11065153777599335, - -0.015289515256881714, - 0.2557915151119232, - 0.1430688500404358, - 0.39630138874053955, - 0.19235341250896454, - 0.05142012983560562, - 0.5619776844978333, - 0.10736338049173355, - 0.11684907972812653, - 0.3790512979030609, - -0.039779115468263626, - 0.055291444063186646, - -0.28229016065597534, - -0.21135340631008148, - 0.3470136225223541, - -0.4683031141757965, - -0.005368540063500404, - 0.0926886647939682, - 0.30812782049179077, - -0.4597792327404022, - -0.4176681339740753, - -0.024655140936374664, - -0.017000507563352585, - -0.20942449569702148, - -0.20450031757354736, - -0.13103391230106354, - -0.13029994070529938, - -0.3240031599998474, - -0.012553970329463482, - 0.32128679752349854, - 0.31167441606521606, - 0.21355314552783966, - 0.21402513980865479, - -0.28694090247154236, - -0.36128032207489014, - 0.2381001114845276, - 0.3938139081001282, - 0.055453334003686905, - -0.016684412956237793, - -0.10000140964984894, - 0.32438939809799194, - 0.4642491936683655, - -0.012610716745257378, - 0.013737127184867859, - 0.012792088091373444, - 0.13102605938911438, - 0.12909531593322754, - 0.17196452617645264, - -0.07374931126832962, - 0.17042674124240875, - -0.37482234835624695, - 0.1920088827610016, - -0.20639921724796295, - -0.20803508162498474, - 0.21300765872001648, - -0.16843223571777344, - -0.4143609404563904, - -0.17532691359519958, - 0.1929808259010315, - -0.007040489464998245, - -0.12906740605831146, - 0.10519835352897644, - 0.32449790835380554, - -0.10926434397697449, - -0.17264600098133087, - 0.11232449114322662, - -0.5689476132392883, - -0.4172149896621704, - 0.1307932734489441, - -0.1958656907081604, - -0.026341043412685394, - 0.023414790630340576, - 0.3475375771522522, - 0.5672762393951416, - 0.18663430213928223, - -0.18513363599777222, - 0.10585611313581467, - 0.32829996943473816, - 0.2961902320384979, - -0.2198614925146103, - -10.638339042663574, - -0.0739673599600792, - -0.3041830062866211, - 0.4259847104549408, - -0.10994547605514526, - 0.16257116198539734, - -0.027415189892053604, - 0.0534093864262104, - -0.07739919424057007, - 0.14332978427410126, - -0.19419726729393005, - -0.117185078561306, - 0.3646639585494995, - 0.21652483940124512, - 0.08345313370227814, - 0.20746874809265137, - -0.36171582341194153, - 0.28390833735466003, - 0.08692587167024612, - 0.11962375044822693, - 0.20049208402633667, - 0.2956159710884094, - -0.3215198516845703, - 0.04845777526497841, - -0.0018270835280418396, - -0.2882210910320282, - -0.23891784250736237, - 0.6405126452445984, - 0.2456986904144287, - -0.41783785820007324, - 0.05034326761960983, - 0.06034671142697334, - -0.19491896033287048, - 0.026775969192385674, - -0.051451586186885834, - -0.22969479858875275, - -0.1533937007188797, - 0.16796258091926575, - 0.16341368854045868, - -0.2718676030635834, - 0.09145835041999817, - -0.02376924455165863, - 0.2650795876979828, - 0.20736318826675415, - -0.20817722380161285, - -0.5138792991638184, - -0.08464653789997101, - -1.5049083232879639, - 0.16791746020317078, - 0.2245664745569229, - 0.5308889150619507, - 0.0734504908323288, - 0.1364365518093109, - 0.28174835443496704, - -0.43945789337158203, - -0.024213140830397606, - -0.28019118309020996, - -0.00847858376801014, - 0.28887051343917847, - -0.035099972039461136, - -0.022902648895978928, - -0.08247129619121552, - 0.6465133428573608, - -0.14090994000434875, - -0.32290542125701904, - 0.17023837566375732, - 0.0067533645778894424, - -0.0832960456609726, - -0.22810254991054535, - -0.6376392245292664, - -0.5995692610740662, - -0.08181829005479813, - -0.029628843069076538, - -0.06445953249931335, - 0.37535983324050903, - -0.03062507137656212, - -0.3205689489841461, - 0.2184622585773468, - -0.07381074130535126, - 0.32256031036376953, - 0.3817598819732666, - -0.12714900076389313, - 0.13476376235485077, - -0.26167482137680054, - -0.07668367773294449, - -0.1318744271993637, - 0.15226471424102783, - 0.4663717746734619, - -0.10950806736946106, - -0.11556690186262131, - 0.024246307089924812, - 0.45822155475616455, - 0.03728944808244705, - -0.0973939374089241, - -0.4063909649848938, - -0.034082405269145966, - 0.13942012190818787, - 0.02964545413851738, - -0.03073517233133316, - -0.04527437314391136, - -0.12643451988697052, - -0.05883917212486267, - -0.12613961100578308, - -0.5989838242530823, - -0.6215231418609619, - 0.34288308024406433, - 0.16070376336574554, - 0.08287262916564941, - -0.015481297858059406, - -0.1288774162530899, - -0.10205477476119995, - 0.060824524611234665, - 0.3325900733470917, - 0.5101323127746582, - 0.1698959320783615, - -0.0647248774766922, - 0.03736015781760216, - -0.19609101116657257, - -0.17227181792259216, - -0.04472753405570984, - 0.3804851472377777, - -0.02569371648132801, - 0.28930431604385376, - 0.660843014717102, - -0.014928244054317474, - -0.14437253773212433, - 1.0558335781097412, - -0.41141843795776367, - 0.20400133728981018, - -0.031535230576992035, - 0.09716594964265823, - -0.13566482067108154, - -0.3750981390476227, - 0.13285744190216064, - 0.42504554986953735, - -0.4485510587692261, - 0.8858206272125244, - 0.374646931886673, - -0.38048213720321655, - -0.10933957993984222, - -0.31743675470352173, - 0.4393463134765625, - 0.19627241790294647, - 0.07276028394699097, - -0.14247649908065796, - -0.2841607928276062, - -0.39769619703292847, - 0.09268984943628311, - -0.2921658754348755, - -0.23729048669338226, - -0.296286404132843, - 0.06872104108333588, - 0.16713783144950867, - -0.11236144602298737, - 0.24047315120697021, - 0.19762103259563446, - -0.10464349389076233, - -0.1395609974861145, - -0.378463476896286, - -0.23470954596996307, - -0.057504162192344666, - 0.8576208353042603, - 0.06534650921821594, - -0.06479459255933762, - -0.09595497697591782, - 0.17840203642845154, - -0.09516694396734238, - 0.15356625616550446, - 0.11358857899904251, - 0.15398520231246948, - -0.4165397584438324, - 0.2905920445919037, - 0.27694785594940186, - -0.22059354186058044, - -0.07014444470405579, - -0.14063358306884766, - -0.10354846715927124, - 0.13549460470676422, - -0.11148326098918915, - 0.21553994715213776, - 0.37739983201026917, - -0.04671525955200195, - 0.024623950943350792, - -0.16066741943359375, - 0.0537964329123497, - 0.15883591771125793, - 0.35720112919807434, - 0.0945616215467453, - -0.2452256679534912, - -0.34032902121543884, - -0.48537296056747437, - 0.31968408823013306, - -0.44905394315719604, - -0.053177669644355774, - 0.1114051416516304, - 0.2789613902568817, - -0.18967163562774658, - 0.06674695014953613, - 0.03033033013343811, - -0.10336960107088089, - -0.20916886627674103, - 0.2114836573600769, - 0.47148627042770386, - -0.26277849078178406, - 0.25276702642440796, - -0.22746258974075317, - 0.25335800647735596, - 0.1808404177427292, - -0.25227323174476624, - 0.17246077954769135, - -0.4024060070514679 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_049.json b/src/benchmark/output/results/results_graph_049.json deleted file mode 100644 index 9b11714..0000000 --- a/src/benchmark/output/results/results_graph_049.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 66-year-old man with a history of smoking 20 cigarettes per day until the age of 50, after which he abstained for the past 16 years. He has cerebral infarction and takes 25 mg of clopidogrel.\n\n**Timeline of Diagnoses:**\n\n1. **Step 1:** The patient's history and routine checkup revealed a 3 cm mass in the left middle lung field during chest radiography.\n2. **Step 2:** Further investigation with CT imaging and blood tests was conducted, which showed a ground-glass nodule with a maximum diameter of 4.6 cm and a solid component measuring 4 cm located in S9/10 of the left lower lobe.\n3. **Step 3:** Pulmonary function tests indicated normal respiratory capacity, but follow-up CT imaging revealed a part-solid nodule measuring 1.6 \u00d7 1.4 cm with a 1.5 cm solid component in the same location.\n4. **Step 4:** PET-CT and MRI of the head were conducted to evaluate the lung nodule and rule out metastasis, showing mild accumulation in the mass with an SUVmax of 2.04.\n5. **Step 5:** Bronchoscopy and biopsy were performed to determine the nature of the lung nodule, leading to a suspected diagnosis of stage IB primary lung cancer.\n\n**Timeline of Treatments:**\n\n1. **Step 6:** Surgical lobectomy was planned following the surgical biopsy.\n\n**Outcomes:**\n\nThe patient underwent bronchoscopy and biopsy, which led to a suspected diagnosis of stage IB primary lung cancer. The patient is scheduled for surgical lobectomy. Further follow-up will be necessary to monitor the patient's condition and assess the effectiveness of treatment.\n\nNote: This narrative is based on the provided data and may not reflect the actual clinical case report or outcomes.", - "bertscore": { - "precision": [ - 0.659263551235199 - ], - "recall": [ - 0.6760050058364868 - ], - "f1": [ - 0.6675293445587158 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 6, - "edge_count": 5, - "avg_in_degree": 0.8333333333333334, - "density": 0.16666666666666666 - }, - "trajectory_embedding": [ - 0.2567644715309143, - 0.054647695273160934, - -0.025133753195405006, - 0.027657220140099525, - 0.0567028634250164, - -0.047446608543395996, - 0.08157778531312943, - 0.12755827605724335, - 0.3595859110355377, - -0.3565047085285187, - -0.2112758755683899, - 0.1016974225640297, - -0.5609835982322693, - -0.06822846084833145, - -0.41357529163360596, - 0.09834272414445877, - 0.2301262617111206, - 0.30650249123573303, - 0.23083041608333588, - -0.25639793276786804, - -0.4508514106273651, - 0.10909075289964676, - -0.37323257327079773, - -0.17521654069423676, - 0.26630499958992004, - -0.06100469455122948, - 0.23391740024089813, - 0.3831678628921509, - 0.3318760097026825, - 0.3661697804927826, - 0.18243010342121124, - 0.10102397203445435, - 0.08750001341104507, - 0.09491461515426636, - -0.15478600561618805, - 0.24837768077850342, - 0.29393264651298523, - 0.4305003881454468, - 0.012244741432368755, - 0.18666161596775055, - -0.07575502246618271, - -0.09277432411909103, - 0.7130119800567627, - 0.2930741012096405, - 0.6534185409545898, - -0.628726065158844, - -0.014942511916160583, - 0.40638241171836853, - -0.5615766048431396, - -0.3384920358657837, - 0.15534049272537231, - 0.7424958348274231, - 0.5820599794387817, - -0.13016420602798462, - 0.4049873352050781, - -0.10209625959396362, - -0.3915539085865021, - -0.21328912675380707, - -0.18580351769924164, - 0.061684105545282364, - -0.034710343927145004, - -0.11146549135446548, - 0.04748772457242012, - 0.015314791351556778, - -0.32906869053840637, - -0.20495788753032684, - -0.12581847608089447, - 0.08674752712249756, - -0.03597379848361015, - -0.4479992687702179, - -0.2631644904613495, - -0.1706678718328476, - -0.16941969096660614, - 0.13451983034610748, - 0.14708197116851807, - -0.16877788305282593, - 0.39201653003692627, - -0.06782414764165878, - -0.011311913840472698, - 0.20590484142303467, - 0.044855888932943344, - -0.10129227489233017, - 0.17574341595172882, - 0.21457819640636444, - -0.41236400604248047, - 0.16965098679065704, - 0.12907831370830536, - -0.24311614036560059, - -0.19260239601135254, - 0.09645482897758484, - 0.3634212017059326, - -0.17252831161022186, - -0.08624999970197678, - -0.18047039210796356, - 0.10848585516214371, - -0.0634133368730545, - 0.13066242635250092, - 0.5581034421920776, - 0.9562094211578369, - -0.01895514875650406, - 0.22670423984527588, - 0.21381665766239166, - 0.2516179382801056, - 0.014214918948709965, - 0.6349357962608337, - -0.033967021852731705, - 0.07173444330692291, - -0.5029047727584839, - -0.07316675782203674, - 0.3638746738433838, - -0.014512906782329082, - -0.1694277971982956, - 0.08649471402168274, - -0.23585927486419678, - 0.04690052941441536, - 0.16347908973693848, - -0.20878833532333374, - 0.18634293973445892, - 0.12257172912359238, - -0.48823681473731995, - -0.09186337143182755, - -0.028479771688580513, - 0.3324275314807892, - 0.5146360993385315, - -0.35747480392456055, - 0.026537781581282616, - -0.16074584424495697, - 0.08699318766593933, - 0.08551987260580063, - 0.01365471351891756, - -0.49736177921295166, - -0.15070444345474243, - 0.012297066859900951, - 0.3595079481601715, - -0.1623847931623459, - 0.1916723996400833, - -0.4807084798812866, - -0.03362792357802391, - -1.1671077013015747, - 0.2633489668369293, - -0.393343061208725, - 0.019191227853298187, - 0.1794801503419876, - -0.3998546302318573, - -0.19515573978424072, - -0.2935968339443207, - -0.3726128339767456, - 0.1387694627046585, - 0.0897676944732666, - -0.12214385718107224, - 0.012520882301032543, - 0.1258244514465332, - 0.20884542167186737, - 0.20610950887203217, - 0.19021809101104736, - 0.24265961349010468, - 0.16213645040988922, - 0.12403691560029984, - 0.11398787051439285, - -0.06022300198674202, - -0.006209204439073801, - 0.2989065647125244, - 0.020074477419257164, - -0.1387871354818344, - 0.09396535158157349, - -0.8062517046928406, - 0.20646345615386963, - -0.32049885392189026, - 0.22402840852737427, - -0.01954949088394642, - -0.20140105485916138, - 0.11741650104522705, - -0.2536066472530365, - 0.6072469353675842, - 0.12195799499750137, - 0.3998850882053375, - -0.10260409116744995, - -0.19156809151172638, - 0.04294634982943535, - -0.0018441478023305535, - 0.014206391759216785, - 0.020715733990073204, - 0.7414531707763672, - 0.11567020416259766, - -0.2832781970500946, - 0.25940418243408203, - 0.3683091700077057, - -0.18443144857883453, - 0.019958844408392906, - -0.13507908582687378, - 0.4497736394405365, - -0.29400524497032166, - 0.3067609369754791, - -0.5533306002616882, - 0.024636728689074516, - 0.03246603161096573, - -0.22620779275894165, - -0.2284907102584839, - 0.18188397586345673, - -0.1465589851140976, - 0.2109435796737671, - 0.06699205189943314, - -0.1407681107521057, - 0.18527407944202423, - 0.0024786144495010376, - -0.16265909373760223, - 0.397862046957016, - 0.12031110376119614, - 0.0013976246118545532, - -0.10048040002584457, - -0.2039431780576706, - 0.051571886986494064, - -0.16632777452468872, - 0.1711951494216919, - 0.04296974837779999, - -0.20839251577854156, - 0.3698556125164032, - -0.022856688126921654, - -0.24172669649124146, - 0.2169945240020752, - -0.21191225945949554, - -0.10892332345247269, - 0.19794750213623047, - -0.0921207070350647, - -0.3723834455013275, - 0.09389778226613998, - 0.025864146649837494, - 0.24160484969615936, - 0.1264984905719757, - -0.11732038110494614, - 0.07025247812271118, - -0.2659688889980316, - 0.28220027685165405, - 0.024390168488025665, - -0.19264738261699677, - -0.42175212502479553, - 0.14417444169521332, - -0.23507827520370483, - -0.23875193297863007, - 0.3745476007461548, - -0.16679322719573975, - -0.16459442675113678, - 0.1405930072069168, - -0.25853627920150757, - -0.17076946794986725, - -0.28174009919166565, - 0.0788956806063652, - 0.4072481691837311, - 0.09300778061151505, - 0.41231289505958557, - 0.14781196415424347, - -0.09328743815422058, - 0.18840138614177704, - -0.3491116762161255, - -0.16819220781326294, - -0.35879895091056824, - -0.15572570264339447, - 0.014808326959609985, - -0.4225861132144928, - -0.0033341199159622192, - 0.25102004408836365, - -0.12959618866443634, - -0.023023219779133797, - -0.2553872764110565, - -0.06757350265979767, - 0.04816959425806999, - -0.061303988099098206, - 0.1592148095369339, - 0.0009159992332570255, - 0.2541206181049347, - -0.32678619027137756, - -0.4095669090747833, - -0.0890570655465126, - -0.012893512845039368, - 0.18513844907283783, - 0.08613903075456619, - -0.11660867184400558, - 0.04846123978495598, - 0.18121004104614258, - -0.38220855593681335, - -0.3468528091907501, - 0.19498582184314728, - -0.25394976139068604, - 0.03253226727247238, - -0.25787946581840515, - 0.18279342353343964, - 0.35620227456092834, - -0.1328677535057068, - 0.16482537984848022, - 0.3580454885959625, - 0.5171672701835632, - 0.14697910845279694, - -0.154265359044075, - 0.061135198920965195, - 0.010888803750276566, - -0.045767202973365784, - -0.425426721572876, - 0.20599491894245148, - 0.13548362255096436, - -0.06953422725200653, - 0.043080881237983704, - 0.2773016691207886, - 0.18362011015415192, - -0.46928250789642334, - -0.20541580021381378, - 0.7687499523162842, - 0.036430057138204575, - -0.05291818082332611, - 0.05840182676911354, - 0.5254464149475098, - 0.6934916973114014, - -0.02786218374967575, - -0.24638254940509796, - 0.039297234266996384, - -0.16627417504787445, - -0.1860509067773819, - 0.04168695583939552, - -0.08493759483098984, - 0.3096385896205902, - -0.025141268968582153, - 0.0032154687214642763, - 0.27051040530204773, - -0.20187075436115265, - -0.10908608883619308, - 0.014324337244033813, - -0.024342982098460197, - -0.07883320748806, - -0.3017563819885254, - 0.39838096499443054, - -0.049979209899902344, - -0.09823311120271683, - 0.42287859320640564, - -0.15677838027477264, - -0.3211692273616791, - 0.27475103735923767, - -0.201103076338768, - -0.6143441796302795, - 0.26540499925613403, - -0.07149770110845566, - -0.027679426595568657, - 0.3769514560699463, - 0.04318079352378845, - -0.04428985342383385, - -0.29216524958610535, - 0.3416769504547119, - 0.11279866099357605, - -0.07905539870262146, - -0.14408640563488007, - 0.05060046911239624, - 0.21931642293930054, - 0.619964599609375, - 0.13614660501480103, - 0.08426513522863388, - 0.384540319442749, - -0.12463974952697754, - -0.341552734375, - -0.0968519076704979, - 0.15099714696407318, - 0.19977520406246185, - -0.2067735344171524, - -0.1936662346124649, - -0.23055405914783478, - 0.04354266822338104, - 0.1083572581410408, - -0.34287071228027344, - -0.010666747577488422, - 0.12098294496536255, - -0.10312426090240479, - -0.07402093708515167, - 0.17969083786010742, - 0.3437140882015228, - 0.02284686453640461, - 0.4255564212799072, - 0.03445722907781601, - 0.001605341793037951, - 0.2862929403781891, - -0.26226311922073364, - 0.3411618769168854, - -0.22642694413661957, - -0.3738151490688324, - -0.3267021179199219, - -0.07017236202955246, - -0.2934410870075226, - -0.21541263163089752, - -0.0178332831710577, - -0.11434977501630783, - -0.016070468351244926, - -0.26695945858955383, - 0.28414276242256165, - 0.1044958233833313, - 0.267194539308548, - 0.11671946197748184, - 0.36977124214172363, - 0.04042429104447365, - -0.4122868776321411, - 0.15105390548706055, - -0.0566176176071167, - 0.09019996970891953, - -0.08880605548620224, - -0.08643335103988647, - -0.29347696900367737, - 0.3613191545009613, - 0.11735422164201736, - -0.012280023656785488, - 0.12057303637266159, - -0.09611748903989792, - -0.23868714272975922, - -0.44654905796051025, - -0.12312587350606918, - -0.19569122791290283, - -0.028962934389710426, - -0.11758724600076675, - 0.15953195095062256, - -0.17363320291042328, - -0.2520342767238617, - -0.00026544928550720215, - 0.3615114688873291, - 0.23229365050792694, - -0.06938732415437698, - 0.09161273390054703, - 0.23469217121601105, - 0.009865929372608662, - 0.2783743441104889, - -0.06156933307647705, - 0.06356468796730042, - 0.016839690506458282, - -0.3949708044528961, - -0.15408755838871002, - 0.12373312562704086, - -0.19214241206645966, - -0.06290382891893387, - 0.2230714112520218, - 0.2244025468826294, - 0.08108693361282349, - -0.02778303623199463, - 0.010971516370773315, - 0.4503476321697235, - -0.4929099977016449, - -0.07192618399858475, - 0.30564892292022705, - 0.18236331641674042, - 0.510549008846283, - -0.006905071437358856, - -0.3393498659133911, - -0.062112484127283096, - -0.055349837988615036, - -0.4637646973133087, - 0.13325883448123932, - 0.1284475326538086, - -0.20420551300048828, - -0.12513527274131775, - 0.18135331571102142, - 0.09901738911867142, - 0.01033159252256155, - 0.07760990411043167, - -0.0384158194065094, - 0.21602775156497955, - -0.12376264482736588, - -0.39367201924324036, - -0.07645947486162186, - -0.17857308685779572, - -0.17772233486175537, - -0.2982494533061981, - 0.4295850992202759, - 0.34239235520362854, - -0.19945590198040009, - 0.1160731315612793, - 0.12300371378660202, - -0.2330305427312851, - -0.20542879402637482, - 0.018699610605835915, - -0.16400735080242157, - 0.46508729457855225, - -0.022740961983799934, - -0.2985071837902069, - 0.17199455201625824, - -0.455716609954834, - 0.2083752155303955, - 0.1953922063112259, - 0.19823966920375824, - 0.40497246384620667, - 0.15362046658992767, - 0.22892439365386963, - 0.35686060786247253, - 0.020942693576216698, - -0.07616151124238968, - 0.2713387906551361, - 0.010906979441642761, - 0.056140199303627014, - -0.08816027641296387, - -0.17018313705921173, - 0.31824979186058044, - -0.29802653193473816, - 0.11504767090082169, - 0.23575150966644287, - 0.29233282804489136, - -0.43991947174072266, - -0.12221308797597885, - -0.06714961677789688, - -0.16299580037593842, - -0.1522783637046814, - -0.42884087562561035, - -0.15537361800670624, - 0.12757658958435059, - -0.217074915766716, - -0.1924450844526291, - 0.4016702175140381, - 0.28122270107269287, - 0.15393279492855072, - 0.11671632528305054, - -0.3184525668621063, - -0.5127158761024475, - 0.11280230432748795, - 0.28736191987991333, - 0.08120352029800415, - 0.07242023944854736, - -0.10548578947782516, - 0.2469063550233841, - 0.582009494304657, - -0.029357826337218285, - 0.02673153020441532, - 0.0655505433678627, - 0.0030315157491713762, - -0.020229792222380638, - -0.03533201292157173, - -0.1612560898065567, - 0.12458962202072144, - -0.4030732214450836, - 0.2934851050376892, - -0.33430686593055725, - -0.2764648497104645, - 0.17947256565093994, - -0.11697950214147568, - -0.36205124855041504, - -0.17168311774730682, - 0.37642404437065125, - -0.27187395095825195, - -0.02921135164797306, - 0.12633703649044037, - 0.498738557100296, - 0.1609475463628769, - -0.2681986093521118, - -0.026569461449980736, - -0.47176268696784973, - -0.12062794715166092, - 0.11078733205795288, - -0.09782484173774719, - 0.0023211936932057142, - -0.169968843460083, - 0.3880041837692261, - 0.3578130900859833, - 0.11763940006494522, - -0.4813665449619293, - -0.10347896814346313, - 0.24357981979846954, - 0.3724425733089447, - -0.14462046325206757, - -10.616826057434082, - 0.013704407960176468, - -0.18380360305309296, - 0.5865207314491272, - -0.152750164270401, - 0.07400861382484436, - 0.1438300460577011, - -0.12722571194171906, - 0.16061021387577057, - 0.24059909582138062, - -0.17251212894916534, - 0.11196237802505493, - 0.4147752821445465, - 0.23892711102962494, - -0.06638500839471817, - -0.2527748644351959, - -0.30901190638542175, - 0.11179125308990479, - -0.09630758315324783, - 0.3143559396266937, - 0.26752933859825134, - 0.42435094714164734, - -0.3073941469192505, - 0.3584843575954437, - 0.2610261142253876, - -0.2650402784347534, - -0.1594763845205307, - 0.6285990476608276, - 0.08410970121622086, - -0.3022899329662323, - 0.36601200699806213, - 0.2684483826160431, - -0.2657216787338257, - 0.07662360370159149, - 0.006730282213538885, - -0.14872890710830688, - -0.02853289805352688, - 0.005274981260299683, - 0.11725449562072754, - -0.046378474682569504, - -0.035843219608068466, - -0.2058020383119583, - 0.13137951493263245, - 0.2607768476009369, - -0.0712469145655632, - -0.531154453754425, - -0.23718954622745514, - -1.4782066345214844, - 0.3222294747829437, - 0.3831448554992676, - 0.34081220626831055, - -0.006653102580457926, - 0.28010889887809753, - 0.014179840683937073, - -0.401740700006485, - 0.10215827077627182, - -0.2815476953983307, - 0.08820632845163345, - 0.08024688065052032, - -0.02609177492558956, - 0.20321226119995117, - -0.20275743305683136, - 0.3069598376750946, - -0.2695642411708832, - -0.338731050491333, - 0.08329558372497559, - 0.0186556875705719, - -0.07772798836231232, - -0.22380895912647247, - -0.46594616770744324, - -0.49291571974754333, - 0.018415803089737892, - -0.02680712379515171, - 0.021801531314849854, - 0.7258334755897522, - -0.01567288674414158, - -0.3567058742046356, - 0.20597468316555023, - 0.060889095067977905, - 0.4025122821331024, - 0.06056283041834831, - 0.003497886238619685, - 0.11631568521261215, - -0.13262121379375458, - -0.2576778829097748, - -0.12096837908029556, - 0.07407429069280624, - 0.5627965927124023, - -0.003220031736418605, - 0.07800175994634628, - -0.06158817186951637, - 0.43035635352134705, - -0.07872545719146729, - -0.18353402614593506, - -0.4382437765598297, - 0.17848354578018188, - -0.17031890153884888, - 0.11069171875715256, - 0.010168418288230896, - -0.21929140388965607, - -0.12307421118021011, - -0.13713203370571136, - -0.09890935570001602, - -0.5486672520637512, - -0.21980005502700806, - 0.08008436113595963, - 0.14192621409893036, - 0.2843337953090668, - 0.14715386927127838, - 0.007925912737846375, - -0.0637773722410202, - 0.003764241933822632, - 0.28281792998313904, - 0.4673670828342438, - 0.08164247125387192, - -0.08871052414178848, - -0.14729805290699005, - -0.1027877926826477, - -0.22942261397838593, - 0.16007305681705475, - 0.3888063430786133, - -0.1884269267320633, - 0.28113219141960144, - 0.6444199085235596, - -0.12033288925886154, - -0.2786875069141388, - 0.9409419894218445, - -0.20997263491153717, - 0.46836018562316895, - -0.2564603090286255, - 0.14908039569854736, - -0.10539919137954712, - -0.17819423973560333, - 0.1059143915772438, - 0.35121849179267883, - -0.2444978952407837, - 0.5245700478553772, - 0.038106560707092285, - -0.44227203726768494, - 0.11036250740289688, - -0.3603193759918213, - 0.5390539765357971, - 0.3152288496494293, - 0.2517121732234955, - -0.02332683652639389, - -0.23814786970615387, - -0.30149975419044495, - -0.056807469576597214, - -0.5429525375366211, - -0.3235109746456146, - -0.1181982234120369, - 0.2399153709411621, - 0.18090225756168365, - -0.4014083445072174, - 0.3968798816204071, - 0.1201978325843811, - -0.2105562686920166, - -0.21742452681064606, - -0.607570469379425, - -0.007181110326200724, - 0.16441118717193604, - 0.6403666138648987, - -0.01992282271385193, - 0.11760757118463516, - -0.12061230093240738, - 0.12311587482690811, - -0.08899597078561783, - 0.05671534314751625, - 0.10128848999738693, - -0.03540448099374771, - -0.5646531581878662, - 0.13876895606517792, - 0.1328868418931961, - -0.4247245788574219, - -0.18939344584941864, - -0.33714163303375244, - -0.008449741639196873, - -0.011848400346934795, - -0.25716808438301086, - 0.14446556568145752, - 0.3791041076183319, - -0.09448457509279251, - -0.04921277239918709, - -0.2370712012052536, - 0.11256077140569687, - 0.11598029732704163, - 0.11212000995874405, - 0.28194934129714966, - -0.22438853979110718, - -0.4330560863018036, - -0.2993071675300598, - 0.16982102394104004, - -0.05377756431698799, - -0.012679293751716614, - 0.10639557242393494, - 0.15050260722637177, - -0.301895409822464, - -0.007256550248712301, - -0.3482191860675812, - 0.06449958682060242, - -0.24084468185901642, - 0.285435289144516, - 0.26688438653945923, - -0.1868153065443039, - 0.11883104592561722, - -0.07296127080917358, - 0.21374869346618652, - 0.0485217459499836, - -0.2740878462791443, - 0.29664984345436096, - -0.12676501274108887 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_050.json b/src/benchmark/output/results/results_graph_050.json deleted file mode 100644 index ee9df6c..0000000 --- a/src/benchmark/output/results/results_graph_050.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics**\n\nThe patient is a 67-year-old man with a history of 40 pack-years of smoking. He presented to the clinic in February 2022 with chest tightness.\n\n**Initial Diagnosis (Step 1)**\n\nUpon physical examination, left supraclavicular lymphadenopathy was noted, measuring approximately 1 cm in size. Chest CT revealed a 2 cm mass in the posterior basal segment of the left lower lobe, with multiple burrs on the edge and enhancement. Mediastinal lymph nodes were enlarged and fused, surrounding the left main bronchus. Abdominal enhanced CT showed enlargement of the left adrenal gland, considered to be a metastatic lesion.\n\nImaging studies, including whole-body bone imaging and brain-enhanced MRI, did not reveal any obvious abnormalities. Immunohistochemical markers (CK-pan and P40) were positive, suggesting a diagnosis of lung cancer.\n\n**Biopsy and Diagnosis (Step 2)**\n\nOn March 10, 2022, a CT-guided lung puncture biopsy was performed to further characterize the tumor. Pathology suggested poorly differentiated carcinoma. Immunohistochemical markers were CK-pan (+), CK7 (-), TTF-1 (-), P40 (+), BRG-1 (-), and Syn (-). PD-L1 staining revealed a tumor proportion score (TPS) of 8%.\n\n**Diagnosis Confirmation and Treatment (Step 3)**\n\nBased on immunohistochemistry and genetic testing, a diagnosis of SMARCA4-deficient non-small cell lung cancer (SMARCA4-dNSCLC) was made. First-line treatment with tislelizumab combined with fruquintinib was initiated.\n\n**Treatment Outcomes (Step 4)**\n\nFollowing initial treatment, the patient experienced cervical lymph node progression. Subsequent biopsy confirmed the diagnosis, and the patient was treated with local radiotherapy and previous systemic therapy. The patient achieved more than two years of disease control without grade \u22653 adverse events.\n\n**Timeline**\n\n* February 2022: Patient presents to clinic with chest tightness.\n* March 10, 2022: CT-guided lung puncture biopsy is performed.\n* March 2022: Diagnosis of SMARCA4-dNSCLC is confirmed via subsequent biopsy.\n* April 1, 2022: Initial treatment with tislelizumab and fruquintinib begins.\n* April 1, 2022: Patient undergoes local radiotherapy and previous systemic therapy.\n\n**Outcomes**\n\nThe patient achieved more than two years of disease control without grade \u22653 adverse events. The diagnosis of SMARCA4-dNSCLC was confirmed via subsequent biopsy, and the patient responded well to first-line treatment with tislelizumab combined with fruquintinib.", - "bertscore": { - "precision": [ - 0.7477017045021057 - ], - "recall": [ - 0.7287452816963196 - ], - "f1": [ - 0.7381017804145813 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 4, - "edge_count": 3, - "avg_in_degree": 0.75, - "density": 0.25 - }, - "trajectory_embedding": [ - 0.28611698746681213, - 0.13427646458148956, - -0.17884783446788788, - 0.06759999692440033, - -0.12707366049289703, - 0.07035525888204575, - 0.17056792974472046, - -0.0935962051153183, - 0.17258435487747192, - -0.4768597185611725, - -0.167130708694458, - 0.24880175292491913, - -0.5263209342956543, - 0.07364700734615326, - -0.45961248874664307, - 0.04494486376643181, - -0.026198312640190125, - 0.3359876871109009, - 0.012521790340542793, - -0.26034823060035706, - -0.41108110547065735, - 0.037916794419288635, - -0.3372756242752075, - -0.25214606523513794, - 0.0999106913805008, - -0.11487384885549545, - 0.28169575333595276, - 0.5982757210731506, - 0.15346869826316833, - 0.26648271083831787, - 0.17303115129470825, - 0.2140756994485855, - -0.17565792798995972, - 0.08639498054981232, - -0.09855536371469498, - 0.26307201385498047, - 0.2998790144920349, - 0.13723576068878174, - -0.08768844604492188, - 0.011026464402675629, - -0.2002849280834198, - -0.048587024211883545, - 0.878470778465271, - 0.4011160731315613, - 0.5819730162620544, - -0.4260130226612091, - 0.011033251881599426, - 0.4375970959663391, - -0.7640367746353149, - -0.12306598573923111, - 0.15911906957626343, - 0.5300086140632629, - 0.8712754249572754, - -0.1643335223197937, - 0.4470507502555847, - -0.2173643708229065, - -0.4557937979698181, - -0.0844617411494255, - -0.21899664402008057, - 0.0742630586028099, - 0.13631054759025574, - 0.16249915957450867, - -0.09851536899805069, - 0.0505608394742012, - -0.2905880808830261, - -0.21038293838500977, - -0.39228636026382446, - -0.010893747210502625, - 0.06424669921398163, - -0.501523494720459, - -0.3400188982486725, - -0.40115177631378174, - -0.1286676824092865, - 0.24838244915008545, - 0.1508217304944992, - -0.34514880180358887, - 0.29071101546287537, - -0.05093805119395256, - 0.0051512084901332855, - 0.0868554562330246, - 0.3020612895488739, - -0.050956450402736664, - 0.13252362608909607, - 0.21917816996574402, - -0.48753684759140015, - 0.13600105047225952, - 0.14534994959831238, - -0.2028047889471054, - -0.22278347611427307, - 0.27956125140190125, - 0.3308485746383667, - -0.1514054834842682, - 0.05407838895916939, - -0.16169729828834534, - 0.2651010751724243, - -0.037498943507671356, - 0.11191870272159576, - 0.4537842571735382, - 0.8735491633415222, - -0.06848015636205673, - 0.3412664532661438, - 0.12493781745433807, - 0.33396536111831665, - -0.035614121705293655, - 0.4351556897163391, - -0.05037370324134827, - 0.3503718376159668, - -0.33370694518089294, - 0.11448526382446289, - 0.3839879035949707, - -0.07083563506603241, - -0.19810566306114197, - 0.1066712886095047, - -0.3637048602104187, - 0.08103729039430618, - 0.25520825386047363, - -0.2815818786621094, - 0.08018158376216888, - 0.08865801990032196, - -0.4253826141357422, - -0.09739439934492111, - -0.14829817414283752, - 0.5049974322319031, - 0.13626214861869812, - -0.43955790996551514, - -0.0019403360784053802, - -0.10275361686944962, - 0.18361759185791016, - -0.18384690582752228, - 0.11932960152626038, - -0.48526132106781006, - -0.14824563264846802, - 0.15075623989105225, - 0.14106670022010803, - -0.3923092484474182, - 0.3413350582122803, - -0.4033099412918091, - 0.05596005171537399, - -1.1557360887527466, - 0.17026367783546448, - -0.3898908793926239, - -0.0009445361793041229, - 0.1861003190279007, - -0.3648298978805542, - -0.13174337148666382, - -0.1422368586063385, - -0.1551688015460968, - 0.16327136754989624, - 0.10406364500522614, - -0.15309861302375793, - -0.12624764442443848, - -0.02770388498902321, - 0.1016465425491333, - 0.16573543846607208, - 0.14634031057357788, - 0.09266834706068039, - 0.14615139365196228, - 0.2753906846046448, - 0.21327972412109375, - -0.2331511229276657, - -0.08298072218894958, - 0.4351575970649719, - -0.14475589990615845, - -0.20079879462718964, - 0.23498594760894775, - -0.6575887799263, - 0.15307697653770447, - -0.24700656533241272, - 0.35997551679611206, - 0.04937354847788811, - -0.12082144618034363, - 0.12923043966293335, - 0.0557987354695797, - 0.5082664489746094, - 0.26311948895454407, - 0.5054872035980225, - 0.013673227280378342, - 0.009112924337387085, - 0.12733131647109985, - 0.16569937765598297, - 0.00310705229640007, - -0.08176115900278091, - 0.4182768166065216, - 0.2179679125547409, - -0.30778276920318604, - 0.25560349225997925, - 0.4322963058948517, - -0.4572395384311676, - -0.16039693355560303, - -0.12213903665542603, - 0.5717853307723999, - -0.2520174980163574, - 0.3979622721672058, - -0.47662776708602905, - 0.013381663709878922, - -0.018789071589708328, - -0.3408171534538269, - -0.280231237411499, - 0.10877002030611038, - -0.16022472083568573, - 0.07480621337890625, - 0.24456706643104553, - -0.20619921386241913, - 0.29714328050613403, - 0.20191602408885956, - -0.17042505741119385, - 0.26733195781707764, - 0.32364046573638916, - 0.036039434373378754, - -0.19135543704032898, - -0.22775527834892273, - 0.1766640692949295, - 0.10322166979312897, - 0.2048116773366928, - 0.011436711996793747, - -0.26955655217170715, - 0.24534083902835846, - -0.09736577421426773, - -0.2338249385356903, - 0.19743533432483673, - -0.25545522570610046, - -0.15769422054290771, - 0.39490509033203125, - 0.057777270674705505, - -0.3223835527896881, - 0.30582237243652344, - 0.20960485935211182, - 0.1412213295698166, - -0.013808518648147583, - -0.030449647456407547, - 0.08296868205070496, - -0.12145452201366425, - 0.3112379014492035, - -0.06933535635471344, - -0.1435001790523529, - -0.3136235177516937, - 0.15269654989242554, - -0.21046385169029236, - -0.3846070170402527, - 0.3341795802116394, - -0.0763542652130127, - -0.05320972204208374, - 0.061510443687438965, - -0.3148258626461029, - -0.20902186632156372, - -0.13835537433624268, - 0.1127195730805397, - 0.5595144033432007, - 0.010520918294787407, - 0.4197878837585449, - 0.2708355784416199, - -0.12647435069084167, - 0.20740364491939545, - -0.46402645111083984, - -0.2240506112575531, - -0.3230225145816803, - -0.15311935544013977, - -0.20417216420173645, - -0.5147440433502197, - 0.015085883438587189, - 0.07050317525863647, - -0.3042822480201721, - 0.17397169768810272, - -0.26245105266571045, - -0.12953199446201324, - -0.1489570587873459, - 0.03644797205924988, - 0.361921101808548, - -0.14653226733207703, - 0.11346759647130966, - -0.5632423162460327, - -0.4179075360298157, - 0.004305437207221985, - -0.008211316540837288, - 0.1934705674648285, - 0.19282713532447815, - 0.14203518629074097, - 0.25611960887908936, - 0.3151339888572693, - -0.412030965089798, - -0.36540257930755615, - 0.050604447722435, - -0.45540377497673035, - 0.09515400230884552, - -0.37448975443840027, - 0.14557713270187378, - 0.550338864326477, - -0.13654349744319916, - 0.30999845266342163, - 0.4467751085758209, - 0.5205051898956299, - 0.23446506261825562, - -0.11501815915107727, - -0.06679169833660126, - 0.02285410463809967, - 0.028809456154704094, - -0.4496556520462036, - 0.1144946739077568, - -0.23425181210041046, - -0.08715091645717621, - 0.31243640184402466, - 0.3895567059516907, - 0.08900932222604752, - -0.45884788036346436, - -0.21385839581489563, - 0.7885830402374268, - 0.27527695894241333, - -0.18858632445335388, - -0.028043732047080994, - 0.29875603318214417, - 0.7054168581962585, - 0.07107377052307129, - -0.16307532787322998, - 0.03757654130458832, - -0.18278731405735016, - -0.13380441069602966, - -0.04871849715709686, - 0.06552621722221375, - 0.17830991744995117, - 0.0657883882522583, - -0.12852227687835693, - 0.29549968242645264, - -0.1116783544421196, - -0.0679718405008316, - -0.041574180126190186, - 0.012001711875200272, - 0.0022985711693763733, - -0.16856612265110016, - 0.20106177031993866, - -0.20944277942180634, - 0.013970524072647095, - 0.5270072817802429, - -0.056031424552202225, - -0.2767646014690399, - 0.4002992510795593, - 0.03616563230752945, - -0.5012728571891785, - 0.22156104445457458, - -0.2022896409034729, - -0.018658190965652466, - 0.28121212124824524, - -0.1479737013578415, - -0.09649447351694107, - -0.15575730800628662, - -0.14630237221717834, - 0.21232230961322784, - 0.1045440137386322, - -0.14755134284496307, - 0.09750846028327942, - 0.12608152627944946, - 0.6075655221939087, - -0.0491010881960392, - -0.15878045558929443, - 0.36383017897605896, - -0.303674578666687, - -0.139631450176239, - 0.017303448170423508, - 0.1479826271533966, - 0.10025434195995331, - -0.4083082377910614, - -0.30561330914497375, - -0.40813252329826355, - 0.06945443898439407, - 0.06091393530368805, - -0.1910412609577179, - -0.047186195850372314, - 0.21456490457057953, - -0.1141955554485321, - 0.11537095904350281, - 0.40348875522613525, - 0.34748774766921997, - 0.07191719114780426, - 0.5059363842010498, - 0.25959986448287964, - -0.02637544646859169, - 0.3511104881763458, - -0.02535049244761467, - 0.22289957106113434, - -0.026455219835042953, - -0.36932793259620667, - -0.49803292751312256, - 0.11723490804433823, - -0.2919188439846039, - -0.13946878910064697, - 0.11761865764856339, - 0.09952259063720703, - -0.07412463426589966, - -0.08564862608909607, - 0.16367147862911224, - 0.018953701481223106, - 0.15992528200149536, - -0.0596538782119751, - 0.529747486114502, - -0.036212317645549774, - -0.4240519106388092, - 0.1747322976589203, - 0.01459946297109127, - 0.27978062629699707, - -0.19594606757164001, - -0.09019763767719269, - -0.37640586495399475, - 0.4065615236759186, - 0.003042500466108322, - -0.08811837434768677, - 0.05574090778827667, - -0.16220590472221375, - -0.4509143531322479, - -0.4442014694213867, - -0.05911988019943237, - -0.04536598175764084, - -0.08711369335651398, - -0.20615258812904358, - 0.28761693835258484, - -0.11493343114852905, - -0.15314644575119019, - 0.18207456171512604, - 0.5431855320930481, - 0.18065589666366577, - -0.18394294381141663, - -0.10792461037635803, - 0.08106616884469986, - 0.2082202434539795, - 0.45270657539367676, - -0.2531249523162842, - 0.19319702684879303, - 0.050442904233932495, - -0.38391873240470886, - -0.08642759919166565, - 0.032898519188165665, - -0.3828655183315277, - 0.17220157384872437, - 0.20545430481433868, - 0.10500820726156235, - 0.08463238924741745, - 0.10580836981534958, - 0.0359724760055542, - 0.3080650866031647, - -0.43123912811279297, - -0.05305764824151993, - 0.30112752318382263, - -0.1331443190574646, - 0.500444233417511, - -0.11753887683153152, - -0.311636358499527, - -0.0955292358994484, - -0.03531794250011444, - -0.47755569219589233, - 0.2135458141565323, - -0.036886703222990036, - -0.13463351130485535, - 0.13409295678138733, - 0.24143600463867188, - 0.14437252283096313, - 0.06905212253332138, - -0.05057410150766373, - -0.04990082606673241, - 0.05424710735678673, - -0.08028794825077057, - -0.517091691493988, - -0.06076958030462265, - -0.34456807374954224, - -0.3337685167789459, - -0.27521225810050964, - 0.5027885437011719, - 0.19781309366226196, - 0.018157340586185455, - 0.21312889456748962, - 0.20783403515815735, - -0.26342150568962097, - -0.46998780965805054, - 0.17756298184394836, - 0.09235695749521255, - 0.8029807806015015, - 0.03478199988603592, - -0.22001612186431885, - 0.08366791903972626, - -0.5377001762390137, - 0.18756717443466187, - 0.2371927797794342, - 0.17131154239177704, - 0.2717122435569763, - 0.15818588435649872, - 0.3033129870891571, - 0.3824073076248169, - 0.2087305784225464, - -0.09367642551660538, - 0.23282885551452637, - -0.17755545675754547, - -0.20320512354373932, - 0.12113910913467407, - -0.05998587608337402, - 0.5657732486724854, - -0.46463334560394287, - 0.23911577463150024, - -0.031010426580905914, - 0.4292449653148651, - -0.15956278145313263, - -0.2705172002315521, - -0.039062805473804474, - -0.3034370243549347, - -0.13700655102729797, - -0.3776121735572815, - -0.24670469760894775, - 0.02542027086019516, - -0.3266569972038269, - 0.006663868203759193, - 0.3107166886329651, - 0.2237526923418045, - 0.30320122838020325, - 0.13753119111061096, - -0.23212677240371704, - -0.5131415724754333, - -0.0292116217315197, - 0.48148781061172485, - 0.22850051522254944, - -0.0349501296877861, - -0.15351517498493195, - 0.14526182413101196, - 0.7079096436500549, - 0.05395514518022537, - -0.12520454823970795, - -0.15301859378814697, - -0.06865004450082779, - 0.01030103862285614, - -0.00728218350559473, - -0.0619417205452919, - 0.16871026158332825, - -0.34539008140563965, - -0.0584397166967392, - -0.21137507259845734, - -0.3909897804260254, - 0.22458739578723907, - -0.4177096486091614, - -0.31723251938819885, - -0.17922085523605347, - 0.13097426295280457, - -0.15707644820213318, - -0.017049606889486313, - 0.21073544025421143, - 0.5532355308532715, - 0.24607297778129578, - -0.10640455037355423, - 0.12368571758270264, - -0.5548756122589111, - -0.0694003701210022, - 0.26647886633872986, - -0.19097845256328583, - 0.18057143688201904, - 0.0916849672794342, - 0.2498811036348343, - 0.24502527713775635, - 0.23572248220443726, - -0.45633813738822937, - 0.13080842792987823, - 0.18696050345897675, - 0.40971940755844116, - -0.14450708031654358, - -10.72884750366211, - -0.08436558395624161, - -0.17222632467746735, - 0.3722347319126129, - -0.005003519356250763, - 0.08569922298192978, - -0.2880721688270569, - 0.14975649118423462, - 0.08099672198295593, - 0.2767045795917511, - -0.1416490077972412, - 0.22035539150238037, - 0.31024396419525146, - 0.3281044065952301, - -0.00700637511909008, - 0.09197277575731277, - -0.2828317880630493, - 0.36237338185310364, - -0.2018129825592041, - 0.08031363040208817, - 0.29958000779151917, - 0.5100498199462891, - -0.24878625571727753, - 0.316982626914978, - 0.16252052783966064, - -0.3794524669647217, - -0.16013485193252563, - 0.3249574899673462, - 0.15042707324028015, - -0.4480612576007843, - 0.4206530451774597, - 0.06914687901735306, - -0.12947405874729156, - -0.17984142899513245, - 0.04047023504972458, - -0.18042239546775818, - -0.2634485363960266, - -0.13561904430389404, - -0.010061487555503845, - -0.049630045890808105, - 0.07044035196304321, - -0.2805670499801636, - 0.046354323625564575, - 0.3614566922187805, - -0.18569093942642212, - -0.4011118710041046, - -0.146980881690979, - -1.5222930908203125, - 0.26466691493988037, - 0.28200364112854004, - 0.5429244637489319, - 0.04674656689167023, - 0.24689969420433044, - 0.0596962571144104, - -0.6062489748001099, - 0.043502502143383026, - -0.0716652125120163, - 0.294344425201416, - 0.323344886302948, - -0.07167421281337738, - 0.1381332278251648, - -0.20218941569328308, - 0.33652880787849426, - -0.5205097198486328, - -0.24576926231384277, - 0.15342357754707336, - -0.13860425353050232, - -0.01793592981994152, - -0.23604585230350494, - -0.19331979751586914, - -0.5147315859794617, - -0.07783228904008865, - 0.020054936408996582, - 0.003683023154735565, - 0.5302668213844299, - -0.14905905723571777, - -0.6215678453445435, - -0.04693080112338066, - 0.03177265077829361, - 0.43928441405296326, - 0.20044471323490143, - 0.053440943360328674, - 0.03512869030237198, - -0.25870904326438904, - 0.0456407368183136, - -0.10165692120790482, - 0.10231848061084747, - 0.6454752087593079, - -0.06057240813970566, - -0.02014753967523575, - -0.0805678740143776, - 0.3307194709777832, - -0.21311278641223907, - -0.12919773161411285, - -0.5383883714675903, - 0.19735124707221985, - 0.10391107946634293, - -0.1251986026763916, - -0.04085569828748703, - -0.04879387468099594, - -0.1310943365097046, - -0.24909880757331848, - 0.0552033931016922, - -0.40416133403778076, - -0.2569256126880646, - 0.31423652172088623, - 0.32732781767845154, - 0.10698288679122925, - 0.1568198949098587, - 0.13665547966957092, - 0.039797551929950714, - -0.010011918842792511, - 0.45069649815559387, - 0.4661501348018646, - 0.2840852737426758, - -0.08953103423118591, - -0.22950732707977295, - 0.07077176868915558, - -0.2921951711177826, - 0.052205778658390045, - 0.32449954748153687, - 0.0655127540230751, - 0.2779186964035034, - 0.6569525003433228, - -0.09968475252389908, - -0.15900298953056335, - 0.7934086918830872, - -0.313374400138855, - 0.3700951337814331, - -0.1288086622953415, - 0.1459966003894806, - 0.0017610639333724976, - -0.21991565823554993, - 0.03200221434235573, - 0.1541668325662613, - -0.2301967740058899, - 0.51127028465271, - -0.04711591452360153, - -0.5631332993507385, - -0.09498932212591171, - -0.3220555782318115, - 0.3919947147369385, - 0.20188823342323303, - 0.19454336166381836, - -0.18447835743427277, - -0.3446812629699707, - -0.15064498782157898, - 0.06562292575836182, - -0.5549658536911011, - -0.25142520666122437, - -0.18479636311531067, - 0.06086111068725586, - -0.07113157212734222, - -0.21488645672798157, - 0.44719141721725464, - 0.040575891733169556, - -0.23016901314258575, - 0.016948353499174118, - -0.4576629102230072, - -0.2774576246738434, - 0.19591179490089417, - 0.7523588538169861, - 0.15914063155651093, - -0.3030513525009155, - -0.11176756024360657, - 0.2445915937423706, - -0.0673903077840805, - -0.011832956224679947, - 0.026855669915676117, - 0.08922559022903442, - -0.5653276443481445, - 0.07565314322710037, - 0.3082425594329834, - -0.5675989985466003, - -0.23595665395259857, - -0.4375462830066681, - 0.2345152199268341, - -0.19853003323078156, - -0.18320170044898987, - 0.4040122628211975, - 0.1327686309814453, - 0.09642577916383743, - 0.1718791127204895, - -0.25090765953063965, - 0.07952342182397842, - 0.1694749891757965, - 0.13337859511375427, - 0.26768943667411804, - -0.08014815300703049, - -0.5359716415405273, - -0.2287704050540924, - 0.27064019441604614, - -0.36046329140663147, - -0.1262928545475006, - 0.1026020348072052, - 0.12672147154808044, - -0.271016389131546, - 0.09319630265235901, - -0.26792603731155396, - 0.017616063356399536, - -0.3463478684425354, - 0.06339090317487717, - 0.27214208245277405, - -0.33809763193130493, - 0.20576338469982147, - -0.14227889478206635, - 0.2541172206401825, - 0.21700401604175568, - -0.2943233251571655, - 0.17018800973892212, - -0.1988847255706787 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_051.json b/src/benchmark/output/results/results_graph_051.json deleted file mode 100644 index 9dd7c9a..0000000 --- a/src/benchmark/output/results/results_graph_051.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 65-year-old male with a 20-year history of chronic obstructive pulmonary disease (COPD).\n\n**Initial Presentation:**\nOn [date], the patient was admitted to hospital with sudden massive hemoptysis, which he denied experiencing any chest pain, dyspnea, or fever. No other significant comorbidities were present at the time of presentation.\n\n**Diagnosis and Timeline:**\n\n1. **Step 1 (N1):**\nThe patient's history of COPD was noted, with a diagnosis code of \"233936005\" for Chronic obstructive lung disease, which is historical in nature.\n2. **Step 2 (N2):**\nTwo months prior to admission, an enhanced CT scan revealed a tumor in the right upper lung.\n3. **Step 3 (N3):**\nBiopsy confirmed that the tumor was squamous cell carcinoma of the lung (SCC), with a TNM stage of T2bNXM1c1.\n4. **Step 4 (N4):**\nThe patient received two cycles of albumin-bound paclitaxel, nedaplatin, and tislelizumab as treatment for SCC.\n\n**Follow-up and Complications:**\n\n5. **Step 5 (N5):**\nA follow-up CT scan showed partial remission of the tumor with cavitation.\n6. **Step 6 (N6):**\nThe patient presented with hemoptysis, which led to further evaluation, including lab tests and imaging.\n7. **Step 7 (N7):**\nEmergency endovascular intervention was performed due to pseudoaneurysm formation in the right upper pulmonary artery located at the SCC cavity wall with an intraluminal hematoma.\n8. **Step 8 (N8):**\nThe patient underwent emergency endovascular intervention, which included embolization using microcoils to occlude the PAP and proximal artery.\n9. **Step 9 (N9):**\nPost-procedure angiography confirmed the disappearance of the pulmonary artery pseudoaneurysm (PAP).\n10. **Step 10 (N10):**\nThe patient experienced no active bleeding postoperatively, and follow-up over 6 months showed no recurrence of hemoptysis.\n11. **Step 11 (N11):**\nA CT scan 3 months post-embolization showed absorption of the tumor cavity with significant tumor reduction.\n\n**Outcomes:**\n\nThe patient's treatment for SCC was successful, with partial remission of the tumor and disappearance of the pulmonary artery pseudoaneurysm. The patient experienced no active bleeding postoperatively and no recurrence of hemoptysis over 6 months. Follow-up imaging showed absorption of the tumor cavity with significant tumor reduction.\n\n**Conclusion:**\nThis case highlights the importance of early diagnosis and treatment for SCC, particularly in patients with a history of COPD. The successful outcome of this patient's treatment underscores the effectiveness of endovascular intervention in managing complications associated with SCC.", - "bertscore": { - "precision": [ - 0.6436575055122375 - ], - "recall": [ - 0.6487551927566528 - ], - "f1": [ - 0.6461962461471558 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 12, - "edge_count": 11, - "avg_in_degree": 0.9166666666666666, - "density": 0.08333333333333333 - }, - "trajectory_embedding": [ - 0.19094891846179962, - 0.14106714725494385, - -0.031158799305558205, - 0.13212095201015472, - -0.034361883997917175, - 0.11214422434568405, - 0.008480226621031761, - 0.27649667859077454, - 0.44355106353759766, - -0.3264440596103668, - -0.24161100387573242, - -0.02264360710978508, - -0.5586544275283813, - -0.07856817543506622, - -0.13135342299938202, - 0.2850583493709564, - -0.02288839966058731, - 0.2912149727344513, - 0.003512168535962701, - -0.31964847445487976, - -0.3711169958114624, - 0.1159251481294632, - -0.4533284306526184, - 0.038472980260849, - 0.24174714088439941, - -0.030941514298319817, - 0.3462403118610382, - 0.5779390931129456, - 0.2785898447036743, - 0.3189777135848999, - 0.14821793138980865, - 0.015613364987075329, - 0.16177898645401, - 0.0635412409901619, - -0.2472148984670639, - 0.3098788559436798, - 0.12770746648311615, - 0.3534388840198517, - -0.037386197596788406, - -0.054510749876499176, - -0.0025609703734517097, - 0.0313134603202343, - 0.8939815163612366, - 0.23854190111160278, - 0.32405316829681396, - -0.8171070218086243, - 0.0318169966340065, - 0.5683367848396301, - -0.48634955286979675, - -0.3582748472690582, - 0.1165669858455658, - 0.7459186315536499, - 0.567617654800415, - -0.2915267050266266, - 0.4774470329284668, - -0.23445822298526764, - -0.2539263367652893, - -0.42970606684684753, - -0.14772860705852509, - 0.033471111208200455, - -0.04910167306661606, - -0.2052757292985916, - 0.31284111738204956, - -0.1733635514974594, - -0.22471214830875397, - -0.1454334706068039, - -0.16022424399852753, - 0.08478660881519318, - 0.018503820523619652, - -0.4332069158554077, - -0.1765756458044052, - -0.19817395508289337, - -0.09132220596075058, - 0.06759564578533173, - 0.11315162479877472, - -0.18721602857112885, - 0.4069445729255676, - -0.08486670255661011, - 0.11253757029771805, - 0.1453879028558731, - -0.1293947547674179, - -0.14425037801265717, - 0.01777280867099762, - 0.24056577682495117, - -0.4250442683696747, - 0.07426676154136658, - -0.06154009327292442, - -0.15809665620326996, - -0.3489093780517578, - 0.11119237542152405, - 0.20891395211219788, - -0.3485325872898102, - 0.07850185036659241, - -0.13518120348453522, - 0.13621823489665985, - 0.14744067192077637, - 0.4469539523124695, - 0.29965150356292725, - 0.9332895278930664, - 0.07178158313035965, - 0.10418141633272171, - -0.04303005710244179, - 0.22302748262882233, - 0.02683250978589058, - 0.3797377347946167, - -0.16346760094165802, - 0.1096019521355629, - -0.5771856904029846, - 0.13077057898044586, - 0.44911858439445496, - 0.025568801909685135, - -0.15841908752918243, - 0.006335198879241943, - -0.2211894392967224, - 0.1398351788520813, - 0.0879717543721199, - 0.00398073298856616, - 0.19677186012268066, - 0.20679594576358795, - -0.40137407183647156, - -0.16071675717830658, - -0.06497296690940857, - 0.30343544483184814, - 0.2966051399707794, - -0.4089924693107605, - 0.008863494731485844, - -0.20866107940673828, - 0.021763013675808907, - 0.004102692473679781, - 0.06657807528972626, - -0.4731425940990448, - -0.17991520464420319, - -0.08739478141069412, - 0.1031360924243927, - -0.15920963883399963, - 0.22302298247814178, - -0.34198296070098877, - 0.04968779906630516, - -1.0663485527038574, - 0.10440728813409805, - -0.3866520822048187, - -0.018199682235717773, - 0.014895658940076828, - -0.49616190791130066, - -0.25237366557121277, - -0.1474708616733551, - -0.1502130627632141, - 0.10663757473230362, - -0.20781637728214264, - -0.11339282244443893, - -0.0027344971895217896, - 0.08031895756721497, - 0.2411370873451233, - 0.3774353861808777, - 0.07304146885871887, - 0.09206283092498779, - 0.029945863410830498, - 0.28016722202301025, - 0.10834024101495743, - -0.08094920963048935, - 0.04222196713089943, - 0.4482365548610687, - 0.08113250881433487, - -0.00809185765683651, - -0.026369599625468254, - -0.6576817631721497, - 0.15983717143535614, - -0.14143669605255127, - 0.2476421743631363, - 0.08759968727827072, - -0.1594245284795761, - 0.05932655557990074, - -0.2781563401222229, - 0.5673711895942688, - 0.05853328853845596, - 0.3078257143497467, - 0.10266649723052979, - -0.08796900510787964, - 0.06542083621025085, - 0.19804805517196655, - 0.0569678395986557, - -0.18759411573410034, - 0.6016750335693359, - 0.19346891343593597, - -0.2672523856163025, - 0.22446174919605255, - 0.33883944153785706, - -0.03287084400653839, - -0.1990729719400406, - -0.018878616392612457, - 0.4933117628097534, - -0.31329214572906494, - 0.4603515565395355, - -0.4358474612236023, - 0.008301946334540844, - 0.20370358228683472, - -0.23555879294872284, - -0.18351620435714722, - -0.018741071224212646, - -0.13888464868068695, - 0.11807167530059814, - 0.026254886761307716, - -0.2636762857437134, - 0.14814221858978271, - 0.15412123501300812, - -0.15580083429813385, - 0.2938325107097626, - -0.0890255719423294, - 0.18235860764980316, - -0.10037370026111603, - -0.08933348953723907, - 0.21167907118797302, - -0.18058249354362488, - 0.1372062712907791, - -0.010980512946844101, - -0.32624194025993347, - 0.21716003119945526, - -0.08167710900306702, - -0.039732400327920914, - 0.26160016655921936, - 0.002250573132187128, - -0.22661751508712769, - -0.10921990126371384, - -0.013210299424827099, - -0.5326783657073975, - 0.25696709752082825, - 0.10750465840101242, - 0.28419411182403564, - 0.297998309135437, - -0.01609373278915882, - 0.04446385055780411, - -0.37519943714141846, - 0.28912636637687683, - -0.19353193044662476, - -0.10305824875831604, - -0.3192024230957031, - 0.25994062423706055, - -0.23299647867679596, - 0.015665993094444275, - 0.1651689112186432, - -0.07293307036161423, - -0.17282937467098236, - 0.1346348375082016, - -0.2649390995502472, - 0.0018071356462314725, - -0.310137003660202, - 0.060303423553705215, - 0.27184101939201355, - 0.17266370356082916, - 0.23124371469020844, - 0.024022696539759636, - -0.08349869400262833, - 0.19501905143260956, - -0.1497233361005783, - -0.3982785940170288, - -0.47297728061676025, - -0.1038932353258133, - -0.02060980349779129, - -0.5805975198745728, - 0.08674362301826477, - -0.05290735885500908, - -0.0549015998840332, - -0.00790991447865963, - -0.29442891478538513, - -0.136831596493721, - 0.07148788124322891, - 0.021244853734970093, - 0.06239302083849907, - -0.17239466309547424, - 0.12096230685710907, - -0.09722525626420975, - -0.22580766677856445, - -0.12006731331348419, - -0.05214909091591835, - 0.14095324277877808, - 0.0040327636525034904, - -0.20288728177547455, - -7.873638242017478e-05, - 0.08176250755786896, - -0.3332521617412567, - -0.16884587705135345, - 0.16540077328681946, - -0.25601914525032043, - 0.3336305022239685, - -0.06304765492677689, - 0.17451544106006622, - 0.2424243986606598, - 0.048303019255399704, - 0.20669297873973846, - 0.32897791266441345, - 0.4673144221305847, - 0.04896167293190956, - -0.005703209433704615, - 0.02857513539493084, - -0.0198189839720726, - -0.027272425591945648, - -0.3427080512046814, - 0.4115428924560547, - 0.05080471932888031, - 0.0016239593969658017, - -0.044011205434799194, - 0.28814399242401123, - 0.1063091829419136, - -0.2920747697353363, - -0.039684999734163284, - 0.6049829721450806, - 0.12567752599716187, - 0.08993291854858398, - 0.11041045188903809, - 0.3999946713447571, - 0.3928902745246887, - -0.03851931169629097, - -0.08497002720832825, - 0.030264396220445633, - -0.11007676273584366, - -0.14249195158481598, - -0.10249415040016174, - 0.18465657532215118, - 0.39143607020378113, - -0.22170978784561157, - -0.07035940140485764, - 0.06377561390399933, - -0.043343305587768555, - 0.029087640345096588, - -0.25997525453567505, - -0.06446229666471481, - 0.11766389012336731, - -0.18083275854587555, - 0.3022649586200714, - -0.06595628708600998, - -0.11083913594484329, - 0.39614880084991455, - -0.286289781332016, - -0.19291196763515472, - 0.1384749561548233, - -0.10130176693201065, - -0.4696400463581085, - 0.3791688084602356, - -0.1880205273628235, - 0.10157148540019989, - 0.32650890946388245, - -0.23785170912742615, - 0.07592041045427322, - -0.05216998979449272, - 0.32650554180145264, - 0.024744482710957527, - 0.01702575571835041, - -0.09327530115842819, - 0.06496191024780273, - 0.06579211354255676, - 0.5461304187774658, - 0.2267688810825348, - 0.18436168134212494, - 0.5087961554527283, - 0.0668533518910408, - -0.42412450909614563, - 0.014898168854415417, - -0.03307408466935158, - 0.35356244444847107, - -0.09419333189725876, - -0.16072210669517517, - -0.13200615346431732, - 0.053954459726810455, - 0.15426093339920044, - -0.29224255681037903, - 0.01019919291138649, - 0.1613394170999527, - 0.0855192244052887, - -0.12590287625789642, - 0.317500501871109, - 0.14517813920974731, - -0.09934082627296448, - 0.4981444180011749, - -0.051182009279727936, - -0.10979887843132019, - 0.3576841652393341, - -0.2112240344285965, - 0.22816157341003418, - -0.08570058643817902, - -0.2278006672859192, - -0.2525404691696167, - 0.11332028359174728, - -0.23273593187332153, - -0.17832408845424652, - 0.01875140145421028, - -0.18520431220531464, - 0.11991856247186661, - -0.2380026876926422, - 0.1449422985315323, - 0.03122391551733017, - 0.2285527139902115, - 0.0872030183672905, - 0.3563791513442993, - 0.061768367886543274, - -0.2637602388858795, - 0.24822677671909332, - -0.041144367307424545, - 0.015523252077400684, - -0.28305864334106445, - 0.020409511402249336, - -0.12434007972478867, - 0.4844158887863159, - -0.012193693779408932, - -0.04268227890133858, - 0.03554869815707207, - -0.033881865441799164, - -0.13600239157676697, - -0.382303923368454, - -0.15320897102355957, - -0.15577943623065948, - -0.0022908824030309916, - 0.03735930100083351, - 0.11865749955177307, - -0.3134608566761017, - -0.15268541872501373, - -0.0664103701710701, - -0.045090582221746445, - 0.2200946807861328, - -0.12978920340538025, - -0.1365133374929428, - 0.3668656349182129, - 0.17513738572597504, - 0.40399169921875, - -0.34162676334381104, - 0.20498956739902496, - 0.12280737608671188, - -0.3162277936935425, - -0.11437566578388214, - -0.01992126926779747, - -0.3349311351776123, - -0.08125343918800354, - 0.2670181691646576, - 0.3032830059528351, - 0.0002204768970841542, - -0.018182771280407906, - 0.1633535623550415, - 0.1505696177482605, - -0.3155216872692108, - -0.05801606550812721, - 0.34460437297821045, - 0.09821174293756485, - 0.36374855041503906, - 0.004542629234492779, - -0.4936901330947876, - -0.24061916768550873, - -0.0952354222536087, - -0.488727867603302, - 0.1617792546749115, - 0.21668098866939545, - -0.17562973499298096, - -0.12557779252529144, - -0.00882737897336483, - -0.019892053678631783, - -0.12603463232517242, - 0.2967451810836792, - -0.11472491919994354, - 0.16318480670452118, - -0.07745308429002762, - -0.28813308477401733, - -0.12840117514133453, - -0.1803760677576065, - -0.35747459530830383, - -0.3566107451915741, - 0.33845219016075134, - 0.27148178219795227, - -0.3039121925830841, - 0.03499644994735718, - 0.14564304053783417, - -0.14873789250850677, - -0.1862473040819168, - -0.06093388795852661, - -0.3023805320262909, - 0.4018360376358032, - -0.06756354123353958, - -0.20657537877559662, - 0.045960236340761185, - -0.19606180489063263, - -0.011831795796751976, - 0.3075883686542511, - 0.05089161545038223, - 0.483248233795166, - 0.18867100775241852, - 0.05045071989297867, - 0.5045363903045654, - 0.02315126731991768, - 0.05543635040521622, - 0.27923834323883057, - 0.07450801879167557, - 0.17183344066143036, - -0.2827977240085602, - -0.14327391982078552, - 0.2875491976737976, - -0.33328911662101746, - -0.007631499785929918, - 0.25081583857536316, - 0.2756015658378601, - -0.3667318522930145, - -0.2791220247745514, - 0.12183677405118942, - -0.0853201374411583, - -0.13226182758808136, - -0.1633516550064087, - -0.13688145577907562, - -0.0546460784971714, - -0.25458475947380066, - -0.07069426774978638, - 0.18920527398586273, - 0.5055086016654968, - 0.1569167971611023, - 0.3079119026660919, - -0.30343368649482727, - -0.3728949725627899, - 0.16967229545116425, - 0.23135291039943695, - 0.025669120252132416, - -0.04772617667913437, - -0.15766897797584534, - 0.31426894664764404, - 0.40961599349975586, - -0.037370599806308746, - 0.029563497751951218, - 0.054615579545497894, - 0.04578715190291405, - 0.16311107575893402, - 0.05636230483651161, - -0.10584265738725662, - 0.10434482246637344, - -0.32156771421432495, - 0.21709097921848297, - -0.17347122728824615, - -0.1449459046125412, - 0.1969769150018692, - -0.12468148022890091, - -0.4720155596733093, - -0.15959085524082184, - 0.32757118344306946, - -0.1419375240802765, - -0.14879679679870605, - 0.2481510192155838, - 0.3887300491333008, - 0.060037992894649506, - -0.3401050567626953, - -0.03990919888019562, - -0.51358562707901, - -0.09461970627307892, - 0.2344813346862793, - -0.12724849581718445, - -0.14003024995326996, - 0.03205497935414314, - 0.4611909091472626, - 0.4070449769496918, - 0.15769757330417633, - -0.28918197751045227, - 0.12555362284183502, - 0.2676740288734436, - 0.2350650429725647, - -0.2624610364437103, - -10.745993614196777, - -0.12893487513065338, - -0.32608330249786377, - 0.5240890979766846, - -0.21350574493408203, - 0.06783820688724518, - 0.11104471236467361, - -0.037054240703582764, - 0.12012320011854172, - 0.04536654055118561, - -0.211399644613266, - -0.030445706099271774, - 0.3239701986312866, - 0.2166062891483307, - -0.014118357561528683, - -0.04215191304683685, - -0.3600086271762848, - 0.21030449867248535, - 0.006253220606595278, - 0.1975545436143875, - 0.23634415864944458, - 0.31936293840408325, - -0.20811577141284943, - 0.25351229310035706, - -0.09517870098352432, - -0.3012394905090332, - -0.1784743219614029, - 0.6404629945755005, - 0.31051743030548096, - -0.26683947443962097, - 0.16186566650867462, - 0.15097258985042572, - -0.19489231705665588, - 0.07882729172706604, - -0.07526905834674835, - -0.15495212376117706, - 4.2407435103086755e-05, - 0.14460092782974243, - 0.21992658078670502, - -0.03809976950287819, - 0.024773769080638885, - -0.2210741937160492, - 0.1896129995584488, - 0.13687807321548462, - -0.1779307723045349, - -0.5710297226905823, - -0.1892595887184143, - -1.4844306707382202, - 0.18588615953922272, - 0.3354470729827881, - 0.3098658323287964, - 0.09357399493455887, - 0.11811672896146774, - 0.22004319727420807, - -0.42688044905662537, - 0.04660094901919365, - -0.2603687047958374, - -0.0898217260837555, - 0.11243734508752823, - 0.15578092634677887, - 0.10758467018604279, - -0.11934950202703476, - 0.5527052283287048, - -0.07071653008460999, - -0.38405874371528625, - 0.09534880518913269, - 0.030234219506382942, - -0.05046984180808067, - -0.2867332398891449, - -0.5873365998268127, - -0.5103051662445068, - -0.022636985406279564, - -0.16433854401111603, - -0.029490606859326363, - 0.41554415225982666, - -0.07572385668754578, - -0.30972030758857727, - 0.24150176346302032, - -0.045552004128694534, - 0.3215571641921997, - 0.16260553896427155, - 0.020533697679638863, - 0.09548033028841019, - -0.09123978018760681, - -0.21215996146202087, - -0.15280377864837646, - 0.15199264883995056, - 0.5069378018379211, - 0.05625903233885765, - -0.009921767748892307, - -0.05812028795480728, - 0.41037943959236145, - 0.043372929096221924, - -0.18998365104198456, - -0.461628794670105, - -0.07817098498344421, - -0.022916944697499275, - 0.1410103291273117, - -0.008755980990827084, - -0.07745662331581116, - -0.21702809631824493, - 0.035010382533073425, - 0.06267145276069641, - -0.47814443707466125, - -0.41153475642204285, - 0.2928331196308136, - 0.10875929147005081, - 0.14258962869644165, - -0.0014272765256464481, - -0.14417269825935364, - -0.06225234642624855, - -0.018146462738513947, - 0.18877467513084412, - 0.5126664638519287, - 0.2560887038707733, - -0.07243573665618896, - -0.020360363647341728, - -0.224511057138443, - -0.1826852262020111, - 0.005298877600580454, - 0.323956698179245, - -0.051439687609672546, - 0.1424778401851654, - 0.6224844455718994, - -0.021091625094413757, - -0.03393978253006935, - 0.8963201642036438, - -0.2472096085548401, - 0.2320713996887207, - -0.10943920165300369, - 0.22820572555065155, - -0.04009385406970978, - -0.3376707136631012, - 0.04805195331573486, - 0.44219323992729187, - -0.3386395573616028, - 0.7483369708061218, - 0.19872498512268066, - -0.36432406306266785, - -0.013159104622900486, - -0.2789859175682068, - 0.47885072231292725, - 0.37096917629241943, - 0.285831481218338, - -0.12348324805498123, - -0.21833211183547974, - -0.29422858357429504, - 0.044767603278160095, - -0.39564695954322815, - -0.3398112952709198, - -0.1327308863401413, - 0.08455590903759003, - 0.1674269288778305, - -0.23312824964523315, - 0.3644222319126129, - 0.16214518249034882, - -0.19494442641735077, - -0.20102228224277496, - -0.4217049777507782, - -0.07246432453393936, - 0.2085323929786682, - 0.8311479091644287, - -0.04884607717394829, - -0.0358612984418869, - -0.07514459639787674, - 0.1149691641330719, - -0.21547217667102814, - 0.19622308015823364, - 0.0970342680811882, - -0.007679974660277367, - -0.4775974452495575, - 0.2435050904750824, - 0.11554893851280212, - -0.3277517557144165, - -0.1424865573644638, - -0.12860864400863647, - -0.03809446841478348, - 0.16011835634708405, - -0.271041601896286, - 0.123362235724926, - 0.4564916789531708, - -0.16954384744167328, - 0.007680540904402733, - -0.20490258932113647, - -0.07409235835075378, - 0.16346803307533264, - 0.2577599287033081, - 0.0392175167798996, - -0.28559020161628723, - -0.2841348946094513, - -0.5293683409690857, - 0.3451726734638214, - -0.37702476978302, - -0.08774478733539581, - 0.07544264197349548, - 0.24123243987560272, - -0.2973092794418335, - 0.08464527875185013, - -0.07614510506391525, - 0.010685469955205917, - -0.1582186371088028, - 0.289948970079422, - 0.4170743227005005, - -0.38005006313323975, - 0.2592196762561798, - -0.15659330785274506, - 0.14205040037631989, - 0.07462868094444275, - -0.29018911719322205, - 0.15791089832782745, - -0.19333161413669586 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_052.json b/src/benchmark/output/results/results_graph_052.json deleted file mode 100644 index 337a1ea..0000000 --- a/src/benchmark/output/results/results_graph_052.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 61-year-old male with a history of intermittent cough for over two years, worsening in the last month. He has also experienced pneumonia caused by Legionella pneumophila, hypertension, severe anemia, smoking, and alcohol use.\n\n**Timeline of Diagnoses:**\n\n1. **Step 1 (N1):**\nThe patient presented with symptoms of a persistent cough, which had worsened over time. His medical history revealed previous episodes of pneumonia, hypertension, anemia, smoking, and alcohol use.\n2. **Step 2 (N2):** One month prior to presentation, the patient developed a Pasteurella pneumotropica infection at an outside facility, as confirmed by bronchoscopy and alveolar lavage fluid mNGS analysis. Despite treatment with anti-infective medications for over two weeks, the patient did not show improvement.\n3. **Step 3 (N3):** The patient presented with a palpable lump on the right thoracic wall, localized pain, and coarse breath sounds in both lungs. Laboratory tests revealed abnormalities in white blood cell count, red blood cell count, hemoglobin, total protein, globulin, albumin, glucose, C-reactive protein, and squamous cell carcinoma antigen.\n4. **Step 4 (N4):** Enhanced CT scans showed a new mass in the left lower lung, multiple enlarged lymph nodes, and bone destruction in the right tenth rib, leading to suspicion of lung cancer with metastasis. Bronchoscopy did not reveal tumor cells.\n\n**Treatments:**\n\n1. **Anti-infective treatment:** The patient received anti-infective medications for over two weeks following the diagnosis of Pasteurella pneumotropica infection.\n2. **Imaging studies:** Enhanced CT scans were performed to evaluate the new mass in the left lower lung and multiple enlarged lymph nodes.\n\n**Outcomes:**\n\n1. **Lung cancer with metastasis:** The patient's symptoms and imaging results suggested a diagnosis of lung cancer with metastasis.\n2. **No tumor cells found on bronchoscopy:** Despite the high suspicion of lung cancer, no tumor cells were found during bronchoscopy.\n3. **Negative antibody tests:** Antibody tests for HIV, HBV, HCV, EBV, and TP were negative, indicating that these infections were not contributing to the patient's condition.\n\n**Conclusion:**\nThe patient presented with a complex clinical picture, including a history of pneumonia, hypertension, anemia, smoking, and alcohol use. The development of Pasteurella pneumotropica infection led to progression in his diagnosis, ultimately resulting in suspicion of lung cancer with metastasis. Despite the high suspicion of lung cancer, no tumor cells were found on bronchoscopy, and antibody tests for common infections were negative. Further evaluation and treatment are necessary to determine the best course of action for this patient.", - "bertscore": { - "precision": [ - 0.5771618485450745 - ], - "recall": [ - 0.6398134231567383 - ], - "f1": [ - 0.606874942779541 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 4, - "edge_count": 3, - "avg_in_degree": 0.75, - "density": 0.25 - }, - "trajectory_embedding": [ - 0.3750039041042328, - -0.018641069531440735, - -0.2502043545246124, - 0.05081702023744583, - -0.05105207860469818, - 0.0839003473520279, - 0.2023211419582367, - 0.19112949073314667, - 0.2581161558628082, - -0.5016443729400635, - -0.10917043685913086, - 0.22764131426811218, - -0.6944714784622192, - -0.16388894617557526, - -0.19019311666488647, - -0.02061181329190731, - 0.21072253584861755, - 0.36244553327560425, - 0.1649523675441742, - -0.19564396142959595, - -0.4511476755142212, - 0.20265279710292816, - -0.3970683515071869, - -0.07290428876876831, - 0.06168309599161148, - -0.09458416700363159, - 0.14242085814476013, - 0.5246515870094299, - 0.2932756245136261, - 0.2652825117111206, - 0.06448846310377121, - 0.1772792637348175, - -0.20149506628513336, - 0.16522261500358582, - -0.25548550486564636, - 0.4062054753303528, - 0.14651307463645935, - 0.10961253941059113, - -0.18582983314990997, - 0.05126669257879257, - -0.1780514419078827, - 0.0277843214571476, - 0.6572881937026978, - 0.427096962928772, - 0.731152355670929, - -0.6117132306098938, - -0.037707939743995667, - 0.37013891339302063, - -0.5210444927215576, - -0.024334007874131203, - 0.13324706256389618, - 0.8416606187820435, - 0.46486666798591614, - 0.09050995856523514, - 0.5590276718139648, - -0.03726061061024666, - -0.2525431215763092, - -0.06953722983598709, - -0.2951086163520813, - 0.21630530059337616, - -0.003851592540740967, - -0.25878116488456726, - 0.084021657705307, - -0.02554335445165634, - -0.18547093868255615, - -0.0071035330183804035, - -0.10002142935991287, - -0.022179020568728447, - -0.16623756289482117, - -0.4337896704673767, - -0.28635454177856445, - -0.23838165402412415, - -0.0745307207107544, - 0.14370892941951752, - 0.12053336948156357, - -0.3137984871864319, - 0.15123985707759857, - 0.10516850650310516, - -0.10271459072828293, - 0.07256560027599335, - 0.06432320922613144, - 0.11226767301559448, - 0.13952317833900452, - 0.10879547894001007, - -0.20519058406352997, - 0.11949052661657333, - 0.0489501878619194, - -0.06891728937625885, - -0.306130051612854, - 0.19894450902938843, - 0.013912171125411987, - -0.2484026998281479, - -0.015323575586080551, - -0.2818257808685303, - 0.07071297615766525, - -0.12937968969345093, - 0.265982061624527, - 0.33658355474472046, - 0.9003799557685852, - -0.029388174414634705, - 0.12319771945476532, - 0.38167083263397217, - 0.4185314476490021, - -0.08359169960021973, - 0.43835651874542236, - -0.09264031797647476, - 0.18517109751701355, - -0.3304045796394348, - -0.025782013311982155, - 0.4000227451324463, - -0.21055254340171814, - -0.21370747685432434, - 0.0004560612142086029, - -0.3826911449432373, - -0.2137700915336609, - 0.0007847361266613007, - -0.3079833388328552, - 0.005332674831151962, - 0.06937509775161743, - -0.31980860233306885, - 0.1354016661643982, - -0.1521102637052536, - 0.3260740339756012, - 0.13874965906143188, - -0.477588951587677, - 0.129996195435524, - -0.1010374054312706, - -0.02798978053033352, - -0.05269686505198479, - 0.24253839254379272, - -0.5391861200332642, - -0.26594796776771545, - 0.11924968659877777, - 0.2704978585243225, - -0.13381721079349518, - 0.22580784559249878, - -0.5472376346588135, - 0.2593297064304352, - -1.3018028736114502, - 0.11757175624370575, - -0.4669552743434906, - -0.03903498873114586, - -0.015594881027936935, - -0.5755515694618225, - -0.24181075394153595, - -0.12715989351272583, - -0.1480318158864975, - 0.17188116908073425, - -0.09114311635494232, - -0.04409800097346306, - -0.19648411870002747, - -0.03167814016342163, - 0.05811990797519684, - 0.14378733932971954, - 0.06015128642320633, - 0.2832489609718323, - 0.20626427233219147, - 0.2108088880777359, - 0.2910540699958801, - -0.20453929901123047, - -0.17753660678863525, - 0.17088258266448975, - -0.03704344108700752, - 0.09050876647233963, - 0.03505607694387436, - -0.7488185167312622, - 0.24450576305389404, - -0.24621155858039856, - 0.24071085453033447, - 0.03053906559944153, - 0.027132824063301086, - 0.23277997970581055, - -0.1849484145641327, - 0.5160245299339294, - 0.12026375532150269, - 0.3551260828971863, - -0.0612788051366806, - -0.03043258935213089, - 0.2101808786392212, - 0.07654383778572083, - 0.031165091320872307, - 0.013304777443408966, - 0.43383294343948364, - 0.15458561480045319, - -0.44488441944122314, - 0.12800030410289764, - 0.5983635783195496, - -0.3576675355434418, - -0.23850134015083313, - -0.30051931738853455, - 0.33574387431144714, - -0.16317453980445862, - 0.20916450023651123, - -0.2582557499408722, - -0.023145239800214767, - 0.1016504317522049, - -0.2705596685409546, - -0.1513102650642395, - 0.16109776496887207, - -0.021233662962913513, - 0.1400686502456665, - 0.06246664747595787, - -0.060198843479156494, - 0.10760002583265305, - 0.07032246887683868, - -0.14529147744178772, - 0.24459832906723022, - 0.24535557627677917, - -0.11421000212430954, - -0.1129978820681572, - -0.30976128578186035, - 0.18432126939296722, - 0.05019228160381317, - 0.2384565770626068, - 0.12331455945968628, - -0.25998473167419434, - 0.17488107085227966, - -0.06560686230659485, - -0.23357824981212616, - 0.15521836280822754, - -0.16593274474143982, - -0.1576358675956726, - 0.4989814758300781, - 0.05092253535985947, - -0.08330187201499939, - 0.15839987993240356, - 0.3273718059062958, - 0.1789856106042862, - 0.021622417494654655, - -0.08829770982265472, - 0.00846201553940773, - -0.4490392804145813, - 0.2554747462272644, - -0.08211470395326614, - -0.149913027882576, - -0.4093863368034363, - 0.10268251597881317, - -0.09163713455200195, - -0.2408151924610138, - 0.4805627465248108, - -0.18071678280830383, - -0.048656970262527466, - -0.03038608655333519, - -0.15858371555805206, - 0.03689543157815933, - -0.25902968645095825, - 0.1336105316877365, - 0.37157315015792847, - 0.06220059469342232, - 0.21135851740837097, - 0.1647842675447464, - -0.06509989500045776, - 0.34585052728652954, - -0.3354659080505371, - -0.33058521151542664, - -0.29961922764778137, - -0.14873506128787994, - -0.01010885275900364, - -0.35397595167160034, - 0.01279933750629425, - -0.06509362906217575, - 0.01087331771850586, - 0.23828469216823578, - -0.1385555863380432, - -0.2002955973148346, - -0.12080001085996628, - -0.09788139164447784, - 0.1841183602809906, - -0.1585860252380371, - 0.16171488165855408, - -0.40340036153793335, - 0.009950034320354462, - -0.28218626976013184, - -0.03077949956059456, - 0.3286609351634979, - 0.023091565817594528, - -0.21082238852977753, - 0.29606693983078003, - 0.06933808326721191, - -0.48805296421051025, - -0.4823635220527649, - 0.06469932943582535, - -0.31950074434280396, - 0.30493563413619995, - -0.21087253093719482, - 0.0875583216547966, - 0.4066821336746216, - -0.0853029415011406, - 0.2061665654182434, - 0.3255894184112549, - 0.49005091190338135, - 0.05144333839416504, - 0.1125626191496849, - 0.0013696402311325073, - -0.10166411101818085, - 0.04174596071243286, - -0.44953781366348267, - 0.045084863901138306, - 0.05771317705512047, - -0.08910995721817017, - 0.2623455226421356, - 0.24640654027462006, - 0.11367761343717575, - -0.32870692014694214, - -0.09174969792366028, - 0.32928982377052307, - 0.1261325180530548, - 0.1458982527256012, - -0.046844232827425, - 0.2645372152328491, - 0.7887958884239197, - 0.038384050130844116, - -0.1966702938079834, - 0.16988855600357056, - -0.1961507946252823, - -0.1110076904296875, - 0.25232040882110596, - -0.10560067743062973, - 0.23622725903987885, - -0.08181202411651611, - -0.048231080174446106, - 0.3462892770767212, - -0.07239373028278351, - -0.14689849317073822, - -0.1532508283853531, - 0.0557711161673069, - -0.033861108124256134, - -0.45571064949035645, - 0.26195764541625977, - -0.25430983304977417, - -0.09292025119066238, - 0.4105997681617737, - -0.13970857858657837, - -0.2790803909301758, - 0.07117658108472824, - 0.18175937235355377, - -0.5349920988082886, - 0.2550427317619324, - -0.07486564666032791, - 0.1134282648563385, - 0.24906429648399353, - -0.04243599250912666, - -0.23666946589946747, - -0.0027700886130332947, - 0.20715011656284332, - -4.1719526052474976e-05, - -0.12619619071483612, - -0.03286398947238922, - -0.128810852766037, - 0.1990654021501541, - 0.4536164402961731, - -0.0015131477266550064, - 0.17493194341659546, - 0.34009402990341187, - -0.1793300360441208, - -0.11215025931596756, - -0.04416448995471001, - -0.05121298134326935, - 0.24006140232086182, - -0.31121349334716797, - -0.2717509865760803, - -0.19144973158836365, - 0.2488461136817932, - -0.04174831137061119, - -0.2528179883956909, - 0.20812097191810608, - -0.030365241691470146, - -0.056994277983903885, - -0.1414940506219864, - 0.4065503180027008, - 0.17571111023426056, - 0.009257098659873009, - 0.6271113157272339, - 0.04087134078145027, - -0.16922305524349213, - 0.3091869354248047, - -0.17213496565818787, - 0.2699822783470154, - -0.08422352373600006, - -0.37675726413726807, - -0.30431613326072693, - -0.09750919044017792, - -0.18563100695610046, - -0.13736270368099213, - -0.03263430669903755, - 0.054255589842796326, - -0.1422896534204483, - -0.07827696204185486, - 0.11504770815372467, - -0.0009004438761621714, - 0.14770765602588654, - 0.1936701536178589, - 0.5093162059783936, - -0.07697384059429169, - -0.3184918761253357, - 0.033418118953704834, - -0.16829243302345276, - 0.1554146558046341, - -0.039780013263225555, - 0.015141483396291733, - -0.3109550178050995, - 0.3239828944206238, - -0.19746467471122742, - 0.07195942103862762, - -0.022807709872722626, - -0.1506001055240631, - -0.27553820610046387, - -0.40653306245803833, - 0.06227269768714905, - 0.006492896005511284, - -0.08410124480724335, - 0.010814206674695015, - 0.2038450688123703, - 0.04493845999240875, - -0.23208191990852356, - 0.11181776225566864, - 0.3160119652748108, - 0.16281871497631073, - -0.00028581544756889343, - 0.2481541931629181, - 0.1376548707485199, - -0.13691338896751404, - 0.22288841009140015, - -0.00031397491693496704, - 0.12424523383378983, - 0.09831471741199493, - -0.41922247409820557, - -0.09688174724578857, - 0.05529389902949333, - -0.3952501714229584, - -0.06656894832849503, - 0.23003879189491272, - 0.061884332448244095, - 0.003401000052690506, - -0.09492473304271698, - -0.07218591868877411, - 0.23426181077957153, - -0.43210482597351074, - -0.10506930947303772, - 0.4241871237754822, - -0.17007039487361908, - 0.4095035791397095, - 0.016066819429397583, - -0.286850243806839, - -0.16375477612018585, - 0.08804114907979965, - -0.3778175711631775, - 0.21149899065494537, - 0.0860079675912857, - -0.22953258454799652, - -0.09721724689006805, - -0.15336279571056366, - -0.11439813673496246, - -0.055991992354393005, - 0.06729795783758163, - 0.20628632605075836, - 0.048323169350624084, - 0.19144345819950104, - -0.35162487626075745, - 0.10775546729564667, - -0.319551944732666, - -0.42717263102531433, - -0.20851175487041473, - 0.23914705216884613, - 0.023892007768154144, - -0.023760763928294182, - 0.07325327396392822, - 0.027908936142921448, - -0.22596696019172668, - -0.32983237504959106, - 0.01151999831199646, - -0.18768593668937683, - 0.6030633449554443, - 0.03443092107772827, - -0.094368577003479, - 0.17755207419395447, - -0.24652066826820374, - 0.14295069873332977, - 0.14117196202278137, - 0.2862781882286072, - 0.16126519441604614, - 0.20174260437488556, - 0.21768182516098022, - 0.3508859872817993, - 0.3642650246620178, - 0.06048420071601868, - 0.11228246241807938, - -0.01619621179997921, - 0.04915003478527069, - -0.16038154065608978, - -0.14777955412864685, - 0.4062119424343109, - -0.38699546456336975, - 0.06568989902734756, - 0.08522632718086243, - 0.10896672308444977, - -0.24720799922943115, - -0.14860254526138306, - 0.02438458800315857, - 0.03181155025959015, - -0.07101091742515564, - -0.3253816068172455, - -0.25519171357154846, - 0.12036871910095215, - -0.416866660118103, - -0.09823688864707947, - 0.17580446600914001, - 0.23086783289909363, - 0.13085639476776123, - -0.014502979815006256, - -0.06492513418197632, - -0.4745086133480072, - 0.2985357344150543, - 0.3817300796508789, - -0.0046818070113658905, - 0.12240583449602127, - -0.07319547981023788, - 0.250882089138031, - 0.497036337852478, - -0.0006879791617393494, - -0.12899065017700195, - 0.03423226252198219, - -0.011099658906459808, - -0.0590672492980957, - 0.0592232346534729, - -0.11508695781230927, - 0.015379764139652252, - -0.38003501296043396, - 0.020966289564967155, - -0.1184057742357254, - -0.5067121386528015, - 0.09947311878204346, - -0.32564812898635864, - -0.3854447305202484, - -0.02750253677368164, - 0.0954226478934288, - -0.1266884207725525, - 0.14535966515541077, - 0.21293872594833374, - 0.463053822517395, - 0.14017099142074585, - 0.021533723920583725, - 0.25957775115966797, - -0.510695219039917, - -0.18367788195610046, - 0.18255847692489624, - -0.050550997257232666, - 0.1913098692893982, - 0.02761061117053032, - 0.30185237526893616, - 0.4022231101989746, - 0.431317001581192, - -0.3444938659667969, - 0.2470586746931076, - 0.2515931725502014, - 0.2559956908226013, - -0.37206217646598816, - -10.831937789916992, - 0.24646838009357452, - -0.14392134547233582, - 0.5180757641792297, - -0.14971095323562622, - -0.03557116538286209, - -0.02863197773694992, - 0.15279504656791687, - 0.21674880385398865, - 0.2877245545387268, - -0.24807164072990417, - 0.060724351555109024, - 0.3617299199104309, - 0.32060056924819946, - -0.12450279295444489, - 0.04984812065958977, - -0.17435088753700256, - 0.1971028745174408, - -0.2029043287038803, - 0.16108888387680054, - 0.18725277483463287, - 0.3026028275489807, - -0.24498075246810913, - 0.29923421144485474, - 0.12469060719013214, - -0.05368555337190628, - -0.2760915458202362, - 0.31406059861183167, - -0.06642401218414307, - -0.44017544388771057, - 0.32242220640182495, - 0.1829984486103058, - -0.20154017210006714, - 0.24639548361301422, - -0.06700929254293442, - -0.13153594732284546, - -0.03024989366531372, - 0.010064341127872467, - 0.09532149136066437, - -0.05738985538482666, - 0.06875564157962799, - -0.073263019323349, - 0.028717659413814545, - 0.29055947065353394, - -0.17149873077869415, - -0.2919727563858032, - -0.3191659450531006, - -1.3544580936431885, - 0.18604397773742676, - 0.27028942108154297, - 0.35888671875, - 0.0461045503616333, - 0.23725414276123047, - 0.2954067885875702, - -0.27310559153556824, - 0.007919851690530777, - -0.22170592844486237, - 0.22358232736587524, - 0.10117414593696594, - -0.20946954190731049, - 0.2748386263847351, - -0.18665048480033875, - 0.20294475555419922, - -0.47866290807724, - -0.2365807145833969, - 0.10222537070512772, - -0.03457706421613693, - -0.017110517248511314, - -0.10610051453113556, - -0.2230035960674286, - -0.444757342338562, - -0.05684872344136238, - 0.17132651805877686, - -0.043878305703401566, - 0.3603177070617676, - -0.0768551230430603, - -0.4540203809738159, - 0.20816829800605774, - -0.002235580235719681, - 0.2262583076953888, - 0.2741658687591553, - -0.04602742940187454, - 0.22836074233055115, - -0.16489854454994202, - -0.18109923601150513, - -0.3006269633769989, - 0.08404020965099335, - 0.38976383209228516, - -0.09542255848646164, - -0.16560132801532745, - 0.0863485336303711, - 0.18521104753017426, - -0.0032340139150619507, - -0.0783798098564148, - -0.4946853518486023, - 0.10106542706489563, - 0.18657535314559937, - 0.011812053620815277, - 0.11058761179447174, - -0.20258143544197083, - -0.24303673207759857, - -0.06153615936636925, - -0.20401030778884888, - -0.5645541548728943, - -0.24207338690757751, - 0.284088671207428, - 0.2871110439300537, - 0.15522363781929016, - 0.11855602264404297, - 0.11679840832948685, - 0.17434605956077576, - -0.10265945643186569, - 0.5012632608413696, - 0.40620702505111694, - 0.14352789521217346, - -0.18981163203716278, - -0.1582859754562378, - 0.008393794298171997, - -0.2276940792798996, - 0.09434521198272705, - 0.33295339345932007, - 0.04517092555761337, - 0.25691020488739014, - 0.6408071517944336, - -0.06869882345199585, - 0.023283392190933228, - 0.9037225842475891, - -0.38384512066841125, - 0.5766766667366028, - -0.015866786241531372, - 0.10324790328741074, - 0.014261778444051743, - -0.11121969670057297, - 0.22141292691230774, - 0.180240660905838, - -0.16019640862941742, - 0.42217200994491577, - 0.13101716339588165, - -0.32906538248062134, - 0.08930487930774689, - -0.20802795886993408, - 0.4570109248161316, - 0.13498859107494354, - 0.0578104704618454, - -0.13888096809387207, - -0.2891021966934204, - -0.3635624945163727, - 0.015923835337162018, - -0.14917075634002686, - -0.10793698579072952, - -0.11837610602378845, - 0.21120737493038177, - -0.043733999133110046, - -0.14604198932647705, - 0.30076873302459717, - 0.07965907454490662, - 0.026789143681526184, - -0.0994078665971756, - -0.42464298009872437, - -0.12217742204666138, - 0.0050747692584991455, - 0.5033242702484131, - 0.2736607789993286, - -0.08555269241333008, - -0.26413995027542114, - 0.34121304750442505, - -0.10038420557975769, - 0.17320673167705536, - 0.19697876274585724, - 0.013582564890384674, - -0.3914993703365326, - 0.17125779390335083, - 0.006498765200376511, - -0.40618833899497986, - -0.17143946886062622, - -0.30856558680534363, - 0.15081411600112915, - -0.17511332035064697, - -0.013049963861703873, - 0.47596991062164307, - 0.2743627727031708, - 0.03840314969420433, - 0.10192780941724777, - -0.3956719636917114, - 0.31400951743125916, - 0.19255207479000092, - 0.16658376157283783, - 0.20138844847679138, - -0.047207776457071304, - -0.41338497400283813, - -0.30670416355133057, - 0.0767974853515625, - -0.19766026735305786, - -0.12404906004667282, - 0.23401625454425812, - 0.1205226331949234, - -0.14431576430797577, - 0.050111185759305954, - -0.2666166424751282, - -0.07771646976470947, - -0.3870171010494232, - 0.2369057834148407, - 0.16285769641399384, - -0.49654126167297363, - 0.10719437897205353, - -0.0726730152964592, - 0.3677505552768707, - 0.18041354417800903, - -0.4210672378540039, - 0.3003746271133423, - -0.17996804416179657 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_053.json b/src/benchmark/output/results/results_graph_053.json deleted file mode 100644 index fe46680..0000000 --- a/src/benchmark/output/results/results_graph_053.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "The patient in question is a [age]-year-old individual who was initially diagnosed with lung and mediastinal lesions. The diagnosis was made in [year] and marked the beginning of a complex treatment journey.\n\nFollowing the initial diagnosis, the patient transitioned to radiotherapy for the lung and mediastinal lesions (N1 to N2). This marked an important step in the patient's care, as it aimed to alleviate symptoms and slow disease progression. However, this was followed by another significant change when the patient began chemotherapy with albumin-bound paclitaxel and cisplatin, with recombinant human endostatin added in the 4th cycle (N2 to N3). Unfortunately, treatment was not completed due to cardiac reactions, resulting in stable disease.\n\nThe patient's condition continued to evolve as they developed symptoms of chest tightness and shortness of breath. These symptoms persisted despite hospitalization for worsening shortness of breath (N5 to N6), where ECG abnormalities and lab results indicating elevated troponin, BNP, and myoglobin were noted. The initial treatment included a range of medications aimed at managing these complications.\n\nDespite the efforts to manage symptoms, the patient's condition continued to deteriorate. A coronary angiography revealed significant stenosis in the left main trunk (N6 to N7), which further complicated the patient's care. Notably, anticoagulant therapy was not initiated due to concerns about gastrointestinal bleeding secondary to long-term aspirin use.\n\nThroughout this journey, the patient has been managed with a range of treatments, including medications and procedures aimed at addressing complications such as cardiac reactions, chest tightness, and shortness of breath. The timeline of diagnoses and treatments is complex, reflecting the evolving nature of the patient's condition.\n\nThe patient's age and demographic information are not explicitly stated in the provided data, but based on the treatment journey described, it can be inferred that this individual has been living with a serious health condition for several years.", - "bertscore": { - "precision": [ - 0.6489934921264648 - ], - "recall": [ - 0.6017652750015259 - ], - "f1": [ - 0.6244877576828003 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 7, - "edge_count": 6, - "avg_in_degree": 0.8571428571428571, - "density": 0.14285714285714285 - }, - "trajectory_embedding": [ - 0.17100100219249725, - 0.01172204501926899, - -0.21289609372615814, - 0.19774876534938812, - 0.11490162461996078, - 0.15191338956356049, - -0.03697091341018677, - 0.23890110850334167, - 0.5338540077209473, - -0.3338589072227478, - -0.10677526146173477, - 0.1514439433813095, - -0.44707658886909485, - -0.2678467631340027, - 0.006834420841187239, - 0.15527208149433136, - -0.11113017052412033, - 0.2591327130794525, - -0.09351473301649094, - -0.20768888294696808, - -0.16499637067317963, - 0.09954027831554413, - -0.4701754152774811, - -0.020324762910604477, - 0.11852780729532242, - -0.06426599621772766, - 0.33649319410324097, - 0.6274865865707397, - 0.18352051079273224, - 0.30850425362586975, - 0.08665106445550919, - -0.03726126626133919, - -0.08848248422145844, - 0.013605847023427486, - -0.20068073272705078, - 0.14376775920391083, - 0.1463918834924698, - 0.012711933813989162, - -0.21329282224178314, - 0.06016463786363602, - -0.13615386188030243, - 0.10873724520206451, - 0.7263768911361694, - 0.2762015461921692, - 0.3738660514354706, - -0.4993719756603241, - -0.07149950414896011, - 0.6947835087776184, - -0.4605201184749603, - -0.1495877057313919, - 0.3336849808692932, - 0.6468313932418823, - 0.47226986289024353, - -0.36773309111595154, - 0.3829520642757416, - -0.24915626645088196, - -0.10759878158569336, - -0.3838324248790741, - -0.1543833166360855, - 0.15415135025978088, - 0.08567430824041367, - -0.10774904489517212, - 0.3047535717487335, - -0.22125987708568573, - -0.14934059977531433, - -0.20016419887542725, - -0.2885456383228302, - 0.02380061335861683, - 0.05224994570016861, - -0.14045299589633942, - -0.28438031673431396, - -0.3955760896205902, - -0.159181609749794, - 0.1616220623254776, - 0.23758140206336975, - -0.1629956066608429, - 0.3648713231086731, - -0.23331484198570251, - 0.08615858107805252, - 0.07766558974981308, - -0.08805838972330093, - 0.0022421765606850386, - -0.12579445540905, - 0.29239121079444885, - -0.47865670919418335, - -0.0019257919630035758, - -0.03364467993378639, - -0.3095218539237976, - -0.3319779336452484, - 0.2068275362253189, - 0.004538444336503744, - -0.5003085732460022, - 0.0974946841597557, - -0.15187697112560272, - 0.11915046721696854, - 0.10334234684705734, - 0.3709621727466583, - 0.2474813610315323, - 0.8601303696632385, - 0.006439132150262594, - 0.20540118217468262, - -0.049783919006586075, - 0.11110716313123703, - -0.16807867586612701, - 0.298078715801239, - -0.21528120338916779, - 0.1959475427865982, - -0.44597768783569336, - 0.17520877718925476, - 0.38327616453170776, - -0.05869729071855545, - -0.33759233355522156, - 0.04677050560712814, - -0.42605504393577576, - 0.16364312171936035, - 0.08517057448625565, - 0.0027300757355988026, - 0.1446908563375473, - 0.23417554795742035, - -0.5083310604095459, - -0.13706664741039276, - -0.1675989329814911, - 0.43946439027786255, - 0.28368955850601196, - -0.5352855920791626, - -0.008423960767686367, - -0.09388279914855957, - 0.0690157413482666, - -0.20451389253139496, - 0.17577232420444489, - -0.48916059732437134, - -0.2847658097743988, - -0.07840248197317123, - 0.02749628759920597, - -0.28859391808509827, - 0.38677874207496643, - -0.3567811846733093, - 0.24413646757602692, - -1.092475175857544, - 0.23130880296230316, - -0.4474027156829834, - -0.17902925610542297, - 0.1882493942975998, - -0.625089168548584, - -0.16087977588176727, - -0.11653619259595871, - -0.19434748589992523, - 0.11690963804721832, - -0.20534853637218475, - -0.18866467475891113, - 0.10551813989877701, - -0.13814431428909302, - 0.2587955892086029, - 0.4571447968482971, - 0.06362473964691162, - 0.09472285211086273, - 0.06336577981710434, - 0.3045656681060791, - 0.18465708196163177, - -0.12187506258487701, - 0.13138042390346527, - 0.6344067454338074, - 0.01855069026350975, - 0.03687042370438576, - -0.03251279518008232, - -0.7075977921485901, - -0.031911078840494156, - -0.24646680057048798, - 0.08599924296140671, - 0.05160089209675789, - -0.07021670043468475, - 0.08312087506055832, - -0.14292344450950623, - 0.6327731013298035, - 0.11689610034227371, - 0.5186426043510437, - 0.05964914709329605, - 0.24154837429523468, - 0.23561908304691315, - 0.1754046380519867, - 0.07956383377313614, - -0.25514426827430725, - 0.6309335827827454, - 0.32216963171958923, - -0.10558386892080307, - 0.4341564476490021, - 0.3129425644874573, - -0.26681748032569885, - -0.14742815494537354, - 0.05094332620501518, - 0.451366662979126, - -0.2527161240577698, - 0.3837912082672119, - -0.1897650808095932, - -0.004625398200005293, - 0.10092123597860336, - -0.15214654803276062, - -0.18263672292232513, - -0.151779904961586, - -0.029724320396780968, - 0.1512133777141571, - 0.08459486067295074, - -0.32088378071784973, - 0.11378102004528046, - 0.20025239884853363, - -0.1299767941236496, - 0.10940182209014893, - 0.09048126637935638, - 0.07911936193704605, - 0.06689372658729553, - -0.20037414133548737, - 0.14459848403930664, - 0.03134804591536522, - 0.20343337953090668, - -0.026495469734072685, - -0.31806373596191406, - 0.2294769138097763, - -0.02291073463857174, - -0.24677526950836182, - 0.17867790162563324, - -0.061832062900066376, - -0.08554155379533768, - -0.07250199466943741, - 0.02048652432858944, - -0.4265856146812439, - 0.23360513150691986, - 0.18275348842144012, - 0.28285831212997437, - 0.10267741978168488, - 0.02285960502922535, - 0.0520843043923378, - -0.49216774106025696, - 0.2752619981765747, - -0.19124498963356018, - -0.03228912875056267, - -0.3726004958152771, - 0.27938953042030334, - 0.03446498140692711, - 0.061065685003995895, - 0.2689950168132782, - 0.08788073807954788, - -0.1657726913690567, - 0.11356303840875626, - -0.3225928843021393, - -0.1917956918478012, - -0.388960063457489, - 0.10789813101291656, - 0.1842545121908188, - 0.0646943673491478, - 0.29498744010925293, - 0.03642653673887253, - -0.032270386815071106, - 0.13051283359527588, - -0.21828405559062958, - -0.3837900161743164, - -0.2880827486515045, - -0.05526581034064293, - -0.018391774967312813, - -0.528144896030426, - 0.2281871736049652, - 0.02687625028192997, - -0.10383328050374985, - 0.19207577407360077, - -0.33357974886894226, - -0.15060199797153473, - -0.10420278459787369, - 0.06376777589321136, - 0.03733211010694504, - -0.21956856548786163, - -0.0700782909989357, - -0.4142184853553772, - -0.1542847454547882, - 0.05535644292831421, - 0.01932511106133461, - -0.017645327374339104, - 0.06497722864151001, - -0.22565290331840515, - 0.08997087925672531, - 0.3061147630214691, - -0.40247780084609985, - -0.09383560717105865, - 0.2400093823671341, - -0.25934213399887085, - 0.3796001076698303, - -0.168920636177063, - 0.16842913627624512, - 0.2331302911043167, - 0.06186581403017044, - 0.09495898336172104, - 0.5970635414123535, - 0.43322300910949707, - -0.009353501722216606, - 0.0644209235906601, - 0.05224369093775749, - 0.015331150032579899, - -0.022899020463228226, - -0.40473678708076477, - 0.4006102383136749, - -0.281204491853714, - -0.04212673753499985, - 0.0903128907084465, - 0.2303827553987503, - 0.1565549373626709, - -0.2792680561542511, - 0.03031235933303833, - 0.3822140097618103, - 0.1373763531446457, - 0.12471430003643036, - -0.09068803489208221, - 0.4138628840446472, - 0.49196815490722656, - 0.07891718298196793, - -0.06529351323843002, - 0.06035742536187172, - 0.06364093720912933, - -0.15560516715049744, - -0.09094028919935226, - 0.3771493434906006, - 0.45136094093322754, - -0.15570054948329926, - -0.26267415285110474, - 0.2630266547203064, - -0.21795889735221863, - -0.1303381472826004, - -0.1863185316324234, - -0.11796443909406662, - 0.03457719460129738, - -0.1228424683213234, - 0.37951841950416565, - 0.031170835718512535, - 0.00246279570274055, - 0.41730207204818726, - -0.31318336725234985, - -0.13298830389976501, - 0.31936630606651306, - -0.11588530242443085, - -0.5356836915016174, - 0.2674857974052429, - -0.044302936643362045, - 0.026165321469306946, - 0.23012959957122803, - -0.28225386142730713, - -0.1280623972415924, - -0.07541272789239883, - 0.18717481195926666, - -0.02904072031378746, - 0.12683121860027313, - -0.10298130661249161, - 0.08049675077199936, - -0.05848463252186775, - 0.489097535610199, - 0.15787816047668457, - 0.10409598797559738, - 0.6004343628883362, - -0.1780608594417572, - -0.4649643301963806, - 0.0772586241364479, - -0.06998047977685928, - 0.2506263256072998, - -0.22562482953071594, - -0.19465772807598114, - -0.22446107864379883, - 0.10364481061697006, - 0.21837303042411804, - -0.14856888353824615, - 0.0031958334147930145, - 0.21666717529296875, - -0.007610406260937452, - -0.032290246337652206, - 0.35074546933174133, - 0.10883370786905289, - -0.07031030207872391, - 0.547732949256897, - -0.11237557977437973, - -0.17616544663906097, - 0.31050896644592285, - -0.17020276188850403, - 0.19927635788917542, - -0.19449540972709656, - -0.20777522027492523, - -0.4680130183696747, - 0.13593627512454987, - -0.3009422719478607, - -0.17046581208705902, - 0.009019889868795872, - -0.07510928809642792, - 0.07159510999917984, - -0.10804851353168488, - 0.15755628049373627, - 0.08155161887407303, - 0.08600945770740509, - -0.02825811877846718, - 0.34424927830696106, - -0.003742153523489833, - -0.3586452305316925, - 0.07235796749591827, - -0.007372724357992411, - 0.11125193536281586, - -0.2928902804851532, - 0.17747437953948975, - -0.043546710163354874, - 0.5521405339241028, - 0.02815089002251625, - 0.14051099121570587, - 0.05909854918718338, - 0.020304983481764793, - -0.07132837176322937, - -0.33573269844055176, - -0.06728563457727432, - -0.04354606196284294, - -0.11208877712488174, - -2.932335701189004e-05, - 0.11677627265453339, - -0.2652531564235687, - -0.2824511229991913, - -0.09639781713485718, - 0.10138951987028122, - 0.1350623071193695, - -0.0869540125131607, - -0.06912440061569214, - 0.4026637375354767, - 0.2285010665655136, - 0.4918633997440338, - -0.37914684414863586, - 0.2500379681587219, - 0.18726885318756104, - -0.3283156752586365, - -0.08630543202161789, - -0.06418611109256744, - -0.32360735535621643, - 0.005279677454382181, - 0.16871704161167145, - 0.3007362484931946, - 0.12491422146558762, - -0.05362760275602341, - 0.13641060888767242, - 0.06280901283025742, - -0.2879883348941803, - 0.02127690240740776, - 0.4871537387371063, - 0.0629173293709755, - 0.39538416266441345, - -0.011763920076191425, - -0.42817214131355286, - -0.23108455538749695, - -0.11256667226552963, - -0.37668153643608093, - 0.08490006625652313, - 0.24711458384990692, - -0.13663576543331146, - -0.1400398164987564, - 0.1589566171169281, - 0.03949296474456787, - -0.06337105482816696, - 0.11664221435785294, - -0.1760568916797638, - 0.24378632009029388, - 0.10223359614610672, - -0.30523091554641724, - 0.12192542850971222, - -0.2233382612466812, - -0.533306896686554, - -0.25841790437698364, - 0.31091830134391785, - 0.19524700939655304, - -0.288938045501709, - -0.038094453513622284, - 0.1019466295838356, - -0.026005038991570473, - -0.2828468382358551, - 0.10415085405111313, - -0.10341385751962662, - 0.5106364488601685, - -0.020691562443971634, - -0.15194548666477203, - 0.06794970482587814, - -0.300289124250412, - -0.07811343669891357, - 0.08984720706939697, - 0.013593414798378944, - 0.444155752658844, - 0.1953645944595337, - 0.2376483529806137, - 0.46534332633018494, - 0.22318466007709503, - 0.020042750984430313, - 0.3159398138523102, - 0.0052218311466276646, - 0.06239974871277809, - -0.06658835709095001, - -0.21927247941493988, - 0.2775903642177582, - -0.4601425528526306, - -0.006048652809113264, - 0.15806253254413605, - 0.3728953003883362, - -0.37755754590034485, - -0.39288315176963806, - 0.07657933235168457, - -0.24903453886508942, - -0.08021024614572525, - -0.07371076196432114, - -0.0528247095644474, - -0.1615319401025772, - -0.2654031217098236, - 0.10253708809614182, - 0.1720353364944458, - 0.31135082244873047, - 0.16231386363506317, - 0.013995245099067688, - -0.37161439657211304, - -0.2250300943851471, - 0.17971684038639069, - 0.2776537537574768, - -0.01491178385913372, - 0.005444915033876896, - -0.08520027250051498, - 0.2877308428287506, - 0.36741966009140015, - -0.0857776403427124, - -0.05094502493739128, - -0.001286128768697381, - 0.19180725514888763, - 0.19552956521511078, - 0.030790627002716064, - -0.20318198204040527, - 0.23981483280658722, - -0.3726024329662323, - -0.0009107972728088498, - -0.049984853714704514, - -0.18804553151130676, - 0.35033801198005676, - -0.213377445936203, - -0.5057328343391418, - 0.0018925443291664124, - 0.2909131646156311, - -0.099146768450737, - -0.1993604600429535, - 0.05558851361274719, - 0.38665562868118286, - -0.027765026316046715, - -0.15315087139606476, - -0.025464508682489395, - -0.3749809265136719, - -0.1438710242509842, - 0.0754445418715477, - -0.08469874411821365, - 0.058662328869104385, - 0.051381487399339676, - 0.35544610023498535, - 0.4800654351711273, - 0.266383558511734, - -0.2524513900279999, - 0.37617596983909607, - 0.3144438564777374, - 0.2590644955635071, - -0.3073919713497162, - -10.73615550994873, - -0.14148171246051788, - -0.4415019154548645, - 0.4704132378101349, - -0.18455982208251953, - 0.08499276638031006, - -0.26629844307899475, - 0.05361584201455116, - 0.12853150069713593, - 0.10459945350885391, - -0.19463495910167694, - -0.046458806842565536, - 0.18511120975017548, - 0.3033631145954132, - 0.21903565526008606, - 0.23645640909671783, - -0.29071542620658875, - 0.24516674876213074, - 0.010741723701357841, - 0.1828749179840088, - 0.25786033272743225, - 0.39176324009895325, - -0.287773460149765, - 0.09634155035018921, - -0.1945691555738449, - -0.4117409586906433, - -0.2066155970096588, - 0.4852396547794342, - 0.26736006140708923, - -0.18429994583129883, - 0.32252365350723267, - 0.08467023819684982, - -0.2598281502723694, - 0.03414541482925415, - -0.08408021181821823, - -0.16580632328987122, - -0.1256483495235443, - 0.32154157757759094, - 0.1343560367822647, - -0.0898323580622673, - 0.06353811174631119, - -0.21296975016593933, - 0.20939742028713226, - 0.07985307276248932, - -0.14449474215507507, - -0.5243708491325378, - -0.14403867721557617, - -1.5034592151641846, - 0.04413445666432381, - 0.3742007911205292, - 0.35636359453201294, - 0.035002660006284714, - 0.09784924983978271, - 0.34718984365463257, - -0.39871707558631897, - -0.0130897993221879, - -0.26208317279815674, - -0.07611887902021408, - 0.2885091006755829, - 0.092270128428936, - -0.013246892020106316, - -0.04186173155903816, - 0.48246297240257263, - -0.0046471888199448586, - -0.3662783205509186, - 0.3224092423915863, - -0.11527599394321442, - -0.1642409861087799, - -0.23173284530639648, - -0.47847214341163635, - -0.7642673850059509, - -0.039810873568058014, - -0.01895822398364544, - 0.08913274109363556, - 0.3285217881202698, - 0.003354056505486369, - -0.2411489486694336, - 0.17458154261112213, - 0.03856223449110985, - 0.28193092346191406, - 0.2344440370798111, - 0.13761982321739197, - 0.0316561758518219, - -0.18293459713459015, - 0.0007082947413437068, - -0.10183478146791458, - 0.29677852988243103, - 0.48663806915283203, - 0.016980256885290146, - 0.00042689271504059434, - 0.07147838175296783, - 0.2905617356300354, - -0.0540410652756691, - -0.05438515543937683, - -0.4179891049861908, - 0.09178335219621658, - -0.037066392600536346, - 0.13005496561527252, - -0.14459240436553955, - -0.18306554853916168, - -0.20466716587543488, - 0.03651946038007736, - -0.12245716899633408, - -0.511111319065094, - -0.4696480333805084, - 0.36203640699386597, - 0.3340136408805847, - -0.08825206756591797, - 0.02906821109354496, - -0.18552137911319733, - 0.03877456113696098, - 0.026951655745506287, - 0.3871261477470398, - 0.3181215822696686, - 0.3022526204586029, - 0.01529880054295063, - -0.042525459080934525, - -0.23556050658226013, - -0.012458854354918003, - -0.20570513606071472, - 0.43123674392700195, - -0.029536444693803787, - -0.015221425332129002, - 0.5441558361053467, - -0.009173333644866943, - -0.035774923861026764, - 0.7406247854232788, - -0.3937263488769531, - 0.39137062430381775, - -0.013164905831217766, - 0.0961257740855217, - -0.17442461848258972, - -0.43023523688316345, - 0.09774846583604813, - 0.3492068946361542, - -0.43372392654418945, - 0.6945797204971313, - 0.2833877503871918, - -0.2448021024465561, - -0.0571584515273571, - -0.3274467885494232, - 0.2153135985136032, - 0.19341155886650085, - 0.23870344460010529, - -0.20771363377571106, - -0.11539062112569809, - -0.2974030375480652, - -0.002839918714016676, - -0.3126678466796875, - -0.1707625538110733, - -0.14578597247600555, - 0.046418897807598114, - 0.006933932658284903, - 0.020693322643637657, - 0.20589579641819, - 0.18723252415657043, - -0.163631409406662, - -0.13990086317062378, - -0.357511967420578, - -0.25564637780189514, - 0.020241592079401016, - 0.7646552324295044, - 0.04144992306828499, - -0.14769421517848969, - 0.023255493491888046, - 0.21928749978542328, - -0.04082940146327019, - 0.03222467750310898, - 0.1012636050581932, - 0.03582748770713806, - -0.3437248170375824, - 0.12110476940870285, - 0.1621411293745041, - -0.4145309627056122, - -0.14715680480003357, - -0.133422389626503, - -0.016409102827310562, - 0.06696154922246933, - -0.18553867936134338, - 0.19406889379024506, - 0.34697484970092773, - 0.054065264761447906, - 0.11948585510253906, - -0.15907779335975647, - -0.09753081947565079, - 0.009691094048321247, - 0.40486088395118713, - 0.07232224941253662, - -0.3861137926578522, - -0.3529038429260254, - -0.48146969079971313, - 0.19582390785217285, - -0.4145156741142273, - 0.09389970451593399, - -0.047726165503263474, - 0.1124381497502327, - -0.23491093516349792, - 0.17927539348602295, - -0.14224475622177124, - 0.1265493929386139, - -0.35552749037742615, - 0.1961769014596939, - 0.41992321610450745, - -0.4877544939517975, - 0.4726913273334503, - -0.08445429801940918, - 0.19499151408672333, - -0.009040338918566704, - -0.2341529130935669, - 0.008638948202133179, - -0.19954811036586761 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_054.json b/src/benchmark/output/results/results_graph_054.json deleted file mode 100644 index d7b8fe9..0000000 --- a/src/benchmark/output/results/results_graph_054.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 49-year-old male with a significant smoking history (37 pack-years). He was admitted to the local hospital with acute abdominal pain, which marked the beginning of his clinical journey.\n\n**Timeline of Diagnoses and Treatments:**\n\n1. **Initial Presentation:** The patient presented with acute abdominal pain, which led to an enhanced CT scan revealing a 4.0 cm soft tissue mass within the small intestine and mid-lower intestine intussusception (N2).\n2. **Surgical Intervention:** Admitted to the general surgery ward, the patient underwent intussusception surgery on April 8, 2019 (N3). During surgery, an irregular, hard, solid white mass involving the intestine was identified.\n3. **Initial Pathological Diagnosis:** The resected specimen showed a multinodular mass with a tan-white cut surface and firm consistency, thin envelope observed in the periphery of the mass (N4).\n4. **Detailed Pathology and Immunohistochemistry Results:** Histological examination revealed tumor located within the submucosa and lamina propria of the intestinal wall with mucosal erosion, neoplastic cells embedded within the inflammatory background. Immunohistochemistry results confirmed ALK-positive inflammatory myofibroblastic tumor (IMT), highly suspicious for epithelioid inflammatory myofibroblastic sarcoma (EIMS) (N5).\n\n**Diagnosis and Treatment Outcomes:**\n\nThe patient was diagnosed with a suspected case of epithelioid inflammatory myofibroblastic sarcoma (EIMS). Given the ALK-positive status, treatment options were considered. However, no specific treatment details are provided in this data.\n\n**Conclusion:**\nThis clinical case report highlights the importance of a thorough diagnostic workup and the significance of molecular testing in identifying rare and aggressive tumors like EIMS. Further investigation into the patient's treatment plan is necessary to determine the most effective course of action for this unique diagnosis.\n\n**Recommendations:**\n\n1. **Multidisciplinary Team Approach:** Collaboration between surgeons, pathologists, radiologists, and oncologists is crucial for managing complex cases like this.\n2. **Molecular Testing:** Regular molecular testing can help identify potential biomarkers for targeted therapies in EIMS patients.\n3. **Clinical Trials Participation:** Patients with rare tumors like EIMS should be considered for participation in clinical trials to explore new treatment options.\n\n**Future Directions:**\n\n1. **Research on EIMS:** Further studies are needed to understand the biology and behavior of EIMS, as well as to identify potential therapeutic targets.\n2. **Development of New Treatment Strategies:** Researchers should focus on developing novel treatments for EIMS, including targeted therapies and immunotherapies.\n\nBy sharing this clinical case report, we aim to raise awareness about the importance of accurate diagnosis and treatment planning in managing rare and aggressive tumors like EIMS.", - "bertscore": { - "precision": [ - 0.6755951046943665 - ], - "recall": [ - 0.7064059972763062 - ], - "f1": [ - 0.6906570792198181 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 5, - "edge_count": 4, - "avg_in_degree": 0.8, - "density": 0.2 - }, - "trajectory_embedding": [ - 0.2819657325744629, - 0.01156010851264, - -0.19529643654823303, - -0.042242903262376785, - 0.0824071615934372, - -0.062329452484846115, - 0.08502864092588425, - -0.14531011879444122, - 0.2912984788417816, - -0.3691332936286926, - -0.4327576160430908, - 0.2096576988697052, - -0.7493955492973328, - 0.01814318634569645, - -0.5375791788101196, - 0.016119401901960373, - 0.22100715339183807, - 0.18724648654460907, - 0.03841910511255264, - -0.21638181805610657, - -0.48673343658447266, - 0.07024292647838593, - -0.3643311858177185, - -0.23545090854167938, - 0.14727391302585602, - 0.009976985864341259, - 0.22331109642982483, - 0.46797052025794983, - 0.31234797835350037, - 0.1649298369884491, - 0.187848761677742, - 0.28659406304359436, - -0.19404426217079163, - 0.08399435132741928, - -0.2307843267917633, - 0.5273750424385071, - 0.3137717545032501, - 0.3533502519130707, - -0.01034017838537693, - 0.16888263821601868, - 0.025408577173948288, - 0.06290604174137115, - 0.6615124940872192, - 0.5666652917861938, - 0.5595418214797974, - -0.5713450312614441, - -0.002448448445647955, - 0.41315245628356934, - -0.6382060050964355, - -0.022182364016771317, - 0.11898112297058105, - 0.7024340629577637, - 0.5959348678588867, - 0.10346529632806778, - 0.3609403967857361, - -0.010024135932326317, - -0.41306430101394653, - -0.09724655747413635, - -0.2617156505584717, - 0.12284529209136963, - -0.005021440796554089, - 0.06885652989149094, - -0.14805562794208527, - -0.020574724301695824, - -0.3853421211242676, - -0.18950721621513367, - 0.0011491298209875822, - -0.009224670939147472, - -0.12623415887355804, - -0.5179650783538818, - -0.41000232100486755, - -0.16581407189369202, - -0.23971864581108093, - 0.026845943182706833, - 0.1398806869983673, - -0.4564540982246399, - 0.3844260573387146, - 0.2364782840013504, - -0.03694479539990425, - 0.06192534416913986, - 0.15585803985595703, - -0.06395810842514038, - 0.22396664321422577, - 0.010370844043791294, - -0.3596239984035492, - 0.13184896111488342, - -0.029421698302030563, - -0.005504290573298931, - -0.145220085978508, - 0.19270962476730347, - 0.2139541655778885, - -0.0691504031419754, - -0.24397054314613342, - -0.11164649575948715, - 0.16217145323753357, - -0.14121678471565247, - -0.005196228623390198, - 0.4833621382713318, - 0.8817175626754761, - 0.006323543377220631, - 0.18569307029247284, - 0.3828979432582855, - 0.3616761565208435, - -0.13213948905467987, - 0.4813898205757141, - -0.09522002935409546, - 0.20643095672130585, - -0.3958446979522705, - -0.2907494306564331, - 0.38507378101348877, - -0.10256996005773544, - -0.07805794477462769, - -0.03671841323375702, - -0.42862510681152344, - -0.1323743611574173, - 0.10578533262014389, - -0.26192721724510193, - 0.12471119314432144, - -0.04531417414546013, - -0.25588709115982056, - 0.14686565101146698, - -0.014113294892013073, - 0.4391873776912689, - 0.3200407326221466, - -0.3037782907485962, - 0.1367434561252594, - -0.23748591542243958, - 0.1433216780424118, - 0.029233749955892563, - 0.22284051775932312, - -0.48567837476730347, - -0.17378975450992584, - -0.04064939171075821, - 0.30401086807250977, - -0.07699992507696152, - 0.225277379155159, - -0.5841492414474487, - 0.1473255604505539, - -1.1481292247772217, - 0.1354365348815918, - -0.2891828715801239, - -0.07392589747905731, - 0.03602614626288414, - -0.3595748543739319, - -0.16831736266613007, - -0.28920719027519226, - -0.12690773606300354, - 0.1131347268819809, - 0.0625547543168068, - -0.026239940896630287, - -0.1986147165298462, - 0.10290782153606415, - 0.11960642039775848, - -0.056672610342502594, - 0.2557312548160553, - 0.30895471572875977, - 0.19126012921333313, - 0.1916830688714981, - 0.15540015697479248, - -0.00703870365396142, - -0.18617956340312958, - 0.14683955907821655, - -0.25667130947113037, - -0.057021062821149826, - 0.03640029951930046, - -0.7908259630203247, - 0.5084153413772583, - -0.33375629782676697, - 0.2227286398410797, - 0.24182340502738953, - -0.05195746570825577, - 0.26042163372039795, - -0.03700605034828186, - 0.4879745841026306, - 0.41023963689804077, - 0.42232638597488403, - 0.07641778886318207, - -0.05374490097165108, - 0.04331245273351669, - 0.17478929460048676, - -0.029185574501752853, - 0.039728183299303055, - 0.48788270354270935, - 0.08482994139194489, - -0.3019776940345764, - 0.03680054098367691, - 0.39694899320602417, - -0.26271986961364746, - -0.08964405953884125, - -0.2876098155975342, - 0.4486129879951477, - -0.35308265686035156, - 0.17106133699417114, - -0.4115082323551178, - -0.15082576870918274, - 0.03513195738196373, - -0.3936923146247864, - -0.3235332667827606, - 0.24168696999549866, - -0.23818698525428772, - 0.1304507553577423, - 0.2335294485092163, - -0.1587386578321457, - 0.3151378631591797, - 0.08301068842411041, - -0.040391940623521805, - 0.2454967498779297, - 0.126488596200943, - 0.10284750163555145, - -0.28173309564590454, - -0.4230947494506836, - 0.20568108558654785, - -0.010282578878104687, - 0.20891611278057098, - 0.14070436358451843, - -0.07551243156194687, - 0.5132578611373901, - -0.12277515977621078, - -0.1477503478527069, - 0.21111464500427246, - -0.10337124019861221, - 0.11373928934335709, - 0.6116440892219543, - -0.02891787327826023, - -0.2560272216796875, - 0.22197239100933075, - 0.18883918225765228, - 0.3178527355194092, - 0.11936540901660919, - -0.22341518104076385, - 0.081446073949337, - -0.1539449244737625, - 0.2728028893470764, - -0.08746681362390518, - -0.27951258420944214, - -0.14418792724609375, - 0.16988372802734375, - -0.16448208689689636, - -0.32468995451927185, - 0.3970807194709778, - -0.3475591242313385, - -0.10016006231307983, - 0.000508898519910872, - -0.12484131008386612, - -0.10205300152301788, - -0.13561642169952393, - 0.10606913268566132, - 0.4626343846321106, - 0.0530124232172966, - 0.2949811518192291, - 0.21213805675506592, - -0.014922755770385265, - 0.21438510715961456, - -0.35733336210250854, - -0.03728798031806946, - -0.32251983880996704, - -0.20010869204998016, - -0.03009653463959694, - -0.17133785784244537, - -0.17072144150733948, - 0.19208277761936188, - -0.21260876953601837, - 0.045306820422410965, - -0.30475252866744995, - -0.20405307412147522, - -0.003769330680370331, - -0.11991526931524277, - 0.15337379276752472, - -0.007221841719001532, - 0.34581536054611206, - -0.3109282851219177, - -0.2648845314979553, - -0.1373087614774704, - -0.02402234636247158, - 0.27946537733078003, - 0.1285712569952011, - 0.06717168539762497, - 0.3381385803222656, - 0.11312544345855713, - -0.5430663824081421, - -0.5410584807395935, - 0.1770082265138626, - -0.31392914056777954, - 0.30305618047714233, - -0.11267969757318497, - 0.18842267990112305, - 0.6420873999595642, - -0.14211536943912506, - 0.2482599914073944, - 0.16216333210468292, - 0.6098726987838745, - 0.2301134169101715, - -0.07901699095964432, - 0.1310667246580124, - -0.036422450095415115, - 0.040156953036785126, - -0.37019240856170654, - 0.05949672311544418, - 0.10593041032552719, - -0.11186661571264267, - 0.23038455843925476, - 0.23154819011688232, - 0.08147681504487991, - -0.41597071290016174, - -0.34312954545021057, - 0.5608704686164856, - 0.21357527375221252, - 0.13585183024406433, - -0.09090302884578705, - 0.29289939999580383, - 0.5642803907394409, - 0.11637301743030548, - -0.4090180993080139, - 0.032584480941295624, - -0.17435336112976074, - -0.1940097063779831, - -0.10765485465526581, - -0.12867698073387146, - 0.04984060674905777, - -0.10114653408527374, - 0.012731410562992096, - 0.4958353042602539, - -0.17315582931041718, - -0.18637704849243164, - 0.0931919515132904, - 0.02466379478573799, - -0.04879599064588547, - -0.3212471306324005, - 0.20249846577644348, - -0.36788836121559143, - -0.19267335534095764, - 0.3757289946079254, - -0.14616259932518005, - -0.3999912142753601, - 0.3249477446079254, - 0.09166757017374039, - -0.41328945755958557, - 0.20471489429473877, - -0.20471730828285217, - -0.026013553142547607, - 0.37527355551719666, - 0.07070465385913849, - -0.04677145928144455, - -0.257219523191452, - 0.09950919449329376, - 0.09069094806909561, - -0.24026012420654297, - -0.06821098923683167, - -0.04505574703216553, - 0.24342553317546844, - 0.5499352216720581, - -0.010531236417591572, - -0.17595723271369934, - 0.22296276688575745, - -0.19226904213428497, - -0.16540242731571198, - 0.03457000479102135, - 0.030670464038848877, - 0.0817415714263916, - -0.10850231349468231, - -0.14931195974349976, - -0.14941152930259705, - 0.16228844225406647, - 0.07606784999370575, - -0.31834691762924194, - 0.03720006346702576, - 0.18604466319084167, - -0.17718732357025146, - 0.051259808242321014, - 0.1965215653181076, - 0.30737289786338806, - 0.06997787952423096, - 0.515029788017273, - 0.14422515034675598, - -0.06916314363479614, - 0.23996594548225403, - -0.13686047494411469, - 0.30965667963027954, - -0.11265214532613754, - -0.3902631402015686, - -0.5225185751914978, - -0.08763500303030014, - -0.1360173523426056, - -0.2288244664669037, - 0.06367043405771255, - 0.07010520249605179, - -0.004669687710702419, - 0.016875971108675003, - 0.3325256407260895, - -0.04973766207695007, - 0.09560365974903107, - 0.006523969583213329, - 0.5087031126022339, - -0.19585342705249786, - -0.43661680817604065, - 0.0840020477771759, - -0.06538631021976471, - 0.20009329915046692, - -0.06858948618173599, - -0.22737650573253632, - -0.24373483657836914, - 0.2227402627468109, - -0.20619824528694153, - 0.003876660717651248, - -0.0488007627427578, - -0.22553808987140656, - -0.18322208523750305, - -0.4884607195854187, - -0.20216837525367737, - -0.030023038387298584, - -0.11414720863103867, - -0.1916341781616211, - 0.3237042725086212, - 0.1354282796382904, - -0.2255854308605194, - 0.11419685184955597, - 0.4803258776664734, - 0.3798507750034332, - -0.10202062129974365, - 0.16469919681549072, - 0.021654600277543068, - 0.0533205084502697, - 0.22574946284294128, - 0.03888440132141113, - 0.1390540897846222, - 0.1104675754904747, - -0.2320142239332199, - -0.10046698898077011, - 0.05306949466466904, - -0.2549882233142853, - -0.05469985678792, - 0.11206956207752228, - 0.09330709278583527, - 0.2569495737552643, - 0.03564918786287308, - -0.10288609564304352, - 0.2938670516014099, - -0.38132068514823914, - -0.09856522083282471, - 0.4201720356941223, - -0.03937888145446777, - 0.29909127950668335, - -0.18918009102344513, - -0.25448641180992126, - -0.19327464699745178, - -0.07191035896539688, - -0.3532315790653229, - 0.27596449851989746, - 0.042613573372364044, - -0.2677476108074188, - -0.051544271409511566, - 0.08639760315418243, - -0.05997587367892265, - -0.01986256241798401, - 0.08639562875032425, - 0.2152630090713501, - 0.052332282066345215, - 0.002368220593780279, - -0.4492368698120117, - -0.019947480410337448, - -0.3480650782585144, - -0.3315059244632721, - -0.4616914391517639, - 0.5195516347885132, - 0.31312471628189087, - 0.033030781894922256, - 0.1273924708366394, - -0.012801790609955788, - -0.29804739356040955, - -0.14500217139720917, - 0.029920075088739395, - 0.13169267773628235, - 0.6464425921440125, - 0.07861386239528656, - -0.3326285779476166, - 0.27793365716934204, - -0.379084050655365, - 0.26129403710365295, - 0.05180910974740982, - 0.13850137591362, - 0.30924832820892334, - 0.41900768876075745, - 0.11717581748962402, - 0.4368710517883301, - 0.12804348766803741, - -0.0511070117354393, - 0.2268187552690506, - -0.10402921587228775, - 0.17748552560806274, - -0.10792158544063568, - -0.004463016986846924, - 0.5278986692428589, - -0.33122676610946655, - 0.2842572331428528, - 0.21393170952796936, - 0.2537659704685211, - -0.3018670678138733, - -0.23411352932453156, - -0.11559351533651352, - -0.09254096448421478, - -0.0019650100730359554, - -0.3699612021446228, - -0.14035384356975555, - 0.2506367564201355, - -0.35856691002845764, - -0.03846556693315506, - 0.24453067779541016, - 0.06467701494693756, - 0.18118174374103546, - -0.09313437342643738, - -0.18066686391830444, - -0.5968683958053589, - 0.12002919614315033, - 0.36896753311157227, - 0.04797782003879547, - 0.11252231895923615, - -0.18932481110095978, - 0.1817692220211029, - 0.5597721338272095, - 0.01591671071946621, - -0.0859982818365097, - -0.03955406695604324, - -0.14732638001441956, - -0.18711695075035095, - 0.1421598345041275, - -0.09672565758228302, - 0.011964231729507446, - -0.1905207335948944, - 0.04277913644909859, - -0.17823031544685364, - -0.26543062925338745, - 0.11301042884588242, - -0.2458002120256424, - -0.3204088807106018, - -0.15424102544784546, - 0.1764768809080124, - -0.17536865174770355, - -0.08618875592947006, - 0.1358158141374588, - 0.6120887994766235, - 0.22199785709381104, - -0.06003031134605408, - 0.12544585764408112, - -0.32640355825424194, - -0.1089656725525856, - 0.175840824842453, - -0.1430301070213318, - 0.19983583688735962, - 0.03325486183166504, - 0.3547280430793762, - 0.4124228060245514, - 0.1358843892812729, - -0.6560123562812805, - -0.10335878282785416, - 0.05185486003756523, - 0.2560424208641052, - -0.23765762150287628, - -10.68913459777832, - 0.27580446004867554, - -0.15968427062034607, - 0.574459433555603, - -0.08790814131498337, - -0.055183857679367065, - 0.1339123547077179, - -0.017256394028663635, - 0.07973160594701767, - 0.24353232979774475, - -0.3917399048805237, - 0.09729699790477753, - 0.3632754683494568, - 0.16694439947605133, - -0.16284869611263275, - -0.23012928664684296, - -0.02414735034108162, - 0.03616098314523697, - -0.11411072313785553, - 0.1642410159111023, - 0.24508197605609894, - 0.35791903734207153, - -0.03128154203295708, - 0.42729735374450684, - 0.2815253436565399, - -0.1577373445034027, - -0.2408381998538971, - 0.4919394552707672, - -0.08061450719833374, - -0.5037323236465454, - 0.4084181785583496, - 0.3214499056339264, - -0.29248204827308655, - -0.06257804483175278, - 0.10729587078094482, - -0.1379738748073578, - -0.03425617888569832, - 0.025445619598031044, - 0.04020975902676582, - -0.01717967540025711, - 0.027411941438913345, - -0.39731842279434204, - -0.0852234959602356, - 0.5058475732803345, - 0.01610795594751835, - -0.27728086709976196, - -0.33120355010032654, - -1.3148202896118164, - 0.31182655692100525, - 0.31345024704933167, - 0.3940262794494629, - 0.07604080438613892, - 0.145135760307312, - 7.220804400276393e-05, - -0.493582546710968, - 0.31558114290237427, - -0.23512013256549835, - 0.3255839943885803, - 0.13163986802101135, - -0.1443617045879364, - 0.11162862926721573, - -0.2633225917816162, - 0.026633460074663162, - -0.4106953740119934, - -0.2748780846595764, - 0.16248026490211487, - -0.09041117131710052, - 0.047892939299345016, - -0.11936809867620468, - -0.01629996858537197, - -0.271892249584198, - -0.21580886840820312, - 0.03376949578523636, - -0.07055852562189102, - 0.6470610499382019, - -0.05516018345952034, - -0.6901593208312988, - 0.22685472667217255, - 0.008406287059187889, - 0.3929494321346283, - -0.011151174083352089, - 0.09318292886018753, - 0.12803347408771515, - -0.09911654144525528, - -0.1421150118112564, - -0.21677851676940918, - 0.07863418757915497, - 0.40272530913352966, - -0.01134209893643856, - 0.16438165307044983, - 0.1136201024055481, - 0.08711381256580353, - -0.28522825241088867, - -0.23506751656532288, - -0.43682631850242615, - 0.2354322373867035, - -0.01765471138060093, - 0.04081321507692337, - 0.06465517729520798, - -0.07987804710865021, - -0.22834742069244385, - -0.24478814005851746, - 0.019913554191589355, - -0.4649529457092285, - -0.26934629678726196, - 0.22237679362297058, - 0.036859508603811264, - 0.3196752071380615, - 0.24554911255836487, - 0.07474811375141144, - 0.23659472167491913, - -0.03021365962922573, - 0.4542574882507324, - 0.40544262528419495, - 0.11862766742706299, - -0.16169245541095734, - -0.16027319431304932, - -0.028901493176817894, - -0.5350267291069031, - 0.21116161346435547, - 0.3787907361984253, - -0.1087554469704628, - 0.22526565194129944, - 0.5065306425094604, - -0.05097439885139465, - -0.20970487594604492, - 1.0602271556854248, - -0.15767021477222443, - 0.2806263864040375, - -0.15042836964130402, - 0.19843806326389313, - -0.07326511293649673, - -0.1375170797109604, - 0.11471432447433472, - 0.35731202363967896, - -0.26258140802383423, - 0.2953881025314331, - -0.04774404689669609, - -0.358589231967926, - 0.09489456564188004, - -0.18334512412548065, - 0.47902998328208923, - 0.3594898283481598, - 0.26052993535995483, - -0.07597152143716812, - -0.4741649031639099, - -0.1843908131122589, - 0.015452748164534569, - -0.435493528842926, - -0.28131332993507385, - -0.3245774209499359, - 0.13966748118400574, - -0.11624328792095184, - -0.33955103158950806, - 0.40277227759361267, - -0.0664106160402298, - -0.1328691989183426, - -0.23422029614448547, - -0.5450707674026489, - 0.1295308768749237, - 0.24664855003356934, - 0.6430838108062744, - 0.2672436237335205, - -0.024748414754867554, - -0.17750433087348938, - 0.2842051386833191, - -0.030547112226486206, - 0.023227548226714134, - 0.009114616550505161, - -0.013943331316113472, - -0.5814539194107056, - 0.04636714234948158, - 0.1672561913728714, - -0.33161461353302, - -0.24174821376800537, - -0.4846605360507965, - 0.26745468378067017, - -0.23636695742607117, - -0.10067620128393173, - 0.279702365398407, - 0.21455411612987518, - -0.14842669665813446, - -0.06560420989990234, - -0.20862743258476257, - 0.5034682154655457, - 0.2268894463777542, - 0.14920401573181152, - 0.11234637349843979, - -0.1524461954832077, - -0.4215036928653717, - -0.2795286774635315, - 0.1484694629907608, - -0.040418364107608795, - -0.156514510512352, - 0.16409710049629211, - 0.19948771595954895, - -0.3850327134132385, - -0.030213987454771996, - -0.4962828755378723, - 0.003129857825115323, - -0.2587776780128479, - 0.04645847529172897, - 0.27845102548599243, - -0.3072490394115448, - -0.032910335808992386, - -0.13369184732437134, - 0.2985060214996338, - 0.18743810057640076, - -0.25318223237991333, - 0.332520067691803, - -0.08831311017274857 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_056.json b/src/benchmark/output/results/results_graph_056.json deleted file mode 100644 index a2956f9..0000000 --- a/src/benchmark/output/results/results_graph_056.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is an adult with no publicly available demographic information. However, based on the provided data, it can be inferred that the patient has cancer, as mentioned in Step 1.\n\n**Timeline of Diagnoses and Treatments:**\n\nStep 1:\nThe patient's cancer had no driver gene mutations.\n\nStep 2 (First-line Chemotherapy):\nInitiation of first-line chemotherapy with cisplatin, pemetrexed, and pembrolizumab was administered. This treatment was initiated to target the patient's cancer.\n\nStep 3 (Second-line Chemotherapy):\nProgression to second-line chemotherapy with docetaxel and ramucirumab was administered. This treatment was initiated due to the development of resistance or intolerance to the first-line chemotherapy.\n\nStep 4:\nChemotherapy was delayed for approximately one month due to the development of a perianal abscess, which required surgical intervention under local anesthesia. The patient's cancer treatment was interrupted due to an unexpected complication.\n\nStep 5 (Post-Surgical Complication):\nThe patient developed dyspnea the day following surgery. This symptom suggested that the patient may be experiencing respiratory complications related to the surgery.\n\nStep 6:\nAdmission and Vital Sign Abnormalities:\nFour days after symptom onset, the patient was admitted with vital sign abnormalities, including hypotension, hypoxemia, and tachycardia. These findings indicated that the patient's condition had deteriorated significantly.\n\nStep 7 (Lab Abnormalities):\nElevated D-dimer, C-reactive protein, brain natriuretic peptide, and carcinoembryonic antigen levels were detected in the patient's blood. Additionally, abnormal CBC results and arterial blood gas findings were observed. These lab abnormalities suggested that the patient had developed a systemic inflammatory response syndrome (SIRS) or sepsis.\n\n**Outcomes:**\n\nThe patient's condition continued to deteriorate, with ongoing vital sign abnormalities and lab abnormalities. The exact outcome of this case is not provided in the data, but it can be inferred that the patient required further medical intervention to manage their symptoms and stabilize their condition.\n\nIn conclusion, this clinical case report highlights the complexities of cancer treatment and the potential for unexpected complications. The patient's journey from diagnosis to admission and beyond demonstrates the need for close monitoring and prompt intervention in managing cancer-related symptoms and lab abnormalities.", - "bertscore": { - "precision": [ - 0.6407378911972046 - ], - "recall": [ - 0.6139230132102966 - ], - "f1": [ - 0.6270439624786377 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 7, - "edge_count": 6, - "avg_in_degree": 0.8571428571428571, - "density": 0.14285714285714285 - }, - "trajectory_embedding": [ - 0.22469878196716309, - 0.19692015647888184, - 0.00025188070139847696, - 0.173471599817276, - 0.09548087418079376, - 0.17378945648670197, - -0.016956541687250137, - 0.2958507835865021, - 0.6613865494728088, - -0.4530636966228485, - -0.13141368329524994, - -0.04939684644341469, - -0.6155732274055481, - -0.17467454075813293, - -0.18280437588691711, - 0.12072768062353134, - -0.1693776696920395, - 0.36427292227745056, - -0.11844424158334732, - -0.22703833878040314, - -0.22091881930828094, - 0.11670362949371338, - -0.6725220680236816, - 0.10164103657007217, - 0.20791147649288177, - -0.03777886554598808, - 0.3214867115020752, - 0.6401349306106567, - 0.13143087923526764, - 0.2320757806301117, - 0.17600999772548676, - -0.10020772367715836, - 0.13705681264400482, - 0.059911761432886124, - -0.23374390602111816, - 0.25236326456069946, - 0.20346732437610626, - 0.3799627125263214, - -0.22374756634235382, - -0.12771087884902954, - -0.17458724975585938, - 0.1423516422510147, - 0.9342103600502014, - 0.06327115744352341, - 0.34945550560951233, - -0.749184787273407, - -0.08388042449951172, - 0.7538290619850159, - -0.40097424387931824, - -0.327763170003891, - 0.13337692618370056, - 0.771461009979248, - 0.5585850477218628, - -0.3650854229927063, - 0.4895590841770172, - -0.16174796223640442, - -0.20078660547733307, - -0.3044884204864502, - -0.1344498097896576, - 0.06310762465000153, - 0.011655847541987896, - -0.31084534525871277, - 0.5292473435401917, - -0.20876888930797577, - -0.10482144355773926, - -0.07125664502382278, - -0.3000344932079315, - 0.17378416657447815, - -0.05821957811713219, - -0.24617798626422882, - -0.19034655392169952, - -0.1978224664926529, - -0.1294981986284256, - 0.026532581076025963, - 0.049367886036634445, - -0.2103743553161621, - 0.30202120542526245, - -0.1625305414199829, - 0.2595093548297882, - 0.16770608723163605, - -0.011134983971714973, - -0.08638764917850494, - 0.01100680697709322, - 0.3230552077293396, - -0.3027610778808594, - -0.046645548194646835, - -0.1163703054189682, - -0.07102371007204056, - -0.3265528380870819, - 0.09866658598184586, - -0.0014226819621399045, - -0.4219525456428528, - 0.21809256076812744, - -0.35074740648269653, - -0.10733859241008759, - 0.19963793456554413, - 0.696682333946228, - 0.15613733232021332, - 0.7823827862739563, - -0.10320763289928436, - 0.2902891933917999, - -0.04866643622517586, - 0.27103373408317566, - 0.04075722023844719, - 0.3885001540184021, - -0.006918954197317362, - 0.17122578620910645, - -0.4727141559123993, - 0.39181771874427795, - 0.5767492055892944, - 0.07633522897958755, - -0.25837329030036926, - -0.006403965409845114, - -0.23254263401031494, - 0.17066249251365662, - 0.06589744240045547, - -0.02698918804526329, - 0.345904678106308, - 0.23928038775920868, - -0.5169200301170349, - -0.14834341406822205, - -0.2114701271057129, - 0.147049218416214, - 0.26934900879859924, - -0.43777135014533997, - -0.16545696556568146, - -0.2131681591272354, - -0.16323384642601013, - 0.13455404341220856, - 0.01998034492135048, - -0.5584474802017212, - -0.27987655997276306, - -0.11074145883321762, - 0.14436854422092438, - -0.07224613428115845, - 0.32376861572265625, - -0.35424089431762695, - 0.09824318438768387, - -1.1182879209518433, - 0.11961840093135834, - -0.34295710921287537, - -0.06515182554721832, - -0.0642845630645752, - -0.6493039131164551, - -0.18422116339206696, - -0.10730741918087006, - -0.04602300375699997, - 0.1153545156121254, - -0.24960991740226746, - 0.02682415209710598, - 0.042228203266859055, - -0.10121792554855347, - 0.2753884196281433, - 0.5334533452987671, - 0.07838999480009079, - -0.0435774065554142, - 0.04627418518066406, - 0.27988532185554504, - 0.05917259678244591, - -0.05117029696702957, - -0.013790122233331203, - 0.6459563970565796, - 0.028662264347076416, - 0.1737588495016098, - -0.0589175820350647, - -0.7323708534240723, - -0.031106730923056602, - -0.08361741155385971, - 0.016399836167693138, - -0.04907277598977089, - -0.05511435493826866, - 0.11302033811807632, - -0.17577333748340607, - 0.7015606164932251, - 0.08665943145751953, - 0.29554301500320435, - 0.08704205602407455, - 0.02366805449128151, - 0.20670022070407867, - 0.2268480360507965, - 0.18430401384830475, - -0.2915305197238922, - 0.5492498278617859, - 0.23509946465492249, - -0.29434290528297424, - 0.1794404685497284, - 0.28481200337409973, - 0.033230919390916824, - -0.36189746856689453, - -0.02949059009552002, - 0.4296116530895233, - -0.410980761051178, - 0.4986247420310974, - -0.20137465000152588, - 0.03222942352294922, - 0.10513366013765335, - -0.1622185856103897, - -0.004757741931825876, - -0.11050976812839508, - -0.12115741521120071, - 0.2502313554286957, - 0.06535696983337402, - -0.3554372191429138, - 0.0980512946844101, - 0.21861614286899567, - -0.1664574146270752, - 0.17979423701763153, - -0.10072606056928635, - 0.185216024518013, - 0.0775797888636589, - -0.1456650048494339, - 0.2926482856273651, - -0.10801077634096146, - 0.23464109003543854, - 0.0010535882320255041, - -0.46491608023643494, - 0.02120785415172577, - -0.003971497993916273, - -0.11590417474508286, - 0.07090578973293304, - 0.09716969728469849, - -0.11238840967416763, - -0.1383257806301117, - 0.0993557721376419, - -0.5222828388214111, - 0.3271873891353607, - 0.1920936107635498, - 0.2158873975276947, - 0.145614892244339, - 0.02053617127239704, - -0.061245113611221313, - -0.5324280858039856, - 0.384147584438324, - -0.24116051197052002, - -0.04885660856962204, - -0.29416608810424805, - 0.35971543192863464, - -0.06005369871854782, - 0.18086205422878265, - 0.16348035633563995, - 0.11944399029016495, - -0.026796609163284302, - 0.061670687049627304, - -0.29774561524391174, - 0.052647385746240616, - -0.4357898533344269, - -0.04830760508775711, - 0.29982027411460876, - 0.12870745360851288, - 0.2669839560985565, - 0.02877725102007389, - 0.0498492531478405, - 0.23797091841697693, - -0.14100633561611176, - -0.4737057387828827, - -0.28655341267585754, - -0.13253158330917358, - -0.11716262996196747, - -0.6110339164733887, - 0.16249188780784607, - -0.2768310010433197, - 0.029053756967186928, - 0.21750785410404205, - -0.23640979826450348, - -0.15723037719726562, - 0.02150021120905876, - 0.21713249385356903, - 0.19919343292713165, - -0.18014851212501526, - -0.04367617517709732, - -0.204382985830307, - -0.0594809465110302, - -0.19889231026172638, - -0.0350150503218174, - -0.027789784595370293, - 0.07477488368749619, - -0.2786652445793152, - -0.03885364532470703, - 0.025705883279442787, - -0.3375895619392395, - -0.08070240914821625, - 0.1495007425546646, - -0.15083347260951996, - 0.4207339882850647, - -0.021226832643151283, - 0.3251180946826935, - 0.25055885314941406, - 0.1437041014432907, - 0.10422282665967941, - 0.14273498952388763, - 0.44763144850730896, - -0.09087233245372772, - 0.02104048989713192, - -0.1237037181854248, - 0.019756896421313286, - 0.035168033093214035, - -0.2985188961029053, - 0.5834994316101074, - 0.04615021497011185, - -0.07509762793779373, - 0.07852970063686371, - 0.33903929591178894, - 0.07797182351350784, - -0.23805935680866241, - 0.04065174236893654, - 0.47394320368766785, - 0.07331110537052155, - 0.24165818095207214, - 0.12978826463222504, - 0.21933241188526154, - 0.4058678150177002, - -0.09019618481397629, - 0.04683222249150276, - 0.0691743865609169, - -0.11874572187662125, - -0.23624150454998016, - -0.0027644506189972162, - 0.19068321585655212, - 0.4629102647304535, - -0.25012901425361633, - -0.23108817636966705, - -0.007269429508596659, - -0.15290524065494537, - -0.006123108323663473, - -0.3816106617450714, - -0.20164798200130463, - 0.1702619343996048, - -0.10270830243825912, - 0.4750049412250519, - -0.09267127513885498, - -0.13874810934066772, - 0.46263381838798523, - -0.45516735315322876, - -0.1791352480649948, - 0.1638338267803192, - -0.023506266996264458, - -0.528973400592804, - 0.3626210689544678, - -0.2662975788116455, - 0.04107432812452316, - 0.3268541693687439, - -0.4090483486652374, - -0.2010653167963028, - 0.05102803185582161, - 0.42286252975463867, - -0.0458962582051754, - 0.07577352225780487, - 0.06345751881599426, - 0.0733143612742424, - 0.11865455657243729, - 0.3912322521209717, - 0.14511552453041077, - 0.3507525324821472, - 0.5427592992782593, - 0.18271663784980774, - -0.34501442313194275, - 0.12625810503959656, - -0.09739840030670166, - 0.24561183154582977, - -0.10940498858690262, - -0.152739018201828, - -0.15850447118282318, - 0.2041025012731552, - 0.08817499876022339, - -0.32539620995521545, - 0.026872428134083748, - -0.026737408712506294, - 0.07391124218702316, - -0.132284477353096, - 0.3706359267234802, - 0.1050071194767952, - -0.06658230721950531, - 0.3959886133670807, - -0.06984694302082062, - -0.19429056346416473, - 0.2272765189409256, - -0.1324797421693802, - 0.21873705089092255, - 0.06766661256551743, - -0.14322349429130554, - -0.34403327107429504, - 0.19339844584465027, - -0.30182406306266785, - -0.20493678748607635, - 0.06378086656332016, - -0.2496194988489151, - 0.1151234582066536, - -0.2908453643321991, - 0.018007392063736916, - 0.04006078094244003, - 0.14456117153167725, - 0.1918841302394867, - 0.3431141972541809, - 0.12143320590257645, - -0.1605629175901413, - 0.26926901936531067, - -0.14407287538051605, - -0.23863370716571808, - -0.22886350750923157, - -0.006889507174491882, - -0.15153582394123077, - 0.701823353767395, - -0.013171106576919556, - 0.033671777695417404, - -0.0348944291472435, - -0.026487186551094055, - -0.20702211558818817, - -0.33742985129356384, - -0.03633204102516174, - -0.14446072280406952, - 0.09681902080774307, - 0.08271758258342743, - 0.015685120597481728, - -0.228705033659935, - -0.09060531854629517, - -0.05174392834305763, - -0.06770431250333786, - 0.1089167445898056, - 0.0255803894251585, - -0.14151513576507568, - 0.4373488426208496, - 0.14492128789424896, - 0.4571680724620819, - -0.2783263027667999, - 0.20387636125087738, - 0.05216667428612709, - -0.4458121657371521, - 0.10101441293954849, - -0.10418935120105743, - -0.37659725546836853, - -0.10075097531080246, - 0.24888058006763458, - 0.30402541160583496, - -0.11320360749959946, - 0.028017578646540642, - 0.08623961359262466, - 0.05617130920290947, - -0.2875747084617615, - -0.09869205206632614, - 0.3081248104572296, - -0.13928385078907013, - 0.28482747077941895, - 0.15605489909648895, - -0.5872836709022522, - -0.2794762849807739, - 0.0008917301893234253, - -0.4180013835430145, - 0.05338042974472046, - 0.1992405503988266, - -0.11851298063993454, - -0.04241678863763809, - 0.019543204456567764, - -0.03889615088701248, - -0.2334025800228119, - 0.39664894342422485, - -0.15255920588970184, - 0.28551506996154785, - 0.06486667692661285, - -0.19735240936279297, - -0.09945381432771683, - -0.35150429606437683, - -0.42753419280052185, - -0.027418745681643486, - 0.254689484834671, - 0.12796670198440552, - -0.331301212310791, - 0.008003996685147285, - 0.01808343455195427, - 0.01662474311888218, - -0.33985328674316406, - -0.07790560275316238, - -0.35182979702949524, - 0.4031921923160553, - -0.2896983325481415, - -0.1693846434354782, - 0.04780232533812523, - -0.1776127815246582, - -0.08287981897592545, - 0.23879431188106537, - 0.00627507921308279, - 0.2766403257846832, - -0.02040010131895542, - -0.11700429022312164, - 0.42572346329689026, - 0.04141980782151222, - 0.3021600544452667, - 0.16275011003017426, - 0.09805972129106522, - 0.2000085860490799, - -0.2469392716884613, - -0.11666830629110336, - 0.3471514880657196, - -0.365037739276886, - -0.05861234292387962, - 0.13529027998447418, - 0.30311980843544006, - -0.43392831087112427, - -0.31981056928634644, - 0.13031241297721863, - -0.026194196194410324, - -0.07157210260629654, - -0.24315418303012848, - -0.24611081182956696, - -0.03168698772788048, - -0.195882648229599, - -0.033316005021333694, - 0.13665448129177094, - 0.5414629578590393, - 0.12739138305187225, - 0.14976570010185242, - -0.22984226047992706, - -0.31954672932624817, - 0.22291243076324463, - 0.2747359573841095, - 0.08952312916517258, - -0.1782289296388626, - -0.09108305722475052, - 0.29551681876182556, - 0.3838856518268585, - 0.06972069293260574, - -0.0017040371894836426, - -0.08907315880060196, - -0.012755627743899822, - 0.1897895187139511, - 0.051658518612384796, - -0.2027146816253662, - 0.06946615874767303, - -0.3131866157054901, - 0.19437578320503235, - -0.1514696329832077, - -0.0846664160490036, - 0.20609340071678162, - -0.31969091296195984, - -0.45860713720321655, - -0.0044958037324249744, - 0.1867484599351883, - -0.01238296739757061, - -0.1578221172094345, - 0.3046669363975525, - 0.28942832350730896, - 0.0041148173622787, - -0.36526814103126526, - 0.08819875866174698, - -0.5573554039001465, - -0.16263540089130402, - 0.05780705437064171, - -0.10368853807449341, - -0.13635973632335663, - 0.15562404692173004, - 0.6155082583427429, - 0.4216609597206116, - 0.30246514081954956, - -0.13754448294639587, - 0.2843063771724701, - 0.42405152320861816, - 0.19480064511299133, - -0.21151435375213623, - -10.591654777526855, - -0.20434141159057617, - -0.36403688788414, - 0.5892795324325562, - -0.21099291741847992, - 0.12946920096874237, - -0.08354949951171875, - 0.04747855290770531, - 0.08965682238340378, - 0.14987514913082123, - -0.21348007023334503, - -0.11271349340677261, - 0.2959910035133362, - 0.393771231174469, - 0.03945614770054817, - 0.2124864012002945, - -0.21829082071781158, - 0.3833410441875458, - -0.061495859175920486, - 0.24469225108623505, - 0.11049375683069229, - 0.42387133836746216, - -0.2569354772567749, - 0.1718987077474594, - -0.12706705927848816, - -0.38750705122947693, - -0.24735744297504425, - 0.5728124380111694, - 0.3494979739189148, - -0.38358455896377563, - 0.10554575175046921, - 0.06178182363510132, - -0.1177964061498642, - 0.17011305689811707, - -0.15876640379428864, - -0.1893967241048813, - 0.02700314298272133, - 0.08388880640268326, - 0.31694191694259644, - -0.16233648359775543, - 0.04530244320631027, - -0.2762695252895355, - 0.33245593309402466, - 0.009630417451262474, - -0.2033102959394455, - -0.6332572102546692, - -0.03543485328555107, - -1.480163812637329, - 0.329806387424469, - 0.4816587269306183, - 0.42114660143852234, - 0.23393502831459045, - 0.09392577409744263, - 0.37409520149230957, - -0.24870863556861877, - -0.08346735686063766, - -0.34297794103622437, - -0.2099401205778122, - 0.13298171758651733, - 0.10812436044216156, - 0.10378018766641617, - -0.010793630965054035, - 0.4954144358634949, - -0.09385309368371964, - -0.28284987807273865, - 0.04763180390000343, - 0.022549143061041832, - -0.08376394957304001, - -0.38555318117141724, - -0.7452481985092163, - -0.49656781554222107, - 0.013684956356883049, - -0.21524620056152344, - 0.07899868488311768, - 0.22202017903327942, - 0.005056783556938171, - -0.2148675173521042, - 0.1451697200536728, - 0.05980062484741211, - 0.36935144662857056, - 0.3179796040058136, - 0.063559390604496, - 0.14135988056659698, - -0.18995751440525055, - -0.19069449603557587, - -0.25539082288742065, - 0.13059617578983307, - 0.50597083568573, - -0.026443609967827797, - -0.09107254445552826, - 0.0028959426563233137, - 0.34475359320640564, - 0.05627785995602608, - -0.17894062399864197, - -0.5148047804832458, - -0.058175645768642426, - -0.0091350506991148, - 0.21075783669948578, - -0.07000023871660233, - -0.024535659700632095, - -0.34298086166381836, - 0.1603182703256607, - -0.10686243325471878, - -0.517955482006073, - -0.4204992353916168, - 0.3462347984313965, - 0.23554304242134094, - 0.03379710391163826, - 0.024035224691033363, - -0.20123091340065002, - -0.19475634396076202, - 0.02937142364680767, - 0.11771070212125778, - 0.4681134521961212, - 0.21978716552257538, - -0.11360656470060349, - -0.010257278569042683, - -0.32053494453430176, - -0.18390873074531555, - 0.0549912266433239, - 0.31058645248413086, - 0.06608651578426361, - 0.15125994384288788, - 0.5382686853408813, - -0.009786456823348999, - -0.05269967392086983, - 0.8227816820144653, - -0.48103412985801697, - 0.2065214067697525, - 0.010088504292070866, - 0.31602874398231506, - 0.02979358099400997, - -0.37584835290908813, - 0.1191294714808464, - 0.3830339014530182, - -0.25801700353622437, - 0.645388662815094, - 0.22943297028541565, - -0.1792154163122177, - -0.07256896793842316, - -0.232699915766716, - 0.4844439625740051, - 0.22519274055957794, - 0.1476229578256607, - -0.19796110689640045, - -0.3219866156578064, - -0.3986318111419678, - 0.25882309675216675, - -0.2505650818347931, - -0.34616416692733765, - -0.10109169036149979, - 0.059624962508678436, - 0.12354503571987152, - -0.14813004434108734, - 0.3331802189350128, - 0.12046253681182861, - -0.06728184223175049, - -0.3057446777820587, - -0.40206125378608704, - -0.0195672158151865, - -0.0047930097207427025, - 0.8805016279220581, - 0.006117147859185934, - -0.22313667833805084, - 0.007776894606649876, - 0.09404511004686356, - -0.2128940373659134, - 0.19451236724853516, - -0.02685682103037834, - -0.13765671849250793, - -0.4301077425479889, - 0.3178205192089081, - 0.1659836769104004, - -0.3222659230232239, - -0.12026584893465042, - -0.0805409625172615, - -0.04602634906768799, - 0.10385092347860336, - -0.11045651882886887, - 0.23248018324375153, - 0.3587457835674286, - -0.13853533565998077, - 0.034105539321899414, - -0.32961374521255493, - -0.1869012862443924, - 0.19477489590644836, - 0.37288737297058105, - 0.08484739065170288, - -0.33075055480003357, - -0.2734149396419525, - -0.5212315917015076, - 0.2912118434906006, - -0.5846805572509766, - -0.06435152143239975, - 0.12771162390708923, - 0.05220737308263779, - -0.24137623608112335, - 0.257464200258255, - 0.06223537400364876, - -0.04959791898727417, - -0.13453152775764465, - 0.31796786189079285, - 0.5243514776229858, - -0.3719533085823059, - 0.3910529613494873, - -0.19191911816596985, - 0.16935834288597107, - 0.17208360135555267, - -0.36385399103164673, - 0.20567388832569122, - -0.32839956879615784 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_057.json b/src/benchmark/output/results/results_graph_057.json deleted file mode 100644 index e52a320..0000000 --- a/src/benchmark/output/results/results_graph_057.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 72-year-old woman with a history of small cell lung cancer (SCLC).\n\n**Initial Presentation:**\nThe patient presented with progressive involuntary writhing movements in her hands and lower extremities over the past 3 months. This symptomatology was documented as part of her clinical data, including a history of progressive worsening (P3M) and associated symptoms such as involuntary writhing movements.\n\n**Diagnostic Workup:**\nFollowing the patient's presentation, a comprehensive diagnostic workup was conducted, which included imaging studies (Brain MRI and CT), electroencephalogram (EEG), and laboratory tests. The results of these studies were negative for hemorrhage or lesions on the red nucleus or midbrain, seizure activity, and abnormal electrolyte levels.\n\n**Treatment Initiation:**\nDespite the initial negative diagnostic workup, the patient's symptoms worsened, prompting further evaluation and treatment initiation. A ceruloplasmin test was conducted, which revealed a negative result. Subsequent laboratory tests showed positive anti-Hu antibodies at a titer of 1:960, indicating paraneoplastic syndrome.\n\n**Treatment Regimen:**\nThe patient received a treatment regimen consisting of diazepam, primidone, and pramipexole, with the goal of managing her symptoms. However, despite this treatment, the patient's symptoms continued to worsen, leading to hospitalization.\n\n**Intravenous Immunoglobulin (IVIG) Therapy:**\nAs part of her treatment regimen, the patient received IVIG for 4 days. This therapy was aimed at reducing the severity of her paraneoplastic syndrome.\n\n**New Symptoms and Imaging Findings:**\nFollowing the patient's discharge from the hospital, she presented to the emergency department with nausea and vomiting without new abnormal movements or neurologic symptoms. Repeat imaging studies revealed a 3.3 x 2.3 cm mass in the left cerebellar region, involving the left cerebellar peduncle.\n\n**Treatment of New Symptoms:**\nThe patient underwent further evaluation and treatment for her new symptoms. Laboratory tests showed positive anti-Hu antibodies, indicating continued paraneoplastic syndrome.\n\n**Current Status:**\nAt this time, the patient is currently under observation with ongoing management of her paraneoplastic syndrome. The patient's symptoms have improved since the initiation of IVIG therapy, but she continues to experience discomfort and disrupted sleep due to the frequency of her movements.\n\nIn conclusion, this 72-year-old woman with a history of small cell lung cancer presented with progressive involuntary writhing movements in her hands and lower extremities. Despite an initial negative diagnostic workup, further evaluation and treatment initiation revealed paraneoplastic syndrome, which was managed with IVIG therapy. However, new symptoms and imaging findings have necessitated ongoing management and observation.", - "bertscore": { - "precision": [ - 0.5887521505355835 - ], - "recall": [ - 0.5860556364059448 - ], - "f1": [ - 0.5874007940292358 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 6, - "edge_count": 5, - "avg_in_degree": 0.8333333333333334, - "density": 0.16666666666666666 - }, - "trajectory_embedding": [ - 0.10924185812473297, - 0.10171635448932648, - -0.130819171667099, - 0.11970636993646622, - 0.01621156930923462, - -0.025944743305444717, - 0.059883225709199905, - 0.19405730068683624, - 0.5056430101394653, - -0.3832123875617981, - -0.28973308205604553, - 0.21129187941551208, - -0.575080156326294, - -0.07535974681377411, - -0.27020901441574097, - -0.11037592589855194, - 0.01244857907295227, - 0.24032163619995117, - -0.05925019457936287, - -0.07463321834802628, - -0.3116808831691742, - 0.09356198459863663, - -0.4920731484889984, - -0.0821610540151596, - 0.04886844754219055, - 0.052564311772584915, - 0.3352467715740204, - 0.6847864985466003, - 0.24349327385425568, - 0.18328168988227844, - 0.1138065829873085, - 0.0029223919846117496, - -0.18558859825134277, - -0.10630349069833755, - -0.10665483772754669, - 0.30981841683387756, - 0.30020251870155334, - 0.41428762674331665, - -0.11225412040948868, - -0.0755331888794899, - -0.18469664454460144, - 0.11992812156677246, - 0.7719197869300842, - 0.2542802393436432, - 0.44182854890823364, - -0.6720637679100037, - -0.0040540993213653564, - 0.5885321497917175, - -0.29807180166244507, - -0.13491535186767578, - 0.1668306291103363, - 0.6660178899765015, - 0.498084157705307, - -0.24175158143043518, - 0.36294180154800415, - -0.1543881893157959, - -0.1818050891160965, - -0.16917678713798523, - -0.12515181303024292, - 0.0024065792094916105, - 0.05014798790216446, - -0.13257186114788055, - 0.2776688039302826, - 0.10028089582920074, - -0.03562074154615402, - -0.22122779488563538, - -0.20439191162586212, - -0.01183529756963253, - -0.003177095903083682, - -0.28868287801742554, - -0.24049349129199982, - -0.31077319383621216, - -0.16211707890033722, - 0.03357764333486557, - 0.1027599573135376, - -0.11970771849155426, - 0.35485219955444336, - -0.12445580959320068, - -0.0009727656724862754, - -0.07024397701025009, - 0.12669575214385986, - 0.0821976512670517, - -0.16544020175933838, - 0.23085010051727295, - -0.21088024973869324, - 0.14472916722297668, - -0.07828816771507263, - -0.09991832822561264, - -0.23807764053344727, - 0.35479438304901123, - 0.03755633160471916, - -0.19433608651161194, - 0.03802541643381119, - -0.17530657351016998, - 0.07252204418182373, - 0.017057236284017563, - 0.2504293620586395, - 0.20435366034507751, - 1.0451838970184326, - -0.03581312671303749, - 0.1911657750606537, - 0.1659659892320633, - 0.35480284690856934, - -0.04771328717470169, - 0.5017708539962769, - -0.21934874355793, - 0.13821174204349518, - -0.6209023594856262, - 0.06451758742332458, - 0.2161007672548294, - -0.08655419945716858, - -0.23141026496887207, - 0.16088911890983582, - -0.43194857239723206, - -0.05408357456326485, - 0.081070676445961, - -0.09388317167758942, - -0.008918779902160168, - 0.13580255210399628, - -0.34047308564186096, - -0.03758281469345093, - -0.2535480558872223, - 0.35616686940193176, - 0.03771355748176575, - -0.5673664808273315, - -0.09514494985342026, - -0.09447282552719116, - 0.24392597377300262, - -0.12477197498083115, - 0.3335886299610138, - -0.4272153377532959, - 0.02771768346428871, - -0.15457110106945038, - 0.22193880379199982, - -0.02806141972541809, - 0.23601441085338593, - -0.5588722229003906, - 0.29311853647232056, - -1.1137664318084717, - 0.34766387939453125, - -0.34928980469703674, - -0.06753065437078476, - 0.07564837485551834, - -0.7035880088806152, - -0.17115411162376404, - -0.16743209958076477, - -0.002408078406006098, - 0.006516927387565374, - -0.00483356136828661, - 0.08675999939441681, - -0.21628780663013458, - -0.13183407485485077, - 0.2756427526473999, - 0.26390689611434937, - 0.022414937615394592, - 0.05928945541381836, - 0.09964289516210556, - 0.520445704460144, - 0.18720769882202148, - -0.07169397175312042, - -0.06730888038873672, - 0.32805222272872925, - -0.08635339885950089, - -0.011068016290664673, - 0.015680933371186256, - -0.7204256653785706, - 0.080217145383358, - -0.2689545452594757, - -0.020941833034157753, - 0.11111952364444733, - -0.06658010184764862, - 0.11819498240947723, - -0.18308529257774353, - 0.4973403811454773, - 0.32610753178596497, - 0.5459386706352234, - -0.10167711973190308, - 0.02111263945698738, - 0.3829290270805359, - 0.03673028200864792, - 0.09797900915145874, - -0.23603442311286926, - 0.5699781179428101, - 0.17996710538864136, - -0.22703132033348083, - 0.1916649043560028, - 0.2447470724582672, - -0.07066328823566437, - -0.3557664155960083, - -0.10733211040496826, - 0.4915229380130768, - -0.2789129614830017, - 0.3551129698753357, - -0.17333592474460602, - 0.10135761648416519, - 0.20426654815673828, - -0.2620519995689392, - -0.09011366963386536, - 0.061963796615600586, - -0.1320790946483612, - 0.42120522260665894, - 0.06595773994922638, - -0.20556345582008362, - 0.06127799674868584, - 0.04491905868053436, - -0.04729349911212921, - 0.1130501851439476, - 0.07470438629388809, - 0.024166971445083618, - 0.028589803725481033, - -0.15762746334075928, - 0.2798975110054016, - 0.09849324077367783, - 0.16199560463428497, - 0.11564649641513824, - -0.17860059440135956, - 0.17151932418346405, - -0.11540389060974121, - -0.14117911458015442, - 0.07506893575191498, - -0.1215183362364769, - -0.2226943075656891, - 0.1044890433549881, - -0.06423553824424744, - -0.3824222981929779, - 0.3074544370174408, - 0.26847100257873535, - 0.23667578399181366, - 0.10540620982646942, - 0.06851553916931152, - 0.02549104019999504, - -0.3455931544303894, - 0.3040311634540558, - -0.23826810717582703, - -0.25523293018341064, - -0.37781211733818054, - 0.18964362144470215, - -0.19270072877407074, - 0.03476959466934204, - 0.30701756477355957, - 0.11215607821941376, - -0.16327911615371704, - 0.04833440110087395, - -0.28519898653030396, - -0.012807989493012428, - -0.3638160228729248, - -0.0820334330201149, - 0.41104722023010254, - 0.12516364455223083, - 0.27007919549942017, - 0.04506196081638336, - -0.1453045904636383, - 0.2996339499950409, - -0.19137369096279144, - -0.2901274263858795, - -0.43721804022789, - -0.03322502225637436, - -0.04297659918665886, - -0.4425579905509949, - 0.2408432513475418, - -0.07041382044553757, - -0.18270032107830048, - 0.19883789122104645, - -0.32066163420677185, - -0.23315384984016418, - -0.13152053952217102, - 0.13040705025196075, - 0.08472712337970734, - -0.3067662715911865, - -0.051268987357616425, - -0.29373687505722046, - -0.11089809238910675, - -0.10499675571918488, - -0.06456374377012253, - 0.046978116035461426, - 0.12931755185127258, - -0.23270253837108612, - 0.14660370349884033, - 0.1452331244945526, - -0.3829244077205658, - -0.45727062225341797, - 0.17210106551647186, - -0.30094456672668457, - 0.3951161503791809, - 0.056366223841905594, - 0.31242212653160095, - 0.28175657987594604, - 0.022277379408478737, - 0.009101887233555317, - 0.4218485355377197, - 0.4428749084472656, - -0.03245127946138382, - 0.08035583794116974, - -0.023733804002404213, - 0.06428305804729462, - 0.06078559160232544, - -0.45504647493362427, - 0.3633532226085663, - -0.26096194982528687, - 0.07054846733808517, - 0.1963920146226883, - 0.3282721936702728, - 0.12592904269695282, - -0.47781902551651, - -0.23236434161663055, - 0.3812021315097809, - 0.11216072738170624, - 0.11663460731506348, - 0.0758281797170639, - 0.2232145369052887, - 0.5459354519844055, - -0.11372901499271393, - -0.06148464232683182, - 0.14221373200416565, - -0.16324682533740997, - -0.09225545823574066, - 0.030035067349672318, - 0.13837756216526031, - 0.2911422848701477, - 0.021378466859459877, - -0.33142152428627014, - 0.24871110916137695, - -0.22250576317310333, - -0.1701701283454895, - -0.22141289710998535, - -0.10232319682836533, - 0.12954868376255035, - -0.026307925581932068, - 0.20491039752960205, - -0.1831112653017044, - 0.007430071942508221, - 0.4381527304649353, - -0.16701658070087433, - -0.13099589943885803, - 0.24413220584392548, - 0.08622002601623535, - -0.39607468247413635, - 0.4597998559474945, - -0.14279277622699738, - -0.0346023254096508, - 0.29701265692710876, - -0.17324769496917725, - -0.043102048337459564, - -0.054909657686948776, - 0.22552864253520966, - -0.14389392733573914, - -0.07062119245529175, - -0.05912753939628601, - -0.03551813215017319, - 0.07077666372060776, - 0.5788582563400269, - 0.1928655207157135, - 0.13534362614154816, - 0.4143311381340027, - 0.015823470428586006, - -0.2373960018157959, - 0.017855782061815262, - -0.018001267686486244, - 0.2660100758075714, - -0.487525075674057, - -0.18977627158164978, - -0.2712238132953644, - 0.19840869307518005, - 0.05640114098787308, - -0.1632021814584732, - 0.08239136636257172, - 0.14751631021499634, - -0.04571714252233505, - -0.07106632739305496, - 0.4161146283149719, - 0.1989745795726776, - -0.17261509597301483, - 0.48750025033950806, - 0.07943093776702881, - -0.09917481988668442, - 0.15923389792442322, - -0.013997070491313934, - 0.22025816142559052, - -0.16151364147663116, - -0.3623410761356354, - -0.4084945619106293, - -0.003943534102290869, - -0.1610366404056549, - -0.1940363645553589, - -0.12663009762763977, - -0.15365809202194214, - 0.05830683186650276, - -0.040886037051677704, - 0.21090281009674072, - 0.015886735171079636, - 0.24767859280109406, - 0.03268742188811302, - 0.6291698217391968, - -0.013198191300034523, - -0.2675228714942932, - -0.07097052037715912, - -0.126922607421875, - 0.3221951127052307, - -0.3570408821105957, - 0.04229829087853432, - -0.05516160652041435, - 0.3316287398338318, - -0.11540138721466064, - -0.12417104095220566, - -0.005435542203485966, - 0.028523052111268044, - -0.092466339468956, - -0.5387811064720154, - 0.0020402551162987947, - -0.09519001096487045, - 0.047684360295534134, - 0.006166079547256231, - 0.1952669322490692, - -0.16802415251731873, - -0.19332680106163025, - 0.05349377915263176, - 0.1451374590396881, - 0.038480713963508606, - -0.1586594432592392, - 0.10967016220092773, - 0.16126909852027893, - 0.11323635280132294, - 0.35680216550827026, - -0.20086875557899475, - 0.11082224547863007, - 0.13503527641296387, - -0.3414280116558075, - 0.07849792391061783, - -0.11547739803791046, - -0.25565358996391296, - -0.10601426661014557, - 0.05788467451930046, - 0.20199593901634216, - -0.028099114075303078, - 0.12550656497478485, - -0.06965185701847076, - 0.05969526618719101, - -0.1594017595052719, - -0.04188672453165054, - 0.5845794081687927, - 0.08505809307098389, - 0.2622690200805664, - -0.09211146086454391, - -0.5003320574760437, - -0.2893083393573761, - -0.017624741420149803, - -0.4128602147102356, - -0.03293060511350632, - 0.04344021901488304, - -0.1683373749256134, - -0.06854351609945297, - 0.07929714024066925, - 0.013918918557465076, - 0.16084237396717072, - 0.31532031297683716, - -0.029086386784911156, - -0.026308858767151833, - 0.034654710441827774, - -0.3115904927253723, - 0.039660967886447906, - -0.32543450593948364, - -0.4561700224876404, - -0.2658217251300812, - 0.2564217448234558, - 0.17218925058841705, - -0.1207721084356308, - 0.19912724196910858, - 0.03150946646928787, - -0.1556633859872818, - -0.4796765446662903, - 0.059758562594652176, - -0.12046198546886444, - 0.5264169573783875, - 0.04045654460787773, - -0.07133637368679047, - 0.20169410109519958, - -0.1630585938692093, - 0.03493889048695564, - 0.30844634771347046, - 0.22780899703502655, - 0.20997822284698486, - 0.21702814102172852, - 0.16414983570575714, - 0.5044440031051636, - 0.1691654622554779, - 0.056308262050151825, - 0.2018394023180008, - -0.007832502946257591, - -0.04771144688129425, - -0.19423215091228485, - -0.21489115059375763, - 0.2868252396583557, - -0.25526708364486694, - 0.10494992882013321, - 0.08159781992435455, - 0.24737879633903503, - -0.3952074348926544, - -0.2143787443637848, - -0.16885899007320404, - -0.06467990577220917, - -0.1502266824245453, - -0.23753578960895538, - 0.038168780505657196, - -0.13763763010501862, - -0.22113139927387238, - -0.02623211219906807, - 0.2641030550003052, - 0.2154160737991333, - 0.22561192512512207, - 0.057998210191726685, - -0.2809911370277405, - -0.29116445779800415, - 0.15582136809825897, - 0.4329434037208557, - 0.0008528798935003579, - -0.19649764895439148, - -0.10904517024755478, - 0.10536422580480576, - 0.4596944749355316, - -0.20153728127479553, - -0.19132693111896515, - -0.043119024485349655, - 0.0484551265835762, - -0.07380412518978119, - 0.21267685294151306, - 0.13177742063999176, - 0.06947487592697144, - -0.4011216163635254, - 0.18024425208568573, - -0.06341172754764557, - -0.21628275513648987, - 0.23752084374427795, - -0.34450703859329224, - -0.4729718267917633, - -0.06155691668391228, - 0.30037394165992737, - 0.0017974793445318937, - 0.018184786662459373, - -0.03956688567996025, - 0.3134695589542389, - -0.013118351809680462, - -0.03399385139346123, - 0.1512022465467453, - -0.6668116450309753, - -0.07026197016239166, - 0.11100264638662338, - -0.09794410318136215, - 0.19721199572086334, - -0.04173459857702255, - 0.08590853214263916, - 0.46454310417175293, - 0.051332391798496246, - -0.2951541543006897, - 0.13062778115272522, - 0.3630453944206238, - 0.339113712310791, - -0.4013586938381195, - -10.761629104614258, - 0.10128474235534668, - -0.21862781047821045, - 0.5836707353591919, - -0.054762136191129684, - 0.21005213260650635, - -0.146541029214859, - 0.026764657348394394, - 0.06164403632283211, - 0.13031426072120667, - -0.19539456069469452, - 0.053036607801914215, - 0.4151616096496582, - 0.14065305888652802, - 0.054483991116285324, - 0.12797380983829498, - -0.1742629110813141, - 0.27107375860214233, - 0.050742555409669876, - 0.2400476038455963, - -0.004814263433218002, - 0.32790714502334595, - -0.2093295156955719, - 0.15674369037151337, - 0.07109211385250092, - -0.3802664875984192, - -0.3300723731517792, - 0.39757785201072693, - 0.20597624778747559, - -0.4995551109313965, - 0.22039131820201874, - 0.10235987603664398, - -0.20480772852897644, - -0.11565124988555908, - -0.04234688729047775, - -0.2751874625682831, - -0.19690366089344025, - 0.04203527420759201, - 0.012910130433738232, - -0.1736120879650116, - 0.09358257800340652, - -0.06102636456489563, - 0.1476498544216156, - 0.3511073887348175, - -0.21687066555023193, - -0.38187700510025024, - -0.09858687222003937, - -1.541949987411499, - 0.14928197860717773, - 0.27913179993629456, - 0.5910792946815491, - -0.09530351310968399, - 0.042550165206193924, - 0.31998467445373535, - -0.2935808002948761, - 0.17877762019634247, - -0.42522019147872925, - -0.1002252846956253, - 0.24506831169128418, - -0.012028349563479424, - -0.01161621231585741, - -0.06592228263616562, - 0.3877994418144226, - -0.33846354484558105, - -0.34534090757369995, - 0.2023712396621704, - -0.042639654129743576, - 0.03063664212822914, - -0.29227501153945923, - -0.3968042731285095, - -0.41985684633255005, - -0.13246391713619232, - 0.18694981932640076, - -0.046354345977306366, - 0.5806816220283508, - 0.03690534830093384, - -0.443873792886734, - 0.26182347536087036, - -0.24293017387390137, - 0.5143827199935913, - 0.20112280547618866, - -0.28122812509536743, - 0.14041480422019958, - -0.17839106917381287, - -0.11722562462091446, - -0.1712552309036255, - 0.19616204500198364, - 0.43894657492637634, - -0.13646912574768066, - 0.004487755708396435, - 0.02974642440676689, - 0.05980997160077095, - -0.1670512855052948, - 0.04580686613917351, - -0.420910507440567, - -0.001071929931640625, - 0.11478010565042496, - -0.11331496387720108, - 0.12373204529285431, - 0.09004705399274826, - -0.17702852189540863, - -0.019123854115605354, - -0.1288100928068161, - -0.37169039249420166, - -0.4662720561027527, - 0.37442561984062195, - 0.18873855471611023, - 0.14151960611343384, - 0.23636317253112793, - 0.13905660808086395, - -0.010603433474898338, - 0.17766110599040985, - 0.4484413266181946, - 0.4169641137123108, - 0.11436674743890762, - 0.013595366850495338, - -0.045982446521520615, - -0.17194116115570068, - -0.19342041015625, - 0.20780906081199646, - 0.40196728706359863, - -0.25039905309677124, - 0.04570662975311279, - 0.5544910430908203, - 0.07123783230781555, - -0.11022879928350449, - 1.089414358139038, - -0.29390278458595276, - 0.22609181702136993, - -0.12128780037164688, - 0.2755132019519806, - 0.013648644089698792, - -0.32570546865463257, - 0.07642745971679688, - 0.2736797332763672, - -0.4553698003292084, - 0.6472108364105225, - 0.3447061777114868, - -0.33788084983825684, - 0.08976311981678009, - -0.36027565598487854, - 0.37658625841140747, - 0.231145977973938, - 0.18201665580272675, - -0.148493230342865, - -0.3001708984375, - -0.34605124592781067, - 0.23437118530273438, - -0.34665608406066895, - -0.1837950497865677, - -0.22869136929512024, - 0.0028280257247388363, - -0.058978475630283356, - -0.05847141891717911, - 0.3172945976257324, - 0.05248671770095825, - -0.09966695308685303, - -0.1571982353925705, - -0.4286063313484192, - -0.19316384196281433, - -0.18204014003276825, - 0.7265452146530151, - 0.16682782769203186, - -0.14364638924598694, - -0.04676531255245209, - 0.413640558719635, - -0.08753673732280731, - 0.14306727051734924, - 0.11643042415380478, - 0.06543125957250595, - -0.25645750761032104, - 0.13066579401493073, - 0.14353647828102112, - -0.27806705236434937, - -0.1847536563873291, - -0.34352177381515503, - -0.0021650255657732487, - -0.03112264908850193, - -0.05791633576154709, - 0.4012259542942047, - 0.21817323565483093, - 0.08860315382480621, - 0.122983418405056, - -0.14338712394237518, - 0.12788084149360657, - 0.10928910970687866, - 0.2956147789955139, - 0.1792273223400116, - -0.4059372842311859, - -0.23331065475940704, - -0.37941601872444153, - 0.11205389350652695, - -0.4454869329929352, - 0.0583542101085186, - 0.03873931244015694, - 0.21176092326641083, - -0.30576521158218384, - 0.26758909225463867, - -0.1262715756893158, - -0.08964912593364716, - -0.17794224619865417, - 0.21173910796642303, - 0.3451806902885437, - -0.28578510880470276, - 0.0015843205619603395, - -0.13235023617744446, - 0.23455262184143066, - 0.15019331872463226, - -0.2953014373779297, - 0.20367667078971863, - -0.06641408056020737 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_058.json b/src/benchmark/output/results/results_graph_058.json deleted file mode 100644 index e14858d..0000000 --- a/src/benchmark/output/results/results_graph_058.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 65-year-old man who presented to the hospital with suspected uveitis of the right eye. He experienced right ocular pain and blurred vision for approximately 1 month prior to presentation.\n\n**Timeline of Diagnoses:**\n\n* **Suspected Uveitis:** The patient was referred to the hospital with suspected uveitis of the right eye, which was diagnosed as a suspected case of uveitis (code C0042095).\n* **Small Cell Lung Cancer (SCLC):** Four months prior to presentation, the patient was diagnosed with SCLC (code C0007106) and had developed right cerebellar metastasis and invasion.\n* **Metastasis:** The patient also had a diagnosis of metastasis (code C0242393), which was active at the time of presentation.\n\n**Timeline of Treatments:**\n\n* **Topical Medications:** Following SCLC diagnosis, the patient started therapy with topical 0.005% latanoprost, 1.0% brinzolamide, and 0.5% timolol maleate.\n* **Oral Acetazolamide:** The patient also took oral acetazolamide at a dose of 500 mg/day.\n* **Intravenous Mannitol:** Due to high IOP and pronounced nausea, the patient required intravenous administration of 200 mL of 20% hypertonic mannitol every 2-3 days for five administrations.\n\n**Timeline of Outcomes:**\n\n* **Iris Metastasis:** Anterior chamber fluid cytology revealed iris metastasis from SCLC, consistent with bronchoalveolar lavage cytology results.\n* **Neovascular Glaucoma:** The patient developed neovascular glaucoma (code C0271198), which was treated with a single intravitreal injection of 2 mg (0.05 mL of 40 mg/mL) aflibercept OD.\n* **Resolution of Symptoms:** Five days post-aflibercept injection, the patient's iris tumor size and iris neovascularization decreased, IOP measured at 18 mm Hg, and symptoms such as ocular pain and nausea were relieved.\n\n**Conclusion:**\nThe patient was diagnosed with suspected uveitis and SCLC, which led to the development of right cerebellar metastasis and invasion. Following diagnosis, the patient received topical medications and oral acetazolamide, as well as intravenous mannitol due to high IOP and nausea. The patient also developed iris metastasis from SCLC, which was treated with an intravitreal injection of aflibercept. Ultimately, the patient's symptoms resolved following treatment, and their IOP returned to normal.", - "bertscore": { - "precision": [ - 0.5613889694213867 - ], - "recall": [ - 0.7224175930023193 - ], - "f1": [ - 0.631804347038269 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 7, - "edge_count": 6, - "avg_in_degree": 0.8571428571428571, - "density": 0.14285714285714285 - }, - "trajectory_embedding": [ - 0.10041718930006027, - 0.16403163969516754, - -0.2795267105102539, - 0.20759916305541992, - 0.1098250150680542, - 0.12031718343496323, - 0.02523813582956791, - 0.28508585691452026, - 0.4031936228275299, - -0.14178399741649628, - -0.1515788584947586, - 0.027539696544408798, - -0.39865249395370483, - -0.16108302772045135, - -0.1848643273115158, - 0.29761239886283875, - -0.348704069852829, - 0.19526958465576172, - -0.07590274512767792, - -0.18397021293640137, - -0.1955096572637558, - 0.10713893175125122, - -0.5743194222450256, - 0.00762562220916152, - 0.07806367427110672, - 0.02329537272453308, - 0.4958905577659607, - 0.8108068108558655, - 0.13331110775470734, - 0.3856915831565857, - 0.10080420225858688, - -0.09534323215484619, - 0.1747761070728302, - 0.1420178860425949, - -0.3017433285713196, - 0.1649470031261444, - 0.1394738256931305, - 0.22270822525024414, - -0.08839493989944458, - 0.0466955304145813, - -0.18056416511535645, - 0.039326999336481094, - 0.9210913777351379, - 0.380204439163208, - 0.4561716914176941, - -0.8226035237312317, - -0.14125052094459534, - 0.7079371213912964, - -0.36442047357559204, - -0.34494560956954956, - 0.2782876193523407, - 0.7064962387084961, - 0.6023497581481934, - -0.5169581770896912, - 0.27580752968788147, - -0.20440661907196045, - -0.1758495420217514, - -0.4039357602596283, - -0.21733525395393372, - 0.11375804990530014, - 0.048031169921159744, - -0.15035252273082733, - 0.5047577619552612, - -0.3279033303260803, - -0.0837758257985115, - -0.20585878193378448, - -0.29636767506599426, - 0.0630626529455185, - 0.10342448204755783, - -0.16298635303974152, - -0.18039628863334656, - -0.4393019378185272, - -0.039508156478405, - -0.022983746603131294, - 0.07178163528442383, - -0.032513707876205444, - 0.45633506774902344, - -0.1324375569820404, - 0.24564631283283234, - 0.15320630371570587, - -0.1691569834947586, - -0.14381353557109833, - -0.2672562897205353, - 0.33864641189575195, - -0.21684782207012177, - -0.04640193656086922, - -0.15535108745098114, - -0.16606655716896057, - -0.3843379318714142, - 0.25596901774406433, - 0.10141774266958237, - -0.5092669725418091, - 0.1174798384308815, - -0.23468850553035736, - -0.08472394943237305, - 0.13617955148220062, - 0.38971585035324097, - 0.073185496032238, - 1.0961822271347046, - 0.006318185944110155, - 0.08026591688394547, - -0.10738039761781693, - 0.1991339772939682, - -0.08866874128580093, - 0.32724955677986145, - -0.05121637135744095, - 0.29665762186050415, - -0.6044756174087524, - 0.3382262587547302, - 0.4875820279121399, - 0.019187500700354576, - -0.2636858820915222, - 0.004726205486804247, - -0.4449402987957001, - 0.22213730216026306, - 0.10275395959615707, - 0.2415297031402588, - 0.22994555532932281, - 0.19549433887004852, - -0.22323870658874512, - -0.2822403609752655, - -0.09365540742874146, - 0.2984512746334076, - 0.13506314158439636, - -0.5046548247337341, - -0.02684345841407776, - -0.011541790328919888, - -0.05225741118192673, - 0.028683850541710854, - 0.07437215745449066, - -0.600497305393219, - -0.31889280676841736, - -0.09339629858732224, - -0.06603451073169708, - -0.09583941847085953, - 0.28762468695640564, - -0.27787861227989197, - 0.04449940845370293, - -0.9695418477058411, - 0.46700772643089294, - -0.4160101115703583, - -0.23633554577827454, - 0.05892905220389366, - -0.5885133147239685, - -0.2476823627948761, - 0.02767055295407772, - -0.26925036311149597, - 0.2188478261232376, - -0.1678793579339981, - -0.09294655174016953, - -0.1801975518465042, - -0.20275795459747314, - 0.31416985392570496, - 0.5441374182701111, - 0.08812812715768814, - -0.01153175812214613, - 0.07337536662817001, - 0.4216914176940918, - 0.11574424803256989, - -0.005643226206302643, - 0.005734612699598074, - 0.474221795797348, - 0.09835516661405563, - 0.1073085218667984, - -0.2133936583995819, - -0.46663352847099304, - -0.058094970881938934, - -0.2534818947315216, - 0.016529904678463936, - 0.15584397315979004, - -0.161490336060524, - 0.09208517521619797, - -0.47234630584716797, - 0.6378527283668518, - -0.015818390995264053, - 0.41032347083091736, - 0.12255750596523285, - 0.22990475594997406, - 0.2200852334499359, - 0.11963337659835815, - 0.11585784703493118, - -0.31792518496513367, - 0.5930489301681519, - 0.3332863748073578, - -0.2891683578491211, - 0.32059064507484436, - 0.28325918316841125, - -0.014230446889996529, - -0.2977527976036072, - 0.26158007979393005, - 0.5521560311317444, - -0.3529055416584015, - 0.652664065361023, - -0.1373528391122818, - -0.1728714555501938, - 0.04082566499710083, - -0.15764185786247253, - -0.15343567728996277, - -0.2646167278289795, - 0.09915491193532944, - 0.2570823132991791, - 0.1207243800163269, - -0.49108362197875977, - -0.00643101567402482, - 0.20962728559970856, - -0.18279743194580078, - 0.011648275889456272, - -0.03136153891682625, - -0.04385334625840187, - 0.12048060446977615, - -0.1709427535533905, - 0.21749188005924225, - -0.09882985800504684, - 0.3577049672603607, - -0.1837451159954071, - -0.2879418730735779, - 0.2881632149219513, - 0.08363316208124161, - -0.17137077450752258, - 0.26506057381629944, - 0.029290663078427315, - -0.36454805731773376, - -0.12866325676441193, - 0.15853480994701385, - -0.4535687565803528, - 0.2786649763584137, - 0.12622858583927155, - 0.44672510027885437, - 0.029467377811670303, - 0.12455600500106812, - -0.1133221909403801, - -0.4155275225639343, - 0.12809564173221588, - -0.25739291310310364, - -0.07217598706483841, - -0.27480801939964294, - 0.3002417981624603, - 0.03192080929875374, - 0.24665726721286774, - 0.2297316938638687, - 0.08520597964525223, - -0.19582438468933105, - 0.1384952962398529, - -0.4201824367046356, - -0.1205417662858963, - -0.3906688988208771, - -0.017530908808112144, - 0.41854026913642883, - 0.10915219783782959, - 0.252002090215683, - 0.0836314707994461, - -0.2809872031211853, - 0.0017748773097991943, - 0.03664844483137131, - -0.5397785902023315, - -0.49708253145217896, - -0.08055763691663742, - 0.07724291831254959, - -0.7061089277267456, - 0.3303668200969696, - 0.014823630452156067, - -0.0594077967107296, - 0.0644952803850174, - -0.30018875002861023, - -0.2310188114643097, - 0.09281862527132034, - 0.12350153177976608, - 0.024037566035985947, - -0.40277978777885437, - -0.0954475998878479, - -0.22221671044826508, - -0.07398925721645355, - -0.23883147537708282, - -0.09598464518785477, - -0.08223473280668259, - -0.07746248692274094, - -0.46295422315597534, - 0.09221555292606354, - 0.1759498119354248, - -0.49284741282463074, - -0.024186333641409874, - 0.20977185666561127, - -0.18195722997188568, - 0.24573591351509094, - 0.027450472116470337, - 0.3664107620716095, - 0.20598594844341278, - 0.011668480932712555, - 0.12794210016727448, - 0.6198838353157043, - 0.4467492997646332, - -0.1977706104516983, - 0.10685566812753677, - 0.03377616032958031, - -0.12240961939096451, - -0.056370168924331665, - -0.44993844628334045, - 0.44212961196899414, - -0.057738158851861954, - 0.22612033784389496, - 0.13757000863552094, - 0.13319425284862518, - 0.06207533925771713, - -0.22648075222969055, - 0.0888129323720932, - 0.41969555616378784, - -0.054957617074251175, - 0.25432226061820984, - 0.18717195093631744, - 0.28349289298057556, - 0.26631268858909607, - -0.08723854273557663, - 0.06313345581293106, - 0.07292996346950531, - -0.06033144146203995, - -0.08807481825351715, - -0.15816712379455566, - 0.34383082389831543, - 0.35739484429359436, - -0.22502963244915009, - -0.38183164596557617, - -0.02932651899755001, - -0.1200883537530899, - -0.11626052111387253, - -0.4932703673839569, - -0.3131512701511383, - 0.031234068796038628, - -0.032915148884058, - 0.2359011024236679, - 0.06965795159339905, - 0.12502223253250122, - 0.20343017578125, - -0.3544941842556, - -0.0006578112370334566, - 0.12905487418174744, - -0.06337586045265198, - -0.3025466799736023, - 0.6170421838760376, - -0.23069091141223907, - 0.17346599698066711, - 0.31216856837272644, - -0.4809999167919159, - -0.004114418290555477, - 0.1488792449235916, - 0.2956516146659851, - -0.1504010111093521, - 0.13538554310798645, - -0.03822466358542442, - 0.08713611215353012, - -0.22196988761425018, - 0.43739309906959534, - 0.15887358784675598, - 0.20813827216625214, - 0.6209712028503418, - 0.22635720670223236, - -0.45009705424308777, - 0.08219941705465317, - -0.21065066754817963, - 0.29089826345443726, - -0.183850958943367, - -0.13900092244148254, - 0.028947381302714348, - 0.2071864902973175, - 0.05713606998324394, - -0.23042525351047516, - 0.19195768237113953, - 0.1781945675611496, - 0.17089605331420898, - -0.0964665412902832, - 0.45976585149765015, - 0.07470469921827316, - -0.1567397266626358, - 0.4935135841369629, - -0.1300264447927475, - -0.2707837224006653, - 0.2981880009174347, - -0.190780907869339, - 0.12305842339992523, - -0.0402815155684948, - -0.11382778733968735, - -0.27641811966896057, - 0.018526004627346992, - -0.05870174989104271, - -0.11839889734983444, - -0.025937693193554878, - -0.23458120226860046, - 0.21909745037555695, - -0.13899435102939606, - 0.23618271946907043, - -0.06603067368268967, - 0.19974969327449799, - 0.07700403034687042, - 0.31901755928993225, - -0.12268050760030746, - -0.23568452894687653, - -0.10156311839818954, - 0.026971271261572838, - -0.12070135027170181, - -0.4358535706996918, - 0.07480071485042572, - 0.023448223248124123, - 0.5045492053031921, - -0.012661376036703587, - 0.07035442441701889, - 0.22327475249767303, - 0.09235532581806183, - 0.02730543352663517, - -0.5230974555015564, - 0.007723282556980848, - 0.0411105714738369, - 0.209525465965271, - 0.013834276236593723, - 0.02702438458800316, - -0.38615337014198303, - -0.23450268805027008, - -0.023800691589713097, - -0.12751401960849762, - 0.015096604824066162, - -0.11797446012496948, - -0.30267247557640076, - 0.3926370441913605, - 0.4907875657081604, - 0.47941917181015015, - -0.38207104802131653, - 0.32497796416282654, - 0.017633095383644104, - -0.27593132853507996, - -0.07738243043422699, - -0.12500427663326263, - -0.47137734293937683, - -0.08334764093160629, - 0.26694732904434204, - 0.34297674894332886, - -0.02544955350458622, - -0.15372708439826965, - 0.06564154475927353, - -0.05159115791320801, - -0.21892593801021576, - -0.07687093317508698, - 0.42052561044692993, - 0.305806428194046, - 0.12244294583797455, - 0.054697029292583466, - -0.66656094789505, - -0.5231123566627502, - -0.21303100883960724, - -0.3570212721824646, - -0.047308970242738724, - 0.17589758336544037, - 0.09871701896190643, - -0.1677543818950653, - 0.014241858385503292, - -0.057800475507974625, - -0.07792984694242477, - 0.15997658669948578, - -0.11668568849563599, - 0.1364569365978241, - 0.14003828167915344, - -0.35516777634620667, - 0.004816029686480761, - -0.17901955544948578, - -0.3729376196861267, - -0.24852094054222107, - 0.019686492159962654, - 0.22973741590976715, - -0.25645262002944946, - -0.050704143941402435, - 0.17498578131198883, - -0.07733910530805588, - -0.1157073974609375, - -0.006170225795358419, - -0.2686651349067688, - 0.2657169699668884, - -0.02755497395992279, - 0.0026688033249229193, - 0.08871249109506607, - -0.12708884477615356, - -0.09305834770202637, - 0.02858908660709858, - 0.11492156982421875, - 0.4335777759552002, - 0.22233478724956512, - 0.09606070816516876, - 0.628285825252533, - -0.00989628303796053, - 0.037419553846120834, - 0.3874848186969757, - -0.031134530901908875, - -0.03362620994448662, - -0.4043872058391571, - -0.13321109116077423, - 0.06271658092737198, - -0.5610679984092712, - -0.2521840035915375, - 0.24107013642787933, - 0.25532981753349304, - -0.39696183800697327, - -0.482626736164093, - -0.06920278072357178, - 0.16279837489128113, - -0.21867868304252625, - -0.09064681828022003, - -0.019119279459118843, - -0.30069079995155334, - -0.37123823165893555, - -0.0014421002706512809, - 0.17836792767047882, - 0.3759138584136963, - 0.2757260799407959, - 0.17132163047790527, - -0.3433229625225067, - -0.24997194111347198, - 0.1832418441772461, - 0.32347890734672546, - 0.13070085644721985, - -0.043225497007369995, - -0.008223836310207844, - 0.15412108600139618, - 0.1260257512331009, - -0.05618427321314812, - -0.09029193967580795, - 0.010234138928353786, - 0.10688466578722, - 0.263703852891922, - 0.10123255103826523, - -0.027598079293966293, - 0.21482370793819427, - -0.4252282679080963, - 0.1372317522764206, - -0.1032986119389534, - -0.02943190559744835, - 0.2652200758457184, - -0.21811029314994812, - -0.6660507917404175, - -0.07716627418994904, - 0.25762999057769775, - -0.0887565016746521, - -0.25831279158592224, - 0.005112537182867527, - 0.3262178301811218, - -0.08803188055753708, - -0.14818570017814636, - -0.05959288403391838, - -0.5844441056251526, - -0.23379959166049957, - 0.1150628998875618, - -0.09193355590105057, - -0.2545396387577057, - 0.0032503593247383833, - 0.4723699390888214, - 0.5558490753173828, - 0.12659133970737457, - -0.0324685201048851, - 0.2723774015903473, - 0.4639137387275696, - 0.15715958178043365, - -0.41566944122314453, - -10.644660949707031, - -0.04599574953317642, - -0.46536940336227417, - 0.4767208993434906, - -0.1508106291294098, - 0.10612978041172028, - -0.17334119975566864, - 0.15423369407653809, - 0.1521361619234085, - 0.11525695025920868, - -0.05711393430829048, - -0.19742313027381897, - 0.44899699091911316, - 0.25928008556365967, - 0.1872165948152542, - 0.11855956166982651, - -0.29581326246261597, - 0.23597176373004913, - 0.24299927055835724, - 0.1197739690542221, - 0.2828510105609894, - 0.4070078432559967, - -0.2599063515663147, - 0.0003257649368606508, - -0.08927349001169205, - -0.3044043183326721, - -0.15762130916118622, - 0.6840715408325195, - 0.42402681708335876, - -0.30725622177124023, - -0.016202952712774277, - -0.08197290450334549, - -0.19935300946235657, - 0.29807421565055847, - -0.2754516303539276, - -0.12647520005702972, - -0.01349520031362772, - 0.44971445202827454, - 0.2516697347164154, - -0.2670213580131531, - 0.04679897427558899, - 0.10771608352661133, - 0.3937901556491852, - -0.024761242792010307, - -0.06425591558218002, - -0.5644456744194031, - -0.03474839776754379, - -1.5868219137191772, - 0.06359662860631943, - 0.35858410596847534, - 0.26808327436447144, - 0.13491086661815643, - 0.14424268901348114, - 0.33256885409355164, - -0.3431401252746582, - 0.07156246155500412, - -0.40173229575157166, - -0.11011780053377151, - 0.25587064027786255, - 0.2502792477607727, - -0.1445828676223755, - -0.1258247047662735, - 0.870843231678009, - 0.11872349679470062, - -0.4261038899421692, - 0.20092728734016418, - 0.04641024023294449, - -0.21494145691394806, - -0.4077056348323822, - -0.8497666120529175, - -0.5675711035728455, - -0.21539020538330078, - -0.16943106055259705, - -0.0538436584174633, - 0.22634756565093994, - 0.016039861366152763, - -0.08935464173555374, - 0.33645573258399963, - -0.15450774133205414, - 0.2500685155391693, - 0.337556928396225, - -0.23790578544139862, - 0.22384729981422424, - -0.2001974880695343, - -0.14057216048240662, - -0.04974738880991936, - 0.27764591574668884, - 0.4104287028312683, - 0.07933108508586884, - -0.04021089896559715, - 0.06024518236517906, - 0.36865201592445374, - 0.02312830463051796, - -0.07954209297895432, - -0.326101690530777, - -0.23009265959262848, - -0.07886116951704025, - -0.038400452584028244, - -0.0770130380988121, - 0.014276815578341484, - -0.18870556354522705, - 0.19454653561115265, - 0.04629876837134361, - -0.3219069838523865, - -0.7883215546607971, - 0.368009090423584, - 0.22121450304985046, - 0.17012536525726318, - 0.09880270063877106, - -0.24345663189888, - -0.09150123596191406, - 0.12991054356098175, - 0.354809045791626, - 0.37348055839538574, - 0.22603295743465424, - -0.0593147873878479, - -0.03411107510328293, - -0.2639525532722473, - -0.07682289928197861, - -0.03669959306716919, - 0.5184228420257568, - -0.12020094692707062, - 0.10377638787031174, - 0.6753701567649841, - 0.02318601869046688, - 0.025752868503332138, - 0.8616753220558167, - -0.29157528281211853, - 0.2159208208322525, - 0.07087916880846024, - 0.07478644698858261, - -0.16236983239650726, - -0.45543211698532104, - 0.29560616612434387, - 0.4486173093318939, - -0.502527117729187, - 0.6408544182777405, - 0.4320511817932129, - -0.35508808493614197, - -0.08008872717618942, - -0.39318323135375977, - 0.3356773257255554, - 0.21981756389141083, - 0.1836652010679245, - -0.0480940155684948, - -0.203811377286911, - -0.3586428463459015, - -0.016758834943175316, - -0.23378369212150574, - -0.3532119393348694, - -0.20010623335838318, - 0.07577543705701828, - 0.24250154197216034, - 0.012310410849750042, - 0.23225699365139008, - 0.25747427344322205, - 0.0837361067533493, - -0.4620650112628937, - -0.1670389473438263, - -0.12135634571313858, - 0.020845815539360046, - 0.7568926811218262, - 0.009003372862935066, - -0.050994813442230225, - 0.055693041533231735, - 0.11255991458892822, - -0.157039612531662, - 0.24380910396575928, - 0.10165450721979141, - -0.05614985153079033, - -0.262979656457901, - 0.21788235008716583, - 0.10048622637987137, - -0.21479080617427826, - -0.009746639057993889, - 0.014993974007666111, - 0.002477705478668213, - 0.29585355520248413, - -0.20001018047332764, - 0.013258202001452446, - 0.3338783085346222, - -0.05860629305243492, - 0.01137791108340025, - -0.14215227961540222, - -0.016694771125912666, - 0.20936046540737152, - 0.44907936453819275, - -0.05439732223749161, - -0.29521647095680237, - -0.11369256675243378, - -0.7047519683837891, - 0.20202748477458954, - -0.41014936566352844, - 0.04539225623011589, - 0.26661771535873413, - 0.15643148124217987, - -0.13941065967082977, - 0.12629172205924988, - 0.22594773769378662, - -0.01957302913069725, - -0.13286712765693665, - 0.28059548139572144, - 0.44471898674964905, - -0.3310451805591583, - 0.4087703227996826, - -0.12750519812107086, - 0.2447206676006317, - 0.12802754342556, - -0.3163151443004608, - -0.021892959251999855, - -0.2720976769924164 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_059.json b/src/benchmark/output/results/results_graph_059.json deleted file mode 100644 index 0e7beba..0000000 --- a/src/benchmark/output/results/results_graph_059.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 67-year-old man born in the United States. He has a significant occupational asbestos exposure history while working for a shipbuilding company. The patient denies any history of cigarette smoking or exposure to organic dusts, pet birds, or exotic pets.\n\n**Initial Presentation (Step 1):**\nIn June 2024, the patient presented to the Emergency Department with concerns of weight loss and abdominal distention over the past 4 weeks. He denied any alterations in bowel habits, melena, hematochezia, abdominal pain, nausea, vomiting, dysphagia, or odynophagia.\n\n**Physical Examination and Laboratory Findings (Step 2):**\nAfter initial presentation, the patient underwent multiple abdominal paracenteses, which revealed hazy yellow ascitic fluid with nucleated cells. The cell count was 589 cells/\u03bcL, with lymphocytes 87% and erythrocytes 1461 cells/\u03bcL.\n\n**Imaging Studies (Step 3):**\nA CT scan performed during this time showed massive ascites and a lung nodule.\n\n**Abdominal Paracentesis and Ascitic Fluid Analysis (Steps 4-5):**\nThe patient underwent multiple abdominal paracenteses, which revealed exudative process in the ascitic fluid. The first abdominal paracentesis results showed lactate dehydrogenase 763 IU/L, total protein 4.0 g/dL, albumin 1.7 g/dL, and serum albumin-ascites gradient (SAAG) 0.4 g/dL.\n\n**Repeat Ascitic Fluid Analysis and Abdominal Ultrasonography (Step 6):**\nA repeat ascitic fluid analysis revealed no growth on AFB smear, culture, or fungal culture. An abdominal ultrasonography performed during this time showed normal portal vein size and Doppler indices, with the spleen not enlarged.\n\n**Serum FibroTest-ActiTest (Step 7):**\nThe patient underwent a Serum FibroTest-ActiTest, which suggested no hepatic fibrosis (F0).\n\n**Diagnosis:**\nBased on the results of the various diagnostic tests and imaging studies, the patient was diagnosed with cirrhosis due to chronic liver disease.\n\n**Treatment:**\nNo specific treatment is mentioned in the provided data. However, it can be inferred that the patient may require ongoing management of his ascites and potential complications related to cirrhosis.\n\n**Outcome:**\nThe patient's condition appears to be stable at this point, with no further information provided on any changes or developments since the last update.", - "bertscore": { - "precision": [ - 0.5451638698577881 - ], - "recall": [ - 0.6678067445755005 - ], - "f1": [ - 0.6002851128578186 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 8, - "edge_count": 7, - "avg_in_degree": 0.875, - "density": 0.125 - }, - "trajectory_embedding": [ - 0.3212769627571106, - 0.027124296873807907, - 0.007639573886990547, - 0.1450214982032776, - 0.04273857921361923, - -0.0566130205988884, - 0.15015661716461182, - 0.13063287734985352, - 0.360310435295105, - -0.2895905375480652, - -0.29207170009613037, - 0.0069152191281318665, - -0.5160095691680908, - 0.030897781252861023, - -0.4960392117500305, - 0.0959697812795639, - 0.19705793261528015, - 0.3254237174987793, - 0.07715645432472229, - -0.21043089032173157, - -0.463147908449173, - 0.1879664957523346, - -0.37844499945640564, - -0.12864604592323303, - 0.1851418912410736, - -0.03530677780508995, - 0.34146028757095337, - 0.5455081462860107, - 0.17384392023086548, - 0.17564281821250916, - 0.2514132857322693, - 0.15975980460643768, - 0.036245182156562805, - 0.14230892062187195, - -0.09213109314441681, - 0.29905956983566284, - 0.2861369252204895, - 0.25377601385116577, - -0.16749906539916992, - 0.25536131858825684, - -0.13993358612060547, - 0.00023137591779232025, - 0.8482945561408997, - 0.2792898416519165, - 0.4952598512172699, - -0.5131751894950867, - -0.04887772351503372, - 0.5369172692298889, - -0.5956619381904602, - -0.14719735085964203, - 0.10004576295614243, - 0.8377113938331604, - 0.4221964180469513, - -0.1498866230249405, - 0.3760993182659149, - 0.020198799669742584, - -0.24073506891727448, - -0.32281923294067383, - -0.3462153673171997, - 0.19768309593200684, - 0.010837219655513763, - -0.06512635946273804, - -0.09095405042171478, - -0.025230765342712402, - -0.2317681759595871, - -0.06113087013363838, - -0.12202930450439453, - -0.04193533957004547, - -0.06680387258529663, - -0.3318430781364441, - -0.275201678276062, - -0.15793970227241516, - -0.4154232144355774, - 0.047505490481853485, - 0.1517646461725235, - -0.25239837169647217, - 0.290303498506546, - -0.07159022986888885, - 0.06352033466100693, - 0.02245129644870758, - 0.038698140531778336, - 0.0609905906021595, - 0.2149471938610077, - 0.23555351793766022, - -0.4736027419567108, - 0.14000040292739868, - -0.07614503055810928, - 0.009592264890670776, - -0.2430189698934555, - 0.26903069019317627, - 0.35744327306747437, - -0.15594348311424255, - 0.09219282865524292, - -0.15058182179927826, - 0.058577582240104675, - -0.01003439724445343, - 0.09935586899518967, - 0.36904746294021606, - 0.8996005654335022, - 0.20306850969791412, - 0.15551058948040009, - 0.3015850782394409, - 0.3447939455509186, - -0.0427740179002285, - 0.5099870562553406, - -0.035501062870025635, - 0.16166184842586517, - -0.2816431522369385, - 0.05502912029623985, - 0.04181544855237007, - -0.1521131843328476, - -0.2861865162849426, - -0.12743669748306274, - -0.1058553010225296, - -0.0919744223356247, - -0.0004819463938474655, - -0.19011670351028442, - 0.11407125741243362, - 0.13274447619915009, - -0.337208092212677, - 0.20529358088970184, - -0.24752359092235565, - 0.36482328176498413, - 0.35213541984558105, - -0.28965550661087036, - 0.12707994878292084, - -0.10999983549118042, - 0.06338398158550262, - 0.09819918870925903, - 0.2249649465084076, - -0.6117876768112183, - -0.1353360116481781, - 0.12326651811599731, - 0.32901835441589355, - -0.18812713027000427, - 0.0034405263140797615, - -0.49328508973121643, - 0.01833994686603546, - -1.1489897966384888, - 0.1336502879858017, - -0.28609827160835266, - -0.01364973559975624, - 0.17200660705566406, - -0.540554404258728, - -0.045234743505716324, - -0.2363405078649521, - -0.05156566947698593, - 0.09913241863250732, - 0.05354035645723343, - 0.05111401900649071, - -0.09613097459077835, - -0.012324687093496323, - 0.05143137648701668, - 0.1441812366247177, - 0.11962719261646271, - 0.20701415836811066, - 0.19899319112300873, - 0.2105577290058136, - 0.21056552231311798, - -0.16368626058101654, - -0.23504261672496796, - 0.26082026958465576, - 0.1151704341173172, - -0.029884204268455505, - 0.13575918972492218, - -0.6310707926750183, - 0.1893375813961029, - -0.27659380435943604, - 0.21350906789302826, - -0.06985262036323547, - 0.022135544568300247, - 0.13919274508953094, - 0.033336490392684937, - 0.550769031047821, - 0.23101045191287994, - 0.40552353858947754, - -0.13831090927124023, - -0.2714400291442871, - 0.07616619765758514, - -0.05734608322381973, - 0.04041236639022827, - -0.05243794620037079, - 0.5886944532394409, - 0.24829775094985962, - -0.3395480215549469, - 0.1890704333782196, - 0.42277151346206665, - -0.39610356092453003, - -0.23838534951210022, - -0.1097087413072586, - 0.29599910974502563, - -0.3030024468898773, - 0.36264804005622864, - -0.27416932582855225, - -0.002256998559460044, - 0.09953072667121887, - -0.17637504637241364, - -0.09749571979045868, - 0.15355481207370758, - -0.046559691429138184, - 0.13408999145030975, - 0.1618463695049286, - -0.1542164385318756, - 0.19633816182613373, - 0.19059625267982483, - 0.02859725058078766, - 0.3913072645664215, - 0.08922357857227325, - 0.06587585061788559, - -0.05987701565027237, - -0.19762226939201355, - -0.054617591202259064, - -0.07245709002017975, - 0.19703792035579681, - 0.02544614113867283, - -0.3039719760417938, - 0.47266802191734314, - -0.030010439455509186, - -0.4196570813655853, - 0.12348750978708267, - -0.06359846889972687, - -0.21405507624149323, - 0.26691514253616333, - 0.004244185984134674, - -0.4218568205833435, - 0.16506026685237885, - 0.19302670657634735, - 0.24645447731018066, - 0.17231054604053497, - 0.02184642292559147, - -0.0057579874992370605, - -0.2975187599658966, - 0.11487952619791031, - -0.078462615609169, - -0.11089345067739487, - -0.4480881094932556, - 0.17235708236694336, - -0.02804313227534294, - -0.2285093367099762, - 0.4555237889289856, - 0.0796227902173996, - -0.09351184964179993, - 0.23616266250610352, - -0.18462201952934265, - -0.13238993287086487, - -0.32408544421195984, - 0.1980779618024826, - 0.33797764778137207, - 0.05364053696393967, - 0.22423195838928223, - 0.1668098121881485, - -0.11741682142019272, - 0.28384891152381897, - -0.2416415512561798, - -0.1464877426624298, - -0.2907993197441101, - -0.16407844424247742, - 0.07938133180141449, - -0.5039862394332886, - 0.046670764684677124, - 0.06203648820519447, - -0.09580573439598083, - -0.008611056953668594, - -0.020807089284062386, - -0.02417304553091526, - -0.05467764288187027, - -0.046899836510419846, - 0.31518134474754333, - 0.06074550747871399, - 0.12450337409973145, - -0.2061132937669754, - -0.24458137154579163, - -0.055746857076883316, - -0.1310538351535797, - 0.0230395644903183, - 0.043344415724277496, - -0.12026727199554443, - 0.11239442229270935, - 0.06690467894077301, - -0.3889109194278717, - -0.4895171523094177, - 0.29363420605659485, - -0.262593537569046, - 0.09981031715869904, - -0.08245856314897537, - 0.1632567048072815, - 0.36134058237075806, - -0.26351407170295715, - 0.08127778768539429, - 0.36136892437934875, - 0.4832592308521271, - 0.24930940568447113, - 0.03741318732500076, - -0.024904048070311546, - -0.1163511723279953, - 0.02844812348484993, - -0.4516550600528717, - 0.34866711497306824, - 0.14481890201568604, - -0.2824186384677887, - 0.20891878008842468, - 0.38981449604034424, - 0.06180645897984505, - -0.4528341591358185, - -0.2451983094215393, - 0.47724875807762146, - 0.16437865793704987, - 0.034343380481004715, - 0.05854594707489014, - 0.2400565892457962, - 0.5628412365913391, - 0.09386804699897766, - -0.13262082636356354, - 0.11176405847072601, - -0.144064798951149, - -0.20716191828250885, - 0.05214492231607437, - -0.25173211097717285, - 0.25760161876678467, - -0.012754656374454498, - -0.10397684574127197, - 0.2617386281490326, - -0.10037698596715927, - -0.22663657367229462, - -0.15257592499256134, - -0.05413558706641197, - -0.07852517068386078, - -0.26748934388160706, - 0.4026290774345398, - -0.04975870996713638, - -0.11292174458503723, - 0.5387819409370422, - -0.1804785579442978, - -0.20607417821884155, - 0.08430855721235275, - -0.015324007719755173, - -0.5522943735122681, - 0.31671521067619324, - -0.15871912240982056, - 0.062123000621795654, - 0.2647492289543152, - -0.09021185338497162, - -0.19445931911468506, - -0.10330142080783844, - 0.3321719765663147, - 0.1404438316822052, - -0.10668038576841354, - -0.003114070277661085, - 0.026027031242847443, - 0.2394903600215912, - 0.5777596235275269, - 0.2558059096336365, - 0.13160613179206848, - 0.42627429962158203, - -0.12550505995750427, - -0.34435176849365234, - -0.06116145849227905, - -0.026200558990240097, - 0.17813915014266968, - -0.31091344356536865, - -0.0025517381727695465, - -0.12868823111057281, - -0.07278139144182205, - 0.09273823350667953, - -0.32259196043014526, - -0.02077668532729149, - 0.3379209637641907, - -0.1663515716791153, - -0.051268190145492554, - 0.1931937336921692, - 0.22760646045207977, - 0.01691923290491104, - 0.32373934984207153, - -0.04550691321492195, - -0.12355415523052216, - 0.15325315296649933, - -0.1148691400885582, - 0.30213966965675354, - -0.15965230762958527, - -0.29309555888175964, - -0.45201045274734497, - -0.00864420086145401, - -0.21516954898834229, - -0.2456834763288498, - -0.059791937470436096, - -0.07710721343755722, - -0.11957000941038132, - -0.23716804385185242, - 0.18476612865924835, - 0.14864082634449005, - 0.16747361421585083, - 0.06555008143186569, - 0.3092443346977234, - 0.04005281999707222, - -0.29202619194984436, - 0.20402739942073822, - -0.009828926995396614, - -0.07447586208581924, - -0.1619531810283661, - -0.05409196391701698, - -0.12557074427604675, - 0.42131292819976807, - -0.0054033249616622925, - 0.013693362474441528, - -0.04359319061040878, - -0.016264937818050385, - -0.27936509251594543, - -0.5011048316955566, - -0.12215275317430496, - -0.06531307846307755, - -0.006484270095825195, - -0.04886622726917267, - 0.11686033755540848, - -0.16717609763145447, - -0.2340424507856369, - 0.03834771737456322, - 0.2928287088871002, - 0.21297332644462585, - -0.1366775929927826, - -0.07311826944351196, - 0.2535603940486908, - -0.033988941460847855, - 0.2689420282840729, - -0.07289992272853851, - 0.1635773926973343, - 0.1398514360189438, - -0.5353471040725708, - 0.004163078963756561, - -0.03261023014783859, - -0.32301777601242065, - -0.15493467450141907, - 0.20000344514846802, - 0.1817021518945694, - 0.07763637602329254, - -0.015451822429895401, - -0.011349033564329147, - 0.18871067464351654, - -0.39599063992500305, - -0.1327400505542755, - 0.28034642338752747, - 0.06907794624567032, - 0.36727070808410645, - -0.13643378019332886, - -0.23859362304210663, - -0.09165585041046143, - -0.08721356093883514, - -0.39118796586990356, - 0.14445024728775024, - 0.18976540863513947, - -0.3678368628025055, - -0.0621175616979599, - 0.08127462863922119, - 0.03158002346754074, - -0.16296127438545227, - 0.27506211400032043, - 0.14906084537506104, - 0.21920451521873474, - -0.095692478120327, - -0.3362957239151001, - -0.09714174270629883, - -0.26782506704330444, - -0.45965731143951416, - -0.2729566693305969, - 0.25732824206352234, - 0.2500401735305786, - 0.11006768047809601, - 0.2587975561618805, - 0.1262442022562027, - -0.13945728540420532, - -0.16680462658405304, - 0.05787403881549835, - -0.18935826420783997, - 0.3080531656742096, - -0.11207771301269531, - -0.21024547517299652, - 0.13613256812095642, - -0.5122655630111694, - 0.12121643871068954, - 0.07530513405799866, - 0.05485007166862488, - 0.25372180342674255, - 0.22170521318912506, - 0.21099893748760223, - 0.38444095849990845, - 0.19118119776248932, - -0.07639127224683762, - 0.0625278651714325, - 0.029036784544587135, - -0.05491258203983307, - -0.14122311770915985, - -0.0034462008625268936, - 0.32276755571365356, - -0.2703332304954529, - -0.011348448693752289, - 0.3242357075214386, - 0.20465674996376038, - -0.3318464159965515, - -0.3087562620639801, - -0.1053384318947792, - -0.07162285596132278, - 0.010435223579406738, - -0.2959614396095276, - -0.0535341240465641, - 0.15634381771087646, - -0.331221342086792, - -0.10667794197797775, - 0.1393067091703415, - 0.3724020719528198, - 0.2044195830821991, - 0.08791524916887283, - -0.07574434578418732, - -0.46646648645401, - 0.2736928164958954, - 0.34014174342155457, - -0.056019850075244904, - -0.06364163756370544, - -0.22366049885749817, - -0.10510315001010895, - 0.5999229550361633, - -0.10672521591186523, - -0.008123181760311127, - -0.06189455837011337, - -0.003806252032518387, - -8.20457935333252e-05, - -0.09706656634807587, - -0.10411538928747177, - 0.12421941757202148, - -0.4416852593421936, - 0.20919868350028992, - -0.24050256609916687, - -0.250347763299942, - 0.1624547839164734, - -0.07962118834257126, - -0.343248188495636, - -0.16261997818946838, - 0.3777315020561218, - -0.2147292196750641, - -0.0008063614368438721, - 0.08072583377361298, - 0.4382367730140686, - 0.0059815384447574615, - -0.16304868459701538, - 0.1740894615650177, - -0.4074089229106903, - 0.013331379741430283, - 0.052633680403232574, - -0.1317206770181656, - 0.07457226514816284, - 0.016384445130825043, - 0.42184486985206604, - 0.46257737278938293, - 0.2821699380874634, - -0.4744175672531128, - 0.27997997403144836, - 0.30315279960632324, - 0.2615652084350586, - -0.18839424848556519, - -10.491643905639648, - 0.12024131417274475, - -0.1401829719543457, - 0.6439712643623352, - -0.17492054402828217, - -0.16441068053245544, - 0.2167280614376068, - 0.05331645533442497, - 0.07022251188755035, - 0.23234547674655914, - -0.31370052695274353, - 0.12263962626457214, - 0.2970048189163208, - 0.24233338236808777, - -0.13582532107830048, - -0.016925543546676636, - -0.16516417264938354, - 0.12752556800842285, - -0.12318303436040878, - 0.21171900629997253, - 0.10651078075170517, - 0.28514766693115234, - -0.13628187775611877, - 0.35490620136260986, - 0.08108126372098923, - -0.3294053077697754, - -0.2595016062259674, - 0.4644663631916046, - 0.021114401519298553, - -0.18882602453231812, - 0.4103369116783142, - 0.33331775665283203, - -0.10410599410533905, - 0.1798475980758667, - -0.015130525454878807, - -0.14437705278396606, - 0.13387754559516907, - -0.10040943324565887, - 0.1596640944480896, - 0.24111023545265198, - 0.004278069362044334, - -0.41514283418655396, - 0.1710638552904129, - 0.15617680549621582, - -0.13672536611557007, - -0.3997924327850342, - -0.09216757118701935, - -1.5004844665527344, - 0.12088396400213242, - 0.319912314414978, - 0.4553978741168976, - 0.07330206781625748, - 0.15444152057170868, - 0.16016791760921478, - -0.29770636558532715, - 0.16814106702804565, - -0.3169933557510376, - 0.11687159538269043, - 0.10890576988458633, - -0.04409976303577423, - 0.11740757524967194, - -0.25917530059814453, - 0.28940874338150024, - -0.3599430024623871, - -0.4206664562225342, - 0.038310181349515915, - -0.07813330739736557, - 0.06403255462646484, - -0.26814451813697815, - -0.2969704866409302, - -0.39201462268829346, - 0.0221739262342453, - -0.09723573178052902, - -0.13933995366096497, - 0.4764840304851532, - 0.02239415980875492, - -0.43241268396377563, - 0.18955253064632416, - -0.013799913227558136, - 0.3527354300022125, - 0.22379443049430847, - -0.13570646941661835, - 0.13065463304519653, - -0.2224656641483307, - -0.2302999049425125, - -0.2931046783924103, - 0.07212059199810028, - 0.5245420336723328, - 0.001025363802909851, - 0.06678292900323868, - 0.006796227768063545, - 0.18915848433971405, - -0.1581624299287796, - -0.25025665760040283, - -0.4141623377799988, - 0.21802358329296112, - -0.26055097579956055, - -0.012953020632266998, - 0.09819892048835754, - -0.21092218160629272, - -0.14056001603603363, - 0.07320593297481537, - 0.03144840896129608, - -0.5079767107963562, - -0.2609317898750305, - 0.01043691672384739, - 0.18079671263694763, - 0.2092301845550537, - 0.3643694818019867, - 0.015498101711273193, - 0.005142934620380402, - 0.03656654804944992, - 0.24314287304878235, - 0.3042920231819153, - 0.18436726927757263, - -0.06862974911928177, - -0.15653011202812195, - -0.27482402324676514, - -0.31248536705970764, - 0.07927927374839783, - 0.3376043140888214, - -0.2397507131099701, - 0.3012092411518097, - 0.6214525103569031, - -0.09010297805070877, - -0.0747327208518982, - 0.9092488288879395, - -0.2168780416250229, - 0.22905679047107697, - -0.10259687155485153, - 0.11231158673763275, - 0.03952575474977493, - -0.1527365893125534, - 0.11306284368038177, - 0.37664610147476196, - -0.17984174191951752, - 0.46115875244140625, - 0.0986807644367218, - -0.16754582524299622, - 0.18710564076900482, - -0.2192874550819397, - 0.38158300518989563, - 0.13572749495506287, - 0.24496707320213318, - -0.07271167635917664, - -0.3392811417579651, - -0.23205186426639557, - 0.03885918855667114, - -0.45338955521583557, - -0.10303190350532532, - -0.11939848959445953, - 0.20109108090400696, - 0.047510892152786255, - -0.24978908896446228, - 0.2907201647758484, - -0.04647795110940933, - -0.12297841161489487, - -0.1981087327003479, - -0.43222033977508545, - -0.022479595616459846, - -0.012721878476440907, - 0.8237607479095459, - 0.08748522400856018, - 0.02047467604279518, - -0.11072924733161926, - 0.1098223328590393, - -0.14701330661773682, - 0.12096437066793442, - 0.02096686325967312, - -0.06532515585422516, - -0.5849081873893738, - 0.24678635597229004, - 0.09544801712036133, - -0.5073127150535583, - -0.1783873736858368, - -0.3916610777378082, - 0.009205341339111328, - -0.20584054291248322, - -0.1806856095790863, - 0.27739912271499634, - 0.26468750834465027, - -0.06101863086223602, - 0.14204496145248413, - -0.3146379590034485, - 0.16526249051094055, - 0.1364118903875351, - 0.13405324518680573, - 0.13687217235565186, - -0.14869526028633118, - -0.3088264465332031, - -0.3468317687511444, - 0.21980024874210358, - -0.12102527916431427, - -0.13035570085048676, - 0.14863520860671997, - 0.10306505858898163, - -0.3110966682434082, - -0.03367820754647255, - -0.37257009744644165, - 0.1630478948354721, - -0.23239746689796448, - 0.30163151025772095, - 0.19426922500133514, - -0.33579719066619873, - 0.10216507315635681, - -0.13191290199756622, - 0.1885225772857666, - 0.1349676549434662, - -0.26934781670570374, - 0.18921026587486267, - -0.055178768932819366 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_061.json b/src/benchmark/output/results/results_graph_061.json deleted file mode 100644 index f1612e4..0000000 --- a/src/benchmark/output/results/results_graph_061.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 65-year-old woman. Unfortunately, her demographic information is not explicitly provided in the data, so we will assume that she is an adult female with no other relevant medical history mentioned.\n\n**Initial Presentation (Step 1):**\nThe patient presented to our institution with dyspnea, which was her primary symptom. This presentation led to further investigation and subsequent diagnoses.\n\n**Diagnosis of Adenocarcinoma (Step 2):**\nFollowing a bronchoscopic biopsy of the right upper lobe, the patient was diagnosed with adenocarcinoma. The biopsy results revealed adenocarcinoma, which is a type of non-small cell lung cancer.\n\n**Imaging and Further Diagnosis (Step 3):**\nImaging studies, including bone and brain metastases, were performed to further evaluate the extent of disease. These findings led to a diagnosis of stage IVB lung adenocarcinoma with multiple metastases in the bones and brain.\n\n**Molecular Profiling and Treatment Planning (Step 4):**\nA tumor proportion score was calculated to guide treatment decisions. The results showed that the programmed death-ligand 1 tumor proportion score was 60%. Based on this information, palliative radiation therapy for spinal and brain metastases was initiated, followed by first-line chemotherapy with cisplatin, pemetrexed, and pembrolizumab.\n\n**Progression of Disease (Step 5-6):**\nAfter 13 cycles of chemotherapy, imaging revealed ascites and progressive disease. The patient's condition continued to decline, with worsening ascites and a marked increase in abdominal circumference.\n\n**Second-Line Therapy (Step 7):**\nDue to the progression of disease, second-line therapy was initiated with docetaxel and ramucirumab (DTX+RAM). However, despite this treatment, the patient's condition continued to deteriorate.\n\n**Current Status:**\nThe patient is currently in a poor clinical state, with significant ascites, hypoalbuminemia, and a marked decline in activities of daily living. Her performance status has decreased, and she requires frequent abdominal paracentesis. The patient's abdomen is markedly distended, and her vital signs are concerning.\n\n**Conclusion:**\nThis patient presents with a complex clinical scenario, characterized by rapidly progressive disease despite multiple treatment modalities. Further evaluation and management strategies will be necessary to address this challenging case.", - "bertscore": { - "precision": [ - 0.6582294702529907 - ], - "recall": [ - 0.6435860991477966 - ], - "f1": [ - 0.6508255004882812 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 2, - "node_count": 9, - "edge_count": 7, - "avg_in_degree": 0.7777777777777778, - "density": 0.09722222222222222 - }, - "trajectory_embedding": [ - 0.2474288046360016, - 0.2092151939868927, - -0.12583652138710022, - 0.19021673500537872, - 0.0814264714717865, - 0.177109494805336, - -0.002533096820116043, - 0.3530573844909668, - 0.759898841381073, - -0.3953750431537628, - -0.04731377586722374, - -0.07567942142486572, - -0.6275361180305481, - -0.17365944385528564, - -0.21753628551959991, - 0.26948532462120056, - -0.22064340114593506, - 0.46433359384536743, - -0.15440678596496582, - -0.28024598956108093, - -0.44532668590545654, - 0.2564878463745117, - -0.6302626132965088, - 0.10224810242652893, - 0.20949804782867432, - 0.009543396532535553, - 0.4226093292236328, - 0.4936608672142029, - 0.2593908905982971, - 0.223179429769516, - 0.152333602309227, - -0.3438692092895508, - 0.2866702973842621, - 0.16359074413776398, - -0.3603590130805969, - 0.19850221276283264, - 0.13433672487735748, - 0.4280996322631836, - -0.25178849697113037, - -0.016268614679574966, - -0.15648142993450165, - 0.12844860553741455, - 0.9050235152244568, - 0.079796701669693, - 0.4123043417930603, - -0.768221378326416, - -0.13257351517677307, - 0.7003955245018005, - -0.48415014147758484, - -0.4720841646194458, - 0.22440290451049805, - 0.9267661571502686, - 0.6730108857154846, - -0.4461787939071655, - 0.5450923442840576, - -0.2852385640144348, - -0.18545196950435638, - -0.28213265538215637, - -0.15310357511043549, - 0.013971561565995216, - 0.10701192170381546, - -0.40082472562789917, - 0.5132468938827515, - -0.253410667181015, - -0.06489899754524231, - -0.15557144582271576, - -0.32458093762397766, - 0.16422566771507263, - -0.04110860824584961, - -0.3884689211845398, - -0.13535962998867035, - -0.25457948446273804, - -0.05048992484807968, - 0.1686599999666214, - 0.040690187364816666, - -0.05052243545651436, - 0.3306153416633606, - -0.10000050067901611, - 0.2837120592594147, - 0.13309495151042938, - -0.031342513859272, - -0.13367417454719543, - -0.07288648188114166, - 0.37100809812545776, - -0.34105047583580017, - -0.13560695946216583, - -0.18512386083602905, - -0.15250417590141296, - -0.4056796431541443, - 0.09863897413015366, - -0.03251934051513672, - -0.5375545620918274, - 0.10792097449302673, - -0.24792835116386414, - -0.06818529218435287, - 0.20810289680957794, - 0.6429087519645691, - 0.03647049516439438, - 0.8740354180335999, - 0.01476980745792389, - 0.17828281223773956, - -0.06596662849187851, - 0.267045259475708, - 0.10360687971115112, - 0.32819274067878723, - -0.09128675609827042, - 0.1444026380777359, - -0.5285681486129761, - 0.45322221517562866, - 0.5252869129180908, - 0.14879195392131805, - -0.17116793990135193, - -0.10920645296573639, - -0.22087547183036804, - 0.2519119679927826, - 0.14097309112548828, - 0.044296979904174805, - 0.32062140107154846, - 0.33641088008880615, - -0.4486435651779175, - -0.28412505984306335, - -0.1374320536851883, - 0.19175387918949127, - 0.1435806006193161, - -0.5362026691436768, - -0.11653237789869308, - -0.12197071313858032, - -0.15996694564819336, - 0.09342095255851746, - -0.09662836045026779, - -0.49499061703681946, - -0.20311211049556732, - 0.03840809315443039, - -0.05671254172921181, - -0.14890745282173157, - 0.3777737617492676, - -0.24940115213394165, - -0.009750470519065857, - -1.1548070907592773, - 0.19032707810401917, - -0.3745191991329193, - -0.046673811972141266, - -0.03163881599903107, - -0.5799851417541504, - -0.26181238889694214, - -0.10767561197280884, - -0.11547179520130157, - 0.17647992074489594, - -0.23939257860183716, - 0.014531340450048447, - 0.042531922459602356, - -0.08516637235879898, - 0.25909045338630676, - 0.5073627829551697, - 0.11405060440301895, - -0.027198249474167824, - 0.010945739224553108, - 0.2674846947193146, - 0.058090660721063614, - -0.21556252241134644, - 0.1346292346715927, - 0.689369797706604, - 0.3295997381210327, - 0.16687455773353577, - -0.2907380163669586, - -0.6308159828186035, - -0.13070149719715118, - -0.0586414560675621, - -0.07125037163496017, - 0.08177226781845093, - -0.20934340357780457, - 0.1417921930551529, - -0.3093430697917938, - 0.648400604724884, - -0.002409420907497406, - 0.3685421049594879, - -0.07871555536985397, - -0.061614882200956345, - 0.1369674652814865, - 0.21043172478675842, - 0.160532146692276, - -0.4026050865650177, - 0.6824887990951538, - 0.3416898548603058, - -0.3958756625652313, - 0.18998302519321442, - 0.3921610713005066, - 0.11419449746608734, - -0.3193144202232361, - 0.017555907368659973, - 0.6630592942237854, - -0.397549033164978, - 0.7330995798110962, - -0.34225431084632874, - -0.029733510687947273, - 0.2507571876049042, - -0.1209719181060791, - 0.03246713802218437, - -0.12745186686515808, - -0.07992155849933624, - 0.3425280451774597, - -0.00027002859860658646, - -0.38500699400901794, - -0.028524037450551987, - 0.2373577207326889, - -0.05475214123725891, - 0.2468254119157791, - -0.1189594566822052, - 0.15761160850524902, - 0.13603991270065308, - -0.06449518352746964, - 0.3302517533302307, - -0.09825067967176437, - 0.33678150177001953, - 0.09319666028022766, - -0.5011940002441406, - 0.12913429737091064, - -0.0006219395436346531, - -0.12734948098659515, - 0.09022471308708191, - 0.019520405679941177, - -0.34538379311561584, - -0.1626301407814026, - 0.000229712575674057, - -0.6532209515571594, - 0.2616381347179413, - 0.21147912740707397, - 0.19318003952503204, - 0.25716009736061096, - 0.053813524544239044, - -0.12325683981180191, - -0.5003531575202942, - 0.33513346314430237, - -0.14115193486213684, - -0.09196598082780838, - -0.3111063241958618, - 0.30827629566192627, - -0.07816414535045624, - 0.19592779874801636, - 0.31989797949790955, - 0.005649898201227188, - -0.007455252110958099, - 0.11787906289100647, - -0.39907586574554443, - -0.07571979612112045, - -0.4045724868774414, - -0.008730463683605194, - 0.34730827808380127, - 0.11567720770835876, - 0.26986992359161377, - -0.0828150138258934, - -0.1537369340658188, - 0.16460679471492767, - -0.1437443047761917, - -0.5334728956222534, - -0.283153235912323, - 0.026044059544801712, - -0.11731011420488358, - -0.8561437726020813, - 0.37526512145996094, - -0.16706308722496033, - 0.08130678534507751, - 0.2621362507343292, - -0.3420047163963318, - -0.17030273377895355, - 0.0887889564037323, - 0.1239231750369072, - 0.14007605612277985, - -0.3320673108100891, - 0.01137293130159378, - -0.2528994381427765, - -0.20001554489135742, - -0.2609359323978424, - -0.034444257616996765, - 0.05742136389017105, - 0.030924983322620392, - -0.44553273916244507, - -0.12867368757724762, - 0.03368363529443741, - -0.3206373453140259, - -0.08493828773498535, - 0.13794586062431335, - -0.21532762050628662, - 0.17406167089939117, - 0.07746371626853943, - 0.19047626852989197, - 0.2787382900714874, - 0.15642473101615906, - 0.043574824929237366, - 0.4282212555408478, - 0.37749844789505005, - -0.1087842583656311, - 0.02302526868879795, - -0.04575304687023163, - -0.09677232056856155, - -0.01350809633731842, - -0.39988046884536743, - 0.48384684324264526, - 0.02535863034427166, - 0.020812466740608215, - 0.1330721080303192, - 0.22198781371116638, - 0.03276463598012924, - -0.2221183329820633, - 0.10217461735010147, - 0.5667365193367004, - 0.07253216207027435, - 0.18427276611328125, - 0.2227112054824829, - 0.22626850008964539, - 0.32970350980758667, - -0.12805035710334778, - 0.09570568799972534, - 0.27290207147598267, - -0.0688340812921524, - -0.2575719654560089, - 0.024955278262495995, - 0.31039804220199585, - 0.543548047542572, - -0.20509736239910126, - -0.266879677772522, - -0.1455192267894745, - -0.13511225581169128, - -0.01576375402510166, - -0.44707226753234863, - -0.16930513083934784, - 0.11384731531143188, - -0.26227372884750366, - 0.43528634309768677, - 0.11493717133998871, - -0.06934335827827454, - 0.3761230707168579, - -0.49820417165756226, - -0.09861333668231964, - 0.2508455812931061, - -0.1294126659631729, - -0.4030299782752991, - 0.46051907539367676, - -0.13734400272369385, - -0.027555784210562706, - 0.40941566228866577, - -0.5176143050193787, - -0.16636493802070618, - 0.1102132499217987, - 0.3547123670578003, - -0.11693757772445679, - 0.13585558533668518, - 0.018819980323314667, - 0.09399145096540451, - 0.1057262271642685, - 0.4412054121494293, - 0.053070418536663055, - 0.31878265738487244, - 0.7638611197471619, - 0.23469914495944977, - -0.3656395375728607, - 0.09445472806692123, - -0.10848180949687958, - 0.3663689196109772, - -0.11580905318260193, - -0.06980348378419876, - -0.23841078579425812, - 0.165745347738266, - 0.04646908864378929, - -0.3088207244873047, - 0.0010346155613660812, - 0.0004941858351230621, - 0.09051825106143951, - -0.07388828694820404, - 0.37136349081993103, - 0.010374654084444046, - -0.17990358173847198, - 0.5024390816688538, - -0.16215890645980835, - -0.2659148573875427, - 0.40283387899398804, - -0.189349964261055, - 0.07735902816057205, - 0.08453433215618134, - -0.25369948148727417, - -0.27845457196235657, - 0.15960581600666046, - -0.4060025215148926, - -0.2871885299682617, - 0.11507461965084076, - -0.2797015905380249, - 0.09516991674900055, - -0.3060813844203949, - 0.04376138001680374, - 0.07084845006465912, - 0.10474808514118195, - 0.2310372143983841, - 0.3101925849914551, - 0.18945907056331635, - -0.16413262486457825, - 0.2844293713569641, - -0.03617854788899422, - -0.18950383365154266, - -0.3586387634277344, - 0.14893342554569244, - -0.1790696233510971, - 0.7171720266342163, - 0.10400288552045822, - -0.03010983020067215, - 0.15797582268714905, - -0.11059305816888809, - -0.12730857729911804, - -0.27869167923927307, - 0.00712523004040122, - -0.12241735309362411, - 0.12554235756397247, - 0.29801830649375916, - 0.0314694419503212, - -0.36098769307136536, - -0.10374028980731964, - -0.1435193121433258, - -0.10725550353527069, - 0.003017284907400608, - -0.07079105079174042, - -0.16502737998962402, - 0.46602460741996765, - 0.28542712330818176, - 0.5367545485496521, - -0.36782941222190857, - 0.2636677026748657, - 0.014116751030087471, - -0.36083322763442993, - -0.012809373438358307, - -0.20034296810626984, - -0.463847279548645, - -0.1582167148590088, - 0.33216992020606995, - 0.29515835642814636, - -0.04150944948196411, - -0.07910757511854172, - 0.1025189757347107, - 0.16058295965194702, - -0.38547948002815247, - -0.06299492716789246, - 0.41649138927459717, - 0.19950976967811584, - 0.3958536684513092, - 0.13724705576896667, - -0.5606046915054321, - -0.34546399116516113, - -0.06539136916399002, - -0.4102364182472229, - -0.012278708629310131, - 0.23257459700107574, - 0.01011296920478344, - -0.12340724468231201, - 0.06791362166404724, - -0.035072579979896545, - -0.23245300352573395, - 0.29668891429901123, - -0.31240156292915344, - 0.32346245646476746, - 0.07061052322387695, - -0.18248093128204346, - -0.14157210290431976, - -0.19322997331619263, - -0.3813169300556183, - -0.11284425109624863, - 0.1710788458585739, - 0.18879346549510956, - -0.38051337003707886, - 0.01378791406750679, - 0.19295620918273926, - -0.12452749907970428, - -0.23847848176956177, - 0.05666845664381981, - -0.4183095097541809, - 0.349368155002594, - -0.22666415572166443, - -0.28490397334098816, - 0.0757436454296112, - -0.1464388072490692, - -0.09050866961479187, - 0.16522878408432007, - 0.061005599796772, - 0.4142916202545166, - -0.026998110115528107, - 0.011175381019711494, - 0.5083684325218201, - 0.08929872512817383, - 0.16157595813274384, - 0.3694569170475006, - 0.08086130768060684, - -0.006170984357595444, - -0.4611409902572632, - -0.29081836342811584, - 0.2145928144454956, - -0.4151502251625061, - -0.17983511090278625, - 0.10503862798213959, - 0.30314862728118896, - -0.5050584077835083, - -0.43113836646080017, - 0.05641426146030426, - 0.0619920939207077, - -0.013836918398737907, - -0.14363308250904083, - -0.27965402603149414, - -0.13117866218090057, - -0.2959071099758148, - -0.043925609439611435, - 0.17751044034957886, - 0.6072612404823303, - 0.15313737094402313, - 0.23825585842132568, - -0.30539458990097046, - -0.11196178197860718, - 0.306706041097641, - 0.22055192291736603, - 0.09758789837360382, - -0.13543783128261566, - -0.14155618846416473, - 0.29686009883880615, - 0.4885350465774536, - 0.06608840078115463, - 0.13890081644058228, - 0.01013236865401268, - 0.11781002581119537, - 0.2549940049648285, - 0.031785257160663605, - -0.18353252112865448, - -0.004647810012102127, - -0.46123290061950684, - 0.18704335391521454, - -0.21100419759750366, - -0.07775810360908508, - 0.28343111276626587, - -0.22152259945869446, - -0.6229356527328491, - -0.21281684935092926, - 0.1824328601360321, - -0.10667175054550171, - -0.2114647775888443, - 0.22491976618766785, - 0.2824113070964813, - -0.07781774550676346, - -0.2466939091682434, - 0.09478389471769333, - -0.5808854103088379, - -0.40948423743247986, - 0.07500547915697098, - -0.05559469014406204, - -0.17505601048469543, - 0.0973970964550972, - 0.5113881230354309, - 0.6146116852760315, - 0.34088584780693054, - -0.02090776152908802, - 0.2461005002260208, - 0.5180326700210571, - 0.3032766282558441, - -0.24937379360198975, - -10.492722511291504, - -0.18166381120681763, - -0.33075693249702454, - 0.609231173992157, - -0.21124954521656036, - 0.041339412331581116, - -0.030709220096468925, - 0.0462377667427063, - 0.008817996829748154, - 0.13839074969291687, - -0.14367790520191193, - -0.226935014128685, - 0.21971964836120605, - 0.44054844975471497, - 0.00036082929000258446, - 0.2685233950614929, - -0.32103100419044495, - 0.40157151222229004, - -0.019415132701396942, - 0.12625589966773987, - 0.08065924048423767, - 0.4054347276687622, - -0.32254594564437866, - 0.07994589954614639, - -0.15920427441596985, - -0.5145461559295654, - -0.18526479601860046, - 0.6663429141044617, - 0.454655259847641, - -0.4681839346885681, - 0.16253331303596497, - 0.10277656465768814, - -0.1387007236480713, - 0.25983044505119324, - -0.29312244057655334, - -0.12110882997512817, - -0.10613927245140076, - 0.19227342307567596, - 0.4411795139312744, - -0.18659783899784088, - 0.0602419339120388, - -0.14831030368804932, - 0.3380459249019623, - 0.05273851752281189, - -0.22291673719882965, - -0.583213210105896, - -0.01348314993083477, - -1.751699686050415, - 0.39631059765815735, - 0.39011040329933167, - 0.397417813539505, - 0.20549944043159485, - 0.10121989995241165, - 0.3133712410926819, - -0.22824794054031372, - -0.12035030871629715, - -0.44932204484939575, - -0.2018738090991974, - 0.1286967694759369, - 0.04690631106495857, - 0.14393851161003113, - -0.04387877508997917, - 0.6374436020851135, - 0.06679205596446991, - -0.21566534042358398, - 0.03216436877846718, - 0.18498210608959198, - -0.1780645251274109, - -0.41825467348098755, - -0.8771959543228149, - -0.5769665241241455, - 0.1912241280078888, - -0.15896640717983246, - -0.07813112437725067, - 0.3110414147377014, - 0.0019352929666638374, - -0.20062318444252014, - 0.2649616599082947, - 0.029607579112052917, - 0.3840513527393341, - 0.33135515451431274, - -0.12452322244644165, - 0.1190989762544632, - -0.19417904317378998, - -0.23861216008663177, - -0.14152145385742188, - 0.17432525753974915, - 0.540013313293457, - -0.04155760258436203, - -0.16007274389266968, - 0.010763381607830524, - 0.4254085421562195, - 0.026549600064754486, - -0.20764987170696259, - -0.4897440969944, - 0.049948353320360184, - 0.04619473218917847, - 0.14731572568416595, - -0.030806168913841248, - -0.07910434156656265, - -0.29132890701293945, - 0.17112918198108673, - -0.09082689881324768, - -0.635960578918457, - -0.5755260586738586, - 0.2536362111568451, - 0.16383564472198486, - 0.14503750205039978, - 0.021618077531456947, - -0.17618215084075928, - -0.25938379764556885, - 0.09301234036684036, - 0.22947996854782104, - 0.5216777324676514, - 0.28966039419174194, - -0.10596019774675369, - 0.09310103952884674, - -0.34401458501815796, - -0.09563308954238892, - -0.013886112719774246, - 0.44787025451660156, - 0.007255901582539082, - 0.17670409381389618, - 0.7266382575035095, - -0.029979493468999863, - 0.05816517770290375, - 0.920714259147644, - -0.5000869035720825, - 0.16242334246635437, - -0.010177046060562134, - 0.20143023133277893, - -0.024314286187291145, - -0.592297375202179, - 0.023114845156669617, - 0.5272396206855774, - -0.32394716143608093, - 0.851578414440155, - 0.396298885345459, - -0.27341026067733765, - -0.131796196103096, - -0.3363179564476013, - 0.5272847414016724, - 0.19720755517482758, - 0.1670018434524536, - -0.1992090940475464, - -0.315632700920105, - -0.3610754907131195, - 0.10325397551059723, - -0.27086135745048523, - -0.2982610762119293, - -0.18296584486961365, - 0.08418313413858414, - 0.1647537499666214, - -0.07370283454656601, - 0.332377552986145, - 0.30741748213768005, - -0.07301062345504761, - -0.3441603481769562, - -0.32363730669021606, - -0.0737682431936264, - 0.039549343287944794, - 0.9724972248077393, - -0.14692151546478271, - -0.19200702011585236, - -0.03663553297519684, - 0.13727612793445587, - -0.2483002096414566, - 0.19835573434829712, - 0.08698147535324097, - -0.07522369176149368, - -0.41911011934280396, - 0.3206632733345032, - 0.17721211910247803, - -0.3879513144493103, - -0.07318800687789917, - 0.009198175743222237, - -0.09736260026693344, - 0.1958516389131546, - -0.16283875703811646, - 0.09489928930997849, - 0.30212172865867615, - -0.046928297728300095, - 0.09360192716121674, - -0.3726518750190735, - -0.22947120666503906, - 0.11896955221891403, - 0.4078627824783325, - 0.035514019429683685, - -0.3865315616130829, - -0.23404957354068756, - -0.6315596103668213, - 0.34451207518577576, - -0.5986541509628296, - -0.11872436851263046, - 0.15665724873542786, - 0.19783008098602295, - -0.16555820405483246, - 0.2139514535665512, - 0.10367842018604279, - -0.06595541536808014, - -0.23181718587875366, - 0.332355797290802, - 0.5700253248214722, - -0.22458267211914062, - 0.5243464708328247, - -0.19641821086406708, - 0.10315823554992676, - 0.09639372676610947, - -0.23391179740428925, - 0.1516333818435669, - -0.4367642402648926 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_062.json b/src/benchmark/output/results/results_graph_062.json deleted file mode 100644 index 7726b4c..0000000 --- a/src/benchmark/output/results/results_graph_062.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 38-year-old male who presented with a chronic recurrent dry cough over the course of a month. He denied any fever, sputum or blood production, and chest pain.\n\n**Timeline of Diagnoses:**\n\n1. **Step 1 (N1):** The patient's chronic recurrent dry cough prompted a chest computed tomography (CT) scan.\n2. **Step 2 (N2):** The CT revealed pulmonary masses at an external hospital, leading to admission to the oncology department for further evaluation and treatment.\n3. **Step 3 (N3):** The patient was admitted to the oncology department for further evaluation and treatment.\n4. **Step 4 (N4):** As part of the evaluation, the patient's medical history was reviewed, revealing no history of hypertension, coronary heart disease, diabetes, cerebral venous thrombosis or hemorrhage, tuberculosis, chronic hepatitis B virus infection and other diseases.\n5. **Step 5 (N5):** Vitals and labs were taken as part of the evaluation, including temperature 37.2\u00b0C, pulse rate 118 bpm, respiratory rate 20 breaths/minute, blood pressure 106/69 mmHg, white blood cells 7.97 \u00d7 109/L, hemoglobin 142 g/L, platelets 287 \u00d7 109/L, and various other lab results.\n6. **Step 6 (N6):** Additional labs were taken as part of the evaluation, including treponema pallidum-specific antibody, hepatitis B surface antigen, and hepatitis C.\n\n**Treatments:**\n\nThe patient underwent a series of evaluations and treatments based on the findings from each step:\n\n* Following the CT scan, the patient was admitted to the oncology department for further evaluation and treatment.\n* As part of the evaluation, the patient's medical history was reviewed, revealing no history of certain diseases.\n* Vitals and labs were taken as part of the evaluation.\n\n**Outcomes:**\n\nThe patient's current status is not explicitly stated in the provided data. However, based on the timeline of diagnoses and treatments, it appears that the patient has undergone a series of evaluations and treatments for pulmonary masses detected by CT scan. The patient's medical history was reviewed, revealing no history of certain diseases, and vitals and labs were taken as part of the evaluation.\n\n**Conclusion:**\n\nThe patient presented with a chronic recurrent dry cough over the course of a month, which prompted a chest CT scan that revealed pulmonary masses. The patient underwent a series of evaluations and treatments based on the findings from each step, including admission to the oncology department for further evaluation and treatment. The patient's medical history was reviewed, revealing no history of certain diseases, and vitals and labs were taken as part of the evaluation.", - "bertscore": { - "precision": [ - 0.47996535897254944 - ], - "recall": [ - 0.5415050387382507 - ], - "f1": [ - 0.5088814496994019 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 6, - "edge_count": 5, - "avg_in_degree": 0.8333333333333334, - "density": 0.16666666666666666 - }, - "trajectory_embedding": [ - 0.29947397112846375, - -0.028808513656258583, - 0.018951475620269775, - 0.24079148471355438, - 0.11866217851638794, - 0.17880016565322876, - 0.11841905117034912, - 0.2565062940120697, - 0.5162163972854614, - -0.40549495816230774, - -0.19314958155155182, - -0.05226249620318413, - -0.6632895469665527, - -0.11044865846633911, - -0.34900379180908203, - 0.20892314612865448, - 0.0023391495924443007, - 0.3613584041595459, - 0.03122534416615963, - -0.24920932948589325, - -0.4481029510498047, - 0.3001985251903534, - -0.5988388061523438, - 0.05307899788022041, - 0.22755618393421173, - -0.131968691945076, - 0.4439794719219208, - 0.5466761589050293, - 0.31771886348724365, - 0.24100959300994873, - -0.10971758514642715, - -0.17458467185497284, - 0.06261575222015381, - 0.12151173502206802, - -0.332698792219162, - 0.19091731309890747, - 0.23537187278270721, - 0.2702086865901947, - -0.1578827053308487, - 0.000803215429186821, - -0.24547170102596283, - -0.01477339118719101, - 0.8851456046104431, - 0.18155045807361603, - 0.43704381585121155, - -0.5708225965499878, - -0.1669672727584839, - 0.748521625995636, - -0.5138639807701111, - -0.17732495069503784, - -0.09516710042953491, - 0.9330987930297852, - 0.33173343539237976, - -0.31040236353874207, - 0.441397100687027, - -0.16228680312633514, - -0.20543169975280762, - -0.35198330879211426, - -0.11635354906320572, - 0.21407131850719452, - 0.12020236253738403, - -0.41610679030418396, - 0.4582405984401703, - -0.22627276182174683, - 0.029675668105483055, - -0.02421610616147518, - -0.10107824206352234, - 0.032975051552057266, - -0.09741229563951492, - -0.3790196180343628, - -0.13328605890274048, - -0.2717601954936981, - -0.1202009916305542, - 0.052508652210235596, - 0.24520277976989746, - -0.2078080177307129, - 0.41277584433555603, - -0.1218118965625763, - 0.12164954096078873, - 0.2530306875705719, - -0.16012853384017944, - -0.13158580660820007, - 0.009668275713920593, - 0.2985859811306, - -0.39279451966285706, - 0.07253089547157288, - -0.02653445303440094, - -0.09272889047861099, - -0.457582950592041, - 0.217140331864357, - 0.07936916500329971, - -0.4932047128677368, - 0.0904335081577301, - -0.45746758580207825, - 0.0318153090775013, - 0.21505804359912872, - 0.4336695373058319, - 0.17545145750045776, - 0.72902512550354, - -0.013932471163570881, - 0.05010358616709709, - 0.1858871430158615, - 0.3562144935131073, - 0.17085601389408112, - 0.4035920798778534, - 0.051238495856523514, - 0.06851653009653091, - -0.43026259541511536, - 0.3828446865081787, - 0.3200426995754242, - -0.08956816792488098, - -0.321315199136734, - -0.1656428575515747, - -0.248518705368042, - -0.02897167019546032, - 0.12237484008073807, - 0.0023838530760258436, - 0.06082877516746521, - 0.398444801568985, - -0.38420602679252625, - -0.10816473513841629, - -0.06444895267486572, - 0.42409154772758484, - 0.1571182757616043, - -0.43264588713645935, - 0.01029630471020937, - -0.16299012303352356, - -0.14038507640361786, - -0.08940261602401733, - 0.12581586837768555, - -0.6488975882530212, - -0.32606425881385803, - 0.0425783134996891, - 0.17472527921199799, - -0.08513165265321732, - 0.19218067824840546, - -0.35194024443626404, - 0.14117495715618134, - -1.1187050342559814, - 0.16388438642024994, - -0.3338117301464081, - -0.11240413784980774, - 0.008726236410439014, - -0.5794187188148499, - -0.28249165415763855, - -0.17164753377437592, - -0.13809709250926971, - 0.09689880162477493, - -0.2258555293083191, - -0.07129588723182678, - -0.015294477343559265, - -0.06722518801689148, - 0.22740864753723145, - 0.4822322428226471, - 0.009144107811152935, - 0.11241891235113144, - 0.12156564742326736, - 0.15985681116580963, - 0.10972777009010315, - -0.21470296382904053, - -0.26282814145088196, - 0.530223548412323, - 0.32163918018341064, - 0.25565120577812195, - 0.06727799773216248, - -0.7073482871055603, - 0.019063390791416168, - -0.15896780788898468, - -0.10646619647741318, - 0.21319927275180817, - 0.023521238937973976, - 0.15306086838245392, - -0.20089195668697357, - 0.6239797472953796, - -0.06495245546102524, - 0.2984829843044281, - -0.005029628518968821, - -0.24798424541950226, - 0.1151365414261818, - 0.15143656730651855, - 0.0627003163099289, - -0.08622157573699951, - 0.5532793998718262, - 0.18645204603672028, - -0.4199434220790863, - 0.18466228246688843, - 0.4629444181919098, - -0.11579140275716782, - -0.19583427906036377, - 0.049188774079084396, - 0.16527323424816132, - -0.45052942633628845, - 0.33943137526512146, - -0.23000948131084442, - -0.12981541454792023, - 0.18078674376010895, - -0.21670301258563995, - 0.07381177693605423, - -0.040719226002693176, - 0.115618996322155, - 0.1891051083803177, - 0.017074478790163994, - -0.30659762024879456, - 0.11881404370069504, - 0.12183761596679688, - -0.11458485573530197, - 0.3580172061920166, - 0.03293129801750183, - 0.08483340591192245, - 0.15004120767116547, - -0.023213421925902367, - 0.11114390939474106, - -0.07456807792186737, - 0.24347519874572754, - 0.054390013217926025, - -0.4227900505065918, - 0.31680193543434143, - -0.11612141877412796, - -0.329537957906723, - 0.18808938562870026, - -0.035357825458049774, - -0.3558134138584137, - -0.03428232669830322, - 0.03179483115673065, - -0.5616217851638794, - 0.1104147732257843, - 0.18924717605113983, - 0.3007170259952545, - 0.07679153233766556, - 0.06298815459012985, - -0.020120391622185707, - -0.5644744038581848, - 0.25673893094062805, - -0.17612801492214203, - -0.021223144605755806, - -0.4530586898326874, - 0.19764526188373566, - -0.12454725056886673, - 0.13493140041828156, - 0.3532525599002838, - 0.22731302678585052, - -0.07901956886053085, - 0.1748970001935959, - -0.2389681339263916, - -0.18878968060016632, - -0.3307226598262787, - 0.01776844821870327, - 0.33717453479766846, - 0.04368257522583008, - 0.24586503207683563, - 0.12112834304571152, - -0.2447993904352188, - 0.08346859365701675, - -0.097503162920475, - -0.399975448846817, - -0.4241580069065094, - -0.1501956582069397, - 0.11248153448104858, - -0.74247145652771, - 0.31621891260147095, - -0.1698482185602188, - 0.08876866102218628, - 0.031240567564964294, - -0.023896673694252968, - -0.1277555227279663, - 0.09917959570884705, - -0.03564586490392685, - 0.17340286076068878, - -0.3515503406524658, - -0.04702622815966606, - -0.19211788475513458, - -0.17951945960521698, - -0.1402389407157898, - 0.01010665763169527, - 0.005530992988497019, - -0.024262845516204834, - -0.3539024591445923, - 0.14248783886432648, - 0.02012564428150654, - -0.41196271777153015, - -0.09096042066812515, - 0.04673240706324577, - -0.18630512058734894, - 0.29960212111473083, - 0.04223944619297981, - 0.25878480076789856, - 0.218160942196846, - -0.01669258065521717, - 0.05746651068329811, - 0.40103110671043396, - 0.3652494251728058, - 0.125021830201149, - 0.16079451143741608, - -0.08198466897010803, - -0.0737573578953743, - 0.09879680722951889, - -0.37381711602211, - 0.43048903346061707, - 0.20765133202075958, - 0.037258800119161606, - 0.41095995903015137, - 0.425368994474411, - 0.1328878253698349, - -0.25979602336883545, - 0.037362802773714066, - 0.3034142255783081, - -0.05761513113975525, - 0.10448893904685974, - 0.15887361764907837, - 0.2087748497724533, - 0.45641446113586426, - -0.061875998973846436, - 0.23564893007278442, - 0.41691386699676514, - -0.14164668321609497, - -0.2674359977245331, - 0.1491672545671463, - 0.024081766605377197, - 0.3332526683807373, - -0.17076127231121063, - -0.14266563951969147, - -0.04007117822766304, - 0.018572157248854637, - -0.10670346766710281, - -0.412332683801651, - -0.15576964616775513, - 0.07411069422960281, - -0.16636765003204346, - 0.45528116822242737, - 0.039862558245658875, - 0.026820214465260506, - 0.35721302032470703, - -0.4566836357116699, - -0.22429557144641876, - 0.12909476459026337, - 0.012417403049767017, - -0.6860682964324951, - 0.35795918107032776, - -0.13622771203517914, - 0.26252517104148865, - 0.26259398460388184, - -0.35689735412597656, - -0.33739444613456726, - 0.0818556621670723, - 0.33913663029670715, - -0.16169042885303497, - -0.05352560803294182, - 0.02471647597849369, - -0.0776720866560936, - 0.121330626308918, - 0.41465631127357483, - 0.2792188823223114, - 0.2872600555419922, - 0.6834046244621277, - 0.0899701938033104, - -0.3981269299983978, - -0.04693607613444328, - -0.26971134543418884, - 0.4385688006877899, - -0.17042219638824463, - -0.14931532740592957, - -0.0599999837577343, - -0.043867338448762894, - -0.06377381831407547, - -0.2731002867221832, - -0.04694138094782829, - 0.24441593885421753, - 0.008808339945971966, - -0.2788238525390625, - 0.4257526397705078, - 0.1115109920501709, - -0.08385175466537476, - 0.5048245787620544, - -0.1555798500776291, - -0.24417805671691895, - 0.34888216853141785, - -0.3426004946231842, - 0.22615522146224976, - 0.008808969520032406, - -0.28673502802848816, - -0.3003964424133301, - 0.05139539763331413, - -0.34502169489860535, - -0.2658625841140747, - -0.02449219487607479, - -0.07350200414657593, - 0.11040198057889938, - -0.2807537019252777, - 0.11179796606302261, - 0.009942199103534222, - 0.11017898470163345, - 0.4192347526550293, - 0.22988517582416534, - 0.184701606631279, - -0.12026873975992203, - 0.3479163646697998, - -0.10247620195150375, - -0.24942795932292938, - -0.12268346548080444, - 0.21221022307872772, - -0.19662904739379883, - 0.4461817741394043, - 0.04159945249557495, - 0.14142479002475739, - 0.10593104362487793, - 0.061855997890233994, - -0.20490390062332153, - -0.46822962164878845, - -0.03860314562916756, - -0.16105276346206665, - 0.11965998262166977, - 0.190557599067688, - -0.010256897658109665, - -0.2813721299171448, - -0.1551939845085144, - 0.06711689382791519, - 0.11778897047042847, - 0.14302854239940643, - -0.14107969403266907, - -0.16728468239307404, - 0.49135708808898926, - 0.07164336740970612, - 0.45127585530281067, - -0.1909623146057129, - 0.15665926039218903, - 0.11800483614206314, - -0.5397899746894836, - 0.013170742429792881, - -0.13862930238246918, - -0.3737868368625641, - -0.19253157079219818, - 0.20895199477672577, - 0.3186688721179962, - -0.07408503443002701, - -0.09984464198350906, - 0.060611214488744736, - 0.14543874561786652, - -0.348100870847702, - -0.1540510356426239, - 0.36003580689430237, - -0.06094399094581604, - 0.3937849998474121, - -0.05874299630522728, - -0.34760522842407227, - -0.2623552978038788, - 0.08859413862228394, - -0.2901171147823334, - -0.022667154669761658, - 0.2832697331905365, - -0.07916132360696793, - -0.1425292044878006, - 0.1326168328523636, - -0.13694192469120026, - -0.1418275088071823, - 0.2724510133266449, - -0.24638283252716064, - 0.22834010422229767, - 0.12343543767929077, - -0.221838116645813, - -0.03425018489360809, - -0.18420948088169098, - -0.5320374965667725, - -0.16523142158985138, - 0.1479042023420334, - 0.20431165397167206, - -0.1775394231081009, - 0.17355172336101532, - 0.15988726913928986, - 0.009374994784593582, - -0.20599476993083954, - 0.052467528730630875, - -0.4612429440021515, - 0.4525350034236908, - -0.2156354933977127, - 0.026901021599769592, - -0.08519291132688522, - -0.11716751009225845, - 0.09584935754537582, - 0.07738078385591507, - 0.12694966793060303, - 0.2712271511554718, - 0.20680809020996094, - -0.0024925346951931715, - 0.5756165981292725, - 0.02436993084847927, - 0.28081056475639343, - 0.05823943391442299, - 0.030259931460022926, - 0.06704867631196976, - -0.37896212935447693, - -0.11861979961395264, - 0.3323400020599365, - -0.3686281144618988, - -0.2840619385242462, - 0.1828310340642929, - 0.10877863317728043, - -0.42314836382865906, - -0.4504970610141754, - 0.07378868013620377, - 0.05898439884185791, - -0.07149483263492584, - -0.13513541221618652, - -0.16826260089874268, - -0.12911589443683624, - -0.3820160925388336, - -0.2373398095369339, - 0.21127600967884064, - 0.5085600018501282, - 0.2673085629940033, - 0.2135663777589798, - -0.21979904174804688, - -0.4503312110900879, - 0.30176523327827454, - 0.32215574383735657, - -0.09726715832948685, - 0.11717647314071655, - -0.24285005033016205, - 0.2140655368566513, - 0.47870934009552, - -0.10752428323030472, - 0.16955821216106415, - 0.1446668654680252, - 0.2638823688030243, - 0.10832545161247253, - 0.04220486059784889, - -0.15616054832935333, - 0.038664255291223526, - -0.4631839692592621, - 0.21196091175079346, - -0.2794380187988281, - -0.2038167268037796, - 0.14990754425525665, - -0.19122880697250366, - -0.41357457637786865, - -0.16012141108512878, - 0.22182030975818634, - -0.08449427038431168, - -0.09431207925081253, - 0.10277131199836731, - 0.18134301900863647, - -0.058144256472587585, - -0.38909482955932617, - 0.2445492297410965, - -0.6146760582923889, - -0.30389106273651123, - 0.01361830998212099, - -0.09319836646318436, - -0.18402792513370514, - 0.08696040511131287, - 0.3508175313472748, - 0.7528955340385437, - 0.3685692250728607, - -0.02005128003656864, - 0.343692809343338, - 0.2714267671108246, - 0.3210121691226959, - -0.32269880175590515, - -10.40825366973877, - 0.017601242288947105, - -0.44092902541160583, - 0.7505715489387512, - -0.12366139143705368, - -0.059315115213394165, - 0.13619008660316467, - 0.13976691663265228, - 0.05618780478835106, - 0.20106862485408783, - -0.23765790462493896, - -0.026517145335674286, - 0.3326139748096466, - 0.5158229470252991, - 0.12033945322036743, - 0.11869502812623978, - -0.22470177710056305, - 0.1640101820230484, - -0.0807146355509758, - 0.1930171102285385, - 0.04108398035168648, - 0.35677197575569153, - -0.2760326564311981, - 0.20379598438739777, - -0.125321164727211, - -0.44563785195350647, - -0.19928254187107086, - 0.49136045575141907, - 0.3891371786594391, - -0.4508388936519623, - 0.2920176684856415, - 0.32036012411117554, - -0.23178739845752716, - 0.4702413082122803, - -0.11725304275751114, - -0.105715811252594, - 0.026271715760231018, - 0.1812642365694046, - 0.41709104180336, - -0.10408627986907959, - 0.1026412844657898, - -0.19996733963489532, - 0.3539188802242279, - 0.044561516493558884, - -0.12356222420930862, - -0.5086995959281921, - -0.16619712114334106, - -1.6481399536132812, - 0.13749819993972778, - 0.3567114770412445, - 0.28401145339012146, - 0.11268830299377441, - 0.19846904277801514, - 0.40098345279693604, - -0.15096034109592438, - -0.09812053292989731, - -0.4134500324726105, - -0.049528613686561584, - 0.09485820680856705, - -0.013139300979673862, - 0.14825382828712463, - -0.13923116028308868, - 0.35664406418800354, - 0.004551122430711985, - -0.3896462917327881, - 0.0828138217329979, - 0.07651215046644211, - -0.19701051712036133, - -0.461948961019516, - -0.7615580558776855, - -0.4095878601074219, - 0.0819731056690216, - -0.17821800708770752, - -0.22230295836925507, - 0.3233569860458374, - -0.007336615119129419, - -0.23833422362804413, - 0.39191046357154846, - 0.032665178179740906, - 0.3418463170528412, - 0.32827436923980713, - -0.10585292428731918, - 0.26254525780677795, - -0.20861183106899261, - -0.2828517258167267, - -0.21104390919208527, - 0.2639690637588501, - 0.5363162755966187, - 0.03969647362828255, - -0.31623703241348267, - 0.023540453985333443, - 0.3397761881351471, - 0.11036422848701477, - -0.12211201339960098, - -0.4517713487148285, - -0.027815021574497223, - 0.06292741745710373, - 0.08483344316482544, - 0.08375366777181625, - -0.21984009444713593, - -0.21042390167713165, - 0.13507585227489471, - -0.11865595728158951, - -0.5174440741539001, - -0.5089638829231262, - 0.21873657405376434, - 0.1296745091676712, - 0.17031316459178925, - 0.18363533914089203, - -0.12844663858413696, - -0.2018030434846878, - -0.008486375212669373, - 0.37689754366874695, - 0.3099379539489746, - 0.23536650836467743, - -0.15182483196258545, - 0.059665072709321976, - -0.3599013090133667, - -0.15936322510242462, - -0.14405733346939087, - 0.49020853638648987, - -0.18524299561977386, - 0.025846228003501892, - 0.6813861727714539, - 0.06894811242818832, - 0.007173473481088877, - 0.9081423878669739, - -0.4097316563129425, - 0.32971152663230896, - -0.0446179062128067, - 0.19561684131622314, - 0.1985386162996292, - -0.3553820550441742, - 0.22090375423431396, - 0.38992586731910706, - -0.2867406904697418, - 0.6361806988716125, - 0.4314461052417755, - -0.28546491265296936, - -0.05208525061607361, - -0.004079336766153574, - 0.42014583945274353, - 0.1342659592628479, - 0.04198996350169182, - 0.02967180870473385, - -0.20365439355373383, - -0.4606381356716156, - -0.017954250797629356, - -0.29516854882240295, - -0.20204538106918335, - -0.28662458062171936, - 0.15654490888118744, - 0.12256547063589096, - 0.01634504459798336, - 0.2017688900232315, - 0.22405584156513214, - 0.09737098962068558, - -0.30528154969215393, - -0.37543025612831116, - -0.071438267827034, - -0.09059157222509384, - 1.0452958345413208, - -0.0796094462275505, - -0.04549512267112732, - -0.03188043832778931, - 0.09997353702783585, - -0.16423743963241577, - 0.19417624175548553, - 0.05807309225201607, - -0.0678180456161499, - -0.46195724606513977, - 0.3389154374599457, - 0.20416176319122314, - -0.5145459175109863, - -0.03079431690275669, - -0.07592789828777313, - -0.1882951855659485, - -0.06498304009437561, - -0.08902623504400253, - 0.12206214666366577, - 0.32246077060699463, - 0.09924134612083435, - 0.16828472912311554, - -0.35444164276123047, - -0.10631731897592545, - 0.13144825398921967, - 0.30434897541999817, - 0.05582847818732262, - -0.3187164068222046, - -0.176213800907135, - -0.4796113073825836, - 0.2694871723651886, - -0.36351969838142395, - -0.0713631883263588, - 0.07081777602434158, - 0.028287231922149658, - -0.2617647647857666, - 0.09145715087652206, - -0.019603872671723366, - 0.035746000707149506, - -0.2948511242866516, - 0.5913751721382141, - 0.23290474712848663, - -0.271211713552475, - 0.2973516881465912, - -0.10398947447538376, - 0.10752678662538528, - 0.1278497874736786, - -0.28075602650642395, - 0.005139946937561035, - -0.3862721025943756 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_064.json b/src/benchmark/output/results/results_graph_064.json deleted file mode 100644 index 3301b44..0000000 --- a/src/benchmark/output/results/results_graph_064.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 44-year-old asymptomatic nulliparous woman. She presented with a palpable pelvic mass, which was later identified as an anterior wall uterine leiomyoma on gynecological sonography.\n\n**Timeline of Diagnoses and Treatments:**\n\n1. **Step 1 (N1):**\nThe patient presented with a palpable pelvic mass in January 2010. Physical examination revealed an enlarged uterus, which was mobile, firm in consistency, with no uterine or forniceal tenderness, and mild swelling in the right pubic area.\n\n2. **Step 2 (N2):**\nGynecological sonography on January 30, 2010, identified an anterior wall uterine leiomyoma, measuring 112\u00d794\u00d7108 mm, accompanied by ascites measuring 65\u00d742 mm and a 20\u00d714 mm mass.\n\n3. **Step 3 (N3):**\nLaparotomic myomectomy was performed on February 17, 2020, with incidental discovery of a pelvic tumor. The pelvic tumor described as a cauliflower-like lesion disseminated across the right pelvic wall, cul-de-sac, anterior uterine surface, bladder, and colon.\n\n4. **Step 4 (N4):**\nBiopsy of the sigmoid colon serosa was performed, revealing proliferative mesothelial cells without significant atypia or necrosis. Post-myomectomy CT scan revealed seeding in the lower pelvis, characterized by multiple small, heterogeneous, enhancing nodules on the peritoneum and a prominent soft-tissue mass in the right adnexa.\n\n5. **Step 5 (N5):**\nAnother CT scan performed on February 26th, 2020, revealed moderate ascites and nonspecific peritoneal thickening. Histopathology identified bland mesothelial cells without invasion, and immunohistochemistry showed no significant staining loss. Differential diagnosis included well-differentiated papillary mesothelioma, epithelioid peritoneal mesothelioma, and florid mesothelial hyperplasia; well-differentiated papillary mesothelioma was highly suspected.\n\n**Outcomes:**\n\nThe patient underwent a series of procedures, including laparotomic myomectomy, biopsy, histopathology, and immunohistochemistry. The results of these procedures led to the diagnosis of a pelvic tumor with seeding in the lower pelvis. Despite the presence of seeding, the patient's condition was managed conservatively, with no further surgical interventions reported.\n\n**Conclusion:**\nThis case highlights the complexities of managing a patient with a pelvic mass and subsequent discovery of a pelvic tumor with seeding. The patient's presentation and diagnostic workup led to a series of procedures that ultimately resulted in a diagnosis of a mesothelial tumor. While the patient's condition was managed conservatively, further follow-up is necessary to monitor for any progression or recurrence of the disease.\n\n**Recommendations:**\n\n1. Further imaging studies should be performed to assess the extent of seeding and monitor for any progression or recurrence of the disease.\n2. The patient should be followed up regularly with a multidisciplinary team, including oncologists, radiologists, and pathologists.\n3. Additional diagnostic procedures, such as PET scans or CT scans, may be necessary to further evaluate the patient's condition.\n\n**Limitations:**\n\nThis case report is limited by its retrospective nature and the availability of data. Further research is needed to better understand the management and outcomes of patients with pelvic tumors and seeding.", - "bertscore": { - "precision": [ - 0.514549732208252 - ], - "recall": [ - 0.6133989691734314 - ], - "f1": [ - 0.5596429109573364 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 5, - "edge_count": 4, - "avg_in_degree": 0.8, - "density": 0.2 - }, - "trajectory_embedding": [ - 0.33560317754745483, - -0.032035164535045624, - -0.11456692218780518, - 0.1346358358860016, - 0.020706722512841225, - 0.00046664924593642354, - 0.1556069552898407, - 0.050799597054719925, - 0.29955029487609863, - -0.3043522834777832, - -0.21893103420734406, - 0.13041041791439056, - -0.5819693207740784, - -0.027642954140901566, - -0.3483089804649353, - 0.05678959935903549, - 0.08175595104694366, - 0.18470464646816254, - 0.07032836973667145, - -0.1516115516424179, - -0.3795337677001953, - 0.032354261726140976, - -0.34762853384017944, - -0.22245562076568604, - 0.2131357640028, - -0.0658518522977829, - 0.011187409982085228, - 0.4108278751373291, - 0.22763344645500183, - 0.22971227765083313, - 0.15224574506282806, - 0.1498984396457672, - -0.15490344166755676, - -0.04655313491821289, - -0.22414235770702362, - 0.4316777288913727, - 0.3122991621494293, - 0.3148569166660309, - -0.10164471715688705, - 0.11181680858135223, - -0.11857211589813232, - 0.072939932346344, - 0.7276207804679871, - 0.5894370675086975, - 0.5643633008003235, - -0.5973739624023438, - 0.045762799680233, - 0.42931610345840454, - -0.6271008253097534, - -0.33162400126457214, - 0.3009917736053467, - 0.8356558680534363, - 0.6982433199882507, - -0.13345390558242798, - 0.427293062210083, - -0.055330127477645874, - -0.1970469057559967, - -0.2082684487104416, - -0.28132063150405884, - 0.0707617849111557, - 0.08441466093063354, - -0.03799280896782875, - -0.046762190759181976, - 0.10460342466831207, - -0.3640845715999603, - -0.22343210875988007, - -0.3437555730342865, - -0.05723061040043831, - -0.02330029010772705, - -0.43740272521972656, - -0.18157999217510223, - -0.1682252585887909, - -0.13557171821594238, - -0.017114270478487015, - 0.0007291227811947465, - -0.1402357667684555, - 0.2427610456943512, - 0.07756771892309189, - -0.14562609791755676, - -0.08803218603134155, - -0.05296463891863823, - -0.06846114248037338, - 0.23501446843147278, - 0.2003447562456131, - -0.46018290519714355, - 0.07143741846084595, - -0.09776132553815842, - -0.0718153566122055, - -0.26666712760925293, - 0.27199918031692505, - 0.2733019292354584, - -0.14292141795158386, - -0.017898693680763245, - -0.04234260320663452, - 0.27673250436782837, - -0.020977124571800232, - 0.25201481580734253, - 0.4361487030982971, - 1.0113563537597656, - 0.12119171768426895, - 0.20306091010570526, - 0.23786409199237823, - 0.26452866196632385, - -0.12299710512161255, - 0.4842044413089752, - 0.06933087855577469, - 0.18963052332401276, - -0.44958558678627014, - -0.06302215158939362, - -0.01591341756284237, - -0.0806119441986084, - -0.03527894616127014, - 0.0203951857984066, - -0.43035799264907837, - 0.05068916082382202, - 0.019635310396552086, - -0.1544349640607834, - 0.011310997419059277, - -0.02003743126988411, - -0.25159940123558044, - -0.02532372809946537, - -0.21257519721984863, - 0.3038928508758545, - 0.35977864265441895, - -0.4075821042060852, - 0.03794197738170624, - -0.12353910505771637, - 0.25676435232162476, - -0.0716257318854332, - 0.2026764452457428, - -0.5808151364326477, - 0.0740826204419136, - -0.08215422183275223, - 0.4875335693359375, - -0.14100992679595947, - 0.14344120025634766, - -0.5816518664360046, - 0.2766825556755066, - -1.0389540195465088, - 0.2509419322013855, - -0.3951149582862854, - -0.01660017855465412, - 0.14995422959327698, - -0.22423258423805237, - -0.1081976667046547, - -0.12171987444162369, - -0.1163778081536293, - 0.29509443044662476, - 0.09899212419986725, - 0.05243415758013725, - -0.24585866928100586, - 0.18484219908714294, - 0.3383546471595764, - 0.1773250550031662, - 0.16008874773979187, - 0.23528365790843964, - 0.1562768518924713, - 0.32315993309020996, - 0.24902641773223877, - -0.10990337282419205, - -0.0147356316447258, - 0.1579272598028183, - 0.0060639409348368645, - -0.36261242628097534, - 0.16927000880241394, - -0.6561983823776245, - 0.26251330971717834, - -0.4186895489692688, - 0.23464255034923553, - -0.10785496234893799, - -0.1942734271287918, - 0.3496845066547394, - -0.1438242644071579, - 0.40089112520217896, - 0.28135114908218384, - 0.27764075994491577, - 0.12174657732248306, - -0.053034208714962006, - 0.1735358089208603, - 0.1698169857263565, - 0.09189990907907486, - -0.06263132393360138, - 0.6606196165084839, - 0.12165489047765732, - -0.17571207880973816, - 0.30642104148864746, - 0.38385438919067383, - -0.14679065346717834, - -0.17179706692695618, - -0.044077347964048386, - 0.4863673150539398, - -0.21029385924339294, - 0.4112943112850189, - -0.2600322663784027, - -0.01379256509244442, - 0.1494172066450119, - -0.2872883379459381, - -0.18621478974819183, - 0.13532006740570068, - -0.028694670647382736, - 0.3737735152244568, - 0.15056683123111725, - -0.13684657216072083, - 0.19906941056251526, - 0.23984622955322266, - 0.08346773684024811, - 0.38823848962783813, - 0.275332510471344, - 0.13147124648094177, - -0.22103330492973328, - -0.2693495750427246, - 0.16843147575855255, - -0.003161512315273285, - 0.12250424921512604, - 0.0422867126762867, - -0.12192821502685547, - 0.3981272280216217, - -0.1597909927368164, - -0.1717352718114853, - 0.30824556946754456, - -0.18251577019691467, - -0.03598945215344429, - 0.3633285164833069, - -0.1353255808353424, - -0.2657017111778259, - 0.06870225071907043, - 0.022413786500692368, - 0.20148810744285583, - 0.21683335304260254, - 0.07008782029151917, - 0.11414499580860138, - -0.26550567150115967, - 0.2345420867204666, - -0.13706141710281372, - -0.08283475041389465, - -0.22081542015075684, - 0.1407686471939087, - -0.24368230998516083, - -0.214861199259758, - 0.4414401948451996, - -0.2712688446044922, - -0.2730482518672943, - 0.06619233638048172, - -0.18487019836902618, - -0.1616365909576416, - -0.38689324259757996, - 0.05900753661990166, - 0.2616967260837555, - 0.0634087473154068, - 0.2613607943058014, - 0.08268435299396515, - -0.20808109641075134, - 0.24636872112751007, - -0.27626949548721313, - -0.17884041368961334, - -0.38042113184928894, - -0.11751596629619598, - -0.1295323520898819, - -0.2846967577934265, - 0.09537354856729507, - 0.11598465591669083, - -0.13226722180843353, - -0.07906992733478546, - -0.4564613401889801, - -0.1831643432378769, - -0.10851426422595978, - -0.045731447637081146, - 0.15401139855384827, - 0.0413057766854763, - 0.2574419379234314, - -0.32416266202926636, - -0.25036460161209106, - -0.10724109411239624, - 0.027393454685807228, - 0.18335479497909546, - 0.24615971744060516, - -0.07185234874486923, - 0.01997610554099083, - 0.2149784117937088, - -0.4187377393245697, - -0.5654075145721436, - 0.22487160563468933, - -0.20692682266235352, - 0.14642928540706635, - -0.001559130847454071, - 0.1295344978570938, - 0.38583385944366455, - -0.1442580223083496, - 0.09612281620502472, - 0.5535184741020203, - 0.481480211019516, - 0.10034594684839249, - 0.03558123856782913, - 0.07914243638515472, - 0.02632269822061062, - -0.06944473832845688, - -0.381732702255249, - 0.3589501976966858, - -0.08561427146196365, - 0.002281930996105075, - 0.114282988011837, - 0.20286378264427185, - -0.1481705605983734, - -0.4674918055534363, - -0.31998685002326965, - 0.5454086661338806, - 0.32933488488197327, - -0.03318002074956894, - -0.07517983019351959, - 0.2862533926963806, - 0.6337651610374451, - 0.013185607269406319, - -0.23809675872325897, - 0.07214036583900452, - -0.04003562405705452, - -0.2164071500301361, - -0.14531919360160828, - 0.1477869600057602, - 0.27610671520233154, - -0.1055360808968544, - -0.20622774958610535, - 0.47358861565589905, - -0.1402096003293991, - -0.07512059807777405, - -0.01859874837100506, - -0.037761442363262177, - -0.02976355329155922, - -0.23252353072166443, - 0.19876812398433685, - -0.06478234380483627, - -0.1322105973958969, - 0.39888936281204224, - -0.05361371114850044, - -0.3154321610927582, - 0.29998666048049927, - 0.014129179529845715, - -0.3622787296772003, - 0.25742030143737793, - -0.03589904308319092, - -0.16614016890525818, - 0.3914344012737274, - 0.003187321126461029, - -0.0462554469704628, - -0.2460150271654129, - 0.33470723032951355, - 0.1183033436536789, - -0.18595406413078308, - -0.21344678103923798, - -0.13997238874435425, - 0.21350303292274475, - 0.6959315538406372, - -0.10287053883075714, - 0.21839690208435059, - 0.5774563550949097, - -0.09644024819135666, - -0.19528737664222717, - -0.027076173573732376, - 0.2793784737586975, - 0.25700095295906067, - -0.35905465483665466, - -0.08900097757577896, - -0.3963938355445862, - -0.05389058589935303, - 0.20246699452400208, - -0.18120642006397247, - 0.03622838109731674, - 0.21789076924324036, - 0.0780276507139206, - 0.15445590019226074, - 0.10744788497686386, - 0.13094612956047058, - 0.009495136328041553, - 0.3329838216304779, - 0.07381661236286163, - -0.0456281341612339, - 0.20400682091712952, - -0.12625308334827423, - 0.3132331967353821, - -0.19864359498023987, - -0.39620643854141235, - -0.49883824586868286, - -0.2061084806919098, - -0.27710872888565063, - -0.24107220768928528, - 0.030064856633543968, - -0.05576012283563614, - -0.010668491944670677, - -0.06476755440235138, - 0.3926456868648529, - -0.06282313168048859, - 0.2021419107913971, - -0.07967887818813324, - 0.6277588605880737, - -0.11692110449075699, - -0.40754079818725586, - -0.02295638993382454, - 0.1284984052181244, - 0.21615925431251526, - -0.22891780734062195, - -0.12953020632266998, - -0.29672563076019287, - 0.43222755193710327, - 0.08325879275798798, - -0.1885521411895752, - -0.07056255638599396, - -0.08609067648649216, - -0.19559144973754883, - -0.2925633192062378, - -0.4121498167514801, - -0.16911400854587555, - -0.10310044139623642, - -0.07868444174528122, - 0.2910645306110382, - -0.26348617672920227, - -0.4337734580039978, - -0.01331852376461029, - 0.3241409659385681, - 0.15768426656723022, - -0.07038985192775726, - 0.2847890257835388, - 0.01419221144169569, - 0.03919692710042, - 0.4566080570220947, - -0.011020423844456673, - 0.10359295457601547, - 0.15255188941955566, - -0.1628478467464447, - -0.14622226357460022, - 0.03475236892700195, - -0.27461326122283936, - -0.16276094317436218, - 0.285914808511734, - 0.07612387835979462, - 0.2138102501630783, - 0.1366858184337616, - 0.07779347151517868, - 0.22664165496826172, - -0.41434383392333984, - -0.05467502027750015, - 0.31234967708587646, - 0.2673739790916443, - 0.4871460497379303, - -0.2253309190273285, - -0.14807210862636566, - -0.2353394478559494, - -0.09087810665369034, - -0.39372682571411133, - 0.18194475769996643, - 0.005927999969571829, - -0.06474979221820831, - -0.24133582413196564, - 0.06416954100131989, - -0.02843792364001274, - -0.054334986954927444, - 0.24924448132514954, - 0.01792779006063938, - 0.0785948634147644, - -0.06673279404640198, - -0.36065083742141724, - -0.05349283665418625, - -0.19382253289222717, - -0.4077865481376648, - -0.4806350767612457, - 0.6206315159797668, - 0.29612261056900024, - 0.04115890711545944, - 0.23263534903526306, - 0.1921098381280899, - -0.2738867402076721, - -0.3647075891494751, - 0.09540901333093643, - -0.006288842763751745, - 0.5018874406814575, - 0.06922896206378937, - -0.09539033472537994, - 0.20160822570323944, - -0.5012338757514954, - 0.17781813442707062, - 0.20920196175575256, - -0.04464862868189812, - 0.4938294291496277, - 0.3065129816532135, - 0.3138893246650696, - 0.34178298711776733, - 0.20569360256195068, - -0.14844182133674622, - 0.3235245943069458, - 0.1012946143746376, - -0.08699314296245575, - -0.24855592846870422, - -0.062219809740781784, - 0.3322758078575134, - -0.24630972743034363, - 0.2030840367078781, - 0.12496839463710785, - 0.34996530413627625, - -0.32092684507369995, - -0.23372086882591248, - -0.1261737048625946, - -0.04753397777676582, - -0.22952120006084442, - -0.2769433856010437, - -0.24786034226417542, - 0.12369358539581299, - -0.509034276008606, - 0.10922491550445557, - 0.2630237936973572, - 0.19023403525352478, - 0.1711912453174591, - -0.024832207709550858, - -0.32518839836120605, - -0.3768353760242462, - -0.02831302583217621, - 0.28463083505630493, - -0.06335188448429108, - 0.0639704167842865, - -0.12866613268852234, - 0.11760225147008896, - 0.5313243269920349, - -0.03812999650835991, - -0.06942366063594818, - -0.1156844049692154, - -0.027204781770706177, - -0.0548255555331707, - 0.14261110126972198, - -0.07800968736410141, - 0.07844690978527069, - -0.30221810936927795, - 0.1406601071357727, - -0.24469947814941406, - -0.3127005994319916, - 0.2706459164619446, - -0.1956145465373993, - -0.2804684638977051, - -0.3323759138584137, - 0.33920666575431824, - -0.2830282151699066, - 0.022267667576670647, - 0.014432420954108238, - 0.4148065149784088, - 0.0969894751906395, - -0.03911527618765831, - 0.04702569544315338, - -0.403374582529068, - -0.09830044955015182, - 0.05851547792553902, - -0.1453237533569336, - 0.1991727650165558, - -0.03692428022623062, - 0.36958998441696167, - 0.3868367671966553, - 0.16010256111621857, - -0.3434354364871979, - -0.025588780641555786, - 0.19180041551589966, - 0.20981967449188232, - -0.30631643533706665, - -10.883829116821289, - 0.12041393667459488, - -0.07875798642635345, - 0.5608879923820496, - -0.1739535629749298, - 0.06960147619247437, - 0.04744551703333855, - 0.028127823024988174, - 0.11305008083581924, - 0.1510947048664093, - -0.21851029992103577, - 0.21622943878173828, - 0.2982082962989807, - 0.32255497574806213, - -0.12886327505111694, - -0.038390081375837326, - -0.20238849520683289, - 0.2114648073911667, - -0.142917662858963, - 0.13894900679588318, - 0.15419067442417145, - 0.32208576798439026, - -0.06742260605096817, - 0.2518003582954407, - 0.20575420558452606, - -0.33785536885261536, - -0.3811854124069214, - 0.5696561336517334, - 0.18351851403713226, - -0.3555838465690613, - 0.5340484380722046, - 0.14739397168159485, - -0.23907318711280823, - -0.03446248918771744, - -0.07289380580186844, - 0.01998709701001644, - -0.04670310392975807, - -0.01828787848353386, - 0.1966160088777542, - 0.014986643567681313, - -0.071186862885952, - -0.3916344940662384, - -0.034107841551303864, - 0.3472280502319336, - -0.06375177204608917, - -0.3470641076564789, - -0.19369371235370636, - -1.3896539211273193, - 0.2696584463119507, - 0.15727689862251282, - 0.5652212500572205, - 0.03639747202396393, - 0.09248635917901993, - 0.09212083369493484, - -0.4373280107975006, - 0.19878676533699036, - -0.3496972918510437, - -0.03144214674830437, - 0.04079236462712288, - -0.24454693496227264, - 0.04831955209374428, - -0.26963478326797485, - 0.23124714195728302, - -0.3462902009487152, - -0.3817715644836426, - 0.25806501507759094, - -0.1288265585899353, - 0.026332980021834373, - -0.06867487728595734, - -0.036075081676244736, - -0.6097730994224548, - -0.14585956931114197, - -0.025156598538160324, - 0.07111582905054092, - 0.5177943110466003, - 0.049514807760715485, - -0.529831051826477, - 0.13862037658691406, - -0.10304449498653412, - 0.48017340898513794, - 0.07198216766119003, - -0.04638935998082161, - 0.20140233635902405, - -0.22813229262828827, - -0.15570572018623352, - 0.07385534793138504, - 0.17245908081531525, - 0.5296483039855957, - -0.07032891362905502, - 0.08131518214941025, - 0.10733769088983536, - 0.136903777718544, - -0.1809205710887909, - -0.1695035696029663, - -0.3725152611732483, - 0.22701768577098846, - -0.0445411391556263, - -0.06289853900671005, - 0.20032009482383728, - -0.12726131081581116, - -0.09268026053905487, - -0.1012594923377037, - -0.03822965547442436, - -0.44754868745803833, - -0.328389048576355, - 0.3224477469921112, - 0.11855292320251465, - 0.3316042125225067, - 0.19742831587791443, - 0.10067053884267807, - 0.06955144554376602, - 0.013529536314308643, - 0.296440452337265, - 0.47831887006759644, - 0.026710275560617447, - -0.11027918756008148, - -0.12863551080226898, - -0.0695943832397461, - -0.41708260774612427, - 0.1842915117740631, - 0.3275899291038513, - -0.23778459429740906, - 0.29992133378982544, - 0.6300154328346252, - 0.0042360154911875725, - -0.11082752048969269, - 1.0828417539596558, - -0.1962750256061554, - 0.24483975768089294, - -0.15790808200836182, - 0.1336795836687088, - -0.30219465494155884, - -0.18810676038265228, - 0.1910901963710785, - 0.32831501960754395, - -0.2948533892631531, - 0.5665644407272339, - 0.12137497961521149, - -0.5611319541931152, - 0.12389020621776581, - -0.42432349920272827, - 0.46737805008888245, - 0.3487494885921478, - 0.24224750697612762, - -0.20100092887878418, - -0.47824016213417053, - -0.10228542238473892, - 0.03461415320634842, - -0.37174034118652344, - -0.08808693289756775, - -0.18931035697460175, - 0.042588599026203156, - -0.10387172549962997, - -0.2862917482852936, - 0.35212647914886475, - 0.0404648557305336, - -0.24441155791282654, - -0.21441979706287384, - -0.529125988483429, - -0.12590175867080688, - 0.13167528808116913, - 0.5254259705543518, - -0.024559425190091133, - -0.112767294049263, - -0.0473635196685791, - 0.1579911857843399, - 0.02512630820274353, - 0.05093712732195854, - 0.09656459093093872, - 0.005491861142218113, - -0.5059370994567871, - -0.017622647807002068, - 0.14112888276576996, - -0.1867193877696991, - -0.2941269874572754, - -0.4297026991844177, - 0.14765973389148712, - -0.23978658020496368, - -0.0937226191163063, - 0.1619885265827179, - 0.10663392394781113, - 0.009553092531859875, - 0.15573135018348694, - -0.31531357765197754, - 0.15864798426628113, - -0.028239702805876732, - 0.3077250123023987, - -0.02186582051217556, - -0.3958908021450043, - -0.3308035731315613, - -0.42296576499938965, - 0.3263550400733948, - -0.14208748936653137, - 0.0496726855635643, - 0.0726565569639206, - 0.2825194299221039, - -0.23277647793293, - -0.09760838001966476, - -0.4335680902004242, - 0.10552122443914413, - -0.3766399919986725, - -0.018738679587841034, - 0.38841864466667175, - -0.19129742681980133, - -0.0953783243894577, - -0.14685487747192383, - 0.036095038056373596, - -0.03208252042531967, - -0.37713712453842163, - 0.22937937080860138, - -0.07395924627780914 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_065.json b/src/benchmark/output/results/results_graph_065.json deleted file mode 100644 index 5bd6f14..0000000 --- a/src/benchmark/output/results/results_graph_065.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 56-year-old male with occupational exposure to asbestos as a tunnel inspector. He presented to the emergency room with cough, low back pain, and abdominal pain.\n\n**Timeline of Diagnoses:**\n\n1. **Initial Presentation (October 28, 2023):** The patient was evaluated at the emergency room due to symptoms of cough, low back pain, and abdominal pain. A CT angiogram of the chest was performed, which revealed a large left pleural effusion tracking to the lung apex with near complete opacification of the left lower lobe, a 6-cm left lower lobe mass, and 4-cm left hilar mass with mediastinal adenopathy and pleural nodularity.\n2. **Surgical Intervention (November 9, 2023):** The patient underwent left video-assisted thorascopic surgery with total left lung decortication, removal of fibrin deposits, and placement of a pleural drainage catheter requiring daily drainage.\n3. **Pathology and Imaging Results (November 29, 2023):** Pathology from the left pleural mass revealed malignant epithelial neoplasm with 70% spindle cell and 30% epithelioid cell components consistent with biphasic MPM. PET imaging confirmed advanced disease with extensive left-sided pleural involvement, bilateral mediastinal adenopathy, adrenal, and scattered bone lesions.\n4. **Immune Checkpoint Inhibitor Therapy (December 4, 2023):** The patient began receiving immune checkpoint inhibitor therapy with nivolumab and ipilimumab, which showed initial improvement in pleural drainage output.\n\n**Timeline of Symptoms:**\n\n1. **Initial Presentation:** Cough, low back pain, and abdominal pain.\n2. **Post-Surgical Complication (December 4, 2023):** Lower back pain, lower extremity numbness, and inability to walk after one cycle of therapy.\n\n**Treatment Outcomes:**\nThe patient's treatment with immune checkpoint inhibitors showed initial improvement in pleural drainage output. However, a new symptom of lower back pain, lower extremity numbness, and inability to walk developed after one cycle of therapy, indicating potential side effects or progression of the disease.\n\nThis clinical case report highlights the importance of early diagnosis and treatment of malignant pleural mesothelioma (MPM), as well as the need for careful monitoring of patients receiving immune checkpoint inhibitors.", - "bertscore": { - "precision": [ - 0.7149702310562134 - ], - "recall": [ - 0.7142810821533203 - ], - "f1": [ - 0.7146255373954773 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 6, - "edge_count": 5, - "avg_in_degree": 0.8333333333333334, - "density": 0.16666666666666666 - }, - "trajectory_embedding": [ - 0.1652541607618332, - 0.039438892155885696, - -0.14641372859477997, - 0.18929584324359894, - 0.14937780797481537, - 0.1875849962234497, - -0.10926973819732666, - 0.32221996784210205, - 0.5160953402519226, - -0.21352215111255646, - -0.1066395565867424, - 0.04818613827228546, - -0.5228782296180725, - -0.10994511842727661, - -0.18322902917861938, - 0.2892516553401947, - -0.11534184217453003, - 0.24044062197208405, - 0.026726022362709045, - -0.21000735461711884, - -0.39076241850852966, - 0.10443174093961716, - -0.5317621827125549, - 0.018876194953918457, - 0.12694860994815826, - -0.056921202689409256, - 0.4481050670146942, - 0.6197983622550964, - 0.3282276391983032, - 0.4314173758029938, - 0.030062491074204445, - -0.23560656607151031, - 0.19153659045696259, - -0.07723374664783478, - -0.28160423040390015, - 0.24283885955810547, - -0.001099617569707334, - 0.32391342520713806, - -0.1220952495932579, - 0.05494336411356926, - 0.033832333981990814, - 0.09665459394454956, - 0.7754995822906494, - 0.1367119997739792, - 0.49934151768684387, - -0.7912638783454895, - -0.12291689962148666, - 0.5892982482910156, - -0.5710733532905579, - -0.4964151382446289, - 0.25105077028274536, - 0.7749610543251038, - 0.5300043225288391, - -0.4333530366420746, - 0.4474921226501465, - -0.24401365220546722, - -0.2492191195487976, - -0.43112626671791077, - -0.34976091980934143, - -0.06265155225992203, - 0.011767860502004623, - -0.2936820387840271, - 0.42574942111968994, - -0.42795681953430176, - -0.07472843676805496, - -0.2092389613389969, - -0.2546403408050537, - 0.051758017390966415, - 0.058273136615753174, - -0.35516366362571716, - -0.15378005802631378, - -0.2871567904949188, - -0.04860498383641243, - 0.014323265291750431, - 0.04791118577122688, - 0.02426183968782425, - 0.3211006224155426, - -0.19132550060749054, - 0.23720364272594452, - 0.12217091768980026, - -0.24488665163516998, - -0.041259121149778366, - -0.06983067840337753, - 0.4556575119495392, - -0.38383063673973083, - -0.03157388046383858, - -0.2471301108598709, - -0.26424941420555115, - -0.3909715712070465, - 0.10016978532075882, - 0.031601689755916595, - -0.3851616382598877, - 0.04937880113720894, - -0.1855396181344986, - 0.06385422497987747, - 0.08545226603746414, - 0.5294673442840576, - 0.08534722775220871, - 0.8456420302391052, - -0.08549866080284119, - 0.10749156028032303, - -0.10654956102371216, - 0.2888645827770233, - -0.06400411576032639, - 0.36680254340171814, - 0.049483466893434525, - 0.08266838639974594, - -0.5948764681816101, - 0.30583080649375916, - 0.5356130599975586, - 0.015617611818015575, - -0.23994795978069305, - 0.0827704444527626, - -0.3229733407497406, - 0.30386385321617126, - 0.20920944213867188, - 0.06012508273124695, - 0.21136145293712616, - 0.17870204150676727, - -0.31595978140830994, - -0.23347772657871246, - -0.011881351470947266, - 0.33385777473449707, - 0.11741405725479126, - -0.5669156908988953, - -0.026554131880402565, - -0.19358831644058228, - 0.06251541525125504, - 0.013346116058528423, - -0.026631169021129608, - -0.47243937849998474, - -0.11795071512460709, - 0.1069725826382637, - 0.10357528924942017, - 0.008108035661280155, - 0.19503797590732574, - -0.31370091438293457, - 0.16570349037647247, - -1.0394198894500732, - 0.3344894349575043, - -0.32096317410469055, - -0.16416674852371216, - 0.01839795894920826, - -0.5803526043891907, - -0.3326651155948639, - -0.1735600084066391, - -0.216802716255188, - 0.14950044453144073, - -0.13621945679187775, - -0.17232643067836761, - -0.10140856355428696, - -0.008820722810924053, - 0.17567966878414154, - 0.5561952590942383, - 0.15486718714237213, - 0.008536783047020435, - 0.07802999764680862, - 0.1812390834093094, - -0.038269806653261185, - -0.16715329885482788, - 0.10598593950271606, - 0.4629107415676117, - 0.2273872047662735, - 0.00950538832694292, - -0.1037626788020134, - -0.6091808676719666, - -0.027142243459820747, - -0.14075349271297455, - 0.15631546080112457, - 0.18644209206104279, - -0.28414398431777954, - 0.11554819345474243, - -0.5001252889633179, - 0.6827899813652039, - -0.0455966480076313, - 0.3976258933544159, - 0.09679439663887024, - -0.041496288031339645, - 0.2532375752925873, - 0.21561479568481445, - 0.18428118526935577, - -0.34162986278533936, - 0.7105341553688049, - 0.1768902689218521, - -0.19923712313175201, - 0.3483537435531616, - 0.32274457812309265, - -0.04187555983662605, - -0.20554129779338837, - 0.09012087434530258, - 0.49703142046928406, - -0.21993057429790497, - 0.5850445628166199, - -0.21109718084335327, - -0.036739248782396317, - 0.19470208883285522, - -0.3020554482936859, - -0.16263176500797272, - -0.08351150900125504, - 0.05219811201095581, - 0.3030013144016266, - 0.03692315146327019, - -0.3244953155517578, - -0.042577292770147324, - 0.13607238233089447, - -0.06327202171087265, - 0.32354435324668884, - -0.08207744359970093, - 0.09247535467147827, - 0.07329896092414856, - -0.18565885722637177, - 0.23337139189243317, - -0.17554421722888947, - 0.29211652278900146, - -0.05942178890109062, - -0.3735121488571167, - 0.3001287281513214, - -0.06274455785751343, - -0.15084581077098846, - 0.2736443281173706, - 0.1128845140337944, - -0.40210017561912537, - -0.10129330307245255, - -0.05615416169166565, - -0.6754670739173889, - 0.17577815055847168, - 0.23239417374134064, - 0.30690014362335205, - 0.27442416548728943, - 0.147186741232872, - -0.07401994615793228, - -0.3560217320919037, - 0.2167888730764389, - -0.06775251775979996, - -0.054776787757873535, - -0.3344864547252655, - 0.2177036553621292, - -0.042714666575193405, - 0.16488708555698395, - 0.27141743898391724, - -0.006959991995245218, - -0.11808031797409058, - 0.035660505294799805, - -0.3684547245502472, - -0.0659632757306099, - -0.3549499809741974, - 0.04634331166744232, - 0.3619332015514374, - 0.09447800368070602, - 0.11231859773397446, - -0.09712422639131546, - -0.16898642480373383, - 0.14379942417144775, - -0.04071413353085518, - -0.5130113959312439, - -0.4154414236545563, - 0.031137369573116302, - 0.038525547832250595, - -0.6315584778785706, - 0.3468407094478607, - 0.007752468343824148, - -0.11196065694093704, - 0.06131288409233093, - -0.35615360736846924, - -0.19307558238506317, - 0.24600893259048462, - -0.10323775559663773, - -0.0021806645672768354, - -0.22258643805980682, - 0.1781720668077469, - -0.2166530340909958, - -0.15125785768032074, - -0.3101038932800293, - -0.18399719893932343, - 0.0037865042686462402, - 0.08043424785137177, - -0.4800228774547577, - 0.12134960293769836, - 0.14833076298236847, - -0.38230594992637634, - 0.05712107941508293, - 0.294429749250412, - -0.12408149242401123, - 0.11874693632125854, - 0.008685757406055927, - 0.22688263654708862, - 0.1739286631345749, - -0.11388737708330154, - 0.1290922462940216, - 0.5230034589767456, - 0.5069182515144348, - -0.038417503237724304, - 0.06328462064266205, - 0.006300991866737604, - -0.060063835233449936, - -0.05002867057919502, - -0.5364003777503967, - 0.49496352672576904, - 0.0897550955414772, - 0.17021746933460236, - 0.019383439794182777, - 0.20213818550109863, - 0.07641709595918655, - -0.23019219934940338, - -0.044186752289533615, - 0.29905006289482117, - 0.25098851323127747, - 0.23678357899188995, - 0.09845423698425293, - 0.15705710649490356, - 0.4727902114391327, - -0.11433114856481552, - 0.014110823161900043, - 0.15609759092330933, - -0.036052245646715164, - -0.28068843483924866, - 0.07579048722982407, - 0.2282099723815918, - 0.47721362113952637, - -0.1841495782136917, - -0.22628237307071686, - 0.09729188680648804, - -0.17388971149921417, - 0.012753896415233612, - -0.43664243817329407, - -0.20836229622364044, - -0.03585362806916237, - -0.20999044179916382, - 0.27854910492897034, - 0.06934595853090286, - -0.018094131723046303, - 0.26864805817604065, - -0.17242221534252167, - -0.11979788541793823, - 0.2288493514060974, - -0.19818198680877686, - -0.48004022240638733, - 0.4782852232456207, - -0.18525855243206024, - 0.15318499505519867, - 0.3508727252483368, - -0.2892538011074066, - -0.11759943515062332, - -0.0286345724016428, - 0.42787328362464905, - -0.07629237323999405, - 0.07749351114034653, - -0.1354428082704544, - 0.09178321808576584, - 0.17696236073970795, - 0.49829307198524475, - 0.1887774020433426, - 0.3701010048389435, - 0.6411929726600647, - 0.2556265890598297, - -0.464760422706604, - -0.03382926806807518, - -0.1696479469537735, - 0.3567068576812744, - -0.04217585548758507, - -0.21443508565425873, - -0.14776252210140228, - 0.04128584638237953, - 0.09696990251541138, - -0.18466202914714813, - 0.08632544428110123, - 0.05158121511340141, - 0.2496476173400879, - -0.029189301654696465, - 0.36359819769859314, - 0.08984845876693726, - -0.23182962834835052, - 0.5325621962547302, - -0.10580960661172867, - -0.2037486582994461, - 0.3337392807006836, - -0.174191415309906, - 0.10829009860754013, - 0.03563177213072777, - -0.26299330592155457, - -0.34698012471199036, - 0.10106850415468216, - -0.27080461382865906, - -0.17716270685195923, - 0.043743181973695755, - -0.3760688006877899, - 0.14685003459453583, - -0.20107632875442505, - 0.04884321615099907, - 0.1177874431014061, - 0.3450278043746948, - 0.08812117576599121, - 0.2841958999633789, - 0.043550435453653336, - -0.12624742090702057, - 0.1491718888282776, - -0.07535624504089355, - -0.07805177569389343, - -0.2631889283657074, - 0.06437651813030243, - 0.022020429372787476, - 0.6423196792602539, - 0.1947021484375, - -0.07976164668798447, - 0.15348996222019196, - 0.10588431358337402, - -0.19050221145153046, - -0.35946425795555115, - -0.09081050008535385, - -0.12293263524770737, - 0.03743430972099304, - 0.16249561309814453, - 0.054392412304878235, - -0.49602463841438293, - -0.2646627128124237, - -0.0967554822564125, - -0.18452352285385132, - 0.13222190737724304, - -0.15437550842761993, - -0.24414591491222382, - 0.5621192455291748, - 0.22896666824817657, - 0.4897097647190094, - -0.4064384400844574, - 0.08284471184015274, - 0.13211248815059662, - -0.3789707124233246, - -0.024763109162449837, - -0.11281993240118027, - -0.395414263010025, - -0.1286918669939041, - 0.31215015053749084, - 0.4061897099018097, - -0.07581788301467896, - -0.06314576417207718, - -0.021911783143877983, - 0.10228126496076584, - -0.42245662212371826, - -0.20780356228351593, - 0.2651396691799164, - 0.27545708417892456, - 0.3959256708621979, - 0.12261349707841873, - -0.5424414277076721, - -0.5363603234291077, - -0.024122893810272217, - -0.3702215254306793, - 0.053831446915864944, - 0.22017262876033783, - 0.010851740837097168, - -0.29499533772468567, - 0.03156821057200432, - -0.08963242173194885, - -0.10686705261468887, - 0.2518503963947296, - -0.25070494413375854, - 0.2887665331363678, - 0.22966651618480682, - -0.22755931317806244, - -0.05105099454522133, - -0.19354026019573212, - -0.3235435485839844, - -0.10761585086584091, - 0.0347164086997509, - 0.24250023066997528, - -0.43877485394477844, - -0.04493574798107147, - 0.1559942215681076, - -0.1980910748243332, - -0.1140047013759613, - -0.07072155922651291, - -0.43667474389076233, - 0.28309860825538635, - -0.17325599491596222, - -0.10726843029260635, - 0.07463382929563522, - -0.15880613029003143, - 0.021873770281672478, - 0.10891146212816238, - 0.16469921171665192, - 0.40037545561790466, - 0.19791077077388763, - 0.006994126830250025, - 0.4453113079071045, - 0.06295749545097351, - 0.02800966054201126, - 0.2081678956747055, - -0.09072446823120117, - -0.13326334953308105, - -0.4391831159591675, - -0.2411012500524521, - 0.0695541501045227, - -0.3834310472011566, - -0.179937943816185, - 0.12417176365852356, - 0.03714548796415329, - -0.40569868683815, - -0.37089529633522034, - 0.05743691697716713, - 0.166998028755188, - -0.14968661963939667, - -0.10449668765068054, - -0.19910721480846405, - -0.10344302654266357, - -0.16963763535022736, - -0.14065630733966827, - 0.2484932541847229, - 0.39106106758117676, - 0.16030339896678925, - 0.2320888489484787, - -0.3279159963130951, - -0.15894220769405365, - 0.233418270945549, - 0.22761517763137817, - 0.051738787442445755, - -0.025255734100937843, - -0.20845837891101837, - 0.452549546957016, - 0.308134526014328, - -0.001250115572474897, - 0.09059005230665207, - 0.06544674187898636, - 0.16595104336738586, - 0.18040192127227783, - 0.19335921108722687, - -0.19383399188518524, - 0.09933540970087051, - -0.4311390817165375, - 0.25905415415763855, - -0.20403288304805756, - -0.2505330741405487, - 0.1455889195203781, - -0.22897785902023315, - -0.581580638885498, - -0.20834757387638092, - 0.2546212077140808, - -0.1438681185245514, - -0.1492682546377182, - 0.1509302258491516, - 0.357839971780777, - -0.0059340414591133595, - -0.35886573791503906, - 0.06297000497579575, - -0.6482064127922058, - -0.37106001377105713, - 0.08488047122955322, - -0.14562620222568512, - -0.25109636783599854, - 0.08871662616729736, - 0.41756394505500793, - 0.4966334402561188, - 0.16365572810173035, - 0.022403394803404808, - 0.14851385354995728, - 0.39302578568458557, - 0.3227708339691162, - -0.28175485134124756, - -10.545528411865234, - 0.008158582262694836, - -0.3876628577709198, - 0.49560579657554626, - -0.2616336941719055, - 0.0037317872047424316, - -0.05145883932709694, - 0.08730348199605942, - 0.022066229954361916, - 0.011020426638424397, - -0.11735747009515762, - -0.15972931683063507, - 0.27400267124176025, - 0.2588048577308655, - 0.07208439707756042, - 0.06253185868263245, - -0.2640773057937622, - 0.2528142035007477, - 0.12234678119421005, - 0.12228688597679138, - 0.34288761019706726, - 0.4560675621032715, - -0.35627612471580505, - 0.04226427897810936, - -0.1239113137125969, - -0.5123240947723389, - -0.21726393699645996, - 0.5529163479804993, - 0.3407224416732788, - -0.27147701382637024, - 0.07091296464204788, - 0.11050966382026672, - -0.35254013538360596, - 0.3119750916957855, - -0.19920945167541504, - 0.06962386518716812, - -0.125289186835289, - 0.34711623191833496, - 0.4204179346561432, - -0.12700296938419342, - 0.033996034413576126, - 0.08437106758356094, - 0.44935479760169983, - 0.17172521352767944, - -0.11320038884878159, - -0.6467727422714233, - -0.07398699223995209, - -1.5811125040054321, - 0.26310014724731445, - 0.4660705029964447, - 0.21447370946407318, - 0.11800394207239151, - 0.13810066878795624, - 0.24176716804504395, - -0.3893686830997467, - -0.03096841275691986, - -0.1389656662940979, - -0.12763585150241852, - 0.11883822828531265, - 0.07600509375333786, - -0.14164605736732483, - -0.17006371915340424, - 0.7761989235877991, - 0.11721920222043991, - -0.32049694657325745, - 0.06823599338531494, - 0.1480935961008072, - -0.14710663259029388, - -0.16311149299144745, - -0.6702942848205566, - -0.5789613127708435, - -0.1340443193912506, - -0.03940504789352417, - -0.10384920239448547, - 0.33137503266334534, - 0.003646649420261383, - -0.14961910247802734, - 0.33785903453826904, - 0.04400714859366417, - 0.38170120120048523, - 0.3230189085006714, - -0.13054513931274414, - 0.1493968814611435, - -0.10488086193799973, - -0.3291749656200409, - -0.031031399965286255, - 0.24324409663677216, - 0.43641313910484314, - 0.1637044996023178, - 0.018027182668447495, - -0.004549933131784201, - 0.3693949282169342, - 0.07997158914804459, - -0.02599423937499523, - -0.41887012124061584, - -0.04981198534369469, - -0.047046929597854614, - 0.199593186378479, - 0.09400298446416855, - -0.15669985115528107, - -0.2603311240673065, - 0.2722800672054291, - 0.03091178834438324, - -0.38572701811790466, - -0.6321165561676025, - 0.35222864151000977, - 0.087679423391819, - 0.12568829953670502, - -0.0017912288894876838, - -0.2995126247406006, - -0.3751087188720703, - 0.05341852828860283, - 0.1790657639503479, - 0.5356160998344421, - 0.26018810272216797, - 0.01789526641368866, - -0.062299128621816635, - -0.3972206115722656, - -0.11172463744878769, - -0.000330035894876346, - 0.33568844199180603, - -0.2967802584171295, - 0.11588067561388016, - 0.6591761112213135, - 0.018065545707941055, - 0.015165269374847412, - 1.0064481496810913, - -0.2534324526786804, - 0.2719924747943878, - -0.08510994166135788, - 0.13282066583633423, - -0.12963734567165375, - -0.4858119487762451, - 0.28277310729026794, - 0.5150777697563171, - -0.3756895065307617, - 0.8527396321296692, - 0.37660086154937744, - -0.4042244851589203, - -0.06316526979207993, - -0.3249480724334717, - 0.5318021774291992, - 0.38964328169822693, - 0.16488003730773926, - -0.07197468727827072, - -0.09228169918060303, - -0.30745282769203186, - 0.05128428339958191, - -0.28112921118736267, - -0.18978498876094818, - -0.15510036051273346, - 0.14312876760959625, - 0.4052397310733795, - -0.18464075028896332, - 0.40996018052101135, - 0.31302469968795776, - -0.16822147369384766, - -0.3918851912021637, - -0.33840158581733704, - -0.08412184566259384, - -0.004811972379684448, - 0.883807897567749, - -0.005599358584731817, - 0.1318400353193283, - 0.10339409112930298, - 0.07457219809293747, - -0.15906620025634766, - 0.24405765533447266, - 0.2090870887041092, - 0.07019635289907455, - -0.4718707501888275, - 0.2973215579986572, - 0.04585787653923035, - -0.3391345739364624, - 0.010625305585563183, - 0.007796153426170349, - -0.10595250874757767, - 0.25771841406822205, - -0.2182052731513977, - -0.007550099398940802, - 0.5900967717170715, - 0.027679776772856712, - -0.07848504930734634, - -0.34914159774780273, - 0.0014931932091712952, - 0.20944039523601532, - 0.3608688414096832, - 0.007897858507931232, - -0.25251519680023193, - -0.20743446052074432, - -0.5568317770957947, - 0.1634812206029892, - -0.41405370831489563, - -0.03869534656405449, - 0.0992266833782196, - 0.1854182928800583, - -0.22279910743236542, - 0.09872794896364212, - 0.08140212297439575, - -0.04449039325118065, - -0.10929547995328903, - 0.23828046023845673, - 0.519236147403717, - -0.3027288615703583, - 0.44225582480430603, - -0.07203154265880585, - 0.0797000601887703, - 0.023911170661449432, - -0.3608057498931885, - -0.00946913193911314, - -0.3093157112598419 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_066.json b/src/benchmark/output/results/results_graph_066.json deleted file mode 100644 index 4643434..0000000 --- a/src/benchmark/output/results/results_graph_066.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 59-year-old woman who presented with a cough. Her demographic information is not explicitly mentioned in the provided data, but based on the age and sex, we can infer that she is an adult female.\n\n**Initial Diagnosis (Step 1):**\nUpon presentation, the patient underwent a lung CT scan, which revealed a space-occupying lesion in the left lower lobe. The lesion was accompanied by peripheral obstructive inflammation, atelectasis, and multiple enlarged lymph nodes in the mediastinum. A biopsy of the lesion was performed, which confirmed the presence of keratinized squamous cell carcinoma. The patient was diagnosed with left lower lobe squamous cell carcinoma (T3N2bM0, Stage IIIB).\n\n**Treatment Initiation (Step 2):**\nThe patient underwent six cycles of albumin-bound paclitaxel (100 mg/m\u00b2 on day 1, day 8, and day 15), cisplatin (75 mg/m\u00b2 on day 1), and carrelizumab (200 mg on day 1). Following this treatment, the left lower lung lesion had significantly reduced in size to approximately 23x25 mm.\n\n**Radiotherapy and Re-emergence of Disease (Step 3):**\nThe patient underwent radiotherapy with a dose of 2 Gy per fraction, administered over a total of 30 fractions. However, after ten fractions, the patient developed dyspnea and fever, with a maximum temperature of 38.5\u00b0C. A lung puncture biopsy was performed, which confirmed the presence of squamous cell carcinoma. The lesion had significantly enlarged to a size of 50 \u00d7 51 mm.\n\n**Outcome:**\nThe patient's condition worsened after radiotherapy, and she developed delayed hypersensitivity pneumonitis (DHP) after 5 months of immunotherapy. Despite this, the patient continued to receive treatment, highlighting the complexities of managing advanced cancer.\n\nIn conclusion, this clinical case report highlights the challenges of treating advanced squamous cell carcinoma in a 59-year-old woman. The patient's initial diagnosis and treatment response were promising, but the disease re-emerged after radiotherapy, leading to worsening symptoms and complications. Further management strategies are needed to improve outcomes for patients with advanced cancer.", - "bertscore": { - "precision": [ - 0.5903757810592651 - ], - "recall": [ - 0.7092682123184204 - ], - "f1": [ - 0.6443838477134705 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 3, - "edge_count": 2, - "avg_in_degree": 0.6666666666666666, - "density": 0.3333333333333333 - }, - "trajectory_embedding": [ - 0.24472539126873016, - 0.05973951891064644, - -0.20621691644191742, - 0.22169888019561768, - -0.08776857703924179, - -0.01297292485833168, - 0.14311833679676056, - 0.19575707614421844, - 0.13809828460216522, - -0.30675601959228516, - -0.19033236801624298, - 0.21958637237548828, - -0.5650694966316223, - -0.03671947494149208, - -0.21233956515789032, - -0.07029158622026443, - 0.05985746905207634, - 0.3540482819080353, - 0.09971606731414795, - -0.21774829924106598, - -0.4880874454975128, - 0.07818809896707535, - -0.3714626729488373, - -0.23509180545806885, - 0.06321892887353897, - -0.14382852613925934, - -0.09785137325525284, - 0.5526863932609558, - 0.2408498376607895, - 0.36133289337158203, - 0.11607518792152405, - 0.14982308447360992, - -0.18732130527496338, - -0.06406443566083908, - -0.04870617389678955, - 0.30946287512779236, - 0.2232000231742859, - 0.2514793574810028, - -0.03711273521184921, - 0.06858106702566147, - -0.04543985798954964, - -0.054216574877500534, - 0.8410571217536926, - 0.4946504533290863, - 0.6904703974723816, - -0.3553180694580078, - 0.07950248569250107, - 0.38915541768074036, - -0.8199913501739502, - -0.18235641717910767, - 0.2594229578971863, - 0.7004188895225525, - 0.7419648170471191, - -0.09346562623977661, - 0.48649755120277405, - -0.19655929505825043, - -0.35712262988090515, - -0.12270615249872208, - -0.33330056071281433, - 0.035338446497917175, - 0.08950041979551315, - 0.07932708412408829, - -0.13393497467041016, - -0.05882519111037254, - -0.4297293722629547, - -0.07603780180215836, - -0.24973559379577637, - -0.010420563630759716, - 0.03171468898653984, - -0.5315023064613342, - -0.39088842272758484, - -0.19595032930374146, - -0.19118864834308624, - 0.24489863216876984, - 0.1897304207086563, - -0.3389620780944824, - 0.20047469437122345, - 0.03468834236264229, - -0.0655626729130745, - 0.14029420912265778, - 0.17140133678913116, - -0.02399207092821598, - 0.2540210783481598, - 0.22558891773223877, - -0.2655019760131836, - 0.1640091985464096, - 0.11728119850158691, - -0.1884794980287552, - -0.15492989122867584, - 0.21031498908996582, - 0.20496852695941925, - -0.1964985728263855, - -0.023617811501026154, - -0.08346119523048401, - 0.210036039352417, - -0.03352765366435051, - 0.24766667187213898, - 0.39670801162719727, - 0.9792380332946777, - 0.041457414627075195, - 0.3535352945327759, - 0.12252096086740494, - 0.26902487874031067, - -0.04724891856312752, - 0.48376134037971497, - 0.06455666571855545, - 0.0948953703045845, - -0.3248388469219208, - 0.0001873125584097579, - 0.41208887100219727, - -0.07521289587020874, - -0.19096501171588898, - 0.1534561961889267, - -0.41474649310112, - 0.002934597432613373, - 0.11999937146902084, - -0.24417127668857574, - 0.12330881506204605, - -0.022776365280151367, - -0.41632938385009766, - -0.13032205402851105, - -0.1667323261499405, - 0.5076087117195129, - 0.24391146004199982, - -0.6251253485679626, - -0.15292535722255707, - -0.09079304337501526, - 0.10629767179489136, - -0.0969785824418068, - 0.14091737568378448, - -0.35459503531455994, - -0.07694574445486069, - 0.24394215643405914, - 0.35355687141418457, - -0.30491742491722107, - 0.31794604659080505, - -0.38083335757255554, - 0.07474204152822495, - -1.226477026939392, - 0.2961015999317169, - -0.5032801032066345, - -0.108010433614254, - 0.13107943534851074, - -0.49610671401023865, - -0.1767665594816208, - -0.068946473300457, - -0.19116894900798798, - 0.18121390044689178, - 0.002250944497063756, - -0.0333944670855999, - -0.18197953701019287, - 0.031042953953146935, - 0.20110321044921875, - 0.26335009932518005, - 0.2646425664424896, - 0.27324384450912476, - 0.2407650500535965, - 0.26426127552986145, - 0.3190576732158661, - -0.22063130140304565, - -0.02279333770275116, - 0.30932655930519104, - -0.12357389181852341, - -0.16448788344860077, - 0.009782317094504833, - -0.7148368954658508, - 0.2502247393131256, - -0.2690623998641968, - 0.38259294629096985, - 0.062444090843200684, - -0.03332372382283211, - 0.08372946828603745, - -0.06197817251086235, - 0.41303038597106934, - 0.21075521409511566, - 0.43564775586128235, - 0.09936109185218811, - 0.03837363421916962, - 0.35816511511802673, - 0.2276294231414795, - 0.10912089794874191, - -0.030399831011891365, - 0.568000853061676, - 0.28022265434265137, - -0.34713688492774963, - 0.18400056660175323, - 0.6108300685882568, - -0.4837230145931244, - -0.07710225135087967, - -0.38692915439605713, - 0.5639374852180481, - -0.03400975093245506, - 0.27839186787605286, - -0.4430330991744995, - 0.11624273657798767, - 0.0877058133482933, - -0.3161497414112091, - -0.3183850049972534, - 0.19277746975421906, - -0.2225656509399414, - 0.04632681608200073, - 0.42847514152526855, - -0.07463964819908142, - 0.054895926266908646, - 0.2422086000442505, - -0.1537158340215683, - 0.3643310070037842, - 0.21861886978149414, - 0.03560551628470421, - -0.15345647931098938, - -0.1623491793870926, - 0.22562961280345917, - 0.22217579185962677, - 0.30118897557258606, - -0.08191647380590439, - -0.15430192649364471, - 0.2179277390241623, - -0.1365259736776352, - -0.20148350298404694, - 0.1175960898399353, - -0.1683780699968338, - -0.0619087815284729, - 0.4505422115325928, - -0.010252299718558788, - -0.31232932209968567, - 0.26019707322120667, - 0.18838584423065186, - 0.10241077095270157, - 0.047579988837242126, - -0.003696044208481908, - 0.12725670635700226, - -0.2746680676937103, - 0.4076017439365387, - -0.04719288647174835, - -0.11623629927635193, - -0.2201196700334549, - 0.14945465326309204, - -0.14551478624343872, - -0.3147028386592865, - 0.36578240990638733, - -0.07165887951850891, - -0.09624495357275009, - -0.0745454728603363, - -0.23157548904418945, - -0.082053042948246, - -0.3674026429653168, - 0.2011731117963791, - 0.35115382075309753, - 0.19356246292591095, - 0.21420156955718994, - 0.05888652801513672, - -0.2460108995437622, - 0.3210803270339966, - -0.4284001290798187, - -0.3601716458797455, - -0.23948414623737335, - -0.160123810172081, - -0.20349836349487305, - -0.219018816947937, - -0.04691457748413086, - -0.04989147186279297, - -0.2610017955303192, - 0.2012440413236618, - -0.3811030685901642, - -0.15432433784008026, - -0.09969782829284668, - -0.09778731316328049, - 0.18930615484714508, - 0.04510769248008728, - 0.2529543936252594, - -0.4515397548675537, - -0.2720588743686676, - -0.10315386205911636, - 0.02979304827749729, - 0.3163506090641022, - 0.2647949159145355, - 0.012967054732143879, - 0.2102910727262497, - 0.29734015464782715, - -0.4553937017917633, - -0.36370977759361267, - 0.029198577627539635, - -0.2898355722427368, - 0.0427025742828846, - -0.3326948583126068, - 0.04941452667117119, - 0.3447096347808838, - 0.041680995374917984, - 0.3457329273223877, - 0.5037882328033447, - 0.5015177130699158, - 0.27465498447418213, - -0.1846528798341751, - -0.055688705295324326, - -0.0830637514591217, - -0.059880126267671585, - -0.4160454273223877, - 0.16137750446796417, - -0.12424380332231522, - -0.013688790611922741, - 0.1888742595911026, - 0.23198576271533966, - -0.011724273674190044, - -0.45893311500549316, - -0.2340559959411621, - 0.6245488524436951, - 0.30824407935142517, - -0.11972123384475708, - -0.06818624585866928, - 0.31432485580444336, - 0.7497386336326599, - -0.009430192410945892, - -0.1330808401107788, - -0.10549646615982056, - -0.024887895211577415, - -0.10062122344970703, - -0.17127345502376556, - 0.01669115386903286, - 0.18056027591228485, - -0.10295003652572632, - -0.09337595105171204, - 0.36089882254600525, - -0.13965356349945068, - -0.08542203158140182, - -0.06505189090967178, - 0.10638538002967834, - -0.012201775796711445, - -0.33361807465553284, - 0.27496346831321716, - -0.2726285755634308, - -0.057488005608320236, - 0.519100546836853, - -0.01144926156848669, - -0.28289830684661865, - 0.3690139055252075, - -0.10617876052856445, - -0.5634174942970276, - 0.27518460154533386, - -0.2088218480348587, - 0.0028694632928818464, - 0.34025660157203674, - -0.16064055263996124, - 0.0016224136343225837, - -0.15492258965969086, - 0.012122553773224354, - 0.18882644176483154, - -0.050750669091939926, - -0.03924507275223732, - -0.03840144723653793, - 0.2402849644422531, - 0.5950093865394592, - -0.11780447512865067, - 0.10417792946100235, - 0.15058690309524536, - -0.202588751912117, - -0.10731291025876999, - -0.07707282155752182, - 0.16964705288410187, - 0.04422913119196892, - -0.3682064116001129, - -0.4024607241153717, - -0.32807669043540955, - 0.19396977126598358, - 0.11229383200407028, - -0.06358324736356735, - -0.049455493688583374, - -0.049556080251932144, - -0.021056191995739937, - 0.11639239639043808, - 0.3737211227416992, - 0.26526185870170593, - 0.0833679810166359, - 0.49039459228515625, - 0.06786119192838669, - 0.013739767484366894, - 0.3272363841533661, - -0.1748441457748413, - 0.30978843569755554, - -0.17690134048461914, - -0.3660604655742645, - -0.5179305672645569, - 0.004800538066774607, - -0.42185071110725403, - -0.07543555647134781, - 0.010172267444431782, - 0.09870466589927673, - -0.09843180328607559, - -0.12942905724048615, - 0.1613881140947342, - 0.0856059268116951, - 0.312078595161438, - -0.04180729761719704, - 0.5679910182952881, - -0.044651586562395096, - -0.4304715394973755, - 0.09852247685194016, - -0.14173902571201324, - 0.334534615278244, - -0.16404055058956146, - 0.018181854858994484, - -0.17308539152145386, - 0.5315093398094177, - 0.11742828041315079, - -0.07481261342763901, - -0.001330789178609848, - -0.21552641689777374, - -0.28844380378723145, - -0.34183570742607117, - -0.1385217159986496, - -0.0353928804397583, - -0.13364623486995697, - -0.09281674772500992, - 0.29700711369514465, - -0.21455669403076172, - -0.2409260869026184, - 0.121465764939785, - 0.4624112844467163, - 0.04286643862724304, - -0.09062247723340988, - -0.11810433119535446, - 0.2106172889471054, - 0.019037535414099693, - 0.3781695067882538, - -0.16599641740322113, - 0.055901166051626205, - 0.01362465787678957, - -0.3248428702354431, - -0.06648602336645126, - 0.04167942330241203, - -0.300541490316391, - 0.07971624284982681, - 0.27121031284332275, - -0.005033507943153381, - 0.10767247527837753, - 0.03863084316253662, - -0.07513835281133652, - 0.27220484614372253, - -0.4194846451282501, - -0.09670042991638184, - 0.3917611539363861, - 0.08840013295412064, - 0.6115625500679016, - -0.0882614478468895, - -0.4061022102832794, - -0.08047638088464737, - 0.025134295225143433, - -0.48740851879119873, - 0.24531686305999756, - -0.029790988191962242, - -0.19875936210155487, - 0.01629987545311451, - 0.03272233530879021, - 0.025919994339346886, - 0.028100989758968353, - 0.025510305538773537, - -0.026835812255740166, - 0.11868489533662796, - -0.06550981104373932, - -0.38142433762550354, - 0.047631364315748215, - -0.38747766613960266, - -0.33251288533210754, - -0.3359937369823456, - 0.49157238006591797, - 0.18256129324436188, - -0.1027270182967186, - 0.06662095338106155, - 0.09664812684059143, - -0.1800452619791031, - -0.29837337136268616, - 0.07263601571321487, - 0.014624076895415783, - 0.683661937713623, - -0.028218962252140045, - -0.12441673129796982, - 0.34542861580848694, - -0.5134815573692322, - 0.12539905309677124, - 0.16842679679393768, - 0.15858405828475952, - 0.2769908607006073, - 0.037397440522909164, - 0.23338834941387177, - 0.3327862024307251, - 0.21860282123088837, - -0.0847303569316864, - 0.2821405231952667, - -0.07222587615251541, - -0.09961170703172684, - 0.11621060222387314, - -0.21702654659748077, - 0.5164672136306763, - -0.4418872892856598, - 0.2534107267856598, - -0.014755435287952423, - 0.4497506618499756, - -0.24374859035015106, - -0.3478260934352875, - -0.09775318950414658, - -0.2522020637989044, - -0.21367521584033966, - -0.34489715099334717, - -0.21151171624660492, - 0.1533224880695343, - -0.41795364022254944, - 0.009175683371722698, - 0.4369765520095825, - 0.3349725902080536, - 0.13335593044757843, - 0.08260536193847656, - -0.355595201253891, - -0.4663221538066864, - -0.07575363665819168, - 0.2912334203720093, - -0.012158308178186417, - -0.01939759962260723, - -0.052952419966459274, - 0.3092961311340332, - 0.6253311038017273, - -0.10531309992074966, - -0.1512894481420517, - -0.134952574968338, - -0.05019104480743408, - -0.16695024073123932, - -0.04916447028517723, - -0.1300649493932724, - 0.3077431619167328, - -0.36611390113830566, - -0.046004459261894226, - -0.14477355778217316, - -0.3982226848602295, - 0.13922584056854248, - -0.34826961159706116, - -0.39057230949401855, - -0.024207821115851402, - 0.1379953771829605, - -0.2238806039094925, - -0.026945918798446655, - 0.2545139789581299, - 0.4592592716217041, - 0.1505405455827713, - -0.07086842507123947, - 0.12405675649642944, - -0.6305832266807556, - -0.058170806616544724, - 0.29443609714508057, - -0.2588263750076294, - 0.2799323797225952, - -0.003765612840652466, - 0.23406900465488434, - 0.15053169429302216, - 0.16451911628246307, - -0.38798782229423523, - 0.0768650695681572, - 0.2781657874584198, - 0.43474605679512024, - -0.15346772968769073, - -10.960356712341309, - 0.06405992805957794, - -0.10026196390390396, - 0.4984339773654938, - -0.08484695106744766, - 0.05730124190449715, - -0.10981613397598267, - -0.060770418494939804, - 0.22861559689044952, - 0.2867518365383148, - -0.05398468300700188, - 0.2388964146375656, - 0.29632505774497986, - 0.2794932425022125, - -0.015646910294890404, - -0.11755019426345825, - -0.33758094906806946, - 0.33045339584350586, - -0.2305048704147339, - -0.07931394129991531, - 0.47469034790992737, - 0.5132012963294983, - -0.26039257645606995, - 0.3521421253681183, - 0.24662601947784424, - -0.3290752172470093, - -0.18977028131484985, - 0.30583569407463074, - 0.2560260593891144, - -0.4243943393230438, - 0.41480517387390137, - 0.11285549402236938, - -0.15821020305156708, - -0.08145276457071304, - 0.04051022604107857, - -0.08236095309257507, - -0.09063855558633804, - -0.062187764793634415, - 0.014029591344296932, - -0.008436200208961964, - 0.009130623191595078, - -0.26938101649284363, - 0.02358812838792801, - 0.217571422457695, - -0.0987858772277832, - -0.4252159595489502, - -0.3924587666988373, - -1.5080143213272095, - 0.13750313222408295, - 0.27976346015930176, - 0.588225245475769, - 0.060049694031476974, - 0.2496291548013687, - 0.13963903486728668, - -0.5151636004447937, - -0.08688181638717651, - -0.1798693686723709, - 0.31586572527885437, - 0.27058014273643494, - -0.09923862665891647, - 0.18622322380542755, - -0.2636469900608063, - 0.4458160400390625, - -0.42067423462867737, - -0.24530106782913208, - 0.2546333372592926, - -0.1903402954339981, - -0.07899084687232971, - -0.18558235466480255, - -0.10308300703763962, - -0.5935779213905334, - -0.14467324316501617, - 0.06936707347631454, - -0.009953108616173267, - 0.329560786485672, - -0.1617351919412613, - -0.4816628694534302, - -0.01653486303985119, - 0.10779452323913574, - 0.32051554322242737, - 0.28326278924942017, - 0.12196606397628784, - 0.08756425976753235, - -0.19185858964920044, - -0.10937216877937317, - -0.014642149209976196, - 0.06141020357608795, - 0.6293041706085205, - 0.02164670266211033, - 0.06238098070025444, - -0.1194082573056221, - 0.3395727574825287, - -0.14156518876552582, - -0.1660834550857544, - -0.434939980506897, - 0.27401623129844666, - 0.08059815317392349, - 0.18688659369945526, - 0.012292377650737762, - -0.2353852391242981, - -0.17058952152729034, - -0.2572742700576782, - -0.07646320760250092, - -0.41726577281951904, - -0.3206033408641815, - 0.27345409989356995, - 0.27907463908195496, - -0.02266020141541958, - 0.11334013938903809, - 0.0774502083659172, - 0.09779997915029526, - -0.051723137497901917, - 0.6278414130210876, - 0.626000702381134, - 0.04142439737915993, - -0.2174665927886963, - -0.33282700181007385, - 0.288815975189209, - -0.3903399407863617, - -0.003919137641787529, - 0.3264608681201935, - 0.05567343160510063, - 0.36269280314445496, - 0.61568284034729, - -0.07746411114931107, - -0.048094492405653, - 0.8306520581245422, - -0.32907164096832275, - 0.3848963677883148, - -0.19391123950481415, - 0.1863178014755249, - -0.07402336597442627, - -0.27095863223075867, - 0.07724221050739288, - 0.25158074498176575, - -0.2959558963775635, - 0.5592979788780212, - 0.07577923685312271, - -0.4425506293773651, - 0.00042188167572021484, - -0.4586349427700043, - 0.38460829854011536, - 0.30545172095298767, - 0.10892649739980698, - -0.19438405334949493, - -0.3272428810596466, - -0.1468651294708252, - 0.008953355252742767, - -0.25023123621940613, - -0.37482044100761414, - -0.09951747208833694, - -0.020684322342276573, - 0.04263325408101082, - -0.2340986281633377, - 0.4263988733291626, - 0.0822518989443779, - -0.19622670114040375, - -0.02026284672319889, - -0.4919753968715668, - -0.1848757416009903, - 0.2676183879375458, - 0.6674940586090088, - 0.3138386905193329, - -0.2451866865158081, - -0.2035677433013916, - 0.2600369155406952, - -0.01173351425677538, - 0.0680723786354065, - 0.10946498066186905, - -0.08542770147323608, - -0.5419972538948059, - 0.030171914026141167, - 0.12477704137563705, - -0.33835503458976746, - -0.23286695778369904, - -0.33639511466026306, - 0.19271008670330048, - -0.13297611474990845, - -0.06605911999940872, - 0.2756675183773041, - 0.2757405936717987, - -0.10188999027013779, - 0.004778603557497263, - -0.2490537315607071, - 0.01903938315808773, - 0.16929584741592407, - 0.11932594329118729, - 0.10526015609502792, - -0.02270149439573288, - -0.6346606612205505, - -0.2796635329723358, - 0.2684823274612427, - -0.22892530262470245, - -0.06004071235656738, - 0.08261638134717941, - 0.18701212108135223, - -0.41923144459724426, - 0.09933196753263474, - -0.3425528109073639, - 0.07792862504720688, - -0.36998236179351807, - 0.009928437881171703, - 0.4032503664493561, - -0.41004666686058044, - 0.2437080591917038, - -0.10462010651826859, - 0.24723057448863983, - 0.11909554153680801, - -0.3022080659866333, - 0.18338240683078766, - -0.21861453354358673 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_067.json b/src/benchmark/output/results/results_graph_067.json deleted file mode 100644 index 85b921f..0000000 --- a/src/benchmark/output/results/results_graph_067.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 67-year-old male who presented in 2016 with stage IIIA non-small cell lung cancer (NSCLC) adenocarcinoma.\n\n**Timeline of Diagnoses:**\n\n1. **2016:** The patient was diagnosed with stage IIIA NSCLC adenocarcinoma.\n2. **2016:** Following the diagnosis, the patient underwent a right middle lobectomy, adjuvant carboplatin/paclitaxel chemotherapy, and postoperative radiotherapy (PORT).\n3. **2022:** The patient developed metastatic disease in the right lung, liver, and brain.\n\n**Timeline of Treatments:**\n\n1. **2016-2017:** Adjuvant carboplatin/paclitaxel chemotherapy.\n2. **2017:** Postoperative radiotherapy (PORT) was administered.\n3. **2022:** Stereotactic radiation therapy was performed to treat a single brain metastasis.\n4. **2022:** Empirical chemotherapy regimen consisting of 5-fluorouracil/oxaliplatin (FOLFOX) was initiated.\n5. **2022:** Histopathological analysis of liver lesions identified spindle cell carcinoma likely pulmonary in origin despite atypical features, with a high proliferative Ki-67 index (90%).\n6. **2022:** Treatment with docetaxel was administered.\n\n**Timeline of Outcomes:**\n\n1. **2017:** The patient underwent upper and lower GI endoscopy due to microcytosis, but no lesions were identified.\n2. **2022:** Liver biopsy showed metastatic spindle cell carcinoma on H&E stain, sections demonstrated a spindle cell neoplasm with significant mitotic activity and focal necrosis, and immunohistochemistry showed the tumor cells positive for AE1/AE3 and CK8/18, but negative for Alk-1, CK7, CK20, CDX-2, and CD117.\n3. **2022:** The patient received nine weekly doses of docetaxel with modest shrinkage (approximately 10-15%).\n\n**Conclusion:**\nThe patient's clinical course was marked by a diagnosis of stage IIIA NSCLC adenocarcinoma in 2016, followed by treatment with adjuvant chemotherapy and radiotherapy. Despite this initial treatment, the patient developed metastatic disease in 2022, which led to further evaluation and treatment, including stereotactic radiation therapy for brain metastasis, empirical chemotherapy regimen, histopathological analysis of liver lesions, and treatment with docetaxel. The patient's current status is characterized by ongoing treatment with docetaxel, with modest shrinkage observed in the tumor size.", - "bertscore": { - "precision": [ - 0.707660973072052 - ], - "recall": [ - 0.7203216552734375 - ], - "f1": [ - 0.7139351963996887 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 9, - "edge_count": 8, - "avg_in_degree": 0.8888888888888888, - "density": 0.1111111111111111 - }, - "trajectory_embedding": [ - 0.2563111484050751, - 0.18047350645065308, - -0.12980332970619202, - 0.12957733869552612, - 0.14545029401779175, - 0.19874490797519684, - -0.020612286403775215, - 0.3609883785247803, - 0.5175485610961914, - -0.42774152755737305, - -0.11932812631130219, - -0.07010838389396667, - -0.6297792792320251, - -0.06867539882659912, - -0.2806960642337799, - 0.28194066882133484, - -0.16101223230361938, - 0.2974811792373657, - -0.0320054367184639, - -0.26180869340896606, - -0.3653232455253601, - 0.21554100513458252, - -0.4952680766582489, - -0.01274600438773632, - 0.2917851209640503, - 0.013397665694355965, - 0.4539494514465332, - 0.5107171535491943, - 0.1910659819841385, - 0.2023172825574875, - 0.14290876686573029, - -0.1720331311225891, - 0.27078431844711304, - 0.12576454877853394, - -0.30881425738334656, - 0.23997381329536438, - 0.20052491128444672, - 0.2819211781024933, - -0.16505563259124756, - 0.02628747560083866, - -0.17063747346401215, - 0.08229643851518631, - 0.8373680114746094, - 0.14184650778770447, - 0.4898078739643097, - -0.7631044387817383, - -0.05833498015999794, - 0.6571429967880249, - -0.587323784828186, - -0.3337332010269165, - 0.11421965062618256, - 0.8041656613349915, - 0.6735653877258301, - -0.3212493658065796, - 0.4462393522262573, - -0.09566310048103333, - -0.2393297553062439, - -0.24039578437805176, - -0.23803025484085083, - -0.0028881398029625416, - 0.051754288375377655, - -0.2753262519836426, - 0.4287317991256714, - -0.23822420835494995, - -0.17750635743141174, - -0.223173588514328, - -0.3731268048286438, - 0.04168960824608803, - 0.010609358549118042, - -0.42431437969207764, - -0.12321975827217102, - -0.20164258778095245, - -0.0698876902461052, - 0.059933118522167206, - 0.05492713674902916, - -0.09806787967681885, - 0.350442111492157, - -0.13774612545967102, - 0.15925580263137817, - 0.2140136957168579, - -0.07230867445468903, - -0.17573881149291992, - 0.030170436948537827, - 0.2979617714881897, - -0.445273756980896, - -0.13959911465644836, - -0.11444449424743652, - -0.20965570211410522, - -0.40044495463371277, - 0.13729432225227356, - 0.17726798355579376, - -0.46805816888809204, - -0.05943233519792557, - -0.16726654767990112, - -0.0215974822640419, - 0.21199630200862885, - 0.5280852317810059, - 0.216959610581398, - 0.9069752097129822, - -0.05025506392121315, - 0.14157015085220337, - -0.026503555476665497, - 0.1826874166727066, - 0.05934286117553711, - 0.34719324111938477, - -0.08723073452711105, - 0.25699499249458313, - -0.4970172345638275, - 0.34495222568511963, - 0.45673301815986633, - 0.0726204514503479, - -0.16635073721408844, - -0.004855076316744089, - -0.18847019970417023, - 0.19316837191581726, - 0.1378999948501587, - 0.07015062868595123, - 0.23014742136001587, - 0.2763122320175171, - -0.4145337641239166, - -0.2305348664522171, - -0.16869285702705383, - 0.2995665967464447, - 0.23186254501342773, - -0.4474298059940338, - -0.046202387660741806, - -0.19713261723518372, - -0.022294674068689346, - 0.14391879737377167, - 0.062021996825933456, - -0.5559811592102051, - -0.21763890981674194, - -0.00721403956413269, - 0.035294752568006516, - -0.07481279969215393, - 0.3524245023727417, - -0.3655874729156494, - -0.019033798947930336, - -1.0617194175720215, - 0.19405941665172577, - -0.33067160844802856, - -0.11612159758806229, - -0.006241641007363796, - -0.4924764037132263, - -0.27442190051078796, - -0.10036749392747879, - -0.10831528156995773, - 0.18844126164913177, - -0.1787920892238617, - -0.10481493920087814, - 0.06010334938764572, - 0.005608707666397095, - 0.21282905340194702, - 0.5520514845848083, - 0.15650419890880585, - 0.06096847727894783, - 0.015503909438848495, - 0.31192928552627563, - 0.08708088845014572, - 0.002102242549881339, - 0.013117737136781216, - 0.5071194171905518, - 0.22254493832588196, - 0.07495769113302231, - -0.15746352076530457, - -0.5346567630767822, - -0.061059579253196716, - -0.2254386991262436, - -0.0025296227540820837, - 0.13289958238601685, - -0.09840560704469681, - 0.11590811610221863, - -0.28228721022605896, - 0.5979018807411194, - -0.0006272461614571512, - 0.19261036813259125, - -0.017632193863391876, - 0.005382660310715437, - 0.08769732713699341, - 0.19561141729354858, - 0.23628224432468414, - -0.2900877296924591, - 0.7235522866249084, - 0.38908424973487854, - -0.23791950941085815, - 0.2786569893360138, - 0.3320704996585846, - -0.039316654205322266, - -0.27462318539619446, - -0.0002805127005558461, - 0.6495236754417419, - -0.3378776013851166, - 0.6428676843643188, - -0.3850654065608978, - -0.079743891954422, - 0.21607255935668945, - -0.14196699857711792, - -0.03390302136540413, - -0.06184215843677521, - -0.08423982560634613, - 0.2539777457714081, - 0.06911060214042664, - -0.4456231892108917, - 0.0044640665873885155, - 0.21410337090492249, - -0.05766420066356659, - 0.16673514246940613, - -0.01690095290541649, - 0.13375528156757355, - 0.06507658958435059, - -0.18613427877426147, - 0.3015982210636139, - -0.18185624480247498, - 0.3694620132446289, - -0.02114221453666687, - -0.46926626563072205, - 0.16210311651229858, - -0.012697579339146614, - -0.16178935766220093, - 0.15819913148880005, - -0.004583375528454781, - -0.30103757977485657, - -0.08974733203649521, - -0.047581665217876434, - -0.6438201665878296, - 0.24425122141838074, - 0.10657566040754318, - 0.30328407883644104, - 0.2577802538871765, - -0.014891871251165867, - -0.0130117516964674, - -0.43777337670326233, - 0.35279685258865356, - -0.10263874381780624, - -0.07498358935117722, - -0.26379409432411194, - 0.3302410840988159, - -0.10006142407655716, - 0.16516052186489105, - 0.44004735350608826, - -0.010329893790185452, - -0.06775636225938797, - 0.1897384375333786, - -0.4060557186603546, - -0.10382090508937836, - -0.44256407022476196, - 0.019130907952785492, - 0.364189088344574, - 0.08011194318532944, - 0.27923333644866943, - -0.03265766799449921, - -0.17198534309864044, - 0.18690527975559235, - -0.12449974566698074, - -0.4856452941894531, - -0.30901801586151123, - -0.027464741840958595, - -0.13205735385417938, - -0.7264115214347839, - 0.1181509792804718, - -0.1127496138215065, - 0.0019398066215217113, - 0.19052189588546753, - -0.34588658809661865, - -0.20879706740379333, - 0.11871564388275146, - 0.14009429514408112, - 0.1609005630016327, - -0.22135360538959503, - 0.10623787343502045, - -0.2685736119747162, - -0.09476426243782043, - -0.22107644379138947, - -0.0026477526407688856, - 0.06600001454353333, - 0.0014596200780943036, - -0.3718755543231964, - -0.05315720662474632, - 0.1078578382730484, - -0.3234424889087677, - -0.05669151991605759, - 0.20027855038642883, - -0.1291794627904892, - 0.17780669033527374, - 0.04459580406546593, - 0.2170383334159851, - 0.390860378742218, - -0.005249791778624058, - 0.10039656609296799, - 0.36140620708465576, - 0.5250841379165649, - -0.11312157660722733, - 0.11197253316640854, - 0.00719456048682332, - -0.11138778179883957, - -0.009262846782803535, - -0.4462110102176666, - 0.46684136986732483, - 0.0056252446956932545, - 0.08430922776460648, - 0.1525137573480606, - 0.22625356912612915, - -0.012632980942726135, - -0.21722687780857086, - 0.1597178727388382, - 0.531234085559845, - 0.15898969769477844, - 0.23828989267349243, - 0.16438181698322296, - 0.18891021609306335, - 0.26625773310661316, - -0.13577808439731598, - 0.04122096300125122, - 0.15837545692920685, - -0.02935744635760784, - -0.29432213306427, - -0.022714396938681602, - 0.1750982105731964, - 0.46150222420692444, - -0.2683558464050293, - -0.36105892062187195, - 0.01579613797366619, - -0.23539382219314575, - -0.02449367381632328, - -0.3135550618171692, - -0.10939577221870422, - 0.14637205004692078, - -0.25333261489868164, - 0.3853977918624878, - 0.05118032172322273, - -0.0978781133890152, - 0.37814176082611084, - -0.423348993062973, - -0.08173621445894241, - 0.1880859136581421, - -0.042604777961969376, - -0.40653422474861145, - 0.42451632022857666, - -0.24886509776115417, - -0.005955649074167013, - 0.3546699285507202, - -0.4556626081466675, - -0.07820828258991241, - 0.15935449302196503, - 0.30810436606407166, - -0.07229045033454895, - 0.12459214776754379, - 0.014383073896169662, - 0.04380850866436958, - 0.09870689362287521, - 0.6041895151138306, - 0.07100291550159454, - 0.25920569896698, - 0.6406476497650146, - 0.31951746344566345, - -0.35319676995277405, - 0.10219580680131912, - -0.2607383131980896, - 0.408083975315094, - -0.13438265025615692, - -0.07431582361459732, - -0.195485457777977, - 0.16928330063819885, - 0.04176736995577812, - -0.3041282892227173, - 0.039509277790784836, - 0.1898241639137268, - 0.07274668663740158, - 0.030978377908468246, - 0.30259159207344055, - 0.20311325788497925, - -0.09501809626817703, - 0.45608678460121155, - -0.17285370826721191, - -0.1034097671508789, - 0.347759872674942, - -0.2291771024465561, - 0.12405966222286224, - 0.12078092992305756, - -0.062239568680524826, - -0.3865746557712555, - 0.18865078687667847, - -0.3410874903202057, - -0.23614726960659027, - 0.04899827390909195, - -0.12557347118854523, - 0.09591282904148102, - -0.26604950428009033, - 0.05497484654188156, - 0.06773429363965988, - 0.04967539384961128, - 0.17482496798038483, - 0.35082393884658813, - 0.059912484139204025, - -0.1907939463853836, - 0.2109791338443756, - -0.042397402226924896, - -0.10436010360717773, - -0.3644818067550659, - 0.0881710797548294, - -0.18994587659835815, - 0.6630847454071045, - 0.06388696283102036, - -0.022125741466879845, - 0.1327216625213623, - -0.14152146875858307, - -0.18682795763015747, - -0.4027436673641205, - -0.08173949271440506, - -0.1665683388710022, - 0.08023914694786072, - 0.13450318574905396, - 0.05962695553898811, - -0.3576686382293701, - -0.11541208624839783, - -0.023674385622143745, - -0.10740462690591812, - 0.09639335423707962, - -0.11354199051856995, - -0.1706063151359558, - 0.3247024118900299, - 0.26461711525917053, - 0.42767003178596497, - -0.39370471239089966, - 0.09580746293067932, - 0.06179129332304001, - -0.2857809066772461, - -0.12670451402664185, - -0.026705123484134674, - -0.4812834560871124, - -0.23243390023708344, - 0.3261158764362335, - 0.31943270564079285, - 0.01188349723815918, - 0.052742768079042435, - 0.13957804441452026, - 0.25010421872138977, - -0.369578093290329, - -0.07842645049095154, - 0.2857654392719269, - 0.2305995672941208, - 0.32215672731399536, - 0.05624943971633911, - -0.4458381235599518, - -0.3493761420249939, - -0.09723154455423355, - -0.4201689660549164, - 0.05046665295958519, - 0.23753809928894043, - 0.029007647186517715, - -0.05417732894420624, - 0.07578655332326889, - -0.022361917421221733, - -0.24034860730171204, - 0.35533517599105835, - -0.057443127036094666, - 0.278106153011322, - 0.0873420238494873, - -0.22808769345283508, - -0.08650699257850647, - -0.20494116842746735, - -0.35072046518325806, - -0.2496449202299118, - 0.18551291525363922, - 0.24581533670425415, - -0.3094838261604309, - 0.03934190049767494, - 0.23132427036762238, - -0.1402081400156021, - -0.17246097326278687, - -0.010208829306066036, - -0.2707397937774658, - 0.4107304811477661, - -0.1262853592634201, - -0.28506845235824585, - 0.17675578594207764, - -0.026497740298509598, - 0.005959221161901951, - 0.15867610275745392, - -0.006215577479451895, - 0.37070876359939575, - 0.06254514306783676, - 0.021026961505413055, - 0.5632040500640869, - 0.08371199667453766, - 0.12306446582078934, - 0.27995607256889343, - 0.09476613998413086, - -0.015644725412130356, - -0.2608633041381836, - -0.2269676774740219, - 0.2435905933380127, - -0.3656603991985321, - -0.17693662643432617, - 0.13172589242458344, - 0.282509446144104, - -0.4208969473838806, - -0.32790568470954895, - 0.02855946309864521, - 0.029470013454556465, - -0.052197717130184174, - -0.14030805230140686, - -0.26553845405578613, - -0.15844698250293732, - -0.40292036533355713, - -0.006387969478964806, - 0.2104761302471161, - 0.47560420632362366, - 0.19139701128005981, - 0.18151742219924927, - -0.2554055452346802, - -0.2698480784893036, - 0.29285064339637756, - 0.24421283602714539, - 0.04559524357318878, - -0.02580331824719906, - -0.17833274602890015, - 0.2966034710407257, - 0.3906712532043457, - 0.036921098828315735, - 0.09224876016378403, - 0.02836645022034645, - 0.013121644966304302, - 0.17179760336875916, - 0.09241248667240143, - -0.23306499421596527, - -0.0361931174993515, - -0.4037712812423706, - 0.11465311050415039, - -0.22384013235569, - -0.13772326707839966, - 0.1899043619632721, - -0.19693519175052643, - -0.5686931610107422, - -0.17484872043132782, - 0.2454901784658432, - -0.09055855870246887, - -0.21049080789089203, - 0.20207257568836212, - 0.25824782252311707, - -0.0856563076376915, - -0.32466623187065125, - 0.04943637549877167, - -0.6365343332290649, - -0.3912724554538727, - 0.14179760217666626, - -0.06053011864423752, - -0.1336173117160797, - 0.11264845728874207, - 0.5574877858161926, - 0.6269810199737549, - 0.2831834554672241, - -0.1764572411775589, - 0.10152709484100342, - 0.4402831792831421, - 0.2750452160835266, - -0.26345095038414, - -10.53958797454834, - -0.24325020611286163, - -0.4370220899581909, - 0.5419100522994995, - -0.14332497119903564, - 0.03426136448979378, - 0.04662206023931503, - -0.015338003635406494, - -0.015151770785450935, - 0.07651343196630478, - -0.06670750677585602, - -0.13182608783245087, - 0.2413972020149231, - 0.37658578157424927, - -0.020042261108756065, - 0.19873683154582977, - -0.34008076786994934, - 0.1857091784477234, - 0.04247715324163437, - 0.15104743838310242, - 0.12944477796554565, - 0.23402012884616852, - -0.27233079075813293, - 0.10315030068159103, - -0.06042518839240074, - -0.4643903374671936, - -0.19956164062023163, - 0.6833988428115845, - 0.3026259243488312, - -0.49559223651885986, - 0.18144457042217255, - 0.09822139143943787, - -0.08708757907152176, - 0.1921965628862381, - -0.17693962156772614, - -0.02344360575079918, - -0.06860484182834625, - 0.19017118215560913, - 0.47005999088287354, - -0.10647406429052353, - 0.07101799547672272, - -0.17018988728523254, - 0.3171253502368927, - 0.15009671449661255, - -0.12065419554710388, - -0.5578388571739197, - -0.07680998742580414, - -1.6092629432678223, - 0.37576255202293396, - 0.19459375739097595, - 0.2655843198299408, - 0.17125600576400757, - 0.16062740981578827, - 0.320028692483902, - -0.2682441174983978, - -0.031299784779548645, - -0.37888023257255554, - -0.1387372612953186, - 0.12342213094234467, - 0.037366922944784164, - 0.021292701363563538, - -0.07971557974815369, - 0.5174992084503174, - 0.08627235889434814, - -0.2913949489593506, - -0.0070678312331438065, - 0.0806439146399498, - -0.15925346314907074, - -0.3818877935409546, - -0.7508208155632019, - -0.5077129006385803, - -0.015371579676866531, - -0.21697354316711426, - -0.10090424120426178, - 0.34639376401901245, - -0.0360957570374012, - -0.29134833812713623, - 0.29133984446525574, - 0.03507006913423538, - 0.38625314831733704, - 0.3480467200279236, - -0.016976913437247276, - 0.23984700441360474, - -0.24661046266555786, - -0.266758531332016, - -0.11940452456474304, - 0.22042125463485718, - 0.4598276913166046, - 0.022168587893247604, - -0.012605531141161919, - 0.04371859133243561, - 0.38908711075782776, - 0.020787067711353302, - -0.23353531956672668, - -0.5190649032592773, - -0.016093701124191284, - -0.10030075162649155, - 0.09077152609825134, - -0.07327613234519958, - -0.13100510835647583, - -0.21425645053386688, - 0.22100454568862915, - -0.053261373192071915, - -0.60146164894104, - -0.529291033744812, - 0.2726321518421173, - 0.07354256510734558, - 0.2038210779428482, - 0.03103623166680336, - -0.16682370007038116, - -0.2672257721424103, - 0.001944760442711413, - 0.1734459400177002, - 0.5298051834106445, - 0.23192299902439117, - 0.00561538664624095, - -0.020770259201526642, - -0.24250862002372742, - -0.2480211853981018, - -0.0642152801156044, - 0.4254811108112335, - -0.1370002031326294, - 0.2795073688030243, - 0.6639853119850159, - 0.0030143277253955603, - 0.016614986583590508, - 0.9106820225715637, - -0.41669145226478577, - 0.20060107111930847, - 0.001052684267051518, - 0.09848597645759583, - -0.09791652858257294, - -0.4289093315601349, - 0.08117537945508957, - 0.5730606317520142, - -0.33259645104408264, - 0.801346480846405, - 0.24811972677707672, - -0.3711259961128235, - -0.077213816344738, - -0.2828516662120819, - 0.44660547375679016, - 0.16936135292053223, - 0.1950913518667221, - -0.14170639216899872, - -0.2820476293563843, - -0.3287266194820404, - 0.07876759022474289, - -0.2917419672012329, - -0.33581820130348206, - -0.19273975491523743, - 0.197501540184021, - 0.20982851088047028, - -0.19229239225387573, - 0.24591705203056335, - 0.15758797526359558, - -0.1002824679017067, - -0.34775763750076294, - -0.34296268224716187, - -0.0026926216669380665, - 0.16984984278678894, - 0.9312196373939514, - -0.04375514015555382, - -0.16746827960014343, - 0.015947900712490082, - 0.06800193339586258, - -0.36041897535324097, - 0.17884646356105804, - 0.07759329676628113, - -0.04371793940663338, - -0.43101081252098083, - 0.24981124699115753, - 0.13317324221134186, - -0.3283451497554779, - -0.1267511546611786, - -0.09107645601034164, - -0.13491111993789673, - 0.10378967225551605, - -0.17422327399253845, - 0.03339078277349472, - 0.38441774249076843, - -0.12827354669570923, - 0.06830746680498123, - -0.16860397160053253, - -0.14379164576530457, - 0.2162192016839981, - 0.45242002606391907, - 0.024911366403102875, - -0.2729759216308594, - -0.2879253625869751, - -0.5447385311126709, - 0.295782208442688, - -0.47549331188201904, - -0.03999749571084976, - 0.1288137435913086, - 0.184272900223732, - -0.30362462997436523, - 0.176407128572464, - 0.02824077382683754, - -0.0005072636995464563, - -0.20781172811985016, - 0.3229638934135437, - 0.502821147441864, - -0.2654266357421875, - 0.38718515634536743, - -0.11719797551631927, - 0.20717376470565796, - 0.054223570972681046, - -0.219769686460495, - 0.08627665042877197, - -0.4457436203956604 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_068.json b/src/benchmark/output/results/results_graph_068.json deleted file mode 100644 index 6394d30..0000000 --- a/src/benchmark/output/results/results_graph_068.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is an adult male with no specified age or background information provided. However, based on the clinical data, it appears that the patient has a history of lung cancer.\n\n**Timeline of Diagnoses:**\n\n1. **September 2021:** The patient presented to The First Affiliated Hospital of Dalian Medical University with complaints of chest pain and fatigue for half a year. A CT scan revealed partial solid nodules in the posterior segment of the upper lobe of the right lung, which were later diagnosed as malignant neoplasm of bronchus and lung (C34).\n2. **Multiple small lung nodules in both lungs:** Following the initial diagnosis, the patient developed multiple small lung nodules in both lungs, accompanied by abnormal blood test results (lymphocytopenia and neutrophilia). This led to a decision to proceed with surgical resection of lung tissue.\n3. **November 2022:** The patient underwent surgical resection of lung tissue, which revealed invasive adenocarcinoma in the upper lobe of the right lung. The cancer was diagnosed as C2330808 (Adenocarcinoma, Invasive).\n4. **January 2024:** A CT examination revealed recurrent tumor shrinkage of about 7 mm * 9 mm.\n\n**Timeline of Treatments:**\n\n1. **Surgical resection of lung tissue:** The patient underwent surgical resection of lung tissue in November 2022.\n2. **No second surgical treatment:** The patient refused a second surgical treatment for the recurrence of primary cancer, which presented as ground glass nodules in the left lung.\n\n**Timeline of Outcomes:**\n\n1. **Pathological diagnosis:** The pathological diagnosis of invasive adenocarcinoma was confirmed post-surgery in November 2022.\n2. **Recurrence of primary cancer:** The patient developed recurrence of primary cancer with ground glass nodules in the left lung and new symptoms (fatigue, pale tongue, white fur, and weak pulse) in November 2022.\n3. **Recurrent tumor shrinkage:** A CT examination revealed recurrent tumor shrinkage of about 7 mm * 9 mm in January 2024.\n\n**Clinical Findings:**\n\nThroughout the patient's treatment, various clinical findings were reported, including:\n\n* Chest pain and fatigue\n* Multiple small lung nodules in both lungs\n* Abnormal blood test results (lymphocytopenia and neutrophilia)\n* Invasive adenocarcinoma in the upper lobe of the right lung\n* Ground glass nodules in the left lung\n* Recurrent tumor shrinkage\n\n**Laboratory Results:**\n\nThe patient's laboratory results showed:\n\n* Normal blood work (January 2024)\n* Elevated carcinoembryonic antigen level (November 2022)\n\n**Imaging Results:**\n\nThe patient underwent various imaging studies, including CT scans and pathology reports, which revealed:\n\n* Partial solid nodules in the posterior segment of the upper lobe of the right lung (September 2021)\n* Multiple small lung nodules in both lungs\n* Invasive adenocarcinoma in the upper lobe of the right lung\n* Ground glass nodules in the left lung\n* Recurrent tumor shrinkage\n\n**Prognosis:**\nThe patient's prognosis remains uncertain, as the cancer has recurred and treatment options are limited. Further evaluation and management are necessary to determine the best course of action.\n\n**Conclusion:**\nThis clinical case report highlights the complexities of managing lung cancer, particularly in cases where recurrence occurs. The patient's treatment plan will require careful consideration of various factors, including the patient's overall health, tumor characteristics, and available treatment options.", - "bertscore": { - "precision": [ - 0.6718395352363586 - ], - "recall": [ - 0.6553829908370972 - ], - "f1": [ - 0.66350919008255 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 7, - "edge_count": 6, - "avg_in_degree": 0.8571428571428571, - "density": 0.14285714285714285 - }, - "trajectory_embedding": [ - 0.257910817861557, - 0.11300678551197052, - -0.15380962193012238, - -0.04967570677399635, - -0.14522525668144226, - 0.06221002712845802, - 0.07804203033447266, - 0.17250725626945496, - 0.2976982593536377, - -0.48700565099716187, - -0.2710980474948883, - 0.19328932464122772, - -0.552730143070221, - -0.1464165896177292, - -0.4568333923816681, - 0.13878197968006134, - 0.02563413418829441, - 0.2673860490322113, - -0.019058991223573685, - -0.18468356132507324, - -0.4789164662361145, - 0.0781332477927208, - -0.2851276099681854, - -0.24811133742332458, - 0.20884834229946136, - -0.016835913062095642, - 0.25854167342185974, - 0.35525670647621155, - 0.21759851276874542, - 0.4681854546070099, - 0.2248246967792511, - 0.133042111992836, - -0.03714079037308693, - 0.05629848688840866, - -0.1767597198486328, - 0.43038496375083923, - 0.3032340407371521, - 0.32303494215011597, - -0.04867037013173103, - 0.06161421164870262, - 0.058320362120866776, - 0.12750902771949768, - 0.8212385177612305, - 0.41533976793289185, - 0.5168468356132507, - -0.679559588432312, - 0.07470003515481949, - 0.35858991742134094, - -0.5663052797317505, - -0.08274025470018387, - 0.07410455495119095, - 0.6897895932197571, - 0.6447339653968811, - -0.03358379378914833, - 0.40656599402427673, - -0.10406357795000076, - -0.5019628405570984, - -0.2848895490169525, - -0.3709580600261688, - 0.006552434526383877, - -0.08974719047546387, - -0.0024305772967636585, - 0.09557554870843887, - 0.03158172219991684, - -0.3938182294368744, - -0.13308726251125336, - -0.0766187384724617, - 0.1671714037656784, - 1.7858508726931177e-05, - -0.4156047999858856, - -0.3196241855621338, - -0.08988817036151886, - -0.09667807817459106, - 0.16465596854686737, - 0.08332294225692749, - -0.2664347290992737, - 0.2311166226863861, - 0.14017698168754578, - 0.15632550418376923, - 0.12526968121528625, - 0.09520483016967773, - 0.07731276750564575, - 0.07999370992183685, - 0.15698719024658203, - -0.38738980889320374, - 0.11310368031263351, - -0.122066430747509, - -0.1456766575574875, - -0.2630731761455536, - 0.2728005647659302, - 0.25551721453666687, - -0.17390330135822296, - -0.17627640068531036, - -0.08535031229257584, - 0.1371786743402481, - 0.07251978665590286, - 0.2027861624956131, - 0.4604012072086334, - 0.9338180422782898, - 0.014508937485516071, - 0.15948785841464996, - 0.13478852808475494, - 0.23506386578083038, - 0.04120669886469841, - 0.47317975759506226, - -0.10579004138708115, - 0.1435161530971527, - -0.5643869042396545, - -0.0015329867601394653, - 0.5455747246742249, - -0.0219764094799757, - -0.036088209599256516, - 0.025912806391716003, - -0.34990420937538147, - 0.04349283128976822, - 0.021924296393990517, - -0.16728831827640533, - 0.17924459278583527, - 0.13912682235240936, - -0.3372514545917511, - 0.04560248181223869, - -0.0229333508759737, - 0.3301222026348114, - 0.2795155346393585, - -0.4968406558036804, - 0.015529283322393894, - -0.18602527678012848, - 0.11655867099761963, - 0.07062103599309921, - 0.053703151643276215, - -0.4289408326148987, - -0.1267450600862503, - -0.0052694897167384624, - 0.17655329406261444, - -0.08067993819713593, - 0.37970200181007385, - -0.32298213243484497, - -0.03782970458269119, - -1.0430104732513428, - 0.17690931260585785, - -0.41261714696884155, - -0.19421198964118958, - 0.07163189351558685, - -0.309453547000885, - -0.22980134189128876, - -0.18007990717887878, - -0.14290952682495117, - 0.24436593055725098, - -0.09717380255460739, - -0.11724849790334702, - -0.1623566448688507, - 0.1656780242919922, - 0.03994229808449745, - 0.3269713222980499, - 0.11053980141878128, - 0.11616048961877823, - 0.11836142838001251, - 0.20040975511074066, - 0.102094367146492, - -0.07785135507583618, - -0.007163951639086008, - 0.2859248220920563, - -0.032562918961048126, - -0.14833112061023712, - -0.008867095224559307, - -0.6301792860031128, - 0.2578873634338379, - -0.326127290725708, - 0.3455800414085388, - 0.10990671068429947, - -0.23336918652057648, - 0.08967093378305435, - -0.17060354351997375, - 0.6361510157585144, - 0.29917603731155396, - 0.38942641019821167, - 0.1329830139875412, - -0.03214949741959572, - 0.02214880660176277, - 0.1379566341638565, - 0.1067245677113533, - 0.10406391322612762, - 0.5688046216964722, - 0.07914479076862335, - -0.2788706123828888, - 0.16789428889751434, - 0.365398645401001, - -0.1660861223936081, - -0.16790124773979187, - -0.17871248722076416, - 0.4429779648780823, - -0.2852441668510437, - 0.2592916190624237, - -0.46805912256240845, - -0.06363794952630997, - 0.027121590450406075, - -0.36002108454704285, - -0.32579126954078674, - 0.17554299533367157, - -0.14457689225673676, - 0.16129231452941895, - 0.08408020436763763, - -0.1657658964395523, - 0.1598348617553711, - 0.11962132900953293, - -0.13328878581523895, - 0.4140895903110504, - 0.016213973984122276, - 0.0763547420501709, - -0.2014019936323166, - -0.22820483148097992, - 0.2024112045764923, - -0.07958986610174179, - 0.3245660662651062, - 0.13307632505893707, - -0.19950516521930695, - 0.1922171413898468, - -0.10051142424345016, - -0.0259255301207304, - 0.202180415391922, - -0.041997142136096954, - 0.0012015923857688904, - 0.1957121193408966, - -0.01669490896165371, - -0.4792470633983612, - 0.2618766725063324, - 0.15061260759830475, - 0.17356610298156738, - 0.17918694019317627, - -0.1169610396027565, - 0.12071911245584488, - -0.21224723756313324, - 0.27193012833595276, - -0.09437282383441925, - -0.19468651711940765, - -0.2538995146751404, - 0.2276444286108017, - -0.22820214927196503, - -0.09768296778202057, - 0.40628817677497864, - -0.234662726521492, - -0.20958593487739563, - 0.17395827174186707, - -0.28271549940109253, - -0.1604999303817749, - -0.24928922951221466, - 0.07390798628330231, - 0.2517296373844147, - 0.20566269755363464, - 0.3778197467327118, - 0.18780432641506195, - -0.031177373602986336, - 0.13938194513320923, - -0.35594186186790466, - -0.06270204484462738, - -0.3875791132450104, - -0.05299249291419983, - -0.15581496059894562, - -0.43189939856529236, - -0.10690911114215851, - 0.09435353428125381, - -0.26190605759620667, - 0.2100285291671753, - -0.39513131976127625, - -0.16501006484031677, - 0.08892975747585297, - -0.1010013297200203, - 0.14383026957511902, - -0.23211108148097992, - 0.30838486552238464, - -0.25435084104537964, - -0.18839368224143982, - -0.09086290746927261, - 0.0402226559817791, - 0.32440900802612305, - 0.02355138771235943, - 0.022190028801560402, - 0.0861833468079567, - 0.10816608369350433, - -0.4298248589038849, - -0.336774617433548, - 0.13587817549705505, - -0.25500306487083435, - 0.23458942770957947, - -0.1441519558429718, - 0.1892801970243454, - 0.5324669480323792, - -0.02555871196091175, - 0.19611819088459015, - 0.3758634924888611, - 0.5762526392936707, - 0.17223426699638367, - -0.1804651916027069, - -0.05172509700059891, - 0.0014566077152267098, - -0.09912760555744171, - -0.4437260627746582, - 0.21475696563720703, - -0.10044058412313461, - 0.03050301969051361, - -0.10264978557825089, - 0.17729809880256653, - 0.014340017922222614, - -0.3781067728996277, - -0.20162799954414368, - 0.6308273673057556, - 0.22443614900112152, - 0.12554390728473663, - 0.10289487987756729, - 0.38225558400154114, - 0.5230599045753479, - -0.06768714636564255, - -0.25093701481819153, - -0.055451951920986176, - -0.1952861100435257, - -0.1934734582901001, - -0.2511402666568756, - 0.03232553228735924, - 0.21090854704380035, - -0.08662402629852295, - -0.08637242019176483, - 0.24084079265594482, - -0.11112572252750397, - -0.16587631404399872, - 0.021634820848703384, - 0.06401766091585159, - 0.1695651262998581, - -0.401689738035202, - 0.17993757128715515, - -0.1848776638507843, - -0.071177639067173, - 0.4663868248462677, - -0.14145983755588531, - -0.30292361974716187, - 0.2356678992509842, - 0.0054202997125685215, - -0.33236318826675415, - 0.3066963255405426, - -0.3104722797870636, - 0.021008459851145744, - 0.34235307574272156, - -0.16197632253170013, - -0.09682395309209824, - -0.20880649983882904, - 0.09334950894117355, - 0.09295223653316498, - -0.01833457686007023, - -0.10675712674856186, - 0.10031618177890778, - 0.18376269936561584, - 0.6338824033737183, - 0.14719250798225403, - -0.061250608414411545, - 0.3609916865825653, - -0.08907049149274826, - -0.23203401267528534, - -0.028914181515574455, - 0.015907661989331245, - 0.18478600680828094, - -0.1589738428592682, - -0.3454917371273041, - -0.20965316891670227, - 0.2043069303035736, - 0.08620325475931168, - -0.36280354857444763, - -0.0058339363895356655, - 0.14572790265083313, - 0.0383317731320858, - 0.037166450172662735, - 0.27156952023506165, - 0.4179667830467224, - 0.010855287313461304, - 0.5978474617004395, - 0.10450074821710587, - 0.04088432341814041, - 0.3417457938194275, - -0.07894221693277359, - 0.2239762246608734, - -0.16890788078308105, - -0.35792964696884155, - -0.4607165455818176, - 0.008754143491387367, - -0.18909214437007904, - -0.19390001893043518, - 0.05790316313505173, - -0.002972081769257784, - 0.05440378561615944, - -0.17599141597747803, - 0.19892607629299164, - -0.07598540931940079, - 0.08387656509876251, - 0.08871302753686905, - 0.4303794205188751, - -0.12228763848543167, - -0.23714081943035126, - 0.30283620953559875, - -0.016660790890455246, - 0.24756070971488953, - -0.09654510021209717, - -0.193336620926857, - -0.17527355253696442, - 0.3275286853313446, - -0.06291978806257248, - -0.034940946847200394, - -0.032658882439136505, - -0.060590360313653946, - -0.2374279499053955, - -0.2899346649646759, - -0.040939442813396454, - -0.18875372409820557, - -0.18698661029338837, - -0.1081521064043045, - 0.12437715381383896, - -0.2138088047504425, - -0.2943722903728485, - -0.0444556288421154, - 0.1590350866317749, - 0.25248897075653076, - -0.14792773127555847, - 0.10739093273878098, - 0.23395469784736633, - 0.034710485488176346, - 0.3290145993232727, - -0.1953204721212387, - 0.10524509847164154, - -0.04479096457362175, - -0.25737708806991577, - -0.16353082656860352, - 0.10642571747303009, - -0.2869308888912201, - -0.10941682755947113, - 0.12703506648540497, - 0.23196367919445038, - 0.023255154490470886, - 0.03595578670501709, - -0.0015696244081482291, - 0.16496476531028748, - -0.37702757120132446, - -0.1228712946176529, - 0.25661811232566833, - -0.015411469154059887, - 0.46193763613700867, - 0.04135467857122421, - -0.26964786648750305, - -0.09547962993383408, - -0.17507517337799072, - -0.3632226288318634, - 0.192514106631279, - 0.10959605127573013, - 0.021600497886538506, - -0.05275629088282585, - 0.08311472088098526, - 0.047228723764419556, - -0.006591098848730326, - 0.335419625043869, - 0.015506991185247898, - 0.16610033810138702, - -0.04257791116833687, - -0.31140097975730896, - -0.11086351424455643, - -0.3570387363433838, - -0.1267203390598297, - -0.3058464825153351, - 0.4352256953716278, - 0.21142961084842682, - -0.20587600767612457, - 0.01921088993549347, - 0.22315014898777008, - -0.3580777049064636, - -0.21406105160713196, - -0.018174588680267334, - -0.07430107146501541, - 0.6013728976249695, - 0.11590957641601562, - -0.230387344956398, - 0.17042455077171326, - -0.26303163170814514, - 0.23465704917907715, - 0.1601210981607437, - 0.15655794739723206, - 0.3975866436958313, - 0.2466340959072113, - 0.030884066596627235, - 0.5256264209747314, - 0.14188574254512787, - -0.0005735818995162845, - 0.24675491452217102, - -0.0668097659945488, - 0.03410813957452774, - -0.11404989659786224, - -0.1723935306072235, - 0.4611855149269104, - -0.19366027414798737, - 0.1929199993610382, - 0.21703235805034637, - 0.24089619517326355, - -0.3656768202781677, - -0.32505765557289124, - -0.013640071265399456, - -0.12561489641666412, - -0.14239375293254852, - -0.28019729256629944, - -0.17725086212158203, - 0.09302232414484024, - -0.3797146677970886, - -0.011877929791808128, - 0.33361148834228516, - 0.26836803555488586, - 0.1832355409860611, - 0.14867854118347168, - -0.2718643248081207, - -0.549046516418457, - 0.03244709596037865, - 0.3028177320957184, - 0.04109968990087509, - -0.05554979667067528, - -0.1559552252292633, - 0.22826732695102692, - 0.5046679377555847, - -0.058798205107450485, - -0.035188425332307816, - 0.017042379826307297, - -0.04334796592593193, - -0.096144899725914, - 0.11144337803125381, - -0.13208167254924774, - -0.11256126314401627, - -0.2553696036338806, - 0.17507793009281158, - -0.27199405431747437, - -0.35706278681755066, - 0.0870698019862175, - -0.13155190646648407, - -0.28870344161987305, - -0.17460618913173676, - 0.24993896484375, - -0.1518329530954361, - -0.05495179817080498, - 0.20044134557247162, - 0.5630549788475037, - 0.23897819221019745, - -0.19199791550636292, - 0.1335974782705307, - -0.4680521488189697, - -0.09780969470739365, - 0.21133430302143097, - -0.18471264839172363, - 0.035050928592681885, - 0.06235470995306969, - 0.39093461632728577, - 0.3089151978492737, - 0.13247427344322205, - -0.443920761346817, - -0.031239641830325127, - 0.19824740290641785, - 0.282096803188324, - -0.227371484041214, - -10.921643257141113, - -0.03881015256047249, - -0.11955142021179199, - 0.44315019249916077, - -0.17297972738742828, - 0.1154191642999649, - 0.16336701810359955, - -0.04355164244771004, - 0.1938946545124054, - 0.15325133502483368, - -0.32515648007392883, - 0.05140870064496994, - 0.21076002717018127, - 0.14866122603416443, - 0.04258067533373833, - -0.1140730008482933, - -0.2215823382139206, - 0.11299649626016617, - 0.049213673919439316, - 0.17940069735050201, - 0.3351728916168213, - 0.3969946503639221, - -0.15206965804100037, - 0.4012179970741272, - 0.3075217306613922, - -0.3096199333667755, - -0.21893838047981262, - 0.46285662055015564, - 0.05433392897248268, - -0.40873971581459045, - 0.20000895857810974, - 0.17597278952598572, - -0.18395327031612396, - -0.0980963185429573, - -0.03955435752868652, - -0.1916564553976059, - -0.1056063324213028, - 0.03228755295276642, - 0.09082381427288055, - -0.23321597278118134, - 0.045616038143634796, - -0.239066943526268, - 0.07958667725324631, - 0.3520508110523224, - -0.05643850564956665, - -0.43123215436935425, - -0.30093154311180115, - -1.4472496509552002, - 0.31958451867103577, - 0.24062666296958923, - 0.47002777457237244, - 0.07725192606449127, - 0.25205814838409424, - 0.09040461480617523, - -0.4781024754047394, - 0.07967328280210495, - -0.0885622426867485, - 0.0735144093632698, - 0.10490528494119644, - -0.10102032124996185, - 0.13732607662677765, - -0.16178952157497406, - 0.4973938465118408, - -0.22768403589725494, - -0.21819543838500977, - 0.1483512818813324, - -0.14249287545681, - -0.013923419639468193, - -0.004140827339142561, - -0.29926005005836487, - -0.5383898019790649, - -0.18086722493171692, - -0.06241372972726822, - 0.06002248078584671, - 0.3923259675502777, - -0.09438575059175491, - -0.4361092746257782, - 0.1807328462600708, - 0.0064940121956169605, - 0.3181244432926178, - 0.09866649657487869, - 0.02553069218993187, - 0.17628821730613708, - -0.11486543715000153, - -0.16882114112377167, - -0.2226882129907608, - -0.015100106596946716, - 0.39919859170913696, - 0.005192925687879324, - 0.026073921471834183, - -0.12851813435554504, - 0.2884746491909027, - -0.009317421354353428, - -0.33114033937454224, - -0.48016563057899475, - 0.06349640339612961, - -0.014390530064702034, - 0.0702880322933197, - 0.07262090593576431, - -0.11045648157596588, - -0.027649031952023506, - -0.1769273430109024, - 0.056880079209804535, - -0.489705353975296, - -0.2054206281900406, - 0.31949034333229065, - 0.1423395574092865, - 0.19040080904960632, - 0.2038942128419876, - 0.035608045756816864, - -0.034638501703739166, - -0.10403968393802643, - 0.28506919741630554, - 0.5592585802078247, - 0.030886664986610413, - -0.13787482678890228, - -0.16464214026927948, - -0.017582980915904045, - -0.4104207158088684, - 0.15400509536266327, - 0.38337764143943787, - -0.09984564781188965, - 0.4529314637184143, - 0.4032384753227234, - -0.04598564654588699, - -0.08253119140863419, - 0.9451876878738403, - -0.24790246784687042, - 0.17935578525066376, - -0.2555616796016693, - 0.27246150374412537, - -0.1169796958565712, - -0.299321711063385, - 0.005042029079049826, - 0.4223065674304962, - -0.320008248090744, - 0.6217605471611023, - 0.0398024246096611, - -0.46446695923805237, - 0.06261195987462997, - -0.10402078181505203, - 0.47655174136161804, - 0.3902003765106201, - 0.21526029706001282, - -0.10089581459760666, - -0.3213474154472351, - -0.25325459241867065, - 0.05054272338747978, - -0.30911463499069214, - -0.35181012749671936, - -0.10106396675109863, - 0.022647807374596596, - 0.022388502955436707, - -0.3158870041370392, - 0.38259002566337585, - 0.1236480325460434, - -0.19847598671913147, - -0.0909845381975174, - -0.5730968713760376, - -0.039837006479501724, - 0.35183098912239075, - 0.7271355390548706, - -0.025470752269029617, - -0.005656791385263205, - -0.1562054604291916, - 0.017243729904294014, - -0.043475788086652756, - 0.2513992488384247, - 0.02429349534213543, - -0.026223108172416687, - -0.5405780673027039, - 0.16676625609397888, - 0.04218953475356102, - -0.28371351957321167, - -0.1204003319144249, - -0.3467075526714325, - 0.09304962307214737, - -0.015151949599385262, - -0.12499912083148956, - 0.28778377175331116, - 0.36443331837654114, - -0.038726307451725006, - -0.02391372248530388, - -0.10095508396625519, - 0.23879598081111908, - 0.22273504734039307, - 0.2852991819381714, - 0.10914801061153412, - -0.09601807594299316, - -0.5023117661476135, - -0.4190657436847687, - 0.29546263813972473, - -0.22277162969112396, - -0.15266098082065582, - 0.1191401332616806, - 0.14395330846309662, - -0.335524320602417, - -0.03250269964337349, - -0.2945737838745117, - 0.07886723428964615, - -0.19570288062095642, - 0.0793914720416069, - 0.37023988366127014, - -0.17387816309928894, - 0.08216991275548935, - -0.2517470717430115, - 0.3181871473789215, - 0.022438665851950645, - -0.3121962249279022, - 0.2183285504579544, - -0.29422396421432495 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_069.json b/src/benchmark/output/results/results_graph_069.json deleted file mode 100644 index cdf1ad7..0000000 --- a/src/benchmark/output/results/results_graph_069.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 67-year-old man with a significant smoking history, having smoked 30 cigarettes per day for 50 years. He presented to the clinic with a persistent dry cough that had lasted for more than three months.\n\n**Timeline of Diagnoses and Treatments:**\n\n1. **July 2019:** The patient was diagnosed with a mass in the central left upper lobe, enlarged bilateral mediastinal lymph nodes, and bilateral pulmonary nodules on contrast-enhanced chest CT (Step 2). Biopsy of the lesion under tracheoscopy confirmed lung adenocarcinoma histologically (Step 3).\n2. **July-September 2019:** The patient underwent whole-body scanning, which revealed macroscopic metastases in the bone. He was clinically classified as stage IVB (T4N0M1c) Non-Small Cell Lung Carcinoma (NSCLC). Zoledronic acid was administered to control bone destruction (Step 4).\n3. **September-October 2019:** The patient underwent tissue biopsy, which detected an acquired T790M mutation in exon 20 (c.2369C>T, frequency as 61.9%) via droplet digital polymerase chain reaction (ddPCR) (Step 7).\n4. **October-November 2019:** Due to the detection of the T790M mutation, the patient was switched to osimertinib 80mg once daily, achieving stable disease with shrinkage of hepatic lesions (Step 8).\n\n**Outcomes:**\n\n1. The patient experienced a rapid clinical benefit lasting 11 months after starting treatment with gefitinib (250 mg once daily) in response to the detection of EGFR exon 19 deletion (Step 6).\n2. After 11 months on gefitinib, tissue biopsy was performed to investigate resistance mechanisms, detecting an acquired T790M mutation in exon 20 (c.2369C>T, frequency as 61.9%) via droplet digital polymerase chain reaction (ddPCR) (Step 7).\n\n**Conclusion:**\nThe patient's clinical course highlights the importance of molecular testing and targeted therapy in the management of NSCLC. The detection of EGFR exon 19 deletion led to treatment with gefitinib, resulting in a rapid clinical benefit. However, the subsequent development of T790M mutation necessitated a switch to osimertinib, achieving stable disease with shrinkage of hepatic lesions.\n\n**Recommendations:**\n\n1. Regular molecular testing for EGFR mutations and T790M status should be performed in patients with NSCLC.\n2. Targeted therapy with gefitinib or osimertinib should be considered based on molecular test results.\n3. Close monitoring of disease progression and response to treatment is essential in managing NSCLC.\n\n**Limitations:**\n\n1. The patient's clinical course was limited by the availability of targeted therapies at the time of diagnosis.\n2. Further research is needed to explore the optimal timing and sequence of molecular testing and targeted therapy in NSCLC.\n\nThis case highlights the importance of personalized medicine in the management of NSCLC, emphasizing the need for regular molecular testing and targeted therapy based on test results.", - "bertscore": { - "precision": [ - 0.7394998073577881 - ], - "recall": [ - 0.7590272426605225 - ], - "f1": [ - 0.7491363286972046 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 8, - "edge_count": 7, - "avg_in_degree": 0.875, - "density": 0.125 - }, - "trajectory_embedding": [ - 0.25666746497154236, - 0.09836211800575256, - -0.10564713180065155, - 0.11217941343784332, - 0.015587031841278076, - 0.07877800613641739, - -0.006527600809931755, - 0.30493852496147156, - 0.5536767244338989, - -0.33620452880859375, - -0.018288739025592804, - -0.09518112242221832, - -0.5867060422897339, - -0.1109105795621872, - -0.2592107355594635, - 0.24846264719963074, - -0.07007073611021042, - 0.40585020184516907, - -0.035121072083711624, - -0.17632266879081726, - -0.41150736808776855, - 0.12900085747241974, - -0.5179646611213684, - 0.011795973405241966, - 0.2825905680656433, - -0.00016220123507082462, - 0.34252843260765076, - 0.4280332922935486, - 0.22219640016555786, - 0.3613862991333008, - 0.07800126075744629, - -0.2447209656238556, - 0.19326499104499817, - 0.07914368063211441, - -0.29915452003479004, - 0.09507599472999573, - 0.22362208366394043, - 0.46399396657943726, - -0.18116922676563263, - -0.007514392025768757, - -0.12442851066589355, - 0.07210458815097809, - 0.934358537197113, - 0.10561495274305344, - 0.3901500999927521, - -0.6726486086845398, - -0.08380874991416931, - 0.5911934971809387, - -0.5257490873336792, - -0.29130375385284424, - 0.1044064536690712, - 0.8028460741043091, - 0.5484437942504883, - -0.24162191152572632, - 0.4524662494659424, - -0.18043237924575806, - -0.29025259613990784, - -0.22971883416175842, - -0.14949378371238708, - 0.05125546455383301, - 0.07477600127458572, - -0.35419896245002747, - 0.41701623797416687, - -0.17004019021987915, - -0.21359305083751678, - -0.1945311725139618, - -0.3463388979434967, - 0.09063318371772766, - -0.0030839145183563232, - -0.3870120048522949, - -0.09583520144224167, - -0.1283489465713501, - -0.2513892948627472, - 0.1604527235031128, - 0.18581846356391907, - -0.11709420382976532, - 0.33531466126441956, - -0.03188348188996315, - 0.19029131531715393, - 0.2550313174724579, - -0.0822543129324913, - -0.15219824016094208, - -0.09043455123901367, - 0.3333173990249634, - -0.3944036662578583, - 0.042653217911720276, - -0.018155138939619064, - -0.35361000895500183, - -0.49409446120262146, - 0.18242305517196655, - 0.2514861524105072, - -0.3646293580532074, - 0.02510599046945572, - -0.16440901160240173, - -0.04039209336042404, - 0.25337204337120056, - 0.6405584812164307, - 0.2825964093208313, - 0.8349196910858154, - 0.053331635892391205, - 0.23610857129096985, - 0.05057676136493683, - 0.18641595542430878, - 0.11548621207475662, - 0.3753573000431061, - -0.06961709260940552, - 0.21650367975234985, - -0.4167139530181885, - 0.3236599862575531, - 0.4980228543281555, - 0.08730289340019226, - -0.23056495189666748, - 0.027384035289287567, - -0.18483182787895203, - 0.26607802510261536, - 0.1577218770980835, - -0.0730682760477066, - 0.2394803911447525, - 0.40272998809814453, - -0.5341137647628784, - -0.1731872856616974, - -0.041732899844646454, - 0.37931421399116516, - 0.3169870972633362, - -0.4419413208961487, - -0.11098247021436691, - -0.06337802112102509, - -0.08721653372049332, - 0.03974949195981026, - 0.017354171723127365, - -0.5232160091400146, - -0.21202696859836578, - -0.12197725474834442, - -0.009444866329431534, - -0.18841594457626343, - 0.20541569590568542, - -0.3392311930656433, - -0.006989772897213697, - -1.1055917739868164, - 0.21539819240570068, - -0.38327109813690186, - -0.12076538801193237, - -0.03378903865814209, - -0.45007824897766113, - -0.2675973176956177, - -0.2437313348054886, - -0.18390080332756042, - 0.2096915990114212, - -0.12327835708856583, - -0.09460892528295517, - 0.1252395212650299, - 0.040386710315942764, - 0.20688828825950623, - 0.6405147910118103, - 0.04969670996069908, - 0.04438483715057373, - 0.04089076817035675, - 0.23667104542255402, - 0.09772547334432602, - -0.10673050582408905, - 0.009607091546058655, - 0.5492638349533081, - 0.24171483516693115, - -0.001349408645182848, - -0.02168954536318779, - -0.6605674624443054, - 0.03441593050956726, - -0.11884206533432007, - 0.1436830461025238, - -0.010533898137509823, - -0.16988228261470795, - 0.0326748862862587, - -0.30332010984420776, - 0.640763521194458, - -0.06947337090969086, - 0.377486914396286, - 0.03378318250179291, - -0.06391999125480652, - 0.10308650135993958, - 0.2027653604745865, - 0.14286676049232483, - -0.2090056836605072, - 0.7181804180145264, - 0.2938482165336609, - -0.3369445502758026, - 0.10026802122592926, - 0.2669830620288849, - 0.004845362156629562, - -0.22821567952632904, - 0.0394570454955101, - 0.4800572097301483, - -0.34305521845817566, - 0.5293163657188416, - -0.41192543506622314, - 0.07043854892253876, - 0.20112955570220947, - -0.15012454986572266, - -0.028599578887224197, - -0.023524366319179535, - -0.15297278761863708, - 0.25060245394706726, - 0.08758500218391418, - -0.36206623911857605, - 0.09267867356538773, - 0.1335269808769226, - -0.15156210958957672, - 0.2387210875749588, - -0.09116030484437943, - 0.06634648144245148, - 0.030832534655928612, - -0.03730488196015358, - 0.23086045682430267, - -0.0797153189778328, - 0.18242359161376953, - -0.014068938791751862, - -0.40358978509902954, - 0.20286288857460022, - -0.07431277632713318, - -0.14920426905155182, - 0.08184167742729187, - -0.06755200773477554, - -0.3457333445549011, - -0.1492878794670105, - 0.05128539726138115, - -0.5932213664054871, - 0.18393123149871826, - 0.0824032723903656, - 0.24191436171531677, - 0.2795810103416443, - -0.011457322165369987, - -0.04560541361570358, - -0.36321258544921875, - 0.3616323471069336, - -0.06459646672010422, - -0.05504806712269783, - -0.3412683606147766, - 0.3263639211654663, - -0.18049117922782898, - 0.12835970520973206, - 0.32410502433776855, - 0.04115778207778931, - -0.10247916728258133, - 0.21699130535125732, - -0.32951346039772034, - -0.07888811081647873, - -0.3947087824344635, - -0.08454478532075882, - 0.34643369913101196, - 0.07439595460891724, - 0.31764206290245056, - 0.09817415475845337, - -0.21077699959278107, - 0.15804523229599, - -0.18754459917545319, - -0.43145880103111267, - -0.4026658535003662, - -0.14664074778556824, - -0.18226730823516846, - -0.6329051852226257, - 0.1640111804008484, - 0.050134576857089996, - -0.06383318454027176, - 0.16606715321540833, - -0.31898292899131775, - -0.051457252353429794, - 0.08045471459627151, - 0.05186709016561508, - 0.08801534026861191, - -0.2857780456542969, - 0.0887056291103363, - -0.2129225730895996, - -0.2659778296947479, - -0.10775581002235413, - -0.033920768648386, - 0.08397144824266434, - 0.044675201177597046, - -0.25342482328414917, - -0.010279938578605652, - 0.12222690880298615, - -0.2919011116027832, - -0.09838028252124786, - 0.18340519070625305, - -0.15575754642486572, - 0.18318885564804077, - 0.0067793577909469604, - 0.28727737069129944, - 0.25091224908828735, - 0.10195071250200272, - 0.13100571930408478, - 0.3899761736392975, - 0.49315428733825684, - -0.07927301526069641, - 0.025261692702770233, - -0.10839638859033585, - -0.0816258117556572, - -0.030743882060050964, - -0.33818185329437256, - 0.3746686577796936, - 0.04611862450838089, - -0.017529593780636787, - 0.025740139186382294, - 0.31984949111938477, - 0.14884240925312042, - -0.29760751128196716, - 0.05642168968915939, - 0.5311634540557861, - 0.0994412750005722, - 0.19660961627960205, - 0.1454971730709076, - 0.2518691420555115, - 0.3074530363082886, - -0.13429395854473114, - 0.1153658777475357, - 0.2333822101354599, - -0.12232224643230438, - -0.18372851610183716, - -0.0720856711268425, - 0.13661940395832062, - 0.42326945066452026, - -0.11844570934772491, - -0.18767580389976501, - 0.03744101896882057, - -0.12768149375915527, - -0.0298610907047987, - -0.2751069664955139, - -0.22378407418727875, - 0.10570341348648071, - -0.2272801548242569, - 0.41350069642066956, - 0.046144403517246246, - 0.03656047582626343, - 0.4484408497810364, - -0.4249313473701477, - -0.20341786742210388, - 0.19298073649406433, - -0.20763367414474487, - -0.4511153995990753, - 0.39717018604278564, - -0.21834659576416016, - -0.017930038273334503, - 0.4075450599193573, - -0.42279547452926636, - -0.033417850732803345, - -0.006711484864354134, - 0.3404155373573303, - -0.11087452620267868, - -0.0027406886219978333, - -0.059695057570934296, - 0.12452209740877151, - 0.1565469354391098, - 0.583995521068573, - 0.19145068526268005, - 0.2966713607311249, - 0.682086169719696, - 0.10559949278831482, - -0.35648390650749207, - 0.07549180835485458, - -0.09466895461082458, - 0.40385594964027405, - -0.18018187582492828, - -0.16928385198116302, - -0.22170531749725342, - 0.019481703639030457, - -0.00995594635605812, - -0.3576612174510956, - 0.06909862905740738, - 0.19293169677257538, - 0.09793014824390411, - -0.03551984205842018, - 0.3290531039237976, - 0.1922406107187271, - -0.06429126858711243, - 0.44014090299606323, - 0.043542567640542984, - -0.10600118339061737, - 0.30084165930747986, - -0.22587302327156067, - 0.1712511032819748, - 0.036774687469005585, - -0.159850612282753, - -0.34072425961494446, - 0.1383986473083496, - -0.2547699511051178, - -0.15231941640377045, - -0.030812354758381844, - -0.20281964540481567, - 0.042921412736177444, - -0.31337788701057434, - 0.09639241546392441, - -0.022920481860637665, - 0.19006317853927612, - 0.15015213191509247, - 0.33820581436157227, - 0.052548620849847794, - -0.22459056973457336, - 0.3048524856567383, - 0.04193713515996933, - -0.018307477235794067, - -0.2143227905035019, - 0.016221703961491585, - -0.11753380298614502, - 0.7342591285705566, - 0.10019055008888245, - 0.06097016483545303, - 0.018677005544304848, - -0.01033921167254448, - -0.12460128962993622, - -0.4061761200428009, - -0.06788623332977295, - -0.10716073215007782, - 0.1844807267189026, - 0.13965795934200287, - -0.020252803340554237, - -0.4010528326034546, - -0.12914541363716125, - -0.06211543455719948, - -0.023204544559121132, - 0.0714690089225769, - -0.18026070296764374, - -0.17783468961715698, - 0.25477340817451477, - 0.1980656534433365, - 0.4922015964984894, - -0.505878746509552, - 0.1366254836320877, - 0.09200766682624817, - -0.36253616213798523, - -0.03907886520028114, - -0.11656356602907181, - -0.36645838618278503, - -0.08961674571037292, - 0.21734029054641724, - 0.21677625179290771, - -0.0009335018694400787, - -0.0403369665145874, - 0.16244661808013916, - 0.2696321904659271, - -0.42910662293434143, - -0.09376411885023117, - 0.3015987277030945, - 0.12665431201457977, - 0.395073264837265, - 0.09692437946796417, - -0.5088995695114136, - -0.16167086362838745, - -0.18511955440044403, - -0.45006123185157776, - -0.00400446355342865, - 0.32954469323158264, - -0.048425666987895966, - -0.08821266144514084, - -0.0033811014145612717, - 0.036058783531188965, - -0.06416185945272446, - 0.25571030378341675, - -0.12525710463523865, - 0.22573985159397125, - -0.03233420103788376, - -0.20570218563079834, - -0.12262456119060516, - -0.20368114113807678, - -0.35417628288269043, - -0.25642091035842896, - 0.21898102760314941, - 0.31150150299072266, - -0.3409660756587982, - 0.04296618327498436, - 0.012179923243820667, - -0.16421425342559814, - -0.14551402628421783, - -0.009469850920140743, - -0.3570883274078369, - 0.3245953917503357, - -0.14418059587478638, - -0.21235565841197968, - 0.026580292731523514, - -0.16160055994987488, - 0.06273306161165237, - 0.0674327164888382, - 0.05402405187487602, - 0.4008018374443054, - 0.11610833555459976, - 0.018250875174999237, - 0.621117353439331, - 0.029201889410614967, - 0.12359878420829773, - 0.26489773392677307, - 0.03465788811445236, - -0.021458175033330917, - -0.16944482922554016, - -0.0978836715221405, - 0.2692405879497528, - -0.317363977432251, - -0.08677121251821518, - 0.17694926261901855, - 0.20305095613002777, - -0.4414465129375458, - -0.315221905708313, - 0.062397900968790054, - -0.029627026990056038, - -0.11430064588785172, - -0.20136934518814087, - -0.2924620807170868, - -0.06921135634183884, - -0.29818642139434814, - -0.11660957336425781, - 0.31896135210990906, - 0.5837572813034058, - 0.16474467515945435, - 0.24154958128929138, - -0.26881614327430725, - -0.2994037866592407, - 0.20282429456710815, - 0.19028927385807037, - 0.12397941201925278, - 0.08452485501766205, - -0.24504870176315308, - 0.30071932077407837, - 0.44657644629478455, - -0.10751473903656006, - 0.07248286157846451, - 0.06704111397266388, - 0.04767543449997902, - 0.1292532980442047, - 0.07252524048089981, - -0.2346123307943344, - -0.05968847870826721, - -0.4427047669887543, - 0.14516319334506989, - -0.2968674302101135, - -0.13700878620147705, - 0.1596498191356659, - -0.05213196575641632, - -0.5064513683319092, - -0.2503249943256378, - 0.2584705352783203, - -0.21903470158576965, - -0.2469715178012848, - 0.3465113341808319, - 0.37456387281417847, - -0.017981842160224915, - -0.31929922103881836, - 0.005608430132269859, - -0.5615453720092773, - -0.3400079309940338, - 0.15573377907276154, - -0.1490129977464676, - -0.19149033725261688, - 0.046852122992277145, - 0.3527134656906128, - 0.5191280245780945, - 0.27859199047088623, - -0.07715807110071182, - 0.1862334907054901, - 0.4373195469379425, - 0.23818320035934448, - -0.1671731323003769, - -10.671300888061523, - -0.16085131466388702, - -0.3527109920978546, - 0.5222480297088623, - -0.1905766725540161, - 0.052273839712142944, - 0.09883707761764526, - -0.06563977152109146, - 0.057327765971422195, - 0.11146701872348785, - -0.21209898591041565, - -0.05851806700229645, - 0.3832474946975708, - 0.3569848835468292, - 0.08526182174682617, - 0.03134160488843918, - -0.38918259739875793, - 0.20344680547714233, - -0.009908504784107208, - 0.17736244201660156, - 0.18095320463180542, - 0.36517053842544556, - -0.329647421836853, - 0.19775936007499695, - -0.06888578832149506, - -0.43765559792518616, - -0.27472400665283203, - 0.7292103171348572, - 0.3435141146183014, - -0.35067427158355713, - 0.2577577829360962, - 0.16584846377372742, - -0.07950234413146973, - 0.2136671394109726, - -0.15160438418388367, - -0.024166133254766464, - -0.08196989446878433, - 0.10629440099000931, - 0.2703576982021332, - -0.09050708264112473, - -0.020090151578187943, - -0.16557104885578156, - 0.38666099309921265, - 0.1663493663072586, - -0.13936802744865417, - -0.5812921524047852, - -0.14124681055545807, - -1.6571545600891113, - 0.2949896454811096, - 0.23343142867088318, - 0.31535834074020386, - -0.0014957450330257416, - 0.21099869906902313, - 0.2615029811859131, - -0.42352965474128723, - -0.1343311369419098, - -0.31063422560691833, - -0.05367868393659592, - 0.10456769168376923, - 0.048608094453811646, - 0.08472727239131927, - -0.029528450220823288, - 0.5252254605293274, - 0.0715777650475502, - -0.24401605129241943, - 0.05202998220920563, - 0.12594753503799438, - -0.2505672574043274, - -0.29577749967575073, - -0.7286742925643921, - -0.569593608379364, - 0.10052652657032013, - -0.16005727648735046, - -0.06095202639698982, - 0.420904278755188, - -0.09311717003583908, - -0.2753746211528778, - 0.18907378613948822, - 0.13708391785621643, - 0.33056166768074036, - 0.3137446939945221, - -0.01773213967680931, - 0.19031891226768494, - -0.25361570715904236, - -0.2605799436569214, - -0.15459437668323517, - 0.10893630981445312, - 0.5415650010108948, - 0.02603469416499138, - -0.02515205182135105, - -0.026172420009970665, - 0.4368271231651306, - 0.04866420477628708, - -0.1560000777244568, - -0.4696718752384186, - 0.02098233252763748, - -0.07415862381458282, - 0.11432771384716034, - -0.08622188866138458, - -0.1000296026468277, - -0.1716911494731903, - 0.038574010133743286, - -0.03483861684799194, - -0.5616407990455627, - -0.5548403859138489, - 0.23178496956825256, - 0.047906313091516495, - 0.16707739233970642, - -0.0756557360291481, - -0.15162193775177002, - -0.30099406838417053, - 0.019038036465644836, - 0.2653662860393524, - 0.5421844720840454, - 0.25984328985214233, - -0.048513490706682205, - 0.06438425183296204, - -0.2756190001964569, - -0.18491627275943756, - -0.03770400583744049, - 0.3633764386177063, - -0.15793238580226898, - 0.2725774943828583, - 0.6454645991325378, - 0.006664185784757137, - -0.05192241445183754, - 0.8732181787490845, - -0.31832653284072876, - 0.20779645442962646, - -0.14652594923973083, - 0.13894358277320862, - -0.009172346442937851, - -0.39835768938064575, - 0.09639112651348114, - 0.45227691531181335, - -0.26172131299972534, - 0.8121075630187988, - 0.2704976201057434, - -0.3790532052516937, - -0.02944677323102951, - -0.30447208881378174, - 0.4518047869205475, - 0.2453765571117401, - 0.238155335187912, - -0.12558923661708832, - -0.29473307728767395, - -0.4124121069908142, - 0.25407177209854126, - -0.36685800552368164, - -0.46930864453315735, - -0.15156909823417664, - 0.26486292481422424, - 0.15625834465026855, - -0.1362447887659073, - 0.3022874593734741, - 0.24081048369407654, - -0.1505184918642044, - -0.31114035844802856, - -0.3496468961238861, - -0.06350313872098923, - 0.2260129749774933, - 0.8786884546279907, - -0.020772546529769897, - -0.10452791303396225, - -0.009844676591455936, - 0.06732234358787537, - -0.1979723572731018, - 0.11052621901035309, - 0.12381531298160553, - -0.14624632894992828, - -0.49884873628616333, - 0.2957819998264313, - 0.2346268892288208, - -0.3053198456764221, - -0.020453380420804024, - -0.08236579596996307, - -0.14079026877880096, - 0.06781109422445297, - -0.31418806314468384, - 0.07816377282142639, - 0.2698047161102295, - -0.1276203989982605, - 0.10266298800706863, - -0.31398600339889526, - -0.15008530020713806, - 0.20494110882282257, - 0.37378621101379395, - 0.056014157831668854, - -0.23630234599113464, - -0.289334774017334, - -0.5381220579147339, - 0.22854255139827728, - -0.387206494808197, - -0.07254603505134583, - 0.19826030731201172, - 0.22601494193077087, - -0.20607522130012512, - 0.11965243518352509, - -0.05140595883131027, - -0.0036779576912522316, - -0.2800808548927307, - 0.41920292377471924, - 0.39557746052742004, - -0.17992065846920013, - 0.33541178703308105, - -0.06209132447838783, - 0.18823902308940887, - 0.14005045592784882, - -0.22118143737316132, - 0.15195871889591217, - -0.39623144268989563 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_070.json b/src/benchmark/output/results/results_graph_070.json deleted file mode 100644 index a343437..0000000 --- a/src/benchmark/output/results/results_graph_070.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Patient Demographics**\n\nThe patient is a 35-year-old female who was diagnosed with breast cancer. Unfortunately, the demographic information provided does not include her name, address, or any other identifying details.\n\n**Timeline of Diagnoses**\n\nThe patient's journey began in [month/year] when she developed memory problems following a COVID-19 infection. Two days later, she underwent lumpectomy due to the worsening symptoms. The pathology report revealed infiltrative breast carcinoma of mixed type (80% non-specific, 20% lobular), histoprognostic grade I (2-2-1), and histological tumor size of 30 mm along the long axis.\n\n**Timeline of Treatments**\n\nFollowing the lumpectomy, the patient was diagnosed with anti-LGI1 limbic encephalitis associated with early-stage breast cancer. MRI, EEG, and positive anti-LGI1 antibodies supported this diagnosis. As a result, she underwent PET scans to further investigate the breast cancer diagnosis.\n\nThe PET scan identified a moderately hypermetabolic lesion in the right breast, leading to resection of the breast tumor with immunohistopathological analysis. The pathological stage was determined as pT2 N0 (sn) G1 R. Following resection, immunosuppressive treatment was started within 24 hours of admission.\n\n**Timeline of Outcomes**\n\nThe patient's condition improved gradually over time. She recovered from the initial symptoms and no longer experienced headaches or focal epileptic seizures since hospitalization. However, partial retrograde and anterograde amnesia persisted during the initial week, followed by a slow and steady improvement.\n\nAfter 12 months of recovery, the patient returned to work with 80% of her previous productivity. Neuropsychological evaluations at baseline showed impairment in verbal episodic memory (Free and Cued Selective Reminding Test) and visual episodic memory (recall of the Rey-Osterrieth complex figure). However, after six months of treatment, objective cognitive improvement was observed.\n\n**Current Status**\n\nThe patient's current status is one of ongoing management and monitoring. She continues to receive immunosuppressive treatment to manage her anti-LGI1 limbic encephalitis. Regular follow-up appointments with her healthcare team are necessary to monitor her condition and adjust treatment as needed.\n\nDespite the challenges she has faced, the patient has demonstrated remarkable resilience and determination in her pursuit of recovery. Her progress is a testament to the importance of comprehensive care and ongoing support for individuals with complex medical conditions.", - "bertscore": { - "precision": [ - 0.5682033896446228 - ], - "recall": [ - 0.5968579053878784 - ], - "f1": [ - 0.5821782946586609 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 12, - "edge_count": 11, - "avg_in_degree": 0.9166666666666666, - "density": 0.08333333333333333 - }, - "trajectory_embedding": [ - 0.13369283080101013, - 0.14433510601520538, - -0.22548367083072662, - 0.060306016355752945, - -0.08639272302389145, - 0.002943794010207057, - 0.23735707998275757, - 0.16482573747634888, - 0.5013976693153381, - -0.3400944769382477, - -0.0792926773428917, - 0.0980411171913147, - -0.5940414071083069, - -0.14733976125717163, - -0.22831867635250092, - 0.1983317881822586, - -0.00968053936958313, - 0.277439147233963, - -0.14450059831142426, - -0.16099824011325836, - -0.34076163172721863, - 0.0865948423743248, - -0.31558945775032043, - -0.0824897438287735, - 0.10710851103067398, - -0.0934332087635994, - 0.37865975499153137, - 0.49469253420829773, - 0.15615332126617432, - 0.24864457547664642, - 0.14125993847846985, - 0.01845535635948181, - -0.15576577186584473, - 0.03730376437306404, - -0.2879844009876251, - 0.2889155447483063, - 0.213713601231575, - 0.3224811255931854, - -0.05982811748981476, - -0.033730100840330124, - -0.10818079113960266, - 0.21347206830978394, - 0.8228889107704163, - 0.25680774450302124, - 0.36214807629585266, - -0.5653674006462097, - -0.049573663622140884, - 0.4634188711643219, - -0.3663308322429657, - -0.10936939716339111, - 0.1866655945777893, - 0.5487546324729919, - 0.5227803587913513, - -0.2137134075164795, - 0.4485027492046356, - -0.07090269774198532, - -0.3489706218242645, - -0.16254732012748718, - -0.15057876706123352, - 0.11174788326025009, - -0.014290958642959595, - -0.1474752575159073, - 0.33366265892982483, - -0.10847434401512146, - -0.23606844246387482, - -0.25416824221611023, - -0.18237197399139404, - 0.06671617180109024, - 0.04271206259727478, - -0.312054306268692, - -0.17764820158481598, - -0.39080968499183655, - -0.23062437772750854, - 0.16309311985969543, - 0.08586438745260239, - -0.15263618528842926, - 0.4506126642227173, - 0.1265716552734375, - 0.1787474900484085, - 0.1616818606853485, - 0.08129360526800156, - -0.07555656880140305, - -0.032675452530384064, - 0.23464518785476685, - -0.3550747334957123, - 0.1810835599899292, - -0.1592039316892624, - -0.13825233280658722, - -0.2598206698894501, - 0.29697516560554504, - 0.2694394290447235, - -0.4037123918533325, - 0.051219675689935684, - -0.1736326366662979, - 0.003282601712271571, - 0.11851459741592407, - 0.3484923839569092, - 0.31940537691116333, - 0.8392224311828613, - 0.02724343352019787, - 0.26075252890586853, - 0.052311692386865616, - 0.2747480571269989, - -0.06750866025686264, - 0.3651670217514038, - -0.21141113340854645, - 0.2730628550052643, - -0.43804681301116943, - 0.0446157343685627, - 0.4512770473957062, - 0.03257989510893822, - -0.26928049325942993, - 0.0012383708963170648, - -0.3603943884372711, - 0.01977371983230114, - 0.09622174501419067, - -0.08374900370836258, - 0.20036540925502777, - 0.19462311267852783, - -0.5109869837760925, - -0.13110634684562683, - -0.051308903843164444, - 0.3071380853652954, - 0.2497265338897705, - -0.5640978813171387, - -0.10582602769136429, - -0.07318683713674545, - 0.007638255599886179, - 0.023114101961255074, - 0.14992059767246246, - -0.45205625891685486, - -0.1908349245786667, - -0.1434377282857895, - 0.1947791427373886, - -0.02827431447803974, - 0.3386586606502533, - -0.4353886842727661, - 0.05987301841378212, - -1.0165730714797974, - 0.14351540803909302, - -0.4588097333908081, - -0.09114237874746323, - 0.045307278633117676, - -0.41874977946281433, - -0.12226101756095886, - -0.13272303342819214, - -0.08449415117502213, - 0.20634578168392181, - -0.22234326601028442, - 0.05836540833115578, - -0.03988165408372879, - -0.03378593549132347, - 0.25582465529441833, - 0.401073694229126, - 0.00880881305783987, - 0.03959021344780922, - -0.010096686892211437, - 0.34262850880622864, - 0.15954278409481049, - -0.12223462015390396, - 0.053812071681022644, - 0.39979198575019836, - -0.0308555718511343, - -0.08000319451093674, - 0.04816700890660286, - -0.5325723886489868, - -0.026968175545334816, - -0.24248643219470978, - 0.03366946056485176, - 0.0303976908326149, - -0.20455892384052277, - 0.1550566703081131, - -0.17140136659145355, - 0.5480491518974304, - 0.17741626501083374, - 0.4223334789276123, - -0.06001768633723259, - 0.0418718159198761, - 0.23618412017822266, - 0.05499522015452385, - -0.012503673322498798, - -0.18104957044124603, - 0.5137625336647034, - 0.06913763284683228, - -0.3243136703968048, - 0.15785230696201324, - 0.3465646207332611, - -0.11138931661844254, - -0.22015583515167236, - 0.08521714061498642, - 0.4761897623538971, - -0.3507315218448639, - 0.36825743317604065, - -0.22183209657669067, - -0.017696889117360115, - 0.11378219723701477, - -0.28424033522605896, - -0.20387907326221466, - -0.07319405674934387, - -0.20854443311691284, - 0.21480238437652588, - 0.10793677717447281, - -0.3450411558151245, - 0.17583273351192474, - 0.13426493108272552, - -0.1309541016817093, - 0.14964306354522705, - 0.11205101758241653, - 0.0369296558201313, - -0.16131845116615295, - -0.13489222526550293, - 0.23906724154949188, - -0.08209555596113205, - 0.1775376945734024, - 0.052272338420152664, - -0.21379972994327545, - 0.22216705977916718, - -0.07851523905992508, - -0.15016934275627136, - 0.12440332025289536, - 0.06782232969999313, - -0.15268243849277496, - 0.12486954778432846, - 0.12850499153137207, - -0.40576648712158203, - 0.21358908712863922, - 0.2588064670562744, - 0.2425181269645691, - 0.012843807227909565, - -0.10945073515176773, - 0.07783098518848419, - -0.3200782239437103, - 0.3623781204223633, - -0.2896438539028168, - -0.21270795166492462, - -0.29278627038002014, - 0.20661650598049164, - -0.084601990878582, - -0.026783021166920662, - 0.30580824613571167, - -0.08935374766588211, - -0.10114268213510513, - 0.12749981880187988, - -0.12924204766750336, - -0.042565878480672836, - -0.24609309434890747, - -0.04173661768436432, - 0.36877432465553284, - 0.015414354391396046, - 0.2621048390865326, - 0.1296478807926178, - 0.028784437105059624, - 0.08362378925085068, - -0.24670858681201935, - -0.29480770230293274, - -0.418149471282959, - -0.1254057139158249, - -0.09309981018304825, - -0.5016807913780212, - 0.1129632219672203, - 0.04898205026984215, - -0.14827008545398712, - 0.01911735348403454, - -0.35567596554756165, - -0.10920429974794388, - -0.04350036382675171, - 0.0031482491176575422, - 0.23762480914592743, - -0.26676133275032043, - 0.024606266990303993, - -0.40406370162963867, - -0.35046085715293884, - -0.16688822209835052, - -0.013889278285205364, - 0.057161737233400345, - 0.12509512901306152, - -0.20088766515254974, - 0.14081457257270813, - 0.11382729560136795, - -0.42765820026397705, - -0.21322210133075714, - 0.11389172077178955, - -0.20810635387897491, - 0.3671903908252716, - -0.08413372188806534, - 0.3005961775779724, - 0.41636988520622253, - 0.11242785304784775, - 0.18965785205364227, - 0.28928327560424805, - 0.520293116569519, - -0.044199634343385696, - 0.024378767237067223, - -0.006035264115780592, - 0.05313709005713463, - 0.004007492680102587, - -0.3168799877166748, - 0.3585367202758789, - -0.09793543070554733, - 0.09263209253549576, - 0.10440099239349365, - 0.19418644905090332, - 0.07036259770393372, - -0.313355952501297, - 0.011952652595937252, - 0.5541787147521973, - 0.1412898302078247, - 0.160475492477417, - 0.08976251631975174, - 0.17537327110767365, - 0.3155760169029236, - -0.10054931789636612, - -0.1561570167541504, - 0.18973542749881744, - -0.13867297768592834, - -0.1387985199689865, - -0.12286537885665894, - 0.13513325154781342, - 0.3361354172229767, - -0.03276941925287247, - -0.16890649497509003, - 0.21351651847362518, - -0.10991711169481277, - -0.07627999037504196, - -0.21893203258514404, - -0.1382598578929901, - -0.0059937890619039536, - -0.19009922444820404, - 0.21068556606769562, - 0.03446594998240471, - 0.015854530036449432, - 0.3723958432674408, - -0.29323187470436096, - -0.28275343775749207, - 0.08757380396127701, - -0.03232966363430023, - -0.3145970106124878, - 0.42372259497642517, - -0.21242040395736694, - -0.03761497884988785, - 0.26172947883605957, - -0.26935288310050964, - -0.056598175317049026, - 0.0194065123796463, - 0.2074081152677536, - -0.005017491523176432, - 0.10081883519887924, - -0.22837196290493011, - 0.09224596619606018, - 0.05369365215301514, - 0.4721032679080963, - 0.0363822840154171, - 0.02430731989443302, - 0.47994187474250793, - 0.034579940140247345, - -0.28111281991004944, - 0.01448619645088911, - -0.10241955518722534, - 0.2818920314311981, - -0.35109904408454895, - -0.0656985491514206, - -0.16916698217391968, - 0.07858668267726898, - 0.14301124215126038, - -0.23890535533428192, - 0.06551255285739899, - 0.07614059001207352, - -0.10317137837409973, - -0.12597224116325378, - 0.35762524604797363, - 0.15913806855678558, - -0.00016100953507702798, - 0.459397554397583, - -0.015815353021025658, - -0.1740366369485855, - 0.1316688358783722, - -0.04304949939250946, - 0.2007022649049759, - -0.03190537914633751, - -0.22499823570251465, - -0.4295353591442108, - 0.04322853684425354, - -0.04501204192638397, - -0.11935264617204666, - 0.06014082953333855, - -0.1900591105222702, - -0.01789635606110096, - -0.10643137246370316, - 0.20597542822360992, - -0.13492771983146667, - 0.09973853081464767, - -0.08143756538629532, - 0.37203916907310486, - -0.10802135616540909, - -0.2251192182302475, - 0.1895110160112381, - -0.001184944063425064, - 0.21880216896533966, - -0.28858664631843567, - -0.01768559031188488, - -0.17352627217769623, - 0.4409390985965729, - -0.17716597020626068, - 0.09665370732545853, - 0.08173658698797226, - -0.15442289412021637, - -0.1614701896905899, - -0.23705892264842987, - -0.008753109723329544, - 0.0026541941333562136, - 0.012119864113628864, - -0.11445283144712448, - 0.16676847636699677, - -0.14762179553508759, - -0.21313880383968353, - -0.015447833575308323, - 0.16811029613018036, - 0.050082504749298096, - -0.0501839853823185, - 0.09630388021469116, - 0.17460648715496063, - 0.08663546293973923, - 0.29719579219818115, - -0.25729629397392273, - 0.2130459100008011, - 0.10926475375890732, - -0.21921229362487793, - 0.04991713538765907, - -0.019299637526273727, - -0.16784268617630005, - -0.06860018521547318, - 0.045204147696495056, - 0.1771063655614853, - -0.03680209815502167, - -0.04808233305811882, - 0.02319001592695713, - 0.15841515362262726, - -0.24960601329803467, - -0.04259495809674263, - 0.4412775933742523, - -0.09239838272333145, - 0.276295006275177, - 0.019630176946520805, - -0.4266878068447113, - -0.14792127907276154, - -0.06619903445243835, - -0.39507484436035156, - 0.06897125393152237, - 0.25724226236343384, - -0.02481030859053135, - -0.11322715878486633, - 0.04402487352490425, - 0.07595331966876984, - 0.036155715584754944, - 0.3421369791030884, - -0.009855955839157104, - 0.049794748425483704, - 0.05466816946864128, - -0.22960107028484344, - -0.07555495202541351, - -0.18758220970630646, - -0.3266429603099823, - -0.2951572835445404, - 0.39320287108421326, - 0.15531866252422333, - -0.11411883682012558, - 0.21703268587589264, - 0.07975958287715912, - -0.08188915997743607, - -0.2652644217014313, - 0.02148693986237049, - -0.22459274530410767, - 0.4671039581298828, - -0.07289432734251022, - -0.18442785739898682, - 0.10770847648382187, - -0.17967168986797333, - 0.070625439286232, - 0.0899442657828331, - 0.10153353214263916, - 0.334744930267334, - 0.05648738145828247, - 0.15713071823120117, - 0.5687419176101685, - 0.15792421996593475, - 0.07198785990476608, - 0.346431165933609, - -0.011998350732028484, - 0.21020857989788055, - -0.2132946401834488, - -0.15075136721134186, - 0.39081916213035583, - -0.36817875504493713, - 0.08657001703977585, - 0.07854559272527695, - 0.3019058406352997, - -0.29808509349823, - -0.37159404158592224, - -0.037252411246299744, - -0.031213074922561646, - -0.10314192622900009, - -0.14263789355754852, - -0.21780936419963837, - -0.09251782298088074, - -0.3848308026790619, - -0.04128674790263176, - 0.15951508283615112, - 0.2599267065525055, - 0.2932097613811493, - 0.09694564342498779, - -0.24545425176620483, - -0.4213933050632477, - 0.26006755232810974, - 0.36978015303611755, - -0.014208558946847916, - -0.12072038650512695, - -0.18712176382541656, - 0.13509446382522583, - 0.27101829648017883, - -0.07785334438085556, - 0.020884402096271515, - -0.05586683750152588, - -0.024019740521907806, - 0.0859542116522789, - 0.12834765017032623, - -0.009478085674345493, - -0.03219858556985855, - -0.330635130405426, - 0.08101152628660202, - -0.16528365015983582, - -0.21762602031230927, - 0.16226263344287872, - -0.14579856395721436, - -0.4195441007614136, - -0.1634223461151123, - 0.17104683816432953, - -0.10313675552606583, - -0.17274470627307892, - 0.1721215844154358, - 0.3831445872783661, - -0.007932684384286404, - -0.07580296695232391, - 0.16059912741184235, - -0.5120869278907776, - -0.15657000243663788, - 0.2063646912574768, - -0.11311114579439163, - 0.060340702533721924, - 0.10143822431564331, - 0.331358402967453, - 0.39359989762306213, - 0.21257595717906952, - -0.40275833010673523, - 0.18102405965328217, - 0.2956150472164154, - 0.09417331963777542, - -0.3702111542224884, - -10.834364891052246, - -0.11203810572624207, - -0.1915384978055954, - 0.5572553277015686, - -0.15912386775016785, - 0.12665636837482452, - -0.006013969425112009, - 0.0022143900860100985, - 0.061949845403432846, - 0.18148262798786163, - -0.29447439312934875, - -0.03174024447798729, - 0.2532036304473877, - 0.2717180550098419, - 0.16377513110637665, - 0.07306229323148727, - -0.2374240756034851, - 0.25964489579200745, - 0.10002177208662033, - 0.2528753876686096, - 0.10205801576375961, - 0.48796701431274414, - -0.1474599391222, - 0.14683641493320465, - -0.03977102041244507, - -0.28073158860206604, - -0.38511887192726135, - 0.5401586890220642, - 0.36154699325561523, - -0.3091740012168884, - 0.18853668868541718, - 0.017350271344184875, - -0.0952727273106575, - -0.06880739331245422, - 0.05472588166594505, - -0.18106548488140106, - -0.19867289066314697, - 0.01577911525964737, - -0.009101185947656631, - -0.05456354841589928, - 0.052926644682884216, - -0.21073172986507416, - 0.14525043964385986, - 0.2752441167831421, - -0.15024036169052124, - -0.5265786051750183, - -0.13649414479732513, - -1.3948246240615845, - 0.16458535194396973, - 0.2391982525587082, - 0.5531957149505615, - 0.003794849617406726, - 0.10253766179084778, - 0.2757987082004547, - -0.32251986861228943, - 0.015557251870632172, - -0.2508157193660736, - -0.04504910111427307, - 0.17682473361492157, - -0.1156758964061737, - 0.13978193700313568, - -0.030885599553585052, - 0.4446631968021393, - -0.20023749768733978, - -0.2900990843772888, - 0.25828447937965393, - -0.0967584028840065, - 0.008840516209602356, - -0.23207437992095947, - -0.4876144826412201, - -0.5852916836738586, - -0.0502762496471405, - 0.032880064100027084, - 0.05854444205760956, - 0.4420769512653351, - 0.027179980650544167, - -0.2948583662509918, - 0.1697344332933426, - -0.1131061390042305, - 0.3400327265262604, - 0.06233333423733711, - -0.06178048253059387, - 0.15663470327854156, - -0.19814758002758026, - 0.053158652037382126, - -0.15635184943675995, - 0.12776301801204681, - 0.49489620327949524, - -0.055175576359033585, - -0.029246417805552483, - -0.05819543078541756, - 0.29239779710769653, - -0.10725220292806625, - -0.2111825793981552, - -0.4797670841217041, - 0.05479389429092407, - 0.0034328761976212263, - -0.05249451473355293, - 0.006541082169860601, - -0.09699243307113647, - -0.14804300665855408, - -0.09950397163629532, - -0.06707563996315002, - -0.5284958481788635, - -0.4301547706127167, - 0.3653144836425781, - 0.22122466564178467, - 0.11984621733427048, - 0.10394102334976196, - 0.08261428773403168, - -0.047052595764398575, - 0.01708347350358963, - 0.4604164659976959, - 0.4961283206939697, - 0.2094811648130417, - 0.02300799824297428, - 0.11407476663589478, - -0.19110210239887238, - -0.1690978854894638, - 0.062100499868392944, - 0.4442782700061798, - -0.014268008060753345, - 0.2945822477340698, - 0.47472211718559265, - 0.05398660898208618, - -0.09321630001068115, - 0.9861577153205872, - -0.34482601284980774, - 0.19569243490695953, - -0.0018870687345042825, - 0.22855663299560547, - -0.10818133503198624, - -0.25911659002304077, - 0.0782269611954689, - 0.2777820825576782, - -0.2894342243671417, - 0.5496587157249451, - 0.2505837380886078, - -0.3777984380722046, - -0.033916935324668884, - -0.24738569557666779, - 0.3974572420120239, - 0.13839787244796753, - 0.24944257736206055, - -0.16024769842624664, - -0.43543779850006104, - -0.36452779173851013, - 0.10373172909021378, - -0.27122992277145386, - -0.2931581139564514, - -0.19121940433979034, - 0.03754951432347298, - -0.05383605882525444, - -0.09965893626213074, - 0.28969433903694153, - 0.05203607305884361, - -0.14020299911499023, - -0.1341765969991684, - -0.4949578046798706, - -0.12240168452262878, - 0.04652697220444679, - 0.7514114379882812, - 0.07740660756826401, - -0.14325566589832306, - -0.1004452332854271, - 0.273474782705307, - -0.11568859219551086, - 0.21486151218414307, - -0.0060142031870782375, - 0.08099699765443802, - -0.38304778933525085, - 0.15438102185726166, - 0.261804461479187, - -0.2076626867055893, - -0.06949709355831146, - -0.19780856370925903, - 0.019032368436455727, - 0.02649535797536373, - -0.09652302414178848, - 0.1914377212524414, - 0.21322862803936005, - 0.054714351892471313, - 0.0989469587802887, - -0.3116009533405304, - 0.051409732550382614, - 0.10438374429941177, - 0.287426620721817, - 0.10781389474868774, - -0.366584450006485, - -0.21971769630908966, - -0.45732173323631287, - 0.2694143056869507, - -0.3026338517665863, - -0.034956786781549454, - 0.09978895634412766, - 0.2033783346414566, - -0.11928807944059372, - 0.17544913291931152, - -0.07910385727882385, - 0.03179256245493889, - -0.17706315219402313, - 0.18418331444263458, - 0.3205330967903137, - -0.2857564687728882, - 0.14534620940685272, - -0.1672273874282837, - 0.25369489192962646, - 0.18283875286579132, - -0.1367650032043457, - 0.20030300319194794, - -0.23739977180957794 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_072.json b/src/benchmark/output/results/results_graph_072.json deleted file mode 100644 index a4d1ce4..0000000 --- a/src/benchmark/output/results/results_graph_072.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "The patient in question is a male who has been diagnosed with lung cancer. Unfortunately, the provided data does not include the patient's demographic information such as age, address, or contact details.\n\nHowever, based on the timeline of diagnoses and treatments provided, we can reconstruct a coherent narrative:\n\nThe patient was first diagnosed with lung cancer, which led to the start of gyroknife radiotherapy for left and right lung malignancies 12 times. This treatment was likely aimed at reducing the size of the tumors in the lungs.\n\nAfter completing this treatment, the patient experienced tumor progression, leading to the start of anlotinib 8mg orally once daily for 14 days every 3 weeks. This medication was intended to slow down the growth of the cancer cells.\n\nHowever, after 14 cycles of anlotinib treatment, the patient presented with hyperglycemia (fasting plasma glucose of 26.1 mmol/L) and urine ketone (+++), leading to a diagnosis of type 1 diabetes. As a result, the patient was discharged with a hypoglycemic regimen of insulin degludec 5 units in the morning and insulin aspartate 4 units three times a day.\n\nOne week after discharge, the patient's blood glucose levels significantly increased after re-starting anlotinib (highest recorded level was 30.1 mmol/L), and the insulin dose was increased. Despite this escalation, the patient continued to experience significant improvements in their laboratory parameters, including GADA, ICA, IAA, Fasting blood glucose, Hemoglobin A1c, Hemoglobin, and Serum albumin.\n\nAfter two cycles of anlotinib treatment, the medication was discontinued due to tumor progression and its significant negative impact on glucose metabolism. However, by the 16th cycle, laboratory parameters showed a marked improvement in these areas.\n\nThe patient's current status is unclear from the provided data, but it appears that they have undergone various treatments for their lung cancer and diabetes. The exact outcome of these treatments is not specified, but the narrative suggests that the patient has experienced significant improvements in their laboratory parameters over time.", - "bertscore": { - "precision": [ - 0.6911485195159912 - ], - "recall": [ - 0.6727587580680847 - ], - "f1": [ - 0.6818296313285828 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 10, - "edge_count": 9, - "avg_in_degree": 0.9, - "density": 0.1 - }, - "trajectory_embedding": [ - 0.1467558592557907, - 0.21578022837638855, - -0.22472743690013885, - 0.1429169625043869, - -0.0391475111246109, - 0.10741577297449112, - 0.24607594311237335, - 0.2464669942855835, - 0.3772128224372864, - -0.3546753525733948, - -0.1136227399110794, - 0.030413171276450157, - -0.4117017686367035, - -0.1751895248889923, - -0.3702186644077301, - 0.24298548698425293, - -0.22810597717761993, - 0.43166160583496094, - -0.07609720528125763, - -0.19508908689022064, - -0.2506624460220337, - 0.16180557012557983, - -0.3597126603126526, - -0.14883342385292053, - 0.054762791842222214, - 0.066930390894413, - 0.5134936571121216, - 0.6241241693496704, - 0.13119105994701385, - 0.39884868264198303, - 0.34290724992752075, - 0.07410649210214615, - 0.13018269836902618, - 0.03570286184549332, - -0.3678257167339325, - 0.20287713408470154, - 0.08639800548553467, - 0.03956761211156845, - -0.2587645649909973, - 0.08862163126468658, - -0.25685548782348633, - 0.01334497332572937, - 0.868068516254425, - 0.01634276658296585, - 0.3725665211677551, - -0.5754799246788025, - 0.025804687291383743, - 0.6441324949264526, - -0.31139636039733887, - -0.06749574095010757, - 0.043065305799245834, - 0.6532628536224365, - 0.37668541073799133, - -0.381503164768219, - 0.21977543830871582, - -0.3113846480846405, - -0.23924875259399414, - -0.2351614236831665, - -0.05154666304588318, - 0.2549881339073181, - 0.12514403462409973, - -0.2485843002796173, - 0.28092867136001587, - -0.3764851987361908, - -0.2138647735118866, - -0.08040594309568405, - -0.13744919002056122, - 0.2584134042263031, - 0.08712949603796005, - -0.17679020762443542, - -0.4196208119392395, - -0.2697073221206665, - -0.18063995242118835, - 0.15724965929985046, - -0.02044837176799774, - -0.2573614716529846, - 0.3839556872844696, - -0.028295908123254776, - 0.32923001050949097, - 0.1749843955039978, - 0.03201086074113846, - -0.20241613686084747, - -0.20521089434623718, - 0.26871758699417114, - -0.3518373370170593, - 0.07867185026407242, - -0.0590418204665184, - -0.10131154209375381, - -0.4003247618675232, - 0.16886074841022491, - 0.23691201210021973, - -0.4590117931365967, - -0.03547119349241257, - -0.125101700425148, - -0.11660709232091904, - 0.2730478346347809, - 0.36038222908973694, - 0.24189582467079163, - 0.8972047567367554, - 0.21318212151527405, - 0.023122116923332214, - 0.03919263184070587, - 0.07379062473773956, - -0.008304650895297527, - 0.3914582133293152, - -0.26800113916397095, - 0.10497178882360458, - -0.4425472617149353, - 0.4172024726867676, - 0.5542877912521362, - 0.09718867391347885, - -0.19852010905742645, - -0.09972235560417175, - -0.21962186694145203, - 0.2633120119571686, - 0.03274567052721977, - -0.02935497835278511, - 0.4012452960014343, - 0.34589189291000366, - -0.29314231872558594, - -0.16397865116596222, - -0.18719443678855896, - 0.23125767707824707, - 0.2925569713115692, - -0.23924842476844788, - -0.10354697704315186, - 0.11308254301548004, - -0.26390764117240906, - 0.022814739495515823, - -0.011556057259440422, - -0.521220326423645, - -0.28582364320755005, - -0.02419230341911316, - -0.1930917650461197, - -0.231863334774971, - 0.3714632987976074, - -0.21983346343040466, - -0.17233477532863617, - -1.059095025062561, - 0.09837963432073593, - -0.2561350464820862, - -0.06845741719007492, - -0.027006398886442184, - -0.5712205171585083, - -0.1504819691181183, - 0.008047682233154774, - -0.21386170387268066, - 0.18834829330444336, - -0.20514488220214844, - 0.028025785461068153, - 0.23172470927238464, - -0.2620478570461273, - 0.19429410994052887, - 0.5900846719741821, - -0.040279075503349304, - -0.07002563774585724, - 0.13729365170001984, - 0.09394415467977524, - -0.0071976869367063046, - -0.04783643037080765, - 0.010025514289736748, - 0.5305513143539429, - 0.009506863541901112, - 0.29826706647872925, - -0.2428264170885086, - -0.3946989178657532, - -0.12148205935955048, - -0.18953801691532135, - 0.1484622359275818, - -0.18778763711452484, - 0.0036178373266011477, - 0.04874396696686745, - -0.2736683785915375, - 0.6273735165596008, - -0.05598446726799011, - 0.21809370815753937, - -0.009256398305296898, - 0.0923294797539711, - -0.06790988147258759, - 0.05280381441116333, - -0.025408487766981125, - -0.16398142278194427, - 0.5152157545089722, - 0.16592112183570862, - -0.37397003173828125, - 0.12032677978277206, - 0.39339056611061096, - -0.035347841680049896, - -0.12495218217372894, - 0.16375714540481567, - 0.38146263360977173, - -0.20081070065498352, - 0.509199857711792, - -0.18221314251422882, - -0.047622788697481155, - 0.07603194564580917, - -0.08978302031755447, - 0.05722694471478462, - -0.18994253873825073, - -0.20203018188476562, - 0.07032635062932968, - 0.14731472730636597, - -0.4199419915676117, - 0.13970163464546204, - 0.3231737017631531, - -0.15464814007282257, - 0.1596236675977707, - 0.029887324199080467, - 0.11352817714214325, - 0.0014318585162982345, - -0.12874475121498108, - 0.10113590955734253, - 0.1491338461637497, - 0.31072384119033813, - -0.0032197958789765835, - -0.38153210282325745, - 0.0656530112028122, - 0.11896853148937225, - -0.22674818336963654, - 0.052436817437410355, - 0.14132793247699738, - -0.3060030937194824, - -0.17020323872566223, - 0.21048235893249512, - -0.436528742313385, - 0.22804853320121765, - 0.2027864158153534, - 0.20461246371269226, - -0.09846068918704987, - 0.01446255762130022, - -0.08623360842466354, - -0.20274241268634796, - 0.39063018560409546, - -0.17123058438301086, - -0.07699687778949738, - -0.12564930319786072, - 0.3477362394332886, - 0.26989006996154785, - 0.1616668701171875, - 0.3151460289955139, - 0.18125085532665253, - -0.13693901896476746, - 0.20597469806671143, - -0.3475784361362457, - -0.07087185233831406, - -0.2660316824913025, - -0.11002080142498016, - 0.35642945766448975, - 0.15521788597106934, - 0.27897635102272034, - 0.09877828508615494, - 0.001769575523212552, - 0.05051774904131889, - -0.04526882246136665, - -0.4147090017795563, - -0.25381579995155334, - -0.1564108282327652, - -0.20474962890148163, - -0.7942279577255249, - -0.012655595317482948, - 0.09141578525304794, - -0.08337827771902084, - 0.10615050792694092, - -0.2125818282365799, - -0.026336977258324623, - -0.04088575020432472, - 0.04255533963441849, - 0.11867685616016388, - -0.4701949656009674, - 0.05214893817901611, - -0.3366972804069519, - -0.23798970878124237, - -0.16544215381145477, - 0.06259768456220627, - 0.09437423944473267, - 0.08463583141565323, - -0.2870126962661743, - 0.20736460387706757, - 0.14921386539936066, - -0.23761186003684998, - -0.04541198909282684, - 0.06258977949619293, - -0.25223925709724426, - 0.17701342701911926, - 0.0406658835709095, - 0.15853345394134521, - 0.32122695446014404, - 0.062818743288517, - 0.17743121087551117, - 0.3767830729484558, - 0.4307214319705963, - -0.14313772320747375, - -0.07605954259634018, - 0.06110112741589546, - 0.01150633953511715, - 0.1238938421010971, - -0.43520838022232056, - 0.2948581576347351, - -0.07918266952037811, - -0.049306727945804596, - -0.04951731488108635, - 0.1361767053604126, - 0.23928086459636688, - 0.09140973538160324, - -0.03656182810664177, - 0.4791076183319092, - -0.09062507748603821, - 0.23751933872699738, - 0.11158742010593414, - 0.10434363037347794, - 0.154245063662529, - -0.1015637069940567, - 0.14817926287651062, - 0.2390809804201126, - -0.20413494110107422, - -0.25570106506347656, - -0.016404088586568832, - 0.144990473985672, - 0.5284889340400696, - -0.05836212635040283, - -0.11955232918262482, - 0.04613831639289856, - -0.10829593986272812, - -0.2275884449481964, - -0.35607996582984924, - -0.1915653645992279, - 0.01895376853644848, - -0.2098993957042694, - 0.38058751821517944, - 0.15650279819965363, - 0.06385938823223114, - 0.29727494716644287, - -0.46553659439086914, - -0.11989670991897583, - 0.1972590684890747, - -0.10775226354598999, - -0.33122071623802185, - 0.34752753376960754, - -0.1995423287153244, - 0.31886056065559387, - 0.12877532839775085, - -0.5177029371261597, - -0.03133440762758255, - 0.2025662660598755, - 0.32317858934402466, - 0.02872704342007637, - 0.20551195740699768, - -0.04093034192919731, - 0.13289186358451843, - -0.03587167337536812, - 0.28664636611938477, - 0.10394580662250519, - 0.03811519965529442, - 0.4892265796661377, - 0.08575405925512314, - -0.32652217149734497, - 0.1621469110250473, - -0.2651614546775818, - 0.26876598596572876, - -0.04428689181804657, - -0.15482404828071594, - 0.025008510798215866, - 0.13651856780052185, - -0.01320398785173893, - -0.38759756088256836, - 0.19344229996204376, - 0.08029833436012268, - -0.06462834775447845, - -0.1538604348897934, - 0.44362694025039673, - 0.23752036690711975, - -0.08606479316949844, - 0.49882107973098755, - -0.09216127544641495, - -0.18504269421100616, - 0.31577908992767334, - -0.1463363617658615, - 0.10288114845752716, - 0.016293346881866455, - -0.09976895153522491, - -0.2922491133213043, - 0.09390418976545334, - -0.018488731235265732, - -0.12227575480937958, - -0.002609365386888385, - -0.09500180184841156, - 0.17433643341064453, - -0.2604838013648987, - 0.03977131098508835, - -0.047779593616724014, - 0.02710282802581787, - 0.1168392151594162, - 0.04782016947865486, - 0.004629187751561403, - -0.17526385188102722, - 0.20097270607948303, - 0.10645027458667755, - -0.1354227364063263, - -0.24779196083545685, - -0.12895958125591278, - -0.14895187318325043, - 0.7062500715255737, - -0.0171036459505558, - 0.12317010015249252, - 0.09601439535617828, - -0.03774922341108322, - -0.047240134328603745, - -0.3598775267601013, - 0.11602409183979034, - -0.08174605667591095, - -0.007841676473617554, - -0.022301455959677696, - 0.015358957462012768, - -0.2556130588054657, - -0.06083443760871887, - -0.03944473713636398, - -0.04985945299267769, - 0.0885101929306984, - 0.06494314968585968, - -0.19790372252464294, - 0.319629967212677, - 0.17731168866157532, - 0.2622233033180237, - -0.3309285044670105, - 0.2701236605644226, - -0.036373138427734375, - -0.3810669779777527, - -0.05134083703160286, - -0.13280043005943298, - -0.37084364891052246, - -0.0896112322807312, - 0.18589049577713013, - 0.2305971384048462, - -0.15549463033676147, - -0.11894340813159943, - 0.06211910769343376, - -0.011870044283568859, - -0.3256921172142029, - 0.08518384397029877, - 0.40091386437416077, - 0.02822517789900303, - 0.13844819366931915, - 0.18404532968997955, - -0.44956859946250916, - -0.08736832439899445, - -0.26938340067863464, - -0.22091856598854065, - 0.08076024800539017, - 0.299245148897171, - 0.05726863816380501, - -0.18056657910346985, - 0.005609108135104179, - 0.1610868275165558, - -0.24337193369865417, - 0.20091977715492249, - 0.07438572496175766, - 0.15251891314983368, - -0.05615922808647156, - -0.18971483409404755, - -0.035100437700748444, - -0.2538006901741028, - -0.39921122789382935, - -0.23949792981147766, - 0.05675571411848068, - -0.06270407140254974, - -0.16913190484046936, - -0.04761975631117821, - 0.08796928077936172, - -0.19344601035118103, - 0.07061181217432022, - -0.00701174046844244, - -0.22233304381370544, - 0.3843590319156647, - -0.1723875105381012, - -0.15632855892181396, - 0.11514637619256973, - -0.11420341581106186, - -0.1089068055152893, - 0.20675912499427795, - 0.13253267109394073, - 0.24227342009544373, - 0.035336919128894806, - 0.06747899949550629, - 0.5281792283058167, - 0.0982801765203476, - 0.18560242652893066, - 0.3739277422428131, - 0.05999390408396721, - 0.04225751757621765, - -0.2424444705247879, - 0.009240892715752125, - 0.04715024307370186, - -0.5379596948623657, - -0.2022087574005127, - 0.25781458616256714, - 0.3765815496444702, - -0.2341899424791336, - -0.08735928684473038, - 0.12516091763973236, - -0.015649516135454178, - -0.11499756574630737, - -0.1802949607372284, - -0.14979815483093262, - -0.0698680728673935, - -0.421628475189209, - 0.11402423679828644, - 0.2602878212928772, - 0.5458724498748779, - 0.3064882159233093, - 0.145802304148674, - -0.14707684516906738, - -0.12892957031726837, - 0.21412897109985352, - 0.12117652595043182, - -0.07937133312225342, - -0.13859590888023376, - -0.014036153443157673, - 0.2481590062379837, - 0.18772627413272858, - -0.058366358280181885, - 0.20095443725585938, - -0.1382633000612259, - -0.01619616150856018, - 0.24248409271240234, - 0.018217677250504494, - -0.23908419907093048, - -0.036725353449583054, - -0.36994606256484985, - -0.030545193701982498, - -0.25978851318359375, - -0.17193163931369781, - 0.12156152725219727, - -0.14354027807712555, - -0.27277061343193054, - -0.08866120129823685, - 0.26799991726875305, - -0.1538381725549698, - -0.15487608313560486, - 0.2119164913892746, - 0.4706689417362213, - -0.06511050462722778, - -0.1143641471862793, - -0.03818877413868904, - -0.36263054609298706, - -0.23984873294830322, - 0.06439974159002304, - -0.10582228749990463, - -0.13907457888126373, - 0.180571511387825, - 0.522671103477478, - 0.42723995447158813, - 0.32214251160621643, - -0.29380494356155396, - 0.45324939489364624, - 0.42643529176712036, - 0.01747933030128479, - -0.3533126413822174, - -10.762231826782227, - -0.19128000736236572, - -0.31866416335105896, - 0.3074939250946045, - -0.1728026568889618, - 0.12364353984594345, - 0.15939033031463623, - 0.08644340932369232, - 0.11528076976537704, - 0.22454671561717987, - -0.24274154007434845, - -0.165045365691185, - 0.040752802044153214, - 0.30975615978240967, - 0.05254935100674629, - 0.21793587505817413, - -0.19195708632469177, - 0.26805591583251953, - 0.021485963836312294, - 0.09730029851198196, - 0.022529730573296547, - 0.4004499018192291, - -0.22746577858924866, - -0.019998619332909584, - -0.11083652079105377, - -0.34675759077072144, - -0.261724054813385, - 0.38002246618270874, - 0.16910651326179504, - -0.25341299176216125, - 0.15961603820323944, - -0.07117217034101486, - -0.09691376984119415, - 0.2501903176307678, - -0.17309916019439697, - -0.09962232410907745, - 0.02629014290869236, - 0.2350984513759613, - 0.1822194755077362, - -0.1910620480775833, - -0.1615205556154251, - -0.12327390909194946, - 0.39768245816230774, - -0.08601591736078262, - -0.13806121051311493, - -0.45644086599349976, - -0.15172681212425232, - -1.5214844942092896, - 0.13275209069252014, - 0.29141563177108765, - 0.268086314201355, - 0.07025369256734848, - 0.13054518401622772, - 0.3608424663543701, - -0.3282610774040222, - -0.014312353916466236, - -0.3313286304473877, - 0.026303809136152267, - 0.1206677183508873, - 0.1823887676000595, - -0.047240037471055984, - -0.031160270795226097, - 0.5480109453201294, - -0.07098613679409027, - -0.18692639470100403, - 0.07935027778148651, - -0.14783647656440735, - -0.1478123962879181, - -0.20950262248516083, - -0.6116077899932861, - -0.4265856146812439, - 0.09962843358516693, - -0.23099052906036377, - -0.0033271522261202335, - 0.24456675350666046, - -0.001556271337904036, - -0.047484349459409714, - 0.22979728877544403, - 0.18177863955497742, - 0.04981476068496704, - 0.3405466377735138, - -0.1320308893918991, - -0.0033684875816106796, - -0.20814037322998047, - -0.05660295486450195, - -0.22190317511558533, - 0.13366428017616272, - 0.29052531719207764, - -0.06479400396347046, - -0.13368049263954163, - -0.09971731156110764, - 0.25853869318962097, - -0.09293120354413986, - -0.18177570402622223, - -0.25768518447875977, - -0.09835201501846313, - -0.1602870523929596, - 0.08837125450372696, - -0.23356731235980988, - -0.10015814006328583, - -0.11753282696008682, - 0.16396623849868774, - 0.13959747552871704, - -0.5469827055931091, - -0.3743216395378113, - 0.1664438098669052, - 0.42448368668556213, - 0.09309141337871552, - -0.014063874259591103, - 0.05483916401863098, - -0.19726437330245972, - 0.10182209312915802, - 0.2844861149787903, - 0.33971619606018066, - 0.3693521022796631, - -0.0583476796746254, - 0.09314439445734024, - -0.1851673424243927, - -0.05094872787594795, - -0.0869995504617691, - 0.46160513162612915, - 0.15710847079753876, - 0.16642798483371735, - 0.4780958592891693, - 0.10498277097940445, - -0.014262663200497627, - 0.7639195322990417, - -0.32794445753097534, - 0.2807396352291107, - 0.12222782522439957, - 0.06334886699914932, - -0.018406609073281288, - -0.21027088165283203, - 0.19686976075172424, - 0.3977941870689392, - -0.15418635308742523, - 0.495749294757843, - 0.2718666195869446, - -0.2323676347732544, - -0.01604553684592247, - -0.1697501391172409, - 0.4119974970817566, - 0.03453035280108452, - 0.178964301943779, - -0.2899135649204254, - -0.2135457545518875, - -0.24727647006511688, - 0.03928215056657791, - -0.3034737706184387, - -0.4017711579799652, - -0.13074614107608795, - 0.18908433616161346, - 0.06772884726524353, - -0.13202431797981262, - 0.22765254974365234, - 0.17336753010749817, - -0.054644305258989334, - -0.2935251295566559, - -0.3731357753276825, - 0.03777190297842026, - -0.02863817848265171, - 0.7420274615287781, - 0.08737258613109589, - 0.012328848242759705, - 0.06267563998699188, - -0.06314559280872345, - -0.23698747158050537, - -0.07805575430393219, - 0.15573829412460327, - -0.23690490424633026, - -0.47903770208358765, - 0.18958881497383118, - 0.02512039802968502, - -0.46465373039245605, - -0.0076937004923820496, - -0.003477832768112421, - -0.030192255973815918, - 0.17734971642494202, - -0.23208603262901306, - 0.12795761227607727, - 0.3348274528980255, - -0.03275985270738602, - 0.055001698434352875, - -0.33812984824180603, - -0.1535843312740326, - 0.1890907883644104, - 0.3861348330974579, - -0.04616880416870117, - -0.055928491055965424, - -0.26633378863334656, - -0.5144811272621155, - 0.18852071464061737, - -0.3991573750972748, - -0.01008499413728714, - 0.2912987768650055, - -0.011974113993346691, - -0.0814003273844719, - 0.1869930475950241, - 0.11971618980169296, - 0.08653546869754791, - -0.011959878727793694, - 0.2634030282497406, - 0.22030997276306152, - -0.3473755717277527, - 0.41999754309654236, - 0.0027862905990332365, - 0.31245502829551697, - 0.22135451436042786, - -0.046912871301174164, - 0.13703131675720215, - -0.19747385382652283 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_073.json b/src/benchmark/output/results/results_graph_073.json deleted file mode 100644 index 04ace10..0000000 --- a/src/benchmark/output/results/results_graph_073.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Patient Profile**\n\nThe patient is an adult male with a history of immunocompromised status due to HIV/AIDS. He was admitted to the hospital on day 1 (N1) with symptoms of pneumonia and acute hypoxic respiratory failure requiring intubation. His vital signs were unstable, and he required close monitoring in the intensive care unit.\n\n**Timeline of Diagnoses**\n\n* Day 1 (N1): Admitted with pneumonia and acute hypoxic respiratory failure.\n* Day 14 (N2): Developed septic shock and PICC-line-associated MSSA bacteremia. He was treated with IV cefazolin.\n* Day 28 (N3): Developed SVC syndrome and left upper extremity DVT. He was treated with therapeutic enoxaparin.\n* Day 42 (N4): Recurrent fevers and transfer back to the ICU for septic shock management. Blood cultures grew MSSA, and a transesophageal echocardiogram showed no endocarditis.\n* Day 54 (N5): Repeat blood cultures grew A. fumigatus in addition to MSSA. The infectious disease team recommended continuing IV cefazolin for MSSA bacteremia and adding caspofungin for fungal coverage.\n* Day 56 (N6): Atovaquone continued for pneumocystis jirovecii prophylaxis, and tenofovir discontinued due to concern for contributing to acute kidney injury. The antiretroviral regimen was changed to dolutegravir/rilpivirine plus emtricitabine pending further evaluation of hepatitis B status.\n* Day 62 (N9): Patient died of his illness.\n\n**Timeline of Treatments**\n\n* Day 1-14 (N2): IV cefazolin for MSSA bacteremia\n* Day 28-42 (N3): Therapeutic enoxaparin for SVC syndrome and DVT\n* Day 54 (N5): IV cefazolin continued, caspofungin added for fungal coverage\n* Day 56 (N6): Atovaquone continued, tenofovir discontinued, dolutegravir/rilpivirine plus emtricitabine started\n\n**Outcome**\n\nThe patient's condition worsened over time, and he eventually died on day 62 due to his illness. Despite multiple treatments, including IV cefazolin, therapeutic enoxaparin, and caspofungin, the patient's immune system was unable to overcome the infections.\n\nNote: The narrative is based on the provided data and may not be a comprehensive or entirely accurate representation of the patient's medical history.", - "bertscore": { - "precision": [ - 0.7339485883712769 - ], - "recall": [ - 0.7237894535064697 - ], - "f1": [ - 0.7288336157798767 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 10, - "edge_count": 9, - "avg_in_degree": 0.9, - "density": 0.1 - }, - "trajectory_embedding": [ - 0.18157726526260376, - 0.24173596501350403, - -0.15064290165901184, - 0.07789953052997589, - 0.15454770624637604, - 0.16961298882961273, - -0.11799095571041107, - 0.21222464740276337, - 0.46130186319351196, - -0.346190482378006, - -0.21522000432014465, - 0.06953564286231995, - -0.6833328008651733, - -0.11731839179992676, - -0.13093623518943787, - 0.1565907597541809, - -0.1658409684896469, - 0.3295991122722626, - 0.023968718945980072, - -0.24436740577220917, - -0.2730705142021179, - 0.09766922891139984, - -0.4291715621948242, - 0.040992893278598785, - 0.1778842955827713, - 0.06241704896092415, - 0.3450567424297333, - 0.5343670845031738, - 0.2705721855163574, - 0.32455119490623474, - 0.1970655918121338, - -0.0567609965801239, - 0.11557091772556305, - 0.1374279409646988, - -0.3696678578853607, - 0.3157033920288086, - 0.08424127846956253, - 0.30429309606552124, - -0.1628073900938034, - -0.0343419648706913, - -0.06158728525042534, - 0.13099119067192078, - 0.6208643913269043, - 0.12156106531620026, - 0.45937037467956543, - -0.7845557928085327, - -0.11881051957607269, - 0.6727222204208374, - -0.3872811496257782, - -0.28184717893600464, - 0.25917887687683105, - 0.8072859644889832, - 0.44624844193458557, - -0.23553839325904846, - 0.4472980499267578, - -0.14592644572257996, - -0.14090317487716675, - -0.17685841023921967, - -0.1263105869293213, - 0.10700918734073639, - 0.16321928799152374, - -0.23707929253578186, - 0.38165396451950073, - -0.24890558421611786, - -0.08730532974004745, - -0.02561669424176216, - -0.15296049416065216, - 0.2447458803653717, - -0.0723525881767273, - -0.33950018882751465, - -0.29810041189193726, - -0.32604363560676575, - 0.007825215347111225, - 0.04972695931792259, - 0.025376880541443825, - -0.1429591327905655, - 0.24852678179740906, - -0.034040480852127075, - 0.2870536744594574, - -0.011306770145893097, - -0.061809368431568146, - 0.010281805880367756, - -0.08853095024824142, - 0.34559541940689087, - -0.09181114286184311, - -0.07461856305599213, - -0.2512638568878174, - 0.005537307355552912, - -0.1936032474040985, - 0.0803741067647934, - -0.023251116275787354, - -0.39227181673049927, - 0.11193098872900009, - -0.1564551740884781, - 0.003976819105446339, - -0.010268200188875198, - 0.41871994733810425, - 0.05979905277490616, - 0.8428556323051453, - -0.12373845279216766, - 0.054951321333646774, - 0.17990902066230774, - 0.14112572371959686, - 0.018083970993757248, - 0.25094738602638245, - -0.2062138319015503, - 0.17142395675182343, - -0.43000760674476624, - 0.19608716666698456, - 0.4743573069572449, - 0.09206487983465195, - -0.18884409964084625, - 0.037467461079359055, - -0.21518810093402863, - 0.08606284856796265, - 0.12509246170520782, - -0.04996276646852493, - 0.25770801305770874, - 0.03437798097729683, - -0.31697386503219604, - 0.0385102815926075, - -0.090479277074337, - 0.14348503947257996, - -0.018328726291656494, - -0.36699408292770386, - -0.05970442295074463, - -0.10394291579723358, - -0.09087718278169632, - 0.23112022876739502, - 0.008289863355457783, - -0.3970450758934021, - -0.2605791389942169, - 0.08304773271083832, - 0.05678866058588028, - 0.03604061156511307, - 0.41559848189353943, - -0.38162484765052795, - 0.17668405175209045, - -1.1716099977493286, - 0.16458794474601746, - -0.28417742252349854, - -0.015548867173492908, - -0.07594817131757736, - -0.711194634437561, - -0.2291402369737625, - -0.12000241130590439, - -0.1406688243150711, - 0.19124874472618103, - -0.23169219493865967, - -0.05283690243959427, - -0.04616454988718033, - -0.0858042985200882, - 0.15748555958271027, - 0.31612810492515564, - 0.07103674113750458, - -0.0673355683684349, - -0.07175082713365555, - 0.25514885783195496, - 0.05068795010447502, - -0.14902164041996002, - -0.006055218167603016, - 0.43648838996887207, - -0.009410729631781578, - 0.17091694474220276, - -0.29464638233184814, - -0.7076739072799683, - 0.024696577340364456, - -0.11499001830816269, - 0.0008866667631082237, - 0.08362817764282227, - -0.09280485659837723, - 0.15718020498752594, - -0.4357791543006897, - 0.5816224217414856, - 0.2680997848510742, - 0.3100568950176239, - 0.05116096884012222, - 0.009569879621267319, - 0.12924569845199585, - 0.10145223140716553, - 0.0758548453450203, - -0.27769631147384644, - 0.45971131324768066, - 0.20859965682029724, - -0.33784347772598267, - 0.0705091804265976, - 0.3839980363845825, - 0.052564311772584915, - -0.2852851152420044, - -0.024933893233537674, - 0.43453550338745117, - -0.2564859688282013, - 0.4329327940940857, - -0.2065388709306717, - -0.046664781868457794, - 0.09751643240451813, - -0.27093544602394104, - -0.14071236550807953, - 0.00899127684533596, - -0.022287223488092422, - 0.07503581047058105, - -0.018698453903198242, - -0.2804120182991028, - 0.044384829699993134, - 0.22532419860363007, - -0.1216619461774826, - 0.044075626879930496, - -0.08619797229766846, - 0.022313162684440613, - -0.03587185591459274, - -0.17787562310695648, - 0.2842544913291931, - -0.0953623503446579, - 0.2675912380218506, - 0.12902551889419556, - -0.37056440114974976, - 0.02508065104484558, - 0.03116915002465248, - -0.08371514081954956, - 0.07715325057506561, - 0.03929922729730606, - -0.21154585480690002, - 0.22997598350048065, - -0.05840129777789116, - -0.342581570148468, - 0.1775730848312378, - 0.359138548374176, - 0.30173930525779724, - 0.07008328288793564, - -0.16640983521938324, - 0.01262134313583374, - -0.2634149193763733, - 0.21909400820732117, - -0.1186048611998558, - -0.19360928237438202, - -0.32276421785354614, - 0.21952266991138458, - 0.12848389148712158, - 0.09633677452802658, - 0.19681166112422943, - -0.13839873671531677, - 0.05562460422515869, - -0.007560743950307369, - -0.19483274221420288, - 0.16679741442203522, - -0.3166010081768036, - -0.07062391191720963, - 0.31550732254981995, - 0.18269464373588562, - 0.11530967801809311, - -0.012370807118713856, - -0.10057101398706436, - 0.10396616160869598, - -0.21465742588043213, - -0.3132184147834778, - -0.1957148313522339, - -0.1458921730518341, - -0.01989445462822914, - -0.5681425333023071, - 0.2194744348526001, - -0.0009315162897109985, - 0.03656891733407974, - 0.23701921105384827, - -0.12102049589157104, - -0.17208704352378845, - -0.051812708377838135, - 0.07092301547527313, - 0.1261751651763916, - -0.2683359384536743, - 0.008651318028569221, - -0.14771969616413116, - -0.04778953641653061, - -0.2970026731491089, - -0.028194475919008255, - 0.15859226882457733, - 0.12895110249519348, - -0.3457646071910858, - 0.16645152866840363, - 0.15823428332805634, - -0.5857977271080017, - -0.1420481652021408, - 0.06284819543361664, - -0.14102862775325775, - 0.348876416683197, - -0.006073593162000179, - 0.17805418372154236, - 0.4542171359062195, - 0.11078587919473648, - 0.14286144077777863, - 0.33494463562965393, - 0.39043885469436646, - -0.12349659204483032, - -0.010611413046717644, - 0.1362195611000061, - -0.28544890880584717, - -0.02167845331132412, - -0.5888930559158325, - 0.26736411452293396, - 0.10486531257629395, - 0.12899798154830933, - 0.12498937547206879, - -0.052146025002002716, - 0.17739573121070862, - -0.20172464847564697, - -0.07808282971382141, - 0.27521324157714844, - 0.0439002588391304, - 0.3505401909351349, - 0.27165788412094116, - 0.12362979352474213, - 0.456890344619751, - -0.04554905369877815, - -0.06890411674976349, - 0.20742671191692352, - -0.21730399131774902, - -0.3073647618293762, - 0.0959082767367363, - 0.2170354574918747, - 0.23280659317970276, - -0.15779171884059906, - -0.2738577425479889, - 0.2858556807041168, - -0.2116968184709549, - -0.12356128543615341, - -0.2659599184989929, - -0.16417834162712097, - -0.06512857973575592, - -0.23439428210258484, - 0.17980527877807617, - -0.06487801671028137, - 0.03441762551665306, - 0.2714279294013977, - -0.335573673248291, - -0.1563459187746048, - 0.39495086669921875, - 0.0598733052611351, - -0.4398280680179596, - 0.3569442629814148, - -0.21959352493286133, - 0.21411772072315216, - 0.2415691316127777, - -0.23799827694892883, - -0.0275203138589859, - 0.017063576728105545, - 0.2339799404144287, - -0.1449342966079712, - 0.1748427003622055, - -0.03219287097454071, - -0.03797931224107742, - 0.053762394934892654, - 0.2592673897743225, - 0.15174971520900726, - 0.1136842742562294, - 0.42255187034606934, - 0.047379471361637115, - -0.27283650636672974, - 0.12324601411819458, - -0.21107809245586395, - 0.08605097234249115, - -0.03227163851261139, - -0.06743749231100082, - -0.07294677197933197, - 0.27267852425575256, - -0.007410484366118908, - -0.265026718378067, - 0.02373521961271763, - -0.07616546005010605, - -0.09990662336349487, - -0.19171182811260223, - 0.4424431324005127, - -0.040293410420417786, - -0.20871929824352264, - 0.5981371998786926, - -0.016681332141160965, - -0.2776864171028137, - 0.4313011169433594, - 0.005187648348510265, - 0.14348891377449036, - -0.0007390171522274613, - -0.4269329011440277, - -0.20846585929393768, - 0.08971717953681946, - -0.15879306197166443, - -0.08854798972606659, - -0.0381813570857048, - -0.10957054048776627, - 0.03878896310925484, - -0.031618982553482056, - 0.037570420652627945, - 0.02869970165193081, - 0.1661781221628189, - 0.10340765863656998, - 0.40337538719177246, - -0.0632922500371933, - -0.17038527131080627, - 0.09968487918376923, - 0.09140974283218384, - -0.01250526588410139, - -0.16833749413490295, - -0.08409100770950317, - -0.02720922790467739, - 0.46356528997421265, - -0.20175714790821075, - -0.025314947590231895, - 0.0663636103272438, - -0.10444492101669312, - -0.18244223296642303, - -0.2960977852344513, - 0.1477549970149994, - -0.09990190714597702, - -0.15287050604820251, - 0.041650090366601944, - 0.01173420064151287, - 0.07396619021892548, - 0.020081523805856705, - -0.12024860084056854, - 0.07408074289560318, - 0.28869953751564026, - 0.11962145566940308, - -0.07432802766561508, - 0.35325154662132263, - 0.14265429973602295, - 0.1713699996471405, - -0.24997727572917938, - 0.29511940479278564, - 0.030739452689886093, - -0.3692754805088043, - -0.05238616466522217, - -0.15488693118095398, - -0.44822245836257935, - -0.10873015969991684, - 0.2430027425289154, - 0.20071229338645935, - -0.1258717030286789, - -0.038965895771980286, - -0.07628043740987778, - 0.026770979166030884, - -0.09105877578258514, - -0.052381910383701324, - 0.13684847950935364, - -0.02807474695146084, - 0.256748765707016, - 0.1284431517124176, - -0.5095011591911316, - -0.28800612688064575, - -0.02384519949555397, - -0.21591369807720184, - 0.17006954550743103, - 0.09644508361816406, - -0.05048646777868271, - -0.17762598395347595, - 0.02235526777803898, - -0.11447609961032867, - -0.1502404510974884, - 0.2778838574886322, - -0.13707950711250305, - 0.3155015707015991, - 0.2808328866958618, - -0.2911819517612457, - 0.02660376951098442, - -0.23990651965141296, - -0.33747658133506775, - -0.23955580592155457, - 0.18466472625732422, - 0.009571048431098461, - -0.257381796836853, - -0.13445940613746643, - -0.004590742290019989, - -0.16584929823875427, - -0.08639497309923172, - -0.11372051388025284, - -0.03149271756410599, - 0.33574503660202026, - -0.059503037482500076, - -0.18139784038066864, - 0.1278296858072281, - 0.07298298925161362, - -0.06915251165628433, - 0.1284720003604889, - 0.23369967937469482, - 0.25129440426826477, - 0.08527600765228271, - -0.10059531778097153, - 0.27520161867141724, - 0.10088445246219635, - 0.25962644815444946, - 0.26203659176826477, - -0.12423031032085419, - 0.1608431041240692, - -0.3454696238040924, - -0.2116205245256424, - 0.08308203518390656, - -0.4368212819099426, - 0.05639520287513733, - 0.1571504771709442, - 0.18229061365127563, - -0.30084556341171265, - -0.2520159184932709, - 0.09372211992740631, - 0.06560350954532623, - -0.0762154757976532, - -0.13256771862506866, - -0.08354126662015915, - -0.0016011253464967012, - -0.09548208862543106, - 0.029486704617738724, - 0.11638529598712921, - 0.33140310645103455, - 0.0867951363325119, - 0.11991649866104126, - -0.13486678898334503, - -0.3106093406677246, - 0.30515167117118835, - 0.311331570148468, - -0.047474659979343414, - 0.000635759555734694, - -0.05501333624124527, - 0.24573318660259247, - 0.33128947019577026, - 0.0862356424331665, - 0.04203740879893303, - -0.05483384057879448, - -0.049499284476041794, - 0.06382375210523605, - 0.0856262743473053, - -0.1278141289949417, - -0.011735456995666027, - -0.3894802927970886, - 0.036342039704322815, - 0.05288202688097954, - -0.17797493934631348, - 0.18720602989196777, - -0.4781675934791565, - -0.6327563524246216, - -0.008378768339753151, - 0.09345807135105133, - -0.027831245213747025, - -0.15652665495872498, - 0.210295632481575, - 0.534176230430603, - -0.010117411613464355, - -0.09219713509082794, - 0.05162297561764717, - -0.45773738622665405, - -0.134120911359787, - 0.18254640698432922, - 0.06112511083483696, - -0.08313168585300446, - 0.13736149668693542, - 0.5559831857681274, - 0.45035892724990845, - 0.2314745932817459, - -0.3566986918449402, - 0.20644590258598328, - 0.31592029333114624, - 0.2510663568973541, - -0.2930491864681244, - -10.731353759765625, - 0.04862998053431511, - -0.3188585638999939, - 0.32804444432258606, - -0.33146750926971436, - -0.0560254342854023, - 0.07343591749668121, - 0.017088308930397034, - 0.0679975301027298, - 0.1285393238067627, - -0.2852936387062073, - -0.14765837788581848, - 0.06846374273300171, - 0.2916242182254791, - 0.09349022060632706, - 0.14258766174316406, - -0.09424163401126862, - 0.2506990134716034, - 0.15114916861057281, - 0.27528461813926697, - 0.16642193496227264, - 0.40676409006118774, - -0.23998603224754333, - 0.27607059478759766, - 0.0776575431227684, - -0.2924764156341553, - -0.11448617279529572, - 0.38136714696884155, - 0.16680708527565002, - -0.2939472496509552, - 0.07823546975851059, - -0.03213023766875267, - -0.23636212944984436, - 0.0044772387482225895, - -0.2526151239871979, - -0.15451374650001526, - 0.04990076273679733, - 0.24410252273082733, - 0.2510082721710205, - -0.12669046223163605, - 0.07962235063314438, - -0.06892544776201248, - 0.2425260990858078, - 0.057691216468811035, - -0.06892422586679459, - -0.48557013273239136, - -0.15087108314037323, - -1.4740550518035889, - 0.3788347542285919, - 0.4238322377204895, - 0.3295937478542328, - 0.016429483890533447, - 0.05903347209095955, - 0.18632450699806213, - -0.21358013153076172, - 0.20488980412483215, - -0.3559091091156006, - 0.02797761559486389, - -0.09907160699367523, - 0.10354135185480118, - 0.11119399219751358, - -0.1005065068602562, - 0.5321890115737915, - -0.037488680332899094, - -0.22661232948303223, - 0.1618994027376175, - -0.00899996142834425, - -0.028053458780050278, - -0.19525526463985443, - -0.42058834433555603, - -0.41438570618629456, - 0.009322874248027802, - 0.024700414389371872, - 0.0014415502082556486, - 0.31659606099128723, - 0.016689840704202652, - -0.26710477471351624, - 0.390737384557724, - -0.01085034478455782, - 0.11493291705846786, - 0.3050146996974945, - -0.0856911689043045, - -0.0174887515604496, - -0.16887864470481873, - -0.1715092957019806, - -0.016562527045607567, - 0.16368183493614197, - 0.19937971234321594, - 0.05205193907022476, - -0.029703477397561073, - 0.22450122237205505, - 0.26133114099502563, - -0.025594305247068405, - -0.22071132063865662, - -0.4266149401664734, - -0.028872722759842873, - 0.0540560707449913, - 0.21648108959197998, - -0.0688907653093338, - 0.025538083165884018, - -0.3323007822036743, - 0.20793581008911133, - -0.1394197642803192, - -0.33915987610816956, - -0.34730929136276245, - 0.31990116834640503, - 0.2548900842666626, - 0.17785947024822235, - 0.04865370690822601, - -0.11748357862234116, - -0.020514681935310364, - 0.02124701626598835, - 0.29569774866104126, - 0.4932135045528412, - 0.24348755180835724, - -0.22339868545532227, - -0.04098835587501526, - -0.2484463006258011, - -0.12969334423542023, - 0.08278878778219223, - 0.327031672000885, - 0.09014321863651276, - 0.03604106977581978, - 0.44937825202941895, - 0.07948388159275055, - 0.08059508353471756, - 0.8134622573852539, - -0.32867690920829773, - 0.39408785104751587, - 0.0895610898733139, - 0.3642854690551758, - -0.09822408854961395, - -0.3908959925174713, - -0.009249294176697731, - 0.45607107877731323, - -0.3056427240371704, - 0.4062795042991638, - 0.163981094956398, - -0.24260754883289337, - -0.08668837696313858, - -0.22507648169994354, - 0.43144291639328003, - 0.20747098326683044, - 0.27738919854164124, - -0.16621790826320648, - -0.1904042661190033, - -0.25848060846328735, - -0.030776213854551315, - -0.21076600253582, - -0.19378426671028137, - -0.0772520899772644, - -0.0505722276866436, - -0.019702116027474403, - -0.20553115010261536, - 0.32772737741470337, - 0.1536443829536438, - -0.04502632096409798, - -0.49869346618652344, - -0.25819429755210876, - 0.05866633728146553, - 0.11492965370416641, - 0.48161250352859497, - 0.08003558218479156, - -0.05724286288022995, - -0.056733936071395874, - 0.31550753116607666, - -0.16656918823719025, - 0.18831710517406464, - 0.04821368306875229, - 0.00128183513879776, - -0.3221592307090759, - 0.22793488204479218, - 0.08622206002473831, - -0.3294474184513092, - -0.11203116178512573, - -0.18163274228572845, - 0.0842447429895401, - 0.1564849615097046, - -0.11939491331577301, - 0.22108379006385803, - 0.32407230138778687, - 0.03628622740507126, - 0.05031429976224899, - -0.27038508653640747, - 0.006122891791164875, - 0.2561357915401459, - 0.3403213620185852, - -0.07488597184419632, - -0.28012964129447937, - -0.21776294708251953, - -0.5603423714637756, - 0.02805805578827858, - -0.3674620985984802, - -0.04308294132351875, - 0.29657334089279175, - 0.04545745998620987, - -0.19705525040626526, - 0.1035865768790245, - 0.031884558498859406, - -0.30009692907333374, - -0.17086265981197357, - 0.2595962584018707, - 0.44319963455200195, - -0.38089779019355774, - 0.3074343502521515, - -0.2748555839061737, - 0.17860734462738037, - 0.20200741291046143, - -0.25985413789749146, - 0.0914209634065628, - -0.11942343413829803 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_074.json b/src/benchmark/output/results/results_graph_074.json deleted file mode 100644 index 20bd52a..0000000 --- a/src/benchmark/output/results/results_graph_074.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is an unknown female with no specified age or background information provided in the data. However, based on the clinical presentation and imaging findings, it can be inferred that she is likely a young adult.\n\n**Initial Presentation (Step 1):**\nThe patient presented with a fluid collection adjacent to the spleen, which was identified through abdominal ultrasound. The fluid collection had septations, and no malignant cells were found in the aspirated fluid.\n\n**Progression of Disease (Steps 2-5):**\nOver time, the cystic lesion in the left upper quadrant of the abdomen grew in size, with a notable increase from 7.6 x 11.7 cm to 11 x 22 cm. The patient reported feeling pressure and a pulling sensation on the left side of her abdomen, rated as 4/10 for pain. Ultrasound-guided aspiration revealed 33 mL of clear yellow fluid, which was sent to pathology and showed no evidence of malignant cells.\n\n**Imaging Findings:**\nThroughout the course of the disease, various imaging modalities were used, including ultrasound, CT scans, and MRI. These studies consistently demonstrated a large cystic mass extending from the spleen on the left to the left hemipelvis, with enhancing septations.\n\n**Treatment (Step 7):**\nThe patient received doxycycline sclerotherapy over eight months as part of her treatment plan. Post-sclerotherapy ultrasound showed no significant changes in the size or appearance of the cystic mass.\n\n**Outcome:**\nDespite the growth of the cystic lesion, the patient did not experience any symptoms that would suggest malignancy. The sclerotherapy treatment appears to have been effective in stabilizing the lesion, and further imaging studies are scheduled for follow-up.\n\nIn summary, this patient presented with a fluid collection adjacent to the spleen, which progressed over time into a large cystic mass extending from the spleen on the left to the left hemipelvis. The patient received doxycycline sclerotherapy as part of her treatment plan, and post-treatment imaging studies showed no significant changes in the size or appearance of the lesion.", - "bertscore": { - "precision": [ - 0.7009899616241455 - ], - "recall": [ - 0.6653150320053101 - ], - "f1": [ - 0.6826867461204529 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 7, - "edge_count": 6, - "avg_in_degree": 0.8571428571428571, - "density": 0.14285714285714285 - }, - "trajectory_embedding": [ - 0.37995657324790955, - 0.09801924228668213, - 0.029700586572289467, - 0.12594357132911682, - 0.10155230760574341, - 0.09751962870359421, - -0.09553129225969315, - 0.2206941395998001, - 0.4248223304748535, - -0.16399696469306946, - -0.31089702248573303, - -0.05961534380912781, - -0.545925498008728, - 0.12594513595104218, - -0.3283112645149231, - 0.15797248482704163, - -0.0726936012506485, - 0.13808110356330872, - -0.07467623800039291, - -0.230401411652565, - -0.45884889364242554, - 0.16840192675590515, - -0.37421342730522156, - -0.002563644666224718, - 0.19825102388858795, - -0.05888105183839798, - 0.35362979769706726, - 0.48598116636276245, - 0.2372424602508545, - 0.32929399609565735, - 0.2568945586681366, - -0.03116828016936779, - 0.21256186068058014, - 0.02031186781823635, - -0.06004540994763374, - 0.2603452801704407, - 0.22633515298366547, - 0.5330950021743774, - -0.05005381628870964, - 0.09714651852846146, - 0.02627384662628174, - 0.01042833924293518, - 0.7473216652870178, - 0.2562236487865448, - 0.4196780323982239, - -0.8364146947860718, - -0.000517376814968884, - 0.4777333438396454, - -0.5929005742073059, - -0.40455013513565063, - 0.21538951992988586, - 0.7955760955810547, - 0.5978747010231018, - -0.1643076241016388, - 0.3185666501522064, - -0.18994393944740295, - -0.15423810482025146, - -0.3700208067893982, - -0.33925214409828186, - -0.09597659111022949, - -0.0526815727353096, - -0.18973149359226227, - 0.1422053724527359, - -0.108767569065094, - -0.34792500734329224, - -0.1796339750289917, - -0.1651369035243988, - -0.047563642263412476, - -0.07213956862688065, - -0.2794947028160095, - -0.08152622729539871, - -0.010557140223681927, - -0.18007643520832062, - -0.017403606325387955, - 0.07476487010717392, - -0.07647428661584854, - 0.3955647349357605, - -0.15808923542499542, - 0.051303356885910034, - 0.14312902092933655, - -0.12051256746053696, - -0.03177320584654808, - 0.1489228457212448, - 0.3017025887966156, - -0.5240438580513, - 0.0015829886542633176, - -0.1602783054113388, - -0.23726974427700043, - -0.30996233224868774, - 0.22271975874900818, - 0.13667693734169006, - -0.23178228735923767, - 0.0236444603651762, - 0.019947124645113945, - -0.012596950866281986, - 0.1883441060781479, - 0.2551479935646057, - 0.38596677780151367, - 0.9295811057090759, - 0.18678845465183258, - 0.16199538111686707, - 0.17060962319374084, - 0.24650311470031738, - 0.03523850813508034, - 0.3747576177120209, - -0.01919887587428093, - 0.0992204025387764, - -0.5053381323814392, - 0.14267583191394806, - 0.15122167766094208, - -0.06995239108800888, - -0.1420145481824875, - -0.05846596136689186, - -0.08499719947576523, - 0.26948410272598267, - 0.10332638025283813, - -0.08442048728466034, - 0.04924004152417183, - 0.17249906063079834, - -0.33537524938583374, - -0.05022487789392471, - -0.07760488986968994, - 0.2646951973438263, - 0.3605910837650299, - -0.2587319016456604, - -0.03369029238820076, - -0.2535383403301239, - 0.08854810148477554, - 0.13160087168216705, - 0.14474964141845703, - -0.42608165740966797, - -0.004225836601108313, - -0.1396503746509552, - 0.221908301115036, - -0.1856192648410797, - 0.17320813238620758, - -0.35494735836982727, - 0.05256684496998787, - -1.1480152606964111, - 0.19605596363544464, - -0.3841502368450165, - -0.006509731989353895, - 0.10978672653436661, - -0.5162526369094849, - -0.06708173453807831, - -0.19396118819713593, - -0.12482210248708725, - 0.13667625188827515, - -0.018347056582570076, - 0.1603400558233261, - -0.08113069087266922, - 0.07419180124998093, - 0.34137430787086487, - 0.2806939482688904, - 0.1137097105383873, - 0.15906167030334473, - 0.07755331695079803, - 0.32156482338905334, - 0.0055593037977814674, - -0.12838676571846008, - -0.025127043947577477, - 0.28370901942253113, - 0.08226039260625839, - -0.09020189195871353, - -0.07910968363285065, - -0.586747944355011, - 0.19163911044597626, - -0.19184447824954987, - 0.25433996319770813, - -0.017567452043294907, - -0.30781441926956177, - 0.07864553481340408, - -0.37995025515556335, - 0.6156628727912903, - 0.10681413114070892, - 0.3946901857852936, - -0.11176124960184097, - -0.17329703271389008, - -0.04869617894291878, - 0.07029209285974503, - 0.10197190940380096, - -0.1370113343000412, - 0.7894839644432068, - 0.16819843649864197, - -0.07950420677661896, - 0.2423354536294937, - 0.31975334882736206, - -0.0200608279556036, - -0.28354766964912415, - -0.05729326978325844, - 0.37516874074935913, - -0.26047608256340027, - 0.477372407913208, - -0.32793352007865906, - 0.0603640042245388, - 0.09628403186798096, - -0.27923861145973206, - -0.030989142134785652, - 0.209242582321167, - 0.02517770417034626, - 0.3067164421081543, - 0.032403554767370224, - -0.2771337628364563, - 0.13135555386543274, - 0.07782643288373947, - 0.05506567284464836, - 0.3015282154083252, - 0.05968746915459633, - 0.2846646010875702, - -0.050218772143125534, - -0.07979687303304672, - 0.11240636557340622, - -0.0880211740732193, - 0.187428817152977, - 0.0137978196144104, - -0.33199504017829895, - 0.29251763224601746, - 0.025832032784819603, - -0.2305680811405182, - 0.20346692204475403, - -0.13242125511169434, - -0.2294529527425766, - -0.010386824607849121, - -0.2373780459165573, - -0.5054355263710022, - 0.2120778113603592, - 0.07724116742610931, - 0.3203694522380829, - 0.28840163350105286, - 0.11630939692258835, - 0.0843522921204567, - -0.2442571222782135, - 0.10728006809949875, - -0.12942470610141754, - -0.12881740927696228, - -0.36000803112983704, - 0.2137957364320755, - -0.2752557694911957, - -0.003968194127082825, - 0.3274936079978943, - -0.16641893982887268, - -0.20756219327449799, - 0.03983568027615547, - -0.2729133069515228, - -0.1331460028886795, - -0.3431987762451172, - 0.09842705726623535, - 0.1291016787290573, - 0.1838821917772293, - 0.24851009249687195, - -0.031012799590826035, - -0.16926300525665283, - 0.18297219276428223, - -0.15960296988487244, - -0.3437172472476959, - -0.48363879323005676, - -0.021346228197216988, - 0.07692231237888336, - -0.5759924054145813, - 0.11376823484897614, - 0.17436455190181732, - -0.13003112375736237, - -0.050318747758865356, - -0.3444478511810303, - -0.04262489825487137, - 0.1204909235239029, - -0.020992234349250793, - 0.13836073875427246, - 0.0020301532931625843, - 0.26009783148765564, - -0.22942093014717102, - -0.2508060038089752, - -0.08233727514743805, - -0.1628398895263672, - 0.08114083856344223, - 0.11445826292037964, - -0.2885421812534332, - 0.004430701490491629, - 0.15514829754829407, - -0.33929187059402466, - -0.27121350169181824, - 0.39570972323417664, - -0.17809666693210602, - 0.09738986939191818, - 0.06274087727069855, - 0.2423219382762909, - 0.17938974499702454, - -0.007644993718713522, - 0.13662517070770264, - 0.5079261660575867, - 0.5058150291442871, - -0.002438613446429372, - -0.051615159958601, - -0.013487345539033413, - 0.06108113005757332, - -0.0810045376420021, - -0.47588029503822327, - 0.35241007804870605, - 0.12438230961561203, - -0.022784385830163956, - -0.1594230681657791, - 0.2839639186859131, - 0.028176410123705864, - -0.42326289415359497, - -0.2542061507701874, - 0.5551326274871826, - 0.24816347658634186, - -0.04103132709860802, - -0.05459409952163696, - 0.4102260172367096, - 0.47135406732559204, - -0.1475778967142105, - -0.046225227415561676, - -0.10576371103525162, - -0.03395043686032295, - 0.011244518682360649, - -0.12956266105175018, - 0.08546238392591476, - 0.42741870880126953, - -0.16566692292690277, - -0.045255597680807114, - 0.24098530411720276, - -0.09031276404857635, - -0.1327068954706192, - -0.19221661984920502, - -0.05484132096171379, - 0.026008915156126022, - -0.13336940109729767, - 0.29434606432914734, - 0.016346288844943047, - -0.14489005506038666, - 0.5130201578140259, - -0.2209785282611847, - -0.11640842258930206, - 0.031207213178277016, - -0.15411090850830078, - -0.36458662152290344, - 0.48960304260253906, - -0.24959087371826172, - -0.16240628063678741, - 0.4750869572162628, - -0.05579386278986931, - -0.003918517846614122, - -0.21311834454536438, - 0.4977683424949646, - -0.03374994546175003, - -0.12895527482032776, - -0.06601860374212265, - 0.06383255869150162, - 0.2116803377866745, - 0.7112784385681152, - 0.24886974692344666, - 0.26290541887283325, - 0.5474045276641846, - 0.1937641203403473, - -0.39962291717529297, - -0.05210968479514122, - 0.17879709601402283, - 0.32930508255958557, - -0.18192903697490692, - 0.04527191445231438, - -0.2038271725177765, - -0.045169439166784286, - 0.2012123167514801, - -0.31228846311569214, - 0.032264966517686844, - 0.2772414982318878, - 0.18482588231563568, - 0.08131016790866852, - 0.06595318019390106, - 0.12481772899627686, - -0.1587267965078354, - 0.36972951889038086, - -0.054978806525468826, - 0.03664937987923622, - 0.2202943116426468, - -0.22281673550605774, - 0.2837558686733246, - -0.1451645791530609, - -0.305817186832428, - -0.29813793301582336, - -0.061553001403808594, - -0.19008640944957733, - -0.25722455978393555, - 0.029829103499650955, - -0.1286444514989853, - 0.04832107573747635, - -0.29580602049827576, - 0.3301613926887512, - 0.026412632316350937, - 0.2703469395637512, - 0.12473652511835098, - 0.45020297169685364, - 0.0680600181221962, - -0.33683493733406067, - 0.14152637124061584, - -0.0906151533126831, - 0.10293073952198029, - -0.3256339132785797, - -0.08019039779901505, - -0.08885722607374191, - 0.4913967549800873, - 0.07968335598707199, - -0.04253444820642471, - -0.041778236627578735, - 0.11386442184448242, - -0.09062569588422775, - -0.40395182371139526, - -0.2160898894071579, - -0.20846907794475555, - 0.009410346858203411, - -0.040480442345142365, - 0.1513473242521286, - -0.3172982633113861, - -0.37204232811927795, - -0.11877298355102539, - 0.06637699902057648, - 0.24262240529060364, - -0.20356817543506622, - 0.051173243671655655, - 0.3762260377407074, - 0.13089516758918762, - 0.34144333004951477, - -0.09274134784936905, - 0.12101983278989792, - 0.22923634946346283, - -0.36679890751838684, - -0.07128846645355225, - 0.07605759054422379, - -0.4967430531978607, - -0.2725875973701477, - 0.28985223174095154, - 0.1582464873790741, - 0.14206473529338837, - -0.029324963688850403, - 0.0828104168176651, - 0.22078970074653625, - -0.43010759353637695, - -0.07443193346261978, - 0.2603622376918793, - 0.35916659235954285, - 0.38706716895103455, - -0.07034778594970703, - -0.43161970376968384, - -0.29155439138412476, - -0.1570243388414383, - -0.38972118496894836, - 0.13986770808696747, - 0.1429203897714615, - -0.15219150483608246, - -0.14774684607982635, - 0.0766138955950737, - -0.11019197851419449, - -0.07156208902597427, - 0.36617976427078247, - -0.04210776463150978, - 0.13302408158779144, - -0.038639314472675323, - -0.23136751353740692, - -0.14230073988437653, - -0.1415536254644394, - -0.27027660608291626, - -0.329255074262619, - 0.41802266240119934, - 0.31522509455680847, - -0.2677532136440277, - 0.06844540685415268, - 0.18795347213745117, - -0.23568645119667053, - -0.1506429761648178, - -0.05028267577290535, - -0.23699530959129333, - 0.3191778361797333, - 0.07562350481748581, - -0.22345854341983795, - 0.05637361854314804, - -0.3477286398410797, - 0.13604339957237244, - 0.16756485402584076, - 0.0913146585226059, - 0.5264246463775635, - 0.259994238615036, - 0.21286983788013458, - 0.4868946373462677, - -0.05619483068585396, - -0.11250904947519302, - 0.122774638235569, - 0.11811138689517975, - -0.02638634480535984, - -0.33726605772972107, - -0.2917758524417877, - 0.3046490252017975, - -0.2856607139110565, - 0.049223508685827255, - 0.36503008008003235, - 0.19397734105587006, - -0.42573466897010803, - -0.21536943316459656, - -0.11695005744695663, - 0.06905940920114517, - -0.11133057624101639, - -0.2563154697418213, - -0.08291972428560257, - 0.057241495698690414, - -0.30275487899780273, - -0.07605274766683578, - 0.3041597902774811, - 0.433889240026474, - 0.1465456634759903, - 0.03412970155477524, - -0.38994136452674866, - -0.4159722328186035, - 0.0940321832895279, - 0.23996415734291077, - -0.04011116176843643, - -0.0991034135222435, - -0.29198047518730164, - 0.023102272301912308, - 0.48434287309646606, - -0.07548333704471588, - 0.03373415023088455, - 0.10176242887973785, - -0.06307227164506912, - 0.09136135131120682, - 0.139975443482399, - 0.053977254778146744, - 0.02194300852715969, - -0.3653024137020111, - 0.34197500348091125, - -0.19960835576057434, - -0.13359884917736053, - 0.1813196837902069, - 0.06455648690462112, - -0.3188205361366272, - -0.4104425609111786, - 0.4396914541721344, - -0.21566851437091827, - -0.11718641966581345, - -0.07141082733869553, - 0.4281046688556671, - -0.013657866977155209, - -0.2886578142642975, - 0.08933538943529129, - -0.4452657699584961, - -0.1127772405743599, - 0.1089206412434578, - -0.1703837662935257, - -0.09747439622879028, - -0.1491556465625763, - 0.2755518853664398, - 0.46370190382003784, - 0.13232271373271942, - -0.28244131803512573, - -0.08030446618795395, - 0.3003416061401367, - 0.20794597268104553, - -0.15605412423610687, - -10.821137428283691, - 0.07166632264852524, - -0.1505032330751419, - 0.6149778366088867, - -0.27706030011177063, - -0.03804642707109451, - 0.28296658396720886, - -0.055307839065790176, - 0.18252743780612946, - 0.11978350579738617, - -0.20182767510414124, - 0.13750223815441132, - 0.31941238045692444, - 0.16238471865653992, - -0.12446495145559311, - -0.04245349019765854, - -0.25090858340263367, - 0.1522710770368576, - -0.13911917805671692, - 0.23711861670017242, - 0.1290946900844574, - 0.28213900327682495, - -0.25027620792388916, - 0.3394520580768585, - 0.12081465870141983, - -0.3219100534915924, - -0.21894630789756775, - 0.7313545942306519, - 0.06483325362205505, - -0.17339764535427094, - 0.31810328364372253, - 0.34713298082351685, - -0.2376079559326172, - 0.05275648087263107, - -0.09874344617128372, - -0.12670518457889557, - 0.0960308387875557, - 0.05677909031510353, - 0.24223005771636963, - 0.004201292991638184, - -0.058505672961473465, - -0.31525251269340515, - 0.3759646415710449, - 0.21020841598510742, - -0.22195680439472198, - -0.4385775923728943, - -0.026129351928830147, - -1.478589653968811, - 0.12578800320625305, - 0.17339526116847992, - 0.38787204027175903, - 0.09360547363758087, - 0.31952252984046936, - 0.012759238481521606, - -0.41150689125061035, - 0.18061377108097076, - -0.37527260184288025, - -0.0863092765212059, - -0.019355518743395805, - 0.018429305404424667, - 0.08877609670162201, - -0.2149476706981659, - 0.46419769525527954, - -0.17458681762218475, - -0.43142130970954895, - 0.11288626492023468, - 0.07445921003818512, - 0.12628164887428284, - -0.11945603042840958, - -0.38261833786964417, - -0.5283170342445374, - -0.08888468891382217, - -0.045344386249780655, - -0.05548547953367233, - 0.5140365362167358, - 0.18226051330566406, - -0.39427682757377625, - 0.3037468492984772, - -0.08763206005096436, - 0.39484742283821106, - 0.13341321051120758, - -0.14059601724147797, - 0.1915351152420044, - -0.13258162140846252, - -0.34495028853416443, - -0.1213214248418808, - 0.13526709377765656, - 0.4893025755882263, - 0.0487591028213501, - 0.030913488939404488, - 0.006703980732709169, - 0.3817351460456848, - -0.11707624047994614, - -0.27272289991378784, - -0.41967275738716125, - 0.07028400897979736, - -0.24211427569389343, - 0.11122997850179672, - 0.044782619923353195, - -0.0412275567650795, - -0.2315467894077301, - 0.06260370463132858, - 0.022414233535528183, - -0.5007809996604919, - -0.4019578993320465, - 0.30645158886909485, - 0.10654999315738678, - 0.4325349032878876, - 0.06229427084326744, - -0.20297692716121674, - -0.2986350357532501, - -0.011530312709510326, - 0.10124281793832779, - 0.6350119709968567, - -0.0023636179976165295, - -0.023279715329408646, - 0.017329039052128792, - -0.46684056520462036, - -0.25323957204818726, - 0.06903299689292908, - 0.34610384702682495, - -0.12704606354236603, - 0.231996089220047, - 0.6985863447189331, - 0.06540343910455704, - -0.205169215798378, - 1.0532562732696533, - -0.18552327156066895, - 0.10639381408691406, - -0.15420426428318024, - 0.2088264524936676, - -0.1638656109571457, - -0.25836676359176636, - 0.029533471912145615, - 0.5921178460121155, - -0.3884141147136688, - 0.7821306586265564, - 0.14494366943836212, - -0.39747023582458496, - 0.1607729196548462, - -0.3863277733325958, - 0.5246726274490356, - 0.3249935209751129, - 0.33247318863868713, - -0.14822350442409515, - -0.33232712745666504, - -0.10402630269527435, - 0.09154355525970459, - -0.458811491727829, - -0.20017090439796448, - -0.17602379620075226, - 0.1441136598587036, - 0.11163701862096786, - -0.2810453474521637, - 0.40791767835617065, - 0.14591684937477112, - -0.22489747405052185, - -0.4181624948978424, - -0.4583265781402588, - -0.03487362340092659, - 0.1333482712507248, - 0.8185035586357117, - -0.05929122120141983, - 0.03213487192988396, - -0.07802440226078033, - 0.01983635313808918, - -0.13263921439647675, - 0.16796091198921204, - 0.09266303479671478, - -0.10181672126054764, - -0.48844113945961, - 0.20073963701725006, - 0.019214781001210213, - -0.28359827399253845, - -0.19081313908100128, - -0.17977015674114227, - -0.04096474498510361, - -0.11055684089660645, - -0.27811509370803833, - 0.06136731430888176, - 0.29513970017433167, - -0.18971887230873108, - 0.04308944568037987, - -0.2796589732170105, - 0.13607721030712128, - 0.0892738550901413, - 0.39275088906288147, - -0.010025350376963615, - -0.25946077704429626, - -0.33738401532173157, - -0.413753479719162, - 0.24785423278808594, - -0.09910101443529129, - -0.006313375197350979, - 0.17575649917125702, - 0.21268554031848907, - -0.2925707697868347, - -0.07847266644239426, - -0.27649813890457153, - 0.06564453989267349, - -0.3149513304233551, - 0.18248412013053894, - 0.45127275586128235, - -0.20536358654499054, - 0.024198921397328377, - -0.13917332887649536, - 0.1625182181596756, - 0.053632061928510666, - -0.3890143036842346, - 0.3093743324279785, - -0.13650336861610413 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_075.json b/src/benchmark/output/results/results_graph_075.json deleted file mode 100644 index 5dee9f7..0000000 --- a/src/benchmark/output/results/results_graph_075.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 77-year-old man with a history of smoking, hypertension, benign prostatic hyperplasia, and hyperuricemia. He was admitted for his first cycle of chemotherapy for stage IV small cell lung cancer without cerebral metastases.\n\n**Timeline of Diagnoses:**\n\n1. **Initial Diagnosis:** The patient's diagnosis of stage IV small cell lung cancer was confirmed upon admission.\n2. **Somnolence and Right-Sided Weakness:** 30 minutes after chemotherapy premedication, the patient experienced a sudden change in mental status, progressing to somnolence. Physical examination revealed altered mental status and right-sided weakness (N2).\n3. **Neurological Examination:** The patient's neurological examination showed signs of reduced mobility on the right side, accompanied by right facial paresis (N3).\n4. **Blood Gas Analysis and Brain CT Angiography:** Blood gas analysis showed no respiratory, metabolic, or electrolyte abnormalities, while brain CT angiography did not reveal any vascular lesions or thrombi in major vessels (N4).\n\n**Timeline of Treatments:**\n\n1. **Chemotherapy Premedication:** The patient received 4 mg intravenous ondansetron and 8 mg intravenous dexamethasone as premedication for chemotherapy.\n2. **Aspirin Administration:** Due to the suspicion of a transient ischemic event, a loading dose of 300 mg of aspirin was administered, followed by a daily dose of 100 mg of aspirin (N6).\n\n**Outcome:**\n\nThe patient gradually became more alert approximately one hour after the onset of symptoms and returned to his baseline mental status without any neurological deficits by one hour and thirty minutes after onset. The suspicion of a transient ischemic event as the primary cause of the symptoms was confirmed, and the patient's condition improved with the administration of aspirin.\n\n**Conclusion:**\n\nThis case highlights the importance of prompt recognition and management of acute neurological events in patients undergoing chemotherapy for cancer. Early intervention with aspirin may have contributed to the patient's rapid recovery from a suspected transient ischemic event. Further evaluation and monitoring are necessary to ensure that this patient does not experience any further complications related to his cancer treatment or underlying medical conditions.", - "bertscore": { - "precision": [ - 0.7189599275588989 - ], - "recall": [ - 0.7112793326377869 - ], - "f1": [ - 0.715099036693573 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 6, - "edge_count": 5, - "avg_in_degree": 0.8333333333333334, - "density": 0.16666666666666666 - }, - "trajectory_embedding": [ - 0.045807287096977234, - 0.11770268529653549, - -0.03572636470198631, - 0.021092357113957405, - 0.07645720988512039, - 0.007500001695007086, - 0.008010799996554852, - 0.14289645850658417, - 0.3722045123577118, - -0.33858588337898254, - -0.3850763738155365, - 0.18912379443645477, - -0.6559848189353943, - -0.16191299259662628, - -0.20137447118759155, - 0.0759354755282402, - 0.2702353894710541, - 0.16936542093753815, - 0.07835409790277481, - -0.3299759030342102, - -0.18143773078918457, - 0.11674398928880692, - -0.3384394347667694, - -0.17969034612178802, - 0.04424552246928215, - 0.19640791416168213, - 0.24683980643749237, - 0.49727484583854675, - 0.19678841531276703, - 0.1909312754869461, - 0.11201261729001999, - 0.19997799396514893, - -0.3539782464504242, - 0.11559206992387772, - -0.031568095088005066, - 0.408315509557724, - 0.19176192581653595, - 0.12137612700462341, - -0.03553854301571846, - -0.0301413144916296, - -0.1159721240401268, - 0.16482952237129211, - 0.595913827419281, - 0.42103350162506104, - 0.42424169182777405, - -0.825439989566803, - 0.08158329874277115, - 0.5744253993034363, - -0.3093647360801697, - -0.08049822598695755, - 0.21942491829395294, - 0.7388144135475159, - 0.6383765339851379, - 0.03873066231608391, - 0.5087663531303406, - 0.0825551226735115, - -0.3178311288356781, - -0.266065388917923, - -0.09997441619634628, - 0.12857599556446075, - -0.02170816995203495, - -0.07240775972604752, - 0.1888861060142517, - 0.24537062644958496, - -0.16507436335086823, - -0.15687721967697144, - -0.08168644458055496, - 0.07287833839654922, - -0.04427901282906532, - -0.4269390404224396, - -0.22114895284175873, - -0.3795653283596039, - -0.21332170069217682, - -0.022721821442246437, - 0.2507433593273163, - -0.1632072478532791, - 0.32238805294036865, - -0.13584774732589722, - -0.08217250555753708, - -0.1777264028787613, - 0.17538075149059296, - 0.17397461831569672, - -0.001024814904667437, - 0.10224354267120361, - -0.3581933081150055, - 0.23766402900218964, - -0.13690929114818573, - 0.11173954606056213, - -0.169885516166687, - 0.20873981714248657, - 0.06642169505357742, - -0.15311281383037567, - -0.011820261366665363, - -0.23973910510540009, - 0.1116490438580513, - -0.2871513068675995, - 0.17431245744228363, - 0.41358256340026855, - 0.9696435928344727, - -0.033063702285289764, - 0.27619078755378723, - 0.08359523862600327, - 0.36440756916999817, - -0.1718911975622177, - 0.6718617081642151, - -0.20658451318740845, - 0.16106708347797394, - -0.6716086864471436, - -0.282492071390152, - 0.18218117952346802, - -0.055064912885427475, - -0.3005070686340332, - 0.21839416027069092, - -0.43593910336494446, - -0.06691485643386841, - -0.013505811803042889, - -0.18712656199932098, - 0.04444829747080803, - -0.14876608550548553, - -0.31808018684387207, - 0.1609577238559723, - -0.17569458484649658, - 0.21265320479869843, - 0.30232834815979004, - -0.28047171235084534, - 0.14037325978279114, - -0.19971276819705963, - 0.3113831579685211, - 0.07889438420534134, - 0.21075396239757538, - -0.5272453427314758, - -0.0786275640130043, - -0.18754899501800537, - 0.4771214425563812, - 0.07079669088125229, - 0.10337550193071365, - -0.43884432315826416, - 0.27645444869995117, - -1.112174153327942, - 0.18329882621765137, - -0.24874530732631683, - -0.07672900706529617, - 0.17637914419174194, - -0.5260199308395386, - -0.23057429492473602, - -0.20318703353405, - -0.1930892914533615, - -0.0379716232419014, - 0.0071329474449157715, - -0.025361694395542145, - -0.2191867232322693, - -0.04551468417048454, - 0.31813332438468933, - 0.11107144504785538, - 0.07724209129810333, - 0.005266269668936729, - 0.17813818156719208, - 0.43489304184913635, - 0.2410293072462082, - -0.0921410322189331, - 0.11332813650369644, - 0.3278353214263916, - -0.14688603579998016, - -0.13512970507144928, - 0.251478374004364, - -0.6765346527099609, - 0.2792581617832184, - -0.2946648895740509, - 0.1759146898984909, - 0.038616348057985306, - -0.01827198825776577, - 0.1887245625257492, - -0.009888127446174622, - 0.5408356785774231, - 0.41578200459480286, - 0.45262014865875244, - 0.2340223342180252, - 0.010576675646007061, - 0.42736324667930603, - -0.09995642304420471, - 0.04484429955482483, - -0.07524427771568298, - 0.5264602303504944, - -0.009831699542701244, - -0.06505990773439407, - 0.2181854248046875, - 0.053839679807424545, - 0.06986883282661438, - -0.21507632732391357, - -0.13911765813827515, - 0.49655628204345703, - -0.33767402172088623, - 0.22505827248096466, - -0.31729987263679504, - -0.056519728153944016, - 0.09553543478250504, - -0.27626949548721313, - -0.2180691510438919, - -0.008334065787494183, - -0.07525476068258286, - 0.21599239110946655, - -0.03826938569545746, - -0.17923204600811005, - 0.19359922409057617, - 0.07805749028921127, - -0.1676754355430603, - 0.28698623180389404, - 0.02617894671857357, - -0.08517620712518692, - -0.16556791961193085, - -0.2392870932817459, - 0.2431897670030594, - -0.09607527405023575, - 0.1559644639492035, - 0.0509478785097599, - -0.19185946881771088, - 0.10511285066604614, - 0.03735724836587906, - -0.11670611053705215, - 0.1444745808839798, - -0.014770898036658764, - 0.15270490944385529, - 0.19065403938293457, - -0.13778145611286163, - -0.1578330397605896, - 0.30939483642578125, - 0.20108662545681, - 0.32657045125961304, - 0.07512149959802628, - -0.07247340679168701, - 0.15850992500782013, - -0.4860957860946655, - 0.04784030094742775, - -0.21473844349384308, - -0.201835036277771, - -0.47435662150382996, - 0.13540154695510864, - -0.04352383688092232, - -0.0712183266878128, - 0.24528361856937408, - -0.045626137405633926, - -0.09772226214408875, - 0.27391868829727173, - -0.07962411642074585, - -0.020101651549339294, - -0.4095834195613861, - -0.004720285534858704, - 0.4269004166126251, - 0.17443300783634186, - 0.22078071534633636, - -0.00587116414681077, - 0.0842377170920372, - 0.26104435324668884, - -0.1987699419260025, - -0.05484320595860481, - -0.4986896812915802, - -0.22078990936279297, - 0.1685221642255783, - -0.05971812829375267, - 0.06834506243467331, - 0.1094297245144844, - -0.14885027706623077, - 0.19028140604496002, - -0.04543418064713478, - -0.1554095447063446, - -0.14318221807479858, - 0.04609036445617676, - 0.07446836680173874, - 0.042161956429481506, - -0.10644064098596573, - -0.035189539194107056, - 0.04036230966448784, - -0.10374176502227783, - 0.12326893955469131, - 0.10584583133459091, - 0.143638014793396, - 0.04855826497077942, - 0.05617004632949829, - 0.21348953247070312, - -0.4096660614013672, - -0.5108349919319153, - 0.479423850774765, - -0.3253072500228882, - 0.5201472640037537, - -0.13545110821723938, - 0.22627592086791992, - 0.371024489402771, - -0.19324658811092377, - 0.01853490062057972, - 0.19200026988983154, - 0.45755982398986816, - 0.10106930881738663, - -0.02922132797539234, - -0.032825764268636703, - -0.033041033893823624, - 0.06723950058221817, - -0.47247323393821716, - 0.43418288230895996, - -0.19741666316986084, - -0.0027700464706867933, - 0.1406158059835434, - 0.16028419137001038, - 0.03392818197607994, - -0.36659908294677734, - -0.13780824840068817, - 0.48312613368034363, - 0.018238360062241554, - 0.08293566852807999, - 0.0590650774538517, - 0.38490214943885803, - 0.7467427253723145, - 0.02574780583381653, - -0.2764786183834076, - -0.11286959797143936, - -0.23064981400966644, - -0.25624313950538635, - 0.02088029868900776, - 0.08916089683771133, - 0.18534095585346222, - -0.009047550149261951, - -0.1779106855392456, - 0.3416960537433624, - -0.2659137547016144, - -0.198065385222435, - -0.02053266204893589, - 0.006016825791448355, - 0.10181015729904175, - -0.08950414508581161, - 0.24835817515850067, - -0.27386221289634705, - -0.0984625443816185, - 0.3747667074203491, - -0.23240776360034943, - -0.3240988552570343, - 0.22793002426624298, - 0.06194997951388359, - -0.6331691741943359, - 0.2460654228925705, - -0.10044597834348679, - -0.08023614436388016, - 0.11951855570077896, - -0.009397647343575954, - -0.1930791139602661, - -0.31534865498542786, - 0.16545869410037994, - 0.06166355311870575, - -0.023651519790291786, - -0.05672217532992363, - -0.060841742902994156, - 0.11141743510961533, - 0.44699594378471375, - 0.20271320641040802, - 0.1312423199415207, - 0.2800409495830536, - -0.23160766065120697, - -0.260114848613739, - -0.2224413901567459, - 0.006538711953908205, - 0.044628530740737915, - -0.31662631034851074, - -0.2851118743419647, - -0.1803547590970993, - 0.08842998743057251, - 0.35940292477607727, - -0.23928220570087433, - -0.10435357689857483, - 0.24953393638134003, - -0.045280229300260544, - -0.11500551551580429, - 0.32683178782463074, - 0.27548274397850037, - 0.002886255504563451, - 0.5633960366249084, - 0.03968578204512596, - -0.10894442349672318, - -0.033160533756017685, - -0.11194396018981934, - 0.28863832354545593, - -0.23651070892810822, - -0.4654752016067505, - -0.418099969625473, - 0.013085191138088703, - -0.2764267325401306, - -0.22765354812145233, - -0.06392227858304977, - -0.15067128837108612, - 0.10199207067489624, - 0.09312397241592407, - 0.19613100588321686, - 0.10900219529867172, - 0.17412912845611572, - -0.0817377045750618, - 0.4398547112941742, - -0.08249333500862122, - -0.2312345653772354, - 0.08181030303239822, - -0.06795352697372437, - 0.18233443796634674, - -0.0873120129108429, - -0.13699525594711304, - 0.003160859225317836, - 0.3276028335094452, - -0.09173407405614853, - -0.15781940519809723, - -0.13528122007846832, - -0.0024451911449432373, - -0.19121749699115753, - -0.33213579654693604, - -0.08850429207086563, - -0.1823796033859253, - -0.17562620341777802, - -0.11567753553390503, - 0.012981097213923931, - 0.05055880546569824, - -0.23257751762866974, - -0.012304077856242657, - 0.25431469082832336, - 0.28051188588142395, - 0.03017864190042019, - 0.27644675970077515, - 0.23462329804897308, - 0.062029119580984116, - 0.2311794012784958, - -0.08465990424156189, - 0.0925050750374794, - 0.06931477785110474, - -0.45069578289985657, - 0.02485833130776882, - 0.020732318982481956, - 0.11114931106567383, - -0.05347574129700661, - 0.04294453561306, - 0.3005938231945038, - 0.017919473350048065, - 0.0663289949297905, - 0.04522983357310295, - 0.054140884429216385, - -0.16539344191551208, - -0.08208431303501129, - 0.26937246322631836, - -0.10211315751075745, - 0.3584200143814087, - -0.04590592905879021, - -0.28549644351005554, - -0.24206280708312988, - -0.019471677020192146, - -0.3255821764469147, - 0.16466781497001648, - -0.044800933450460434, - -0.39803001284599304, - -0.049368929117918015, - 0.207502543926239, - -0.05322727560997009, - 0.06965098530054092, - 0.2017693966627121, - 0.1949002742767334, - 0.20946061611175537, - -0.2025788575410843, - -0.37732183933258057, - 0.0778084471821785, - -0.22756178677082062, - -0.3567558825016022, - -0.2655130922794342, - 0.3932616710662842, - 0.36519065499305725, - -0.12031441181898117, - -0.02142954431474209, - -0.023034000769257545, - -0.21062660217285156, - -0.516217052936554, - -0.07920899242162704, - -0.1171727403998375, - 0.5185403227806091, - 0.006964618805795908, - -0.21098293364048004, - 0.06525247544050217, - -0.29541918635368347, - 0.1513662487268448, - 0.36459028720855713, - -0.0002842073736246675, - 0.2876196801662445, - 0.33813175559043884, - 0.15945278108119965, - 0.2714601755142212, - 0.25497451424598694, - 0.015865279361605644, - 0.15562516450881958, - -0.03303305432200432, - 0.36623916029930115, - -0.08988836407661438, - -0.031013989821076393, - 0.30426153540611267, - -0.18487049639225006, - 0.31742721796035767, - 0.10855990648269653, - 0.3368889391422272, - -0.3676564693450928, - -0.30894598364830017, - -0.11257509142160416, - -0.2964707612991333, - -0.15796317160129547, - -0.26654598116874695, - 0.07596386969089508, - 0.14172467589378357, - -0.03332973271608353, - -0.02233228273689747, - 0.10226302593946457, - 0.06007678434252739, - 0.12070644646883011, - -0.09412562847137451, - -0.1100994125008583, - -0.5099721550941467, - -0.017193228006362915, - 0.4679844081401825, - -0.09347512573003769, - -0.27180421352386475, - -0.054054439067840576, - 0.1782311052083969, - 0.3806983530521393, - -0.03514458239078522, - -0.12807129323482513, - -0.11974363774061203, - -0.028948253020644188, - -0.03484257683157921, - 0.16952501237392426, - -0.08431141823530197, - 0.2805462181568146, - -0.3047405779361725, - 0.09282463043928146, - -0.08384589105844498, - -0.3484751284122467, - 0.21448807418346405, - -0.3169567286968231, - -0.589252769947052, - 0.19485588371753693, - 0.32439231872558594, - 0.187123641371727, - 0.03689095005393028, - 0.16865180432796478, - 0.5078623294830322, - 0.04753690958023071, - -0.08345508575439453, - -0.02967919409275055, - -0.39215484261512756, - 0.23056809604167938, - 0.006667591631412506, - -0.18089079856872559, - 0.14338625967502594, - -0.09725946187973022, - 0.3044348359107971, - 0.29591554403305054, - -0.08778408169746399, - -0.4849074184894562, - 0.18375559151172638, - 0.1615869551897049, - 0.4971350133419037, - -0.3819853365421295, - -10.784584999084473, - 0.07432346791028976, - -0.13066285848617554, - 0.40988993644714355, - -0.22827774286270142, - 0.08938691765069962, - -0.08332996815443039, - -0.07639814913272858, - -0.03603735566139221, - 0.07136651128530502, - -0.36214983463287354, - 0.08152792602777481, - 0.34609243273735046, - 0.19340276718139648, - 0.061928629875183105, - -0.0696096122264862, - -0.2490527182817459, - 0.32531896233558655, - 0.12854351103305817, - 0.49040746688842773, - 0.06591958552598953, - 0.3692816197872162, - -0.08876323699951172, - 0.3140319585800171, - 0.05634321644902229, - -0.24968500435352325, - -0.07500339299440384, - 0.45240119099617004, - -0.04083656147122383, - -0.46719929575920105, - 0.14255836606025696, - 0.16099637746810913, - -0.267530232667923, - -0.17878036201000214, - 0.023350156843662262, - -0.526637613773346, - -0.15053056180477142, - -0.006377881858497858, - 0.10716927796602249, - -0.0432642437517643, - 0.1161072850227356, - -0.1319752186536789, - -0.1061578020453453, - 0.38084712624549866, - -0.15933924913406372, - -0.629843533039093, - -0.14984317123889923, - -1.410626769065857, - 0.09585443884134293, - 0.4477544128894806, - 0.6733363270759583, - 0.06669875234365463, - 0.03272247314453125, - 0.10794716328382492, - -0.29961487650871277, - 0.3287826180458069, - -0.29620227217674255, - -0.004936398472636938, - 0.12386378645896912, - -0.09463632851839066, - 0.08716341853141785, - -0.08781584352254868, - 0.35632118582725525, - -0.4679558575153351, - -0.39591240882873535, - 0.12213527411222458, - -0.020555978640913963, - -0.08689723163843155, - -0.307513952255249, - -0.29978108406066895, - -0.35751625895500183, - -0.1426488161087036, - 0.01914580725133419, - 0.2691231071949005, - 0.5876139402389526, - 0.08908075094223022, - -0.5416000485420227, - 0.21136508882045746, - -0.23498564958572388, - 0.33110347390174866, - 0.06713372468948364, - -0.041269127279520035, - 0.03301684930920601, - -0.021819211542606354, - 0.031122028827667236, - -0.2836107909679413, - 0.11273357272148132, - 0.3210299611091614, - 0.01933843456208706, - 0.14997528493404388, - 0.00876593217253685, - 0.16449572145938873, - -0.08006290346384048, - -0.0046418956480920315, - -0.4767606258392334, - -0.057115111500024796, - -0.07196276634931564, - -0.10607392340898514, - 0.12266042828559875, - 0.17111603915691376, - -0.2426711767911911, - 0.12196645885705948, - -0.1711072325706482, - -0.26344406604766846, - -0.1831149309873581, - 0.3596714735031128, - 0.13474994897842407, - 0.09868946671485901, - 0.30858659744262695, - 0.07065614312887192, - 0.38284948468208313, - 0.10573241859674454, - 0.2893829345703125, - 0.41628849506378174, - 0.08404768258333206, - 0.037672948092222214, - -0.3271804451942444, - -0.16851353645324707, - -0.165676087141037, - 0.2403445988893509, - 0.3940105736255646, - -0.1632397472858429, - 0.1272577941417694, - 0.37807798385620117, - -0.03602704033255577, - 0.03403973579406738, - 0.9958648085594177, - -0.26264798641204834, - 0.4271481931209564, - -0.19224387407302856, - 0.2388107180595398, - -0.08013186603784561, - -0.17183659970760345, - 0.036771662533283234, - 0.2687005400657654, - -0.4412323534488678, - 0.25463226437568665, - 0.11078793555498123, - -0.3571939766407013, - 0.12838415801525116, - -0.32131707668304443, - 0.3560607433319092, - 0.37096476554870605, - 0.27762413024902344, - -0.06758014112710953, - -0.30936291813850403, - -0.22267447412014008, - 0.16040579974651337, - -0.5422574877738953, - -0.07723230868577957, - -0.10878738015890121, - -0.06900815665721893, - -0.059842485934495926, - -0.35485151410102844, - 0.23085857927799225, - -0.12131821364164352, - -0.0851445123553276, - -0.13702623546123505, - -0.4343409240245819, - -0.02115156687796116, - -0.1245972290635109, - 0.39238253235816956, - 0.0768936276435852, - -0.012623813934624195, - -0.039749037474393845, - 0.4451514780521393, - -0.03305370733141899, - 0.16015847027301788, - -0.03553462401032448, - 0.23680870234966278, - -0.46492233872413635, - -0.01829594559967518, - 0.13811343908309937, - -0.4061249792575836, - -0.26684466004371643, - -0.432390958070755, - 0.21755091845989227, - 0.13445784151554108, - -0.14616286754608154, - 0.4630083739757538, - 0.383459210395813, - 0.050667840987443924, - 0.0938803181052208, - -0.20945651829242706, - 0.3067765533924103, - -0.005457527935504913, - 0.14412924647331238, - 0.22710393369197845, - -0.27725207805633545, - -0.32695698738098145, - -0.3887687027454376, - 0.11401631683111191, - -0.2862842381000519, - -0.09186277538537979, - -0.01145879179239273, - 0.18655572831630707, - -0.18580882251262665, - 0.10415151715278625, - -0.3394136130809784, - -0.04606887698173523, - -0.09992384165525436, - 0.08843109756708145, - 0.31171372532844543, - -0.37404143810272217, - 0.04647715017199516, - -0.25522148609161377, - 0.2199818640947342, - 0.05082905292510986, - -0.3675343990325928, - 0.21184532344341278, - 0.1365559846162796 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_076.json b/src/benchmark/output/results/results_graph_076.json deleted file mode 100644 index 89446f3..0000000 --- a/src/benchmark/output/results/results_graph_076.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 37-year-old woman diagnosed with left lung adenocarcinoma in November 2019. She has extensive bone metastases (cT4N3M1c, stage IVB).\n\n**Timeline of Diagnoses and Treatments:**\n\n1. **November 2019:** The patient was diagnosed with left lung adenocarcinoma and had a baseline chest CT scan and head MRI performed.\n2. **December 2019:** Tumor tissue NGS revealed EGFR exon 18 p.G719S mutation and EGFR exon 20 p.S768I mutation, which led to the initiation of first-line afatinib treatment (40 mg daily po).\n3. **January 2020 - October 2020:** The patient experienced therapeutic failure after 10 months of afatinib treatment, as indicated by time to failure.\n4. **October 2020:** The patient developed new brain lesions and had a partial response on afatinib treatment (lung lesion stable disease, head lesions partial response).\n5. **February 2021:** The patient's brain lesions continued to deteriorate, leading to the reversion of third-line afatinib treatment.\n6. **February 2021:** The patient was switched to second-line osimertinib treatment (80 mg daily po).\n\n**Outcomes:**\n\n* Lung lesion stable disease (SD) at October 2020 and February 2021.\n* Head lesions partial response (PR) on afatinib treatment at October 2020 and February 2021.\n* Brain lesions deteriorated over time, with a new onset of symptoms in February 2021.\n\n**Medications:**\n\n* Afatinib (40 mg daily po): initiated in December 2019, experienced therapeutic failure after 10 months, and partially responsive to treatment at October 2020.\n* Osimertinib (80 mg daily po): started in February 2021 as a second-line treatment.\n\n**Imaging:**\n\n* Baseline chest CT scan and head MRI performed in November 2019.\n* Follow-up imaging not specified for each time point, but mentioned to be performed at October 2020 and February 2021.\n\nNote: The patient's timeline is based on the provided data, which may not be comprehensive or up-to-date.", - "bertscore": { - "precision": [ - 0.6782082915306091 - ], - "recall": [ - 0.6782101988792419 - ], - "f1": [ - 0.6782092452049255 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 6, - "edge_count": 5, - "avg_in_degree": 0.8333333333333334, - "density": 0.16666666666666666 - }, - "trajectory_embedding": [ - 0.23827679455280304, - 0.19383050501346588, - -0.3074941039085388, - 0.022699283435940742, - -0.1117713451385498, - 0.08163382858037949, - 0.16336341202259064, - 0.2284320592880249, - 0.4727567136287689, - -0.48018789291381836, - -0.17922638356685638, - 0.1761062890291214, - -0.5752786993980408, - -0.26775673031806946, - -0.2448425143957138, - 0.11222141981124878, - -0.026510274037718773, - 0.28753769397735596, - -0.13174520432949066, - -0.16616864502429962, - -0.2283923476934433, - 0.05737997591495514, - -0.35397660732269287, - -0.1248975396156311, - 0.09810677170753479, - 0.13049466907978058, - 0.2754243314266205, - 0.5482998490333557, - 0.17604190111160278, - 0.25324949622154236, - 0.38593244552612305, - 0.02705838531255722, - -0.15078306198120117, - 0.09797301143407822, - -0.20773859322071075, - 0.23861820995807648, - 0.28641024231910706, - 0.3107379376888275, - -0.09296360611915588, - -0.09835084527730942, - -0.1433781236410141, - 0.07524699717760086, - 0.78011155128479, - 0.20059669017791748, - 0.36591076850891113, - -0.7035710215568542, - 0.004147856030613184, - 0.6170968413352966, - -0.2732282876968384, - 0.02278464287519455, - 0.24261505901813507, - 0.5385316014289856, - 0.612238347530365, - -0.16031141579151154, - 0.3575305938720703, - -0.21200759708881378, - -0.2899843156337738, - -0.05277976766228676, - -0.04261234030127525, - 0.001894341199658811, - 0.05290482938289642, - -0.19629895687103271, - 0.240090012550354, - -0.08638229966163635, - -0.246315598487854, - -0.16833211481571198, - -0.239271342754364, - 0.13656902313232422, - 0.05970408022403717, - -0.29522469639778137, - -0.30052223801612854, - -0.4230187237262726, - -0.03623747453093529, - 0.24539999663829803, - 0.046417150646448135, - -0.17627276480197906, - 0.24379342794418335, - 0.03090083599090576, - 0.21856538951396942, - 0.06844562292098999, - 0.10070515424013138, - 0.02297864854335785, - 0.033781472593545914, - 0.18886268138885498, - -0.3648346960544586, - 0.15723097324371338, - -0.02727578766644001, - -0.20767347514629364, - -0.2654285728931427, - 0.30841436982154846, - 0.1980409026145935, - -0.4216786324977875, - 0.06747474521398544, - -0.11965957283973694, - -0.020126206800341606, - 0.061832696199417114, - 0.32162997126579285, - 0.30300042033195496, - 0.8911454081535339, - -0.03714946657419205, - 0.2522032558917999, - 0.07825726270675659, - 0.1833336353302002, - 0.06436900794506073, - 0.379732608795166, - -0.326210618019104, - 0.1718369573354721, - -0.3786802291870117, - 0.1216210126876831, - 0.5358230471611023, - 0.06706127524375916, - -0.13807742297649384, - 0.026261737570166588, - -0.31022170186042786, - 0.12481814622879028, - 0.07880108803510666, - -0.17353813350200653, - 0.22634130716323853, - 0.19617867469787598, - -0.4773015081882477, - -0.04363327845931053, - -0.19761033356189728, - 0.29919755458831787, - 0.2651759684085846, - -0.312110036611557, - -0.20090796053409576, - -0.02743689902126789, - 0.039075084030628204, - -0.03280032053589821, - 0.09062299132347107, - -0.35866498947143555, - -0.08795995265245438, - -0.0402611680328846, - 0.11945450305938721, - -0.07223264873027802, - 0.42689552903175354, - -0.49844980239868164, - 0.06586521118879318, - -1.060118317604065, - 0.2107294797897339, - -0.5224700570106506, - -0.02383153885602951, - 0.0010092133888974786, - -0.549434244632721, - -0.07599660009145737, - -0.13625043630599976, - -0.1650521606206894, - 0.2526179552078247, - -0.1384706348180771, - -0.02262040041387081, - -0.014829491265118122, - -0.16993677616119385, - 0.19162696599960327, - 0.3590554893016815, - -0.1217368021607399, - -0.011269618757069111, - 0.02524806372821331, - 0.34759363532066345, - 0.09698069840669632, - -0.12387923151254654, - 0.16090041399002075, - 0.5066038966178894, - -0.2184649556875229, - -0.06521037966012955, - 0.004006996750831604, - -0.656337559223175, - -0.09213676303625107, - -0.09536509960889816, - 0.181168794631958, - -3.571854904294014e-05, - -0.23346710205078125, - 0.2737833559513092, - -0.17373062670230865, - 0.5266119837760925, - 0.2703331708908081, - 0.4663962423801422, - 0.03587856888771057, - 0.01709422841668129, - 0.2607605457305908, - 0.08499119430780411, - 0.030362913385033607, - -0.07279767841100693, - 0.5984684228897095, - 0.18580321967601776, - -0.3127437233924866, - 0.1029241606593132, - 0.3040538728237152, - -0.11147192120552063, - -0.29046955704689026, - -0.1379408985376358, - 0.5362194776535034, - -0.18836070597171783, - 0.2764721214771271, - -0.24798683822155, - -0.06313785910606384, - -0.09634830802679062, - -0.1063026562333107, - -0.19674207270145416, - 0.028267016634345055, - -0.3050723075866699, - 0.14571696519851685, - 0.10303711146116257, - -0.3434045612812042, - 0.15377391874790192, - 0.20161239802837372, - -0.1426643282175064, - 0.08833193778991699, - 0.09128958731889725, - 0.057928454130887985, - -0.10151702165603638, - -0.18967902660369873, - 0.2443976253271103, - 0.011745641939342022, - 0.2861246168613434, - -0.007262446451932192, - -0.33451583981513977, - -0.1543598175048828, - -0.06315622478723526, - -0.050310712307691574, - 0.06104981526732445, - 0.0038887448608875275, - -0.08948274701833725, - 0.09850939363241196, - 0.04890972748398781, - -0.36560022830963135, - 0.16136130690574646, - 0.16882987320423126, - 0.2584773004055023, - 0.02724684774875641, - -0.1380205750465393, - -0.03179508075118065, - -0.1728607416152954, - 0.38502374291419983, - -0.08179805427789688, - -0.3234620988368988, - -0.3075498044490814, - 0.24709784984588623, - -0.011476606130599976, - -0.013557135127484798, - 0.42269715666770935, - -0.023010211065411568, - -0.11280085891485214, - 0.10046976804733276, - -0.202076256275177, - -0.05836661532521248, - -0.2695712745189667, - -0.10399019718170166, - 0.4278355836868286, - 0.20179863274097443, - 0.3021261692047119, - 0.11456140130758286, - -0.15060685575008392, - 0.12468696385622025, - -0.32081839442253113, - -0.42870327830314636, - -0.1741471290588379, - -0.10028757899999619, - -0.2288406938314438, - -0.490246444940567, - -0.07416433840990067, - 0.11537960916757584, - -0.19447587430477142, - 0.2010151892900467, - -0.3204379975795746, - -0.03378818929195404, - -0.1075812503695488, - -0.017441559582948685, - 0.09932020306587219, - -0.4088621139526367, - 0.07245766371488571, - -0.3610595464706421, - -0.19502733647823334, - -0.04854920133948326, - 0.01055243518203497, - 0.23597480356693268, - 0.20520442724227905, - -0.1007285937666893, - 0.17065422236919403, - 0.2868387699127197, - -0.5504851341247559, - -0.2683980166912079, - 0.11708105355501175, - -0.2751244604587555, - 0.23397918045520782, - -0.1560806781053543, - 0.20418113470077515, - 0.38233229517936707, - 0.12889455258846283, - 0.15180151164531708, - 0.34789881110191345, - 0.5347495675086975, - -0.09157653898000717, - -0.06969303637742996, - -0.01055761706084013, - -0.07495594769716263, - -0.04805253818631172, - -0.4226577579975128, - 0.15748365223407745, - -0.19419145584106445, - 0.0037715930957347155, - 0.0035321637988090515, - 0.1534736156463623, - 0.13046225905418396, - -0.315142959356308, - -0.08391523361206055, - 0.6381580233573914, - 0.0845278799533844, - 0.19986873865127563, - 0.07772208005189896, - 0.20112478733062744, - 0.5161496996879578, - -0.053612738847732544, - -0.12709742784500122, - 0.09074511379003525, - -0.2847677171230316, - -0.12185272574424744, - -0.0832335352897644, - 0.12799514830112457, - 0.31815770268440247, - -0.003989753779023886, - -0.16307155787944794, - 0.3751034736633301, - -0.13116158545017242, - -0.23640240728855133, - -0.08085393905639648, - -0.036249417811632156, - 0.11417465656995773, - -0.2432255744934082, - 0.16269807517528534, - -0.12650281190872192, - 0.048263851553201675, - 0.5234131813049316, - -0.33847692608833313, - -0.21068920195102692, - 0.20218396186828613, - -0.07551262527704239, - -0.3687446117401123, - 0.39088013768196106, - -0.1307496279478073, - 0.035130541771650314, - 0.2280704379081726, - -0.2663896083831787, - -0.045487258583307266, - -0.09461545944213867, - 0.23525656759738922, - -0.033148959279060364, - 0.17548994719982147, - -0.065199114382267, - 0.15917401015758514, - -0.13741353154182434, - 0.454095721244812, - 0.036522675305604935, - 0.0017640875885263085, - 0.39572057127952576, - 0.014464967884123325, - -0.23824095726013184, - 0.08686508983373642, - -0.11023706942796707, - 0.2427162081003189, - -0.2589390277862549, - -0.20971643924713135, - -0.2648310661315918, - 0.2665846645832062, - 0.08727061748504639, - -0.29877379536628723, - 0.19200725853443146, - -0.09347536414861679, - -0.09068822860717773, - -0.01262566540390253, - 0.22778479754924774, - 0.19346244633197784, - -0.0805535688996315, - 0.500500500202179, - 0.11900460720062256, - -0.08666285872459412, - 0.3616199493408203, - 0.0013142278185114264, - 0.27503451704978943, - -0.03687556833028793, - -0.26693302392959595, - -0.28157591819763184, - 0.1319924145936966, - -0.1641833633184433, - -0.11888476461172104, - 0.0020799387712031603, - -0.014306637458503246, - -0.14002352952957153, - -0.11141038686037064, - 0.15729904174804688, - -0.10911998897790909, - 0.10334336757659912, - -0.04004526510834694, - 0.41739794611930847, - -0.029898785054683685, - -0.2604459822177887, - 0.05580504611134529, - -0.006255663465708494, - 0.20598864555358887, - -0.3604949414730072, - 0.00875041913241148, - -0.06235986948013306, - 0.49740687012672424, - -0.1496560424566269, - 0.03303674980998039, - 0.0071773710660636425, - -0.1228853166103363, - -0.20660744607448578, - -0.27232107520103455, - 0.04186980798840523, - -0.10468286275863647, - -0.15697933733463287, - -0.04937216639518738, - 0.07219849526882172, - -0.0909268856048584, - -0.14083537459373474, - -0.018182728439569473, - 0.21466375887393951, - 0.20753483474254608, - 0.019511206075549126, - 0.15288442373275757, - 0.19375836849212646, - 0.1406347006559372, - 0.32268646359443665, - -0.21089236438274384, - 0.2705146074295044, - -0.009363668970763683, - -0.14061424136161804, - 0.026788724586367607, - 0.03640532121062279, - -0.30273959040641785, - 0.02521367371082306, - 0.14005766808986664, - 0.22278131544589996, - 0.004735744092613459, - -0.10149452835321426, - -0.05744875967502594, - 0.17576129734516144, - -0.31779733300209045, - -0.06905771046876907, - 0.47184911370277405, - -0.13301736116409302, - 0.244576096534729, - 0.19458036124706268, - -0.47640880942344666, - -0.1275714784860611, - -0.20870816707611084, - -0.3786466121673584, - 0.1351262778043747, - 0.15544787049293518, - 0.0037402112502604723, - 0.06931210309267044, - 0.0585038959980011, - 0.09448304772377014, - 0.02017739973962307, - 0.19778569042682648, - 0.040925707668066025, - 0.08659282326698303, - 0.06887143105268478, - -0.2927178144454956, - 0.06577499210834503, - -0.2871173322200775, - -0.35785040259361267, - -0.3076360523700714, - 0.22519391775131226, - -4.8731762944953516e-05, - -0.1346731036901474, - 0.05453641712665558, - -0.013205967843532562, - -0.2104175090789795, - -0.18275673687458038, - -0.009928501211106777, - -0.019398557022213936, - 0.5932345390319824, - 0.09169135242700577, - -0.1954777091741562, - 0.14180095493793488, - -0.05631763115525246, - -0.023510076105594635, - 0.30225956439971924, - 0.14967507123947144, - 0.31031396985054016, - 0.049463901668787, - 0.017285920679569244, - 0.40960320830345154, - 0.10816052556037903, - 0.06725604832172394, - 0.2638516128063202, - -0.03598957136273384, - 0.12339723110198975, - -0.0787513479590416, - -0.21330519020557404, - 0.43414950370788574, - -0.3668399155139923, - 0.018611179664731026, - 0.04072288051247597, - 0.27639228105545044, - -0.33493950963020325, - -0.19886840879917145, - -0.04608851671218872, - -0.0586431659758091, - -0.148858904838562, - -0.2269318699836731, - -0.22774334251880646, - -0.04927827790379524, - -0.222814679145813, - 0.007563702296465635, - 0.2533177435398102, - 0.40309882164001465, - 0.14567531645298004, - 0.10136713832616806, - -0.3357924520969391, - -0.35419750213623047, - 0.21702735126018524, - 0.34039148688316345, - 0.007884149439632893, - -0.10568678379058838, - -0.07729733735322952, - 0.23728637397289276, - 0.3348486125469208, - 0.11152873188257217, - -0.09791740775108337, - 0.046775396913290024, - -0.04576405510306358, - 0.03567689284682274, - 0.12494464963674545, - -0.10470893979072571, - -0.05517800152301788, - -0.47385916113853455, - 0.011056706309318542, - -0.11555882543325424, - -0.28675463795661926, - 0.13021652400493622, - -0.2633022367954254, - -0.521785318851471, - -0.01653568632900715, - 0.25446146726608276, - -0.0660158097743988, - -0.1931300312280655, - 0.1309727281332016, - 0.4767743647098541, - 0.053156301379203796, - -0.19031654298305511, - -0.007364729885011911, - -0.3377082347869873, - -0.07569721341133118, - 0.19164244830608368, - -0.06226549670100212, - 0.1750444769859314, - 0.04836896434426308, - 0.37478718161582947, - 0.3508851230144501, - 0.22481666505336761, - -0.42879995703697205, - 0.29197749495506287, - 0.354479044675827, - 0.2115197777748108, - -0.4128757417201996, - -10.943734169006348, - -0.05729388818144798, - -0.2507791817188263, - 0.40578493475914, - -0.10982594639062881, - 0.14948545396327972, - -0.035657476633787155, - -0.07036983966827393, - 0.06213514879345894, - 0.20859794318675995, - -0.26474031805992126, - 0.00902507919818163, - 0.2592955529689789, - 0.2484438568353653, - -0.0533563606441021, - 0.17193275690078735, - -0.24006696045398712, - 0.1390850692987442, - 0.05164804682135582, - 0.24255883693695068, - 0.0485161654651165, - 0.33334362506866455, - -0.25250157713890076, - 0.20343182981014252, - 0.06583064049482346, - -0.26805463433265686, - -0.31305578351020813, - 0.3719705045223236, - 0.06861823797225952, - -0.38839492201805115, - 0.19481457769870758, - -0.005363086704164743, - -0.005480388645082712, - -0.08960574865341187, - -0.08657622337341309, - -0.21099726855754852, - -0.13326576352119446, - 0.03981168195605278, - -0.0796785056591034, - -0.20723004639148712, - 0.083144411444664, - -0.1726781576871872, - 0.2685622274875641, - 0.22117920219898224, - -0.06871628761291504, - -0.47652265429496765, - -0.2003326267004013, - -1.5943797826766968, - 0.24705785512924194, - 0.17785973846912384, - 0.5524916648864746, - 0.011432387866079807, - 0.2053167074918747, - 0.20437519252300262, - -0.320361852645874, - -0.0882052481174469, - -0.27516815066337585, - 0.09215494245290756, - 0.06625693291425705, - -0.1008252501487732, - 0.11732197552919388, - 0.0059815868735313416, - 0.5044061541557312, - -0.2398584634065628, - -0.19111891090869904, - 0.20792479813098907, - -0.10610423237085342, - 0.08218506723642349, - -0.1596282422542572, - -0.3775855302810669, - -0.4835216999053955, - -0.019602349027991295, - 0.029715919867157936, - 0.1211496964097023, - 0.49409905076026917, - -0.03614509478211403, - -0.39977946877479553, - 0.18927331268787384, - 0.07952244579792023, - 0.2743697464466095, - 0.235004261136055, - -0.05651728808879852, - -0.008346005342900753, - -0.03986770287156105, - 0.03933858498930931, - -0.1566717028617859, - 0.033127311617136, - 0.3307221233844757, - -0.05544814094901085, - -0.0784774199128151, - -0.038103461265563965, - 0.33608993887901306, - -0.1196669414639473, - -0.2691238820552826, - -0.4948171079158783, - 0.04511487856507301, - -0.05143973231315613, - 0.034892741590738297, - 0.030007528141140938, - 0.0906679630279541, - -0.16117911040782928, - -0.054543137550354004, - -0.07662104815244675, - -0.5650389790534973, - -0.2986502945423126, - 0.4416470527648926, - 0.2973870038986206, - 0.10707498341798782, - 0.025166520848870277, - 0.08520689606666565, - -0.12716203927993774, - -0.060971006751060486, - 0.3781185448169708, - 0.5010175108909607, - 0.2670290172100067, - 0.06372016668319702, - -0.050673726946115494, - -0.06312360614538193, - -0.2566622793674469, - -0.04676256701350212, - 0.4391810894012451, - 0.060142237693071365, - 0.26652204990386963, - 0.44227495789527893, - 0.09132727235555649, - -0.1420161873102188, - 0.7933509945869446, - -0.25437524914741516, - 0.16183561086654663, - -0.022979838773608208, - 0.2906959056854248, - -0.07331342250108719, - -0.298669695854187, - 0.10622362047433853, - 0.35206833481788635, - -0.3475235402584076, - 0.6022205948829651, - 0.07010727375745773, - -0.31871703267097473, - -0.11529938131570816, - -0.22900517284870148, - 0.3383882939815521, - 0.21599525213241577, - 0.2684257924556732, - -0.2317115217447281, - -0.30861538648605347, - -0.22270362079143524, - 0.35290732979774475, - -0.204167440533638, - -0.313772052526474, - -0.09073493629693985, - 0.07836584746837616, - -0.12624867260456085, - -0.2130827158689499, - 0.1985190361738205, - 0.13588394224643707, - -0.09622285515069962, - -0.19318430125713348, - -0.35954248905181885, - -0.22423122823238373, - 0.13571950793266296, - 0.634863555431366, - 0.22830449044704437, - -0.1395283192396164, - -0.06030825898051262, - 0.24075627326965332, - -0.08418592065572739, - 0.0645587369799614, - 0.098998062312603, - -0.08312030881643295, - -0.38061216473579407, - 0.2246633768081665, - 0.056326691061258316, - -0.37183383107185364, - -0.0995800718665123, - -0.3492063581943512, - -0.010427403263747692, - 0.03626984730362892, - -0.2471179962158203, - 0.35784968733787537, - 0.2236282080411911, - 0.05103149637579918, - 0.1038864478468895, - -0.21317404508590698, - 0.034050751477479935, - 0.2734452784061432, - 0.3848705291748047, - -0.016803694888949394, - -0.1745295375585556, - -0.39672836661338806, - -0.47388410568237305, - 0.1805296093225479, - -0.3081200420856476, - -0.008426097221672535, - 0.22735898196697235, - 0.12968361377716064, - -0.2141256183385849, - 0.13192060589790344, - -0.2130144089460373, - -0.0985049232840538, - -0.24702554941177368, - 0.1737651228904724, - 0.4471312463283539, - -0.34420982003211975, - 0.2605140507221222, - -0.09364992380142212, - 0.4649883210659027, - 0.34544655680656433, - -0.21542488038539886, - 0.10511022061109543, - -0.1617775410413742 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_077.json b/src/benchmark/output/results/results_graph_077.json deleted file mode 100644 index 6436e0e..0000000 --- a/src/benchmark/output/results/results_graph_077.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 66-year-old man who presented with persistent respiratory symptoms, including cough, sputum, chest tightness, and pain, for approximately 1 month. He received cefaclor and azithromycin at a local clinic without significant alleviation of his symptoms.\n\n**Timeline of Diagnoses:**\n\n1. **Step 1 (September 2023):**\nThe patient was initially evaluated in an outpatient setting with persistent respiratory symptoms. A chest X-ray revealed a space-occupying mass in the left lung, prompting hospitalization on September 10, 2023.\n2. **Step 2 (September 10, 2023):**\nUpon admission, laboratory investigations were normal, and CT imaging demonstrated irregularly shaped soft tissue masses in both the upper and lower lobes of the left lung.\n3. **Step 3 (September 11-12, 2023):**\nFurther characterization of the lung mass was performed through additional CT imaging, which showed an oval mass in the lower lobe of the lung measuring approximately 2.3 cm x 1.7 cm with lobulated and spiculated margins.\n4. **Step 4 (September 13-14, 2023):**\nPET-CT imaging revealed high-density lesions in both the upper and lower lobes of the left lung, with increased glucose metabolism. Multiple enlarged lymph nodes were detected in the mediastinum and interlobular spaces.\n\n**Treatments:**\n\n1. **Step 1 (September 2023):**\nThe patient received cefaclor and azithromycin at a local clinic.\n2. **Step 2-4 (September 10-14, 2023):**\nNo specific treatments were mentioned in the provided data.\n\n**Outcomes:**\n\n1. **Imaging:** The initial chest X-ray revealed a space-occupying mass in the left lung, which was later characterized through additional imaging studies.\n2. **Laboratory Investigations:** Normal laboratory results were reported during hospitalization.\n3. **PET-CT Imaging:** High-density lesions with increased glucose metabolism were detected in both the upper and lower lobes of the left lung.\n\n**Conclusion:**\nThe patient's clinical presentation and diagnostic timeline suggest a complex respiratory condition, potentially related to malignancy or other pathologies. Further investigation and characterization are necessary to determine the underlying cause and develop an effective treatment plan.", - "bertscore": { - "precision": [ - 0.5229495763778687 - ], - "recall": [ - 0.6768455505371094 - ], - "f1": [ - 0.5900275707244873 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 4, - "edge_count": 3, - "avg_in_degree": 0.75, - "density": 0.25 - }, - "trajectory_embedding": [ - 0.28606685996055603, - 0.19629862904548645, - -0.1704561412334442, - 0.05046887323260307, - 0.02108978107571602, - -0.05829715356230736, - -0.002245333045721054, - 0.13291165232658386, - 0.2349492609500885, - -0.29417815804481506, - -0.1785058230161667, - 0.17046767473220825, - -0.6892815232276917, - -0.1641303449869156, - -0.12110166251659393, - -0.009564938955008984, - 0.20506024360656738, - 0.19735971093177795, - -0.06371694803237915, - -0.168881356716156, - -0.41785648465156555, - 0.1446683406829834, - -0.34754589200019836, - -0.12143974751234055, - 0.19943948090076447, - -0.11634601652622223, - 0.20133116841316223, - 0.4066394567489624, - 0.1798296570777893, - 0.2901723384857178, - 0.15701924264431, - 0.17261850833892822, - -0.28471100330352783, - 0.043912891298532486, - -0.01824628934264183, - 0.39242038130760193, - 0.2999846637248993, - 0.4059707522392273, - -0.0009173145517706871, - 0.028525274246931076, - -0.019805196672677994, - 0.06979569792747498, - 0.8095908761024475, - 0.40700992941856384, - 0.5914306640625, - -0.6786153316497803, - -0.09830516576766968, - 0.3571213185787201, - -0.5512141585350037, - -0.14503896236419678, - 0.3630041480064392, - 0.7878065705299377, - 0.6123318076133728, - 0.03371438384056091, - 0.5765873789787292, - -0.0640755146741867, - -0.28928911685943604, - -0.1567484438419342, - -0.37792763113975525, - 0.1678239405155182, - -0.17291393876075745, - -0.05864691361784935, - 0.08173887431621552, - 0.12520043551921844, - -0.2564089000225067, - -0.07728845626115799, - -0.21699613332748413, - -0.05495607480406761, - -0.1491466909646988, - -0.3501957952976227, - -0.32962435483932495, - -0.20398621261119843, - -0.13638442754745483, - 0.059259478002786636, - 0.2011043131351471, - -0.2829757630825043, - 0.20064125955104828, - -0.05215670168399811, - -0.08033516258001328, - -0.0018166601657867432, - -0.038232576102018356, - 0.12476839125156403, - 0.177750363945961, - 0.172443687915802, - -0.3024919033050537, - 0.14695730805397034, - -0.1317208707332611, - -0.1699632704257965, - -0.19738131761550903, - 0.1700049638748169, - -0.0034266039729118347, - -0.18103933334350586, - 0.03591066226363182, - -0.159166619181633, - 0.08757392317056656, - -0.2176816761493683, - 0.21160346269607544, - 0.5036696195602417, - 1.0377775430679321, - -0.1700681746006012, - 0.31139636039733887, - 0.3032952547073364, - 0.2098039984703064, - -0.11058178544044495, - 0.5221318602561951, - 0.06838042289018631, - 0.3081011176109314, - -0.6443921327590942, - -0.03846201300621033, - 0.3459491729736328, - -0.0747748613357544, - -0.18894332647323608, - 0.16755911707878113, - -0.43337664008140564, - 0.032294947654008865, - 0.13194766640663147, - -0.2418166697025299, - 0.0026704873889684677, - -0.15550586581230164, - -0.37391942739486694, - 0.15865842998027802, - -0.1404341608285904, - 0.2971459627151489, - 0.3584194779396057, - -0.4447707235813141, - -0.02101503685116768, - -0.1586252748966217, - 0.08740537613630295, - -0.010801387950778008, - 0.20346030592918396, - -0.4284203350543976, - -0.034719426184892654, - 0.04530620574951172, - 0.32328715920448303, - -0.15784144401550293, - 0.33654287457466125, - -0.4054098427295685, - 0.26389631628990173, - -1.2855446338653564, - 0.21219593286514282, - -0.39983999729156494, - -0.15384645760059357, - -0.04526066035032272, - -0.5079841017723083, - -0.26107659935951233, - -0.1370515078306198, - -0.2692130506038666, - 0.08586348593235016, - -0.0825556069612503, - -0.19149133563041687, - -0.1884382665157318, - 0.14856082201004028, - 0.25330406427383423, - 0.1584334671497345, - 0.22645211219787598, - 0.2041165679693222, - 0.1547349989414215, - 0.428128719329834, - 0.10280472040176392, - -0.09783235192298889, - -0.06509645283222198, - 0.28199297189712524, - -0.044215571135282516, - -0.19037151336669922, - 0.2109173834323883, - -0.8558968305587769, - 0.19494667649269104, - -0.12928329408168793, - 0.34601739048957825, - 0.12390577793121338, - -0.10118449479341507, - 0.20150896906852722, - -0.24660973250865936, - 0.5307393074035645, - 0.3035988211631775, - 0.6282746195793152, - 0.11016793549060822, - -0.018224507570266724, - 0.2186698615550995, - 0.23973889648914337, - 0.12388400733470917, - 0.032403066754341125, - 0.5895467400550842, - 0.22763067483901978, - -0.22540611028671265, - 0.2786703109741211, - 0.3384469151496887, - -0.2813228964805603, - -0.21484513580799103, - -0.1265110969543457, - 0.3004475235939026, - -0.23478037118911743, - 0.2502119243144989, - -0.4079107344150543, - 0.053726162761449814, - 0.0010094530880451202, - -0.3698914051055908, - -0.2103906124830246, - 0.14945241808891296, - -0.08980578929185867, - 0.2633441090583801, - 0.2107224017381668, - 0.061378657817840576, - 0.019323576241731644, - 0.03183364123106003, - -0.0974017009139061, - 0.2610115110874176, - 0.07986023277044296, - -0.01299683004617691, - -0.16036772727966309, - -0.002836895640939474, - 0.2015661746263504, - -0.007435724139213562, - 0.24711596965789795, - 0.015341505408287048, - -0.20637010037899017, - 0.24460408091545105, - -0.15150412917137146, - -0.1956862509250641, - 0.1892034411430359, - -0.16236916184425354, - -0.009086658246815205, - 0.4182066321372986, - -0.2144671380519867, - -0.15854772925376892, - 0.2057098150253296, - 0.19270478188991547, - 0.1443856954574585, - 0.09909569472074509, - -0.13023169338703156, - 0.16440939903259277, - -0.3449779152870178, - 0.1495196521282196, - 0.072191521525383, - -0.06278046220541, - -0.4180295467376709, - 0.044120293110609055, - -0.272815465927124, - -0.26147881150245667, - 0.31484854221343994, - -0.1916094571352005, - -0.05277404934167862, - -0.028660794720053673, - -0.1563258022069931, - -0.009956661611795425, - -0.38037124276161194, - 0.19271349906921387, - 0.2520340383052826, - 0.08303866535425186, - 0.4050411581993103, - 0.06510885059833527, - -0.13605070114135742, - 0.17259937524795532, - -0.4075334370136261, - -0.2840030789375305, - -0.28374770283699036, - -0.17928460240364075, - -0.06931274384260178, - -0.3282749056816101, - 0.1682906150817871, - 0.09378291666507721, - -0.11442618817090988, - 0.06828175485134125, - -0.33794358372688293, - -0.10933859646320343, - -0.0678621158003807, - -0.07116129994392395, - 0.1972588449716568, - 0.08762378990650177, - 0.0905664935708046, - -0.29154253005981445, - -0.2384873926639557, - -0.10114308446645737, - 0.015061281621456146, - 0.24454283714294434, - 0.10528075695037842, - -0.05971674993634224, - 0.07000371813774109, - 0.21128804981708527, - -0.5556223392486572, - -0.42226433753967285, - 0.1980648636817932, - -0.27930817008018494, - 0.3384021520614624, - -0.27251943945884705, - 0.27813225984573364, - 0.3490510582923889, - -0.07427588105201721, - 0.21714673936367035, - 0.5519065856933594, - 0.4834636449813843, - 0.04654815047979355, - -0.09818444401025772, - -0.11124028265476227, - -0.0033403001725673676, - -0.20703110098838806, - -0.3931959271430969, - 0.20898494124412537, - 0.0013197250664234161, - 0.003877289593219757, - 0.14543350040912628, - 0.07703478634357452, - 0.027768932282924652, - -0.6377753019332886, - -0.21562431752681732, - 0.490933895111084, - 0.14342001080513, - -0.019270319491624832, - -0.0968414694070816, - 0.45529162883758545, - 0.7304180860519409, - 0.043459534645080566, - -0.17168158292770386, - -0.06118766963481903, - 0.005051393061876297, - -0.09399973601102829, - -0.13365438580513, - -0.036810047924518585, - 0.18105335533618927, - -0.16371938586235046, - -0.1534590870141983, - 0.526409387588501, - -0.161090686917305, - -0.16261914372444153, - -0.05508507043123245, - 0.08648695796728134, - -0.06093638390302658, - -0.2340754270553589, - 0.42646878957748413, - -0.2993066608905792, - -0.040516164153814316, - 0.5393460988998413, - -0.06582631915807724, - -0.18302901089191437, - 0.25788062810897827, - -0.08681034296751022, - -0.58719402551651, - 0.3172959089279175, - -0.17419347167015076, - -0.019727811217308044, - 0.29131996631622314, - 0.11681635677814484, - -0.1709488332271576, - -0.34687095880508423, - 0.12234021723270416, - 0.12033829838037491, - -0.06132440268993378, - -0.10746213048696518, - -0.02651796117424965, - 0.2865901291370392, - 0.5939309597015381, - 0.14503344893455505, - 0.15339866280555725, - 0.25491273403167725, - -0.22446458041667938, - -0.11993828415870667, - 0.012695145793259144, - 0.23487181961536407, - 0.09834136068820953, - -0.30615219473838806, - -0.24916309118270874, - -0.3143124580383301, - 0.19578838348388672, - 0.09394712746143341, - -0.21350808441638947, - -0.018431078642606735, - 0.033431265503168106, - -0.08033496886491776, - 0.058770474046468735, - 0.3165023922920227, - 0.3147013187408447, - 0.0012837052345275879, - 0.4015222489833832, - 0.14233030378818512, - -0.03207666426897049, - 0.2730615437030792, - -0.09080955386161804, - 0.3049766421318054, - -0.1459517925977707, - -0.4461190700531006, - -0.3847319185733795, - -0.08021950721740723, - -0.26296836137771606, - -0.07766996324062347, - -0.0019341334700584412, - -0.11125586926937103, - -0.003276050090789795, - -0.01933297887444496, - 0.23401403427124023, - 0.11871583759784698, - 0.2633177638053894, - 0.11792641878128052, - 0.45676353573799133, - -0.10577230900526047, - -0.47230756282806396, - 0.08579570800065994, - -0.19637750089168549, - 0.2637426555156708, - 0.027366891503334045, - -0.08674746006727219, - -0.13557979464530945, - 0.4231654405593872, - 0.1219782903790474, - -0.07121968269348145, - -0.09480339288711548, - -0.1198142021894455, - -0.12847919762134552, - -0.43889790773391724, - -0.15349933505058289, - -0.028866689652204514, - -0.07360932976007462, - -0.09615080058574677, - 0.11228236556053162, - -0.09708157181739807, - -0.3526402413845062, - 0.012124750763177872, - 0.3918544054031372, - 0.1676657646894455, - -0.06369969993829727, - 0.2550939619541168, - 0.2474643886089325, - -0.04718436300754547, - 0.3636264204978943, - -0.10850459337234497, - 0.09603086113929749, - 0.13832902908325195, - -0.314791202545166, - -0.0016673528589308262, - 0.07403658330440521, - -0.21497663855552673, - 0.07620703428983688, - 0.1914444863796234, - 0.13187243044376373, - 0.14780455827713013, - -0.08127724379301071, - -0.07765182852745056, - 0.22089733183383942, - -0.3636993169784546, - -0.13719822466373444, - 0.4139607548713684, - -0.030294209718704224, - 0.6092257499694824, - -0.04661824554204941, - -0.34465888142585754, - -0.13774026930332184, - -0.05801468342542648, - -0.4845263957977295, - 0.1595146656036377, - -0.02318224124610424, - -0.29642924666404724, - 0.04574059695005417, - -0.005160834640264511, - -0.0516524612903595, - 0.10848543047904968, - 0.13428616523742676, - -0.03289274871349335, - 0.13046911358833313, - -0.005925724282860756, - -0.32641127705574036, - -0.034398432821035385, - -0.19207042455673218, - -0.3430449962615967, - -0.2102055698633194, - 0.4475308954715729, - 0.3112315535545349, - -0.171941339969635, - -0.08398556709289551, - 0.0031447969377040863, - -0.2861204147338867, - -0.4603792428970337, - -0.15396147966384888, - -0.03883592039346695, - 0.6403640508651733, - 0.1984761357307434, - -0.1738003045320511, - 0.14424443244934082, - -0.4065065383911133, - 0.13337039947509766, - 0.06342297047376633, - 0.16583900153636932, - 0.4052746891975403, - 0.16294607520103455, - 0.24486614763736725, - 0.3222638964653015, - 0.18784388899803162, - 0.009521860629320145, - 0.23639722168445587, - -0.1615857630968094, - 0.05569043383002281, - 0.11057544499635696, - -0.2537461519241333, - 0.5215979814529419, - -0.2233538031578064, - 0.21628376841545105, - 0.13996323943138123, - 0.35563409328460693, - -0.3939831554889679, - -0.274471253156662, - -0.043160926550626755, - -0.021331261843442917, - -0.18702386319637299, - -0.3293328285217285, - -0.16402915120124817, - 0.13207972049713135, - -0.05993706360459328, - -0.07221022248268127, - 0.32442545890808105, - 0.2044561803340912, - 0.03515951707959175, - 0.0502505823969841, - -0.2328818291425705, - -0.4584094285964966, - 0.04844971373677254, - 0.3023422360420227, - 0.20045900344848633, - 0.046738237142562866, - -0.12674221396446228, - 0.14850714802742004, - 0.5502374768257141, - -0.012255441397428513, - -0.15664422512054443, - 0.1369466781616211, - -0.0393584668636322, - -0.1637066751718521, - 0.016180474311113358, - -0.10688404738903046, - 0.1614128202199936, - -0.29407888650894165, - 0.07056370377540588, - -0.019987408071756363, - -0.31015676259994507, - 0.240941122174263, - -0.15239930152893066, - -0.627332329750061, - 0.028034493327140808, - 0.2544875741004944, - -0.09921582788228989, - 0.05429978296160698, - 0.12617741525173187, - 0.4436146020889282, - 0.21177327632904053, - -0.20857636630535126, - 0.14237797260284424, - -0.4464455842971802, - 0.03562391176819801, - 0.1505924016237259, - -0.21513405442237854, - 0.16257233917713165, - -0.037508852779865265, - 0.2443404197692871, - 0.3811696171760559, - 0.11125202476978302, - -0.4001495838165283, - 0.041632041335105896, - 0.08922100067138672, - 0.29810577630996704, - -0.14630937576293945, - -10.86948299407959, - 0.302509605884552, - -0.22962653636932373, - 0.43272316455841064, - -0.2570308446884155, - 0.08360690623521805, - -0.13700652122497559, - 0.1484958529472351, - 0.2490362673997879, - 0.16393277049064636, - -0.272381454706192, - 0.2534922957420349, - 0.3856602907180786, - 0.10875579714775085, - 0.06393343210220337, - -0.18178613483905792, - -0.2629234790802002, - 0.1470135748386383, - -0.07551360875368118, - 0.12686173617839813, - 0.36189988255500793, - 0.3792036175727844, - -0.2208305448293686, - 0.39043933153152466, - 0.1506909430027008, - -0.013560701161623001, - -0.08299165219068527, - 0.38657957315444946, - 0.03815913945436478, - -0.4141175448894501, - 0.4000435769557953, - 0.12925750017166138, - -0.25556063652038574, - -0.06824018061161041, - -0.06491340696811676, - -0.20601487159729004, - -0.11618153750896454, - 0.03460275009274483, - -0.026577923446893692, - -0.11598698049783707, - -0.08146411925554276, - -0.25622671842575073, - 0.06315018981695175, - 0.38705000281333923, - -0.12897390127182007, - -0.4983501136302948, - -0.24605697393417358, - -1.304955005645752, - 0.1062692254781723, - 0.3583422005176544, - 0.5518270134925842, - 0.009288787841796875, - 0.2906201183795929, - 0.11110702157020569, - -0.4198973476886749, - 0.06887240707874298, - -0.2036871463060379, - 0.09259751439094543, - 0.029676785692572594, - -0.10234832763671875, - 0.1946714073419571, - -0.23682254552841187, - 0.2908182442188263, - -0.2656105160713196, - -0.3765774369239807, - 0.27392899990081787, - -0.053743887692689896, - -0.09004094451665878, - 0.03831809014081955, - -0.23780648410320282, - -0.5505651235580444, - -0.12559355795383453, - 0.013369007036089897, - 0.07455819845199585, - 0.4398573935031891, - -0.10670143365859985, - -0.5009100437164307, - -0.006524546071887016, - -0.05285130441188812, - 0.34775805473327637, - 0.2545449435710907, - 0.05307784676551819, - 0.19996291399002075, - -0.21023540198802948, - -0.23382353782653809, - -0.20383916795253754, - -0.013612974435091019, - 0.4291483759880066, - 0.13470833003520966, - 0.06379444897174835, - -0.015289675444364548, - 0.2718344032764435, - -0.13541367650032043, - -0.11460825800895691, - -0.4477459788322449, - 0.22504039108753204, - 0.14276430010795593, - 0.09000031650066376, - 0.011936239898204803, - -0.14371708035469055, - -0.1349676549434662, - -0.16426807641983032, - -0.1972443014383316, - -0.385009765625, - -0.36492517590522766, - 0.20604568719863892, - 0.1916564702987671, - 0.04772558808326721, - 0.149903804063797, - 0.017417674884200096, - 0.06119879335165024, - -0.05237989500164986, - 0.43513333797454834, - 0.5444557666778564, - 0.014072999358177185, - -0.24828514456748962, - -0.2069569230079651, - -0.021418191492557526, - -0.28225380182266235, - 0.24618780612945557, - 0.38825684785842896, - -0.15846478939056396, - 0.23108457028865814, - 0.5354220867156982, - -0.09281803667545319, - -0.10032790154218674, - 1.029331922531128, - -0.3183230757713318, - 0.44928795099258423, - -0.1364426612854004, - 0.20965062081813812, - -0.1975679099559784, - -0.33614349365234375, - 0.1352708637714386, - 0.26992833614349365, - -0.4250962734222412, - 0.47427451610565186, - 0.09736381471157074, - -0.3824968934059143, - 0.12013322114944458, - -0.24874432384967804, - 0.500900387763977, - 0.2807953357696533, - 0.08689477294683456, - -0.19849443435668945, - -0.28465092182159424, - -0.24500258266925812, - -0.0027330778539180756, - -0.5580143332481384, - -0.13328498601913452, - -0.10783621668815613, - 0.09164115786552429, - 0.009176129475235939, - -0.11660171300172806, - 0.3770322799682617, - 0.07512025535106659, - -0.1753244549036026, - -0.10428463667631149, - -0.4950789213180542, - -0.2343485802412033, - 0.0785093680024147, - 0.5306124091148376, - 0.014031238853931427, - -0.10469789057970047, - -0.3154063820838928, - 0.331419974565506, - 0.05914422497153282, - 0.1837640106678009, - 0.034933436661958694, - 0.051506705582141876, - -0.3748853802680969, - 0.12265077233314514, - 0.1092354878783226, - -0.2965819239616394, - -0.18421238660812378, - -0.3950309753417969, - 0.27540650963783264, - -0.09308372437953949, - -0.18102282285690308, - 0.2423771768808365, - 0.28638145327568054, - -0.01811613328754902, - -0.05799128860235214, - -0.4096584916114807, - 0.23458220064640045, - 0.0612679086625576, - 0.1363360434770584, - 0.2250184565782547, - -0.18514981865882874, - -0.39065366983413696, - -0.3854674994945526, - 0.11488988995552063, - -0.251747190952301, - -0.058206312358379364, - 0.11306705325841904, - 0.09973936527967453, - -0.2868974804878235, - 0.14592105150222778, - -0.2502201795578003, - -0.003512006253004074, - -0.3017762303352356, - 0.11013872176408768, - 0.3909848928451538, - -0.3763326406478882, - 0.12033244967460632, - -0.17120030522346497, - 0.28242364525794983, - 0.07102137804031372, - -0.4536048173904419, - 0.28533706068992615, - -0.13200709223747253 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_079.json b/src/benchmark/output/results/results_graph_079.json deleted file mode 100644 index 32b4ab1..0000000 --- a/src/benchmark/output/results/results_graph_079.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 74-year-old female who presented with symptoms of shortness of breath, cough, and hemoptysis. She was diagnosed with stage IVa epidermal growth factor receptor (EGFR)L858R-mutated non-small cell lung cancer (NSCLC).\n\n**Timeline of Diagnoses:**\n\n* September 2019: The patient presented with symptoms of shortness of breath, cough, and hemoptysis, leading to a diagnosis of stage IVa (cT4N2M1a) lung adenocarcinoma in the right upper lobe, with multiple ipsilateral lung metastases, and involvement of the pleura and mediastinal lymph nodes.\n* September 2019: A bronchoscopic lung biopsy revealed the presence of EGFR p.L858R and TP53 p.R248L mutations.\n\n**Timeline of Treatments:**\n\n1. **First-Line Treatment (October 11, 2019 - February 2020)**:\nThe patient received first-line treatment with icotinib (125 mg orally, three times daily) and pemetrexed. After two months, the patient experienced partial response.\n2. **Second-Line Treatment (April 28, 2020 - July 2020)**:\nThe patient commenced second-line treatment with amonertinib (110 mg orally, once daily) in combination with anlotinib (12 mg orally, once daily for 2 weeks, followed by a 1-week drug-free period). The treatment resulted in stable disease initially but progressed after 3 months.\n3. **Third-Line Treatment (August 3, 2020 - November 2020)**:\nThe patient initiated treatment with osimertinib (80 mg orally, once daily) and bevacizumab (350 mg IV, on day 1 of a 21-day cycle). The treatment resulted in partial response after two cycles and significant reduction in tumor lesions after four cycles.\n4. **Fourth-Line Treatment (October 10, 2020 - present)**:\nThe patient received pembrolizumab (200 mg IV on day 1 of every 3 weeks), pemetrexed, and carboplatin. The treatment resulted in partial response after two cycles and significant reduction in tumor lesions after four cycles.\n\n**Outcomes:**\n\n* **Pathological Complete Response (pCR)**:\nThe patient achieved a pathological complete response (pCR) and prolonged survival.\n* **High PD-L1 Expression**:\nTumor microenvironment analysis showed high programmed cell death 1 ligand 1 (PD-L1) expression on tumor cells, indicating potential for immune checkpoint therapy.\n* **Increased Immune Cell Infiltration**:\nThe patient had increased infiltration of immune cells, particularly PD-1+CD8+T cells and PD-L1+macrophages, in the tumor microenvironment.\n\nIn conclusion, this patient's case highlights the importance of personalized medicine approaches in treating advanced NSCLC. The use of targeted therapies, such as EGFR inhibitors and immunotherapies, has led to significant improvements in treatment outcomes and quality of life for patients with this disease.", - "bertscore": { - "precision": [ - 0.5608479976654053 - ], - "recall": [ - 0.6207950711250305 - ], - "f1": [ - 0.5893009901046753 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 7, - "edge_count": 6, - "avg_in_degree": 0.8571428571428571, - "density": 0.14285714285714285 - }, - "trajectory_embedding": [ - 0.28967222571372986, - 0.13287165760993958, - -0.27321428060531616, - 0.1138295978307724, - -0.09009366482496262, - 0.025592172518372536, - 0.09159565716981888, - 0.1864396333694458, - 0.445202499628067, - -0.5484539866447449, - -0.1185631975531578, - 0.20055018365383148, - -0.6732085347175598, - -0.10172402113676071, - -0.23370732367038727, - 0.013881613500416279, - 0.015598686411976814, - 0.3494771420955658, - 0.009218164719641209, - -0.07954765856266022, - -0.3512444496154785, - 0.16238413751125336, - -0.3741113841533661, - -0.030549421906471252, - 0.06190601363778114, - -0.1312652826309204, - 0.09005965292453766, - 0.3457756042480469, - 0.21935248374938965, - 0.1301935613155365, - 0.13383522629737854, - 0.08705072849988937, - -0.2715134024620056, - -0.017471088096499443, - -0.17541687190532684, - 0.3165104389190674, - 0.22981016337871552, - 0.2882510721683502, - -0.12422019988298416, - 0.030639026314020157, - -0.17778345942497253, - 0.0921536311507225, - 0.7343012690544128, - 0.25980523228645325, - 0.42370542883872986, - -0.47161728143692017, - 0.03305958956480026, - 0.42226549983024597, - -0.607052743434906, - -0.056931022554636, - 0.28774595260620117, - 0.6199279427528381, - 0.8208817839622498, - -0.12761585414409637, - 0.4721238911151886, - -0.1769290417432785, - -0.3682643473148346, - -0.08880753070116043, - -0.09844226390123367, - -0.04480478912591934, - 0.1371445506811142, - -0.13656330108642578, - 0.05829444155097008, - -0.07368315756320953, - -0.24113371968269348, - -0.2611972987651825, - -0.44950756430625916, - 0.021681228652596474, - 0.010904805734753609, - -0.4755452573299408, - -0.3611588180065155, - -0.3249382972717285, - -0.12531183660030365, - 0.25645360350608826, - 0.11633254587650299, - -0.27950018644332886, - 0.1850275844335556, - 0.009157419204711914, - 0.05280643701553345, - -0.04193834587931633, - 0.30206218361854553, - -0.0352933406829834, - 0.2162698656320572, - 0.24790331721305847, - -0.3847915232181549, - 0.25920042395591736, - 0.17477086186408997, - -0.3408800959587097, - -0.27560505270957947, - 0.356395423412323, - 0.2189721316099167, - -0.33915847539901733, - -0.05603358894586563, - -0.033332739025354385, - 0.23415698111057281, - 0.06172701343894005, - 0.31433412432670593, - 0.21495400369167328, - 0.8262764811515808, - 0.08993140608072281, - 0.3129323422908783, - 0.05358371511101723, - 0.19939061999320984, - -0.016300829127430916, - 0.3860202431678772, - -0.1777879297733307, - 0.38606563210487366, - -0.27002057433128357, - -0.038585513830184937, - 0.41770532727241516, - 0.05382521077990532, - -0.19494496285915375, - 0.11122935265302658, - -0.36440059542655945, - 0.053052689880132675, - 0.0399259552359581, - -0.2277214378118515, - 0.06811810284852982, - 0.14372451603412628, - -0.5153376460075378, - -0.16730041801929474, - -0.1724451333284378, - 0.34282657504081726, - 0.24908821284770966, - -0.5169404149055481, - -0.17519831657409668, - -0.13197645545005798, - 0.15705715119838715, - -0.19095900654792786, - 0.18576519191265106, - -0.3523712158203125, - -0.1744152009487152, - -0.022252483293414116, - 0.21914683282375336, - -0.2555006742477417, - 0.3989267945289612, - -0.5191221237182617, - 0.1786891222000122, - -1.1714674234390259, - 0.17875909805297852, - -0.5024257898330688, - -0.05538701266050339, - 0.04020046442747116, - -0.4468986690044403, - -0.07063507288694382, - -0.1438509076833725, - -0.031119409948587418, - 0.17066265642642975, - 0.008700119331479073, - -0.0768575519323349, - -0.023904429748654366, - -0.11930304765701294, - 0.10185611248016357, - 0.4682210385799408, - 0.06299436837434769, - 0.13141347467899323, - 0.09621164947748184, - 0.3122382164001465, - 0.18579742312431335, - -0.2830430567264557, - 0.03355366364121437, - 0.4873816967010498, - -0.15377037227153778, - -0.010006451047956944, - 0.11107636988162994, - -0.615912139415741, - -0.030115365982055664, - -0.1420772820711136, - 0.1729895919561386, - -0.023917708545923233, - -0.08727822452783585, - 0.11186224222183228, - -0.09620221704244614, - 0.5171002745628357, - 0.11784271150827408, - 0.49025508761405945, - -0.05882861837744713, - 0.16354672610759735, - 0.28826195001602173, - 0.1510169357061386, - 0.1367875635623932, - -0.054320406168699265, - 0.5517715811729431, - 0.2952355742454529, - -0.3269178867340088, - 0.2745454013347626, - 0.4210677742958069, - -0.2968375086784363, - -0.3493483364582062, - -0.17340795695781708, - 0.6756364107131958, - -0.11425215750932693, - 0.30465373396873474, - -0.3324955999851227, - 0.07581601291894913, - 0.0549696609377861, - -0.2760907709598541, - -0.12449358403682709, - 0.1093653216958046, - -0.24749299883842468, - 0.27507510781288147, - 0.4441538155078888, - -0.3095707595348358, - 0.07083987444639206, - 0.23406513035297394, - -0.11787354946136475, - 0.11195337027311325, - 0.26172110438346863, - -0.006455570459365845, - -0.1302744746208191, - -0.159796804189682, - 0.3143746256828308, - 0.0030647090170532465, - 0.30036577582359314, - 0.016690624877810478, - -0.40316852927207947, - -0.00013471661077346653, - -0.11191528290510178, - -0.24970947206020355, - 0.0097654415294528, - -0.057665493339300156, - -0.10953366011381149, - 0.3198998272418976, - 0.0868820995092392, - -0.47898370027542114, - 0.30328068137168884, - 0.26478198170661926, - 0.2495354562997818, - 0.10004949569702148, - -0.22297188639640808, - 0.005641948897391558, - -0.1663001924753189, - 0.46150967478752136, - -0.025082021951675415, - -0.2940424382686615, - -0.2777272164821625, - 0.2881106436252594, - -0.09620557725429535, - -0.09266971796751022, - 0.4040932357311249, - -0.06339290738105774, - -0.11190048605203629, - -0.0006616333848796785, - -0.3155289590358734, - -0.12966440618038177, - -0.38842740654945374, - 0.07462133467197418, - 0.3605482876300812, - 0.10924185812473297, - 0.2533766031265259, - 0.11878418177366257, - -0.09732914716005325, - 0.3802449107170105, - -0.4287714660167694, - -0.4361326992511749, - -0.22002220153808594, - -0.11263317614793777, - -0.19962425529956818, - -0.38438868522644043, - -0.01715191639959812, - -0.059421274811029434, - -0.18597976863384247, - 0.29453086853027344, - -0.38689857721328735, - -0.1480497568845749, - -0.23082926869392395, - -0.10439932346343994, - 0.25602105259895325, - -0.23777811229228973, - 0.251386433839798, - -0.48589178919792175, - -0.2170087844133377, - -0.13030366599559784, - 0.01969488523900509, - 0.36165112257003784, - 0.18080267310142517, - -0.12654685974121094, - 0.21449588239192963, - 0.2927591800689697, - -0.3578166961669922, - -0.2538065016269684, - 0.05583330616354942, - -0.35547611117362976, - 0.07698582112789154, - -0.23460640013217926, - 0.13946203887462616, - 0.42084333300590515, - -0.09450704604387283, - 0.23828668892383575, - 0.3789999485015869, - 0.5384190678596497, - 0.07774924486875534, - -0.012804687023162842, - -0.03326822444796562, - 0.002135055372491479, - 0.003370237071067095, - -0.4346676170825958, - 0.16199208796024323, - -0.2849520146846771, - -0.014696145430207253, - 0.23210862278938293, - 0.2893259823322296, - 0.01599133387207985, - -0.48155683279037476, - -0.20769087970256805, - 0.5547478795051575, - 0.3228905498981476, - 0.08965908735990524, - -0.10982903093099594, - 0.27760934829711914, - 0.6005199551582336, - -0.004116256255656481, - -0.23534728586673737, - 0.2274608314037323, - -0.23265668749809265, - -0.23064568638801575, - -0.13607372343540192, - -0.02076295204460621, - 0.32928863167762756, - -0.08277048170566559, - -0.14628338813781738, - 0.45051926374435425, - -0.31105682253837585, - -0.25121593475341797, - -0.1824515014886856, - -0.03780277445912361, - -0.04312751069664955, - -0.2350129783153534, - 0.32776692509651184, - -0.24188177287578583, - -0.11767809092998505, - 0.4889431595802307, - -0.1604010909795761, - -0.23388676345348358, - 0.2207779437303543, - -0.05705910176038742, - -0.5361013412475586, - 0.2952418625354767, - -0.0956900343298912, - -0.058307044208049774, - 0.4215090870857239, - -0.20759305357933044, - -0.06033257022500038, - 0.0036444482393562794, - 0.14124391973018646, - 0.06054878607392311, - 0.15261340141296387, - -0.016291795298457146, - 0.07726578414440155, - 0.197734996676445, - 0.5323013663291931, - -0.0004905802779830992, - 0.06438716500997543, - 0.3695080876350403, - -0.09198803454637527, - -0.17459318041801453, - -0.0609399676322937, - -0.026711059734225273, - 0.2645922005176544, - -0.2939346134662628, - -0.32479217648506165, - -0.4593767523765564, - 0.15981721878051758, - 0.1392579823732376, - -0.18741311132907867, - 0.25667014718055725, - 0.015089892782270908, - -0.04481812193989754, - 0.07909588515758514, - 0.4087558686733246, - 0.25603801012039185, - -0.024839891120791435, - 0.58944171667099, - 0.18694981932640076, - -0.03641160577535629, - 0.3322760760784149, - -0.04384502395987511, - 0.16016586124897003, - -0.03353028744459152, - -0.18969707190990448, - -0.3973497450351715, - 0.04745931550860405, - -0.27838438749313354, - -0.16004541516304016, - 0.09827154129743576, - -0.057762205600738525, - -0.06583153456449509, - -0.07669543474912643, - 0.20494325459003448, - -0.14833498001098633, - 0.16243323683738708, - -0.12603820860385895, - 0.6300015449523926, - -0.09244956076145172, - -0.3902032673358917, - 0.08658789098262787, - -0.1725454330444336, - 0.28929710388183594, - -0.19730022549629211, - -0.05545606091618538, - -0.298552006483078, - 0.5052400827407837, - 0.00180157704744488, - -0.06005115434527397, - -0.04409284144639969, - -0.2896899878978729, - -0.14837579429149628, - -0.3761539161205292, - -0.007878346368670464, - -0.11249662935733795, - -0.10222945362329483, - -0.12502528727054596, - 0.2129075676202774, - -0.036784105002880096, - -0.11887486279010773, - 0.08552749454975128, - 0.3052138686180115, - 0.023013290017843246, - 0.002454501111060381, - 0.1161080077290535, - 0.04006757214665413, - 0.16009308397769928, - 0.3419356048107147, - -0.27117785811424255, - 0.2513508200645447, - 0.17737217247486115, - -0.1764993965625763, - -0.0591430701315403, - -0.07846539467573166, - -0.3145514130592346, - 0.025771180167794228, - 0.2627951204776764, - 0.12709160149097443, - 0.06073858588933945, - -0.07017429172992706, - -0.06779538840055466, - 0.27473920583724976, - -0.3822859823703766, - -0.11495144665241241, - 0.5263261795043945, - -0.2031695693731308, - 0.46737101674079895, - -0.0009923881152644753, - -0.341575562953949, - -0.12215767800807953, - -0.15284284949302673, - -0.46299150586128235, - 0.21459181606769562, - -0.03856450319290161, - -0.04700160026550293, - 0.013662009499967098, - 0.025660598650574684, - 0.08325345069169998, - -0.020084094256162643, - 0.21293704211711884, - 0.13208091259002686, - 0.0614907406270504, - 0.0160593893378973, - -0.31926029920578003, - -0.05446759983897209, - -0.34027257561683655, - -0.3687364161014557, - -0.33159443736076355, - 0.3063124120235443, - 0.07891631126403809, - -0.09566958993673325, - 0.21386925876140594, - 0.15311625599861145, - -0.24031387269496918, - -0.3483901619911194, - 0.035939235240221024, - -0.021818067878484726, - 0.700746476650238, - -0.01015093270689249, - -0.22639426589012146, - 0.2296704351902008, - -0.23792104423046112, - 0.2603660523891449, - 0.1689690500497818, - 0.21035762131214142, - 0.24694712460041046, - 0.07892201840877533, - 0.15463678538799286, - 0.47970151901245117, - 0.2620716691017151, - 0.07993534952402115, - 0.27389487624168396, - 0.002367000561207533, - 0.0009275068296119571, - -0.033652354031801224, - -0.17579017579555511, - 0.535103976726532, - -0.450234591960907, - 0.1456584632396698, - -0.00017565488815307617, - 0.4457348883152008, - -0.30656033754348755, - -0.23326945304870605, - -0.09910259395837784, - -0.15710829198360443, - -0.15850941836833954, - -0.2844614088535309, - -0.2842937111854553, - 0.09169753640890121, - -0.4262233078479767, - 0.024825306609272957, - 0.35772404074668884, - 0.3824091851711273, - 0.23279383778572083, - 0.052957359701395035, - -0.33554360270500183, - -0.3774503767490387, - 0.1421286016702652, - 0.4427526295185089, - -0.0338178388774395, - -0.08948683738708496, - -0.12881775200366974, - 0.2622751295566559, - 0.5057573914527893, - -0.03837591037154198, - -0.005317949689924717, - -0.040249694138765335, - 0.026192592456936836, - -0.10959991067647934, - 0.07289024442434311, - -0.09330327063798904, - -0.002816191641613841, - -0.4704037606716156, - -0.09868132323026657, - -0.025710372254252434, - -0.3043610453605652, - 0.15286512672901154, - -0.393623024225235, - -0.45060035586357117, - -0.03775904327630997, - 0.10853327810764313, - -0.17514102160930634, - -0.1105383038520813, - 0.2181914895772934, - 0.5257498621940613, - 0.05091087147593498, - -0.12341874837875366, - 0.06325674802064896, - -0.4749176800251007, - -0.026637906208634377, - 0.2773142158985138, - -0.08836515247821808, - 0.30598339438438416, - 0.05742163211107254, - 0.39186832308769226, - 0.44029709696769714, - 0.19125878810882568, - -0.2801852822303772, - 0.18362243473529816, - 0.32622748613357544, - 0.352365106344223, - -0.19342491030693054, - -10.864474296569824, - -0.0675220936536789, - -0.20281276106834412, - 0.3238285183906555, - -0.03562992811203003, - 0.08949095010757446, - -0.11705444008111954, - -0.03446536511182785, - 0.05287977680563927, - 0.26455721259117126, - -0.14750215411186218, - 0.11091314256191254, - 0.19575953483581543, - 0.28778889775276184, - 0.019959408789873123, - 0.20548667013645172, - -0.28015708923339844, - 0.31860584020614624, - -0.09151721745729446, - 0.055688221007585526, - 0.315818727016449, - 0.37046733498573303, - -0.21440018713474274, - 0.11870057135820389, - 0.10335554927587509, - -0.3256823718547821, - -0.3214492201805115, - 0.39063313603401184, - 0.16373607516288757, - -0.5220385789871216, - 0.3636987507343292, - 0.04829171672463417, - -0.03670072183012962, - -0.08939583599567413, - -0.03290948644280434, - -0.10313744097948074, - -0.1826518326997757, - 0.0209584292024374, - 0.08102841675281525, - -0.040978141129016876, - -0.03382750600576401, - -0.25632908940315247, - 0.06183001399040222, - 0.3834187090396881, - -0.14339660108089447, - -0.47818008065223694, - -0.16611053049564362, - -1.4688751697540283, - 0.15699635446071625, - 0.0753943994641304, - 0.5030497312545776, - 0.05595908313989639, - 0.12699879705905914, - 0.2289055734872818, - -0.4020373225212097, - -0.055559564381837845, - -0.23186932504177094, - 0.1323404610157013, - -0.013745056465268135, - -0.19996988773345947, - 0.13707265257835388, - 0.014514075592160225, - 0.381695419549942, - -0.2989253103733063, - -0.2995021641254425, - 0.2724134624004364, - -0.16989204287528992, - -0.0674980953335762, - -0.14477702975273132, - -0.26961836218833923, - -0.6019757390022278, - -0.06365279108285904, - 0.1580573320388794, - 0.06685082614421844, - 0.41906997561454773, - -0.1534811407327652, - -0.4862115681171417, - 0.05464538186788559, - 0.09809964895248413, - 0.4205111861228943, - 0.1642920821905136, - 0.07613559812307358, - 0.1527480185031891, - -0.09869176894426346, - -0.07568293064832687, - -0.16916313767433167, - 0.15995725989341736, - 0.47846871614456177, - -0.0997859388589859, - -0.04658050090074539, - -0.05753358080983162, - 0.21864032745361328, - -0.1015353724360466, - -0.17594926059246063, - -0.5499250292778015, - 0.19176438450813293, - 0.09658706933259964, - 0.05859261006116867, - -0.08791005611419678, - -0.09840131551027298, - -0.0476619191467762, - -0.11832360178232193, - -0.05876261368393898, - -0.5046718120574951, - -0.2179214209318161, - 0.34861311316490173, - 0.2996915280818939, - 0.1443328559398651, - 0.06942183524370193, - 0.011322115547955036, - -0.10855323821306229, - -0.08292877674102783, - 0.46120381355285645, - 0.4783497452735901, - 0.11509208381175995, - 0.017284413799643517, - -0.18751850724220276, - 0.007175466977059841, - -0.2643918991088867, - -0.12226884067058563, - 0.21522578597068787, - 0.06414483487606049, - 0.4275428354740143, - 0.5237908959388733, - 0.06738035380840302, - -0.11861338466405869, - 0.7751699090003967, - -0.32658490538597107, - 0.3873884081840515, - -0.023632006719708443, - 0.08779571950435638, - -0.02065986953675747, - -0.3203555941581726, - 0.06279540061950684, - 0.2946391701698303, - -0.3721751868724823, - 0.5796948671340942, - 0.007954047992825508, - -0.35443034768104553, - -0.05238080769777298, - -0.4264388978481293, - 0.2871454060077667, - 0.15541745722293854, - 0.23862481117248535, - -0.23090815544128418, - -0.37333399057388306, - -0.2889014184474945, - 0.25871747732162476, - -0.19321925938129425, - -0.2834831774234772, - -0.1565498262643814, - 0.04119173809885979, - 0.014212914742529392, - -0.2397836595773697, - 0.2033349573612213, - 0.12204419076442719, - -0.17446880042552948, - 0.04007628932595253, - -0.4067001938819885, - -0.1722506582736969, - 0.18190431594848633, - 0.6929059028625488, - 0.27528923749923706, - -0.24967753887176514, - -0.06132813170552254, - 0.30700966715812683, - -0.17502053081989288, - 0.0731566771864891, - 0.10760484635829926, - -0.06960611790418625, - -0.4021244943141937, - 0.10139738023281097, - 0.13292549550533295, - -0.4857683777809143, - -0.0997462049126625, - -0.43580156564712524, - 0.07551152259111404, - -0.0033843836281448603, - -0.14483292400836945, - 0.3712177574634552, - 0.19803941249847412, - 0.033927835524082184, - 0.09443007409572601, - -0.26732107996940613, - -0.05879153683781624, - 0.3543913960456848, - 0.29959550499916077, - 0.06797077506780624, - -0.18245546519756317, - -0.44452303647994995, - -0.2848609387874603, - 0.20486590266227722, - -0.27368444204330444, - 0.11429703235626221, - 0.15967264771461487, - 0.17556919157505035, - -0.23424656689167023, - 0.2251690775156021, - -0.21622833609580994, - 0.0028860631864517927, - -0.42873385548591614, - 0.1058376207947731, - 0.35441526770591736, - -0.431979238986969, - 0.3532979488372803, - 0.041436534374952316, - 0.4396197497844696, - 0.30838820338249207, - -0.3553692400455475, - 0.19427360594272614, - -0.3544304370880127 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_080.json b/src/benchmark/output/results/results_graph_080.json deleted file mode 100644 index 276000a..0000000 --- a/src/benchmark/output/results/results_graph_080.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 71-year-old male with a past medical history of tobacco use, who quit more than 24 years ago. He presented with a newly diagnosed lung cancer and a progressively increasing lump in the right axilla over 2 months.\n\n**Initial Diagnosis (Step 1):**\nUpon presentation, the patient underwent an ultrasound examination, which revealed a 3.7 cm enlarged lymph node (LN) in the right axilla with effacement and hypervascularity. A biopsy of the LN showed carcinoma with cytokeratin 7 (CK-7) and thyroid transcription factor-1 (TTF-1) positivity, consistent with lung adenocarcinoma, with a possibility of squamous component. Further imaging studies, including a PET scan, revealed multiple F-fluorodeoxyglucose (FDG) avid nodes in the right hilum, thoracic inlet, mediastinum, and right axilla, concerning for metastatic disease.\n\n**Treatment Initiation (Step 2):**\nThe patient was started on single-agent pembrolizumab, a checkpoint inhibitor, with good treatment response. However, after 17 months of treatment, the patient presented to the clinic with worsening shortness of breath (SOB), which he noted a few months ago, was mild in the beginning, and has progressively gotten worse in the last few weeks.\n\n**Progression and Complications (Step 3):**\nA recent PET scan did not show any evidence of disease progression or signs of inflammation in lungs. However, echocardiography revealed severe pulmonary arterial hypertension (PAH), with elevated right ventricular systolic pressure (RVSP) at 86 mm Hg. The patient also had mild regurgitation noted at the pulmonary valve with no structural abnormalities.\n\n**Current Status:**\nThe patient is currently under close observation for worsening symptoms and potential disease progression. Further management strategies, including additional immunotherapies or PAH-specific treatments, are being considered based on ongoing clinical evaluation.\n\n**Timeline of Diagnoses and Treatments:**\n\n* Month 0-2: Patient presents with newly diagnosed lung cancer and progressively increasing lump in the right axilla.\n* Month 2-17: Patient undergoes treatment with pembrolizumab, showing good initial response.\n* Month 17-present: Patient experiences worsening shortness of breath, prompting further evaluation.\n\n**Outcomes:**\n\n* The patient's current disease status is concerning for metastatic lung cancer with PAH.\n* Further management strategies are being considered to address the patient's worsening symptoms and potential disease progression.", - "bertscore": { - "precision": [ - 0.7466033101081848 - ], - "recall": [ - 0.7676594853401184 - ], - "f1": [ - 0.7569850087165833 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 3, - "edge_count": 2, - "avg_in_degree": 0.6666666666666666, - "density": 0.3333333333333333 - }, - "trajectory_embedding": [ - 0.16170577704906464, - 0.06417428702116013, - -0.1753809005022049, - 0.09126577526330948, - 0.04058043658733368, - -0.0517929308116436, - 0.027891309931874275, - 0.20549362897872925, - 0.3396742641925812, - -0.1185796782374382, - -0.19451667368412018, - 0.3359101712703705, - -0.5800067186355591, - -0.037589181214571, - -0.14825548231601715, - -0.07752230018377304, - 0.1640154868364334, - 0.15847530961036682, - 0.09481053799390793, - -0.22051595151424408, - -0.36081311106681824, - 0.06775417178869247, - -0.27210137248039246, - -0.08581588417291641, - 0.03308814391493797, - -0.2221856713294983, - 0.25041311979293823, - 0.47027888894081116, - 0.010676463134586811, - 0.390374094247818, - 0.020987078547477722, - 0.3011362850666046, - -0.2802215814590454, - 0.13622573018074036, - -0.0426664836704731, - 0.46328845620155334, - 0.22242970764636993, - 0.24061594903469086, - 0.012163308449089527, - 0.2463909238576889, - -0.035688240081071854, - -0.033458296209573746, - 0.683021068572998, - 0.36508381366729736, - 0.5865605473518372, - -0.3869433104991913, - -0.16478519141674042, - 0.2541346549987793, - -0.6637176871299744, - -0.2128756195306778, - 0.1582735925912857, - 0.6316847205162048, - 0.676030158996582, - -0.06598640233278275, - 0.5675460696220398, - -0.015017884783446789, - -0.4154480993747711, - -0.3651273548603058, - -0.24078278243541718, - 0.19777317345142365, - 0.03367118164896965, - 0.09326181560754776, - -0.12598834931850433, - -0.1462969183921814, - -0.26702162623405457, - -0.20758824050426483, - -0.29405689239501953, - -0.1512245088815689, - 0.002099235774949193, - -0.49648937582969666, - -0.4524024426937103, - -0.523938000202179, - -0.21945929527282715, - 0.11926966160535812, - 0.30697500705718994, - -0.17828918993473053, - 0.07593215256929398, - 0.0031282901763916016, - -0.09978869557380676, - 0.06671863794326782, - 0.1485070139169693, - 0.10464618355035782, - 0.2119523286819458, - 0.2293415516614914, - -0.53892582654953, - 0.25895240902900696, - -0.018000666052103043, - -0.06887724250555038, - -0.23081785440444946, - 0.405300110578537, - 0.0023310978431254625, - -0.28803470730781555, - 0.19269920885562897, - -0.15252827107906342, - 0.23817749321460724, - -0.279422789812088, - 0.13371329009532928, - 0.48851433396339417, - 1.0066032409667969, - 0.02901902236044407, - 0.2888752520084381, - 0.08292227238416672, - 0.30324694514274597, - -0.11457598954439163, - 0.5307343602180481, - -0.05574449524283409, - 0.19429010152816772, - -0.3969154357910156, - -0.24090175330638885, - 0.29840365052223206, - -0.06193384528160095, - -0.18737812340259552, - 0.008145813830196857, - -0.3010093867778778, - -0.009682953357696533, - -0.09535468369722366, - -0.12818172574043274, - -0.08768980950117111, - -0.11715734004974365, - -0.33347287774086, - -0.0266678798943758, - -0.2392888069152832, - 0.4559757709503174, - 0.29971909523010254, - -0.6150010824203491, - 0.06653465330600739, - -0.2935921251773834, - 0.2735276520252228, - -0.1821199506521225, - 0.2592300474643707, - -0.4836507737636566, - -0.2863466441631317, - 0.04036503657698631, - 0.4803471565246582, - -0.329915314912796, - 0.29486167430877686, - -0.5024775266647339, - 0.5065647959709167, - -1.1835442781448364, - 0.10830271989107132, - -0.3016100227832794, - -0.1817319542169571, - 0.21494729816913605, - -0.49380624294281006, - -0.04988394305109978, - -0.019627826288342476, - -0.041309770196676254, - 0.10386083275079727, - 0.05729535222053528, - -0.2183636873960495, - -0.20842494070529938, - 0.0022983949165791273, - 0.23450523614883423, - 0.10784179717302322, - 0.149484321475029, - 0.1958412379026413, - 0.17026446759700775, - 0.2709245979785919, - 0.274440199136734, - -0.013130572624504566, - 0.023208647966384888, - 0.23512153327465057, - -0.199251189827919, - -0.08562996983528137, - 0.2056998461484909, - -0.6060120463371277, - 0.18293148279190063, - -0.2545846402645111, - 0.3098243772983551, - 0.03938345983624458, - -0.1685476452112198, - 0.18305246531963348, - -0.11972254514694214, - 0.5722284317016602, - 0.2124704122543335, - 0.44831323623657227, - 0.020334968343377113, - 0.13530932366847992, - 0.32751330733299255, - 0.043996524065732956, - 0.12881529331207275, - 0.004275381565093994, - 0.5150017142295837, - 0.18410582840442657, - -0.32989001274108887, - 0.35640931129455566, - 0.42475900053977966, - -0.5189270377159119, - -0.2981785237789154, - -0.1470656841993332, - 0.34028589725494385, - -0.22099550068378448, - 0.3039867877960205, - -0.36094167828559875, - -0.14047858119010925, - -0.0163204874843359, - -0.421978235244751, - -0.2378939390182495, - -0.03051541931927204, - 0.005137839820235968, - 0.18851839005947113, - 0.2045164853334427, - -0.08168909698724747, - 0.10849367827177048, - -0.00764103839173913, - -0.1480981707572937, - 0.31816622614860535, - 0.17019350826740265, - 0.06157438084483147, - -0.13919706642627716, - -0.026803061366081238, - 0.12923680245876312, - 0.020167088136076927, - 0.24664203822612762, - -0.11446008831262589, - -0.23026323318481445, - 0.4978926181793213, - -0.06820321828126907, - -0.4361797869205475, - 0.25302186608314514, - -0.2057608813047409, - -0.05945592001080513, - 0.4599365293979645, - -0.04139485955238342, - -0.2885613739490509, - 0.3359368145465851, - 0.3233077824115753, - 0.46385347843170166, - 0.13437789678573608, - -0.07005564123392105, - 0.05333550646901131, - -0.28356197476387024, - 0.1518421471118927, - -0.14833299815654755, - -0.13917085528373718, - -0.3918771743774414, - 0.09519139677286148, - -0.22675596177577972, - -0.22635622322559357, - 0.19554878771305084, - -0.14021697640419006, - -0.1394069343805313, - 0.09573733806610107, - -0.40174368023872375, - -0.01943335309624672, - -0.39033043384552, - 0.11863195896148682, - 0.38569021224975586, - -0.024844152852892876, - 0.2903454601764679, - 0.13991692662239075, - 0.019197562709450722, - 0.3583739101886749, - -0.3456098139286041, - -0.21909010410308838, - -0.2593524158000946, - -0.005434083286672831, - 0.2122776061296463, - -0.1608828902244568, - 0.049832671880722046, - -0.03504583239555359, - -0.30573660135269165, - 0.11994820088148117, - -0.17739969491958618, - 0.004336684942245483, - -0.06020696461200714, - -0.126387357711792, - 0.32634201645851135, - 0.067463219165802, - 0.10488498955965042, - -0.5681338310241699, - -0.32007458806037903, - -0.15360380709171295, - -0.28001120686531067, - 0.2688024938106537, - 0.20039302110671997, - -0.058453936129808426, - 0.150589719414711, - 0.2538689374923706, - -0.489363431930542, - -0.3854392468929291, - 0.3142465054988861, - -0.4604202210903168, - 0.23031790554523468, - -0.3282184302806854, - 0.1391030102968216, - 0.31331774592399597, - -0.24032974243164062, - 0.16569222509860992, - 0.4757949411869049, - 0.5051875710487366, - 0.2130226045846939, - -0.01114953588694334, - -0.04440610483288765, - 0.0168099757283926, - -0.09256894141435623, - -0.5790378451347351, - 0.40754246711730957, - -0.22961895167827606, - 0.04027270898222923, - 0.14651338756084442, - 0.1077340617775917, - 0.02400590293109417, - -0.48595574498176575, - -0.30283215641975403, - 0.5803824067115784, - 0.2862081527709961, - -0.1183202862739563, - -0.25270864367485046, - 0.3769168555736542, - 0.78188556432724, - 0.004750050604343414, - -0.23964212834835052, - 0.0021473292727023363, - -0.009572711773216724, - -0.04520444571971893, - -0.038921136409044266, - -0.043263357132673264, - 0.26619139313697815, - -0.0470220111310482, - -0.08051818609237671, - 0.5123961567878723, - -0.11394850164651871, - -0.11871293932199478, - -0.0956827774643898, - -0.14846593141555786, - -0.23261217772960663, - -0.2957981824874878, - 0.32122382521629333, - -0.25173553824424744, - -0.16259802877902985, - 0.45835113525390625, - 0.15288864076137543, - -0.19972564280033112, - 0.04171581193804741, - -0.07582410424947739, - -0.5825116634368896, - 0.20132161676883698, - -0.06379573792219162, - -0.04347846284508705, - 0.5257647633552551, - 0.08377230167388916, - -0.03626188635826111, - -0.20337092876434326, - 0.14988745748996735, - 0.17442531883716583, - -0.06815133988857269, - -0.0007118880748748779, - 0.011094112880527973, - 0.30379799008369446, - 0.4837910234928131, - 0.07047341018915176, - 0.0701151117682457, - 0.35754382610321045, - -0.2858234941959381, - -0.27199193835258484, - -0.11321226507425308, - 0.22233884036540985, - 0.19282692670822144, - -0.352459192276001, - -0.2555687725543976, - -0.43889284133911133, - 0.020942067727446556, - 0.23295383155345917, - 0.03966064006090164, - 0.10098153352737427, - 0.02947184443473816, - -0.06881203502416611, - 0.25679662823677063, - 0.31913289427757263, - 0.14395515620708466, - 0.08225718885660172, - 0.44989416003227234, - 0.21865634620189667, - -0.03538578376173973, - 0.23187457025051117, - -0.08539187908172607, - 0.27775195240974426, - -0.25336670875549316, - -0.3327300548553467, - -0.6518617272377014, - 0.03791474178433418, - -0.23796188831329346, - -0.2112639993429184, - 0.03844016417860985, - -0.07870272547006607, - -0.059338267892599106, - 0.018876032903790474, - 0.3236042261123657, - 0.06626769155263901, - 0.2576044499874115, - -0.19833962619304657, - 0.5462787747383118, - -0.0013432999840006232, - -0.40598535537719727, - -0.09618297964334488, - -0.189860001206398, - 0.30224987864494324, - -0.1370094120502472, - -0.010360236279666424, - -0.23108692467212677, - 0.28076794743537903, - -0.0056189484894275665, - -0.0932111144065857, - -0.06363409012556076, - -0.15601979196071625, - -0.13073007762432098, - -0.28219181299209595, - -0.14281325042247772, - 0.009279821999371052, - -0.054536301642656326, - -0.13986848294734955, - 0.2702961564064026, - -0.1357324868440628, - -0.32171741127967834, - -0.10712447017431259, - 0.5144136548042297, - 0.021468251943588257, - -0.0010568300494924188, - 0.3552232086658478, - 0.21233385801315308, - 0.11103376001119614, - 0.3788088262081146, - -0.30189526081085205, - 0.24352531135082245, - 0.34511828422546387, - -0.1582849770784378, - -0.09250759333372116, - 0.030928021296858788, - -0.1553855687379837, - -0.030506499111652374, - 0.17037808895111084, - 0.23281733691692352, - 0.09007861465215683, - -0.03122805617749691, - -0.13672585785388947, - 0.3326437771320343, - -0.26446542143821716, - -0.14839814603328705, - 0.45609593391418457, - -0.03043253719806671, - 0.538658618927002, - -0.04290486499667168, - -0.28737005591392517, - -0.3159334361553192, - 0.10606477409601212, - -0.5321884155273438, - 0.1916835904121399, - -0.05784996226429939, - -0.27770179510116577, - -0.05638095736503601, - 0.16572465002536774, - 0.12988774478435516, - 0.0034224092960357666, - 0.12267196178436279, - 0.035601794719696045, - 0.18500597774982452, - 0.0016053169965744019, - -0.38293972611427307, - -0.072118379175663, - -0.39139723777770996, - -0.48963668942451477, - -0.2621878385543823, - 0.49308255314826965, - 0.4136013090610504, - -0.07869190722703934, - 0.011978725902736187, - 0.1467512845993042, - -0.14674049615859985, - -0.4187954366207123, - 0.032208096235990524, - -0.16551727056503296, - 0.5775502324104309, - 0.12220194935798645, - -0.1174648329615593, - 0.053470250219106674, - -0.5826014876365662, - 2.0136436432949267e-05, - 0.217664435505867, - 0.24270987510681152, - 0.3843815326690674, - 0.2551819384098053, - 0.24215956032276154, - 0.25699126720428467, - 0.1521281599998474, - -0.10425279289484024, - 0.2962424159049988, - 0.06129523739218712, - 0.06566400080919266, - -0.05866144970059395, - -0.31432613730430603, - 0.554105281829834, - -0.3822920024394989, - 0.12933607399463654, - 0.051500916481018066, - 0.40378856658935547, - -0.3613762855529785, - -0.3446308374404907, - -0.1011548861861229, - -0.3012189269065857, - -0.02459586225450039, - -0.4447677433490753, - -0.22453542053699493, - 0.1441662758588791, - -0.3610188961029053, - -0.16058175265789032, - 0.25536420941352844, - 0.14051537215709686, - 0.11507883667945862, - 0.125632181763649, - -0.3028871715068817, - -0.4414997100830078, - 0.12171987444162369, - 0.44699159264564514, - -0.07384810596704483, - 0.055923253297805786, - -0.2615223824977875, - 0.25376811623573303, - 0.5499110817909241, - -0.12618230283260345, - -0.13409112393856049, - 0.024104351177811623, - 0.18812449276447296, - -0.229927197098732, - -0.03431566059589386, - -0.10431947559118271, - 0.2295948714017868, - -0.44498029351234436, - 0.02819477766752243, - 0.015521925874054432, - -0.4733261168003082, - 0.11836191266775131, - -0.2954564392566681, - -0.4829397201538086, - 0.10651502013206482, - 0.3445877134799957, - -0.051440875977277756, - 0.13554584980010986, - 0.0506732352077961, - 0.4395820200443268, - 0.08662901073694229, - -0.18536098301410675, - 0.2140907198190689, - -0.48223161697387695, - -0.02478078007698059, - 0.22532819211483002, - -0.1257062405347824, - 0.2698558568954468, - -0.09194726496934891, - 0.19092683494091034, - 0.44144532084465027, - 0.06286539137363434, - -0.4876507818698883, - 0.19771629571914673, - 0.2587491571903229, - 0.3993764817714691, - -0.21249842643737793, - -10.696544647216797, - 0.3267917037010193, - -0.1931016594171524, - 0.45036229491233826, - -0.08852332830429077, - 0.05742527171969414, - -0.3659094572067261, - 0.054845016449689865, - 0.050520434975624084, - 0.11332130432128906, - -0.11314848810434341, - 0.0736548900604248, - 0.16164906322956085, - 0.26976752281188965, - 0.09283443540334702, - 0.02761017717421055, - -0.31051892042160034, - 0.3553762435913086, - -0.1742977648973465, - 0.2205958366394043, - 0.34635546803474426, - 0.4062264859676361, - -0.35396823287010193, - 0.2646059989929199, - 0.16952429711818695, - -0.22071988880634308, - -0.09732081741094589, - 0.3406055271625519, - 0.05119972303509712, - -0.31444260478019714, - 0.4091686010360718, - 0.12900780141353607, - -0.3823615610599518, - -0.037645064294338226, - 0.11201243847608566, - -0.24389010667800903, - -0.189349964261055, - 0.2016192078590393, - 0.09059354662895203, - 0.05876535177230835, - 0.18239140510559082, - -0.3371480405330658, - -0.1271895319223404, - 0.20678092539310455, - -0.16091510653495789, - -0.3933931291103363, - -0.09605833142995834, - -1.3924120664596558, - 0.041603922843933105, - 0.40078845620155334, - 0.6122336387634277, - -0.031026005744934082, - 0.09205054491758347, - 0.13186831772327423, - -0.4089258015155792, - -0.039451923221349716, - -0.17487145960330963, - 0.11786512285470963, - 0.11953631043434143, - -0.23365505039691925, - 0.014726396650075912, - -0.027913773432374, - 0.34021639823913574, - -0.4306485652923584, - -0.4140009582042694, - 0.25939080119132996, - -0.07822064310312271, - 0.0587964802980423, - 0.06297113001346588, - 0.05746515467762947, - -0.6372826099395752, - -0.10111063718795776, - 0.11570742726325989, - 0.014021371491253376, - 0.4960898458957672, - 0.02326870895922184, - -0.6462897658348083, - 0.14166639745235443, - -0.06939949840307236, - 0.526535153388977, - 0.013086249120533466, - 0.043429940938949585, - 0.16642211377620697, - -0.05013129487633705, - -0.1368580460548401, - -0.4777989089488983, - 0.0451304130256176, - 0.5684677362442017, - -0.03262486681342125, - -0.006404608488082886, - -0.04261365905404091, - 0.09246858209371567, - -0.17152021825313568, - -0.12491945177316666, - -0.5599517226219177, - 0.22403578460216522, - -0.002937018871307373, - -0.016761846840381622, - 0.02910032868385315, - -0.24091923236846924, - 0.0761120393872261, - -0.21871237456798553, - -0.012899058870971203, - -0.5061669945716858, - -0.2397974282503128, - 0.21639524400234222, - 0.2235356718301773, - -0.06739028543233871, - 0.19935816526412964, - -0.0274154394865036, - 0.18605439364910126, - 0.024828828871250153, - 0.36120685935020447, - 0.4014972150325775, - 0.2253611832857132, - 0.036079224199056625, - -0.25269997119903564, - -0.11901547759771347, - -0.21596413850784302, - 0.20858030021190643, - 0.28345775604248047, - -0.12829269468784332, - 0.3251263201236725, - 0.6155745387077332, - 0.038912683725357056, - -0.19988779723644257, - 0.7746531367301941, - -0.175467848777771, - 0.4368321895599365, - 4.738072675536387e-05, - 0.1368003487586975, - 0.04108123853802681, - -0.3866727352142334, - 0.2919377088546753, - 0.21532011032104492, - -0.38474133610725403, - 0.46949830651283264, - 0.07764176279306412, - -0.24931935966014862, - -0.015154749155044556, - -0.40230438113212585, - 0.3921107351779938, - 0.07843241840600967, - 0.3270377516746521, - 0.020024141296744347, - -0.26750925183296204, - -0.2359234094619751, - 0.019181398674845695, - -0.3531128168106079, - -0.1538238376379013, - -0.21520940959453583, - 0.04078909382224083, - 0.043268799781799316, - -0.23968857526779175, - 0.29185494780540466, - 0.07115846127271652, - -0.07164786756038666, - 0.10682477802038193, - -0.3784548044204712, - -0.3577486574649811, - -0.1471642553806305, - 0.5361248850822449, - 0.06279879063367844, - -0.06982944905757904, - -0.12452534586191177, - 0.3395889103412628, - -0.03245915099978447, - 0.12318012118339539, - 0.05687183514237404, - 0.10818618535995483, - -0.4374234974384308, - 0.1441798061132431, - 0.1358024924993515, - -0.43465766310691833, - -0.22156845033168793, - -0.4098415672779083, - 0.23547561466693878, - 0.041761819273233414, - -0.1572698950767517, - 0.47256746888160706, - 0.4554685652256012, - 0.04705950990319252, - 0.06323787569999695, - -0.20251940190792084, - 0.3220158815383911, - 0.2226671427488327, - -0.05750179663300514, - 0.25517570972442627, - -0.21750958263874054, - -0.3569756746292114, - -0.27008959650993347, - 0.02801072597503662, - -0.2674688398838043, - 0.13896159827709198, - -0.15346553921699524, - 0.21098242700099945, - -0.4238058626651764, - 0.09534284472465515, - -0.10380738228559494, - 0.13649247586727142, - -0.24735979735851288, - 0.10851240158081055, - 0.29225099086761475, - -0.5054976940155029, - 0.2565760612487793, - -0.11907598376274109, - 0.17706717550754547, - 0.2255607396364212, - -0.3712857663631439, - 0.08376073837280273, - -0.10963030904531479 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_081.json b/src/benchmark/output/results/results_graph_081.json deleted file mode 100644 index e84dadc..0000000 --- a/src/benchmark/output/results/results_graph_081.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 46-year-old woman who was incidentally found to have a pulmonary nodule during a routine health examination. No symptoms were reported, and she had no significant medical history, including no history of tuberculosis or lung infections.\n\n**Initial Diagnosis (Step 1):**\nA chest radiograph revealed a solitary pulmonary nodule in the left lower lung field. The patient was diagnosed with a pulmonary nodule (code: 7225005) and underwent further evaluation.\n\n**Biopsy and Initial Treatment (Steps 2-3):**\nA peripheral pulmonary nodule was identified on a chest CT scan, which led to the performance of an endobronchial ultrasound transbronchial lung biopsy. The procedure was successful, but minor bleeding occurred. Biopsy specimens revealed granulomatous inflammation. Following this, a transbronchial lung cryobiopsy was performed four times through the same guide sheath, also with minor bleeding.\n\n**Post-Biopsy Complications and Treatment Initiation (Step 3):**\nAfter the cryobiopsy, increased density in the lower zone of the left lung was observed on chest radiograph. Tissue sample PCR tests were negative for Mycobacterium tuberculosis and NTM. However, one week post-biopsy, follow-up outpatient chest radiographs revealed an enlarged shadow at the location of the original lesion. The patient reported discharge of a purulent and intermittent blood-tinged sputum, which led to the initiation of antibiotic therapy with moxifloxacin (400 mg daily).\n\n**Response to Antibiotics and Follow-Up (Step 4):**\nTwo weeks after starting antibiotics, chest radiographs indicated a slight increase in the size of the lesion. However, there was an improvement in her symptoms, with no other abnormal findings such as fever. The antibiotic therapy continued with regular outpatient follow-ups.\n\n**Lesion Improvement and Acid-Fast Bacilli Growth (Step 5):**\nThree weeks after tissue biopsy, chest radiographs showed improvement in the lesion size. Notably, growth of acid-fast bacilli was reported in the bronchoalveolar lavage fluid obtained during examination.\n\n**Outcome:**\nThe patient's symptoms improved significantly with antibiotic therapy and follow-up care. The growth of acid-fast bacilli in the bronchoalveolar lavage fluid suggested that the patient had a Mycobacterium tuberculosis infection, which was confirmed by PCR tests. However, due to the presence of granulomatous inflammation in biopsy specimens, it is possible that the patient had an NTM infection as well.\n\n**Conclusion:**\nThe patient's case highlights the importance of prompt evaluation and treatment for pulmonary nodules, particularly those with granulomatous inflammation or acid-fast bacilli growth. Early detection and management can significantly improve outcomes and prevent complications.", - "bertscore": { - "precision": [ - 0.6428266167640686 - ], - "recall": [ - 0.7402181625366211 - ], - "f1": [ - 0.6880933046340942 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 2, - "node_count": 6, - "edge_count": 4, - "avg_in_degree": 0.6666666666666666, - "density": 0.13333333333333333 - }, - "trajectory_embedding": [ - 0.1967584788799286, - 0.11755304038524628, - -0.10197411477565765, - -0.01451544463634491, - -0.10492626577615738, - -0.16041645407676697, - 0.15277233719825745, - 0.07490139454603195, - 0.196526437997818, - -0.2453027218580246, - -0.23723392188549042, - 0.15686118602752686, - -0.45318803191185, - -0.14287793636322021, - -0.1919034719467163, - -0.01922443136572838, - 0.09047435224056244, - 0.2307237833738327, - 0.06612925231456757, - -0.30490654706954956, - -0.5095926523208618, - 0.09057998657226562, - -0.3310241401195526, - -0.15016674995422363, - 0.09834185242652893, - 0.00662646722048521, - 0.05036105588078499, - 0.5195268392562866, - 0.2559052109718323, - 0.49741601943969727, - 0.20520301163196564, - 0.1978311538696289, - -0.23709924519062042, - 0.05779299885034561, - -0.2160702645778656, - 0.35687413811683655, - 0.18609383702278137, - 0.4006708264350891, - -0.07851338386535645, - -0.013639949262142181, - -0.023297805339097977, - 0.01679356023669243, - 0.8863866925239563, - 0.39117974042892456, - 0.6297079920768738, - -0.7095476388931274, - 0.08873630315065384, - 0.47203999757766724, - -0.5215798616409302, - -0.2589757442474365, - 0.2998557984828949, - 0.6878936290740967, - 0.616496741771698, - -0.103790782392025, - 0.48690876364707947, - -0.13505902886390686, - -0.38761240243911743, - -0.21568915247917175, - -0.29627087712287903, - 0.08889561146497726, - -0.004067690577358007, - -0.0721888542175293, - 0.08505629748106003, - -0.059112370014190674, - -0.3711683452129364, - -0.1344449818134308, - -0.15514591336250305, - 0.04374406486749649, - 0.001033145235851407, - -0.47192955017089844, - -0.23844489455223083, - -0.271122545003891, - -0.0970202088356018, - 0.018400097265839577, - -0.016769196838140488, - -0.17139652371406555, - 0.3182295560836792, - -0.013026106171309948, - -0.05352813005447388, - -0.04483800753951073, - -0.02286483719944954, - 0.17096233367919922, - 0.10240630805492401, - 0.040907151997089386, - -0.1877213716506958, - 0.17709025740623474, - -0.0719011202454567, - -0.1333617866039276, - -0.1893998384475708, - 0.21347680687904358, - 0.19486841559410095, - -0.16797563433647156, - 0.08185581117868423, - -0.13447889685630798, - 0.13286735117435455, - -0.19486990571022034, - 0.1648717224597931, - 0.4256727695465088, - 1.1231606006622314, - 0.014604246243834496, - 0.19181255996227264, - 0.10960622131824493, - 0.20627649128437042, - -0.13242535293102264, - 0.4895930886268616, - -0.04705680534243584, - 0.07572434842586517, - -0.6876301765441895, - -0.30880647897720337, - 0.30060893297195435, - 0.014305981807410717, - -0.18023338913917542, - 0.1903560310602188, - -0.3354260325431824, - 0.022099385038018227, - 0.12615585327148438, - -0.2117345780134201, - 0.17497646808624268, - -0.13861685991287231, - -0.2423783838748932, - 0.07328806817531586, - -0.06552425771951675, - 0.3177458941936493, - 0.31820210814476013, - -0.37602055072784424, - -0.10976444184780121, - -0.132036030292511, - 0.10575046390295029, - 0.045866478234529495, - 0.04125301539897919, - -0.5529741048812866, - -0.15419010818004608, - 0.016441548243165016, - 0.3415800929069519, - -0.1986306607723236, - 0.16156351566314697, - -0.3381054997444153, - 0.3312362730503082, - -1.1593300104141235, - 0.2070571929216385, - -0.5770875811576843, - 0.041539017111063004, - 0.08659698069095612, - -0.40547579526901245, - -0.22364994883537292, - -0.25963708758354187, - -0.22558438777923584, - -0.001673890626989305, - 0.023335684090852737, - -0.13531021773815155, - -0.22158853709697723, - 0.13990099728107452, - 0.27269506454467773, - 0.21471509337425232, - 0.21108976006507874, - 0.2316681444644928, - 0.12973514199256897, - 0.33893221616744995, - 0.2858162522315979, - 0.04344502091407776, - 0.03169308975338936, - 0.22765187919139862, - -0.10976984351873398, - -0.4443940222263336, - -0.032376062124967575, - -0.7336358428001404, - 0.28923705220222473, - -0.273898184299469, - 0.3324330747127533, - 0.049167972058057785, - -0.15189211070537567, - 0.13944867253303528, - -0.21886488795280457, - 0.5503464937210083, - 0.2171466052532196, - 0.6291339993476868, - 0.11273552477359772, - 0.11478869616985321, - 0.3419473171234131, - 0.0773049145936966, - 0.20578324794769287, - 0.033577218651771545, - 0.522563099861145, - 0.17831286787986755, - -0.23628458380699158, - 0.1833256185054779, - 0.3928374648094177, - -0.1809474527835846, - -0.18037357926368713, - -0.26165372133255005, - 0.44358858466148376, - -0.1424209624528885, - 0.4192637503147125, - -0.3868114948272705, - 0.18567727506160736, - -0.04453083127737045, - -0.3912268280982971, - -0.3401441276073456, - 0.12440862506628036, - -0.06588377803564072, - 0.21651992201805115, - 0.18031904101371765, - 0.0385860837996006, - 0.05526469275355339, - 0.17041175067424774, - -0.14128008484840393, - 0.30237168073654175, - 0.05587827414274216, - 0.03877586871385574, - -0.2750449776649475, - -0.18203917145729065, - 0.17013022303581238, - 0.027720388025045395, - 0.3112988770008087, - 0.0004239678382873535, - -0.19901946187019348, - 0.35572659969329834, - -0.09977003931999207, - -0.07894817739725113, - 0.35504937171936035, - -0.1763714849948883, - -0.05377941578626633, - 0.23651878535747528, - -0.0997595340013504, - -0.25139355659484863, - 0.2593649923801422, - 0.19310155510902405, - 0.1784505844116211, - 0.14192160964012146, - -0.02237403765320778, - 0.09491994231939316, - -0.2859984040260315, - 0.09121128916740417, - -0.12167664617300034, - -0.020334120839834213, - -0.31394022703170776, - 0.1018623560667038, - -0.23500454425811768, - -0.287008672952652, - 0.30209246277809143, - -0.10152151435613632, - -0.12201225757598877, - -0.004989572800695896, - -0.13312369585037231, - 0.07816831767559052, - -0.4034978449344635, - 0.02433887869119644, - 0.3271365463733673, - 0.1338953673839569, - 0.3997375965118408, - -0.003557264804840088, - -0.10331934690475464, - 0.2821424603462219, - -0.3583966791629791, - -0.18959423899650574, - -0.4298092722892761, - -0.24525706470012665, - -0.028561707586050034, - -0.2585803270339966, - 0.02835909090936184, - 0.16634607315063477, - -0.18870027363300323, - 0.034991130232810974, - -0.27091091871261597, - -0.19668790698051453, - -0.0402541346848011, - 0.013429408892989159, - 0.1116127148270607, - 0.005450990982353687, - 0.11936700344085693, - -0.2617207169532776, - -0.26540863513946533, - -0.21895503997802734, - -0.00697906780987978, - 0.43251949548721313, - 0.13050711154937744, - -0.12339681386947632, - 0.09212832152843475, - 0.12126436084508896, - -0.40955519676208496, - -0.4810248017311096, - 0.3085540235042572, - -0.23617903888225555, - 0.18699748814105988, - -0.2609942555427551, - 0.12072405964136124, - 0.3376457989215851, - -0.08947847783565521, - 0.2665684223175049, - 0.4064629077911377, - 0.595430850982666, - 0.1510598510503769, - -0.1242670863866806, - -0.05659446865320206, - -0.1701529175043106, - -0.08453353494405746, - -0.3949616253376007, - 0.12916430830955505, - -0.036906905472278595, - -0.07092710584402084, - 0.013966059312224388, - 0.19560974836349487, - 0.150782972574234, - -0.5805098414421082, - -0.3237167298793793, - 0.49967679381370544, - 0.18696358799934387, - 0.0732409656047821, - 0.12247307598590851, - 0.47614988684654236, - 0.658728301525116, - -0.055910222232341766, - -0.12764811515808105, - -0.09892571717500687, - -0.1056193932890892, - -0.07365167886018753, - 0.031886883080005646, - 0.04897140711545944, - 0.1582757979631424, - -0.11084697395563126, - -0.039983734488487244, - 0.37840741872787476, - -0.13775819540023804, - -0.050096262246370316, - -0.08499650657176971, - 0.06984605640172958, - -0.008826404809951782, - -0.3178556561470032, - 0.3040192127227783, - -0.20485036075115204, - 0.07680967450141907, - 0.29083776473999023, - -0.19122250378131866, - -0.24821750819683075, - 0.23540492355823517, - -0.0535007119178772, - -0.5578641891479492, - 0.3456767797470093, - 0.03510328009724617, - -0.012471387162804604, - 0.3001169264316559, - -0.06599339842796326, - -0.025053720921278, - -0.23139193654060364, - 0.1550685465335846, - -0.024350982159376144, - -0.09205859154462814, - -0.16618546843528748, - -0.016404826194047928, - 0.2525540888309479, - 0.6022517085075378, - 0.08816401660442352, - 0.10629606246948242, - 0.16338548064231873, - -0.2172541618347168, - -0.08184953778982162, - -0.05518527701497078, - 0.16355881094932556, - 0.07710406929254532, - -0.34773483872413635, - -0.3526677191257477, - -0.13999369740486145, - 0.23183484375476837, - 0.1087949126958847, - -0.3482573628425598, - 0.014906858094036579, - 0.08469434082508087, - 0.05313107371330261, - 0.008774049580097198, - 0.47105151414871216, - 0.2699393630027771, - 0.07613404095172882, - 0.5814527273178101, - 0.13844969868659973, - -0.0005095645901747048, - 0.39449113607406616, - -0.12463782727718353, - 0.2951422929763794, - -0.15823331475257874, - -0.35080814361572266, - -0.39777132868766785, - -0.03351239114999771, - -0.13526272773742676, - -0.1285906583070755, - -0.0751277357339859, - -0.14558455348014832, - -0.04340607300400734, - -0.03976156562566757, - 0.2588410973548889, - -0.0009872585069388151, - 0.3498977720737457, - 0.07360564917325974, - 0.5455833673477173, - -0.18349774181842804, - -0.38231438398361206, - 0.13607379794120789, - 0.0570128932595253, - 0.33573341369628906, - -0.21956348419189453, - -0.09788881242275238, - -0.08872657269239426, - 0.4655590057373047, - 0.14583882689476013, - 0.04268839210271835, - -0.005775381810963154, - -0.12465288490056992, - -0.28661924600601196, - -0.4029368758201599, - -0.02991427853703499, - -0.07861411571502686, - -0.10777866840362549, - -0.0660325139760971, - 0.10481926053762436, - -0.17538830637931824, - -0.24541553854942322, - -0.1628335416316986, - 0.3443373441696167, - 0.11073631048202515, - -0.09838424623012543, - 0.14871425926685333, - 0.19977399706840515, - 0.061921097338199615, - 0.1626061350107193, - -0.15568161010742188, - 0.15809091925621033, - 0.049261003732681274, - -0.323628693819046, - -0.17337563633918762, - 0.1320417821407318, - -0.20197324454784393, - 0.07686629146337509, - 0.22195568680763245, - 0.10613276064395905, - 0.07440101355314255, - -0.04423122853040695, - -0.039701320230960846, - 0.13017937541007996, - -0.31522631645202637, - -0.1482960730791092, - 0.354005366563797, - 0.08942903578281403, - 0.5207788944244385, - -0.07138728350400925, - -0.39649564027786255, - -0.1881406307220459, - -0.051238853484392166, - -0.49282771348953247, - 0.1420252025127411, - 0.04195072129368782, - -0.20293235778808594, - -0.0009160101180896163, - -0.06400282680988312, - -0.06789351999759674, - 0.11302666366100311, - 0.1083294004201889, - 0.12636366486549377, - 0.18581880629062653, - -0.04183664172887802, - -0.3641246259212494, - 0.001423469977453351, - -0.16934354603290558, - -0.3309791684150696, - -0.32710108160972595, - 0.5034326314926147, - 0.2902287542819977, - -0.1912984549999237, - -0.1568678319454193, - 0.032605670392513275, - -0.28300338983535767, - -0.39163199067115784, - -0.06383704394102097, - -0.023489903658628464, - 0.4418272376060486, - 0.08311082422733307, - -0.22698771953582764, - 0.1376923769712448, - -0.4899768829345703, - 0.2032603919506073, - 0.2570874094963074, - 0.2502760589122772, - 0.38838991522789, - 0.20617978274822235, - 0.14174334704875946, - 0.35771575570106506, - -0.04101404920220375, - -0.0474872924387455, - 0.3207376003265381, - -0.03652804344892502, - 0.07369537651538849, - -0.08303757011890411, - -0.2517068386077881, - 0.3582306206226349, - -0.24164530634880066, - 0.0818767324090004, - 0.1574096381664276, - 0.42581015825271606, - -0.28995266556739807, - -0.2653692960739136, - 0.08564826846122742, - -0.03156302124261856, - -0.24595478177070618, - -0.2383064329624176, - -0.13157084584236145, - 0.2366458922624588, - -0.20988348126411438, - -0.11875996738672256, - 0.3080471158027649, - 0.2202942818403244, - 0.11700955778360367, - 0.14630641043186188, - -0.1308034211397171, - -0.45798367261886597, - 0.14316794276237488, - 0.3176949918270111, - 0.03274453803896904, - 0.06208207085728645, - -0.02162250317633152, - 0.2123701274394989, - 0.438167005777359, - 0.03665542975068092, - -0.059164345264434814, - -0.030929673463106155, - -0.032955143600702286, - -0.02877996489405632, - 0.0842398852109909, - -0.07172457128763199, - 0.36094698309898376, - -0.4424992501735687, - 0.18416765332221985, - -0.0875607430934906, - -0.17548903822898865, - 0.2712807059288025, - -0.2529817819595337, - -0.5398637652397156, - -0.04372246190905571, - 0.28851327300071716, - -0.18448667228221893, - 0.04821692779660225, - 0.041026897728443146, - 0.590768039226532, - 0.18769490718841553, - -0.18967285752296448, - 0.012890934944152832, - -0.48902541399002075, - 0.0940120592713356, - 0.15024730563163757, - -0.21602514386177063, - 0.08296173065900803, - -0.08159513771533966, - 0.31601592898368835, - 0.26593291759490967, - 0.10108325630426407, - -0.4523289203643799, - -0.008006530813872814, - 0.0958816409111023, - 0.35121482610702515, - -0.24566808342933655, - -10.958778381347656, - 0.1552482694387436, - -0.18667428195476532, - 0.4413946270942688, - -0.18904879689216614, - 0.014782565645873547, - -0.021532554179430008, - -0.2302398681640625, - 0.14519324898719788, - 0.22123464941978455, - -0.18127699196338654, - 0.21586795151233673, - 0.479623943567276, - 0.1667996197938919, - -0.09335207939147949, - -0.2573135197162628, - -0.21420522034168243, - 0.15133711695671082, - 0.10076852887868881, - 0.18418823182582855, - 0.32067394256591797, - 0.5369850993156433, - -0.18111565709114075, - 0.3282756805419922, - 0.19153852760791779, - -0.0699005275964737, - -0.30830711126327515, - 0.47705382108688354, - 0.08514488488435745, - -0.3933911919593811, - 0.3122265636920929, - 0.015570787712931633, - -0.2844651937484741, - -0.08435386419296265, - -0.005672072060406208, - -0.18978936970233917, - -0.13896335661411285, - 0.00787820853292942, - -0.056989885866642, - 0.009688363410532475, - -0.09942108392715454, - -0.19827315211296082, - -0.046481985598802567, - 0.3088589310646057, - -0.08347553014755249, - -0.4935165047645569, - -0.23201560974121094, - -1.3872177600860596, - 0.24801094830036163, - 0.3378968834877014, - 0.42845863103866577, - -0.05316653847694397, - 0.20878544449806213, - 0.028127018362283707, - -0.48170119524002075, - 0.09582778811454773, - -0.3368637263774872, - 0.18246391415596008, - 0.11837492883205414, - -0.025051334872841835, - 0.2739103436470032, - -0.283103883266449, - 0.4177383482456207, - -0.35837915539741516, - -0.3229537606239319, - 0.20335514843463898, - 0.04449812322854996, - -0.0026281073223799467, - -0.1372441202402115, - -0.24562866985797882, - -0.4445008337497711, - -0.11594490706920624, - 0.06675887107849121, - 0.09147355705499649, - 0.37978532910346985, - -0.032876722514629364, - -0.4610574245452881, - 0.008209247142076492, - -0.04638725891709328, - 0.2249755561351776, - 0.05482844263315201, - -0.0340719111263752, - 0.17114558815956116, - -0.19636854529380798, - -0.1131758913397789, - -0.14046898484230042, - 0.09365930408239365, - 0.4669206142425537, - -0.006150448229163885, - 0.15386368334293365, - 0.07898272573947906, - 0.2962016463279724, - 0.006034079007804394, - -0.14803515374660492, - -0.3734908103942871, - 0.0664379820227623, - 0.07693399488925934, - 0.024192025884985924, - 0.13989874720573425, - -0.047955237329006195, - -0.1367001086473465, - -0.26667124032974243, - -0.045901279896497726, - -0.31072068214416504, - -0.35135409235954285, - 0.2985505163669586, - 0.23715749382972717, - 0.19511640071868896, - 0.1346515566110611, - 0.045594412833452225, - 0.19078651070594788, - 0.011736370623111725, - 0.4168233871459961, - 0.46678799390792847, - 0.10142551362514496, - -0.15040293335914612, - -0.29881346225738525, - 0.03443441540002823, - -0.3443596363067627, - 0.09844528138637543, - 0.200627401471138, - -0.15900373458862305, - 0.3771199584007263, - 0.5476076602935791, - -0.1625971645116806, - -0.08211658895015717, - 1.0174540281295776, - -0.1810964047908783, - 0.518316388130188, - -0.243841290473938, - 0.382476270198822, - -0.16473765671253204, - -0.12902195751667023, - 0.008411785587668419, - 0.21668043732643127, - -0.37741798162460327, - 0.3656461238861084, - 0.03293965011835098, - -0.36173003911972046, - 0.132867693901062, - -0.37806540727615356, - 0.43903571367263794, - 0.370775431394577, - 0.23582184314727783, - -0.15002946555614471, - -0.389586865901947, - -0.1460159420967102, - -0.01017976738512516, - -0.36394616961479187, - -0.28960341215133667, - -0.011743366718292236, - -0.026663970202207565, - 0.0770261138677597, - -0.29801955819129944, - 0.340511679649353, - -0.011794021353125572, - -0.03801155835390091, - -0.28990668058395386, - -0.4511684477329254, - -0.06559505313634872, - 0.2513965666294098, - 0.5489107370376587, - 0.19864584505558014, - 0.04395604878664017, - -0.2080826312303543, - 0.2761658728122711, - 0.09557073563337326, - 0.2297014743089676, - 0.15037715435028076, - -0.008760035037994385, - -0.44482526183128357, - 0.016140419989824295, - 0.06326471269130707, - -0.3390626311302185, - -0.23110362887382507, - -0.3911399245262146, - 0.2593574523925781, - -0.09236723184585571, - -0.2182852029800415, - 0.4117717146873474, - 0.31265297532081604, - -0.015294261276721954, - 0.03804130479693413, - -0.2940312325954437, - 0.3178632855415344, - 0.08148939907550812, - 0.06908852607011795, - 0.2116161584854126, - -0.13141874969005585, - -0.41269150376319885, - -0.4795854091644287, - 0.3196330666542053, - -0.1977824866771698, - -0.06255056709051132, - 0.22282274067401886, - 0.26462727785110474, - -0.3254283368587494, - -0.036457810550928116, - -0.205780029296875, - -0.09411490708589554, - -0.2870650887489319, - 0.034763045608997345, - 0.24220585823059082, - -0.3924984931945801, - 0.04178700968623161, - -0.20928111672401428, - 0.21435411274433136, - -0.0046385168097913265, - -0.4735918939113617, - 0.2721315026283264, - -0.15266039967536926 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_082.json b/src/benchmark/output/results/results_graph_082.json deleted file mode 100644 index b99f13c..0000000 --- a/src/benchmark/output/results/results_graph_082.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is an adult with unknown age, sex, and ethnicity. The patient's demographic information is not provided in the data.\n\n**Initial Presentation:**\nThe patient presented with symptoms of intracranial hypertension, including nausea and vomiting (Step 1). This was the initial presentation that led to further investigation.\n\n**Diagnosis:**\nFurther investigation revealed brain MRI suggesting leptomeningeal metastases (Step 2). Lumbar puncture was performed, and cerebrospinal fluid cytology confirmed leptomeningeal metastases (Step 3).\n\n**Treatment:**\nThe patient received treatment for the diagnosed condition. The treatment sequence included initial monotherapy with Olaparib, followed by combination therapy with intrathecal chemotherapy, and eventually a triple combination of Olaparib, Furmonertinib, and intrathecal chemotherapy (Step 5). Intrathecal pemetrexed was administered since October 2021 (Step 8).\n\n**Progression:**\nSymptoms of leptomeningeal metastases worsened dramatically, including lethargy, unresponsiveness, difficulty in eating and swallowing, necessitating intravenous nutritional support. The patient's ECOG performance status declined to 4 (Step 9). This marked a significant progression of the disease.\n\n**Outcome:**\nThe patient experienced a durable response to Olaparib lasting approximately 21 months (Step 6). However, the worsening of leptomeningeal metastases symptoms and decline in functional status necessitated further treatment adjustments.\n\n**Timeline:**\n\n* Step 1: Initial presentation with intracranial hypertension symptoms\n* Step 2: Diagnosis of leptomeningeal metastases confirmed by brain MRI\n* Step 3: Lumbar puncture performed, and cerebrospinal fluid cytology confirmed leptomeningeal metastases\n* Step 4: Placement of Ommaya reservoir for treatment delivery\n* Step 5: Identification of EGFR and BRCA2 mutations\n* Step 6: Initiation of Olaparib therapy with durable response lasting approximately 21 months\n* Step 7: Treatment escalation to combination therapy with intrathecal chemotherapy\n* Step 8: Administration of intrathecal pemetrexed since October 2021\n* Step 9: Worsening of leptomeningeal metastases symptoms and decline in functional status\n\n**Conclusion:**\nThe patient was diagnosed with leptomeningeal metastases and received treatment with Olaparib, Furmonertinib, and intrathecal chemotherapy. The patient experienced a durable response to Olaparib but ultimately required further treatment adjustments due to worsening of symptoms and decline in functional status.", - "bertscore": { - "precision": [ - 0.5512253046035767 - ], - "recall": [ - 0.5020527839660645 - ], - "f1": [ - 0.5254911780357361 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 9, - "edge_count": 8, - "avg_in_degree": 0.8888888888888888, - "density": 0.1111111111111111 - }, - "trajectory_embedding": [ - 0.2321387678384781, - 0.21690434217453003, - -0.13298587501049042, - 0.17195039987564087, - 0.08285973221063614, - 0.15777303278446198, - 0.1095961406826973, - 0.3161073923110962, - 0.6317851543426514, - -0.3226621448993683, - -0.16632980108261108, - -0.09433408826589584, - -0.4814378321170807, - -0.1313047707080841, - -0.1984696239233017, - 0.20387743413448334, - -0.17162606120109558, - 0.3204534351825714, - -0.1586170792579651, - -0.26370200514793396, - -0.2706388831138611, - 0.18940262496471405, - -0.5221731662750244, - 0.04878344386816025, - 0.2266974151134491, - -0.012427234090864658, - 0.4797787666320801, - 0.46920332312583923, - 0.14035525918006897, - 0.3257744312286377, - 0.24380451440811157, - -0.166899636387825, - 0.2893010377883911, - -0.039560362696647644, - -0.2734023630619049, - 0.23752985894680023, - 0.20651304721832275, - 0.3188893496990204, - -0.20043008029460907, - -0.11706345528364182, - -0.18332546949386597, - 0.17445293068885803, - 0.7743752002716064, - 0.08205122500658035, - 0.23915736377239227, - -0.7428591251373291, - -0.04924800619482994, - 0.7199587225914001, - -0.38477906584739685, - -0.21090008318424225, - 0.104608453810215, - 0.6532189249992371, - 0.5980007648468018, - -0.4038098454475403, - 0.37096863985061646, - -0.13066591322422028, - -0.23341801762580872, - -0.27571526169776917, - -0.03005458228290081, - 0.0269158948212862, - 0.10931164771318436, - -0.3425520658493042, - 0.53485506772995, - -0.14938877522945404, - -0.055554598569869995, - -0.19759920239448547, - -0.38475221395492554, - 0.13391579687595367, - 0.03170972689986229, - -0.23532690107822418, - -0.14053985476493835, - -0.17415179312229156, - -0.1328158974647522, - 0.0783407986164093, - 0.06725612282752991, - -0.14941972494125366, - 0.36957287788391113, - -0.09880896657705307, - 0.2859645485877991, - 0.13756534457206726, - -0.07493588328361511, - -0.2673470079898834, - -0.13783973455429077, - 0.3599308133125305, - -0.37491944432258606, - 0.026016056537628174, - -0.09932079166173935, - -0.2914217710494995, - -0.45115673542022705, - 0.1520828902721405, - 0.18869808316230774, - -0.4931562840938568, - -0.010296214371919632, - -0.14578579366207123, - -0.24964986741542816, - 0.3410227596759796, - 0.5356318950653076, - 0.22401346266269684, - 0.8752002120018005, - 0.034442733973264694, - 0.18533559143543243, - -0.011364172212779522, - 0.23873403668403625, - 0.11654799431562424, - 0.3551432490348816, - -0.07367101311683655, - 0.24003073573112488, - -0.39562472701072693, - 0.45079168677330017, - 0.5177969932556152, - 0.05184287205338478, - -0.2172677367925644, - -0.02474474161863327, - -0.24100174009799957, - 0.21692360937595367, - 0.09887711703777313, - -0.005903956014662981, - 0.23158147931098938, - 0.39525362849235535, - -0.4927232563495636, - -0.20930692553520203, - -0.1525554060935974, - 0.2340666949748993, - 0.2894437611103058, - -0.4364595115184784, - -0.15432722866535187, - 0.012784999795258045, - -0.10396796464920044, - 0.14257001876831055, - 0.06437940150499344, - -0.54007488489151, - -0.17571592330932617, - -0.1029973030090332, - -0.0035306746140122414, - -0.022652549669146538, - 0.2993495464324951, - -0.29680120944976807, - -0.07497605681419373, - -1.0333720445632935, - 0.1574767529964447, - -0.3388834595680237, - -0.02164190076291561, - -0.02024262398481369, - -0.5749215483665466, - -0.1911149024963379, - -0.11968222260475159, - -0.047109559178352356, - 0.20656737685203552, - -0.15078364312648773, - 0.07706673443317413, - 0.17380134761333466, - -0.027967853471636772, - 0.17246288061141968, - 0.6322152614593506, - -0.09429371356964111, - -0.09425117820501328, - -0.1005435660481453, - 0.27780574560165405, - -0.02411803789436817, - -0.2806572914123535, - 0.11907589435577393, - 0.5754642486572266, - 0.1282690167427063, - 0.13690246641635895, - -0.045188870280981064, - -0.6606748104095459, - -0.11796616017818451, - -0.13776057958602905, - -0.03081599622964859, - 0.023025982081890106, - -0.16415655612945557, - 0.12419463694095612, - -0.31898191571235657, - 0.5249547958374023, - 0.11519262194633484, - 0.39006736874580383, - -0.028930269181728363, - -0.03873676061630249, - 0.06621502339839935, - 0.14232784509658813, - 0.10392218828201294, - -0.28737324476242065, - 0.5815380811691284, - 0.20524661242961884, - -0.29482993483543396, - 0.08055707067251205, - 0.32685232162475586, - 0.05138382688164711, - -0.16821101307868958, - 0.048467013984918594, - 0.45445358753204346, - -0.33213892579078674, - 0.5481976270675659, - -0.20597487688064575, - -0.05492265522480011, - 0.1342029720544815, - -0.11118301004171371, - -0.008268975652754307, - -0.1078718900680542, - -0.17228849232196808, - 0.2439231276512146, - -0.03028308041393757, - -0.5018696188926697, - 0.08192877471446991, - 0.08865136653184891, - -0.03930472955107689, - 0.1779671311378479, - -0.06625604629516602, - 0.12665000557899475, - 0.05694756284356117, - -0.1731923222541809, - 0.18595761060714722, - -0.07877565920352936, - 0.2311263382434845, - 0.07620473951101303, - -0.3849235773086548, - 0.06372036039829254, - 0.029910210520029068, - -0.13833646476268768, - 0.02667236328125, - 0.0593525692820549, - -0.30689704418182373, - -0.18334664404392242, - 0.026143252849578857, - -0.6388230919837952, - 0.24061448872089386, - 0.1562442034482956, - 0.26038965582847595, - 0.20493437349796295, - -0.009966228157281876, - -0.08852796256542206, - -0.4373973608016968, - 0.4033311605453491, - -0.16011632978916168, - -0.21156269311904907, - -0.3021657466888428, - 0.2776225209236145, - 0.03329296410083771, - 0.18332570791244507, - 0.34908783435821533, - 0.16412930190563202, - -0.07226170599460602, - 0.1213294267654419, - -0.25061866641044617, - -0.08447900414466858, - -0.32366758584976196, - -0.11545757204294205, - 0.3661389648914337, - 0.11831837147474289, - 0.19863973557949066, - 0.001830534776672721, - -0.13246409595012665, - 0.14408306777477264, - -0.18451009690761566, - -0.4749658405780792, - -0.3416128158569336, - -0.06011711061000824, - -0.15638624131679535, - -0.8905529379844666, - 0.22990383207798004, - 0.020609809085726738, - -0.024256084114313126, - 0.14438456296920776, - -0.28529852628707886, - -0.18133389949798584, - 0.0453091524541378, - 0.04394715279340744, - 0.14778703451156616, - -0.32560867071151733, - -0.05184074118733406, - -0.28681889176368713, - -0.16530412435531616, - -0.23358552157878876, - -0.04699363932013512, - -0.04604334756731987, - 0.051691509783267975, - -0.3244750201702118, - 0.05386499688029289, - 0.07786382734775543, - -0.4206526577472687, - -0.031742751598358154, - 0.14321258664131165, - -0.0832904577255249, - 0.23582638800144196, - -0.03683333471417427, - 0.3062823414802551, - 0.31336551904678345, - 0.23778918385505676, - 0.06658102571964264, - 0.3627845048904419, - 0.4264376759529114, - -0.15716463327407837, - 0.11602798849344254, - -0.04199300706386566, - -0.05781729891896248, - 0.012952449731528759, - -0.38692814111709595, - 0.4496104419231415, - 0.04763583466410637, - 0.07640346884727478, - 0.02134767174720764, - 0.2263142466545105, - 0.1556829810142517, - -0.16154444217681885, - 0.0879870355129242, - 0.5677972435951233, - 0.1101783886551857, - 0.30650851130485535, - 0.18602149188518524, - 0.04206172004342079, - 0.34498462080955505, - -0.12158749997615814, - 0.07475732266902924, - 0.31590956449508667, - -0.21387511491775513, - -0.20883548259735107, - 0.04570867121219635, - 0.205436110496521, - 0.5456217527389526, - -0.0827566385269165, - -0.2823386490345001, - 0.010433991439640522, - -0.14818599820137024, - -0.1322748363018036, - -0.47767373919487, - -0.23828785121440887, - 0.14657515287399292, - -0.13094621896743774, - 0.4211950898170471, - 0.1552550494670868, - 0.10307934880256653, - 0.3924437165260315, - -0.45007970929145813, - -0.19524931907653809, - 0.19637852907180786, - -0.047715358436107635, - -0.4149458706378937, - 0.451761931180954, - -0.17692174017429352, - 0.02953188866376877, - 0.3396036624908447, - -0.4550575613975525, - -0.07222536206245422, - 0.02670855075120926, - 0.40141984820365906, - -0.12473922222852707, - 0.07626936584711075, - -0.13415251672267914, - 0.14785300195217133, - 0.06645035743713379, - 0.4957325756549835, - 0.09699738770723343, - 0.1702929139137268, - 0.6872706413269043, - 0.2829357087612152, - -0.37930476665496826, - 0.16456690430641174, - -0.21405503153800964, - 0.45002686977386475, - -0.08109534531831741, - -0.11027415096759796, - -0.15749409794807434, - 0.15757714211940765, - 0.019468694925308228, - -0.48191970586776733, - 0.09577587991952896, - 0.07073184847831726, - 0.06660737842321396, - -0.16472572088241577, - 0.3091772794723511, - 0.14397937059402466, - -0.12026418745517731, - 0.46035417914390564, - 0.054952144622802734, - -0.15828627347946167, - 0.2548198997974396, - -0.13573810458183289, - 0.13682134449481964, - 0.07672722637653351, - -0.17120599746704102, - -0.2893878221511841, - 0.10519368201494217, - -0.1633196324110031, - -0.22734321653842926, - 0.053368985652923584, - -0.23477374017238617, - 0.062383487820625305, - -0.3238946795463562, - 0.09247392416000366, - -0.06669403612613678, - 0.10342297703027725, - 0.13959965109825134, - 0.2993307113647461, - 0.004876384977251291, - -0.18322616815567017, - 0.22953064739704132, - -0.011212851852178574, - -0.01644531637430191, - -0.28216344118118286, - -0.05244489386677742, - -0.058612242341041565, - 0.6431324481964111, - 0.030544890090823174, - 0.010394719429314137, - 0.2178286761045456, - 0.012134628370404243, - -0.08820930868387222, - -0.33631378412246704, - -0.08642658591270447, - -0.11868887394666672, - 0.020618580281734467, - 0.07078506797552109, - -0.0023657067213207483, - -0.3366517722606659, - -0.14392493665218353, - -0.10517843067646027, - -0.060641784220933914, - 0.11253045499324799, - -0.04649192467331886, - -0.19923169910907745, - 0.27346646785736084, - 0.14290545880794525, - 0.3880687952041626, - -0.3179642856121063, - 0.27915796637535095, - 0.10038072615861893, - -0.291927307844162, - 0.05368734523653984, - -0.14396235346794128, - -0.383564829826355, - -0.1171511560678482, - 0.25667038559913635, - 0.2647196054458618, - -0.0411415696144104, - 0.0007586147985421121, - 0.13765031099319458, - 0.1668073982000351, - -0.34136539697647095, - 0.011783978901803493, - 0.33728066086769104, - 0.17744360864162445, - 0.30899062752723694, - 0.12631087005138397, - -0.5341705679893494, - -0.25394147634506226, - -0.13240300118923187, - -0.3269209563732147, - -0.05184200033545494, - 0.27806732058525085, - 0.045400749891996384, - -0.1800965517759323, - 0.11188173294067383, - -0.013657874427735806, - -0.12463458627462387, - 0.32984834909439087, - -0.09468552470207214, - 0.07819320261478424, - 0.0869336947798729, - -0.22058668732643127, - -0.12792256474494934, - -0.20716820657253265, - -0.3093138039112091, - -0.14032422006130219, - 0.08779124170541763, - 0.13037796318531036, - -0.3301854729652405, - 0.0773443803191185, - 0.00472302408888936, - -0.1841503232717514, - -0.09534855931997299, - 0.05773405358195305, - -0.3082595765590668, - 0.34907206892967224, - -0.23738959431648254, - -0.13617658615112305, - 0.07774610072374344, - -0.038083698600530624, - -0.0013292464427649975, - 0.14366605877876282, - 0.03989304602146149, - 0.3381859064102173, - -0.02312176674604416, - -0.03592868521809578, - 0.5784341096878052, - 0.002856857143342495, - 0.09285192936658859, - 0.3872937560081482, - -0.001762257656082511, - -0.011352344416081905, - -0.3454091250896454, - -0.08830562233924866, - 0.2688091993331909, - -0.3937688171863556, - -0.1547664999961853, - 0.2360529899597168, - 0.1644863337278366, - -0.366330087184906, - -0.2524883449077606, - 0.04515808820724487, - 0.15509448945522308, - -0.05118100345134735, - -0.23098145425319672, - -0.22032088041305542, - -0.13884803652763367, - -0.33781468868255615, - -0.04727704077959061, - 0.1854231059551239, - 0.5394228100776672, - 0.26924407482147217, - 0.15057611465454102, - -0.2702326476573944, - -0.31062379479408264, - 0.2722208499908447, - 0.22035004198551178, - -0.0005014737253077328, - -0.09706941992044449, - -0.12292631715536118, - 0.31272122263908386, - 0.4056403934955597, - 0.004784887656569481, - 0.07021554559469223, - -0.00920903030782938, - -0.0025348695926368237, - 0.2611406147480011, - 0.08256866782903671, - -0.13606837391853333, - -0.13522565364837646, - -0.4217262268066406, - 0.10415171831846237, - -0.23307807743549347, - -0.013455821201205254, - 0.2885885536670685, - -0.17584316432476044, - -0.42027533054351807, - -0.23820948600769043, - 0.12738609313964844, - -0.12776951491832733, - -0.22976602613925934, - 0.2175300419330597, - 0.2923091650009155, - -0.027978884056210518, - -0.2355097383260727, - 0.084128737449646, - -0.5166695713996887, - -0.27374500036239624, - 0.14655576646327972, - -0.10041996836662292, - -0.15411797165870667, - 0.16691254079341888, - 0.49046623706817627, - 0.5081236362457275, - 0.3668432831764221, - -0.03867127373814583, - 0.24752452969551086, - 0.47423839569091797, - 0.14317506551742554, - -0.2944289743900299, - -10.631757736206055, - -0.2818010151386261, - -0.3864808678627014, - 0.4553855359554291, - -0.19379466772079468, - 0.2052370011806488, - 0.168780118227005, - 0.0364110991358757, - 0.05919337272644043, - 0.17168232798576355, - -0.23531948029994965, - -0.09358493983745575, - 0.21714836359024048, - 0.2679533362388611, - 0.060544710606336594, - 0.16310544312000275, - -0.25817885994911194, - 0.2215142399072647, - 0.031212469562888145, - 0.19881606101989746, - 0.1721988320350647, - 0.3598853349685669, - -0.34235119819641113, - -0.024493694305419922, - -0.06684365123510361, - -0.47014182806015015, - -0.2812480926513672, - 0.577009379863739, - 0.2917526066303253, - -0.32079169154167175, - 0.14594666659832, - 0.02999969944357872, - -0.11495484411716461, - 0.1479996144771576, - -0.1859096735715866, - -0.1440247893333435, - 0.08844348788261414, - 0.14632636308670044, - 0.3039114773273468, - -0.21414700150489807, - -0.035678111016750336, - -0.1619841307401657, - 0.542740523815155, - 0.11129900813102722, - -0.1361662894487381, - -0.6265772581100464, - -0.10762642323970795, - -1.586214542388916, - 0.22535377740859985, - 0.3370453119277954, - 0.3630971610546112, - 0.017277916893363, - 0.16997119784355164, - 0.2970481812953949, - -0.2863675653934479, - -0.09070087969303131, - -0.3245711326599121, - -0.17036210000514984, - 0.09089178591966629, - 0.034436870366334915, - 0.04545089974999428, - 0.04821470379829407, - 0.6345454454421997, - -0.01801607944071293, - -0.3150767385959625, - 0.0033678512554615736, - 0.050667133182287216, - -0.15084002912044525, - -0.4053443372249603, - -0.8430637121200562, - -0.5011838674545288, - 0.16758982837200165, - -0.22735364735126495, - -0.005851810332387686, - 0.30466359853744507, - -0.040600962936878204, - -0.220428466796875, - 0.2093040645122528, - 0.06979170441627502, - 0.31074777245521545, - 0.30342620611190796, - -0.0910220518708229, - 0.12728898227214813, - -0.23590905964374542, - -0.10734794288873672, - -0.1695782095193863, - 0.10591688752174377, - 0.43223294615745544, - -0.07740572094917297, - -0.03770512714982033, - -0.03582062944769859, - 0.37483203411102295, - 0.04280416667461395, - -0.255462110042572, - -0.4393678605556488, - -0.1026136726140976, - -0.12031462788581848, - 0.076639823615551, - -0.13782864809036255, - -0.10623966157436371, - -0.27569693326950073, - 0.2096911370754242, - -0.09535878896713257, - -0.554919958114624, - -0.5102830529212952, - 0.30822068452835083, - 0.1912926882505417, - 0.15552419424057007, - -0.08358710259199142, - -0.10051129013299942, - -0.3204978108406067, - 0.06001042574644089, - 0.2150786966085434, - 0.5051499009132385, - 0.2972399890422821, - 0.027854375541210175, - 0.08186627924442291, - -0.4291151762008667, - -0.0931725800037384, - -0.007657515350729227, - 0.44667428731918335, - -0.13754865527153015, - 0.2592223882675171, - 0.536423921585083, - 0.0962003767490387, - 0.023301294073462486, - 0.9212788343429565, - -0.39629092812538147, - 0.19233106076717377, - -0.04788224399089813, - 0.18568867444992065, - 0.04461859166622162, - -0.3250897526741028, - 0.11561822891235352, - 0.364041805267334, - -0.22004809975624084, - 0.7561180591583252, - 0.23171043395996094, - -0.2801209092140198, - -0.16614894568920135, - -0.2618262469768524, - 0.46047741174697876, - 0.2417742908000946, - 0.26555320620536804, - -0.13289065659046173, - -0.35023191571235657, - -0.36880290508270264, - 0.19024498760700226, - -0.2407190501689911, - -0.36503836512565613, - -0.1264965534210205, - 0.16437700390815735, - 0.05736566334962845, - -0.1523239016532898, - 0.31289270520210266, - 0.1528562307357788, - -0.03355671837925911, - -0.388112872838974, - -0.33602967858314514, - -0.007928472012281418, - -0.045889709144830704, - 0.8703497052192688, - 0.03483293578028679, - -0.12403137236833572, - 0.07724124193191528, - 0.08030906319618225, - -0.25038960576057434, - 0.1512015461921692, - 0.08295877277851105, - -0.04976833984255791, - -0.35190582275390625, - 0.37512296438217163, - 0.29316821694374084, - -0.3186149597167969, - -0.15285086631774902, - -0.025367949157953262, - -0.16865375638008118, - 0.12750601768493652, - -0.15825150907039642, - 0.08292225748300552, - 0.26774707436561584, - -0.08840743452310562, - 0.18017369508743286, - -0.25282108783721924, - -0.1617632508277893, - 0.2665254771709442, - 0.4379822015762329, - -0.1048988550901413, - -0.3064426779747009, - -0.2075449824333191, - -0.6304585933685303, - 0.21913324296474457, - -0.5015811920166016, - -0.13603900372982025, - 0.2886706590652466, - 0.06571177393198013, - -0.13607226312160492, - 0.2888460159301758, - -0.06789909303188324, - -0.009701043367385864, - -0.15322525799274445, - 0.330121248960495, - 0.5146291255950928, - -0.1813237965106964, - 0.4062785506248474, - -0.07947606593370438, - 0.15124733746051788, - 0.14450810849666595, - -0.1734965592622757, - 0.17997059226036072, - -0.2985161244869232 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_083.json b/src/benchmark/output/results/results_graph_083.json deleted file mode 100644 index 7843838..0000000 --- a/src/benchmark/output/results/results_graph_083.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "The patient in question is a female who was diagnosed with pulmonary adenocarcinoma, a type of lung cancer. Unfortunately, the patient also had bilateral scattered breast metastases, which made her diagnosis even more complex.\n\nThe patient's journey began when she experienced persistent coughing for one month, which led to a chest CT scan that revealed a 3.1 cm right lower lobe tumor, lymphadenopathy, right pleural effusion, pericardial effusion, and scattered nodules in both breasts. Her CA19-9 level was also elevated at 282 U/mL.\n\nFollowing this initial diagnosis, the patient underwent further testing, including molecular analysis that detected an EML4-ALK fusion gene. This led to a biopsy of her bilateral breast tumors, which revealed adenocarcinoma derived from the lungs or breasts.\n\nThe patient's treatment plan began with oral medication, specifically alectinib (600 mg once daily), which was initiated in response to changes in her lab results and imaging findings. The goal of this treatment was to target the ALK rearrangement present in her cancer cells.\n\nOver time, the patient experienced significant reductions in tumor size, particularly in her breast metastases, which nearly disappeared after a maximum size of 4 mm. Her pleural effusion also resolved, and her CA19-9 level decreased from 282 U/mL to 3.7 U/mL.\n\nSix months after starting treatment with alectinib, the patient underwent another CT scan that showed further tumor shrinkage in her lower right lobe and resolution of her pleural effusion. This marked a significant milestone in her treatment journey, indicating that the medication was effective in controlling her cancer.\n\nThe patient's ongoing treatment with alectinib has been accompanied by regular monitoring of her lab results and imaging findings. Her CA19-9 level remains decreased, and she continues to experience no evidence of recurrence. The resolution of shadows in both breasts on CT scans also suggests that the medication is effective in controlling her breast metastases.\n\nThroughout this journey, the patient's treatment plan has been tailored to address changes in her lab results and imaging findings. Her care team has closely monitored her response to treatment and made adjustments as needed to ensure she receives the most effective therapy possible.\n\nThe patient's story highlights the importance of early detection and targeted therapies in managing complex cancers like pulmonary adenocarcinoma with bilateral breast metastases. With ongoing treatment and close monitoring, this patient is able to manage her disease effectively and maintain a good quality of life.", - "bertscore": { - "precision": [ - 0.6228880882263184 - ], - "recall": [ - 0.5976125597953796 - ], - "f1": [ - 0.6099885702133179 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 9, - "edge_count": 8, - "avg_in_degree": 0.8888888888888888, - "density": 0.1111111111111111 - }, - "trajectory_embedding": [ - 0.2193172574043274, - 0.17341764271259308, - -0.28511232137680054, - 0.06250262260437012, - -0.2072673738002777, - -0.09170977771282196, - 0.21316777169704437, - 0.09700273722410202, - 0.22861331701278687, - -0.39751580357551575, - -0.20688259601593018, - 0.24647818505764008, - -0.7876354455947876, - -0.08496146649122238, - -0.4245613217353821, - 0.042675264179706573, - 0.13037434220314026, - 0.3195406198501587, - 0.007097967900335789, - -0.06185638904571533, - -0.3291245698928833, - 0.08830224722623825, - -0.28795498609542847, - -0.13097253441810608, - 0.1481899619102478, - -0.051646046340465546, - 0.1770193725824356, - 0.33995765447616577, - 0.21001891791820526, - 0.3241358697414398, - 0.2816936671733856, - 0.1976308822631836, - -0.30170315504074097, - 0.1416916698217392, - -0.1417221873998642, - 0.4162662625312805, - 0.31973186135292053, - 0.2899562120437622, - 0.04972304776310921, - -0.013929390348494053, - -0.05456293746829033, - 0.06672843545675278, - 0.8981493711471558, - 0.2677645683288574, - 0.4808398485183716, - -0.6477398872375488, - 0.009324373677372932, - 0.45919978618621826, - -0.5163214802742004, - -0.03917774558067322, - 0.16357848048210144, - 0.6279237270355225, - 0.7669098377227783, - -0.011995368637144566, - 0.49942874908447266, - 0.029697895050048828, - -0.518153727054596, - -0.10455898195505142, - -0.29109132289886475, - 0.038822609931230545, - 0.042515307664871216, - -0.0003774323267862201, - 0.04209442436695099, - 0.019098063930869102, - -0.29458752274513245, - -0.23534557223320007, - -0.12419717758893967, - 0.06067701056599617, - -0.04285213723778725, - -0.4138307571411133, - -0.3206578493118286, - -0.23422983288764954, - -0.04627592861652374, - 0.17275558412075043, - 0.14260262250900269, - -0.23018357157707214, - 0.24538040161132812, - 0.03944532200694084, - -0.04020833969116211, - 0.01949884742498398, - 0.17680314183235168, - 0.10935810208320618, - 0.16297897696495056, - 0.13017888367176056, - -0.3352700471878052, - 0.2769213616847992, - 0.017931334674358368, - -0.020605795085430145, - -0.2246519774198532, - 0.2702779173851013, - 0.18865284323692322, - -0.15714794397354126, - 0.08521824330091476, - -0.08288058638572693, - 0.18818387389183044, - 0.005460606887936592, - 0.22684799134731293, - 0.33946195244789124, - 1.0049254894256592, - 0.03566885367035866, - 0.1642642319202423, - 0.13746193051338196, - 0.1778484433889389, - -0.038058724254369736, - 0.4669243395328522, - -0.13216114044189453, - 0.2191735804080963, - -0.5107672214508057, - -0.07252109050750732, - 0.5644509792327881, - 0.0356656089425087, - -0.19383975863456726, - 0.15296228229999542, - -0.33836475014686584, - -0.09636162966489792, - -0.08558085560798645, - -0.22046856582164764, - 0.2352834790945053, - 0.06598210334777832, - -0.38275542855262756, - -0.11043596267700195, - -0.056128375232219696, - 0.3649280369281769, - 0.3722330927848816, - -0.4512997269630432, - -0.1124267578125, - -0.1987336277961731, - 0.24901559948921204, - 0.10440297424793243, - 0.15296711027622223, - -0.43688008189201355, - -0.1655939221382141, - -0.10475796461105347, - 0.2664153277873993, - -0.10558024793863297, - 0.3577464520931244, - -0.46729278564453125, - 0.1354590654373169, - -1.1269136667251587, - 0.10281328111886978, - -0.25857341289520264, - -0.039214830845594406, - 0.01985992304980755, - -0.420420378446579, - -0.17317254841327667, - -0.029812991619110107, - -0.1816175878047943, - 0.0835840180516243, - 0.03755830228328705, - -0.030437886714935303, - -0.2541024684906006, - 0.08771301805973053, - 0.14583104848861694, - 0.1727365404367447, - 0.17266422510147095, - 0.21967047452926636, - 0.12396648526191711, - 0.3350101709365845, - 0.20927971601486206, - -0.1707753986120224, - -0.011440124362707138, - 0.23800979554653168, - -0.18223731219768524, - -0.21748945116996765, - 0.13318949937820435, - -0.5990513563156128, - 0.293417364358902, - -0.30620303750038147, - 0.3866226375102997, - 0.12063738703727722, - -0.18473947048187256, - 0.06226066127419472, - -0.113283172249794, - 0.4598020017147064, - 0.274108350276947, - 0.5173359513282776, - -0.015038914047181606, - -0.04920041933655739, - 0.24200187623500824, - 0.02553440071642399, - 0.06932118535041809, - 0.07090914249420166, - 0.4447425603866577, - 0.14036160707473755, - -0.4176277220249176, - 0.19814914464950562, - 0.4169497489929199, - -0.13446280360221863, - -0.16877523064613342, - -0.137624591588974, - 0.4648233950138092, - -0.18935053050518036, - 0.3109728693962097, - -0.3810490667819977, - 0.1150435358285904, - 0.0378216877579689, - -0.46325191855430603, - -0.1722792536020279, - 0.18215717375278473, - -0.18846376240253448, - 0.15793795883655548, - 0.30337655544281006, - -0.2958439886569977, - 0.2588549256324768, - 0.2340385615825653, - -0.1845272332429886, - 0.19256797432899475, - 0.1392907202243805, - -0.08383635431528091, - -0.2555416524410248, - -0.24795784056186676, - 0.2323862463235855, - 0.010455415584146976, - 0.23733070492744446, - 0.07569601386785507, - -0.30559369921684265, - 0.12991249561309814, - -0.02891336940228939, - -0.1760808527469635, - 0.13434618711471558, - -0.003512442111968994, - -0.05959821492433548, - 0.3650680184364319, - 0.040111031383275986, - -0.38967713713645935, - 0.284719854593277, - 0.3171132802963257, - 0.1914340853691101, - 0.0965704619884491, - -0.06057102233171463, - 0.0272719357162714, - -0.2645259499549866, - 0.4147334098815918, - -0.12598779797554016, - -0.24381868541240692, - -0.2145218700170517, - 0.15216833353042603, - -0.14452552795410156, - -0.26827114820480347, - 0.4451773464679718, - -0.2046043574810028, - -0.1618407964706421, - 0.08300843834877014, - -0.26607000827789307, - 0.06625691056251526, - -0.20435793697834015, - 0.08357761800289154, - 0.4022212624549866, - 0.17195101082324982, - 0.3270953595638275, - 0.13476631045341492, - -0.09876170754432678, - 0.21264618635177612, - -0.3267713487148285, - -0.15537048876285553, - -0.42723917961120605, - -0.1938534826040268, - -0.2590172290802002, - -0.34887754917144775, - -0.09919620305299759, - 0.07475627958774567, - -0.24508190155029297, - 0.15362176299095154, - -0.2808030843734741, - -0.22725065052509308, - -0.1753782033920288, - -0.12027212232351303, - 0.19499555230140686, - -0.21417531371116638, - 0.17526914179325104, - -0.2852827310562134, - -0.2413906753063202, - -0.18082237243652344, - 0.02863461524248123, - 0.3581337034702301, - 0.11168178170919418, - -0.1019541397690773, - 0.1990528702735901, - 0.18814653158187866, - -0.42043620347976685, - -0.36710163950920105, - 0.008662023581564426, - -0.41699889302253723, - 0.2919245660305023, - -0.15612418949604034, - 0.23436599969863892, - 0.39810293912887573, - -0.03234267979860306, - 0.26709169149398804, - 0.25214195251464844, - 0.6004104614257812, - 0.13092510402202606, - -0.09322766959667206, - -0.047025978565216064, - -0.08355911821126938, - -0.03889412432909012, - -0.37668052315711975, - 0.2019501030445099, - -0.18000297248363495, - -0.03977978602051735, - 0.12510095536708832, - 0.11070981621742249, - 0.14181947708129883, - -0.3857370615005493, - -0.23421332240104675, - 0.5945428013801575, - 0.2224145233631134, - -0.0033896954264491796, - 0.054173242300748825, - 0.3329193592071533, - 0.6687978506088257, - -0.0961143895983696, - -0.2415502667427063, - 0.053152844309806824, - -0.29762133955955505, - -0.1189197450876236, - -0.16989336907863617, - -0.0532522052526474, - 0.28613898158073425, - -0.03204391151666641, - -0.07334976643323898, - 0.344136506319046, - -0.14214962720870972, - -0.21568407118320465, - -0.10064389556646347, - 0.09626413136720657, - -0.022583233192563057, - -0.18990029394626617, - 0.3080032467842102, - -0.2644185721874237, - -0.09839802235364914, - 0.38935768604278564, - -0.15787369012832642, - -0.32841408252716064, - 0.10613631457090378, - 0.008077857084572315, - -0.42763927578926086, - 0.4291302561759949, - -0.2778439223766327, - 0.0035980110988020897, - 0.2606796324253082, - -0.15766073763370514, - -0.044627558439970016, - -0.10153783857822418, - 0.19454540312290192, - 0.14321058988571167, - -0.06312190741300583, - -0.10101614892482758, - -0.01463906280696392, - 0.08310817182064056, - 0.47688573598861694, - 0.09520652890205383, - -0.01968814805150032, - 0.19235724210739136, - -0.25249382853507996, - -0.2132057398557663, - -0.0346251018345356, - -0.0006832066574133933, - 0.08422276377677917, - -0.32575151324272156, - -0.37651461362838745, - -0.22891412675380707, - 0.19846434891223907, - 0.0693582221865654, - -0.3014621436595917, - 0.09153084456920624, - 0.20894767343997955, - -0.03114289790391922, - 0.05881757289171219, - 0.33253684639930725, - 0.45214182138442993, - 0.05454954877495766, - 0.5569038391113281, - 0.2572433352470398, - 0.0029163227882236242, - 0.29068276286125183, - -0.03416001424193382, - 0.329553484916687, - -0.11418235301971436, - -0.4139120876789093, - -0.44669342041015625, - 0.04100050404667854, - -0.18609608709812164, - -0.14737722277641296, - 0.03590181842446327, - -0.08374395221471786, - -0.00875314511358738, - -0.00038987150765024126, - 0.194504052400589, - -0.025800785049796104, - 0.14752991497516632, - -0.06084603816270828, - 0.5328851342201233, - -0.13646242022514343, - -0.33697450160980225, - 0.17805364727973938, - -0.1184021383523941, - 0.3273739516735077, - -0.09624531865119934, - -0.15553829073905945, - -0.22165575623512268, - 0.3601211905479431, - -0.03713814169168472, - -0.08802226185798645, - -0.08941611647605896, - -0.2371177077293396, - -0.32309114933013916, - -0.4480447769165039, - 0.06338045001029968, - -0.09734238684177399, - -0.11655962467193604, - -0.2299073487520218, - 0.1347639113664627, - -0.06180719658732414, - -0.11930371820926666, - 0.017814069986343384, - 0.36796557903289795, - 0.24071979522705078, - -0.06020180508494377, - 0.15989628434181213, - 0.21498452126979828, - -0.019205722957849503, - 0.19473771750926971, - -0.1573183834552765, - 0.17454540729522705, - 0.0480240173637867, - -0.29649510979652405, - -0.009306641295552254, - 0.026564333587884903, - -0.22561444342136383, - 0.04082561284303665, - 0.1569671630859375, - 0.09007550776004791, - -0.1554345339536667, - 0.05386541783809662, - -0.025090329349040985, - 0.25928977131843567, - -0.1897626519203186, - -0.11514100432395935, - 0.29280927777290344, - -0.1685628592967987, - 0.39249980449676514, - -0.07579108327627182, - -0.34499964118003845, - -0.0906452015042305, - -0.13220995664596558, - -0.4032716751098633, - 0.1244383156299591, - -0.005320352036505938, - -0.11904711276292801, - 0.06075567752122879, - -0.034628719091415405, - 0.08662187308073044, - 0.0579034686088562, - 0.10810863226652145, - 0.13283205032348633, - 0.08877145498991013, - -0.08544637262821198, - -0.4152162969112396, - -0.15314458310604095, - -0.37927737832069397, - -0.23549138009548187, - -0.28755635023117065, - 0.42415034770965576, - 0.2366282194852829, - -0.07058727741241455, - 0.04266219586133957, - 0.08969984203577042, - -0.31461021304130554, - -0.4056779742240906, - -0.052023932337760925, - 0.006153459195047617, - 0.6005771160125732, - 0.05116026848554611, - -0.211973637342453, - 0.2111867070198059, - -0.40281492471694946, - 0.2375519871711731, - 0.13919305801391602, - 0.13387608528137207, - 0.24164053797721863, - 0.10993418097496033, - 0.1383579522371292, - 0.5107021331787109, - 0.18908651173114777, - -0.005101922433823347, - 0.2276669293642044, - -0.006585781928151846, - 0.11505568027496338, - -0.08612365275621414, - -0.09184424579143524, - 0.49637141823768616, - -0.38181594014167786, - 0.21200652420520782, - -0.0086306007578969, - 0.3372485637664795, - -0.2750302255153656, - -0.1616375744342804, - -0.06428969651460648, - -0.18236865103244781, - -0.1330176293849945, - -0.3382335901260376, - -0.1944819837808609, - 0.16238689422607422, - -0.31340643763542175, - -0.09350139647722244, - 0.21686424314975739, - 0.28484460711479187, - 0.1256365180015564, - 0.06789293885231018, - -0.07682295143604279, - -0.48264196515083313, - 0.07015955448150635, - 0.3584667444229126, - 0.015670383349061012, - -0.055093273520469666, - -0.05612373352050781, - 0.17480434477329254, - 0.4795798659324646, - -0.09885634481906891, - -0.10670676827430725, - 0.0005690223770216107, - -0.15262705087661743, - -0.07280559092760086, - 0.09415150433778763, - 0.07672793418169022, - 0.01841641217470169, - -0.37587854266166687, - 0.10392502695322037, - -0.12604573369026184, - -0.3426159620285034, - 0.17293062806129456, - -0.2984272539615631, - -0.3380991518497467, - -0.043000467121601105, - 0.12050655484199524, - -0.08581404387950897, - -0.0330280065536499, - 0.293374240398407, - 0.5442282557487488, - 0.2881724536418915, - -0.05860653892159462, - 0.07944362610578537, - -0.5221250653266907, - -7.950556027935818e-05, - 0.17431673407554626, - -0.16768889129161835, - 0.16578030586242676, - -0.09785863757133484, - 0.350646436214447, - 0.2831515073776245, - 0.16979320347309113, - -0.6071570515632629, - 0.16585946083068848, - 0.31339961290359497, - 0.30937302112579346, - -0.2748020589351654, - -10.835315704345703, - 0.1450963020324707, - -0.1674693375825882, - 0.4004225730895996, - -0.13201706111431122, - 0.11699888110160828, - -0.019389092922210693, - -0.0930941104888916, - 0.12387336790561676, - 0.271442711353302, - -0.3189850449562073, - 0.06446868181228638, - 0.2983386218547821, - 0.28585341572761536, - -0.10301324725151062, - -0.07708390802145004, - -0.2099618911743164, - 0.22569996118545532, - 0.06615176796913147, - 0.2152819037437439, - 0.2079135626554489, - 0.5176010131835938, - -0.05119478330016136, - 0.3538952171802521, - 0.15688493847846985, - -0.07367561757564545, - -0.19168096780776978, - 0.35822421312332153, - 0.1163443848490715, - -0.45033761858940125, - 0.23646476864814758, - 0.041629038751125336, - -0.07124419510364532, - -0.1908162534236908, - 0.006404658313840628, - -0.29830771684646606, - -0.176029771566391, - -0.05445612967014313, - 0.008939877152442932, - -0.10114890336990356, - -0.0031244605779647827, - -0.21497926115989685, - -0.035581573843955994, - 0.3702719211578369, - -0.11195964366197586, - -0.40084898471832275, - -0.24365609884262085, - -1.520867943763733, - 0.20536679029464722, - 0.18569613993167877, - 0.5243217945098877, - -0.006796399597078562, - 0.1194467544555664, - 0.016898535192012787, - -0.4644047021865845, - 0.13571900129318237, - -0.19024205207824707, - 0.10048038512468338, - 0.1664254069328308, - -0.07586662471294403, - 0.26500383019447327, - -0.1763378530740738, - 0.36543580889701843, - -0.5179094076156616, - -0.2334713190793991, - 0.08413635194301605, - -0.16426372528076172, - 0.016112646088004112, - -0.08740004897117615, - -0.253427654504776, - -0.4283546209335327, - -0.15999306738376617, - 0.0018946884665638208, - 0.08875870704650879, - 0.4317275285720825, - -0.09051463752985, - -0.48388671875, - 0.059534862637519836, - -0.01889944076538086, - 0.3949905335903168, - 0.1436769664287567, - -0.06743641942739487, - 0.19788551330566406, - -0.10558650642633438, - -0.1404876857995987, - -0.1541656106710434, - 0.02804230898618698, - 0.5015776753425598, - 0.02276228927075863, - -0.027470383793115616, - -0.08079363405704498, - 0.19784298539161682, - -0.17760327458381653, - -0.16447710990905762, - -0.4329908490180969, - -0.02586336061358452, - 0.06223757937550545, - -0.015838472172617912, - 0.061821289360523224, - -0.10410874336957932, - -0.06058383733034134, - -0.1642945557832718, - 0.06465519219636917, - -0.3878062069416046, - -0.2748548686504364, - 0.37282001972198486, - 0.21104896068572998, - 0.15307235717773438, - 0.22221189737319946, - 0.10820962488651276, - 0.0555231086909771, - -0.01956040970981121, - 0.4224987030029297, - 0.5355233550071716, - 0.1627279669046402, - 0.0468151792883873, - -0.2567165791988373, - 0.10308520495891571, - -0.34747040271759033, - 0.1774068921804428, - 0.3031822741031647, - -0.047012247145175934, - 0.3804830312728882, - 0.5447179079055786, - -0.0007846222724765539, - -0.11665495485067368, - 0.931792676448822, - -0.2769111692905426, - 0.3062618672847748, - -0.20683802664279938, - 0.20042404532432556, - 0.013628307729959488, - -0.21050359308719635, - 0.027445154264569283, - 0.10246915370225906, - -0.34863531589508057, - 0.3111255168914795, - -0.0441516675055027, - -0.34154829382896423, - 0.15575763583183289, - -0.3152710199356079, - 0.4460584819316864, - 0.3244880437850952, - 0.2004447728395462, - -0.16451965272426605, - -0.44509971141815186, - -0.2956368923187256, - 0.1388864815235138, - -0.3295985162258148, - -0.3951743245124817, - -0.16108185052871704, - -0.0418991893529892, - 0.004363154526799917, - -0.26244235038757324, - 0.37535637617111206, - 0.08858559280633926, - -0.11515527218580246, - -0.08039963245391846, - -0.4893845319747925, - -0.02119528315961361, - 0.2900344729423523, - 0.6111987233161926, - 0.18352735042572021, - -0.0899048000574112, - -0.16453909873962402, - 0.2826162278652191, - -0.130192369222641, - 0.21232527494430542, - 0.01915382593870163, - -0.04628973826766014, - -0.45053890347480774, - 0.1371994912624359, - 0.15870504081249237, - -0.3583899438381195, - -0.16406108438968658, - -0.4176751673221588, - 0.23927490413188934, - -0.12442522495985031, - -0.026748567819595337, - 0.406851589679718, - 0.26902031898498535, - -0.08110613375902176, - -0.04298179969191551, - -0.3397372364997864, - 0.2424478530883789, - 0.30089694261550903, - 0.20377211272716522, - 0.13155899941921234, - -0.06857634335756302, - -0.5070254802703857, - -0.3390863239765167, - 0.29813989996910095, - -0.30286094546318054, - -0.12926146388053894, - 0.296322226524353, - 0.1224864199757576, - -0.21622177958488464, - 0.07039714604616165, - -0.2329501509666443, - -0.047157347202301025, - -0.16874808073043823, - -0.004939827602356672, - 0.3687739968299866, - -0.32874760031700134, - 0.06603445112705231, - -0.03867574408650398, - 0.3031683564186096, - 0.24142612516880035, - -0.4516318738460541, - 0.34427037835121155, - -0.22982239723205566 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_084.json b/src/benchmark/output/results/results_graph_084.json deleted file mode 100644 index 7305168..0000000 --- a/src/benchmark/output/results/results_graph_084.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is an adult male with a history of respiratory symptoms. Unfortunately, the demographic information is not provided in the given data.\n\n**Initial Presentation (Step 1):**\nThe patient presented with right locus coeruleus, visceral inversion, sinusitis, and bronchial dilatation. These symptoms led to further cardiac evaluation.\n\n**Diagnostic Journey:**\n\n1. **Electrocardiography (ECG) and Initial Diagnosis (Step 2):**\nAn ECG showed a right-sided heart, prompting further imaging with chest CT and 3D reconstruction of the ribs to evaluate lung and organ positioning.\n\n2. **Chest CT Findings (Step 3):**\nThe chest CT revealed chronic inflammation of both lungs, multiple bronchiectasis in both lungs, nodules in the upper lobe of the right lung, a flaky high-density shadow in the right main bronchus, bilateral pleural thickening, localized calcification of the right pleura, and a right-sided heart with transposition of thoracic and abdominal organs.\n\n3. **Paranasal Sinus CT Findings (Step 4):**\nA paranasal sinus CT showed right maxillary sinusitis, ethmoid sinus, nasal soft tissue shadow, polyps, deviated nasal septum, and bilateral middle and lower turbinate hypertrophy.\n\n4. **Bronchoscopy Evaluation (Steps 5-6):**\nNormal bronchial tubes in the right lung led to further bronchoscopic evaluation of the left lung, where a polypoid neoplasm was found in the opening of the upper lobe of the left lung.\n\n5. **Cancer Diagnosis and Treatment Planning (Step 7):**\nBronchoalveolar lavage fluid cytology showed cancer cells, prompting immunohistochemistry to determine the type of cancer. The diagnosis confirmed small cell lung cancer.\n\n6. **Bone Metastasis Evaluation (Step 8):**\nExtrapulmonary auxiliary examination suggested bone metastasis.\n\n7. **Final Diagnosis and Treatment (Step 10):**\nThe patient was diagnosed with extensive stage small cell lung cancer of the left lung, accompanied by Kartagener Syndrome. The ECOG performance status score was 1.\n\n**Outcomes:**\n\n- The patient has been diagnosed with small cell lung cancer.\n- Bone metastasis is suspected but not confirmed.\n- Treatment plans are pending further evaluation and consultation.\n\nThis clinical case report highlights the importance of a comprehensive diagnostic journey, from initial presentation to final diagnosis. Each step in the diagnostic process builds upon previous findings, ultimately leading to an accurate diagnosis and treatment plan for this patient with small cell lung cancer.", - "bertscore": { - "precision": [ - 0.6484930515289307 - ], - "recall": [ - 0.6397433876991272 - ], - "f1": [ - 0.6440885066986084 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 10, - "edge_count": 9, - "avg_in_degree": 0.9, - "density": 0.1 - }, - "trajectory_embedding": [ - 0.3022826015949249, - -0.0002478778478689492, - 0.07108965516090393, - 0.18501682579517365, - 0.12881651520729065, - 0.13057772815227509, - 0.010211390443146229, - 0.27111274003982544, - 0.48087310791015625, - -0.30358201265335083, - -0.15933957695960999, - -0.05752738192677498, - -0.5778652429580688, - -0.08748479187488556, - -0.32486921548843384, - 0.2844110131263733, - 0.11371511220932007, - 0.32671236991882324, - 0.021662577986717224, - -0.30923351645469666, - -0.49680963158607483, - 0.0782569944858551, - -0.44948211312294006, - -0.04323277622461319, - 0.22593548893928528, - -0.01574728451669216, - 0.4235308766365051, - 0.35435113310813904, - 0.27642717957496643, - 0.34516799449920654, - 0.14290973544120789, - -0.1564827263355255, - 0.2897892892360687, - 0.08219972997903824, - -0.3131678104400635, - 0.153154656291008, - 0.04478307440876961, - 0.4251784682273865, - -0.17223894596099854, - 0.06200450658798218, - -0.008131982758641243, - 0.026351476088166237, - 0.7629572153091431, - 0.24166879057884216, - 0.49624738097190857, - -0.8540695905685425, - 0.0735427513718605, - 0.6025377511978149, - -0.4382382333278656, - -0.42543187737464905, - 0.14666084945201874, - 0.8501324653625488, - 0.6023985147476196, - -0.23723092675209045, - 0.49399223923683167, - -0.09967318177223206, - -0.24939200282096863, - -0.36156731843948364, - -0.27796420454978943, - -0.07196014374494553, - -0.03802759572863579, - -0.3508407473564148, - 0.2254219502210617, - 0.006940671242773533, - -0.23701122403144836, - -0.14317883551120758, - -0.2833285927772522, - 0.15163321793079376, - -0.06794106960296631, - -0.3598276972770691, - -0.2114640772342682, - -0.16742625832557678, - -0.25604474544525146, - 0.09791062772274017, - 0.058662235736846924, - -0.06908141076564789, - 0.29694175720214844, - -0.06433207541704178, - 0.24006052315235138, - 0.16372595727443695, - -0.10615365207195282, - -0.13890239596366882, - 0.0628042221069336, - 0.30454668402671814, - -0.48599013686180115, - 0.05434264987707138, - -0.17366516590118408, - -0.21750371158123016, - -0.3870420455932617, - 0.08840364962816238, - 0.23712030053138733, - -0.3720531761646271, - -0.10707030445337296, - -0.13465967774391174, - 0.005096083972603083, - 0.13848185539245605, - 0.45548492670059204, - 0.46938556432724, - 0.8086320757865906, - 0.014741292223334312, - 0.2957764267921448, - 0.15941783785820007, - 0.33580154180526733, - 0.19358238577842712, - 0.4785425662994385, - -0.08414985984563828, - 0.19566580653190613, - -0.46821674704551697, - 0.22834725677967072, - 0.37398818135261536, - 0.11532840877771378, - -0.1693725436925888, - -0.0774139016866684, - -0.1784668266773224, - 0.24414077401161194, - 0.0498858243227005, - -0.09838474541902542, - 0.2163398563861847, - 0.27058297395706177, - -0.5322241187095642, - -0.09721708297729492, - -0.06723294407129288, - 0.21702703833580017, - 0.4134696125984192, - -0.46868330240249634, - -0.06796272844076157, - -0.054749995470047, - 0.0694805309176445, - 0.05295033007860184, - -0.05510329082608223, - -0.416511207818985, - -0.13748756051063538, - 0.02648722007870674, - 0.12776710093021393, - -0.11540375649929047, - 0.16256263852119446, - -0.4000517725944519, - -0.05173369497060776, - -1.1125802993774414, - 0.17043237388134003, - -0.3793953061103821, - -0.008986279368400574, - 0.06805851310491562, - -0.45297354459762573, - -0.302298367023468, - -0.28366243839263916, - -0.18141335248947144, - 0.17342188954353333, - -0.16900277137756348, - -0.06276275217533112, - 0.08167936652898788, - 0.09778048098087311, - 0.07180964946746826, - 0.353459894657135, - 0.11126623302698135, - 0.023528430610895157, - -0.04072052985429764, - 0.29630473256111145, - 0.07592806220054626, - -0.2539720833301544, - -0.07335661351680756, - 0.4713670611381531, - 0.18058033287525177, - 0.05613838508725166, - -0.10637662559747696, - -0.7066742777824402, - 0.015964265912771225, - -0.18404079973697662, - 0.1063329353928566, - 0.1283593773841858, - -0.22283096611499786, - 0.24120625853538513, - -0.29460567235946655, - 0.5675346851348877, - 0.1036454439163208, - 0.3286721110343933, - 0.03387962281703949, - -0.21458497643470764, - -0.05666860193014145, - 0.15959730744361877, - 0.06606514006853104, - -0.1577528566122055, - 0.679175615310669, - 0.07302459329366684, - -0.2440629005432129, - 0.13170525431632996, - 0.4612267017364502, - -0.005884298589080572, - -0.04186207056045532, - -0.03639828413724899, - 0.3915157914161682, - -0.30076083540916443, - 0.4524717926979065, - -0.4438624978065491, - -0.13237246870994568, - 0.18911278247833252, - -0.26135173439979553, - -0.23115570843219757, - 0.08541755378246307, - -0.13695800304412842, - 0.31457677483558655, - -0.058833230286836624, - -0.3288137912750244, - 0.09825369715690613, - 0.0887846052646637, - -0.06854353845119476, - 0.4729226231575012, - -0.05019985884428024, - 0.033078260719776154, - -0.10017581284046173, - -0.18857690691947937, - 0.08798342198133469, - -0.07705532014369965, - 0.18451006710529327, - 0.06940267980098724, - -0.24698373675346375, - 0.3591180741786957, - -0.012563997879624367, - -0.05025869607925415, - 0.13707154989242554, - -0.0844765156507492, - -0.2661805748939514, - 0.0017543137073516846, - -0.013630163855850697, - -0.409559965133667, - 0.12035921961069107, - 0.025147076696157455, - 0.11376921087503433, - 0.27445656061172485, - -0.03277166932821274, - 0.019878875464200974, - -0.2724904417991638, - 0.35789936780929565, - 0.000543452799320221, - -0.2218378335237503, - -0.32600194215774536, - 0.12106867134571075, - -0.3061431646347046, - 0.05570601671934128, - 0.34320375323295593, - -0.08843746781349182, - -0.033211492002010345, - 0.16999739408493042, - -0.2587319016456604, - -0.18342933058738708, - -0.34824565052986145, - -0.07481463253498077, - 0.24462933838367462, - 0.09018868207931519, - 0.33315035700798035, - 0.07320088148117065, - -0.15716397762298584, - 0.19682681560516357, - -0.23980669677257538, - -0.24325260519981384, - -0.37648633122444153, - -0.19036473333835602, - -0.07662941515445709, - -0.6160048246383667, - 0.10395056009292603, - 0.09475217759609222, - -0.018194453790783882, - 0.02839547023177147, - -0.24049648642539978, - -0.10005618631839752, - 0.14590099453926086, - -0.07585057616233826, - 0.10524396598339081, - -0.1955806314945221, - 0.0502573661506176, - -0.14947672188282013, - -0.29537495970726013, - -0.16388416290283203, - -0.003522282000631094, - 0.14366595447063446, - 0.0010257974499836564, - -0.2072487324476242, - -0.029148101806640625, - 0.005960741546005011, - -0.3725356459617615, - -0.19349835813045502, - 0.16478145122528076, - -0.13456828892230988, - 0.049115847796201706, - -0.05138600990176201, - 0.2586899399757385, - 0.4195712208747864, - 0.08038105815649033, - 0.08258511126041412, - 0.4384620785713196, - 0.42306041717529297, - -0.004651406314224005, - 0.036737509071826935, - -0.04221692681312561, - -0.13694453239440918, - -0.0026544772554188967, - -0.38543808460235596, - 0.39184504747390747, - 0.1366136372089386, - 0.009313111193478107, - -0.06164867803454399, - 0.281760573387146, - 0.061717648059129715, - -0.3140893280506134, - -0.018511587753891945, - 0.6115490198135376, - 0.07538636028766632, - 0.17233417928218842, - 0.10848400741815567, - 0.2774800956249237, - 0.5246814489364624, - -0.0018822572892531753, - 0.017238929867744446, - 0.10068394988775253, - -0.12100937217473984, - -0.24151170253753662, - 0.04409749433398247, - 0.08195656538009644, - 0.46116194128990173, - -0.1502642184495926, - -0.11956534534692764, - 0.14542338252067566, - -0.09974714368581772, - -0.06510915607213974, - -0.10443327575922012, - -0.10864098370075226, - 0.01000242866575718, - -0.3809471130371094, - 0.21651367843151093, - 0.06601918488740921, - -0.051966775208711624, - 0.4956601560115814, - -0.28418299555778503, - -0.26878172159194946, - 0.2900657653808594, - -0.13672645390033722, - -0.5506992340087891, - 0.33003562688827515, - -0.12394626438617706, - -0.02254941686987877, - 0.30944404006004333, - -0.2810365557670593, - -0.0393986813724041, - -0.10458073765039444, - 0.3272346556186676, - -0.04930766671895981, - 0.038481853902339935, - -0.1337556540966034, - 0.06520572304725647, - 0.34503740072250366, - 0.6053578853607178, - 0.15144284069538116, - 0.26155441999435425, - 0.7582577466964722, - 0.21862836182117462, - -0.37447184324264526, - 0.03211371973156929, - -0.01634759083390236, - 0.38047587871551514, - -0.16660353541374207, - -0.10187427699565887, - -0.2678399384021759, - 0.0826643854379654, - 0.14766177535057068, - -0.3476739227771759, - -0.05390278249979019, - 0.11977537721395493, - 0.1074601411819458, - -0.07566378265619278, - 0.16910137236118317, - 0.06659577786922455, - -0.06859757006168365, - 0.39101821184158325, - -0.10597479343414307, - -0.15591631829738617, - 0.30569082498550415, - -0.1898820698261261, - 0.2924621105194092, - -0.02036619558930397, - -0.35011228919029236, - -0.3720923066139221, - 0.015457767061889172, - -0.2807143032550812, - -0.19953343272209167, - -0.02051239088177681, - -0.14320431649684906, - 0.01467401348054409, - -0.2528730630874634, - 0.049619849771261215, - -0.015667635947465897, - 0.23355571925640106, - 0.20689544081687927, - 0.30164456367492676, - 0.16636694967746735, - -0.17945553362369537, - 0.1823354810476303, - 0.031307607889175415, - -0.005020329263061285, - -0.040585316717624664, - 0.004251341335475445, - -0.17994220554828644, - 0.5273225903511047, - -0.0031303227879107, - -0.014922475442290306, - 0.16944238543510437, - -0.022807719185948372, - -0.19961638748645782, - -0.3405296504497528, - -0.19840240478515625, - -0.10726951062679291, - 0.003415413200855255, - 0.073027104139328, - 0.0202237069606781, - -0.35132545232772827, - -0.21133241057395935, - -0.07742069661617279, - 0.03155653551220894, - 0.2863825559616089, - -0.17220738530158997, - -0.0730748400092125, - 0.2951551079750061, - 0.01601223647594452, - 0.33708223700523376, - -0.21484443545341492, - 0.0039914436638355255, - 0.09456918388605118, - -0.2565591335296631, - -0.07173477113246918, - 0.004710282199084759, - -0.2562774419784546, - -0.2509877383708954, - 0.20962758362293243, - 0.253984272480011, - 0.10473451763391495, - 0.020660754293203354, - 0.21399109065532684, - 0.2842431664466858, - -0.46710777282714844, - -0.044867366552352905, - 0.3169190287590027, - 0.20084087550640106, - 0.5470558404922485, - 0.014864524826407433, - -0.431762158870697, - -0.2626354396343231, - -0.04742180183529854, - -0.29901912808418274, - 0.08003951609134674, - 0.28881731629371643, - -0.18920665979385376, - -0.24956974387168884, - 0.148453488945961, - -0.1268928498029709, - -0.1388619840145111, - 0.35403257608413696, - -0.1324261873960495, - 0.18792861700057983, - 0.09655649960041046, - -0.20529210567474365, - -0.12591758370399475, - -0.2148256003856659, - -0.27459701895713806, - -0.235565185546875, - 0.28044575452804565, - 0.30219390988349915, - -0.3643375635147095, - 0.0054170191287994385, - 0.049004603177309036, - -0.30093756318092346, - -0.10840094089508057, - 0.06473053991794586, - -0.2832329571247101, - 0.421114981174469, - -0.2014114111661911, - -0.16098937392234802, - 0.06829563528299332, - -0.15668006241321564, - 0.1201416477560997, - 0.16133680939674377, - 0.03854108229279518, - 0.42834705114364624, - 0.2367277890443802, - 0.096320241689682, - 0.46178776025772095, - 0.05761134624481201, - -0.034063152968883514, - 0.22627249360084534, - -0.06268403679132462, - 0.07518596947193146, - -0.21787306666374207, - -0.1047079935669899, - 0.25594455003738403, - -0.31086304783821106, - 0.028466815128922462, - 0.2431807965040207, - 0.10446077585220337, - -0.4962840974330902, - -0.3948891758918762, - 0.020958777517080307, - 0.08071019500494003, - -0.0017918333178386092, - -0.2080884724855423, - -0.2839190661907196, - 0.03133048117160797, - -0.26619964838027954, - -0.18007151782512665, - 0.3414393365383148, - 0.46708735823631287, - 0.19734498858451843, - 0.1692400872707367, - -0.24250900745391846, - -0.40451592206954956, - 0.2133006751537323, - 0.20856276154518127, - 0.11806480586528778, - 0.017719173803925514, - -0.27860382199287415, - 0.3077690899372101, - 0.6379297375679016, - -0.1302676647901535, - 0.04534696787595749, - 0.04443063214421272, - -0.006921547465026379, - 0.1513594686985016, - 0.11139438301324844, - -0.07528958469629288, - -0.11466683447360992, - -0.4220767617225647, - 0.18281389772891998, - -0.4470955729484558, - -0.19759227335453033, - 0.18458296358585358, - 0.024520790204405785, - -0.4396180212497711, - -0.3081614375114441, - 0.3907000720500946, - -0.2393304854631424, - -0.06428395956754684, - 0.2412598580121994, - 0.4235643744468689, - 0.12001093477010727, - -0.22211647033691406, - 0.14540937542915344, - -0.5299925208091736, - -0.21517682075500488, - 0.10898420959711075, - -0.14292536675930023, - -0.10685457289218903, - 0.10852400958538055, - 0.4706238806247711, - 0.49245700240135193, - 0.3022193908691406, - -0.11070270836353302, - -0.040609750896692276, - 0.24962198734283447, - 0.22111499309539795, - -0.18938827514648438, - -10.700393676757812, - -0.06847956031560898, - -0.29483717679977417, - 0.6960679888725281, - -0.2306894063949585, - 0.02135266736149788, - 0.3115006983280182, - 0.019914742559194565, - 0.1280011683702469, - 0.09144191443920135, - -0.20868992805480957, - 0.02801315113902092, - 0.3151918649673462, - 0.32813093066215515, - -0.046479351818561554, - -0.08504917472600937, - -0.2453886717557907, - 0.1739961802959442, - -0.03973426669836044, - 0.21970923244953156, - 0.3042164742946625, - 0.36559635400772095, - -0.2513323426246643, - 0.1999724954366684, - -0.1395547240972519, - -0.537032961845398, - -0.18692578375339508, - 0.5912972688674927, - 0.13540585339069366, - -0.30633142590522766, - 0.31018906831741333, - 0.2532275319099426, - -0.37133023142814636, - 0.26469898223876953, - -0.1417871117591858, - -0.042985375970602036, - 0.026998501271009445, - 0.09103906154632568, - 0.25161898136138916, - -0.08083400875329971, - -0.020653892308473587, - -0.3002742528915405, - 0.37196698784828186, - 0.3077193796634674, - -0.04517807066440582, - -0.549065887928009, - -0.265261173248291, - -1.6271107196807861, - 0.39536115527153015, - 0.41173189878463745, - 0.31902989745140076, - -0.03662886470556259, - 0.23492565751075745, - 0.15171071887016296, - -0.33456432819366455, - 0.003988940268754959, - -0.23838357627391815, - -0.05001875013113022, - 0.08617740124464035, - -0.006772148422896862, - 0.18141750991344452, - -0.13978402316570282, - 0.5921083688735962, - -0.09007574617862701, - -0.27582845091819763, - 0.029221320524811745, - 0.07606247812509537, - -0.057702720165252686, - -0.2906796336174011, - -0.6101187467575073, - -0.5730866193771362, - 0.08737681061029434, - -0.13544762134552002, - -0.05323542281985283, - 0.4730839133262634, - -0.0991457849740982, - -0.3486878275871277, - 0.3036792576313019, - 0.09338647127151489, - 0.4601627290248871, - 0.23891206085681915, - -0.07815234363079071, - 0.06159602850675583, - -0.13137081265449524, - -0.3349774479866028, - -0.0884469747543335, - 0.08090667426586151, - 0.5726484060287476, - -0.08617880940437317, - 0.016780000180006027, - -0.035925962030887604, - 0.3896651268005371, - -0.00013828874216414988, - -0.27181029319763184, - -0.4764103293418884, - 0.16295713186264038, - -0.04064466059207916, - 0.11315704882144928, - 0.06893400847911835, - -0.20206809043884277, - -0.29148006439208984, - 0.0420963354408741, - -0.045636776834726334, - -0.5955685377120972, - -0.3798132836818695, - 0.26711970567703247, - 0.1229136735200882, - 0.3546217679977417, - -0.015912353992462158, - 0.06870289891958237, - -0.24585500359535217, - -0.06851018965244293, - 0.17143447697162628, - 0.5847951173782349, - 0.179721862077713, - -0.07473741471767426, - -0.015889516100287437, - -0.4200037121772766, - -0.1686449944972992, - 0.05881570652127266, - 0.4711637496948242, - -0.29056617617607117, - 0.25276249647140503, - 0.6358609199523926, - 0.001888046390376985, - -0.07153021544218063, - 0.8648948669433594, - -0.2854756712913513, - 0.3171937167644501, - -0.1709827333688736, - 0.2372385561466217, - -0.06195005029439926, - -0.35246509313583374, - 0.051377929747104645, - 0.4381488263607025, - -0.20715150237083435, - 0.7157111167907715, - 0.2102678120136261, - -0.44795599579811096, - 0.022132422775030136, - -0.2781883478164673, - 0.5775606036186218, - 0.3239624500274658, - 0.3607383370399475, - -0.11736442893743515, - -0.28928887844085693, - -0.2729252874851227, - 0.08051704615354538, - -0.43783825635910034, - -0.24398913979530334, - -0.18166127800941467, - 0.2476070672273636, - 0.09892012178897858, - -0.2800079882144928, - 0.4132039546966553, - 0.1669943481683731, - -0.2242717295885086, - -0.3341342508792877, - -0.48304685950279236, - 0.028591791167855263, - 0.2790490984916687, - 0.8138329386711121, - -0.06995245814323425, - -0.019302362576127052, - -0.036117881536483765, - 0.17265042662620544, - -0.22632861137390137, - 0.25830578804016113, - 0.18179041147232056, - 0.045930344611406326, - -0.5035537481307983, - 0.25428977608680725, - 0.1800452023744583, - -0.3236026465892792, - -0.09251801669597626, - -0.1736966073513031, - -0.13242705166339874, - 0.006328442599624395, - -0.30407652258872986, - 0.04553022235631943, - 0.2418498545885086, - -0.10587773472070694, - 0.08230690658092499, - -0.31393855810165405, - 0.05736009404063225, - 0.09567128121852875, - 0.2222079485654831, - 0.12883086502552032, - -0.25283434987068176, - -0.2608579099178314, - -0.6174993515014648, - 0.11740090698003769, - -0.19769859313964844, - -0.20696862041950226, - 0.052053701132535934, - 0.1907263696193695, - -0.31058254837989807, - 0.15869706869125366, - -0.2644699513912201, - -0.02185875177383423, - -0.09033507108688354, - 0.3298027813434601, - 0.3747708201408386, - -0.21409468352794647, - 0.17093904316425323, - -0.14165711402893066, - 0.1333751529455185, - 0.06095562502741814, - -0.2715438902378082, - 0.18049004673957825, - -0.13904044032096863 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_086.json b/src/benchmark/output/results/results_graph_086.json deleted file mode 100644 index ecae235..0000000 --- a/src/benchmark/output/results/results_graph_086.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 36-year-old woman who presented to Anhui Chest Hospital with cough and chest pain for 2 months. She had no history of smoking.\n\n**Timeline of Diagnoses:**\n\n1. **March 2022:** The patient initially presented to the hospital with symptoms of cough and chest pain, which led to a chest computed tomography (CT) scan.\n2. **March 21, 2022:** The CT scan revealed left pleural thickening and pleural effusion, prompting further investigation.\n3. **Thoracoscopic left pleural biopsy** was performed on the same day, followed by plasma DNA analysis via next-generation sequencing (NGS), which identified EGFR exon L858R mutation.\n4. **April 2022:** The diagnosis of stage IV lung adenocarcinoma with EGFR exon L858R mutation was confirmed.\n\n**Timeline of Treatments:**\n\n1. **March 2022:** The patient received osimertinib as the first-line treatment for her lung cancer.\n2. **May 22, 2022:** A follow-up chest CT scan revealed a partial response (PR) to osimertinib treatment.\n3. **April 4, 2024:** Due to progressive disease, the patient's treatment regimen was changed to dabrafenib, trametinib, and aumolertinib concurrently.\n4. **June 3, 2024:** A follow-up chest CT scan revealed a complete response (CR) to the new treatment regimen.\n\n**Timeline of Outcomes:**\n\n1. **May 22, 2022:** The patient experienced a partial response to osimertinib treatment.\n2. **April 4, 2024:** The patient's disease progressed, and she was diagnosed with progressive disease (PD).\n3. **June 3, 2024:** The patient achieved a complete response (CR) to the new treatment regimen.\n\n**Notable Events:**\n\n* During treatment with dabrafenib, trametinib, and aumolertinib, the patient experienced a transient fever.\n* The patient's disease was diagnosed as stage IV lung adenocarcinoma with EGFR exon L858R mutation.\n\n**Conclusion:**\nThe patient's clinical course was marked by an initial presentation of cough and chest pain, followed by a diagnosis of stage IV lung adenocarcinoma with EGFR exon L858R mutation. The patient received osimertinib as the first-line treatment and experienced a partial response. Due to progressive disease, the treatment regimen was changed to dabrafenib, trametinib, and aumolertinib concurrently, resulting in a complete response.", - "bertscore": { - "precision": [ - 0.6942758560180664 - ], - "recall": [ - 0.7067800760269165 - ], - "f1": [ - 0.7004721760749817 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 9, - "edge_count": 8, - "avg_in_degree": 0.8888888888888888, - "density": 0.1111111111111111 - }, - "trajectory_embedding": [ - 0.2675797641277313, - 0.21791553497314453, - -0.22618961334228516, - 0.11571652442216873, - -0.019790956750512123, - 0.05677139014005661, - 0.042519599199295044, - 0.1792418360710144, - 0.5141865611076355, - -0.34321343898773193, - -0.024482721462845802, - 0.13857966661453247, - -0.6468924880027771, - -0.25428396463394165, - -0.1651427149772644, - 0.1542055606842041, - -0.09829944372177124, - 0.31758415699005127, - -0.2596558928489685, - -0.17077159881591797, - -0.22659580409526825, - 0.13174749910831451, - -0.3829096853733063, - 0.06544387340545654, - 0.1515325903892517, - 0.011543890461325645, - 0.3582412600517273, - 0.4067012071609497, - 0.09520009160041809, - 0.27456986904144287, - 0.28829512000083923, - -0.028053700923919678, - 0.14764872193336487, - -0.009291741997003555, - -0.21470355987548828, - 0.13079030811786652, - 0.17685800790786743, - 0.30124351382255554, - -0.17351296544075012, - -0.07442855834960938, - -0.09024392068386078, - 0.07787038385868073, - 0.8275833129882812, - -0.01726224645972252, - 0.29667434096336365, - -0.7508823871612549, - -0.15030576288700104, - 0.37458446621894836, - -0.3360116481781006, - -0.12845636904239655, - 0.2764851450920105, - 0.6903720498085022, - 0.5166894793510437, - -0.11258387565612793, - 0.3345339894294739, - -0.25607171654701233, - -0.22427433729171753, - -0.32150256633758545, - -0.07975102961063385, - 0.15178383886814117, - -0.038486357778310776, - -0.16007600724697113, - 0.31977906823158264, - -0.05790242180228233, - -0.12432339787483215, - -0.05300411954522133, - -0.16922977566719055, - 0.083812415599823, - -0.02476910874247551, - -0.14517396688461304, - -0.1993541270494461, - -0.24796366691589355, - -0.04371989145874977, - 0.17804883420467377, - 0.04194732382893562, - -0.08429072052240372, - 0.3673376441001892, - -0.01525390800088644, - 0.3300274908542633, - 0.1640128791332245, - -0.12402919679880142, - -0.059453852474689484, - -0.06197202205657959, - 0.21999597549438477, - -0.424887478351593, - 0.038097187876701355, - 0.002002384979277849, - -0.06615735590457916, - -0.3718654215335846, - 0.06783434003591537, - 0.19602659344673157, - -0.5306000113487244, - -0.05569252744317055, - -0.13322684168815613, - -0.23284585773944855, - 0.21489864587783813, - 0.48740243911743164, - 0.253702849149704, - 0.8671553134918213, - -0.014972875826060772, - 0.250682532787323, - 0.062193308025598526, - 0.030714817345142365, - 0.060182519257068634, - 0.27098146080970764, - -0.24173341691493988, - 0.2413242608308792, - -0.466265469789505, - 0.299497127532959, - 0.6055445075035095, - 0.08354074507951736, - -0.09230826050043106, - -0.07517461478710175, - -0.21373216807842255, - 0.13922013342380524, - 0.06306686997413635, - -0.028733743354678154, - 0.2793172597885132, - 0.3121602237224579, - -0.458368718624115, - -0.06705471873283386, - -0.12893062829971313, - 0.2925616502761841, - 0.2881128787994385, - -0.34650853276252747, - -0.13807380199432373, - 0.006900184787809849, - -0.08841875195503235, - 0.03789970651268959, - -0.02705308049917221, - -0.39069539308547974, - -0.21182239055633545, - -0.1264665573835373, - 0.035156622529029846, - -0.13091152906417847, - 0.430871844291687, - -0.26473167538642883, - -0.1021508201956749, - -1.1017342805862427, - 0.16633880138397217, - -0.3318289816379547, - -0.17414580285549164, - -0.08615252375602722, - -0.5279375910758972, - -0.13436564803123474, - -0.192817822098732, - -0.09854746609926224, - 0.2146150767803192, - -0.2139045000076294, - 0.0017431668238714337, - 0.17166346311569214, - -0.16639135777950287, - 0.06580100953578949, - 0.2862292230129242, - 0.028111092746257782, - 0.024222880601882935, - 0.0270144771784544, - 0.19131173193454742, - 0.07220227271318436, - -0.025211412459611893, - 0.0672234371304512, - 0.5253627300262451, - 0.010954342782497406, - 0.07876026630401611, - -0.05776897445321083, - -0.6147654056549072, - -0.01583971455693245, - -0.1751285195350647, - 0.27262476086616516, - -0.03028959035873413, - -0.21819914877414703, - 0.04664154723286629, - -0.4327636957168579, - 0.5608584880828857, - 0.23679791390895844, - 0.4188234210014343, - 0.025396578013896942, - 0.05205552652478218, - -0.03950347378849983, - 0.1640637069940567, - 0.0010691119823604822, - -0.0989135131239891, - 0.5883390307426453, - 0.3345355689525604, - -0.3373023271560669, - 0.19015932083129883, - 0.4581555128097534, - -0.09989826381206512, - -0.19058643281459808, - -0.049839384853839874, - 0.3543897569179535, - -0.2840050458908081, - 0.38008812069892883, - -0.2968634366989136, - 0.007832547649741173, - 0.06712186336517334, - -0.3013204038143158, - -0.04690423607826233, - 0.034774910658597946, - -0.20969244837760925, - 0.08861090987920761, - 0.04288427159190178, - -0.36363527178764343, - 0.1703481674194336, - 0.19508391618728638, - -0.18555587530136108, - 0.19505594670772552, - -0.08424971997737885, - 0.18259921669960022, - -0.031263042241334915, - -0.09574981033802032, - 0.1260751634836197, - 0.09746326506137848, - 0.20210367441177368, - -0.012030691839754581, - -0.36965522170066833, - 0.027662012726068497, - -0.027306361123919487, - -0.09606006741523743, - -0.018500812351703644, - 0.20115645229816437, - -0.19764532148838043, - -0.034216418862342834, - 0.0802338644862175, - -0.468985915184021, - 0.15698426961898804, - 0.2084309458732605, - 0.18777191638946533, - 0.05621640011668205, - -0.09349188953638077, - 0.03274306282401085, - -0.33532342314720154, - 0.21481269598007202, - -0.0438736192882061, - -0.18959608674049377, - -0.2277722954750061, - 0.3069354295730591, - 0.0013648909516632557, - -0.023853406310081482, - 0.2681137025356293, - 0.0701182559132576, - -0.062164969742298126, - 0.07557784020900726, - -0.24579429626464844, - 0.1217319667339325, - -0.12667308747768402, - -0.13737449049949646, - 0.18420392274856567, - 0.13287116587162018, - 0.24347233772277832, - 0.11957449465990067, - -0.1461060643196106, - 0.02622278593480587, - -0.2542453408241272, - -0.32143378257751465, - -0.19987447559833527, - -0.011652318760752678, - -0.17343220114707947, - -0.6779806613922119, - 0.0028940504416823387, - 0.15431708097457886, - -0.056091487407684326, - 0.23827272653579712, - -0.3118246793746948, - -0.09858443588018417, - -0.07769980281591415, - 0.046637970954179764, - 0.06965093314647675, - -0.27772286534309387, - -0.15783047676086426, - -0.2524335980415344, - -0.09011972695589066, - -0.08187244087457657, - -0.040075771510601044, - 0.06555354595184326, - 0.1710655391216278, - -0.2391773909330368, - 0.10016196966171265, - 0.2701658606529236, - -0.36994922161102295, - -0.10961529612541199, - 0.11767908930778503, - -0.16207633912563324, - 0.3104300796985626, - -0.04821685701608658, - 0.31980133056640625, - 0.3396635949611664, - 0.13042733073234558, - 0.26984626054763794, - 0.40108540654182434, - 0.421016126871109, - -0.01897118240594864, - -0.0711553692817688, - 0.004447015002369881, - -0.009514790028333664, - -0.03292545676231384, - -0.3351401090621948, - 0.30814388394355774, - 0.03658140450716019, - -0.0838221088051796, - -0.15198363363742828, - 0.12226520478725433, - 0.251603901386261, - -0.35114556550979614, - -0.0772181898355484, - 0.4936191737651825, - 0.0028090046253055334, - 0.1742151528596878, - 0.012949002906680107, - 0.35043010115623474, - 0.3386462926864624, - 0.03617565333843231, - 0.10146060585975647, - 0.049006178975105286, - -0.1971893012523651, - -0.09709340333938599, - -0.1342477947473526, - 0.1942010223865509, - 0.3152693212032318, - -0.11493706703186035, - -0.15269498527050018, - 0.2268587201833725, - 0.01214324776083231, - -0.23009821772575378, - -0.155603289604187, - -0.06087996065616608, - 0.09755131602287292, - -0.19333770871162415, - 0.2694246470928192, - -0.0846625417470932, - 0.18982940912246704, - 0.4185582399368286, - -0.35981544852256775, - -0.16286872327327728, - 0.20838038623332977, - -0.14458443224430084, - -0.46097177267074585, - 0.3409210741519928, - -0.3162246346473694, - 0.06572356820106506, - 0.24390339851379395, - -0.3540392220020294, - -0.009152021259069443, - -0.12227395176887512, - 0.32338324189186096, - -0.06451371312141418, - 0.10827887058258057, - -0.05624048039317131, - 0.09466668963432312, - 0.04371260106563568, - 0.4064751863479614, - 0.24226683378219604, - 0.011348918080329895, - 0.5285168886184692, - -0.12927690148353577, - -0.3946869969367981, - 0.12618249654769897, - -0.12101396918296814, - 0.145766481757164, - -0.13029056787490845, - -0.03334813937544823, - -0.13049215078353882, - 0.16778814792633057, - -0.04039887338876724, - -0.3145131766796112, - -0.0008918766980059445, - 0.12544317543506622, - 0.07086547464132309, - 0.018956316635012627, - 0.24298708140850067, - 0.29416656494140625, - -0.04556850343942642, - 0.46785247325897217, - -0.023507241159677505, - -0.0648852288722992, - 0.33548006415367126, - -0.1739303022623062, - 0.25953203439712524, - 0.0007529060239903629, - -0.31928586959838867, - -0.2854919135570526, - 0.25406408309936523, - -0.07004518061876297, - -0.1222928911447525, - 0.03389965742826462, - -0.14416199922561646, - -0.03483806923031807, - -0.23828548192977905, - 0.08185575902462006, - -0.051228564232587814, - 0.0856592059135437, - 0.04333440959453583, - 0.2292494773864746, - -0.03100310079753399, - -0.3164939284324646, - 0.21830645203590393, - 0.010374151170253754, - 0.059029605239629745, - -0.08300098031759262, - -0.04106125235557556, - -0.09455796331167221, - 0.5458002686500549, - -0.015634752810001373, - 0.06498002260923386, - -0.011806930415332317, - 0.049957260489463806, - -0.07558928430080414, - -0.3099413216114044, - 0.0796288326382637, - -0.12412599474191666, - -0.19648802280426025, - -0.0016014385037124157, - -0.005923385266214609, - -0.2302844226360321, - -0.12506473064422607, - -0.10013231635093689, - 0.06073233112692833, - 0.20367704331874847, - -0.005633688531816006, - 0.02130473032593727, - 0.3648494780063629, - 0.10440883040428162, - 0.4033468961715698, - -0.4136618375778198, - 0.2156740128993988, - 0.06591546535491943, - -0.19757598638534546, - 0.01265721209347248, - -0.035100582987070084, - -0.33468908071517944, - 0.028996245935559273, - 0.113688625395298, - 0.13757750391960144, - 0.014366712421178818, - -0.0690295621752739, - 0.05987128987908363, - 0.028287015855312347, - -0.3328324854373932, - 0.09067133069038391, - 0.4280276894569397, - -0.07452016323804855, - 0.2302577793598175, - 0.11842165887355804, - -0.4545958936214447, - 0.003355955006554723, - -0.3127082586288452, - -0.3868301212787628, - 0.10086575150489807, - 0.24931637942790985, - -0.1149488314986229, - -0.052657511085271835, - 0.0878535807132721, - 0.08965516090393066, - -0.08856703341007233, - 0.11607938259840012, - -0.17837604880332947, - 0.1455705165863037, - 0.07570227235555649, - -0.19763711094856262, - -0.09228593856096268, - -0.32370150089263916, - -0.41095778346061707, - -0.3149073123931885, - 0.37858378887176514, - 0.138024240732193, - -0.32869431376457214, - -0.1007937490940094, - -0.014905656687915325, - -0.2673555314540863, - -0.07896670699119568, - -0.05353837087750435, - -0.054201241582632065, - 0.4265895187854767, - 0.1650432050228119, - -0.20738719403743744, - 0.07911206781864166, - -0.2185678333044052, - 0.06165989115834236, - 0.08426722884178162, - 0.005898505449295044, - 0.43048107624053955, - 0.12649376690387726, - 0.06133145093917847, - 0.43766364455223083, - 0.21702612936496735, - 0.06302069127559662, - 0.28758326172828674, - -0.09101974964141846, - 0.09018334746360779, - -0.1278192698955536, - -0.19144245982170105, - 0.34891945123672485, - -0.32822710275650024, - 0.023947935551404953, - 0.27158644795417786, - 0.23421043157577515, - -0.4267003536224365, - -0.19622832536697388, - 0.13553808629512787, - -0.015384819358587265, - -0.11969906836748123, - -0.24869349598884583, - -0.25797611474990845, - -0.04804028570652008, - -0.1304754763841629, - -0.02036251313984394, - 0.287232369184494, - 0.42067503929138184, - 0.0923786610364914, - 0.1591286063194275, - -0.25746777653694153, - -0.3296210765838623, - 0.16637377440929413, - 0.1149119958281517, - 0.07350358366966248, - 0.028959717601537704, - -0.1057722270488739, - 0.2150142788887024, - 0.49510255455970764, - -0.06790205836296082, - -0.04843870922923088, - 0.10081073641777039, - -0.08938559889793396, - -0.03886991739273071, - -0.06531605124473572, - -0.30953851342201233, - -0.10920006781816483, - -0.35343578457832336, - 0.08950923383235931, - -0.2554885447025299, - -0.22643905878067017, - 0.224556103348732, - -0.20598560571670532, - -0.4757601320743561, - -0.10610470175743103, - 0.18222831189632416, - -0.2429397702217102, - -0.22256186604499817, - 0.2101941704750061, - 0.6374101042747498, - 0.1069428026676178, - -0.16669423878192902, - 0.03912098705768585, - -0.17981649935245514, - -0.21583609282970428, - 0.24854381382465363, - -0.09823907166719437, - -0.11358392238616943, - 0.0488172322511673, - 0.361810564994812, - 0.39157652854919434, - 0.2950994074344635, - -0.29091474413871765, - 0.34666043519973755, - 0.387980192899704, - 0.15970055758953094, - -0.22950240969657898, - -10.921539306640625, - -0.20960642397403717, - -0.3875959515571594, - 0.3836411237716675, - -0.21490105986595154, - 0.047525253146886826, - 0.12130754441022873, - -0.03822873532772064, - 0.23424261808395386, - 0.23921650648117065, - -0.24955593049526215, - -0.145660400390625, - 0.15750186145305634, - 0.1442815661430359, - 0.14243091642856598, - 0.08079152554273605, - -0.1649549901485443, - 0.13880528509616852, - 0.15555621683597565, - 0.16093039512634277, - 0.14499254524707794, - 0.43600961565971375, - -0.2766640782356262, - 0.2153310775756836, - -0.03444315120577812, - -0.18769434094429016, - -0.21606594324111938, - 0.47343313694000244, - 0.20977237820625305, - -0.2847074568271637, - 0.19107110798358917, - 0.034046586602926254, - -0.07748681306838989, - 0.08209696412086487, - -0.10739025473594666, - -0.2237221598625183, - -0.05031656473875046, - 0.14084486663341522, - 0.004411456175148487, - -0.18355026841163635, - -0.08402005583047867, - -0.23791496455669403, - 0.4711853265762329, - 0.09093591570854187, - -0.07807574421167374, - -0.5195673704147339, - -0.12337107211351395, - -1.4347436428070068, - 0.3206177055835724, - 0.42634284496307373, - 0.39809635281562805, - 0.09555591642856598, - 0.1358017921447754, - 0.24790170788764954, - -0.3791499435901642, - -0.016723722219467163, - -0.17896217107772827, - 0.02849755994975567, - 0.19027669727802277, - 0.07942112535238266, - 0.06598695367574692, - 0.006974825635552406, - 0.5880471467971802, - 0.03816218674182892, - -0.2016848772764206, - 0.06958020478487015, - -0.03524167835712433, - -0.19770929217338562, - -0.10706612467765808, - -0.48784467577934265, - -0.46162864565849304, - 0.03851298615336418, - -0.049994368106126785, - 0.2714660167694092, - 0.22602885961532593, - 0.0933799147605896, - -0.21995322406291962, - 0.1988094449043274, - 0.10701288282871246, - 0.19622613489627838, - 0.2821347713470459, - 0.04901587590575218, - 0.06462813168764114, - -0.12283836305141449, - 0.0006425728206522763, - -0.1449182629585266, - 0.015317704528570175, - 0.35356128215789795, - 0.0036941005382686853, - -0.11636900901794434, - -0.04917679727077484, - 0.2712356448173523, - -0.01761685125529766, - -0.179544135928154, - -0.4086458683013916, - -0.00029557611560449004, - 0.01064060814678669, - 0.16373078525066376, - -0.12480144947767258, - -0.047982390969991684, - -0.250974178314209, - 0.015822669491171837, - 0.02654104121029377, - -0.4800695776939392, - -0.3978598415851593, - 0.22396527230739594, - 0.1891573965549469, - 0.10983213782310486, - -0.022603515535593033, - -0.01746959239244461, - -0.13923032581806183, - 0.029019279405474663, - 0.2955204248428345, - 0.5698025226593018, - 0.32502686977386475, - -0.07378807663917542, - -0.024403221905231476, - -0.09322857111692429, - -0.1694561094045639, - -0.04803727567195892, - 0.4363913834095001, - 0.0013219030806794763, - 0.15317663550376892, - 0.3891148567199707, - 0.11263243108987808, - -0.11643673479557037, - 0.7529957294464111, - -0.29153406620025635, - 0.26043957471847534, - -0.07454895973205566, - 0.33856478333473206, - 0.015002699568867683, - -0.32759442925453186, - -0.06368181109428406, - 0.4137195348739624, - -0.3097810745239258, - 0.5630106329917908, - 0.25552898645401, - -0.2706289291381836, - -0.019491931423544884, - -0.24032476544380188, - 0.3725490868091583, - 0.2269134521484375, - 0.35143667459487915, - -0.23887617886066437, - -0.15470941364765167, - -0.30493372678756714, - 0.06921195983886719, - -0.3510269522666931, - -0.3648751378059387, - -0.0038642564322799444, - 0.06709478795528412, - 0.005897081457078457, - -0.018254932016134262, - 0.2236310839653015, - 0.17854249477386475, - -0.12102644890546799, - -0.30600112676620483, - -0.4415149688720703, - -0.16290120780467987, - 0.13726702332496643, - 0.7014641761779785, - 0.14738792181015015, - -0.06851441413164139, - -0.07616463303565979, - 0.11884336918592453, - -0.10460691154003143, - 0.14004094898700714, - 0.10224667936563492, - -0.10575269907712936, - -0.4455963373184204, - 0.2187933772802353, - 0.11657366156578064, - -0.36225244402885437, - -0.11192493885755539, - -0.18393632769584656, - -0.053965553641319275, - 0.039524998515844345, - -0.18326681852340698, - 0.11368680000305176, - 0.3053017258644104, - -0.07614734768867493, - 0.009059018455445766, - -0.3483671545982361, - 0.022134581580758095, - 0.22603827714920044, - 0.3050978481769562, - -0.011491991579532623, - -0.2535531520843506, - -0.3099564015865326, - -0.5315080285072327, - 0.16372686624526978, - -0.47730153799057007, - -0.11095919460058212, - 0.2272912710905075, - 0.14273248612880707, - -0.2623544931411743, - 0.19839149713516235, - -0.14956943690776825, - 0.04175884649157524, - -0.2752734422683716, - 0.33233675360679626, - 0.49699699878692627, - -0.359591543674469, - 0.19793137907981873, - -0.1863759309053421, - 0.457620769739151, - 0.16683675348758698, - -0.23269420862197876, - 0.1499941349029541, - -0.19909434020519257 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_087.json b/src/benchmark/output/results/results_graph_087.json deleted file mode 100644 index f7a7b9e..0000000 --- a/src/benchmark/output/results/results_graph_087.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 56-year-old non-smoking male with pulmonary carcinosarcoma.\n\n**Initial Presentation (Step 1):**\nOn January 28, 2023, the patient presented at The Third People\u2019s Hospital of Yunnan Province with a progressively enlarging mass in the right neck. Imaging findings revealed multiple nodular shadows of various sizes within the right cervical region posterior to the sternocleidomastoid muscle and adjacent to the carotid artery sheath, which partially fused.\n\n**Diagnosis (Step 2):**\nCT scans confirmed the presence of a pulmonary malignancy with cervical and mediastinal lymph node metastasis. The largest mass measured approximately 3.8 cm x 2.6 cm with indistinct margins and uneven ring-shaped enhancement.\n\n**Biopsy and Pathological Diagnosis (Step 3):**\nA CT-guided puncture biopsy of the mass in the left inferior lobe of the lung was performed, which led to a pathological diagnosis of lung carcinosarcoma.\n\n**Immunohistochemistry and NGS Testing (Step 4):**\nImmunohistochemistry revealed a Ki-67 index of 80%, while Next-Generation Sequencing (NGS) detected mutations in the TMB gene. These results further supported the presence of pulmonary carcinomas.\n\n**Timeline:**\n\n* January 28, 2023: Patient presents with progressively enlarging neck mass and imaging findings consistent with pulmonary malignancy.\n* January 28, 2023: CT-guided puncture biopsy is performed to confirm diagnosis.\n* (Date not specified): Immunohistochemistry and NGS testing are performed.\n\n**Outcomes:**\nThe patient's condition remains active, with ongoing management of the pulmonary carcinosarcoma. The results of immunohistochemistry and NGS testing have provided valuable information for further treatment planning.\n\nNote: The timeline is incomplete as some dates were not specified in the original data.", - "bertscore": { - "precision": [ - 0.547805905342102 - ], - "recall": [ - 0.6741754412651062 - ], - "f1": [ - 0.6044565439224243 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 4, - "edge_count": 3, - "avg_in_degree": 0.75, - "density": 0.25 - }, - "trajectory_embedding": [ - 0.26591718196868896, - -0.01149221882224083, - -0.05490458011627197, - 0.09002448618412018, - 0.12090761959552765, - -0.02566247433423996, - 0.06007498502731323, - 0.25383898615837097, - 0.2421899437904358, - -0.4905059337615967, - -0.13693289458751678, - 0.12649738788604736, - -0.6974141597747803, - 0.05220205709338188, - -0.4585632383823395, - 0.09128075838088989, - 0.19116288423538208, - 0.33736515045166016, - 0.20399746298789978, - -0.1366174817085266, - -0.5366524457931519, - 0.14325380325317383, - -0.3938520550727844, - -0.22003361582756042, - 0.2763565480709076, - -0.13828757405281067, - 0.26946306228637695, - 0.39065390825271606, - 0.28081679344177246, - 0.20941975712776184, - -0.021269194781780243, - 0.05803205445408821, - -0.10231009125709534, - 0.07641473412513733, - -0.24658477306365967, - 0.31770482659339905, - 0.30015236139297485, - 0.2529020607471466, - -0.06250398606061935, - 0.10478872060775757, - 0.010389182716608047, - 0.013741150498390198, - 0.7951561212539673, - 0.22212618589401245, - 0.6838390827178955, - -0.6326733231544495, - 0.04047217220067978, - 0.5688554048538208, - -0.680841326713562, - -0.19903667271137238, - 0.09129107743501663, - 0.9155005216598511, - 0.5991806983947754, - -0.04953983426094055, - 0.41945120692253113, - -0.05501314252614975, - -0.4265047311782837, - -0.1075306087732315, - -0.3067843019962311, - 0.1665443480014801, - 0.03192378208041191, - -0.15232832729816437, - 0.18626531958580017, - -0.05157607048749924, - -0.35312244296073914, - -0.19599036872386932, - -0.2093559354543686, - 0.045759283006191254, - 0.012155687436461449, - -0.5244204998016357, - -0.327062726020813, - -0.08288201689720154, - -0.23973605036735535, - 0.08109693229198456, - 0.25429925322532654, - -0.25631025433540344, - 0.36183059215545654, - 0.1519981324672699, - -0.009220998734235764, - 0.22719216346740723, - 0.12203388661146164, - -0.18537288904190063, - 0.0468854159116745, - 0.23939333856105804, - -0.45602333545684814, - 0.16125860810279846, - -0.11851396411657333, - -0.055599600076675415, - -0.20591111481189728, - 0.11053580045700073, - 0.3805560767650604, - -0.06711959093809128, - -0.13524317741394043, - -0.20940275490283966, - 0.14989708364009857, - 0.023245546966791153, - 0.24723030626773834, - 0.42048966884613037, - 1.0676428079605103, - 0.00019805505871772766, - 0.258747398853302, - 0.09683284163475037, - 0.3800516128540039, - 0.11968780308961868, - 0.6178033947944641, - -0.01650042086839676, - 0.289710134267807, - -0.17485813796520233, - 0.0017641931772232056, - 0.3595304489135742, - 0.026484228670597076, - -0.10209359973669052, - 0.045070916414260864, - -0.22628095746040344, - 0.14339949190616608, - 0.23919814825057983, - -0.12023219466209412, - 0.166318878531456, - 0.18048357963562012, - -0.4693562984466553, - -0.051912691444158554, - -0.06720668077468872, - 0.3203240633010864, - 0.2555603086948395, - -0.44606807827949524, - -0.054738812148571014, - -0.22941914200782776, - 0.0716901421546936, - -0.04405885562300682, - 0.04440134018659592, - -0.5725164413452148, - -0.2273174226284027, - -0.024061400443315506, - 0.2981811463832855, - -0.17513903975486755, - 0.10784707963466644, - -0.40300437808036804, - -0.0037964098155498505, - -1.1383686065673828, - 0.24880048632621765, - -0.3056936264038086, - -0.11351403594017029, - 0.08574334532022476, - -0.31078672409057617, - -0.18952658772468567, - -0.24361519515514374, - -0.2369977980852127, - 0.02972540259361267, - 0.022009823471307755, - -0.19111812114715576, - -0.06640475988388062, - 0.12249793857336044, - 0.21704275906085968, - 0.3195517361164093, - 0.24677219986915588, - 0.15621249377727509, - 0.12167344242334366, - 0.24541166424751282, - 0.20779050886631012, - -0.13151510059833527, - 0.05605410039424896, - 0.24497650563716888, - 0.0902959331870079, - -0.023603245615959167, - 0.06993058323860168, - -0.6333256363868713, - 0.2476789653301239, - -0.3920873999595642, - 0.25470444560050964, - 0.03923548012971878, - -0.0565347746014595, - 0.1248915046453476, - -0.09725046157836914, - 0.5015400648117065, - 0.10165755450725555, - 0.4146695137023926, - -0.011445775628089905, - -0.2528352737426758, - 0.0030096769332885742, - 0.066905677318573, - -0.00508301705121994, - -0.1207534596323967, - 0.6170395612716675, - 0.16315220296382904, - -0.3064855933189392, - 0.26409727334976196, - 0.3644908666610718, - -0.2143092155456543, - 0.053608015179634094, - -0.1207704246044159, - 0.4798285961151123, - -0.1992984563112259, - 0.39461347460746765, - -0.5000622272491455, - -0.0560191348195076, - 0.14874961972236633, - -0.3289306163787842, - -0.375760555267334, - 0.1787140965461731, - -0.3201039433479309, - 0.1186957061290741, - 0.16628716886043549, - -0.22379128634929657, - 0.09523405134677887, - 0.18171370029449463, - -0.1160835474729538, - 0.3370267152786255, - 0.2980797290802002, - 0.012221883982419968, - -0.08274299651384354, - -0.20160479843616486, - 0.295451819896698, - -0.18905065953731537, - 0.29958099126815796, - 0.08492972701787949, - -0.17765316367149353, - 0.4785178303718567, - -0.05965906381607056, - -0.23587164282798767, - 0.09410808980464935, - -0.13395701348781586, - -0.1269397884607315, - 0.40571528673171997, - -0.09540663659572601, - -0.41550329327583313, - 0.2890357971191406, - 0.16908866167068481, - 0.08185970783233643, - 0.11542554199695587, - -0.07966802269220352, - -0.09897275269031525, - -0.2823992073535919, - 0.4196234941482544, - -0.11659608781337738, - -0.21994364261627197, - -0.17176280915737152, - 0.16924890875816345, - -0.14737264811992645, - -0.1987035572528839, - 0.5666136741638184, - -0.10828898847103119, - -0.13225102424621582, - 0.04008735716342926, - -0.2477116584777832, - -0.2206893265247345, - -0.18860270082950592, - 0.19892898201942444, - 0.4333099126815796, - 0.09945324808359146, - 0.37646690011024475, - 0.361336886882782, - -0.0294048935174942, - 0.3002912998199463, - -0.2910163402557373, - -0.3287873864173889, - -0.4788789749145508, - -0.12203575670719147, - -0.04261428862810135, - -0.3542187511920929, - 0.2015761137008667, - 0.0045067323371768, - -0.16664564609527588, - 0.13444514572620392, - -0.2596954107284546, - -0.038117293268442154, - 0.005160152912139893, - -0.1737871617078781, - 0.06649135053157806, - -0.10083063691854477, - 0.4040520489215851, - -0.11695312708616257, - -0.2353277951478958, - -0.08267872780561447, - -0.00713190995156765, - 0.21696628630161285, - 0.1293734312057495, - -0.02905123680830002, - 0.04111555218696594, - 0.10181955248117447, - -0.37525445222854614, - -0.20752593874931335, - 0.1316320300102234, - -0.21089839935302734, - 0.03408237174153328, - -0.11338970810174942, - 0.25957465171813965, - 0.5802068114280701, - -0.1450602114200592, - 0.09533525258302689, - 0.3792346715927124, - 0.5819066762924194, - 0.08950985968112946, - -0.005518749356269836, - -0.038632676005363464, - -0.08713217079639435, - 0.023707151412963867, - -0.488730788230896, - 0.31880080699920654, - -0.005287747830152512, - 0.05655728280544281, - 0.1678670346736908, - 0.4244734048843384, - -0.09835424274206161, - -0.41979488730430603, - -0.04430293291807175, - 0.5542852878570557, - 0.1576756238937378, - 0.02039998583495617, - 0.17387256026268005, - 0.2976800203323364, - 0.6870920658111572, - 0.011872969567775726, - -0.19080069661140442, - 0.20012670755386353, - -0.16408951580524445, - -0.40396374464035034, - -0.15138515830039978, - -0.05762047693133354, - 0.2482844442129135, - -0.1666419804096222, - -0.14353415369987488, - 0.19852463901042938, - -0.20900958776474, - -0.15274588763713837, - 0.1655704379081726, - 0.006531849503517151, - -0.060847826302051544, - -0.39920273423194885, - 0.37449249625205994, - -0.2445983588695526, - -0.29268303513526917, - 0.5046051740646362, - -0.2005026787519455, - -0.24327029287815094, - 0.45069313049316406, - -0.08288541436195374, - -0.5590108633041382, - 0.09368503838777542, - -0.25426018238067627, - -0.036611057817935944, - 0.34110504388809204, - -0.1377650946378708, - -0.15223625302314758, - -0.046981289982795715, - 0.23493041098117828, - 0.1447373628616333, - -0.05772365629673004, - -0.0792224258184433, - 0.02733166702091694, - 0.42601627111434937, - 0.6781925559043884, - 0.046332478523254395, - 0.13627010583877563, - 0.4873996078968048, - 0.018458889797329903, - -0.20248785614967346, - -0.13266849517822266, - -0.14226825535297394, - 0.30533215403556824, - -0.26482224464416504, - -0.3026427626609802, - -0.3490680754184723, - 0.04511967673897743, - 0.02239813655614853, - -0.27677780389785767, - 0.02303197979927063, - 0.19849182665348053, - -0.03240180015563965, - -0.053297191858291626, - 0.16876381635665894, - 0.4020344614982605, - -0.01429218053817749, - 0.5129151344299316, - -0.005648232996463776, - -0.027565237134695053, - 0.19228635728359222, - -0.05129896104335785, - 0.12830403447151184, - -0.020170796662569046, - -0.3413553833961487, - -0.5766260027885437, - -0.043447211384773254, - -0.3567486107349396, - -0.1587502360343933, - 0.09485404193401337, - -0.04176744818687439, - 0.012421295046806335, - -0.1731674075126648, - 0.10800927877426147, - -0.024834759533405304, - 0.10700815171003342, - 0.2329125702381134, - 0.46435683965682983, - -0.03889356926083565, - -0.3095247149467468, - 0.09760767221450806, - -0.02062283083796501, - 0.032348573207855225, - -0.007493659853935242, - -0.1776742786169052, - -0.36801040172576904, - 0.3908894658088684, - 0.06064484640955925, - -0.12756693363189697, - -0.028092145919799805, - -0.024772927165031433, - -0.22582398355007172, - -0.4634336233139038, - -0.19845548272132874, - -0.08715073019266129, - 0.02406385913491249, - -0.06948179006576538, - 0.06242324039340019, - -0.14848297834396362, - -0.25296202301979065, - 0.17171308398246765, - 0.22391799092292786, - 0.30514830350875854, - -0.37667930126190186, - -0.027840863913297653, - 0.18302534520626068, - 0.21891257166862488, - 0.39045628905296326, - -0.08139669895172119, - -0.0086597241461277, - -0.08750622719526291, - -0.24334120750427246, - -0.026501111686229706, - 0.0005951225757598877, - -0.30615055561065674, - -0.1883881688117981, - 0.22617053985595703, - 0.26457566022872925, - 0.17140856385231018, - -0.12118496000766754, - 0.054427385330200195, - 0.31842583417892456, - -0.5454424023628235, - -0.14622870087623596, - 0.12976783514022827, - 0.031104546040296555, - 0.6127027273178101, - -0.12723027169704437, - -0.23996561765670776, - -0.253092497587204, - 0.08502725511789322, - -0.34096935391426086, - 0.05775678530335426, - 0.2255668044090271, - -0.1474025696516037, - 0.06064894422888756, - 0.16771253943443298, - 0.004278358072042465, - -0.15690697729587555, - 0.249468594789505, - -0.1367252916097641, - 0.26656675338745117, - -0.11687643080949783, - -0.41371849179267883, - -0.038778651505708694, - -0.19421939551830292, - -0.21370583772659302, - -0.2878573536872864, - 0.5318673253059387, - 0.26105859875679016, - -0.12998002767562866, - 0.16083687543869019, - 0.07194200158119202, - -0.283555805683136, - -0.18379998207092285, - 0.05986235290765762, - -0.139956995844841, - 0.5749686360359192, - 0.12438569962978363, - -0.2403881996870041, - 0.26792827248573303, - -0.22201626002788544, - 0.26896047592163086, - 0.024926375597715378, - 0.08658510446548462, - 0.311108261346817, - 0.1341984122991562, - 0.10773409157991409, - 0.5506057143211365, - 0.1009610965847969, - -0.023660510778427124, - 0.26020240783691406, - 0.012888725847005844, - -0.006617873907089233, - -0.09569311887025833, - -0.024446338415145874, - 0.32918620109558105, - -0.3470954895019531, - 0.11918028444051743, - 0.07293424755334854, - 0.15971016883850098, - -0.30646637082099915, - -0.22689127922058105, - -0.19276024401187897, - -0.009271301329135895, - 0.004614017903804779, - -0.4780785143375397, - -0.18569275736808777, - 0.07098226249217987, - -0.3252703547477722, - -0.15340255200862885, - 0.4853735566139221, - 0.4047439694404602, - 0.19766554236412048, - -0.10292147845029831, - -0.20468570291996002, - -0.5575733184814453, - 0.02612924948334694, - 0.33485496044158936, - 0.1289076805114746, - 0.10564354062080383, - -0.28611692786216736, - 0.266088604927063, - 0.4853915572166443, - -0.08865010738372803, - 0.10585655272006989, - -0.12946897745132446, - -0.046843428164720535, - 0.07495781779289246, - 0.08907230943441391, - -0.21560455858707428, - -0.024289876222610474, - -0.3488452434539795, - 0.13025403022766113, - -0.42399168014526367, - -0.31058669090270996, - 0.24732525646686554, - -0.23592974245548248, - -0.4775214195251465, - -0.24607306718826294, - 0.16713762283325195, - -0.23781105875968933, - -0.12339784950017929, - 0.2332262396812439, - 0.5032081604003906, - 0.03691597282886505, - -0.2773243188858032, - 0.06767382472753525, - -0.5706654191017151, - -0.14554531872272491, - 0.160103440284729, - -0.250399112701416, - -0.083070307970047, - 0.023551084101200104, - 0.3957142233848572, - 0.48361897468566895, - 0.24200326204299927, - -0.36797189712524414, - -0.13907794654369354, - 0.20376698672771454, - 0.31269514560699463, - -0.14228084683418274, - -10.52149772644043, - -0.05866193026304245, - -0.16109603643417358, - 0.6146279573440552, - -0.11998244374990463, - -0.014858119189739227, - 0.2665661573410034, - -0.04254704713821411, - 0.03513477370142937, - 0.17537495493888855, - -0.20964136719703674, - 0.06945771723985672, - 0.2073594033718109, - 0.26868435740470886, - -0.045113250613212585, - 0.003371894359588623, - -0.2357906997203827, - 0.23871555924415588, - -0.2517309784889221, - 0.15510480105876923, - 0.20144343376159668, - 0.39073023200035095, - -0.11288298666477203, - 0.4067527651786804, - 0.20809334516525269, - -0.3537984788417816, - -0.11938221007585526, - 0.5208151340484619, - 0.19506025314331055, - -0.4319521188735962, - 0.35102662444114685, - 0.1857553869485855, - -0.21698112785816193, - 0.0016163364052772522, - 0.02739902213215828, - -0.022099897265434265, - -0.0760689526796341, - 0.0017201900482177734, - 0.38413435220718384, - -0.08845692873001099, - 0.21923288702964783, - -0.24620984494686127, - 0.24556981027126312, - 0.33930057287216187, - -0.03816438093781471, - -0.3931369185447693, - -0.3541938066482544, - -1.6729061603546143, - 0.26847031712532043, - 0.31537535786628723, - 0.46853530406951904, - 0.010371536016464233, - 0.21712583303451538, - 0.22484508156776428, - -0.478564977645874, - 0.05307956784963608, - -0.2802310585975647, - 0.056732602417469025, - 0.05494832247495651, - -0.030710265040397644, - 0.04083314165472984, - -0.0768602043390274, - 0.3027883768081665, - -0.019860874861478806, - -0.33289626240730286, - 0.189928337931633, - -0.08270322531461716, - -0.10856139659881592, - -0.3198232650756836, - -0.48349717259407043, - -0.3701348602771759, - -0.05765928328037262, - -0.19510418176651, - -0.20681092143058777, - 0.5627577304840088, - -0.10934240370988846, - -0.4082084000110626, - 0.11687737703323364, - -0.049179695546627045, - 0.35133472084999084, - 0.1414029896259308, - -0.018523618578910828, - 0.08479658514261246, - -0.11731429398059845, - -0.20058873295783997, - -0.11878814548254013, - 0.16168616712093353, - 0.5594614744186401, - 0.04072192311286926, - 0.060697879642248154, - -0.11249900609254837, - 0.4332432150840759, - -0.11470121145248413, - -0.15017317235469818, - -0.3387938439846039, - 0.1224551647901535, - -0.05414446443319321, - 0.04927092790603638, - -0.030652247369289398, - -0.2452256828546524, - -0.16480378806591034, - -0.05154358968138695, - -0.07399900257587433, - -0.39761805534362793, - -0.22886420786380768, - 0.1373678743839264, - 0.08312075585126877, - 0.31552910804748535, - 0.1627362221479416, - -0.005833938717842102, - -0.09991461783647537, - -0.08061906695365906, - 0.27358561754226685, - 0.4853225350379944, - 0.23375366628170013, - -0.2465631514787674, - -0.13442116975784302, - -0.1557799130678177, - -0.3698194622993469, - -0.01287461444735527, - 0.5192468762397766, - -0.09986317157745361, - 0.5092771649360657, - 0.5204302668571472, - -0.11005371809005737, - -0.10742278397083282, - 1.05696702003479, - -0.2626265585422516, - 0.34860870242118835, - -0.12696056067943573, - 0.06609726697206497, - -0.21178631484508514, - -0.35323551297187805, - 0.09751426428556442, - 0.38887614011764526, - -0.26918238401412964, - 0.6355773210525513, - 0.1413058340549469, - -0.45477232336997986, - 0.017410017549991608, - -0.16911086440086365, - 0.5645971298217773, - 0.26760178804397583, - 0.1730930209159851, - 0.08465996384620667, - -0.36421099305152893, - -0.20349252223968506, - 0.07011038064956665, - -0.4777170419692993, - -0.27220118045806885, - -0.3756297826766968, - 0.20535331964492798, - 0.049656882882118225, - -0.4205343723297119, - 0.410489022731781, - 0.030932461842894554, - -0.1767231971025467, - -0.11953237652778625, - -0.608121931552887, - -0.017582669854164124, - 0.1931217461824417, - 0.742199182510376, - 0.0673714429140091, - -0.0336107462644577, - -0.10332627594470978, - 0.0956142395734787, - -0.2115991711616516, - 0.07519575953483582, - -0.042031656950712204, - 0.03006545826792717, - -0.6485006809234619, - 0.2145518958568573, - 0.14180871844291687, - -0.47261613607406616, - -0.187157541513443, - -0.26695480942726135, - 0.09071142226457596, - -0.29147908091545105, - -0.18330153822898865, - 0.06593205034732819, - 0.24934104084968567, - 0.012056462466716766, - 0.01157421711832285, - -0.2594800889492035, - 0.10819008946418762, - 0.1651219129562378, - 0.1837885081768036, - 0.15052182972431183, - -0.16714949905872345, - -0.3954675495624542, - -0.12714192271232605, - 0.053219422698020935, - -0.1976548731327057, - 0.013631141744554043, - 0.03539549186825752, - 0.13934974372386932, - -0.3700181841850281, - -0.0519108846783638, - -0.29956403374671936, - 0.15233705937862396, - -0.29191485047340393, - 0.1371629387140274, - 0.3302500247955322, - -0.13850368559360504, - 0.021549459546804428, - -0.2394016683101654, - 0.2526240050792694, - 0.09480217099189758, - -0.2728283405303955, - 0.20540151000022888, - -0.3860236406326294 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_088.json b/src/benchmark/output/results/results_graph_088.json deleted file mode 100644 index f5bb449..0000000 --- a/src/benchmark/output/results/results_graph_088.json +++ /dev/null @@ -1,795 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is an [age]-year-old female with a history of [relevant medical conditions]. She was diagnosed with [primary diagnosis] in [month/year].\n\n**Timeline of Diagnoses and Treatments:**\n\n1. **Step 1 (N1):** The patient started treatment with osimertinib 160 mg in combination with phenytoin.\n2. **32 months after initiating osimertinib (N2):** A CT scan was performed, showing overall stable visceral and osseous disease. However, the left pleural effusion had completely resolved, while the right pleural effusion remained stable in size.\n3. **Patient developed nail changes with increasing brittleness (grade 1) (N3):** Seizure activity remained well controlled, but persistent dyspnea was noted.\n4. **Echocardiogram, exercise stress testing, cardiopulmonary exercise test, and pulmonary function tests (PFTs) were performed (N4):** These tests showed evidence of chronic obstructive lung disease (COPD) and emphysema.\n5. **Osimertinib dose was reduced to 80 mg daily for one week, then resumed at 160 mg daily due to persistent dyspnea (N5):** Despite the dose reduction, dyspnea did not significantly improve.\n6. **Patient achieved prolonged disease control on osimertinib treatment with continued osimertinib at a dose of 160 mg daily (N6):** Disease progression later stabilized following three cycles of carboplatin/pemetrexed.\n\n**Outcomes:**\n\n* The patient's dyspnea did not significantly improve despite the dose reduction of osimertinib.\n* However, she achieved prolonged disease control on osimertinib treatment with continued osimertinib at a dose of 160 mg daily.\n* The patient's COPD and emphysema were diagnosed and managed effectively.\n\n**Conclusion:**\nThe patient was initially treated with osimertinib 160 mg in combination with phenytoin. After 32 months, a CT scan showed overall stable disease, but persistent dyspnea remained a concern. Despite a dose reduction of osimertinib, the patient's dyspnea did not improve significantly. However, she achieved prolonged disease control on osimertinib treatment with continued dosing at 160 mg daily, and her COPD and emphysema were effectively managed.\n\n**Recommendations:**\n\n* Continue to monitor the patient's dyspnea and adjust the osimertinib dose as needed.\n* Consider adding additional treatments for COPD and emphysema, such as bronchodilators or corticosteroids.\n* Regularly review the patient's disease progression and adjust the treatment plan accordingly.", - "bertscore": { - "precision": [ - 0.5367745161056519 - ], - "recall": [ - 0.6528466939926147 - ], - "f1": [ - 0.5891479849815369 - ] - }, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 6, - "edge_count": 5, - "avg_in_degree": 0.8333333333333334, - "density": 0.16666666666666666 - }, - "trajectory_embedding": [ - 0.0932932123541832, - 0.22252197563648224, - -0.14526592195034027, - 0.15939070284366608, - -0.20974844694137573, - -0.031670670956373215, - -0.08481299877166748, - 0.16466908156871796, - 0.41577473282814026, - -0.0943373441696167, - -0.1593114733695984, - 0.17494191229343414, - -0.625055193901062, - -0.19611741602420807, - -0.2852177917957306, - 0.02521532028913498, - 0.10379129648208618, - 0.2883397042751312, - 0.039058659225702286, - -0.2755471169948578, - -0.13961149752140045, - 0.07383914291858673, - -0.4290246069431305, - -0.09295108914375305, - 0.057183992117643356, - -0.005033988505601883, - 0.16968488693237305, - 0.550330400466919, - 0.12917135655879974, - 0.348595529794693, - 0.186366006731987, - 0.10570526123046875, - -0.20654137432575226, - 0.1105787456035614, - -0.04829126596450806, - 0.25487256050109863, - 0.1223161593079567, - 0.23927462100982666, - 0.021722251549363136, - -0.08944636583328247, - -0.20376800000667572, - 0.16122068464756012, - 0.7655620574951172, - 0.15032429993152618, - 0.3587258756160736, - -0.7324102520942688, - -0.0013372823596000671, - 0.5411903262138367, - -0.3529610335826874, - -0.07923353463411331, - 0.3170825242996216, - 0.6176950335502625, - 0.6656267046928406, - -0.13577334582805634, - 0.4729914963245392, - -0.1113671138882637, - -0.31638190150260925, - -0.2607385218143463, - -0.055906739085912704, - 0.06923358887434006, - 0.04643925651907921, - -0.07160087674856186, - 0.17371760308742523, - -0.04520362988114357, - -0.254146009683609, - -0.18158002197742462, - -0.14840969443321228, - 0.10518214851617813, - 0.07643141597509384, - -0.20122694969177246, - -0.24227969348430634, - -0.39551496505737305, - -0.21774864196777344, - 0.07412704825401306, - 0.08674605935811996, - -0.10720458626747131, - 0.2739469110965729, - 0.0050252825021743774, - 0.09816431999206543, - -0.10553467273712158, - 0.01047863531857729, - 0.29093900322914124, - 0.003038863418623805, - 0.27632996439933777, - -0.28523632884025574, - 0.2158323973417282, - -0.1680164933204651, - -0.09290950745344162, - -0.2393179088830948, - 0.11390490084886551, - 0.04863245412707329, - -0.1780092716217041, - 0.178677499294281, - -0.20120012760162354, - 0.16101135313510895, - -0.06491848826408386, - 0.3932929039001465, - 0.28297802805900574, - 0.8817350268363953, - 0.07312968373298645, - 0.2281792014837265, - 0.0653696283698082, - 0.04147519916296005, - -0.23874877393245697, - 0.3797897398471832, - -0.16572551429271698, - 0.12646734714508057, - -0.6004130244255066, - -0.005676046013832092, - 0.6325801014900208, - 0.08208435028791428, - -0.3366829454898834, - 0.24977701902389526, - -0.27412232756614685, - 0.059725116938352585, - 0.003313970984891057, - -0.06251013278961182, - 0.32798200845718384, - -0.0054982504807412624, - -0.3421112596988678, - -0.12478604167699814, - -0.2738487422466278, - 0.28364840149879456, - 0.3645917475223541, - -0.4146024286746979, - -0.150970920920372, - -0.06150759756565094, - 0.13552986085414886, - -0.016772761940956116, - 0.13218477368354797, - -0.39912402629852295, - -0.11100881546735764, - -0.07014258950948715, - 0.23228515684604645, - -0.07955313473939896, - 0.42818769812583923, - -0.4482235908508301, - 0.32592740654945374, - -1.121076226234436, - 0.12500505149364471, - -0.2968970835208893, - -0.05828837677836418, - -0.03016706369817257, - -0.5122116208076477, - -0.2014046162366867, - -0.01456458866596222, - -0.10602451115846634, - 0.06830257922410965, - -0.1427515596151352, - -0.10450319200754166, - -0.3104049265384674, - -0.022173697128891945, - 0.17479901015758514, - 0.2948418855667114, - -0.016613267362117767, - 0.13325060904026031, - 0.08553051948547363, - 0.39376235008239746, - 0.11496338248252869, - -0.07676418870687485, - 0.2038629800081253, - 0.3754045069217682, - -0.2587677240371704, - -0.23419640958309174, - 0.15835608541965485, - -0.5833010673522949, - 0.08061450719833374, - -0.15889407694339752, - 0.24345530569553375, - 0.11779540777206421, - -0.2417188137769699, - -0.037906184792518616, - -0.290595144033432, - 0.7134247422218323, - 0.22195668518543243, - 0.6084230542182922, - 0.12171473354101181, - 0.07777171581983566, - 0.4453684091567993, - -0.05838267505168915, - 0.14275552332401276, - -0.09459849447011948, - 0.4691775143146515, - 0.262114554643631, - -0.32795509696006775, - 0.1574448198080063, - 0.23015518486499786, - -0.05550314486026764, - -0.31759971380233765, - -0.052123814821243286, - 0.5047041773796082, - -0.1387498527765274, - 0.21028558909893036, - -0.23435695469379425, - 0.08573295921087265, - -0.03969031944870949, - -0.317074716091156, - -0.11806487292051315, - -0.04810910299420357, - -0.15949302911758423, - 0.2346198558807373, - 0.1542006880044937, - -0.28566974401474, - 0.1743888109922409, - 0.23759739100933075, - -0.11727970838546753, - 0.003042767522856593, - 0.03569648042321205, - -0.04866256192326546, - -0.2084188312292099, - 0.018093740567564964, - 0.1554110050201416, - 0.008794811554253101, - 0.2905615270137787, - 0.03705059736967087, - -0.3256799876689911, - -0.07616572827100754, - 0.012924755923449993, - -0.08372151106595993, - 0.10073862224817276, - 0.05460295453667641, - -0.030389586463570595, - -0.011835361830890179, - -0.011188171803951263, - -0.34309348464012146, - 0.29669561982154846, - 0.2920264005661011, - 0.3743865191936493, - 0.07021404802799225, - 0.022515086457133293, - 0.1665567308664322, - -0.327128142118454, - 0.20053505897521973, - -0.14016716182231903, - -0.09755033254623413, - -0.27957046031951904, - 0.21938996016979218, - 0.011866572313010693, - -0.13002045452594757, - 0.25996074080467224, - -0.13446612656116486, - -0.15759076178073883, - 0.2586289346218109, - -0.28047987818717957, - 0.16253159940242767, - -0.32659289240837097, - -0.2178090363740921, - 0.4286471903324127, - 0.27135494351387024, - 0.333317369222641, - 0.10836542397737503, - -0.02360733412206173, - 0.3055698573589325, - -0.22367429733276367, - -0.330165833234787, - -0.3856450021266937, - -0.11537948995828629, - -0.04488852247595787, - -0.35227322578430176, - -0.05516402795910835, - 0.03070908971130848, - -0.2456774264574051, - 0.20741312205791473, - -0.21256913244724274, - 0.017093835398554802, - -0.1584024876356125, - 0.1802026778459549, - 0.2443542629480362, - -0.12208431959152222, - 0.09206216782331467, - -0.21252624690532684, - -0.12058385461568832, - -0.20938904583454132, - -0.07793682813644409, - 0.17311197519302368, - 0.24984489381313324, - -0.16684909164905548, - 0.09921729564666748, - 0.22069485485553741, - -0.4771226644515991, - -0.20111916959285736, - 0.14713551104068756, - -0.2790726125240326, - 0.29010021686553955, - -0.2607676684856415, - 0.2741756737232208, - 0.14714883267879486, - -0.002378121018409729, - 0.20501069724559784, - 0.21468663215637207, - 0.4607539176940918, - -0.06178804114460945, - -0.08888629823923111, - -0.16321702301502228, - -0.0028973284643143415, - -0.043634116649627686, - -0.47478553652763367, - 0.2961576282978058, - -0.10930630564689636, - -0.008120897226035595, - -0.005853208247572184, - 0.017454298213124275, - 0.10650646686553955, - -0.20742261409759521, - -0.15158820152282715, - 0.45555996894836426, - 0.27598297595977783, - 0.09055165201425552, - 0.07321750372648239, - 0.18118508160114288, - 0.6698780059814453, - -0.03940422832965851, - -0.10483068972826004, - -0.06664181500673294, - -0.336637407541275, - -0.10703068226575851, - -0.07271743565797806, - 0.05023205280303955, - 0.444963663816452, - 0.02759489417076111, - -0.18860264122486115, - 0.4251619875431061, - -0.1526188850402832, - -0.14117762446403503, - -0.3042178452014923, - -0.20446975529193878, - -0.055175911635160446, - 0.02221716195344925, - 0.3359704911708832, - -0.1601865142583847, - -0.05650157853960991, - 0.3063613176345825, - -0.09893735498189926, - -0.05230790376663208, - 0.027952425181865692, - -0.14737868309020996, - -0.5083025693893433, - 0.3623875677585602, - -0.09405184537172318, - 0.11202395707368851, - 0.28499507904052734, - -0.09658050537109375, - -0.12097350507974625, - -0.16174669563770294, - 0.28881990909576416, - 0.08728750795125961, - 0.06457052379846573, - -0.12393930554389954, - 0.21874268352985382, - 0.09890226274728775, - 0.3422815799713135, - 0.19794480502605438, - 0.08238372951745987, - 0.14460323750972748, - -0.26665374636650085, - -0.3410116732120514, - -0.04103467985987663, - 0.04804569482803345, - 0.05400605872273445, - -0.27605491876602173, - -0.27048131823539734, - -0.02550983428955078, - 0.17242081463336945, - 0.2116464525461197, - -0.22502565383911133, - 0.04066767171025276, - 0.05732369422912598, - 0.03799021989107132, - 0.004102384205907583, - 0.49388399720191956, - 0.3559645712375641, - 0.01872328855097294, - 0.513965368270874, - 0.1997574120759964, - -0.09199824184179306, - 0.24667499959468842, - -0.02629281021654606, - 0.18290270864963531, - -0.15190823376178741, - -0.42685770988464355, - -0.3379993438720703, - 0.022679997608065605, - -0.041648443788290024, - -0.09315693378448486, - -0.044397469609975815, - -0.26226165890693665, - -0.08793700486421585, - -0.04223243519663811, - 0.0470975898206234, - 0.04715189337730408, - 0.2794052064418793, - -0.28929653763771057, - 0.4239053726196289, - -0.14235641062259674, - -0.19226020574569702, - 0.06801048666238785, - -0.052950188517570496, - 0.21022284030914307, - -0.21182076632976532, - -0.1057010069489479, - -0.11418718844652176, - 0.5331012606620789, - -0.0440969318151474, - -0.09433523565530777, - -0.1805032640695572, - -0.13420532643795013, - -0.2734861671924591, - -0.3608112037181854, - 0.09881559759378433, - -0.08297424763441086, - -0.0980168804526329, - -0.2254045009613037, - 0.12245756387710571, - -0.03783087059855461, - -0.27766934037208557, - -0.1458224505186081, - 0.048388123512268066, - 0.046347592025995255, - 0.05348365008831024, - 0.11280658096075058, - 0.3525538444519043, - 0.07776307314634323, - 0.4142664968967438, - -0.2357398271560669, - 0.25764039158821106, - 0.09710013121366501, - -0.24616561830043793, - 0.04311452805995941, - 0.08581709861755371, - -0.13949239253997803, - -0.019189268350601196, - 0.18605540692806244, - 0.03937113285064697, - -0.15369702875614166, - -0.09488817304372787, - -0.047470856457948685, - 0.11407341808080673, - -0.1617022305727005, - -0.17794841527938843, - 0.24191980063915253, - -0.10251930356025696, - 0.2323332577943802, - 0.17346979677677155, - -0.4152207374572754, - -0.18064694106578827, - -0.14092983305454254, - -0.3382721245288849, - 0.1548185795545578, - -0.05142590031027794, - -0.21200956404209137, - 0.021805040538311005, - -0.09549779444932938, - 0.17945365607738495, - 0.07128652185201645, - 0.19518804550170898, - 0.12036222219467163, - 0.26546913385391235, - -0.021182088181376457, - -0.33714184165000916, - 0.021989179775118828, - -0.3136853277683258, - -0.2949233651161194, - -0.17822706699371338, - 0.20928116142749786, - 0.23129267990589142, - -0.28014519810676575, - -0.08552839607000351, - 0.08937478065490723, - -0.24043051898479462, - -0.3183756172657013, - -0.16880659759044647, - -0.09631653875112534, - 0.49294087290763855, - 0.06170240417122841, - -0.1932736188173294, - 0.06529556959867477, - -0.36222633719444275, - 0.176583394408226, - 0.235460564494133, - 0.1392861008644104, - 0.27457138895988464, - 0.0989886149764061, - 0.04111700877547264, - 0.3945091962814331, - 0.02350730635225773, - 0.05301901698112488, - 0.2589324116706848, - -0.08525840193033218, - 0.23566363751888275, - -0.0915536880493164, - -0.10780002921819687, - 0.2865571975708008, - -0.34516027569770813, - 0.1579422503709793, - -0.1098853349685669, - 0.43606457114219666, - -0.29280754923820496, - -0.3270603120326996, - 0.013051782734692097, - -0.15463034808635712, - -0.11356935650110245, - -0.2170911282300949, - -0.08925988525152206, - 0.02894536592066288, - 0.11964192241430283, - -0.08322902768850327, - 0.14616519212722778, - 0.35460957884788513, - -0.0551704466342926, - 0.1321456879377365, - -0.2503812611103058, - -0.25734907388687134, - 0.07323399186134338, - 0.348968505859375, - 0.05030667781829834, - -0.20928005874156952, - -0.0066027045249938965, - 0.21576374769210815, - 0.18694205582141876, - -0.025540689006447792, - -0.05406864359974861, - 0.10758241266012192, - -0.10054022073745728, - 0.005688028875738382, - 0.211483433842659, - -0.07317795604467392, - 0.1860990971326828, - -0.28764408826828003, - 0.012710104696452618, - -0.026702264323830605, - -0.16530251502990723, - 0.1826000213623047, - -0.35041406750679016, - -0.6063994765281677, - 0.1740301251411438, - 0.10236053913831711, - 0.1292775422334671, - -0.11260899156332016, - 0.27551329135894775, - 0.46047136187553406, - 0.06269005686044693, - -0.1720420867204666, - 0.009614101611077785, - -0.4017919600009918, - 0.05386490002274513, - 0.13263826072216034, - -0.05590236559510231, - -0.0018665976822376251, - -0.046524304896593094, - 0.34903955459594727, - 0.2790030539035797, - 0.18543492257595062, - -0.38093772530555725, - 0.3401983082294464, - 0.3624304234981537, - 0.40966853499412537, - -0.3600245714187622, - -10.870512962341309, - 0.180294930934906, - -0.03554985299706459, - 0.4312049448490143, - -0.15606854856014252, - 0.14527128636837006, - -0.1766577810049057, - -0.13640731573104858, - 0.1269116997718811, - 0.05801498889923096, - -0.2637585699558258, - -0.10079621523618698, - 0.20725907385349274, - 0.005339592695236206, - 0.05540558695793152, - 0.01509036123752594, - -0.31256261467933655, - 0.17200994491577148, - 0.07886824011802673, - 0.10334396362304688, - 0.17954586446285248, - 0.41762158274650574, - -0.08780259639024734, - 0.09153036028146744, - 0.062205106019973755, - -0.015605275519192219, - -0.08163753896951675, - 0.41811075806617737, - 0.06718413531780243, - -0.2377891093492508, - 0.18298892676830292, - -0.07649048417806625, - -0.1470458060503006, - -0.14336064457893372, - -0.17270831763744354, - -0.29553452134132385, - -0.19606804847717285, - -0.05774223804473877, - -0.08318781852722168, - -0.22394001483917236, - -0.041662830859422684, - -0.11502647399902344, - 0.05314693972468376, - 0.2215041071176529, - -0.11389639973640442, - -0.6934958100318909, - -0.06640445441007614, - -1.475129246711731, - 0.07750623673200607, - 0.29980146884918213, - 0.5974081158638, - 0.08256556838750839, - 0.04333962872624397, - 0.0639515295624733, - -0.4313758313655853, - 0.017804378643631935, - -0.2359410971403122, - 0.0478404276072979, - 0.08634606003761292, - -0.004381199833005667, - 0.08870617300271988, - -0.08074883371591568, - 0.5249351263046265, - -0.4142329692840576, - -0.36986610293388367, - 0.1913277506828308, - -0.029002806171774864, - -0.011400774121284485, - -0.12002703547477722, - -0.4213210642337799, - -0.6017170548439026, - -0.14473982155323029, - -0.03069092333316803, - 0.14155088365077972, - 0.2949472665786743, - 0.07878261804580688, - -0.2586101293563843, - 0.15187357366085052, - -0.1685909479856491, - 0.2053777426481247, - 0.14729730784893036, - -0.07037488371133804, - 0.3162781000137329, - -0.047114331275224686, - -0.0038810856640338898, - -0.20487064123153687, - -0.005768758710473776, - 0.4125922620296478, - 0.14336548745632172, - -0.0019141919910907745, - -0.005232168827205896, - 0.20039354264736176, - -0.10362102836370468, - -0.11880900710821152, - -0.4662646949291229, - -0.10445310920476913, - -0.06667003780603409, - 0.11724800616502762, - 0.05141745135188103, - 0.03158038109540939, - -0.18259549140930176, - 0.06415187567472458, - 0.005868453066796064, - -0.34892940521240234, - -0.25719624757766724, - 0.3763006925582886, - 0.2551797926425934, - -0.04959214851260185, - 0.12653695046901703, - -0.10576946288347244, - 0.0917309820652008, - 0.2781619131565094, - 0.4160991907119751, - 0.5094340443611145, - 0.13598884642124176, - 0.09946203231811523, - -0.13307525217533112, - 0.062275033444166183, - -0.10977735370397568, - 0.15984125435352325, - 0.216755211353302, - 0.07127999514341354, - 0.2069898396730423, - 0.3911607563495636, - 0.08436664193868637, - -0.10696790367364883, - 0.7786993980407715, - -0.22766394913196564, - 0.3023633062839508, - -0.09521976113319397, - 0.2361452579498291, - 0.020686663687229156, - -0.3374462425708771, - -0.016439178958535194, - 0.23164601624011993, - -0.4531600773334503, - 0.352059006690979, - 0.08277871459722519, - -0.23703913390636444, - 0.02336391806602478, - -0.4467061460018158, - 0.4349687993526459, - 0.3632441461086273, - 0.37597575783729553, - -0.07526091486215591, - -0.30344393849372864, - -0.21311922371387482, - 0.19952942430973053, - -0.2564801871776581, - -0.24825572967529297, - 0.05567367747426033, - -0.15804757177829742, - 0.0069679333828389645, - -0.08759383112192154, - 0.326414555311203, - 0.12271643429994583, - -0.03332125023007393, - 0.002784608630463481, - -0.17578673362731934, - -0.18879537284374237, - 0.06531774252653122, - 0.43388092517852783, - 0.13352175056934357, - -0.025218287482857704, - -0.06184760853648186, - 0.3128725588321686, - -0.06870735436677933, - 0.1545356661081314, - 0.057919424027204514, - 0.028333552181720734, - -0.3591172695159912, - 0.09084191173315048, - 0.07145512104034424, - -0.15783746540546417, - -0.12509365379810333, - -0.3401971161365509, - 0.2230803519487381, - 0.13781367242336273, - -0.2879030704498291, - 0.2896013557910919, - 0.5541418194770813, - 0.007132460828870535, - -0.1171417236328125, - -0.3018569052219391, - 0.045847680419683456, - 0.16200213134288788, - 0.16914339363574982, - 0.08683129400014877, - -0.2957318127155304, - -0.29960572719573975, - -0.4268268644809723, - 0.15440618991851807, - -0.43740710616111755, - 0.09787005931138992, - 0.2530539333820343, - 0.021445520222187042, - -0.23829889297485352, - 0.10287903994321823, - 0.007923956029117107, - -0.06521789729595184, - -0.16930167376995087, - 0.07108300179243088, - 0.34331563115119934, - -0.5605292320251465, - 0.2891293466091156, - -0.0832212045788765, - 0.2333129197359085, - 0.1323695331811905, - -0.33683013916015625, - 0.1579608917236328, - -0.08386263996362686 - ] -} \ No newline at end of file diff --git a/src/benchmark/requirements.txt b/src/benchmark/requirements.txt index bd3fa1a..b1115e5 100644 --- a/src/benchmark/requirements.txt +++ b/src/benchmark/requirements.txt @@ -10,4 +10,7 @@ matplotlib numpy scipy bs4 -evaluate \ No newline at end of file +evaluate +rouge_score +absl-py +nltk \ No newline at end of file diff --git a/src/benchmark/setup_and_run.sh b/src/benchmark/setup_and_run.sh index 5360a9e..31c246c 100755 --- a/src/benchmark/setup_and_run.sh +++ b/src/benchmark/setup_and_run.sh @@ -18,8 +18,8 @@ else echo "No requirements.txt found. Skipping dependency installation." fi -# echo "Running main..." -# python3 batch_run.py +echo "Running batch run..." +python3 batch_run.py echo "Generating plots..." python3 generate_visuals.py \ No newline at end of file diff --git a/src/graph/__init__.py b/src/graph/__init__.py index 8a3e458..e69de29 100644 --- a/src/graph/__init__.py +++ b/src/graph/__init__.py @@ -1,9 +0,0 @@ -# SPDX-FileCopyrightText: 2025 Stanford University and the project authors (see CONTRIBUTORS.md) -# -# SPDX-License-Identifier: Apache-2.0 - - -""" - - -""" \ No newline at end of file diff --git a/webapp/static/graphs/testset/graph_001.json b/webapp/static/graphs/testset/graph_001.json new file mode 100644 index 0000000..d88caf0 --- /dev/null +++ b/webapp/static/graphs/testset/graph_001.json @@ -0,0 +1,344 @@ +{ + "nodes": [ + { + "id": "N1", + "label": "Step 1", + "customData": { + "node_id": "A", + "node_step_index": 0, + "content": "44-year-old male presented with right-sided chest pain, dry cough, on-off fever, and hematuria for 2 months. Patient has no history of Antitubercular treatment (ATT) intake and was a tobacco chewer for >20 years. Physical examination revealed decreased air entry on the right side of the lung.", + "clinical_data": { + "HPI": [ + { + "summary": "right-sided chest pain, dry cough, on-off fever, and hematuria for 2 months", + "duration": "2 months", + "associated_symptoms": [ + "C0008031", + "C0010200", + "C0015967", + "C0019062" + ] + } + ], + "social_history": [ + { + "category": "tobacco", + "status": "current", + "description": "tobacco chewer for >20 years" + } + ] + } + }, + "custom_id": "graph_001_N0" + }, + { + "id": "N2", + "label": "Step 2", + "customData": { + "node_id": "B", + "node_step_index": 1, + "content": "Contrast-enhanced computed tomography (CECT) thorax revealed a heterogeneous lesion in the mediastinal region abutting the horizontal fissure and cavitation within. Chest imaging showed multiple centrilobular nodules arranged in a linear branching pattern.", + "clinical_data": { + "imaging": [ + { + "type": "Computed tomography", + "body_part": "Thorax", + "modality": "CT", + "finding": "heterogeneous lesion in the mediastinal region abutting the horizontal fissure and cavitation within", + "date": null + }, + { + "type": "Chest imaging", + "body_part": "Chest", + "modality": null, + "finding": "multiple centrilobular nodules arranged in a linear branching pattern", + "date": null + } + ] + } + }, + "custom_id": "graph_001_N1" + }, + { + "id": "N3", + "label": "Step 3", + "customData": { + "node_id": "C", + "node_step_index": 3, + "content": "Bronchoscopy with bronchoscopic-guided biopsy and Bronchoalveolar lavage (BAL) was performed. BAL fluid was negative for malignant cells. Biopsy was suggestive of squamous cell carcinoma.", + "clinical_data": { + "procedures": [ + { + "name": "Bronchoscopy", + "approach": "endoscopic", + "location": "lung", + "outcome": "negative for malignant cells" + }, + { + "name": "Biopsy", + "approach": "bronchoscopic-guided", + "location": "lung", + "outcome": "squamous cell carcinoma" + } + ], + "diagnoses": [ + { + "code": "C0007102", + "label": "Squamous Cell Carcinoma", + "status": "suspected" + } + ] + } + }, + "custom_id": "graph_001_N2" + }, + { + "id": "N4", + "label": "Step 4", + "customData": { + "node_id": "D", + "node_step_index": 4, + "content": "Patient reported decreased and blurring of vision. Ophthalmology opinion was within normal limits.", + "clinical_data": { + "HPI": [ + { + "summary": "Patient reported decreased and blurring of vision.", + "associated_symptoms": [ + "Blurring of vision" + ] + } + ] + } + }, + "custom_id": "graph_001_N3" + }, + { + "id": "N5", + "label": "Step 5", + "customData": { + "node_id": "E", + "node_step_index": 5, + "content": "18F-FDG PET/CT scan revealed a FDG-avid well-defined soft tissue primary mass measuring 5.6 cm x 7.7 cm x 8.3 cm with spiculated margins in the upper lobe of the right lung with collapse and consolidation of right lung. FDG avid metastases to mediastinal, abdominopelvic lymph nodes and right-sided pleural deposits with multiple sub-centimetric to centimetric-sized bilateral lung nodules were noted. Multiple FDG avid brain lesions involving the bilateral cerebral cortex, cerebellum and pituitary. 18F-FDG-PET/CT showed FDG avid bilateral hypodense renal masses (largest measuring 2.8 cm x 2.6 cm), multiple lytic skeletal lesions with soft tissue component involvement, FDG-avid right-sided lung mass with abdominal lymph node, and FDG-avid soft tissue lesion in the pituitary. Also shows another peripheral enhancing hypodense soft tissue lesion in the left cerebral hemisphere. CT and fused PET/CT axial images showing right parietal-occipital bone lytic lesion with soft tissue component involvement. Metabolically active soft tissue lesions were noted involving bilateral kidneys with extensive metastasis as seen in the FDG PET/CT scan.", + "clinical_data": { + "imaging": [ + { + "type": "Positron emission tomography/computed tomography", + "body_part": "lung", + "modality": "PET", + "finding": "FDG-avid well-defined soft tissue primary mass measuring 5.6 cm x 7.7 cm x 8.3 cm with spiculated margins in the upper lobe of the right lung with collapse and consolidation of right lung", + "date": null + }, + { + "type": "Positron emission tomography/computed tomography", + "body_part": "mediastinal, abdominopelvic lymph nodes", + "modality": "PET", + "finding": "FDG avid metastases to mediastinal, abdominopelvic lymph nodes and right-sided pleural deposits with multiple sub-centimetric to centimetric-sized bilateral lung nodules", + "date": null + }, + { + "type": "Positron emission tomography/computed tomography", + "body_part": "brain", + "modality": "PET", + "finding": "Multiple FDG avid brain lesions involving the bilateral cerebral cortex, cerebellum and pituitary", + "date": null + }, + { + "type": "Positron emission tomography/computed tomography", + "body_part": "kidneys", + "modality": "PET", + "finding": "FDG avid bilateral hypodense renal masses (largest measuring 2.8 cm x 2.6 cm)", + "date": null + }, + { + "type": "Positron emission tomography/computed tomography", + "body_part": "skeletal", + "modality": "PET", + "finding": "multiple lytic skeletal lesions with soft tissue component involvement", + "date": null + }, + { + "type": "Positron emission tomography/computed tomography", + "body_part": "pituitary", + "modality": "PET", + "finding": "FDG-avid soft tissue lesion in the pituitary", + "date": null + }, + { + "type": "Positron emission tomography/computed tomography", + "body_part": "left cerebral hemisphere", + "modality": "PET", + "finding": "peripheral enhancing hypodense soft tissue lesion in the left cerebral hemisphere", + "date": null + }, + { + "type": "Computed tomography", + "body_part": "right parietal-occipital bone", + "modality": "CT", + "finding": "right parietal-occipital bone lytic lesion with soft tissue component involvement", + "date": null + }, + { + "type": "Positron emission tomography/computed tomography", + "body_part": "kidneys", + "modality": "PET", + "finding": "Metabolically active soft tissue lesions were noted involving bilateral kidneys with extensive metastasis", + "date": null + } + ] + } + }, + "custom_id": "graph_001_N4" + }, + { + "id": "N6", + "label": "Step 6", + "customData": { + "node_id": "F", + "node_step_index": 7, + "content": "Patient presented with severe headaches and blurring of vision for 15 days.", + "clinical_data": { + "HPI": [ + { + "summary": "Patient presented with severe headaches and blurring of vision for 15 days.", + "duration": "15 days", + "onset": "unknown", + "progression": "unknown", + "associated_symptoms": [ + "C0018681", + "C0234587" + ] + } + ] + } + }, + "custom_id": "graph_001_N5" + }, + { + "id": "N7", + "label": "Step 7", + "customData": { + "node_id": "G", + "node_step_index": 9, + "content": "Biopsy results confirmed metastatic involvement.", + "clinical_data": { + "diagnoses": [ + { + "code": "C0009404", + "label": "Metastasis", + "status": "active" + } + ], + "procedures": [ + { + "name": "Biopsy", + "outcome": "positive for metastatic involvement" + } + ] + } + }, + "custom_id": "graph_001_N6" + } + ], + "edges": [ + { + "from": "N1", + "to": "N2", + "data": { + "edge_id": "A_to_B", + "branch_flag": true, + "content": "Initial presentation and subsequent imaging", + "transition_event": { + "trigger_type": "imaging", + "trigger_entities": [], + "change_type": "addition", + "target_domain": "imaging" + } + }, + "custom_id": "graph_001_N1_N2" + }, + { + "from": "N2", + "to": "N3", + "data": { + "edge_id": "B_to_C", + "branch_flag": true, + "content": "Bronchoscopy and biopsy performed to investigate the lesion", + "transition_event": { + "trigger_type": "procedure", + "trigger_entities": [ + "Bronchoscopy", + "Biopsy" + ], + "change_type": "addition", + "target_domain": "procedure" + } + }, + "custom_id": "graph_001_N2_N3" + }, + { + "from": "N3", + "to": "N4", + "data": { + "edge_id": "C_to_D", + "branch_flag": true, + "content": "Patient reported decreased and blurring of vision. Ophthalmology opinion was within normal limits." + }, + "custom_id": "graph_001_N3_N4" + }, + { + "from": "N4", + "to": "N5", + "data": { + "edge_id": "D_to_E", + "branch_flag": true, + "content": "PET/CT scan performed to assess the extent of the disease", + "transition_event": { + "trigger_type": "imaging", + "trigger_entities": [ + "PET/CT" + ], + "change_type": "addition", + "target_domain": "imaging" + } + }, + "custom_id": "graph_001_N4_N5" + }, + { + "from": "N5", + "to": "N6", + "data": { + "edge_id": "E_to_F", + "branch_flag": true, + "content": "Patient presented with severe headaches and blurring of vision.", + "transition_event": { + "trigger_type": "symptom_onset", + "trigger_entities": [ + "C0018681", + "C0234587" + ], + "change_type": "progression", + "target_domain": "symptom" + } + }, + "custom_id": "graph_001_N5_N6" + }, + { + "from": "N6", + "to": "N7", + "data": { + "edge_id": "F_to_G", + "branch_flag": true, + "content": "Biopsy results confirmed metastatic involvement.", + "transition_event": { + "trigger_type": "procedure", + "trigger_entities": [ + "Biopsy" + ], + "change_type": "reinterpretation", + "target_domain": "diagnosis" + } + }, + "custom_id": "graph_001_N6_N7" + } + ] +} \ No newline at end of file diff --git a/webapp/static/graphs/testset/graph_012.json b/webapp/static/graphs/testset/graph_012.json new file mode 100644 index 0000000..564a2a2 --- /dev/null +++ b/webapp/static/graphs/testset/graph_012.json @@ -0,0 +1,328 @@ +{ + "nodes": [ + { + "id": "N1", + "label": "Step 1", + "customData": { + "node_id": "A", + "node_step_index": 0, + "content": "79-year-old male, height 174 cm, weight 65 kg, BMI 21.5 kg/m\u00b2, with a smoking history of two packs per day for 55 years (Brinkman Index 1100). History of total thyroidectomy five years prior for papillary thyroid carcinoma (PTC). Comorbidities include chronic obstructive pulmonary disease and hypertension.", + "clinical_data": { + "social_history": [ + { + "category": "smoking", + "status": "past", + "description": "two packs per day for 55 years (Brinkman Index 1100)" + } + ], + "diagnoses": [ + { + "code": "C0009404", + "label": "Chronic Obstructive Airway Disease", + "status": "active" + }, + { + "code": "C0020538", + "label": "Hypertension", + "status": "active" + }, + { + "code": "C0279738", + "label": "Papillary Thyroid Carcinoma", + "status": "historical" + } + ], + "procedures": [ + { + "name": "C0158554", + "date": null, + "location": "Thyroid gland", + "outcome": null + } + ] + } + }, + "custom_id": "graph_012_N0" + }, + { + "id": "N2", + "label": "Step 2", + "customData": { + "node_id": "B", + "node_step_index": 1, + "content": "Six years ago, the patient was found to have left cervical lymphadenopathy of unknown origin, suspected to be cervical lymph node metastasis of papillary thyroid carcinoma (PTC).", + "clinical_data": { + "diagnoses": [ + { + "code": "C0346403", + "label": "Papillary carcinoma of thyroid", + "status": "suspected", + "onset_date": null + } + ], + "imaging": [ + { + "type": "C0024311", + "body_part": "C0007664", + "modality": "other", + "finding": "Left cervical lymphadenopathy of unknown origin", + "impression": "Left cervical lymphadenopathy of unknown origin", + "date": null + } + ] + } + }, + "custom_id": "graph_012_N1" + }, + { + "id": "N3", + "label": "Step 3", + "customData": { + "node_id": "C", + "node_step_index": 2, + "content": "Five years ago, the patient underwent total thyroidectomy and left cervical lymph node dissection. Histopathology revealed multiple papillary thyroid microcarcinomas (pT1a [m], pEx0, pN1b 4/10, pStage IVA) with negative surgical margins.", + "clinical_data": { + "procedures": [ + { + "name": "Thyroidectomy, total", + "date": null, + "location": "thyroid gland", + "outcome": null, + "approach": null, + "performed_by": null + }, + { + "name": "Lymph node dissection", + "date": null, + "location": "left cervical lymph node", + "outcome": null, + "approach": null, + "performed_by": null + } + ], + "diagnoses": [ + { + "code": "C73", + "label": "Malignant neoplasm of thyroid gland", + "status": "historical", + "onset_date": null + } + ] + } + }, + "custom_id": "graph_012_N2" + }, + { + "id": "N4", + "label": "Step 4", + "customData": { + "node_id": "D", + "node_step_index": 3, + "content": "Patient was treated with radioiodine therapy (Iodine-131).", + "clinical_data": { + "medications": [ + { + "drug": "C0021843", + "dosage": null, + "frequency": null, + "modality": null, + "start_date": null, + "end_date": null, + "indication": null + } + ] + } + }, + "custom_id": "graph_012_N3" + }, + { + "id": "N5", + "label": "Step 5", + "customData": { + "node_id": "E", + "node_step_index": 4, + "content": "Two years prior to current encounter, a nodule in the right upper lobe of the lung was identified and monitored with chest CT scans. Increase in nodule density observed compared to two years prior, prompting a transbronchial biopsy; however, no definitive diagnosis was made. Tumor markers (CYFRA, CEA, SLX, ProGRP, NSE) were within normal limits.", + "clinical_data": { + "imaging": [ + { + "type": "Lung nodule", + "body_part": "Right upper lobe of lung", + "modality": "CT", + "finding": "Increase in nodule density", + "date": null + } + ], + "procedures": [ + { + "name": "Transbronchial biopsy", + "date": null, + "outcome": "No definitive diagnosis" + } + ], + "labs": [ + { + "test": "CYFRA 21-1", + "value": "within normal limits", + "flag": "normal" + }, + { + "test": "Carcinoembryonic antigen", + "value": "within normal limits", + "flag": "normal" + }, + { + "test": "Sialyl Lewis X-i antigen", + "value": "within normal limits", + "flag": "normal" + }, + { + "test": "Pro-gastrin-releasing peptide", + "value": "within normal limits", + "flag": "normal" + }, + { + "test": "Neuron-specific enolase", + "value": "within normal limits", + "flag": "normal" + } + ] + } + }, + "custom_id": "graph_012_N4" + }, + { + "id": "N6", + "label": "Step 6", + "customData": { + "node_id": "F", + "node_step_index": 5, + "content": "Serum thyroglobulin levels showed a gradual increase over time, with a preoperative value of 47.7 ng/mL. Chest X-rays showed no abnormalities, while chest CT scans revealed an irregular nodule measuring 15\u00d714 mm in the S1 segment of the right upper lobe. No hilar lymphadenopathy was detected. Pulmonary function and electrocardiogram tests showed no abnormalities.", + "clinical_data": { + "labs": [ + { + "test": "Thyroglobulin Measurement", + "value": "47.7", + "unit": "ng/mL", + "flag": "abnormal" + } + ], + "imaging": [ + { + "type": "Lung X-Ray", + "body_part": "Thorax", + "modality": "X-ray", + "finding": "no abnormalities", + "date": null + }, + { + "type": "CT chest", + "body_part": "Thorax", + "modality": "CT", + "finding": "irregular nodule measuring 15\u00d714 mm in the S1 segment of the right upper lobe", + "impression": "irregular nodule measuring 15\u00d714 mm in the S1 segment of the right upper lobe", + "date": null + } + ] + } + }, + "custom_id": "graph_012_N5" + }, + { + "id": "N7", + "label": "Step 7", + "customData": { + "node_id": "G", + "node_step_index": 6, + "content": "A surgical plan was made to perform intraoperative rapid diagnosis, followed by right upper", + "clinical_data": {} + }, + "custom_id": "graph_012_N6" + } + ], + "edges": [ + { + "from": "N1", + "to": "N2", + "data": { + "edge_id": "A_to_B", + "branch_flag": true, + "content": "Development of left cervical lymphadenopathy of unknown origin, suspected to be cervical lymph node metastasis of papillary thyroid carcinoma (PTC) six years ago." + }, + "custom_id": "graph_012_N1_N2" + }, + { + "from": "N2", + "to": "N3", + "data": { + "edge_id": "B_to_C", + "branch_flag": true, + "content": "Patient underwent total thyroidectomy and left cervical lymph node dissection five years ago.", + "transition_event": { + "trigger_type": "procedure", + "trigger_entities": [ + "C0158554" + ], + "change_type": "addition", + "target_domain": "procedure" + } + }, + "custom_id": "graph_012_N2_N3" + }, + { + "from": "N3", + "to": "N4", + "data": { + "edge_id": "C_to_D", + "branch_flag": true, + "content": "Patient was treated with radioiodine therapy (Iodine-131).", + "transition_event": { + "trigger_type": "medication_change", + "trigger_entities": [ + "C0021843" + ], + "change_type": "addition", + "target_domain": "medication" + } + }, + "custom_id": "graph_012_N3_N4" + }, + { + "from": "N4", + "to": "N5", + "data": { + "edge_id": "D_to_E", + "branch_flag": true, + "content": "Two years prior to current encounter, a nodule in the right upper lobe of the lung was identified and monitored with chest CT scans. Increase in nodule density observed compared to two years prior, prompting a transbronchial biopsy; however, no definitive diagnosis was made. Tumor markers (CYFRA, CEA, SLX, ProGRP, NSE) were within normal limits." + }, + "custom_id": "graph_012_N4_N5" + }, + { + "from": "N5", + "to": "N6", + "data": { + "edge_id": "E_to_F", + "branch_flag": true, + "content": "Serum thyroglobulin levels showed a gradual increase over time, with a preoperative value of 47.7 ng/mL. Chest X-rays showed no abnormalities, while chest CT scans revealed an irregular nodule measuring 15\u00d714 mm in the S1 segment of the right upper lobe. No hilar lymphadenopathy was detected. Pulmonary function and electrocardiogram tests showed no abnormalities.", + "transition_event": { + "trigger_type": "lab_change", + "trigger_entities": [ + "C0196343" + ], + "change_type": "progression", + "target_domain": "lab" + } + }, + "custom_id": "graph_012_N5_N6" + }, + { + "from": "N6", + "to": "N7", + "data": { + "edge_id": "F_to_G", + "branch_flag": true, + "content": "A surgical plan was made to perform intraoperative rapid diagnosis, followed by right upper" + }, + "custom_id": "graph_012_N6_N7" + } + ] +} \ No newline at end of file diff --git a/webapp/static/graphs/testset/graph_013.json b/webapp/static/graphs/testset/graph_013.json new file mode 100644 index 0000000..ce856ea --- /dev/null +++ b/webapp/static/graphs/testset/graph_013.json @@ -0,0 +1,492 @@ +{ + "nodes": [ + { + "id": "N1", + "label": "Step 1", + "customData": { + "node_id": "A", + "node_step_index": 0, + "content": "Patient diagnosed with stage III NSCLC and upper esophageal stricture around the same time.", + "clinical_data": { + "diagnoses": [ + { + "code": "C0678222", + "label": "Non-Small Cell Lung Carcinoma, Stage III", + "status": "active" + }, + { + "code": "C0015008", + "label": "Esophageal Stricture", + "status": "active" + } + ] + } + }, + "custom_id": "graph_013_N0" + }, + { + "id": "N2", + "label": "Step 2", + "customData": { + "node_id": "B", + "node_step_index": 1, + "content": "Initial MRI performed two months after NSCLC diagnosis was unremarkable.", + "clinical_data": { + "imaging": [ + { + "type": "MRI", + "body_part": "unspecified", + "modality": "MRI", + "finding": "unremarkable", + "date": null + } + ], + "diagnoses": [ + { + "code": "SNOMED:254291000", + "label": "Non-small cell lung carcinoma", + "status": "active", + "onset_date": null + } + ] + } + }, + "custom_id": "graph_013_N1" + }, + { + "id": "N3", + "label": "Step 3", + "customData": { + "node_id": "C", + "node_step_index": 2, + "content": "Follow-up CT one year later revealed metastatic spread throughout the brain after presentation to the ED with neurological weakness.", + "clinical_data": { + "imaging": [ + { + "type": "Computed tomography", + "body_part": "Brain", + "modality": "CT", + "finding": "metastatic spread", + "date": null + } + ], + "diagnoses": [ + { + "code": "C0205342", + "label": "Metastasis", + "status": "active", + "onset_date": null + } + ], + "HPI": [ + { + "summary": "neurological weakness", + "onset": null, + "progression": "unknown", + "associated_symptoms": [ + "Neurological deficit" + ], + "alleviating_factors": [], + "exacerbating_factors": [] + } + ] + } + }, + "custom_id": "graph_013_N2" + }, + { + "id": "N4", + "label": "Step 4", + "customData": { + "node_id": "D", + "node_step_index": 3, + "content": "CT head shows multifocal intracranial lesions with vasogenic edema indicative of metastases. Patient admitted to hospital and started on dexamethasone 4 mg twice daily, along with continued treatment for hypokalemia. Patient put on neutropenic precautions with orders to start infectious protocol and broad-spectrum antibiotics if temperature exceeds 100.4\u00b0F. Pantoprazole and enoxaparin sodium initiated for gastrointestinal and deep vein thrombosis prophylaxis.", + "clinical_data": { + "imaging": [ + { + "type": "Lesion (morphologic abnormality) (T019)", + "body_part": "Head (T008)", + "modality": "CT", + "finding": "multifocal intracranial lesions with vasogenic edema indicative of metastases", + "impression": "metastases", + "date": null + } + ], + "medications": [ + { + "drug": "Dexamethasone (C0011575)", + "dosage": "4 mg", + "frequency": "twice daily", + "modality": "oral", + "start_date": null, + "end_date": null, + "indication": "Vasogenic Edema (C0014209)" + }, + { + "drug": "Pantoprazole (C0876366)", + "dosage": null, + "frequency": null, + "modality": null, + "start_date": null, + "end_date": null, + "indication": "Gastrointestinal prophylaxis" + }, + { + "drug": "Enoxaparin sodium (C0701713)", + "dosage": null, + "frequency": null, + "modality": null, + "start_date": null, + "end_date": null, + "indication": "Deep vein thrombosis prophylaxis" + } + ], + "labs": [ + { + "test": "Potassium measurement (C0020144)", + "value": null, + "unit": null, + "flag": "abnormal", + "reference_range": null, + "timestamp": null + } + ], + "procedures": [ + { + "name": "Neutropenic precautions", + "approach": null, + "date": null, + "location": null, + "performed_by": null, + "outcome": null + } + ] + } + }, + "custom_id": "graph_013_N3" + }, + { + "id": "N5", + "label": "Step 5", + "customData": { + "node_id": "E", + "node_step_index": 4, + "content": "MRI confirms multiple new brain metastases with vasogenic edema and possible hemorrhagic components. Oncologist consulted and confirms metastasis to the brain and bone. Dexamethasone increased to 6 mg every eight hours. Enoxaparin sodium discontinued due to possible hemorrhages; mechanical prophylaxis started with thromboembolic deterrent stockings and sequential compression devices. Patient discharged home and began whole brain external radiation therapy dosed at 30 Gy over 10 fractions while holding docetaxel.", + "clinical_data": { + "imaging": [ + { + "type": "Brain MRI", + "body_part": "Brain", + "modality": "MRI", + "finding": "multiple new brain metastases with vasogenic edema and possible hemorrhagic components", + "impression": "multiple new brain metastases with vasogenic edema and possible hemorrhagic components", + "date": null + } + ], + "diagnoses": [ + { + "code": "C0242964", + "label": "Metastasis to the brain", + "status": "active", + "onset_date": null + }, + { + "code": "C0005731", + "label": "bone metastasis", + "status": "active", + "onset_date": null + } + ], + "medications": [ + { + "drug": "C0011872", + "dosage": "6 mg", + "frequency": "every eight hours", + "modality": "oral", + "start_date": null, + "end_date": null, + "indication": "vasogenic edema" + }, + { + "drug": "C0701884", + "dosage": null, + "frequency": null, + "modality": "subcutaneous", + "start_date": null, + "end_date": null, + "indication": "thromboembolic deterrent" + }, + { + "drug": "C0013371", + "dosage": null, + "frequency": null, + "modality": null, + "start_date": null, + "end_date": null, + "indication": "cancer" + } + ], + "procedures": [ + { + "name": "C1523758", + "approach": null, + "date": null, + "location": "brain", + "performed_by": null, + "outcome": null + } + ] + } + }, + "custom_id": "graph_013_N4" + }, + { + "id": "N6", + "label": "Step 6", + "customData": { + "node_id": "F", + "node_step_index": 5, + "content": "Patient tolerated radiation therapy well and docetaxel was re-initiated.", + "clinical_data": { + "procedures": [ + { + "name": "Radiation therapy", + "outcome": "tolerated" + } + ], + "medications": [ + { + "drug": "Docetaxel", + "modality": "IV", + "status": "re-initiated" + } + ] + } + }, + "custom_id": "graph_013_N5" + }, + { + "id": "N7", + "label": "Step 7", + "customData": { + "node_id": "G", + "node_step_index": 6, + "content": "CT scans revealed new developments in the liver and possibly pancreas, indicating refractory disease to second-line docetaxel.", + "clinical_data": { + "imaging": [ + { + "type": "CT scan", + "body_part": "Liver", + "modality": "CT", + "finding": "new developments", + "date": null + }, + { + "type": "CT scan", + "body_part": "Pancreas", + "modality": "CT", + "finding": "possibly new developments", + "date": null + } + ], + "diagnoses": [ + { + "code": null, + "label": "refractory disease to second-line docetaxel", + "status": "active", + "onset_date": null + } + ], + "medications": [ + { + "drug": "Docetaxel", + "dosage": null, + "frequency": null, + "modality": null, + "start_date": null, + "end_date": null, + "indication": null + } + ] + } + }, + "custom_id": "graph_013_N6" + }, + { + "id": "N8", + "label": "Step 8", + "customData": { + "node_id": "H", + "node_step_index": 7, + "content": "Oncologist discussed a third-line option and recommended hospice care.", + "clinical_data": { + "procedures": [ + { + "name": "Hospice care", + "date": null + } + ] + } + }, + "custom_id": "graph_013_N7" + }, + { + "id": "N9", + "label": "Step 9", + "customData": { + "node_id": "I", + "node_step_index": 8, + "content": "Brain MRI displays numerous intracranial lesions involving bilateral cerebral hemispheres, including lesions in the anterior right frontal lobe, left frontoparietal region, and left temporal lobe, with multiple smaller lesions scattered throughout.", + "clinical_data": { + "imaging": [ + { + "type": "Brain MRI", + "body_part": "Brain", + "modality": "MRI", + "finding": "Numerous intracranial lesions involving bilateral cerebral hemispheres, including lesions in the anterior right frontal lobe, left frontoparietal region, and left temporal lobe, with multiple smaller lesions scattered throughout.", + "impression": "Numerous intracranial lesions", + "date": null + } + ] + } + }, + "custom_id": "graph_013_N8" + } + ], + "edges": [ + { + "from": "N1", + "to": "N2", + "data": { + "edge_id": "A_to_B", + "branch_flag": true, + "content": "Two months elapsed between NSCLC diagnosis and initial MRI.", + "transition_event": null + }, + "custom_id": "graph_013_N1_N2" + }, + { + "from": "N2", + "to": "N3", + "data": { + "edge_id": "B_to_C", + "branch_flag": true, + "content": "One year elapsed between initial MRI and follow-up CT scan. Patient presented to the ED with neurological weakness.", + "transition_event": { + "trigger_type": "symptom_onset", + "trigger_entities": [ + "C0270970" + ], + "change_type": "progression", + "target_domain": "symptom" + } + }, + "custom_id": "graph_013_N2_N3" + }, + { + "from": "N3", + "to": "N4", + "data": { + "edge_id": "C_to_D", + "branch_flag": true, + "content": "Following CT scan, patient was admitted to hospital and started on dexamethasone, continued treatment for hypokalemia, and placed on neutropenic precautions. Pantoprazole and enoxaparin sodium were initiated.", + "transition_event": { + "trigger_type": "interpretation", + "trigger_entities": [ + "C0205342" + ], + "change_type": "progression", + "target_domain": "imaging" + } + }, + "custom_id": "graph_013_N3_N4" + }, + { + "from": "N4", + "to": "N5", + "data": { + "edge_id": "D_to_E", + "branch_flag": true, + "content": "MRI confirms multiple new brain metastases. Dexamethasone increased, enoxaparin sodium discontinued, and mechanical prophylaxis started. Patient discharged home and began whole brain external radiation therapy while holding docetaxel.", + "transition_event": { + "trigger_type": "medication_change", + "trigger_entities": [ + "C0011575", + "C0701713" + ], + "change_type": "escalation", + "target_domain": "medication" + } + }, + "custom_id": "graph_013_N4_N5" + }, + { + "from": "N5", + "to": "N6", + "data": { + "edge_id": "E_to_F", + "branch_flag": true, + "content": "Patient tolerated radiation therapy well.", + "transition_event": { + "trigger_type": "procedure", + "trigger_entities": [ + "C1523758" + ], + "change_type": "other", + "target_domain": "procedure" + } + }, + "custom_id": "graph_013_N5_N6" + }, + { + "from": "N6", + "to": "N7", + "data": { + "edge_id": "F_to_G", + "branch_flag": true, + "content": "Docetaxel was re-initiated, but CT scans revealed new developments in the liver and possibly pancreas, indicating refractory disease.", + "transition_event": { + "trigger_type": "medication_change", + "trigger_entities": [ + "C0013371" + ], + "change_type": "addition", + "target_domain": "medication" + } + }, + "custom_id": "graph_013_N6_N7" + }, + { + "from": "N7", + "to": "N8", + "data": { + "edge_id": "G_to_H", + "branch_flag": true, + "content": "Oncologist discussed a third-line option and recommended hospice care.", + "transition_event": { + "trigger_type": "interpretation", + "trigger_entities": [], + "change_type": "other", + "target_domain": "diagnosis" + } + }, + "custom_id": "graph_013_N7_N8" + }, + { + "from": "N8", + "to": "N9", + "data": { + "edge_id": "H_to_I", + "branch_flag": true, + "content": "Brain MRI displays numerous intracranial lesions involving bilateral cerebral hemispheres.", + "transition_event": { + "trigger_type": "imaging", + "trigger_entities": [], + "change_type": "progression", + "target_domain": "imaging" + } + }, + "custom_id": "graph_013_N8_N9" + } + ] +} \ No newline at end of file diff --git a/webapp/static/graphs/testset/graph_014.json b/webapp/static/graphs/testset/graph_014.json new file mode 100644 index 0000000..3756dc2 --- /dev/null +++ b/webapp/static/graphs/testset/graph_014.json @@ -0,0 +1,135 @@ +{ + "nodes": [ + { + "id": "N1", + "label": "Step 1", + "customData": { + "node_id": "A", + "node_step_index": 0, + "content": "Vancomycin administered for anti-infection and anti-viral treatment.", + "timestamp": "2023", + "clinical_data": { + "medications": [ + { + "drug": "C0042366", + "dosage": null, + "frequency": null, + "modality": null, + "start_date": null, + "end_date": null, + "indication": "C0003364" + }, + { + "drug": "C0042366", + "dosage": null, + "frequency": null, + "modality": null, + "start_date": null, + "end_date": null, + "indication": "C0043095" + } + ] + } + }, + "custom_id": "graph_014_N0" + }, + { + "id": "N2", + "label": "Step 2", + "customData": { + "node_id": "B", + "node_step_index": 1, + "content": "Repeat enhanced chest CT on May 29, 2023, showed an irregular thin-walled cystic lesion in the right upper lobe with fine line compartments, measuring approximately 32\u00d725\u00d727 mm, with enlarged and moderately enhanced lymph nodes in the 10R, 4R, and 2R regions. Compared to the March 3, 2023 CT, the solid component of the right upper lobe mass had essentially disappeared, and the mediastinal lymph nodes were similar in size. Response assessment indicated partial remission.", + "timestamp": "2023-05-29", + "clinical_data": { + "imaging": [ + { + "type": "Cystic lesion", + "body_part": "Right upper lobe", + "modality": "CT", + "finding": "Irregular thin-walled cystic lesion with fine line compartments, measuring approximately 32\u00d725\u00d727 mm", + "date": "2023-05-29" + }, + { + "type": "Lymph node enlargement", + "body_part": "Mediastinum", + "modality": "CT", + "finding": "Enlarged and moderately enhanced lymph nodes in the 10R, 4R, and 2R regions", + "date": "2023-05-29" + }, + { + "type": "Mass", + "body_part": "Right upper lobe", + "modality": "CT", + "finding": "Solid component of the right upper lobe mass had essentially disappeared", + "date": "2023-05-29" + } + ] + } + }, + "custom_id": "graph_014_N1" + }, + { + "id": "N3", + "label": "Step 3", + "customData": { + "node_id": "C", + "node_step_index": 2, + "content": "Second cycle of immunotherapy combined with chemotherapy administered.", + "timestamp": "2023-06-27", + "clinical_data": { + "procedures": [ + { + "name": "Immunotherapy", + "date": null + }, + { + "name": "Chemotherapy", + "date": null + } + ] + } + }, + "custom_id": "graph_014_N2" + } + ], + "edges": [ + { + "from": "N1", + "to": "N2", + "data": { + "edge_id": "A_to_B", + "branch_flag": true, + "content": "Patient underwent repeat enhanced chest CT.", + "transition_event": { + "trigger_type": "imaging", + "trigger_entities": [], + "change_type": "other", + "target_domain": "imaging", + "timestamp": "2023-05-29T00:00:00Z" + } + }, + "custom_id": "graph_014_N1_N2" + }, + { + "from": "N2", + "to": "N3", + "data": { + "edge_id": "B_to_C", + "branch_flag": true, + "content": "Second cycle of immunotherapy combined with chemotherapy administered.", + "transition_event": { + "trigger_type": "procedure", + "trigger_entities": [ + "C0019221", + "C0007407" + ], + "change_type": "addition", + "target_domain": "procedure", + "timestamp": "2023-06-27T00:00:00Z" + } + }, + "custom_id": "graph_014_N2_N3" + } + ] +} \ No newline at end of file diff --git a/webapp/static/graphs/testset/graph_015.json b/webapp/static/graphs/testset/graph_015.json new file mode 100644 index 0000000..e071d9a --- /dev/null +++ b/webapp/static/graphs/testset/graph_015.json @@ -0,0 +1,45 @@ +{ + "nodes": [ + { + "id": "N1", + "label": "Step 1", + "customData": { + "node_id": "A", + "node_step_index": 0, + "content": "76-year-old male with metastatic non-small cell carcinoma of the lung and history of coronary artery disease status post coronary artery bypass grafting (CABG). Patient presented with intracardiac metastasis and a transient ischemic attack.", + "clinical_data": { + "diagnoses": [ + { + "code": "C34.9", + "label": "Malignant neoplasm of unspecified part of bronchus or lung", + "status": "active" + }, + { + "code": "I25.10", + "label": "Atherosclerotic heart disease of native coronary artery without angina pectoris", + "status": "historical" + }, + { + "code": "I25.82", + "label": "Chronic total occlusion of coronary artery", + "status": "historical" + }, + { + "code": "I63.9", + "label": "Cerebral infarction, unspecified", + "status": "active" + } + ], + "procedures": [ + { + "name": "Coronary Artery Bypass Grafting", + "date": null + } + ] + } + }, + "custom_id": "graph_015_N0" + } + ], + "edges": [] +} \ No newline at end of file diff --git a/webapp/static/graphs/testset/graph_016.json b/webapp/static/graphs/testset/graph_016.json new file mode 100644 index 0000000..eff3e6b --- /dev/null +++ b/webapp/static/graphs/testset/graph_016.json @@ -0,0 +1,333 @@ +{ + "nodes": [ + { + "id": "N1", + "label": "Step 1", + "customData": { + "node_id": "A", + "node_step_index": 0, + "content": "51-year-old female patient (born in 1970) presented in April 2013 with a subsolid pulmonary lesion incidentally detected during a routine follow-up for malignant melanoma. The lesion was followed up for 4 years and subsequently resected videothoracoscopically after preoperative labeling with a mixture of blue dye and contrast agent.", + "timestamp": "2013-04", + "clinical_data": { + "diagnoses": [ + { + "code": "C43", + "label": "Malignant melanoma", + "status": "historical", + "onset_date": null + } + ], + "imaging": [ + { + "type": "Pulmonary lesion", + "body_part": "Lung", + "modality": "CT", + "finding": "subsolid pulmonary lesion", + "impression": "incidental finding", + "date": "2013-04" + } + ], + "procedures": [ + { + "name": "Resection", + "approach": "videothoracoscopic", + "date": null, + "location": "Lung", + "performed_by": null, + "outcome": null + } + ] + } + }, + "custom_id": "graph_016_N0" + }, + { + "id": "N2", + "label": "Step 2", + "customData": { + "node_id": "B", + "node_step_index": 1, + "content": "Patient underwent resection of malignant melanoma. Suspicious lymph node (LU) in the left axilla detected on ultrasound. Biopsy confirmed a metastasis of malignant melanoma in the left axillary lymph node. PET/CT showed a solitary finding in the left axilla.", + "clinical_data": { + "diagnoses": [ + { + "code": "C43", + "label": "Malignant melanoma", + "status": "active" + }, + { + "code": "C77.3", + "label": "Secondary malignant neoplasm of axilla and upper limb", + "status": "active" + } + ], + "imaging": [ + { + "type": "Ultrasound of axilla", + "body_part": "Axilla", + "modality": "Ultrasound", + "finding": "Suspicious lymph node", + "date": null + }, + { + "type": "Positron emission tomography/computed tomography (PET/CT)", + "body_part": "Axilla", + "modality": "PET/CT", + "finding": "Solitary finding in the left axilla", + "date": null + } + ], + "procedures": [ + { + "name": "Resection", + "approach": "open", + "date": null, + "location": "Malignant melanoma", + "performed_by": null, + "outcome": null + }, + { + "name": "Biopsy", + "approach": "percutaneous", + "date": null, + "location": "Left axillary lymph node", + "performed_by": null, + "outcome": "Metastasis of malignant melanoma" + } + ] + } + }, + "custom_id": "graph_016_N1" + }, + { + "id": "N3", + "label": "Step 3", + "customData": { + "node_id": "C", + "node_step_index": 2, + "content": "Left axillary dissection performed in late April 2013, revealing 1 of 19 lymph nodes with metastasis. Molecular genetic testing revealed a BRAF mutation at codon 600. Targeted therapy with BRAF inhibitors initiated. Follow-up at another institution assessed as stable disease.", + "timestamp": "2013-04", + "clinical_data": { + "procedures": [ + { + "name": "Axillary dissection", + "date": "2013-04", + "location": "left axilla", + "outcome": "metastasis in 1 of 19 lymph nodes" + } + ], + "diagnoses": [ + { + "code": "C0497156", + "label": "Metastasis", + "status": "active", + "onset_date": "2013-04" + }, + { + "code": "C0597447", + "label": "BRAF mutation", + "status": "active" + } + ], + "medications": [ + { + "drug": "BRAF inhibitors", + "modality": "oral", + "start_date": "2013-04", + "end_date": null + } + ] + } + }, + "custom_id": "graph_016_N2" + }, + { + "id": "N4", + "label": "Step 4", + "customData": { + "node_id": "D", + "node_step_index": 3, + "content": "November 2017: Routine CT scan of the lungs detected a new asymptomatic 7 mm lesion in segment S10 of the right lower lobe, with a density consistent with a pure ground glass nodule.", + "timestamp": "2017-11", + "clinical_data": { + "imaging": [ + { + "type": "Lung CT", + "body_part": "Lung", + "modality": "CT", + "finding": "7 mm lesion in segment S10 of the right lower lobe, with a density consistent with a pure ground glass nodule", + "impression": "New asymptomatic lesion", + "date": "2017-11" + } + ] + } + }, + "custom_id": "graph_016_N3" + }, + { + "id": "N5", + "label": "Step 5", + "customData": { + "node_id": "E", + "node_step_index": 4, + "content": "June 2020: Follow-up CT scan showed the lesion changed character to a subsolid lesion with the presence of a solid component. July 2020: PET/CT scan confirmed the persistence of the lesion without increased metabolic activity.", + "timestamp": "2020-06", + "clinical_data": { + "imaging": [ + { + "type": "Lesion", + "body_part": "Lung", + "modality": "CT", + "finding": "Subsolid lesion with solid component", + "date": "2020-06" + }, + { + "type": "Lesion", + "body_part": "Lung", + "modality": "PET/CT", + "finding": "Persistence of lesion without increased metabolic activity", + "date": "2020-07" + } + ] + } + }, + "custom_id": "graph_016_N4" + }, + { + "id": "N6", + "label": "Step 6", + "customData": { + "node_id": "F", + "node_step_index": 5, + "content": "April 2021: Follow-up confirmed persistence and slight size progression of the solid component of the lesion. Lesion size 12 mm with a solid component of 7 mm. May 2021: Patient was indicated by the multidisciplinary pulmonary committee for surgical resection.", + "timestamp": "2021-04", + "clinical_data": { + "imaging": [ + { + "type": "Lung lesion", + "body_part": "Lung", + "modality": "CT", + "finding": "Solid component of lesion with slight size progression", + "impression": "Persistence and slight size progression of the solid component of the lesion. Lesion size 12 mm with a solid component of 7 mm.", + "date": "2021-04" + } + ], + "procedures": [ + { + "name": "Surgical resection", + "date": "2021-05", + "indication": "Multidisciplinary pulmonary committee recommendation" + } + ] + } + }, + "custom_id": "graph_016_N5" + }, + { + "id": "N7", + "label": "Step 7", + "customData": { + "node_id": "G", + "clinical_data": {} + }, + "custom_id": "graph_016_N6" + } + ], + "edges": [ + { + "from": "N1", + "to": "N2", + "data": { + "edge_id": "A_to_B", + "branch_flag": true, + "content": "Progression of malignant melanoma and detection of metastasis in the left axillary lymph node." + }, + "custom_id": "graph_016_N1_N2" + }, + { + "from": "N2", + "to": "N3", + "data": { + "edge_id": "B_to_C", + "branch_flag": true, + "content": "Left axillary dissection and initiation of targeted therapy with BRAF inhibitors following detection of BRAF mutation.", + "transition_event": { + "trigger_type": "procedure", + "trigger_entities": [ + "C0004730" + ], + "change_type": "addition", + "target_domain": "procedure" + } + }, + "custom_id": "graph_016_N2_N3" + }, + { + "from": "N3", + "to": "N4", + "data": { + "edge_id": "C_to_D", + "branch_flag": true, + "content": "Detection of a new asymptomatic 7 mm lesion in the right lower lobe during routine CT scan of the lungs.", + "transition_event": { + "trigger_type": "imaging", + "trigger_entities": [ + "C0023418" + ], + "change_type": "addition", + "target_domain": "imaging", + "timestamp": "2017-11" + } + }, + "custom_id": "graph_016_N3_N4" + }, + { + "from": "N4", + "to": "N5", + "data": { + "edge_id": "D_to_E", + "branch_flag": true, + "content": "Change in lesion character to a subsolid lesion with the presence of a solid component.", + "transition_event": { + "trigger_type": "imaging", + "trigger_entities": [ + "C0023418" + ], + "change_type": "progression", + "target_domain": "imaging", + "timestamp": "2020-06" + } + }, + "custom_id": "graph_016_N4_N5" + }, + { + "from": "N5", + "to": "N6", + "data": { + "edge_id": "E_to_F", + "branch_flag": true, + "content": "Persistence and slight size progression of the solid component of the lesion, leading to indication for surgical resection.", + "transition_event": { + "trigger_type": "imaging", + "trigger_entities": [ + "C0023418" + ], + "change_type": "progression", + "target_domain": "imaging", + "timestamp": "2021-04" + } + }, + "custom_id": "graph_016_N5_N6" + }, + { + "from": "N6", + "to": "N7", + "data": { + "edge_id": "F_to_G", + "branch_flag": true, + "content": "Surgical resection of lung lesion." + }, + "custom_id": "graph_016_N6_N7" + } + ] +} \ No newline at end of file diff --git a/webapp/static/graphs/testset/graph_018.json b/webapp/static/graphs/testset/graph_018.json new file mode 100644 index 0000000..9e5e84a --- /dev/null +++ b/webapp/static/graphs/testset/graph_018.json @@ -0,0 +1,351 @@ +{ + "nodes": [ + { + "id": "N1", + "label": "Step 1", + "customData": { + "node_id": "A", + "node_step_index": 0, + "content": "52-year-old male diagnosed with primary lung adenocarcinoma in 2023.", + "clinical_data": { + "diagnoses": [ + { + "code": "C34", + "label": "Primary lung adenocarcinoma", + "status": "active", + "onset_date": "2023" + } + ] + } + }, + "custom_id": "graph_018_N0" + }, + { + "id": "N2", + "label": "Step 2", + "customData": { + "node_id": "B", + "node_step_index": 1, + "content": "Patient presented with severe, debilitating shoulder pain (VAS 9) in the low dorsal area.", + "clinical_data": { + "HPI": [ + { + "summary": "severe, debilitating shoulder pain in the low dorsal area", + "associated_symptoms": [ + "C0036153" + ] + } + ], + "vitals": [ + { + "type": "Visual Analog Scale", + "value": "9", + "unit": null + } + ] + } + }, + "custom_id": "graph_018_N1" + }, + { + "id": "N3", + "label": "Step 3", + "customData": { + "node_id": "C", + "node_step_index": 2, + "content": "CT scan revealed a compression fracture of the T8 vertebral body with multiple fracture lines and a mixed lytic-sclerotic tumor component, with the lytic aspect being more prominent in the anterior portion of the vertebral body.", + "clinical_data": { + "imaging": [ + { + "type": "Computed tomography", + "body_part": "T8 vertebral body", + "modality": "CT", + "finding": "Compression fracture with multiple fracture lines and a mixed lytic-sclerotic tumor component, with the lytic aspect being more prominent in the anterior portion of the vertebral body.", + "impression": "Compression fracture of the T8 vertebral body with mixed lytic-sclerotic tumor component" + } + ] + } + }, + "custom_id": "graph_018_N2" + }, + { + "id": "N4", + "label": "Step 4", + "customData": { + "node_id": "D", + "node_step_index": 3, + "content": "Mild posterior wall prominence without significant stenosis of the vertebral canal.", + "clinical_data": { + "imaging": [ + { + "type": "Posterior wall prominence", + "body_part": "Vertebral canal", + "modality": "X-ray", + "finding": "Mild posterior wall prominence without significant stenosis", + "impression": "Mild posterior wall prominence without significant stenosis" + } + ] + } + }, + "custom_id": "graph_018_N3" + }, + { + "id": "N5", + "label": "Step 5", + "customData": { + "node_id": "T", + "node_step_index": 19, + "content": "Patient has a pathological fracture of the T8 vertebra due to metastasis.", + "clinical_data": { + "diagnoses": [ + { + "code": "C79.5", + "label": "Secondary malignant neoplasm of bone and bone marrow", + "status": "active", + "onset_date": null + }, + { + "code": "M84.48", + "label": "Pathological fracture, other site", + "status": "active", + "onset_date": null + } + ] + } + }, + "custom_id": "graph_018_N4" + }, + { + "id": "N6", + "label": "Step 6", + "customData": { + "node_id": "U", + "node_step_index": 20, + "content": "Treated with microwave ablation and the SpineJack system due to an isolated, irregular compression fracture.", + "clinical_data": { + "procedures": [ + { + "name": "Microwave Ablation", + "approach": "other", + "location": "spine", + "outcome": "treated" + }, + { + "name": "SpineJack system", + "approach": "other", + "location": "spine", + "outcome": "treated" + } + ], + "diagnoses": [ + { + "code": "compression fracture", + "label": "compression fracture", + "status": "active" + } + ] + } + }, + "custom_id": "graph_018_N5" + }, + { + "id": "N7", + "label": "Step 7", + "customData": { + "node_id": "P", + "node_step_index": 15, + "content": "Initial CT scan to assess the lesion\u2019s size, location, and radiological characteristics.", + "clinical_data": { + "imaging": [ + { + "type": "Computed tomography", + "body_part": "lesion", + "modality": "CT", + "finding": "size, location, and radiological characteristics" + } + ] + } + }, + "custom_id": "graph_018_N6" + }, + { + "id": "N8", + "label": "Step 8", + "customData": { + "node_id": "S", + "node_step_index": 18, + "content": "Patient positioned prone, and conscious sedation is administered using continuous intravenous infusion of fentanyl citrate (0.1 mg/2 mL diluted 1:10 with saline).", + "clinical_data": { + "medications": [ + { + "drug": "C0016007", + "dosage": "0.1 mg", + "modality": "IV", + "indication": "conscious sedation" + } + ], + "procedures": [ + { + "name": "conscious sedation", + "approach": "IV", + "performed_by": "unknown" + } + ] + } + }, + "custom_id": "graph_018_N7" + }, + { + "id": "N9", + "label": "Step 9", + "customData": { + "node_id": "V", + "node_step_index": 21, + "content": "Lidocaine (1\u20132%) is administered subcutaneously at the incision site using a 22-gauge intramuscular needle.", + "clinical_data": { + "medications": [ + { + "drug": "C0023642", + "dosage": "1-2%", + "modality": "subcutaneous" + } + ] + } + }, + "custom_id": "graph_018_N8" + }, + { + "id": "N10", + "label": "Step 10", + "customData": { + "node_id": "W", + "node_step_index": 22, + "content": "Bupivacaine (0.25%\u20130.5%) is infiltrated around the periosteum using an 18-gauge spinal needle (88 mm). Needle placement is verified with fluoroscopic and", + "clinical_data": { + "medications": [ + { + "drug": "C0006401", + "dosage": "0.25%-0.5%", + "modality": "other", + "indication": "C0003123" + } + ], + "procedures": [ + { + "name": "C0016581", + "approach": "percutaneous", + "location": "periosteum" + } + ], + "imaging": [ + { + "modality": "X-ray" + } + ] + } + }, + "custom_id": "graph_018_N9" + } + ], + "edges": [ + { + "from": "N1", + "to": "N2", + "data": { + "edge_id": "A_to_B", + "branch_flag": true, + "content": "Progression from lung adenocarcinoma diagnosis to presentation with severe shoulder pain." + }, + "custom_id": "graph_018_N1_N2" + }, + { + "from": "N2", + "to": "N3", + "data": { + "edge_id": "B_to_C", + "branch_flag": true, + "content": "Shoulder pain prompts CT scan." + }, + "custom_id": "graph_018_N2_N3" + }, + { + "from": "N3", + "to": "N4", + "data": { + "edge_id": "C_to_D", + "branch_flag": true, + "content": "Further characterization of vertebral canal." + }, + "custom_id": "graph_018_N3_N4" + }, + { + "from": "N4", + "to": "N5", + "data": { + "edge_id": "D_to_T", + "branch_flag": true, + "content": "Diagnosis of pathological fracture due to metastasis." + }, + "custom_id": "graph_018_N4_N5" + }, + { + "from": "N5", + "to": "N6", + "data": { + "edge_id": "T_to_U", + "branch_flag": true, + "content": "Treatment of pathological fracture with microwave ablation and SpineJack system.", + "transition_event": { + "trigger_type": "procedure", + "trigger_entities": [ + "microwave ablation", + "SpineJack system" + ], + "change_type": "addition", + "target_domain": "procedure" + } + }, + "custom_id": "graph_018_N5_N6" + }, + { + "from": "N6", + "to": "N7", + "data": { + "edge_id": "U_to_P", + "branch_flag": true, + "content": "Initial CT scan to assess the lesion\u2019s size, location, and radiological characteristics." + }, + "custom_id": "graph_018_N6_N7" + }, + { + "from": "N7", + "to": "N8", + "data": { + "edge_id": "P_to_S", + "branch_flag": true, + "content": "Patient positioned prone, and conscious sedation is administered using continuous intravenous infusion of fentanyl citrate." + }, + "custom_id": "graph_018_N7_N8" + }, + { + "from": "N8", + "to": "N9", + "data": { + "edge_id": "S_to_V", + "branch_flag": true, + "content": "Lidocaine is administered subcutaneously at the incision site." + }, + "custom_id": "graph_018_N8_N9" + }, + { + "from": "N9", + "to": "N10", + "data": { + "edge_id": "V_to_W", + "branch_flag": true, + "content": "Bupivacaine is infiltrated around the periosteum, verified with fluoroscopic guidance." + }, + "custom_id": "graph_018_N9_N10" + } + ] +} \ No newline at end of file diff --git a/webapp/static/graphs/testset/graph_019.json b/webapp/static/graphs/testset/graph_019.json new file mode 100644 index 0000000..16bd66f --- /dev/null +++ b/webapp/static/graphs/testset/graph_019.json @@ -0,0 +1,396 @@ +{ + "nodes": [ + { + "id": "N1", + "label": "Step 1", + "customData": { + "node_id": "A", + "node_step_index": 0, + "content": "July 2023: 54-year-old male presented with facial and dorsal hand edema and was diagnosed with small-cell lung cancer (SCLC) with hilar, mediastinal lymph node, and pleural metastases (cT1N3M1a, extensive stage) and a PS score of 1.", + "clinical_data": { + "diagnoses": [ + { + "code": "C34.9", + "label": "Small cell lung cancer", + "status": "active", + "onset_date": "2023-07" + } + ], + "HPI": [ + { + "summary": "Facial and dorsal hand edema", + "onset": "2023-07" + } + ] + } + }, + "custom_id": "graph_019_N0" + }, + { + "id": "N2", + "label": "Step 2", + "customData": { + "node_id": "B", + "node_step_index": 1, + "content": "Patient started chemotherapy with four cycles of intravenous etoposide 160 mg (days 1\u20133), carboplatin (400 mg) on day 1, and serplulimab 300 mg on day 1 (Q3W). Received serplulimab maintenance therapy (Q3W).", + "clinical_data": { + "medications": [ + { + "drug": "etoposide", + "dosage": "160 mg", + "frequency": "days 1-3", + "modality": "IV", + "start_date": null, + "end_date": null + }, + { + "drug": "carboplatin", + "dosage": "400 mg", + "frequency": "day 1", + "modality": "IV", + "start_date": null, + "end_date": null + }, + { + "drug": "serplulimab", + "dosage": "300 mg", + "frequency": "Q3W", + "modality": "IV", + "start_date": null, + "end_date": null + }, + { + "drug": "serplulimab", + "dosage": "300 mg", + "frequency": "Q3W", + "modality": "IV", + "start_date": null, + "end_date": null + } + ], + "procedures": [ + { + "name": "chemotherapy", + "date": null + } + ] + } + }, + "custom_id": "graph_019_N1" + }, + { + "id": "N3", + "label": "Step 3", + "customData": { + "node_id": "C", + "node_step_index": 2, + "content": "After 18 cycles of chemotherapy and serplulimab maintenance, follow-up evaluations showed partial response (PR).", + "clinical_data": { + "medications": [ + { + "drug": "serplulimab", + "modality": "maintenance", + "indication": "partial response" + } + ], + "procedures": [ + { + "name": "chemotherapy", + "outcome": "partial response" + } + ] + } + }, + "custom_id": "graph_019_N2" + }, + { + "id": "N4", + "label": "Step 4", + "customData": { + "node_id": "D", + "node_step_index": 3, + "content": "After two cycles of serplulimab treatment, the patient intermittently (every 2\u20133 months) experienced hard stools and occasional constipation, relieved with glycerin suppositories.", + "clinical_data": { + "HPI": [ + { + "summary": "Patient experienced hard stools and occasional constipation intermittently (every 2-3 months)", + "duration": "2-3 months", + "alleviating_factors": [ + "glycerin suppositories" + ] + } + ] + } + }, + "custom_id": "graph_019_N3" + }, + { + "id": "N5", + "label": "Step 5", + "customData": { + "node_id": "E", + "node_step_index": 4, + "content": "September 9, 2024: Admitted to gastroenterology department due to 5 days of no bowel movement.", + "clinical_data": { + "HPI": [ + { + "summary": "Admitted to gastroenterology department due to 5 days of no bowel movement.", + "duration": "5 days", + "onset": "5 days prior to admission", + "progression": "unknown", + "associated_symptoms": [], + "alleviating_factors": [], + "exacerbating_factors": [] + } + ], + "diagnoses": [ + { + "code": "53741008", + "label": "Constipation", + "status": "active", + "onset_date": null + } + ] + } + }, + "custom_id": "graph_019_N4" + }, + { + "id": "N6", + "label": "Step 6", + "customData": { + "node_id": "F", + "node_step_index": 5, + "content": "Abdominal CT revealed diffuse dilatation and gas accumulation in the bowel, particularly the colon, suggesting incomplete intestinal obstruction.", + "clinical_data": { + "imaging": [ + { + "type": "Computed tomography of abdomen", + "body_part": "Abdomen", + "modality": "CT", + "finding": "diffuse dilatation and gas accumulation in the bowel, particularly the colon", + "impression": "incomplete intestinal obstruction" + } + ] + } + }, + "custom_id": "graph_019_N5" + }, + { + "id": "N7", + "label": "Step 7", + "customData": { + "node_id": "G", + "node_step_index": 6, + "content": "Gastroscopy showed chronic atrophic gastritis (C2) with bile reflux.", + "clinical_data": { + "diagnoses": [ + { + "code": "C0346239", + "label": "Chronic atrophic gastritis", + "status": "active" + } + ], + "procedures": [ + { + "name": "Gastroscopy", + "date": null + } + ] + } + }, + "custom_id": "graph_019_N6" + }, + { + "id": "N8", + "label": "Step 8", + "customData": { + "node_id": "H", + "node_step_index": 7, + "content": "Colonoscopy revealed a subpedunculated polyp approximately 1.5 cm in size, 20 cm from the anus, with smooth mucosa in the sigmoid colon. Colonoscopy reached the descending colon at 40 cm, where the mucosa and colonic haustra were smooth; however, due to severe pain and copious dry feces, the procedure was terminated.", + "clinical_data": { + "procedures": [ + { + "name": "Colonoscopy", + "date": null, + "location": "sigmoid colon", + "outcome": "terminated due to severe pain and copious dry feces" + } + ], + "imaging": [ + { + "type": "Polyp", + "body_part": "sigmoid colon", + "modality": "Colonoscopy", + "finding": "subpedunculated polyp approximately 1.5 cm in size, 20 cm from the anus, with smooth mucosa", + "date": null + } + ] + } + }, + "custom_id": "graph_019_N7" + }, + { + "id": "N9", + "label": "Step 9", + "customData": { + "node_id": "I", + "node_step_index": 8, + "content": "Patient experienced an inability to defecate and lost 20 kg in weight over 2 months.", + "clinical_data": { + "HPI": [ + { + "summary": "Patient experienced an inability to defecate and lost 20 kg in weight over 2 months.", + "duration": "2 months", + "progression": "gradual", + "associated_symptoms": [ + "C0013067", + "C0043127" + ] + } + ] + } + }, + "custom_id": "graph_019_N8" + } + ], + "edges": [ + { + "from": "N1", + "to": "N2", + "data": { + "edge_id": "A_to_B", + "branch_flag": true, + "content": "Initiation of chemotherapy regimen for small-cell lung cancer." + }, + "custom_id": "graph_019_N1_N2" + }, + { + "from": "N2", + "to": "N3", + "data": { + "edge_id": "B_to_C", + "branch_flag": true, + "content": "Patient continued chemotherapy and serplulimab maintenance.", + "transition_event": { + "trigger_type": "procedure", + "trigger_entities": [ + "C0009331" + ], + "change_type": "other", + "target_domain": "diagnosis" + } + }, + "custom_id": "graph_019_N2_N3" + }, + { + "from": "N3", + "to": "N4", + "data": { + "edge_id": "C_to_D", + "branch_flag": true, + "content": "Patient continued serplulimab treatment.", + "transition_event": { + "trigger_type": "medication_change", + "trigger_entities": [ + "C4721448" + ], + "change_type": "other", + "target_domain": "symptom" + } + }, + "custom_id": "graph_019_N3_N4" + }, + { + "from": "N4", + "to": "N5", + "data": { + "edge_id": "D_to_E", + "branch_flag": true, + "content": "Worsening constipation despite use of glycerin suppositories.", + "transition_event": { + "trigger_type": "symptom_onset", + "trigger_entities": [ + "C0009806" + ], + "change_type": "progression", + "target_domain": "symptom" + } + }, + "custom_id": "graph_019_N4_N5" + }, + { + "from": "N5", + "to": "N6", + "data": { + "edge_id": "E_to_F", + "branch_flag": true, + "content": "Evaluation for constipation.", + "transition_event": { + "trigger_type": "procedure", + "trigger_entities": [ + "C0009425" + ], + "change_type": "addition", + "target_domain": "imaging" + } + }, + "custom_id": "graph_019_N5_N6" + }, + { + "from": "N6", + "to": "N7", + "data": { + "edge_id": "F_to_G", + "branch_flag": true, + "content": "Further evaluation for gastrointestinal symptoms.", + "transition_event": { + "trigger_type": "procedure", + "trigger_entities": [ + "C0017158" + ], + "change_type": "addition", + "target_domain": "diagnosis" + } + }, + "custom_id": "graph_019_N6_N7" + }, + { + "from": "N7", + "to": "N8", + "data": { + "edge_id": "G_to_H", + "branch_flag": true, + "content": "Further evaluation for gastrointestinal symptoms.", + "transition_event": { + "trigger_type": "procedure", + "trigger_entities": [ + "C0009824" + ], + "change_type": "addition", + "target_domain": "imaging" + } + }, + "custom_id": "graph_019_N7_N8" + }, + { + "from": "N8", + "to": "N9", + "data": { + "edge_id": "H_to_I", + "branch_flag": true, + "content": "Continued gastrointestinal distress.", + "transition_event": { + "trigger_type": "symptom_onset", + "trigger_entities": [ + "C0013067", + "C0043127" + ], + "change_type": "progression", + "target_domain": "symptom" + } + }, + "custom_id": "graph_019_N8_N9" + } + ] +} \ No newline at end of file diff --git a/webapp/static/graphs/testset/graph_020.json b/webapp/static/graphs/testset/graph_020.json new file mode 100644 index 0000000..faa6993 --- /dev/null +++ b/webapp/static/graphs/testset/graph_020.json @@ -0,0 +1,554 @@ +{ + "nodes": [ + { + "id": "N1", + "label": "Step 1", + "customData": { + "node_id": "A", + "node_step_index": 0, + "content": "59-year-old male farmer with a history of hypertension and long-term smoking presented with redness and pain in the second toe of his right foot following a field injury, persisting for two weeks.", + "clinical_data": { + "HPI": [ + { + "summary": "59-year-old male farmer presented with redness and pain in the second toe of his right foot following a field injury, persisting for two weeks.", + "duration": "2 weeks", + "onset": "following a field injury", + "progression": "unknown", + "associated_symptoms": [ + "redness", + "pain" + ] + } + ], + "social_history": [ + { + "category": "smoking", + "status": "current", + "description": "long-term smoking" + } + ], + "diagnoses": [ + { + "code": "http://purl.bioontology.org/ontology/SNOMEDCT/59621000", + "label": "Hypertension", + "status": "historical" + } + ] + } + }, + "custom_id": "graph_020_N0" + }, + { + "id": "N2", + "label": "Step 2", + "customData": { + "node_id": "B", + "node_step_index": 1, + "content": "One week later, the patient developed redness and persistent pain in the left lumbar and groin areas, which was accompanied by coughing, expectoration, and a fever peaking at 38 \u00b0C.", + "clinical_data": { + "HPI": [ + { + "summary": "Patient developed redness and persistent pain in the left lumbar and groin areas one week later.", + "onset": "One week later", + "progression": "sudden", + "associated_symptoms": [ + "Redness", + "Pain" + ] + }, + { + "summary": "Patient experienced coughing, expectoration, and a fever peaking at 38 \u00b0C.", + "associated_symptoms": [ + "Coughing", + "Expectoration", + "Fever" + ] + } + ], + "vitals": [ + { + "type": "Fever", + "value": "38", + "unit": "\u00b0C" + } + ] + } + }, + "custom_id": "graph_020_N1" + }, + { + "id": "N3", + "label": "Step 3", + "customData": { + "node_id": "C", + "node_step_index": 2, + "content": "Admitted to a local hospital. Initial blood tests and a chest CT scan suggested the possibility of a bacterial infection (Table1).", + "clinical_data": { + "labs": [ + { + "test": "Blood test", + "timestamp": null + } + ], + "imaging": [ + { + "type": "CT of chest", + "body_part": "Chest", + "modality": "CT", + "date": null + } + ], + "diagnoses": [ + { + "code": "B0004944", + "label": "Bacterial Infections", + "status": "suspected", + "onset_date": null + } + ] + } + }, + "custom_id": "graph_020_N2" + }, + { + "id": "N4", + "label": "Step 4", + "customData": { + "node_id": "D", + "node_step_index": 3, + "content": "Patient was treated with piperacillin-tazobactam (4.5 g q8 h) for a week with no improvement.", + "clinical_data": { + "medications": [ + { + "drug": "C0724449", + "dosage": "4.5 g", + "frequency": "q8 h", + "modality": "IV", + "start_date": null, + "end_date": null, + "indication": null + } + ] + } + }, + "custom_id": "graph_020_N3" + }, + { + "id": "N5", + "label": "Step 5", + "customData": { + "node_id": "E", + "node_step_index": 4, + "content": "Patient transferred to the hospital with the following vital signs: body temperature 39.1 \u00b0C, heart rate 136 bpm, respiratory rate 36 breaths/minute, blood pressure 140/75 mmHg, and oxygen saturation 85%. Patient was stuporous, responsive to vocal stimuli yet unable to answer questions, with bilateral pupils which were equal, round, and reactive to light.", + "clinical_data": { + "vitals": [ + { + "type": "Body Temperature", + "value": "39.1", + "unit": "\u00b0C" + }, + { + "type": "Heart Rate", + "value": "136", + "unit": "bpm" + }, + { + "type": "Respiratory Rate", + "value": "36", + "unit": "breaths/minute" + }, + { + "type": "Blood Pressure", + "value": "140/75", + "unit": "mmHg" + }, + { + "type": "Oxygen Saturation", + "value": "85", + "unit": "%" + } + ], + "mental_status": [ + { + "domain": "consciousness", + "finding": "stuporous" + }, + { + "domain": "responsiveness", + "finding": "responsive to vocal stimuli" + }, + { + "domain": "speech", + "finding": "unable to answer questions" + }, + { + "domain": "pupils", + "finding": "equal, round, and reactive to light" + } + ] + } + }, + "custom_id": "graph_020_N4" + }, + { + "id": "N6", + "label": "Step 6", + "customData": { + "node_id": "F", + "node_step_index": 5, + "content": "Irregular heartbeat and coarse breath sounds in both lungs (no rales). HIV, AIGA, blood G test, GM test, and blood cultures were negative. Chest/brain CT scans were performed (Table1 and Fig.2(a, d)). Serial sputum cultures were conducted over three consecutive days; the initial specimen was inadequate (WBC < 10/LPF, epithelial cells 201/LPF).", + "clinical_data": { + "vitals": [ + { + "type": "Heart rate (finding)", + "value": "irregular", + "unit": null, + "timestamp": null + } + ], + "diagnoses": [ + { + "code": "B20", + "label": "HIV", + "status": "historical", + "onset_date": null + } + ], + "labs": [ + { + "test": "Blood culture", + "value": "negative", + "unit": null, + "flag": "normal", + "reference_range": null, + "timestamp": null + }, + { + "test": "Sputum culture", + "value": "inadequate", + "unit": null, + "flag": "abnormal", + "reference_range": null, + "timestamp": null + } + ], + "imaging": [ + { + "type": "CT scan", + "body_part": "Chest", + "modality": "CT", + "finding": null, + "impression": null, + "date": null + }, + { + "type": "CT scan", + "body_part": "Brain", + "modality": "CT", + "finding": null, + "impression": null, + "date": null + } + ] + } + }, + "custom_id": "graph_020_N5" + }, + { + "id": "N7", + "label": "Step 7", + "customData": { + "node_id": "G", + "node_step_index": 6, + "content": "Subsequent sputum specimens exhibited cellular profiles consistent with lower respiratory origin (WBC 35\u201350/LPF, epithelial cells 5\u20138/LPF), with persistent isolation of Burkholderia cepacia (2/2 cultures).", + "clinical_data": { + "labs": [ + { + "test": "White blood cell count", + "value": "35-50", + "unit": "/LPF", + "flag": "abnormal" + }, + { + "test": "Epithelial cells", + "value": "5-8", + "unit": "/LPF", + "flag": "abnormal" + }, + { + "test": "Burkholderia cepacia culture", + "value": "positive", + "unit": "2/2 cultures" + } + ] + } + }, + "custom_id": "graph_020_N6" + }, + { + "id": "N8", + "label": "Step 8", + "customData": { + "node_id": "H", + "node_step_index": 7, + "content": "Week 3: Patient experienced cough, expectoration, fever, left lumbar/groin erythema/pain. White blood cell count (\u00d710\u2079/L): 15.41, Neutrophil count (\u00d710\u2079/L): 6.3, Neutrophil percentage: 92.6, Albumin(g/L): 29, C-reactive protein(\u03bcmol/L): 90.8, Procalcitonin(ng/mL): 3.05, N-terminal pro b-type natriuretic peptide(pg/mL): 10675, Alanine aminotransferase(U/L): 11, Aspartate aminotransferase(U/L): 16, Creatinine(\u03bcmol/L): 295.5.", + "clinical_data": { + "HPI": [ + { + "summary": "Patient experienced cough, expectoration, fever, left lumbar/groin erythema/pain.", + "duration": "1 week", + "onset": "3 weeks prior to current encounter", + "progression": "unknown", + "associated_symptoms": [ + "cough", + "expectoration", + "fever", + "erythema", + "pain" + ], + "alleviating_factors": [], + "exacerbating_factors": [] + } + ], + "labs": [ + { + "test": "White blood cell count", + "value": "15.41", + "unit": "\u00d710\u2079/L", + "flag": "abnormal", + "reference_range": null, + "timestamp": null + }, + { + "test": "Neutrophil count", + "value": "6.3", + "unit": "\u00d710\u2079/L", + "flag": "abnormal", + "reference_range": null, + "timestamp": null + }, + { + "test": "Neutrophil percentage", + "value": "92.6", + "unit": "%", + "flag": "abnormal", + "reference_range": null, + "timestamp": null + }, + { + "test": "Albumin", + "value": "29", + "unit": "g/L", + "flag": "abnormal", + "reference_range": null, + "timestamp": null + }, + { + "test": "C-reactive protein", + "value": "90.8", + "unit": "\u03bcmol/L", + "flag": "abnormal", + "reference_range": null, + "timestamp": null + }, + { + "test": "Procalcitonin", + "value": "3.05", + "unit": "ng/mL", + "flag": "abnormal", + "reference_range": null, + "timestamp": null + }, + { + "test": "N-terminal pro b-type natriuretic peptide", + "value": "10675", + "unit": "pg/mL", + "flag": "abnormal", + "reference_range": null, + "timestamp": null + }, + { + "test": "Alanine aminotransferase", + "value": "11", + "unit": "U/L", + "flag": "normal", + "reference_range": null, + "timestamp": null + }, + { + "test": "Aspartate aminotransferase", + "value": "16", + "unit": "U/L", + "flag": "normal", + "reference_range": null, + "timestamp": null + }, + { + "test": "Creatinine", + "value": "295.5", + "unit": "\u03bcmol/L", + "flag": "abnormal", + "reference_range": null, + "timestamp": null + } + ] + } + }, + "custom_id": "graph_020_N7" + }, + { + "id": "N9", + "label": "Step 9", + "customData": { + "node_id": "I", + "node_step_index": 8, + "content": "Week 4: Patient experienced stupor and hypoxia (SpO\u2082 85%). Cardiac: atrial fibrillation. White blood cell count (\u00d710\u2079/L): 10.01, Neutrophil count (\u00d710\u2079/L): 10.08, Neutrophil percentage: 92.8, Albumin(g/L): 22.8, C-reactive protein(\u03bcmol/L): 176.8, Procalcitonin(ng/mL): 30.58. Electrocardiogram indicated atrial fibrillation. Antimicrobial susceptibility testing indicated sensitivity to meropenem (MIC 4 \u03bcg/mL).", + "clinical_data": { + "vitals": [ + { + "type": "SpO2", + "value": "85", + "unit": "%" + } + ], + "labs": [ + { + "test": "White blood cell count", + "value": "10.01", + "unit": "x10^9/L" + }, + { + "test": "Neutrophil count", + "value": "10.08", + "unit": "x10^9/L" + }, + { + "test": "Neutrophil percentage", + "value": "92.8", + "unit": "%" + }, + { + "test": "Albumin", + "value": "22.8", + "unit": "g/L" + }, + { + "test": "C-reactive protein", + "value": "176.8", + "unit": "\u03bcmol/L" + }, + { + "test": "Procalcitonin", + "value": "30.58", + "unit": "ng/mL" + } + ], + "diagnoses": [ + { + "code": "Atrial fibrillation", + "label": "Atrial fibrillation", + "status": "active" + } + ], + "mental_status": [ + { + "domain": "consciousness", + "finding": "stupor" + } + ], + "medications": [ + { + "drug": "Meropenem", + "indication": "infection", + "sensitivity": "sensitive", + "MIC": "4 \u03bcg/mL" + } + ] + } + }, + "custom_id": "graph_020_N8" + } + ], + "edges": [ + { + "from": "N1", + "to": "N2", + "data": { + "edge_id": "A_to_B", + "branch_flag": true, + "content": "Patient transitioned from toe redness/pain to lumbar/groin redness/pain, coughing, expectoration, and fever." + }, + "custom_id": "graph_020_N1_N2" + }, + { + "from": "N2", + "to": "N3", + "data": { + "edge_id": "B_to_C", + "branch_flag": true, + "content": "Patient was admitted to a local hospital, and initial tests suggested a possible bacterial infection." + }, + "custom_id": "graph_020_N2_N3" + }, + { + "from": "N3", + "to": "N4", + "data": { + "edge_id": "C_to_D", + "branch_flag": true, + "content": "Patient was treated with piperacillin-tazobactam." + }, + "custom_id": "graph_020_N3_N4" + }, + { + "from": "N4", + "to": "N5", + "data": { + "edge_id": "D_to_E", + "branch_flag": true, + "content": "Patient transferred to the hospital with worsening vital signs and altered mental status despite treatment." + }, + "custom_id": "graph_020_N4_N5" + }, + { + "from": "N5", + "to": "N6", + "data": { + "edge_id": "E_to_F", + "branch_flag": true, + "content": "Further testing including cultures and CT scans were performed, with initial negative results for HIV, AIGA, blood G test, GM test, and blood cultures." + }, + "custom_id": "graph_020_N5_N6" + }, + { + "from": "N6", + "to": "N7", + "data": { + "edge_id": "F_to_G", + "branch_flag": true, + "content": "Sputum specimens confirmed Burkholderia cepacia infection." + }, + "custom_id": "graph_020_N6_N7" + }, + { + "from": "N7", + "to": "N8", + "data": { + "edge_id": "G_to_H", + "branch_flag": true, + "content": "Patient experienced persistent symptoms and abnormal lab values." + }, + "custom_id": "graph_020_N7_N8" + }, + { + "from": "N8", + "to": "N9", + "data": { + "edge_id": "H_to_I", + "branch_flag": true, + "content": "Patient developed stupor, hypoxia, and atrial fibrillation, with worsening lab values. Antimicrobial susceptibility testing indicated sensitivity to meropenem." + }, + "custom_id": "graph_020_N8_N9" + } + ] +} \ No newline at end of file From 6aa85eb3e4e02be4976026723ad807b302793de8 Mon Sep 17 00:00:00 2001 From: Vicky Bikia Date: Sat, 10 May 2025 16:22:05 -0700 Subject: [PATCH 06/11] Add benchmarking results in --- src/benchmark/generate_visuals.py | 2 +- .../output/plots/bertscore_f1_barplot.png | Bin 18136 -> 30152 bytes .../output/plots/metrics_summary.csv | 77 ++ .../output/plots/topology_distributions.png | Bin 31555 -> 45771 bytes .../output/plots/trajectory_tsne.png | Bin 20685 -> 43188 bytes .../output/results/results_graph_001.json | 792 ++++++++++++++++++ .../output/results/results_graph_003.json | 792 ++++++++++++++++++ .../output/results/results_graph_004.json | 792 ++++++++++++++++++ .../output/results/results_graph_005.json | 792 ++++++++++++++++++ .../output/results/results_graph_006.json | 792 ++++++++++++++++++ .../output/results/results_graph_007.json | 792 ++++++++++++++++++ .../output/results/results_graph_008.json | 792 ++++++++++++++++++ .../output/results/results_graph_009.json | 792 ++++++++++++++++++ .../output/results/results_graph_010.json | 792 ++++++++++++++++++ .../output/results/results_graph_011.json | 792 ++++++++++++++++++ .../output/results/results_graph_012.json | 792 ++++++++++++++++++ .../output/results/results_graph_013.json | 792 ++++++++++++++++++ .../output/results/results_graph_014.json | 792 ++++++++++++++++++ .../output/results/results_graph_015.json | 792 ++++++++++++++++++ .../output/results/results_graph_016.json | 792 ++++++++++++++++++ .../output/results/results_graph_018.json | 792 ++++++++++++++++++ .../output/results/results_graph_019.json | 792 ++++++++++++++++++ .../output/results/results_graph_020.json | 792 ++++++++++++++++++ .../output/results/results_graph_022.json | 792 ++++++++++++++++++ .../output/results/results_graph_023.json | 792 ++++++++++++++++++ .../output/results/results_graph_025.json | 792 ++++++++++++++++++ .../output/results/results_graph_026.json | 792 ++++++++++++++++++ .../output/results/results_graph_027.json | 785 +++++++++++++++++ .../output/results/results_graph_028.json | 792 ++++++++++++++++++ .../output/results/results_graph_029.json | 792 ++++++++++++++++++ .../output/results/results_graph_031.json | 792 ++++++++++++++++++ .../output/results/results_graph_032.json | 792 ++++++++++++++++++ .../output/results/results_graph_033.json | 792 ++++++++++++++++++ .../output/results/results_graph_034.json | 792 ++++++++++++++++++ .../output/results/results_graph_035.json | 792 ++++++++++++++++++ .../output/results/results_graph_037.json | 792 ++++++++++++++++++ .../output/results/results_graph_038.json | 792 ++++++++++++++++++ .../output/results/results_graph_039.json | 792 ++++++++++++++++++ .../output/results/results_graph_040.json | 792 ++++++++++++++++++ .../output/results/results_graph_041.json | 792 ++++++++++++++++++ .../output/results/results_graph_042.json | 792 ++++++++++++++++++ .../output/results/results_graph_043.json | 792 ++++++++++++++++++ .../output/results/results_graph_044.json | 792 ++++++++++++++++++ .../output/results/results_graph_045.json | 792 ++++++++++++++++++ .../output/results/results_graph_046.json | 792 ++++++++++++++++++ .../output/results/results_graph_047.json | 792 ++++++++++++++++++ .../output/results/results_graph_048.json | 792 ++++++++++++++++++ .../output/results/results_graph_049.json | 792 ++++++++++++++++++ .../output/results/results_graph_050.json | 792 ++++++++++++++++++ .../output/results/results_graph_051.json | 792 ++++++++++++++++++ .../output/results/results_graph_052.json | 792 ++++++++++++++++++ .../output/results/results_graph_053.json | 792 ++++++++++++++++++ .../output/results/results_graph_054.json | 792 ++++++++++++++++++ .../output/results/results_graph_056.json | 792 ++++++++++++++++++ .../output/results/results_graph_057.json | 792 ++++++++++++++++++ .../output/results/results_graph_058.json | 792 ++++++++++++++++++ .../output/results/results_graph_059.json | 792 ++++++++++++++++++ .../output/results/results_graph_061.json | 792 ++++++++++++++++++ .../output/results/results_graph_062.json | 792 ++++++++++++++++++ .../output/results/results_graph_064.json | 792 ++++++++++++++++++ .../output/results/results_graph_065.json | 792 ++++++++++++++++++ .../output/results/results_graph_066.json | 792 ++++++++++++++++++ .../output/results/results_graph_067.json | 792 ++++++++++++++++++ .../output/results/results_graph_068.json | 792 ++++++++++++++++++ .../output/results/results_graph_069.json | 792 ++++++++++++++++++ .../output/results/results_graph_070.json | 792 ++++++++++++++++++ .../output/results/results_graph_072.json | 792 ++++++++++++++++++ .../output/results/results_graph_073.json | 792 ++++++++++++++++++ .../output/results/results_graph_074.json | 792 ++++++++++++++++++ .../output/results/results_graph_075.json | 792 ++++++++++++++++++ .../output/results/results_graph_076.json | 792 ++++++++++++++++++ .../output/results/results_graph_077.json | 792 ++++++++++++++++++ .../output/results/results_graph_079.json | 792 ++++++++++++++++++ .../output/results/results_graph_080.json | 792 ++++++++++++++++++ .../output/results/results_graph_081.json | 792 ++++++++++++++++++ .../output/results/results_graph_082.json | 792 ++++++++++++++++++ .../output/results/results_graph_083.json | 792 ++++++++++++++++++ .../output/results/results_graph_084.json | 792 ++++++++++++++++++ .../output/results/results_graph_086.json | 792 ++++++++++++++++++ .../output/results/results_graph_087.json | 792 ++++++++++++++++++ .../output/results/results_graph_088.json | 792 ++++++++++++++++++ src/benchmark/setup_and_run.sh | 4 +- 82 files changed, 60265 insertions(+), 3 deletions(-) create mode 100644 src/benchmark/output/plots/metrics_summary.csv create mode 100644 src/benchmark/output/results/results_graph_001.json create mode 100644 src/benchmark/output/results/results_graph_003.json create mode 100644 src/benchmark/output/results/results_graph_004.json create mode 100644 src/benchmark/output/results/results_graph_005.json create mode 100644 src/benchmark/output/results/results_graph_006.json create mode 100644 src/benchmark/output/results/results_graph_007.json create mode 100644 src/benchmark/output/results/results_graph_008.json create mode 100644 src/benchmark/output/results/results_graph_009.json create mode 100644 src/benchmark/output/results/results_graph_010.json create mode 100644 src/benchmark/output/results/results_graph_011.json create mode 100644 src/benchmark/output/results/results_graph_012.json create mode 100644 src/benchmark/output/results/results_graph_013.json create mode 100644 src/benchmark/output/results/results_graph_014.json create mode 100644 src/benchmark/output/results/results_graph_015.json create mode 100644 src/benchmark/output/results/results_graph_016.json create mode 100644 src/benchmark/output/results/results_graph_018.json create mode 100644 src/benchmark/output/results/results_graph_019.json create mode 100644 src/benchmark/output/results/results_graph_020.json create mode 100644 src/benchmark/output/results/results_graph_022.json create mode 100644 src/benchmark/output/results/results_graph_023.json create mode 100644 src/benchmark/output/results/results_graph_025.json create mode 100644 src/benchmark/output/results/results_graph_026.json create mode 100644 src/benchmark/output/results/results_graph_027.json create mode 100644 src/benchmark/output/results/results_graph_028.json create mode 100644 src/benchmark/output/results/results_graph_029.json create mode 100644 src/benchmark/output/results/results_graph_031.json create mode 100644 src/benchmark/output/results/results_graph_032.json create mode 100644 src/benchmark/output/results/results_graph_033.json create mode 100644 src/benchmark/output/results/results_graph_034.json create mode 100644 src/benchmark/output/results/results_graph_035.json create mode 100644 src/benchmark/output/results/results_graph_037.json create mode 100644 src/benchmark/output/results/results_graph_038.json create mode 100644 src/benchmark/output/results/results_graph_039.json create mode 100644 src/benchmark/output/results/results_graph_040.json create mode 100644 src/benchmark/output/results/results_graph_041.json create mode 100644 src/benchmark/output/results/results_graph_042.json create mode 100644 src/benchmark/output/results/results_graph_043.json create mode 100644 src/benchmark/output/results/results_graph_044.json create mode 100644 src/benchmark/output/results/results_graph_045.json create mode 100644 src/benchmark/output/results/results_graph_046.json create mode 100644 src/benchmark/output/results/results_graph_047.json create mode 100644 src/benchmark/output/results/results_graph_048.json create mode 100644 src/benchmark/output/results/results_graph_049.json create mode 100644 src/benchmark/output/results/results_graph_050.json create mode 100644 src/benchmark/output/results/results_graph_051.json create mode 100644 src/benchmark/output/results/results_graph_052.json create mode 100644 src/benchmark/output/results/results_graph_053.json create mode 100644 src/benchmark/output/results/results_graph_054.json create mode 100644 src/benchmark/output/results/results_graph_056.json create mode 100644 src/benchmark/output/results/results_graph_057.json create mode 100644 src/benchmark/output/results/results_graph_058.json create mode 100644 src/benchmark/output/results/results_graph_059.json create mode 100644 src/benchmark/output/results/results_graph_061.json create mode 100644 src/benchmark/output/results/results_graph_062.json create mode 100644 src/benchmark/output/results/results_graph_064.json create mode 100644 src/benchmark/output/results/results_graph_065.json create mode 100644 src/benchmark/output/results/results_graph_066.json create mode 100644 src/benchmark/output/results/results_graph_067.json create mode 100644 src/benchmark/output/results/results_graph_068.json create mode 100644 src/benchmark/output/results/results_graph_069.json create mode 100644 src/benchmark/output/results/results_graph_070.json create mode 100644 src/benchmark/output/results/results_graph_072.json create mode 100644 src/benchmark/output/results/results_graph_073.json create mode 100644 src/benchmark/output/results/results_graph_074.json create mode 100644 src/benchmark/output/results/results_graph_075.json create mode 100644 src/benchmark/output/results/results_graph_076.json create mode 100644 src/benchmark/output/results/results_graph_077.json create mode 100644 src/benchmark/output/results/results_graph_079.json create mode 100644 src/benchmark/output/results/results_graph_080.json create mode 100644 src/benchmark/output/results/results_graph_081.json create mode 100644 src/benchmark/output/results/results_graph_082.json create mode 100644 src/benchmark/output/results/results_graph_083.json create mode 100644 src/benchmark/output/results/results_graph_084.json create mode 100644 src/benchmark/output/results/results_graph_086.json create mode 100644 src/benchmark/output/results/results_graph_087.json create mode 100644 src/benchmark/output/results/results_graph_088.json diff --git a/src/benchmark/generate_visuals.py b/src/benchmark/generate_visuals.py index 607584a..df9b1b6 100644 --- a/src/benchmark/generate_visuals.py +++ b/src/benchmark/generate_visuals.py @@ -23,7 +23,7 @@ summarize_metrics_table ) -RESULTS_DIR = "output/results/testset_results" +RESULTS_DIR = "output/results/" PLOTS_DIR = "output/plots" os.makedirs(PLOTS_DIR, exist_ok=True) diff --git a/src/benchmark/output/plots/bertscore_f1_barplot.png b/src/benchmark/output/plots/bertscore_f1_barplot.png index b766022ac8c59d7b77aafeccff3697121503bf5c..b853e5e5ddd5a446bee1cb4b424d608eda454c3f 100644 GIT binary patch literal 30152 zcmeFZXH-<%_9u#>fRYu-6p}lv#^z5xaTG@Xz)4%IzWNT+;Wy#CI z&Bej{@UE%7y|tY%C#S`~ui&t-y-K+M zO-TB|v&?8%=|#86na0uxdfYB_4PHOuX_fc*koOu}gR|HmbULciaa@Hngv zv|94};5`BlZ^21{EmB3XtL2iV@))(n@pg;$BX+w)vfb&=G%m8#^0XtSwA}Xpu+`lp zyRWM(x+BdC-PSE~L0g_AK6vw!S+U!#hqTmc%F>sBN}qo4Gd_g?%kvn%{k0*%Di^eX z`A{zZQ~gN<%w`MS#-0~^YB^K)d9jJcijR<*kLw7vP&D(@uscO;F@QCND=XC0sH_ss`{j5`yILcE$GE*;Si-aN3aQZF(#o~m}sG-{7A9w{`+)F`uDjM1`6-rx5ov?DRMixLZhv(eHOqok z*e;+3e`~}(=&C1{_}G835Uca*bJbqobAk2G6x#B4O3jBjtlDE9X}>LSJ2_xdo&%Q^ zqj~KXJA9B#sg9fDW*7ISq6&U7Ul7wiCJ{tfjFoC{j#pHvX~S5IA3JOvEu~5@Qpwd( znIz5p$<-23?IV|@rB=FvA0Zum|79Jm!@$dXR+GVYUA%6sWOp6sf4=!e#Ll5DWeS%6 zXa1+__zC)rf#1u0v$g}-bGg1hk1a*p^eM2$S8l@D8?CC3SJ~I%87(6iWjaPoQZ2+U zPIu!}=jq+{B9a4*oKJ@h!a{s_l_t|<@I_d(icMeI)n2D~muD#Zvh<_+FAwLZ=tQgP z5ogU-Y*gUNe3-=f<3CmxhjYYso%}=Z;-OYxCtBQ7Nujk{bw1u(8H`dZ(3esD@q(eq zVQnxDMe*>R?qWy0f%Cz-83&lNIHcKd{N5Z$}AH%+`Oxlk9eJh8~;J&Df!_uRc2%+pua5p)nD>rn}B>*2gT9KK+Ss-O-EUe&ry_;Boe*jgld4bHY3gt15n(1jPl_K}v(1 ztsu3{d7*}%a(;|41i{5aIvx|6?neubtyi5@ElrYadAYsrNFXlnZCRu&W*9Rv&+` z>dR1=Jl!CTNE6v9Z@QXd=E0uf{kKU72$X1g*eAiPs zANibdD7Wh1eI5wX$xNlhR}Dy18~estxtVE})1RMjn1*h75x8G~jFXYj=iuPoJ>_vh zcjGy;0eW*HJM&X3=jvJ&dNT1rNZ=iIXAss(CDFQj%e`!wo)rQhRkxIgxg0=2irD3- zTrZTGOedLb3CDfm|Ix4`jypn$7WyW|;~Zu;;V?8}*14Qr8N^vV>>Q9*t1*kKLY2ZS z0c}okI~b{->hFO26KDGyr51eD_7^qnf)vh=vKMF56NV2QTO(Q6 zGN*Q2GmSosDiQK(t(mM37c7>JSq8b9z>iM0kSaTg?|AMT;KEgLGCKDJgk|fESyuDY zLHa698qxHY8+c0X&dD;_)D%KPfAH!$L&FRcHkcV7KRWXQT1tVeB-=p#z2WQYsj~)z zwEd=jpZ1L{Z*HTfJj%>}#`!+qN+_Le3>xD*JUtk*G6uPBaN7md%4#v}hMu5+>9PtB z5i&)rybty@{V9f2>|R0xRF^M{g)_`&_0O*? zxNm_9B%FfMlk(MEb68pGyBC)3X}e62u0wsHD@OC>>xJ!%MgwJ5Q*q5T4Utbrf+1p~ z$_5vxc22fgn}+kix6~mUF^aL-W0^kA0fSUWdPeq9}g6WXl z(QmhXk3wh=3j7}ixIpAp!9ZFHlb0C0R;cGSr?Wj<(0T=%tH@vAJ-76@aLqeNW$?IY z)JVBYEw=B_BXU})Io98@q6>sj^eLp_*_Q_+VZ6oqzu7`q3=X$v4$3LpQusevRxz8C zO}J&?BAtf1FS^t48F-?m_hKY{e9lhLV;5&8`*b%HtGG7=?U!Fvj>Rb9%H3>|D*5n- zvER?~nV_?9FL8h0`kp4(K|i@1i49&no@0izTywl`Qi{7JZ!`H!B8gQVQqJZq>HzKM zIo95WNNm?&4?YPi@jkKEv%|rTQi!_uy*w1R-^0-m;nMtduA|n}`z>CC+cG63LnI!N zwsA78DpE1Xn2dHhc*g6c^<(P}xrdyjs?VwwO6-dG<$3$Ou;2 zBilc3)YOF#)r51m({Bq=isvYazT&cuH};hYBA2mu>Yr|rAj>JK*WIVb#)j(CQO?)@z~ z?0OsOfXQpK)5~8(VW{D$jD5Y%Dc1E&1U)OjLNX9mM=fUe1k=+j7Dv-moR+QMz=Vax* z(_e+F{(jHzA{}xu{Dld2TRv@0|MZBC7`;e7S^Tof*}+A#jV&ulzdyv6$>GrA`?D|W z8oG~h7S@Zp51PX0J%*j->I*p2WkXO20v4-x*xz=<(68t~XFeZnaGWza-fEqujH`A# z8D%mL6<)oc2isko1c>IN_Tg^*_u5`*08on^e5X`((!y{9(f3GJS>=dsF!01`o<>c` z{veT@XC5AL?pG2t@)zWh-@ZpOc#}u0qnA_Ce_qD?f5-rsldrUN6$f#^TdFma9QY8P zqL0>;he=zMMH~}$em-FEY2kSHp00G?qvz)vc9*U97p&5#D0`f{Tin0Z@>1O7KD?hU zk*3hJ_R@lOyu6*H*j@R0sUtpW1%4AlHLgWuOkNMh-3Dd7Xz5*}L5=5?gHz6nr$3Vj zn{MnEnRItCDqV7uPg2vwpB9VHmWS@!96m^?fm$y=q{rPVoUeI9)E?r_U4bDmw)aw& zM#={B*Mo;%`Ucd{cqV=5P9!P1boF6#yN z6t7KUDH4PE<8wRS3vitRAYBNA&ByDH2P)+;&yV08hCBSqew`i3_P+SX4H_>&toASL zCR6+?ep{5b1qhECOFi*k5;>f&;9^n^+t1cVYSXNUL;;Hri(Scyv(%i4OK{8(eegW5 zl)Ifcx+LM#J9XfD;<-2qjVcubufcO0`A zaU{lkoupN%n0xx34 z^mjDLjLe3F(B*_O_CxlZTks>2K>1V%f!qg^E!~6x3ACZXrV$;c&M*AepW^7^giJ9j|NLoX2{1|`y*n|iPIy_p6>NQIG;vl=Pnt==UgHN2Hhc$DhyQJZr z1X&8I5X>#)S)K3WGkkjXirUklDVUpB;xu2q%rZF}cH)@wa`PRXnAY(x8GeP>q5Z?orFAv@*Hiy!6Qs}rwEWnqT`2ueWKJWmU zZG`#Dm2#&oZ47bdwVtkNDFIw85zyO2FyMyZ{v37Q-P7IfL?Aefn$3cW5)UYQ{I6X2 z1AKl8$!l~Qqhyjk0U114f)=BOM6{1}+hQIi&I(V(KGGoPB}$Q)O$G$LX;-w!&CPsJP9lP59b6 z8t$-`KqulDmm=np0O)VKGJ{+_883~}DWnDb9chGt~v@ z%zU)O+$4`q6x!pCJX%aNXd0=oGkL&7%ycX6R;Y~E)$8kW{)W=Ti5*hf1I6E5Z!s=K zy~epa9S^c_B8JgU4AfG2K=;OTr*pL`69C~DHPb9#P77M^no(62V&SmWchbE=I|~A%=V;{*`|KwI_tuJ^eGe(*dx(PG-OfuWkf<+*NN(1ARXLmN9r!~Y{BpJAWS)JY% zq2%Yx zM9j@Dhc4YmGQYq0bWkkV^ya_r{NJdBgIIwNHI}~ZGhoETjI60Y#ue6g|9xv*AR$Um z_XK|e;={iO@?TSG?b%bOiJ54_Yp8#vr^`oU#`~|!{+F&b!5Ms5&B0U#KVN6--z0x% ziU~_{4$Zi2G{E9v6)TyEia=Xb0`brRghf-J%zQCA{)>775cgW+fONCcpA|+W;+VsK zE*nB^G+Jt59>b|)*%r+fwTgB@Z}KlC*@Y6i94*8uH3r`4v_hU4Ka0K}@#q)>UnH4D z6il!}X@&X#Pp`M%nw)TNCUHI4DC?YWjq0Rx8jn~-Yfd3xMe!0I)vd9dsa3w{OI26$ zn(j?Xt4TmQl|V!?4cRVrSs*#z<=-_<5}b1F=d&0cP`(0E)Zjq2YBK@7_&Duj>$|y0 zKmdpX%1P!SW=l!>eEuh`5egCrNx15iS!#7W{`K~Ep(?V$U}Ea)Q}2%SF!2wYm0Q*2 zwz9#LdVv(2kfYZ>U$fP3$y{z#b%h7mTw=5!i{xI=NVp@+dcJzC^nCNKSj(+kAFvU{ zA)+-c{Wx;#2%xlk&mAr?Op9{l2SVNKSKk#=L}48mVMTMv1xR1|O?pe5<`@1;Kh%pd z_bGY4CrNmmzqT1>>yW#ARJu_z4WCJT4G2=_q5lSb*Sox{aapOalHJwipKBy>@ zgWCqpT!~M5q%J4Zu#b$ZNv+ zQp7|GxefPM|2UfDdlS+E-ITj*!ZA_kXg+E~$a9%jx5hKLoFB77{w@=eAiEb7#3&OEjBdp^G*Bu zWYw5Gkoa@n71Tl2P(VL7_PKmlya+{{yENRxSUd(z1Sb-cNb|g^LHo_|5sY+81yaf7 z)(*N-ZZ##Ynl4MYi@Z4Nrgn9`9EUWKHg=1~v{@6x1i*o_#)8cDypybB{9&NPs^c^IiM zkH#Y%)4v6^qoWKv3u}Gmv zF?{Q#uH=6YKkCYGmJ0oDuN-}R*`#wjzz7ltyTEW5HV3LvCm!kF=f-Dx>cAH6>;ly# z5#WBA+#Mp_$*Z=Fchus53n9$Za5)$LhC5h1of;q%UJtcLv!%1?UaoGEDV6|;R01j< z=0=*QKut6P<^MzdKhuj_hFh&H1b-4UCXb#N;daNVeWtH%0@mj(n2Xq&t8K(5e+m~Z+Mc`OB_>*Gb zRCcc2MlCLV$G_i-pvGpdDW01DLk3*C($Rt!Ojt0<<@7N`wqj`lROp5;&xg3V3B<_% z{1yNm@gQ&>{&C3NdG`44eAf$j(P+JQ8;_Qv{hC_=qh z>r+VN5m2r>LIfvG4>l*v^K5XYJ+EMQ)Ocb4#}4LF%hhx&+rs3gzVFXBMm+xfQWLy> zldQ#m{t`Ay7yiCtPsaADf$zgW3)!Rh1E*l&7N={ysp1iryS&8`JKXMEHk3Ag_C4^6 zlz^_PGy!+mpphKRQMbzwzD(}^hTK@qVf0p^;>XJ^=#e6mL?AH4WvgZ-a3W9pFeU{7 zoiHEM-lg|O(wdJGj=lhTJQwN=jGhZ%&;mDHE=<}5DgCUaF&2o>6b7KJiZR%AX&s^J`@uPcE0oesxc@l5nFV^_FQX2 zdEIzbe*=+++Ou~O30MJ(=Iu*n%}_{R^)IYO8*!zDo3j^J%w(Xp8^fC3{Cv#~m<69w z0v|U%1&5+40ssUJy2lysF9&3}&7qs=nFo9Y)vr&koVWq$J`;GOj_5pkq9AcvXaAYZ1-#sdo>VWB-X5qPQ%A!raF34jUE**X=*g%yJ^<>01QU z<^-gj@yMQYu0QEIK4|y)E#B;DdVjvL; zFbL$^;N?QpGHh3RmRXD$=fYPX@aolFQw3OzuaSydUpkO&6+>d+DVGR5I)jz3!-=SL=$M{{XG9D$eq<(Y)lB*Jk{9=z|X20iC^rF-tgUxP6+2?p)( z{wD*X5o){c9l8aowcXFDp&u{nU4f;_mOB9?`$68vfOW?C(pAPxbQxj3?4KV2^swn< z13w#3;+4QY+2H0v==o^X_LP{bsR9d7tRRo(XFHA~4SQ@W~%?0X>Ar zVzijs<8((ZX6;gjh*)R-e&w<4ynKJU9C3e@i<9cFw~s(&e}{3ed10veIHbqSXNt=L zjM=3h27c&a`W-NK6-EGEfd3a|0oKFNLu~{=w8EFvV{YO(zKGK%AEv@L)7mL^Z2vb@ zgZKZfpbUW)gG@dg0!rNnuYZKs`S0=SH{huPkF>>)&ERj)h1=syN1$r3iQ_;LO&rp8 z>9o8X&C3G@MFZ8h|<5Q ziV29UHKbgi_!jwUf*jEK<7GOA8m#B)E{~S{%6?anrqzy%VG>lL(ENA-iv%%|p5J#K zzRK{&2r(dyFbn=$0|^lh77BH$Em{)r&C#wJ-6U`nJ=^PdL|cP7RL!Ut`UHA`RASaR zF-ahz11udLNL58=4I+ml-5{4H$h^PQIIg8;Xkh;>OFVxii~nuN_y5flU|ao%7#}%^ zMayd(45)D++q?X)W_=j}>gCpYbyM9*Lj6E?tv|1}oPZkxoT{Gr>#|;l%Rj@mZVIN# zR7n*#ZV6{F21aq$dn6%WCFn=6VMoAV4r6K9D(5m;2zFIUf8&bpeYIn04D%4 z=r;kiS*v5pPK^Aof(l}M{Q~!3^V$9wNQUPg!zsgh1-V&*57Uk49#kbgV2^KSW;e=K ztb6o)A=R}oGF!3m)mxs}Rxgj#la!_So*5P@kp6JLPj{wDNHp$)(YpYuA4rbhy*=pOhc0{TVgI^q+&O+ZbT_)rt(7i7MGC;Xu}S@HWR3Bk>>s zARWWt&?ser$-ivPHZmILF4qK&Rhtv2VA;7^ zfchUqk#dQ3FbwqeH~bH0PyG?Q;=Deqydyg%t%9~kSCV4PPoEae|0&lCCmNbq23|Gs z+lmq2${)`3);8B?VL2TwSy1@acm=Q4&aDNRw+sCd<7%SN-4|~oCLLqH2phAkROH=V zk^%GDb}AoJ{|rGpsBMIW6UH`lwlZ-5P(IXCy9H zr_E*XbEfV4t7)&a1{EK?Z2fr>5&8D4Pvd;Wf;B*1MSDZBXNZ~c(LxgGnF4%<_6aEg z*yHP8IJ8DFDjsMlseY}8=>h~$e0F0BDPijdR%a3jEC@e(_hAj-f(PbHubg2dkqh9s zW|WJ&9DKA|?)j#jrJRfa0ze0*neYs2D%I^k9mqJFyO@4LMt9M(TdhE1jZ_2jjn#O$ z&E&zxn5xfjtx5q#!33!ZyN6=8zQ^8A?PFpWv*}Az;jG$=bOKtCOIC{WPeH)1*}J&` zLtqao2i;92Lz<9=$|WjZV<_NSJCo44kQOWAJFF3#0h{sg0}#i~zlNxQZO=!-xAE5rrJp3lD17gp%ZR!oVA>A3F5YyrLNpc;51 zuXkokzDUCkfj|Pq`1poBnF!3?aZf?TZ)q*R2+ z7NY+bP&GH8p13wZFQ@{+Ip(*90h1x2pjVDx&zX`HXwbXWK=vdHv7BuP&<6FQiaig} zXAUeKwG8f)|i<${)vC~|n7tnVo2H4cO z$WC@8i&O!6`+ja!;^HU_4RVC^-jnm0LDnp}9G81my;VT1)CPUV2uz=AC0GfI=D5j| zwDZU*(Akm;ShLu#EiI=BBN403fRoTSshDnAhaW)6Qv;ggnAvWA?T-av8&3E#qZJ^= z5zuHmdyON|e0qD4!3GE|Ci}m%tKeVIpo?paiy*lE4>#~laW_gpTAut}Ho2M%$mM~P zj{A{OovZV-7w)a5fGm+h{gtIQ_CYt6Rh8LBg=oKkHujg=<@w-MTsjj4(LnZ}b6DwX zJUL#=n=7rlyPWcaI7ICn_@j?Mp56M>4L!2?QGM^Fh=NLT>SG&y_;G@C;cUqe)MDlZ zjM98Mi4-g_7MVNfbJ*~{iSY+R9>_Yp9sp{Qi&fQr452wF1$0j_y`kEmk*^9Q8fOv5 z^?W@LgnO8t>MhV)yu(p39~rk|6VglBbc3)~tXRP>ViO1lknCUpn2VWMb9+g&!CPqr zL=0h?U_YdJHTMx?D$5vNno)!}+M$`wX?P20Flb+5`b~%Bo>~EIY7bBVEtb}-bOSbz zI(WN-vvHYPF>QXv&H={nB4W|&q6baa5X@@Etj*v2^zWxv&ICGwj) zwz#+h&F^;(ru_xA@aj!$L zKs)B-8EtZ@VaB7Mtp{bsqFE&cqj(Qme@8$)RoyA=z|e}23toJNEhJU|$&_k#Kb|Al z8nZ&~Yr_`4lv`YfI4^&D4U?~uA}6L;Z33}iL{Bz91iX#u(ZRx|r+kVJl78LCh~{()qTme%pQr;+5?H()%(XhL z7hKku3P~px)}|)=QVp1*z#~~5(HH(}er@f`k!BLqI85}o$qW!W>Q6M>NBilu`&&~} zmFLH6zc-c131M54Ri$=y{>sn*r&{X2s4Tts`ov2f_u!A3P9tK8#RK`^3bh2$5Tj@BLEb&q`l%zL13TgS1sGh}XbNuZ+7y^jlC;2nty_G<_ngqk7 zTbYJEc|k;(-9=*qI$dEHvR0;7kF%!tt$$I^Tiky8yi`)md;(rV$ePkF75rKhuf@n2 zFI<7vT~5e$N_2gjEK8;tIDOyYQ^2Jjjv=&p{^h{}rj?rX>`)Ac(7_*<#rLZOL{_x0 z2X`wt$eXnhrlMKp2v^P9aet}PGm%G+%-Xb_f(CnBoH->@0R6eh7pD;VxH9|k@$LC< zf;J4ooGq+|aD=t@u6vssv^$o4f^G^}9shD9uD8e+y8?eTsu{ZTmi!up=b z>!W`3wBoegBy4Hqisk#!8_suw#QhLT=E)KuL2nRTbBjXiC=U$v__k^s->*9@T%L;e zdUEe*zAb)hz}(ow-+R(*MWuz+e(`8+ONHmA#nl^Fm{S|90E&;~>v_XK%IpB=1xzVA zJof*nEuNojl_5bms;ysuG{gs_GHxJLyShS*L zU3*+%doG`m_?n+xb9 zwxC2}npVE->@?Gl@zG+$&to_6`$f>CCjd@A@PJnRkd_Z%k*hf8e*<@G9JC%R0;50> zWBMHd=zwt@EU1BGomqvZu|o7}I{bO_*26Kvw)^4m!Ua%NHR6fI_QF^G{E9uA_9n)7 z5llxun(mnH>3G0p5`gN!EaQCcO3$tD^JnXOtTqp58vk7Z0%{{|8sOxt79Dqr=Wla( zY>rt1rNomR2Gz~lSlj$u8Iv)+96*EH}L~RH_78-VMOlP?v@M|sGL9EkZc-?{Ui`4sh(jbD= z$vW${KnM5ZHxqYLF$${#HVP=g%eolzdUpe8kKDj=R7lub1LsBxjxjFEDmKP#MS(sK zW5M9!k0X72rad)^34E=C8nddCpbx$3ObjOFuDW%Uc>*PP?E%iVpiUZBe{bb; z1c(pJ@QZ-)nMe=XZOUx2)rw(leI;U>QPuMRDwZ0F!BB>YxO<lu26hz~sZ=?+DWy4nf@B$a|%2;TIt)4N2fY}uRjXIGvH%TFJ z$r1wqbV7;dug~lelKhgGIZp)5673@kdcKh}_rAA~#3eL5pDo`g9a}d|cu4{wl*mcd zr|$plUDMy-A3{o+a#xnZry}Am*Rut|j3xA~D{GYU#1tZ%=CV+z0_eFgt>3{bto}@z zp(7#dA50t3*b?q1LO z23p6^h{MpJ$=bT9c8{n?}<@2+!TnrNp~tZWnG~6-eIl#MewBy3trt@;!M{u zd>INY)&HV^c&r@z?x?{(lI>Nj3OH#NIAF-k%F-=$C+cvS*0nV$dM+dOyI{@B_}ogjkWZ*W=R^ z7e@!0ZQVJC4`9P4Q#ac!>Aq(>uD<`gZ5ngTc&ES zvG7LNRAV3ML~n$d_@G?HNfl_8V?yIc-#L<|`)2uAokq~Ic&az75WRHUIZCD2e6~=$ zt@f&OZoy=Kp2&i)B{XIGooYb@c%$m@72~<1B$2bJjs_1xtp_8CsQKgV{!AxFWSgBY2hSYMU6UE_XS1a z(DSpxQ`p+E>nPiPW65<~^qpU)z$l7gl=xA(cRg3T;REY@l!l<E-B2m+nwQ%EqTa_x(*V z2jFr^dH~RV699W0>lIB8ysaYI>#Rk2L)hwOdJTxI(Y-^iS9U3EvM#}k07qNOaX`(I zmTa%Zl2>?IxY zx@^`sYayk>jDzmAy;1W#b*tFjIPUlJDFD10$hkr*E#WKo`hgQAa@8O@I5c>6(&NHS zM1Nk&{p)R}dQ87ODYdg=99QjXE#4vM=Mez0%!`qem5B4mY^g%Hk6F4WxLJaA6}CV^ zF4Jb0?b_6C3BsIcvQ6SQfBTb1@3r4%@WD7YRzs~pUDc~}!zs)HGd9yMJsXsVK7kxy5Bn7F1&!KC9pf$k*7hv=}2ND{w0&!GR+hS(wZe1@e3DOLr*y4|ZV77B~bK zTU9KOCk_qVkex2ZZUbDGaWT#yv;cyKas)>v2a9|u+W)X2gvZ%!O#MLHJ|8e|`G6|G zW0C^P+*h0}`3Z=ng-658xoIA>@y8rgu|=?Np$w|I{orVf-FZeql2tUPSfnql`YRKX ziEx$3C`2x%FrA=96%||BaW?xh&2{JWg~Z__vk06?l2NRUn2T1{RmvTV)4N8!K^8_n z$?24VbEHUDv-=5+qe7@{*q6S3^p$v@!pis8E>vn89?Hg$8A5I!xG zeyVkZbsT{lp94n^EyXMcxQEE^J8e=W$??EXv&W`GHL^7;3V*9OjobL`oA&u`--J8z zSWSv1s?1-pG0kdW@YrGGowHs_b{ef7`~ySmK!H^{^$ zY&fFtSQG<@e-JNAy=TUeYT7Rvw0-_kpg~GvGZ{7O5&F~Ch+v%e?8Zi_@WyIZdp)K~ z9GFu*^G%GN^|!{K+wsf~3U6#AA|K$T)*YyA@!dBM4y9zd?e|iEsT8oy{xtyg=(uON zzsBw8g1l-ulCf%MO)YO~>CU5v$vd|g7t1>bU!$txv1Oi`aEtH= zem$XYu-U3*GQZr``{l-(Ws8pZa@R8L*)|bRVN<$aY{1@qe0%-q_Li9A8PU*SsFwJS z#<_`BpoYghDnQtqXdc@}J+W@|QQ!U&1G;`HOcdo$M|j)M<%wT~-O{Mbq7@jbxoNo$ zs{MC8Q!3>M+_mnux2VVY>^D0&FOSnct<|+P{ljF9;x4h5srQ-evr=ZRTc^8;a?g(e zj7@>AJ|slTyf41q_x)o}|0Cul?d-}f10O%%($Bb!E6Ry?RlMwXu1-@;i{FnQBAk^R7j$2gMQn@|D_I~r3PYVF zy_VTg(AH%aGrMRBw-j~{B*m1@c?+YMaqM{S{drD^iibGq)XLLT=}LR^o@~Dk9&3r> z+oIOdW0-S=*~o!Axi49Vr@gw0HAacg*c?KH8;iQ8{35fKpPs`}jHy3<&3hq(z0Sjz z7}4t}y0FSM6}-8T^|s-C*5!I$!DG{WCK(*vTThqdWeoI0IgEw%%ZmCo4(0?!eM|@V z2;8M)vZ69-RkMfVo9us?x2(&j*S>t3o!?+17jFHQG{l$7B)Vt$-CbgEyrtsz;lrG) zS5YY<2cEu?qU6%5BLVG<`ocKm@ILi?XzYcVXNwGZvX_TRJg>3G(E>#xhshfo3DKmu z_h|;-iev-`1Dlkj?x`&MbH7*cZmM^S@OzlS!g-j8<4bhf)T;mBW>1j$Izmzc)w9xE zOtWI6Bl^VDQ*?dhr;86A2{NnLwQ@&wdeD3hj$3>gQjaU8Mu^K%XRuz!SAap z;ZM&|F2W{d+@H$l*(^fgVdp+4?LmmT=~<_F*8cT*FA*H?S}J1oED^H`F36K&&LP3C z#10?8aja6;iY~0$2@2$rc0?m~=RV;8Zsz_E{OEv6PQyr#0h3XZ749$3ohi@HUDGsM zSgUXQT~w%L@}D^jZEVjo1i7jax6)_Ew93tv*WxdP*-Vpn?LKkvrng_xzVA^MU$@Vn zB)G!Kxwqt$n>3===ACf*gy=|mQq}5E*}Vd#@A(AMiwyT0a2k#MWv)19Q%%33$_cQT zO3l5in|_FNca#Lo^JN`Y*om}LpRExB=&$lrMW;25PG?AV1Cy5UGQfC{6ZdPTZ_as6 z!G-;`Tbl0Ax|>S$!g+^hCr=kXKb6vvq8_+n|CKJv<730K0c9>|m-xxYFRPAk)) zVj1PfUlm6J*6j^{#+p#>hdn+&*y8kP3r1y4s;aeM_svnwcqpea9W~s-T_q?4d6azL zb1y()UKdr&pLt2nas=vMyBT${jhUYhjo*PZfAFK~1tpZL*Ku}4n0@yR=0aOpQE zPJey*G9K#xq7^2O>Zut{FEk){F~eQsNg6qJuJSpPC#v+qQ)Q5+r)On&IYX;4-4^b5 zlkOpjYErO@b<+r5k5l5VJ!| zCy0$g*h!uFv#bUORJfl{yHp#=+<3@4EePB;!<9?-OwO#QHxh?f9u>yp293B zA(@hwPtxi$s}6_I+js3`@s4f;Z&#@7?F?xRs-=lQsNGd2SX4L=+me+{?JM2#$$nls zPHpW}Z!;8VvuM^nQIhqp*m;Py&=zwBYe3fLIYp+jv!V&j%UdKMhMU#n-dC8e(DerR zvFswg%H~MjXnDdkBic=;+ROmsC*f)_Bk5wX@p8BbK*<0tRw47GCveFn)J8kM& zo_v;6yk^~oAKS4M*xGxta-(=QrbQf_Kd=Y5M@hYPL`9&SYzA#!;&^A2%jE(A1%8_Y z{3vgpgQZ6f3AO?9J*Rqt=@4eL$;G^DJ?#^$GF%Rz8mx39MBSn zVreDU4u1``-5MYcmO+LBeb7x*_$&SXC&W_zp2gG_US)hy`n)0-UdKq$ZX9`6K0|L!b*?oN4%~ZTFf$Z|^t2jb#qlVqA}tAq37V z=`f=0WQ5b1#L@F)2Z-x2Pb^@aZS>gD!eN%V4_Blj<|Lj4aHUjO`i3sy@-k&mxW#-h zX29lB_&QTbh@UH|N6_2Lb=F#ZgGpSifctR#)7uB!cakE$xnT9gWh3lmq1RS&Y_@nG zd`s*7YKGX%VMN!+ktdTTQ>BZP{)iGtf#mAFhO@EPEpshf|ETd1O7|!7!to-N_HOc@ z@xMjQ!}UNGceY=Tw{czg3PQua&8Ht`n{y@I5fTF>U-`NmN2M+VrJNhNOKc{(`BVi0 z?;;9gIa-Qc(2-Won%y%nTj?`!|ne%4*;n%FWkn*mZh zH(0?B@qM?Jl9hA0hVtbr9G@L)C!@N0{PaM+l_YK);xB&D63)|Xnd$Q>+ti2scB(ud zgLk}NDrxWBtzQoA%6hk;a^Ar1f$}^F;_%4Tdt$9K&O3C9?iip?en`hh3>rLUcWUJg z133l@mJrccKk%Zu4bn%>{kmM|+-d3URo`d!BHup#P_Y~#X`-^|(Mc^=1By4? zC2gH6j>@x#)ed=nAOX5>UoQ|7+@v~;U>#ta?Uk!2ed6Z7DFwr+m|}``nXcAMwE=xJ z@4cgIiC0ecp9pStcm6!uO+j&e#2$Vnt|1@CEAZKzeO}*HSqi@UviSCt!HX-_ranZFO+Ha!@dqq-My%|6)OjM) zinhZ9D35xD%J=W_-6|8uR`E()ZKT}x+tGEfbQFeqEM!Uc@64Pp&DG>*^y{&*FU z)y|8ZSf;fBT8>9qmB`=~(N=T!ZZbkTs$@aBuM(W^Xyk;pxn^e;+kE`!iMfTvWosy( zL|f#DN)x+>K}5H=IbNp96H9>=Q~hb5xm>dsHuc4a%iCH={@J=PK`jzqm<|>ffgG^$s6KHpxx0wug!ptNu63s`3)AI! zFw$MP?a+CXN(DIjJbgBSJy=zde33((9(-mI>7x8RaW9s_JMW!Eq@$0?&9f2MDk{e7 z!A20zH^lM~(VL;|LsCEC&t8pHdWIFE8Npg(b=Ig@ZrRD1814;HZ|}l@Y8{*p11hWe zzq~n!<8LtJCU)(W-6l{OQs%mv97@1^nE047$(<-Gx#6dIZgLOtHzwagjRUE(+Q)%! z&bty<`*zV(z56}M%2?+JxqH3>?c`hsXRrcr+(KTP>ts65kJ78-)r+BJnlrRwoWxc# zq!@;#4RjZ`Np)ALLRxZ7TRSlQ>fxCF=%Zz@&f#D}>@`N(K=jIy7SoaK7)xH+G3+Hn z+eI{c%H?>w&>(;=YCTRL_kqYrc^8qA;}NOf)_S?2;H}CsPy3P9J<#JYO8049^lF!& z{t*4ror34VbV=*sSG&ygWACgK;D>NIUb~89O`?mlEQ_q(AoE+9d#L;CWi6fE|-pav+ zilQ@E7cd&)@rF3o7e2>V2Tf@|Cnj1gAI=v>q2+f;hOamKxk#xv4!;bw9O9&ROgeHf ziKRSF6VZ$2UK%L49Xes#!XgfvLB(iUtlu=sN@Tz7SX`(|G%+0F@7mR?->hQ~l3qrD z>-0LOH~^*k)ud!BUP4|%qrQvE&a^e6;*dV8Yim!GSg zi6cRgM&AU*hR;MbI2~00s}swVaZ+3yKnw1J*acb66Wg zj=DG$V{7XAG&kQx|&?cx!Ir0-s)BqmB@Q* z^n~1HJSO&qFMPD*jP3VBMMPzyILzlhfh%_a5)UBRGc%`NGZ^GQ7DPoJs|elpt0t)$KeEfswaHt@y64f;t<&`X^md+6Q6}HI2T=imMlwi} zAUy<$B288af)Y%lprn>05}TZpC_z9P1VITVL`O0xsR@!LiYPgQ1OdqznzLX2_sm^a zyyxTjGHW?A_S;==)vmpFJ%B}I}DvDyMQ{`vAm(I(y5;3AhnrPaQY=)i`7BG+JdYtubm$^*qas4?t zuB-WC(#y>CrDWH019{Klx7~iIl}Cs!FSNCyH{FxZev|RlHB?bHNt1ws{CdgUrf-ab zLxdB3qjr}C`7ZCuyBV^IV%0^o{uVEeU?SHImR|~O6SMO)nE2(5{yJZ0S{(G@dNtO0 z+_hRl`vQmhxK^Y1*W16X9MX6iQ=11x%Typq}zzE|h`*w9~-yxq)aT%Q#ajyI*S5G5C$uozY7d4$xl(x$|y z#mfgDReY-}s`#rjway36wNcw6*N}pjGGZICwAerwTbjLi)w{tuT{bVrmH8{(rSknm z7W+5BhWqby6wXv*g(!FC2}LV!t=^SDgPTI(v^&?=D>Cs9oL8PMZ?CC&{wj-N(RC}U z6Jj8QEqtviVSeuymf4v}bTqb`;Iraou&0q5k`B!b*8eWhzo}H&$F6<*yL1}299`>F zh1|JLX36*A_#X}Ng6-}rF)r~$aX)s)XU9d{f6G7O)>BNi8&2>2*{V@&^EI}J1D%T4Q`etx zMI4Y(oQ~3K9AchxOd_YedgGewv0(YTBu}Ix9-;gnXplKu+vriziHYDv!p}Qb{T1p` zUd@x}<${|!XeEA%zwA|-7ZZECb+suCO>qgi*c3dN@xWA3Hb$k=cmiEPtoFpT-Howd}Te4Z3oY0 zujci9O|EPr;m19^^IO--5(A0r8dUfEKRgaHH)litlM=f5L3K8$thVNp2@Xy~60B@T zr>xNVew{i7M%f-eF8$!{x4%RTUP=u2&4k{!$atRcP1?#tVw+3Ev`*ZvK7(QHH_nbm z)9s>_WGxn{J0=-_t+AC(%YX_co+jHVWQ7)0KoNK0!U+po%EBX+oAg5LO!XPuCSy&N zesbnQQV%b`Qw`_6omy9a505J8=(9ixDV3klK5Zoa4^~w}1+Dm;=dwq?gk*ZsamA70 zn&n_w{h*rY`y4GiW{e!uzLb`>G}eEGsGz66n(mDbELIk-8+9d?TzXbTVhutki`zrx^(TL2v9r=-Y8MyO zJ47oldWd86XB5J3xZ!IoC|o}j8>Z|D4v0Z@jfAW@P9zTmAh+51C`1)j|Es zwQW8(oOhPfSh9@eugQmYcAA;XYuayc|8kP-aLP!}BD`D@KiMj+w9wFKTx(!?W^OTQ z8RJ{eDf@#E$mTO(tN>mtvclBk+e(H&(1Qaz!&U2m2j`{k$S_jSe{Y|Yf$ zxwNdvt>dvV{Z#&vQn6j3LKL}puu8zF&}#W~+uw2@pGnPDpm-c;SY#xvZ#ev2V#+#F z6UsD>dh7~=QF~N4vbW8-5ZjjPu(mar=kZrRZey$6$%9Upd6>B6nA`W4#K~MqIoel^ z5*fvH!lU_Pu<~WE`P^pYs$O*SH2db0nra70-;`jM>Y6uZMGoY+?TVKZUY{t<@4JyM z`MKpZTT(#~PPP3-PpJG|w2`O2eyvq=+8zDiyXYy~(ephzh(Omvhf7Dkn>`H_z&Bnl zI$}8@?vuA=rSQF1@I$frca!vX>K|<8#YWc8tDx`QN^}t=ijNEl2!uNoe5FSVw_jw| z=Mbj*wsnEIU-m0HVM#E2Ew;^tPrrem&1}I$=Wu^a>dwWEt%RGM7_pdlCT@vWTzSdF zAL96!T4Y~2nj9>43hL{&wHr>ST1uH#tHEYeycjVv_l!=J#HSC{gKoV64eE7~4o>rkT1Izpu&3W}d;hD_(V|AmM%=C-A zTi5RBFI48n%yb?nA0D_rb%b?#kja-Iu1?z4X=onCgf@!z3U*LWL+cAMd_EGHetbI9 zJ39S%W0(Lw;0bkY%86$(FUBY^MwP8(v{lbxbjYT;*peXHN#Dc&!w{v6u!m&)JyO_c5(=EG*3Zgm`b@%DgEL)RT4Fj)nwUE6&*9_j4S}V|k^P{p_9kJ!RL@)kQMDf=! zrWnDN#HFz}L3sXsDuS0CTn)f>0v&*#9;+`oW=f#L;4g~u)qiD`<+knG# zji^cA)tTsuB2(3qFO*)gdIf9hBXUz>+>*pKCgIk)e-&E(X1 z0)6x2^r2UyL+UM)%dEq{4|Pj8UGQ=?6;MC*!4cqd8ilRa{AgtiXsbsR>(As|{xR&V zi+m3F*`7d9?qzj?t?-sdm!WDG^y}?M>D0~nXAl9n()PTHS2K4SX!cLHkaK$BWSzI+SsN0Z3vL6l|v&_l<7S zqCH0?;zuqGI?w6ycnu`m=zON=gc%=N%?bzdGr6^MU~raz_P;b3403|ct^&Ka4BmFK zBEp_Rd|0c7{^^w9HZ1c1m%{9^Gb4$hct-r(<9V%07g-@5|Ncsuz=q!E*m!b0fSgMl zG<8ylr~%=SnD!je)OEe}{Ol>IK11UWy22) zJ&&q+!plc%J~!-(K!(N6IhMP!26~t9r0(%ePo*2>!O~<~vjKv*8R;9OfGD)@uP=PO zgH0qh&rzBNyi-PzYu1HTq2KQtpp(XBeOwHqEt@U}zf(LWjrVt7T4z+6rogP@z@?0z z77>B}gOCB)0$9d#Vt)ee`yx{sm=lb^Xr9ZjxEGZi%)tBfBL@C?eV7$T0g8&J1$Wv& zt8tu69Oe5kIi>=JD~Wfe-)-;%Q)B}G!&tXGpCA-&Q3W43`JWm20v-WR`1c_}mvJvg z=k3nvaH4fA_C?TtcHwm*(svCGmX84ALY^>xw3Zv~d$kDhu>jq)9tgZS{iFwNXf1<} zzM|-0xby-cfsD=*&#-iq`FLf4R?>AXN?8XH;??k>5b$^VzF|p%2USpvG1+NtA<9%& zn&>iyoZI|`TQ)I*J^8$+kjQoddi_!=~QM5cMz8h zIDxt`U>tgxp?6L7V_4lo70*QN$4vWnL_j1k=`Y@=3n87Pu1Yl74xp~USQC|q>!#K- zz`N=6O_8#U^hq%Wp3JPg&qhicDGo#3bMn}azT>EfzEZD(hJ!M39IKfJ2!VhxiHDYisG$Ij>O^E9RQ)PI36iluM6VHt>EnI0;h7GUB4U&>?^-6cYdZpx|SvbHOkJ-vsRH~UP#wKxfwGW8Jz z;xhg|t4tDsGWop7zc>dXav5axZ@_<&I#r4ox$^D$Z{}VTh-MM43nUh+1^g0i8+v+4j@#W8Bjgf$^s~(SreUPCj2+Brmj}M1OCy@ER`4`inkQL z-XI6WFt(>gAc$%Py*K~fF6IAk;&5}rp5yC#u#EcrVyOG<30V3oT~x5AH%LG-QDPYN zx$?DU%nUQGK&oE(gaH_1O5%pbVsuw;=HD6q4sfUk48be@=`;k;x7q4}%Gg$q@TWWq zEFa4VySS4HAU2ZpXteEmh}s=Rf4~}qZvtYXSM!>@LKWMT9Enwu$%+@!62Wyg4!|XLQbpYBUq1 z*RyzxH`JeAWO=;5$0b<#TQ;7kU6gUb1|OP1j_ix_2YIJ)tt_C-<8PF1!@ltGcB1oF z%>mH-vQdsI9Ctm$P%C`fL97G=XsN4B7!KxH-7L_&CB*$c!5eFMY#`5|yH!!zH+(58 zpxG)u`)4-bE$@GV`x9pv&`1aSr-pdRTfBSO4Aj`GwfP=oWR&dC6AugZP)7K{-AREFJ0 zRJ#yi(I|o>U6oG@mCDs%{KHm7nq0%9@}O&p2nN}a`>|j4kfphzrl>$?hY>fBLE4&+ z#7YG1z{(i_asi=W(6{%!VaZ2DZH_FSqaC2--?AHW$K^`?KH$vq{<|=!8i|w)0%Mbg zWx>2)9frifq#!U)?^}7-62fuMdVpnI0JB!_^fl^AJxticBJefS$w+2}XfjSfVbPGg zZ|@^8RV&{o>>7`XrK_7vQdc0dt;hph0EcC?K2TuOecQ0Q@L>Wy7!k_(up&Yy!DH>y zPyLF**Xxg^1L!^%A{AHlvVdNK$6y7VCrBJ?bs^>+&kW2tx!0jreGBW0@5;nn{%7th$4wa2GFzP=Ja|ms~(f%`dvo#TasHpa? zBAs9$;6}z9cSEsm-P<_>UyKwcz`T#hFpQ(eXkfHVuNeAN7L>%jgDPu<7&%;<;;HW){@`MpZsL}kCF_pMU z1<4+n8TKT;yMAGZHw^!A|Veg!~(Y`l)&*c8|u~sQN!YRSb`RJJk#|Z+Q07=zhiO# zR(ar4(3ZHr1v=WEW-jlSX>L1M-e7IgHE>J`-};y?;U@5qCzLH9? zvU)ehl)5660qtqt@OS~auYs|>lyI=;zR%7|=c-(+e|Foe^Im}IUIEYkXesQLr^BCU zm0*H!&&LvFop^B+B|rapKg07_S8?Uqn>W7~JI8=v=pz;Ka8zd5fEA~Tk|23?aszRc zMjr7m@V+!jnAu2lYRQ=+;}6FW#Rq6L%tw|TGM8>!u}oAm=;jA&(!;)xtHGgktwpK@ z!&lW#wwL{h|C{~ADWg&j96Hi9-S&~R{FCWqr7B8~tk9}m0C+!wTQU=*F0(z~saeG< z5YISr_ro|C@pG+@y3P&Q7Cc1U@2)2+q&p2v0iI*qd62`YNn-pStx~q1lMgWN@E9Am z37Z#i*FrqF#u5-`)&rnv=vu&z`Ua%FtLZPowdUTwij+hQM0-UC$-h%(`T@ILHjbjV z%%>zl#y(k*VIK1S9CDQsX+MZ^QV`cl5)?dgivYNv+kIE_3c+8(x3#fX;>~wQ6s~YzPMFEO@FBU<78~lDRoRK1_gEs`o@P>oE?;iWPtQ7V=Gpt!&qZ!;YnA_iST&AykC9Q)^Ie$3l zq+#(lBQ#f9@X}LOuw*RV8X0yWAi&1A{I9;202!hg2)VO=Y5umb9$L!hc@WB6AULg7 zu>)9Y68lCc=`LdHt(qq;+{IMd5f;>)rc$3+6ih|;xswhRPiHQH(Pnf9B-^W7kl@ck zt=$;O+f!ga*Y7!<@vf5f?6q{gHhCcQ5g?MPXG(<)nYY18TmbeAo;SRTr(5I-GCgvw z3gHXdu<}KPYdx}tPx((-b>`nnSsE~Ui1)b^l}KJ_+k1Kr%By)u7!~Fq*U_OnY(q^K zJibd?f6);!{u*xurXts9=)EUGD9`1iR`4fm-v8h)Y6D~J%9!Iid$S#!vC}8FTm6Wp zqx1Aru;dfKG}irrGF*~^4>fVft~y zgQQ8OWc4{f$nY3|u;ss^tc*%X*jJx~sIcNR9yxcDHofB_D2_pD`_bsrWPwjeRRt9Z zacz|bFnF1Kg<#p9DORqG-?eXl6X6D(sa}`E_YTu65+U91ULgs}vBvljw~;J&wiqb? zis6wep5Rkzh~Br&i=wbItm9f0lhS^?KK!Mm>tL(uQA@U&jy!z;0SvQ5(5tJNu&)FD za*h+iL`PE7;F&Hk^fA=(gr6MO-&ch^6f`UN)PBDx6-yK}!K=`m(K%WUGPb=g)H8AH zxg&g0{pyH`(2{bas*9?m}`aU7k+;Se}lJS4yvCB)&P_T(eXJc>zrCM z_@lGyN{5ImH;xL?XGIJjt)I+BY|tv`ZbvT8;Lb1Lr#pUeU#VFWro#G69RN{`MFNg* zNhcBB>>Bt#QY8=I#GEXSg5*RiN$$HRrL1s>%OP(!h3)yO0mz=XWOT0Y3-Pd~E{9>Z zGYrdQyGWdqm5IhBt{FGVeSNZk7PI=no+$n?VCiN&WW659eKmCCERw;>S96g3DIN#+ z871(R!kSUoUl4ETf4CcaqsY;G4q*2y5PM>IwbV^er$~03HWGi)7<(_=_Zj3)^Uias z=k9~G5Yi6mVwI)g&^VoVKby^Lj zKpwT^)AzX_L5>gltR;CYx1HC9DBlc6)m8{~|0*DJyac|$=+4+9Hkv)k6~ya3n-7Aixl=e56@Fpo!}HhO${5hgzcNf9}YTi~DUIM^**rx0aD}fkv8k)HUcIHBLR%uBV2xOwzc`BN> z1xZGr-$V~&`4KJM-@`zS#Zh=Tase4|-pr69uly0TbH8O7D+@OrrPID%$hLESog zV+nLThGAC*)EetX1eN?kHN)(~mm4W+&k3|&Y6Kx$y#WN)EXYe&4UYS9Fh3u;De#B( zmm@Bbv%(&_<5NlCQ#~Dd+S80%zxZ&J+a^x*3nYL9;Pm(A1wh++7!rU}^tDq%$j|EB zK)R8ua+Ze_;lT(GWY*dgvddfS!7c~ea2g2IML+uYvX)B49uO4+>kFe9!*%b+kkb@f zGPZzjm0wNCt1G*u4#Ve`zz~)<`AIBdCG7OBovKidxa#a6(&Mg z-WKW<7O6k%7@mNx$l%O|e5(D03b|K4yU{1`5}L(*=0UND#jHa!ZI&ttHtD;xzRo3n zNW(1)Jk+ksQE(HFyyMV!F%i@(j7lkt-LHCKQyl22cI1uzKc87t?@0E=_$&(jKYWzTf9?uW pUFF$L-y?ecuU`p+t*qH4#or6Q*E?+e8ZK2O(Nxn>%{*rk_+OV@^j-h} literal 18136 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 J%nN3B{s$K44}1Us diff --git a/src/benchmark/output/plots/metrics_summary.csv b/src/benchmark/output/plots/metrics_summary.csv new file mode 100644 index 0000000..11d3ecf --- /dev/null +++ b/src/benchmark/output/plots/metrics_summary.csv @@ -0,0 +1,77 @@ +Graph ID,BERTScore F1,BERTScore Precision,BERTScore Recall,BLEU,ROUGE-1,ROUGE-L,Nodes,Edges +results_graph_076,0.8234508037567139,0.8246598243713379,0.8222452402114868,0.06299293132349305,0.42733397497593845,0.20789220404234843,6,5 +results_graph_037,0.7230332493782043,0.7374443411827087,0.709174633026123,0.020061000671232596,0.3101467772814295,0.1429483088704531,10,8 +results_graph_040,0.7302860617637634,0.6949756145477295,0.7693766355514526,0.006068841716179137,0.1791044776119403,0.08955223880597014,12,11 +results_graph_056,0.7806625366210938,0.7944204211235046,0.7673730254173279,0.03316548148309143,0.2944444444444444,0.1625,7,6 +results_graph_001,0.8451563715934753,0.8387337327003479,0.8516782522201538,0.2054908255580929,0.4711211778029445,0.34428086070215175,7,6 +results_graph_083,0.7659057974815369,0.7734915018081665,0.758467435836792,0.09899378728395339,0.4374384236453202,0.20886699507389164,9,8 +results_graph_082,0.683021605014801,0.6957451701164246,0.6707550287246704,0.0058559256287235755,0.27283653846153844,0.13701923076923075,9,8 +results_graph_057,0.736935019493103,0.7369856834411621,0.736884355545044,0.13227885704263823,0.4652049571020019,0.2421353670162059,6,5 +results_graph_041,0.8534884452819824,0.8640186786651611,0.843211829662323,0.14651653599307157,0.4530386740331492,0.3535911602209945,6,5 +results_graph_016,0.740944504737854,0.6678026914596558,0.8320786952972412,0.0791298332896265,0.30975143403441685,0.18738049713193117,7,6 +results_graph_061,0.8105026483535767,0.8127667903900146,0.808251142501831,0.047636868820993244,0.37435897435897436,0.16923076923076924,9,7 +results_graph_020,0.699731707572937,0.6939036250114441,0.705658495426178,0.01153174691632924,0.20347394540942926,0.11910669975186103,9,8 +results_graph_077,0.7484629154205322,0.7074882388114929,0.7944755554199219,0.10824027121706958,0.3758389261744966,0.2818791946308725,4,3 +results_graph_011,0.6992573142051697,0.7012196779251099,0.6973059773445129,0.019255908296213035,0.2872628726287263,0.13956639566395665,16,10 +results_graph_046,0.7235563397407532,0.6984645128250122,0.7505180239677429,0.0352731369608729,0.1935483870967742,0.1252371916508539,9,7 +results_graph_050,0.858492910861969,0.8664990067481995,0.8506335020065308,0.11985709106260009,0.4781818181818182,0.26363636363636367,4,3 +results_graph_007,0.8251110315322876,0.816325306892395,0.8340878486633301,0.08915075647297627,0.47789115646258506,0.2738095238095238,7,6 +results_graph_070,0.7651103734970093,0.754819929599762,0.7756854295730591,0.021079017527702103,0.36927621861152143,0.14180206794682423,12,11 +results_graph_027,0.7156457901000977,0.6740285754203796,0.762740433216095,0.004543389673276259,0.10491803278688523,0.08524590163934426,0,0 +results_graph_031,0.8371018767356873,0.8407499194145203,0.8334854245185852,0.28917167554237305,0.5923261390887291,0.41007194244604317,9,8 +results_graph_066,0.8162405490875244,0.7917846441268921,0.8422552347183228,0.05509384931217402,0.3931623931623932,0.22222222222222224,3,2 +results_graph_088,0.7483682036399841,0.7171581387519836,0.7824183702468872,0.05612083691011624,0.2714932126696833,0.167420814479638,6,5 +results_graph_067,0.8503626585006714,0.8460601568222046,0.8547090888023376,0.22916691868794195,0.5531914893617021,0.34793491864831044,9,8 +results_graph_026,0.7658107876777649,0.7396259903907776,0.7939176559448242,0.05949706091367132,0.289738430583501,0.18108651911468815,6,5 +results_graph_084,0.7944816946983337,0.8038591742515564,0.7853204011917114,0.0515011258904957,0.36,0.24000000000000002,10,9 +results_graph_006,0.798682451248169,0.8105136156082153,0.7871917486190796,0.10103442395667317,0.41021548284118114,0.2553870710295291,6,5 +results_graph_051,0.7902186512947083,0.7820798754692078,0.7985286116600037,0.15408828759088924,0.4800693240901213,0.2998266897746967,12,11 +results_graph_047,0.8573276400566101,0.8479164838790894,0.8669500350952148,0.4280695015351555,0.6548148148148148,0.5125925925925925,8,7 +results_graph_010,0.82138592004776,0.7847208976745605,0.8616451025009155,0.11541335740500298,0.34130781499202556,0.25199362041467305,11,10 +results_graph_068,0.8076483011245728,0.8164668083190918,0.7990182638168335,0.14948288116375336,0.518118735543562,0.2713955281418658,7,6 +results_graph_087,0.7590186595916748,0.7259600758552551,0.7952317595481873,0.07920794318479864,0.2913165266106443,0.20168067226890754,4,3 +results_graph_029,0.7676717638969421,0.7225386500358582,0.8188190460205078,0.037174694205880196,0.28346456692913385,0.18372703412073493,4,3 +results_graph_005,0.8666552901268005,0.86226487159729,0.8710905313491821,0.27859330938799,0.560096153846154,0.3966346153846154,5,4 +results_graph_052,0.7640262842178345,0.7502202987670898,0.7783499956130981,0.024499507708589042,0.351493848857645,0.1687170474516696,4,3 +results_graph_044,0.8219186067581177,0.8157233595848083,0.8282085657119751,0.08249739602739622,0.42085308056872034,0.21611374407582937,6,5 +results_graph_013,0.7464724779129028,0.7383317947387695,0.754794716835022,0.0291255346035501,0.3506637168141593,0.19469026548672566,9,8 +results_graph_064,0.7439529895782471,0.7205074429512024,0.7689757943153381,0.020398040132653002,0.21212121212121213,0.13468013468013468,5,4 +results_graph_033,0.7946887016296387,0.7869337797164917,0.8025979399681091,0.11513221907150471,0.4267676767676768,0.23737373737373735,11,10 +results_graph_025,0.8070281147956848,0.7961994409561157,0.8181554079055786,0.0676211506189639,0.40986977381768336,0.23714873200822484,10,9 +results_graph_072,0.8258626461029053,0.8337717056274414,0.8181021213531494,0.08451707165944072,0.41294005708848713,0.247383444338725,10,9 +results_graph_009,0.8179368376731873,0.8052977323532104,0.83097904920578,0.38520037169323856,0.612668743509865,0.4839044652128765,13,12 +results_graph_048,0.7705951929092407,0.7794458866119385,0.7619431614875793,0.10900761101947046,0.4695201037613489,0.2749675745784695,8,7 +results_graph_049,0.8063024878501892,0.8009686470031738,0.8117077946662903,0.03576180724801479,0.3530326594090203,0.2255054432348367,6,5 +results_graph_008,0.8395702838897705,0.8428777456283569,0.8362886309623718,0.1655823775316808,0.49466950959488276,0.3091684434968017,9,7 +results_graph_073,0.8310589790344238,0.8412173986434937,0.8211429119110107,0.26754135696306547,0.5846645367412141,0.4057507987220447,10,9 +results_graph_032,0.8372699022293091,0.8244224190711975,0.8505241274833679,0.0036557074471752454,0.24037954665260938,0.1676331049024776,5,4 +results_graph_065,0.8435333371162415,0.8396786451339722,0.8474234938621521,0.16483788813818426,0.5029126213592232,0.3572815533980583,6,5 +results_graph_012,0.8505828976631165,0.8636003136634827,0.8379521369934082,0.1103547496731861,0.45046570702794236,0.3386960203217612,7,6 +results_graph_045,0.7922239899635315,0.8003971576690674,0.784216046333313,0.14053318317372476,0.4970414201183431,0.31952662721893493,7,6 +results_graph_053,0.7631214261054993,0.7764316201210022,0.7502598762512207,0.010387883712094016,0.2814526588845655,0.13488975356679636,7,6 +results_graph_004,0.8615389466285706,0.8535692095756531,0.869658887386322,0.12150955580589737,0.4815766923736076,0.3461868037703513,6,5 +results_graph_028,0.8311355113983154,0.8284991383552551,0.8337887525558472,0.17658940075634608,0.5438898450946644,0.28915662650602414,5,4 +results_graph_069,0.8553898930549622,0.8484562039375305,0.8624377250671387,0.21123213345024985,0.5747800586510264,0.29912023460410553,8,7 +results_graph_086,0.8293667435646057,0.8213422298431396,0.8375495672225952,0.18712496575902093,0.5508365508365508,0.31660231660231664,9,8 +results_graph_062,0.6931909322738647,0.6768946051597595,0.7102913856506348,0.01979863091357997,0.20848056537102472,0.13780918727915192,6,5 +results_graph_035,0.8428888320922852,0.8403299450874329,0.8454633355140686,0.13263674084386234,0.4673202614379085,0.28594771241830064,7,6 +results_graph_023,0.790317177772522,0.7727499008178711,0.808701753616333,0.06630182435280997,0.38679245283018865,0.19182389937106917,15,9 +results_graph_074,0.8246254324913025,0.8279114961624146,0.8213652968406677,0.0684286530717067,0.42224152910512597,0.25021720243266726,7,6 +results_graph_058,0.7950058579444885,0.7505869269371033,0.845012903213501,0.06704047393594473,0.39263803680981596,0.20449897750511245,7,6 +results_graph_019,0.8793635368347168,0.8791360855102539,0.8795911073684692,0.25059729037787776,0.5232903865213081,0.3706640237859267,9,8 +results_graph_081,0.8258247375488281,0.7984694242477417,0.855120837688446,0.10369187817964154,0.4070175438596491,0.24912280701754386,6,4 +results_graph_039,0.8302419781684875,0.8199849128723145,0.8407589793205261,0.08724973246869197,0.44563552833078096,0.2986217457886677,8,7 +results_graph_003,0.7116073966026306,0.7355820536613464,0.6891461610794067,0.054103905008875824,0.3516699410609037,0.14145383104125736,8,7 +results_graph_054,0.8225972652435303,0.8164544701576233,0.8288332223892212,0.10046274166922226,0.4076539101497504,0.25291181364392684,5,4 +results_graph_042,0.8246130347251892,0.8402611017227173,0.8095372319221497,0.06712329455084083,0.39172209903917216,0.22468588322246863,3,2 +results_graph_015,0.6983375549316406,0.680989146232605,0.7165929675102234,0.0435901926702842,0.20722891566265061,0.1493975903614458,1,0 +results_graph_014,0.7539899349212646,0.7559896111488342,0.7520009279251099,0.03387403497875152,0.33250620347394544,0.1774193548387097,3,2 +results_graph_043,0.6995033025741577,0.6424899101257324,0.7676205635070801,0.008814306005025859,0.09523809523809523,0.07709750566893425,6,5 +results_graph_079,0.7392467260360718,0.7301585674285889,0.7485638856887817,0.08636718645614525,0.3633276740237691,0.2139219015280136,7,6 +results_graph_038,0.710339367389679,0.7001340389251709,0.7208465337753296,0.01943430100148967,0.31277813095994916,0.12205975842339481,9,7 +results_graph_080,0.8650836944580078,0.8614916205406189,0.8687059283256531,0.195284988308007,0.5114503816793894,0.3912213740458015,3,2 +results_graph_018,0.7680803537368774,0.7594293355941772,0.7769307494163513,0.01426109367081012,0.2590299277605779,0.15995872033023734,10,9 +results_graph_059,0.7647234797477722,0.7324800491333008,0.7999362945556641,0.03761262491128669,0.28633405639913234,0.16919739696312364,8,7 +results_graph_075,0.8490868806838989,0.8510310649871826,0.847151517868042,0.09920424446993878,0.45546218487394957,0.2638655462184874,6,5 +results_graph_022,0.816478431224823,0.8152716755867004,0.8176888227462769,0.20004364496169086,0.5517241379310345,0.34236453201970446,6,5 +results_graph_034,0.8360005021095276,0.8367078304290771,0.8352943062782288,0.06003063873286863,0.40214067278287463,0.23394495412844038,8,7 diff --git a/src/benchmark/output/plots/topology_distributions.png b/src/benchmark/output/plots/topology_distributions.png index cc674cc7b6a01c44276a70529f94baf8bedcb93c..9b78fd8437edfadeff713aaf634c552155e0dfa2 100644 GIT binary patch literal 45771 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 literal 31555 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Á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 Q#sV)@MGXbSBeQ`21JdCV8UO$Q literal 20685 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 50%.\n* October 2023: Follow-up imaging shows immune unconfirmed progressive disease (iUPD) in the upper left lobe, lymph node conglomerate, pericardial effusion, and stable disease in the endocranium.\n\n**Timeline of Outcomes:**\n\n* August 2023: The patient is diagnosed with metastatic lung cancer and brain lesions.\n* September 2023: The cerebellar tumor is treated successfully with X-knife radiosurgery.\n* October 2023: Follow-up imaging shows immune unconfirmed progressive disease (iUPD) in the upper left lobe, indicating a potential recurrence of the cancer.\n\n**Clinical Progression:**\nThe patient's clinical progression has been marked by an initial presentation of symptoms suggestive of neurological involvement (headaches, forgetfulness, hand tremors), followed by a diagnosis of metastatic lung cancer with brain lesions. The patient underwent surgery for a tumor in the frontal region of the left hemisphere of the brain and was treated with X-knife radiosurgery for the cerebellar tumor. Despite these interventions, follow-up imaging has revealed immune unconfirmed progressive disease (iUPD) in the upper left lobe, indicating a potential recurrence of the cancer.\n\n**Conclusion:**\nThis patient's clinical case highlights the complexities of managing metastatic lung cancer with brain lesions. The patient's initial presentation and subsequent diagnosis were marked by significant neurological involvement, which required prompt intervention. While the patient has undergone several treatments, including surgery and X-knife radiosurgery, follow-up imaging has revealed a potential recurrence of the cancer. Further management strategies will be necessary to address this emerging issue.", + "bertscore": { + "precision": 0.6424899101257324, + "recall": 0.7676205635070801, + "f1": 0.6995033025741577 + }, + "bleu": 0.008814306005025859, + "rouge1": 0.09523809523809523, + "rougeL": 0.07709750566893425, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 6, + "edge_count": 5, + "avg_in_degree": 0.8333333333333334, + "density": 0.16666666666666666 + }, + "trajectory_embedding": [ + 0.09525909274816513, + 0.09550046175718307, + -0.20907330513000488, + 0.1778288334608078, + -0.01808859594166279, + -0.017407741397619247, + 0.1336432248353958, + 0.2776424288749695, + 0.3049672544002533, + -0.5186644196510315, + -0.39235493540763855, + 0.13863205909729004, + -0.6392437219619751, + -0.09407756477594376, + -0.36295297741889954, + -0.03038630820810795, + 0.13283970952033997, + 0.26260003447532654, + -0.005716294050216675, + -0.1553003042936325, + -0.42395004630088806, + 0.08819957822561264, + -0.43013647198677063, + -0.15254174172878265, + 0.2930234372615814, + -0.09525247663259506, + 0.2066822648048401, + 0.4679269790649414, + 0.2818489968776703, + 0.20123203098773956, + 0.14681705832481384, + 0.03852735087275505, + -0.12049124389886856, + 0.0010110443690791726, + -0.03518563508987427, + 0.3390667140483856, + 0.40244463086128235, + 0.2594294548034668, + -0.06875213235616684, + 0.07848862558603287, + -0.0702722892165184, + 0.23162691295146942, + 0.7816303372383118, + 0.4180329740047455, + 0.5912573933601379, + -0.530232846736908, + 0.05792836844921112, + 0.46866393089294434, + -0.565815269947052, + -0.19378648698329926, + 0.0774909257888794, + 0.6212816834449768, + 0.6538401246070862, + -0.09370245784521103, + 0.49504420161247253, + -0.11058912426233292, + -0.3751920759677887, + -0.13758356869220734, + -0.17873086035251617, + 0.10599756240844727, + -0.09670057147741318, + 0.09471055865287781, + 0.1734563112258911, + 0.07272247970104218, + -0.24201028048992157, + -0.312794953584671, + -0.19031043350696564, + 0.1045469418168068, + -0.016497353091835976, + -0.501361072063446, + -0.3281736671924591, + -0.2012891173362732, + -0.09983757138252258, + 0.13818290829658508, + 0.30403706431388855, + -0.29739320278167725, + 0.3016909956932068, + 0.031920790672302246, + -0.11211105436086655, + 0.14282028377056122, + 0.295123428106308, + -0.16561834514141083, + 0.007161051034927368, + 0.20809270441532135, + -0.363174170255661, + 0.15119221806526184, + -0.09141770005226135, + -0.14454706013202667, + -0.2314302921295166, + 0.316809743642807, + 0.22135423123836517, + -0.21415914595127106, + -0.11266795545816422, + -0.09321215003728867, + 0.2281026989221573, + -0.017894569784402847, + 0.19705061614513397, + 0.5171425938606262, + 1.1243793964385986, + 0.03885626792907715, + 0.22470365464687347, + 0.08844824880361557, + 0.2244553565979004, + -0.00871605146676302, + 0.5624383091926575, + -0.07938951998949051, + 0.13358695805072784, + -0.5366116762161255, + -0.029276179149746895, + 0.3883516788482666, + 0.0010936235776171088, + -0.08579659461975098, + 0.15381455421447754, + -0.5134308338165283, + -0.09461348503828049, + 0.1553531438112259, + -0.12409541010856628, + 0.02394341491162777, + 0.030190065503120422, + -0.42640796303749084, + -0.1338324397802353, + -0.2208145260810852, + 0.4372215270996094, + 0.30920493602752686, + -0.6668525338172913, + -0.06948386132717133, + -0.23411144316196442, + 0.3144535720348358, + -0.026524623855948448, + 0.1361847072839737, + -0.5228275060653687, + -0.03873586654663086, + -0.1162203773856163, + 0.27695176005363464, + -0.24489302933216095, + 0.3557276427745819, + -0.5206514000892639, + 0.13910776376724243, + -1.1145668029785156, + 0.3693017065525055, + -0.4768098294734955, + -0.1623704731464386, + 0.10079312324523926, + -0.4389355182647705, + -0.15953339636325836, + -0.2504326403141022, + -0.08854974061250687, + 0.08887997269630432, + 0.044769495725631714, + -0.10872507840394974, + -0.1022803857922554, + 0.22332735359668732, + 0.2131807655096054, + 0.3020921051502228, + 0.08886826038360596, + 0.2041633278131485, + 0.0937061533331871, + 0.3795553743839264, + 0.34449532628059387, + -0.11926808208227158, + 0.05457328259944916, + 0.20861704647541046, + 0.05513465031981468, + -0.15487004816532135, + 0.19973981380462646, + -0.7281115055084229, + 0.35998186469078064, + -0.48408615589141846, + 0.18382520973682404, + 0.12717343866825104, + -0.09318947792053223, + 0.1630433052778244, + -0.09214235097169876, + 0.48308658599853516, + 0.34685277938842773, + 0.400411993265152, + 0.13527299463748932, + -0.12398535758256912, + 0.21059846878051758, + 0.14224332571029663, + 0.14225418865680695, + -0.10271662473678589, + 0.6476855278015137, + 0.1890830546617508, + -0.26332470774650574, + 0.23012302815914154, + 0.23844265937805176, + -0.22579850256443024, + -0.1814236044883728, + -0.24198400974273682, + 0.6755089163780212, + -0.33379510045051575, + 0.4035644233226776, + -0.4386764466762543, + 0.010704636573791504, + 0.14577649533748627, + -0.15491344034671783, + -0.32322564721107483, + 0.10033613443374634, + -0.40082892775535583, + 0.2794477045536041, + 0.0634000226855278, + -0.22455008327960968, + 0.10140854120254517, + 0.12052998691797256, + -0.11810001730918884, + 0.1337466686964035, + 0.15499281883239746, + 0.03131266310811043, + -0.13363775610923767, + -0.17178797721862793, + 0.3085792362689972, + -0.02657986618578434, + 0.25174999237060547, + 0.03444848954677582, + -0.308789998292923, + 0.18227632343769073, + -0.12396339327096939, + -0.2197050303220749, + 0.15430690348148346, + -0.152048259973526, + 0.1337318867444992, + 0.3735392391681671, + -0.11107132583856583, + -0.3768274784088135, + 0.3608436584472656, + 0.21080486476421356, + 0.2642073333263397, + 0.145765483379364, + -0.07784359902143478, + 0.12721042335033417, + -0.41665422916412354, + 0.3751732110977173, + -0.13365386426448822, + -0.24480558931827545, + -0.3582226037979126, + 0.30804872512817383, + -0.21378298103809357, + -0.13692019879817963, + 0.4645352065563202, + -0.1631310135126114, + -0.2575817406177521, + 0.15171414613723755, + -0.29432713985443115, + -0.10679741948843002, + -0.41790375113487244, + -0.00319768488407135, + 0.35343053936958313, + 0.22240833938121796, + 0.2929988205432892, + 0.2728756368160248, + -0.1451963633298874, + 0.35025152564048767, + -0.3279496729373932, + -0.28556808829307556, + -0.3299705982208252, + -0.07106142491102219, + -0.13497528433799744, + -0.30763232707977295, + 0.07954829186201096, + 0.014240212738513947, + -0.17747503519058228, + 0.259063184261322, + -0.3960525691509247, + -0.17260287702083588, + -0.04773559048771858, + -0.046419043093919754, + 0.13940703868865967, + -0.044593941420316696, + 0.24297146499156952, + -0.3277141749858856, + -0.39064016938209534, + -0.08779734373092651, + 0.023568013682961464, + 0.2961314618587494, + 0.1148843988776207, + 0.024307338520884514, + 0.033912286162376404, + 0.30754098296165466, + -0.41299644112586975, + -0.44720473885536194, + 0.27055177092552185, + -0.34258463978767395, + 0.2459760159254074, + -0.10893374681472778, + 0.3512541353702545, + 0.3531181514263153, + -0.034446075558662415, + 0.14790184795856476, + 0.4121835231781006, + 0.5353427529335022, + 0.08829069137573242, + -0.06143955513834953, + -0.02482522279024124, + -0.007702801376581192, + -0.16190774738788605, + -0.3395914137363434, + 0.17034243047237396, + -0.22750897705554962, + 0.16759192943572998, + 0.1356017142534256, + 0.2028847187757492, + 0.06350953876972198, + -0.517906129360199, + -0.10738358646631241, + 0.6667197346687317, + 0.1691632717847824, + 0.037839896976947784, + -0.05136692151427269, + 0.4450501501560211, + 0.5249065160751343, + 0.007340277079492807, + -0.3306441903114319, + -0.009493349120020866, + -0.06430380791425705, + -0.16328896582126617, + -0.2803487479686737, + 0.13696956634521484, + 0.22404222190380096, + -0.06747622042894363, + -0.3030094504356384, + 0.31825482845306396, + -0.27668923139572144, + -0.07380122691392899, + 0.01650739461183548, + 0.07529415190219879, + 0.168110653758049, + -0.17041702568531036, + 0.2555415630340576, + -0.17788666486740112, + -0.08755576610565186, + 0.570432186126709, + -0.17577219009399414, + -0.19930122792720795, + 0.4915766716003418, + -0.18205863237380981, + -0.4425560534000397, + 0.3090628981590271, + -0.20726893842220306, + -0.20070767402648926, + 0.3741373121738434, + -0.13651378452777863, + 0.017651302739977837, + -0.2737968862056732, + 0.11020190268754959, + 0.1302887350320816, + 0.003572646528482437, + -0.20874559879302979, + -0.004113053437322378, + 0.15316803753376007, + 0.6786465644836426, + 0.018732987344264984, + 0.06185932829976082, + 0.4203014075756073, + -0.11499608308076859, + -0.3057328164577484, + -0.09067092090845108, + 0.07244453579187393, + 0.30383774638175964, + -0.311058908700943, + -0.3524237871170044, + -0.36338141560554504, + 0.21940337121486664, + 0.17009277641773224, + -0.1095595732331276, + -0.09802025556564331, + 0.10814189910888672, + -0.012437346391379833, + 0.10475149750709534, + 0.2615726590156555, + 0.3095625340938568, + -0.06085452809929848, + 0.6036781668663025, + 0.06224172189831734, + -0.057407621294260025, + 0.2052885740995407, + -0.10321997851133347, + 0.3524329364299774, + -0.1934761255979538, + -0.2528340518474579, + -0.536365270614624, + 0.057307515293359756, + -0.4155358076095581, + -0.11181557178497314, + -0.03543207049369812, + 0.052159786224365234, + 0.1058875024318695, + 0.0655241459608078, + 0.19983959197998047, + 0.09082623571157455, + 0.13807253539562225, + -0.0781714990735054, + 0.6763191819190979, + -0.0028358970303088427, + -0.4592268168926239, + 0.054480019956827164, + -0.06566111743450165, + 0.2707873284816742, + -0.22144867479801178, + 0.02520383894443512, + -0.2331681251525879, + 0.35534587502479553, + -0.05164376273751259, + -0.17912553250789642, + -0.06126204505562782, + -0.02977651357650757, + -0.2634107768535614, + -0.5233835577964783, + -0.07791954278945923, + -0.01286820974200964, + -0.06538339704275131, + -0.014107778668403625, + 0.23272742331027985, + -0.26258257031440735, + -0.2913316786289215, + 0.07348854094743729, + 0.3264302909374237, + 0.28274598717689514, + -0.2698136866092682, + 0.18986044824123383, + 0.11581862717866898, + 0.14617927372455597, + 0.5362180471420288, + -0.19385333359241486, + 0.13332805037498474, + 0.24237030744552612, + -0.15043944120407104, + -0.09583289176225662, + 0.04404716566205025, + -0.27873632311820984, + 0.01804291643202305, + 0.16146320104599, + 0.17648302018642426, + 0.19123680889606476, + 0.06625751405954361, + 0.016465460881590843, + 0.2488224357366562, + -0.3326088488101959, + 0.031383734196424484, + 0.4730178415775299, + 0.07189471274614334, + 0.5191131234169006, + -0.12896524369716644, + -0.29288408160209656, + -0.185959592461586, + -0.016157394275069237, + -0.45811179280281067, + 0.1441950649023056, + 0.09145832061767578, + -0.16910462081432343, + -0.05055128410458565, + 0.10060884803533554, + 0.1372537612915039, + 0.10982144623994827, + 0.19215022027492523, + -0.12495272606611252, + 0.0020723144989460707, + -0.1678815633058548, + -0.37175431847572327, + -0.023162325844168663, + -0.26127299666404724, + -0.3706505298614502, + -0.3697110116481781, + 0.5079489350318909, + 0.4564405381679535, + -0.15140655636787415, + 0.17129985988140106, + 0.15173883736133575, + -0.19758932292461395, + -0.40609297156333923, + 0.054612964391708374, + -0.05562881752848625, + 0.6642163991928101, + 0.04661300778388977, + -0.1879602074623108, + 0.3275156021118164, + -0.2709139883518219, + 0.1818741112947464, + 0.17545635998249054, + 0.13700933754444122, + 0.41310739517211914, + 0.24256926774978638, + 0.18925808370113373, + 0.5659263730049133, + 0.16788816452026367, + 0.010269984602928162, + 0.33547651767730713, + -0.06713671237230301, + 0.03555089980363846, + 0.03223928436636925, + -0.1653062105178833, + 0.4727550745010376, + -0.2796788215637207, + 0.29398563504219055, + 0.06562589108943939, + 0.323544979095459, + -0.35793235898017883, + -0.4239784777164459, + -0.12615498900413513, + -0.20450246334075928, + -0.1271847039461136, + -0.21514225006103516, + -0.09260322898626328, + -0.0009155869483947754, + -0.34380897879600525, + -0.023843316361308098, + 0.3352773189544678, + 0.28108829259872437, + 0.15740536153316498, + 0.21506689488887787, + -0.3025817573070526, + -0.40007829666137695, + -0.0010334737598896027, + 0.35335230827331543, + 0.0674835667014122, + -0.07668166607618332, + -0.1503458172082901, + 0.19994334876537323, + 0.5326314568519592, + -0.1191307008266449, + -0.21396292746067047, + -0.002778073074296117, + 0.009433877654373646, + -0.11832737922668457, + 0.12917560338974, + -0.20948851108551025, + 0.09871751815080643, + -0.39094018936157227, + 0.0658707395195961, + -0.18459124863147736, + -0.2053675800561905, + 0.26418718695640564, + -0.2483014017343521, + -0.4517703056335449, + -0.2017059177160263, + 0.2568487524986267, + -0.1521771103143692, + -0.1356159895658493, + 0.17099298536777496, + 0.31242015957832336, + 0.012497381307184696, + -0.16275222599506378, + 0.03929504379630089, + -0.5324494242668152, + -0.06600645184516907, + 0.08828868716955185, + -0.2327049970626831, + 0.17292095720767975, + -0.11559615284204483, + 0.19002516567707062, + 0.42871272563934326, + 0.14057065546512604, + -0.4558219909667969, + -0.17123158276081085, + 0.391100138425827, + 0.2776581645011902, + -0.18214933574199677, + -10.70256519317627, + -0.024449797347187996, + -0.1813431978225708, + 0.5516294240951538, + -0.12300056964159012, + 0.13342295587062836, + -0.15039943158626556, + -0.043130144476890564, + 0.08451690524816513, + 0.03566787764430046, + -0.293976753950119, + 0.09247811883687973, + 0.2773444354534149, + 0.23217929899692535, + 0.11016100645065308, + -0.07389677315950394, + -0.34550943970680237, + 0.22127236425876617, + -0.19098417460918427, + 0.07597266882658005, + 0.12664009630680084, + 0.32337531447410583, + -0.21354947984218597, + 0.4016430675983429, + 0.2746007442474365, + -0.3939281404018402, + -0.16705016791820526, + 0.36346349120140076, + 0.24572108685970306, + -0.48732051253318787, + 0.4727989733219147, + 0.19823813438415527, + -0.1509220451116562, + -0.20888535678386688, + 0.17655380070209503, + -0.20186835527420044, + -0.11027917265892029, + 0.06701631098985672, + 0.08921521157026291, + -0.016171181574463844, + 0.27644768357276917, + -0.2612874507904053, + 0.0026395146269351244, + 0.4797150790691376, + -0.157114639878273, + -0.40081313252449036, + -0.19162620604038239, + -1.5974453687667847, + 0.12117483466863632, + 0.16665641963481903, + 0.6035687923431396, + -0.05501393973827362, + 0.21268051862716675, + 0.1707991361618042, + -0.5372670292854309, + 0.10222750157117844, + -0.24073141813278198, + 0.0768231749534607, + 0.2692219614982605, + -0.10774337500333786, + 0.02425704151391983, + -0.13518595695495605, + 0.2956274151802063, + -0.27093371748924255, + -0.24596565961837769, + 0.25455477833747864, + -0.09962616115808487, + -0.11272549629211426, + -0.1394905298948288, + -0.39257630705833435, + -0.6048027873039246, + -0.148551806807518, + 0.03970241919159889, + -0.08336308598518372, + 0.5661895275115967, + -0.14280717074871063, + -0.598362922668457, + 0.03717902675271034, + -0.11945304274559021, + 0.4401933252811432, + 0.08606108278036118, + 0.07183074206113815, + 0.058848973363637924, + 0.049645423889160156, + -0.14604312181472778, + -0.10111034661531448, + 0.17163006961345673, + 0.42448511719703674, + -0.06756223738193512, + 0.06883104890584946, + 0.10000089555978775, + 0.2961301803588867, + -0.2568218410015106, + -0.1182146668434143, + -0.38412240147590637, + 0.162176251411438, + 0.019004812464118004, + -0.04749155044555664, + 0.12719710171222687, + -0.087901271879673, + -0.06408625841140747, + -0.23437148332595825, + -0.23866675794124603, + -0.3585752546787262, + -0.36637961864471436, + 0.2380337119102478, + 0.1721259206533432, + 0.1006702110171318, + 0.2322978526353836, + 0.11195039004087448, + 0.04324770346283913, + -0.06280314922332764, + 0.4888695180416107, + 0.5146237015724182, + 0.1527283936738968, + -0.049920398741960526, + -0.2123621702194214, + 0.053516313433647156, + -0.4882737696170807, + 0.08011145144701004, + 0.5055177807807922, + -0.042962681502103806, + 0.2023872286081314, + 0.5114120841026306, + -0.05642039701342583, + -0.2017393261194229, + 1.1306227445602417, + -0.30909761786460876, + 0.214499831199646, + -0.3102737367153168, + 0.24262993037700653, + -0.16454657912254333, + -0.44077059626579285, + -0.12830527126789093, + 0.38467660546302795, + -0.4769868850708008, + 0.659824788570404, + 0.10313216596841812, + -0.4822559356689453, + 0.013273775577545166, + -0.2966170310974121, + 0.3982210159301758, + 0.22480671107769012, + 0.20150329172611237, + -0.10485976934432983, + -0.3869105279445648, + -0.36076846718788147, + 0.009654332883656025, + -0.4856027364730835, + -0.42252036929130554, + -0.38543403148651123, + 0.05345264449715614, + -0.032841455191373825, + -0.30861330032348633, + 0.3658311367034912, + 0.01062408834695816, + -0.2842189371585846, + -0.10713676363229752, + -0.5582472681999207, + -0.2581392228603363, + 0.15885162353515625, + 0.689320981502533, + 0.13512583076953888, + -0.20383308827877045, + -0.19608111679553986, + 0.22843199968338013, + -0.07894566655158997, + 0.07426539808511734, + -0.013954506255686283, + -0.02115006558597088, + -0.5382094383239746, + 0.07599659264087677, + 0.24509330093860626, + -0.38768383860588074, + -0.2890462875366211, + -0.4272282123565674, + 0.156494602560997, + 0.0048865810967981815, + 0.04524322226643562, + 0.3338363468647003, + 0.2932804524898529, + -0.05237109586596489, + 0.09623139351606369, + -0.08224257081747055, + 0.1166127547621727, + 0.13835734128952026, + 0.38503310084342957, + 0.22785723209381104, + -0.3324199318885803, + -0.4339541494846344, + -0.2408454418182373, + 0.2723948061466217, + -0.4089561998844147, + -0.0048524304293096066, + -0.18746109306812286, + 0.2237868458032608, + -0.3778100907802582, + 0.17141394317150116, + -0.29279792308807373, + 0.01189874392002821, + -0.22544653713703156, + 0.21580083668231964, + 0.5462278127670288, + -0.25721874833106995, + 0.07724293321371078, + -0.18359194695949554, + 0.2354123592376709, + 0.16073282063007355, + -0.22593700885772705, + 0.30614998936653137, + -0.15799112617969513 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_044.json b/src/benchmark/output/results/results_graph_044.json new file mode 100644 index 0000000..9b27813 --- /dev/null +++ b/src/benchmark/output/results/results_graph_044.json @@ -0,0 +1,792 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 44-year-old man with a significant smoking history of 24 years. He has no other notable medical history.\n\n**Initial Presentation (Step 1):**\nThe patient presented to the emergency department due to cough, dyspnea, and throat pain. This was his first visit to the hospital in two weeks, during which he had undergone noncontrast CT scans that showed a 5.0 x 5.0 cm tumor in the superior-to-anterior mediastinum.\n\n**Imaging Findings (Step 2):**\nFollow-up imaging revealed an enlarged shadow in the right upper mediastinum on chest radiography, which was later confirmed by CT scan to be a mediastinal mass.\n\n**Progression of Disease (Steps 3-5):**\nOver two weeks, the tumor grew from 5.0 x 5.0 cm to 9.0 x 7.0 cm in size, causing compression and narrowing of the right brachiocephalic vein and superior vena cava, as well as left deviation of the trachea.\n\n**Symptom Onset (Step 4):**\nThe patient developed respiratory symptoms, including cough, dyspnea, and throat pain, which prompted further imaging to evaluate the cause of these symptoms.\n\n**Imaging Evaluation (Steps 5-6):**\nNoncontrast CT scans two weeks prior to admission showed a tumor in the superior-to-anterior mediastinum. Dynamic CT scans at admission revealed a weakly enhanced tumor in the superior-to-middle mediastinum, which had grown to 9.0 x 7.0 cm over two weeks.\n\n**Laboratory Findings (Step 6):**\nLaboratory tests revealed slightly elevated levels of lactate dehydrogenase (LDH) and C-reactive protein (CRP), indicating inflammation or infection. Tumor markers, including CYFRA, pro-GRP, CEA, and CA19-9, were all negative.\n\n**Current Status:**\nThe patient is currently undergoing further evaluation and treatment for the mediastinal mass. The exact treatment plan has not been disclosed in this report.\n\n**Outcomes:**\nThe patient's current condition and potential outcomes are unknown at this time. Further follow-up will be necessary to determine the effectiveness of any treatments and to monitor for any changes in the patient's condition.", + "bertscore": { + "precision": 0.8157233595848083, + "recall": 0.8282085657119751, + "f1": 0.8219186067581177 + }, + "bleu": 0.08249739602739622, + "rouge1": 0.42085308056872034, + "rougeL": 0.21611374407582937, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 6, + "edge_count": 5, + "avg_in_degree": 0.8333333333333334, + "density": 0.16666666666666666 + }, + "trajectory_embedding": [ + 0.3709355294704437, + 0.02028684876859188, + -0.037475328892469406, + 0.05414177477359772, + 0.11516084522008896, + 0.028672976419329643, + 0.002444108249619603, + 0.26623213291168213, + 0.3955191671848297, + -0.28058165311813354, + -0.18973876535892487, + 0.09418404847383499, + -0.6652488708496094, + -0.08837980031967163, + -0.3189680576324463, + 0.20539359748363495, + 0.10319840908050537, + 0.2507036030292511, + 0.034279193729162216, + -0.3032603859901428, + -0.44427958130836487, + 0.13780498504638672, + -0.45548200607299805, + -0.0463419146835804, + 0.23697422444820404, + -0.03626028075814247, + 0.41235625743865967, + 0.4622861444950104, + 0.22280657291412354, + 0.33370402455329895, + 0.08998050540685654, + 0.029371509328484535, + 0.11711568385362625, + 0.12784217298030853, + -0.2734856605529785, + 0.31026971340179443, + 0.23015107214450836, + 0.44062912464141846, + -0.02818652056157589, + 0.030641110613942146, + -0.006273791193962097, + -0.07089275866746902, + 0.9742924571037292, + 0.16635195910930634, + 0.47703030705451965, + -0.8083966374397278, + -0.0541016049683094, + 0.4484868049621582, + -0.4058903455734253, + -0.36903855204582214, + 0.10004440695047379, + 0.7282070517539978, + 0.48205241560935974, + -0.2034728080034256, + 0.4727686941623688, + -0.1137661561369896, + -0.2854260206222534, + -0.2783154249191284, + -0.23026008903980255, + 0.06855695694684982, + -0.06712787598371506, + -0.2664113938808441, + 0.3383827209472656, + -0.025055130943655968, + -0.1901993304491043, + -0.07115602493286133, + -0.21020036935806274, + 0.08970417827367783, + 0.013906293548643589, + -0.44624412059783936, + -0.02943798340857029, + -0.17864204943180084, + 0.0071489461697638035, + 0.04120977967977524, + 0.15927816927433014, + -0.10326626896858215, + 0.43982136249542236, + -0.12170781940221786, + 0.060487162321805954, + 0.26813143491744995, + -0.05804603919386864, + -0.0345066674053669, + 0.11151840537786484, + 0.27978721261024475, + -0.373654842376709, + 0.15464907884597778, + -0.023095345124602318, + -0.2016644924879074, + -0.2683722674846649, + 0.084203340113163, + 0.212515726685524, + -0.2508123219013214, + -0.02851727418601513, + -0.26750829815864563, + -0.04771529138088226, + 0.08708786219358444, + 0.29861557483673096, + 0.32486313581466675, + 0.8982602953910828, + 0.03220728412270546, + 0.09015234559774399, + 0.06618078798055649, + 0.26319169998168945, + 0.17664267122745514, + 0.459599107503891, + -0.06067446991801262, + 0.07814925163984299, + -0.55216383934021, + 0.22145207226276398, + 0.2868025600910187, + 0.05365445092320442, + -0.04029693081974983, + -0.022756367921829224, + -0.26143500208854675, + 0.2144930362701416, + 0.11377083510160446, + -0.09022236615419388, + 0.13659396767616272, + 0.21302317082881927, + -0.5276404023170471, + -0.11805599182844162, + 0.09615673869848251, + 0.18943308293819427, + 0.40989089012145996, + -0.33967623114585876, + 0.03003213368356228, + -0.25296202301979065, + 0.01777634583413601, + 0.05463758111000061, + 0.031284283846616745, + -0.6666356921195984, + -0.1602512151002884, + -0.056051645427942276, + 0.2529575228691101, + -0.09577626734972, + 0.22955743968486786, + -0.34167924523353577, + 0.031935837119817734, + -1.0398658514022827, + 0.27944672107696533, + -0.3510766327381134, + -0.11969054490327835, + 0.04185105860233307, + -0.37915992736816406, + -0.14408539235591888, + -0.23457372188568115, + -0.254799485206604, + 0.16993707418441772, + -0.04182658717036247, + -0.038153041154146194, + -0.05397158861160278, + 0.13948701322078705, + 0.196094810962677, + 0.2367267608642578, + 0.17823736369609833, + 0.13065539300441742, + 0.13852964341640472, + 0.24026137590408325, + 0.10159587860107422, + -0.1413310319185257, + 0.04598592594265938, + 0.21540939807891846, + 0.138239786028862, + -0.04086802527308464, + -0.07847775518894196, + -0.6931713223457336, + 0.12233629077672958, + -0.16755802929401398, + 0.13973216712474823, + 0.07444192469120026, + -0.31143471598625183, + 0.18391770124435425, + -0.2780292332172394, + 0.6395820379257202, + 0.16344054043293, + 0.3540366590023041, + -0.10454652458429337, + -0.14396260678768158, + 0.030690347775816917, + 0.07247544080018997, + 0.11944669485092163, + -0.06266411393880844, + 0.746099054813385, + 0.01752152293920517, + -0.21736067533493042, + 0.2475283294916153, + 0.378029465675354, + 0.05681362748146057, + -0.11917641013860703, + 0.05530008301138878, + 0.266002893447876, + -0.399318128824234, + 0.27910852432250977, + -0.5343899130821228, + -0.08214003592729568, + 0.14426210522651672, + -0.2697894275188446, + -0.07997474819421768, + 0.1840706616640091, + -0.017933830618858337, + 0.26634034514427185, + -0.131731316447258, + -0.25243809819221497, + 0.0835283175110817, + -0.031968142837285995, + -0.2028936743736267, + 0.39749446511268616, + 0.08120900392532349, + 0.09946431964635849, + 0.044041216373443604, + -0.02546260692179203, + 0.0724339559674263, + -0.16407684981822968, + 0.22411991655826569, + 0.03629983589053154, + -0.2842733561992645, + 0.33837684988975525, + -0.0886438712477684, + -0.1465633660554886, + 0.12527425587177277, + -0.18053577840328217, + -0.2895483672618866, + -0.012816091068089008, + -0.09556851536035538, + -0.35394033789634705, + 0.07229036837816238, + 0.08070308715105057, + 0.3121176064014435, + 0.20461921393871307, + 4.905710738967173e-05, + 0.08992432802915573, + -0.5199697613716125, + 0.2083672434091568, + -0.1663612723350525, + -0.06205447390675545, + -0.32892054319381714, + 0.17776262760162354, + -0.2799549698829651, + -0.0972403958439827, + 0.33253905177116394, + -0.08071468025445938, + -0.18257148563861847, + 0.17165090143680573, + -0.25163665413856506, + -0.08720184117555618, + -0.19364477694034576, + 0.054671499878168106, + 0.252407044172287, + 0.11490911990404129, + 0.2826528251171112, + 0.11767617613077164, + -0.12336000800132751, + 0.09276566654443741, + -0.27731582522392273, + -0.18298964202404022, + -0.47671476006507874, + -0.14202189445495605, + 0.018496515229344368, + -0.5993802547454834, + 0.16801469027996063, + 0.07973194867372513, + -0.0013876160373911262, + -0.045653682202100754, + -0.33230581879615784, + -0.0012772331247106194, + 0.163445845246315, + -0.03922129049897194, + 0.0017722795018926263, + -0.11665167659521103, + 0.07872911542654037, + -0.1943618804216385, + -0.3483332395553589, + -0.17248861491680145, + -0.07338465750217438, + 0.09968247264623642, + -0.1182420626282692, + -0.2505466639995575, + -0.11424145847558975, + 0.0013127898564562201, + -0.3670210838317871, + -0.1848040670156479, + 0.2742825448513031, + -0.1507759839296341, + 0.21252095699310303, + 0.05632394924759865, + 0.3326179087162018, + 0.2063983678817749, + 0.029591435566544533, + 0.18057890236377716, + 0.4103676974773407, + 0.3709429204463959, + -0.017779624089598656, + -0.034606318920850754, + -0.007724908646196127, + 0.045695602893829346, + -0.08002155274152756, + -0.38533344864845276, + 0.3793017566204071, + 0.1071031391620636, + 0.10296451300382614, + 0.07069254666566849, + 0.36779657006263733, + 0.005441606044769287, + -0.38927093148231506, + -0.10069600492715836, + 0.5456685423851013, + 0.08541423082351685, + -0.10129161924123764, + 0.10961446166038513, + 0.4655693769454956, + 0.4668560028076172, + -0.13056431710720062, + -0.04956544563174248, + 0.07061590999364853, + -0.18177707493305206, + -0.19679050147533417, + 0.00557708740234375, + 0.030663222074508667, + 0.3181333541870117, + -0.22169052064418793, + -0.06409766525030136, + 0.08539265394210815, + -0.09472513943910599, + 0.02657811902463436, + -0.13223829865455627, + -0.06731923669576645, + 0.06616104394197464, + -0.2302129715681076, + 0.3475155830383301, + -0.024517090991139412, + -0.08968755602836609, + 0.36126482486724854, + -0.19020330905914307, + -0.12211353331804276, + 0.016083644703030586, + -0.1588137298822403, + -0.5854529738426208, + 0.2755095958709717, + -0.22289706766605377, + -0.06993339955806732, + 0.4869135916233063, + 0.02377251349389553, + -0.01966768503189087, + -0.22424434125423431, + 0.5707665085792542, + 0.0332067646086216, + -0.07919532060623169, + -0.09923072904348373, + 0.029870420694351196, + 0.3073720335960388, + 0.620812177658081, + 0.13559965789318085, + 0.11281317472457886, + 0.6109906435012817, + 0.07495584338903427, + -0.38919031620025635, + -0.03515588864684105, + 0.0705595538020134, + 0.38878393173217773, + -0.17647235095500946, + -0.03561626002192497, + -0.12750737369060516, + 0.046741604804992676, + 0.10039909929037094, + -0.26356813311576843, + 0.01847011409699917, + 0.17721039056777954, + 0.08190552890300751, + -0.15950541198253632, + 0.2770512104034424, + 0.27112850546836853, + 0.0032518028747290373, + 0.35945752263069153, + -0.03184210881590843, + -0.10654445737600327, + 0.31992119550704956, + -0.3528558015823364, + 0.30592310428619385, + -0.09975346177816391, + -0.3961990773677826, + -0.36672520637512207, + -0.08207137137651443, + -0.12775923311710358, + -0.15936477482318878, + -0.12913481891155243, + -0.14401943981647491, + 0.11254676431417465, + -0.21620482206344604, + 0.29483357071876526, + -0.02212226577103138, + 0.16408224403858185, + 0.28115084767341614, + 0.3112162947654724, + 0.014696106314659119, + -0.2842748761177063, + 0.1381203979253769, + -0.11081848293542862, + 0.023555338382720947, + -0.11826885491609573, + -0.028673557564616203, + -0.2336243838071823, + 0.3967522382736206, + -0.04588780924677849, + 0.06092504784464836, + 0.1695277839899063, + 0.03718129172921181, + -0.1571987122297287, + -0.3715645372867584, + -0.13805319368839264, + -0.2159808874130249, + 0.014071543700993061, + -0.062045980244874954, + -0.029517801478505135, + -0.2533939778804779, + -0.23368202149868011, + -0.10982626676559448, + 0.08790113776922226, + 0.18961910903453827, + -0.12231236696243286, + 0.09637051075696945, + 0.3742850720882416, + 0.07072962075471878, + 0.3380357325077057, + -0.15378595888614655, + 0.008451796136796474, + 0.0217405017465353, + -0.37453365325927734, + -0.04701484739780426, + 0.0825422927737236, + -0.21404147148132324, + -0.19463223218917847, + 0.1623048633337021, + 0.28620991110801697, + -0.021477246657013893, + -0.12872157990932465, + 0.029457636177539825, + 0.3231445550918579, + -0.3518469035625458, + -0.17393644154071808, + 0.30389854311943054, + 0.1622898429632187, + 0.43758201599121094, + 0.07941227406263351, + -0.4650561809539795, + -0.15175531804561615, + 0.014103827066719532, + -0.44769176840782166, + -0.03098767064511776, + 0.3260617256164551, + -0.09110008925199509, + -0.11422155052423477, + 0.236707404255867, + -0.07638227194547653, + -0.06458715349435806, + 0.2565923035144806, + -0.23569516837596893, + 0.10280736535787582, + -0.056856125593185425, + -0.3487948179244995, + -0.14487729966640472, + -0.0796872079372406, + -0.25821229815483093, + -0.23597203195095062, + 0.4058920443058014, + 0.3858674466609955, + -0.27958741784095764, + 0.04305463656783104, + 0.18564464151859283, + -0.2107892483472824, + -0.3172265291213989, + -0.03658689185976982, + -0.35205087065696716, + 0.3962737023830414, + 0.059922248125076294, + -0.2386809140443802, + -0.00026689842343330383, + -0.2927051782608032, + 0.27056190371513367, + 0.0911899209022522, + 0.16944991052150726, + 0.42741313576698303, + 0.1214321032166481, + 0.1978882998228073, + 0.504374623298645, + 0.005633448716253042, + -0.0613153874874115, + 0.28258535265922546, + 0.05107240006327629, + 0.10605745762586594, + -0.2907721698284149, + -0.18825924396514893, + 0.2586396634578705, + -0.14710770547389984, + -0.10500334948301315, + 0.2620963454246521, + 0.2566259205341339, + -0.540591835975647, + -0.2529936730861664, + -0.0848318338394165, + 0.08593673259019852, + -0.06006813049316406, + -0.34598326683044434, + -0.14251643419265747, + -0.012761905789375305, + -0.11474955081939697, + -0.19960592687129974, + 0.3545219600200653, + 0.5344975590705872, + 0.025902435183525085, + 0.19099824130535126, + -0.33758866786956787, + -0.5173699855804443, + 0.1538613885641098, + 0.1805286854505539, + 0.06669548898935318, + -0.05540475249290466, + -0.1932937651872635, + 0.25104963779449463, + 0.43209215998649597, + -0.09778454899787903, + 0.12862829864025116, + 0.16517917811870575, + 0.06068188324570656, + -0.04963122680783272, + 0.06131303682923317, + -0.008265641517937183, + 0.10755834728479385, + -0.43452128767967224, + 0.3819529712200165, + -0.36276260018348694, + -0.3239673376083374, + 0.2665066719055176, + -0.045710813254117966, + -0.4091401994228363, + -0.27975839376449585, + 0.3073151409626007, + -0.14196984469890594, + 0.004132451955229044, + 0.11910352855920792, + 0.3948761224746704, + 0.031736768782138824, + -0.41514846682548523, + 0.09525658935308456, + -0.37080156803131104, + -0.259764701128006, + 0.06238173320889473, + -0.14729230105876923, + -0.12905482947826385, + -0.18828816711902618, + 0.3396526873111725, + 0.5465343594551086, + 0.14795686304569244, + -0.3229002356529236, + 0.04911140725016594, + 0.22349786758422852, + 0.20098602771759033, + -0.2806161940097809, + -10.61640453338623, + 0.004836500156670809, + -0.22633744776248932, + 0.5599594116210938, + -0.18089421093463898, + 0.006466247141361237, + 0.08144813776016235, + -0.11233105510473251, + 0.20984749495983124, + 0.18082423508167267, + -0.21274691820144653, + 0.029586076736450195, + 0.39225268363952637, + 0.3088441491127014, + 0.023165667429566383, + -0.2280430644750595, + -0.15842244029045105, + 0.14725680649280548, + 0.01297034788876772, + 0.3040338158607483, + 0.1762946993112564, + 0.4603245258331299, + -0.309648334980011, + 0.3325744569301605, + 0.19440679252147675, + -0.26723408699035645, + -0.15502987802028656, + 0.648459792137146, + 0.16438449919223785, + -0.2613111734390259, + 0.21759414672851562, + 0.22437064349651337, + -0.3554794490337372, + 0.23845221102237701, + -0.030861137434840202, + -0.23855642974376678, + 0.009867730550467968, + 0.13714003562927246, + 0.32355716824531555, + -0.2079150229692459, + 0.055450666695833206, + -0.20365482568740845, + 0.19912000000476837, + 0.21597127616405487, + -0.09915235638618469, + -0.47468945384025574, + -0.08271792531013489, + -1.429166316986084, + 0.269686222076416, + 0.41136956214904785, + 0.31794190406799316, + 0.07572992891073227, + 0.2117326855659485, + 0.21211153268814087, + -0.24880929291248322, + 0.024969441816210747, + -0.2851804792881012, + -0.12610290944576263, + 0.13055236637592316, + -0.07891478389501572, + 0.12094976752996445, + -0.1530510038137436, + 0.4795483648777008, + -0.08171482384204865, + -0.4182301461696625, + 0.033216141164302826, + 0.2239665538072586, + -0.08204814046621323, + -0.2721644341945648, + -0.6553576588630676, + -0.49013566970825195, + 0.05762360617518425, + -0.08884841948747635, + -0.002567797899246216, + 0.5008339285850525, + 0.04166834056377411, + -0.22496098279953003, + 0.25112268328666687, + -0.059415388852357864, + 0.3896584212779999, + 0.08378197997808456, + -0.07708150148391724, + 0.18656300008296967, + -0.10361650586128235, + -0.3212064504623413, + -0.20315741002559662, + 0.10339675098657608, + 0.643303632736206, + -0.10437323898077011, + -0.0773632600903511, + -0.09517675638198853, + 0.3152387738227844, + -0.04029890522360802, + -0.1806795448064804, + -0.4967038631439209, + 0.11987921595573425, + -0.18107642233371735, + 0.0642847791314125, + 0.1074148640036583, + -0.0740354135632515, + 0.0033364940900355577, + -0.02597319521009922, + -0.18950916826725006, + -0.5044722557067871, + -0.35946670174598694, + 0.19920969009399414, + 0.020135732367634773, + 0.29015153646469116, + 0.09725961089134216, + -0.16331429779529572, + -0.22278033196926117, + 0.05476031079888344, + 0.06840407848358154, + 0.7345065474510193, + 0.133744478225708, + -0.0048807524144649506, + 0.02288263477385044, + -0.4647581875324249, + -0.17210298776626587, + 0.16783495247364044, + 0.3405397832393646, + -0.08639329671859741, + 0.23816430568695068, + 0.669089138507843, + -0.055476535111665726, + -0.12739965319633484, + 1.0224874019622803, + -0.34021472930908203, + 0.28846606612205505, + -0.1920805126428604, + 0.2597421407699585, + 0.04337356612086296, + -0.45412933826446533, + 0.10811761766672134, + 0.44080421328544617, + -0.26053622364997864, + 0.6524688601493835, + 0.32140088081359863, + -0.46496903896331787, + 0.07720009237527847, + -0.2379464954137802, + 0.48834407329559326, + 0.3247201442718506, + 0.21568578481674194, + -0.018112363293766975, + -0.18466125428676605, + -0.30857929587364197, + -0.10561958700418472, + -0.4217849671840668, + -0.3501027822494507, + -0.10938239097595215, + 0.23045717179775238, + 0.11362884193658829, + -0.23097173869609833, + 0.33312419056892395, + 0.2232857346534729, + -0.18179292976856232, + -0.24263973534107208, + -0.5486912131309509, + -0.04603523388504982, + 0.10174617916345596, + 0.7319938540458679, + -0.17953132092952728, + 0.12761308252811432, + -0.16813963651657104, + 0.09682377427816391, + -0.07148442417383194, + 0.298421174287796, + 0.05831749737262726, + -0.07242394238710403, + -0.5346640944480896, + 0.11538214236497879, + 0.251813679933548, + -0.28705617785453796, + -0.25596556067466736, + -0.06288617104291916, + -0.16501039266586304, + -0.0160530898720026, + -0.1574195772409439, + 0.08763670176267624, + 0.364540696144104, + -0.03617069125175476, + -0.07612655311822891, + -0.39584532380104065, + 0.17263515293598175, + 0.10925782471895218, + 0.19620095193386078, + 0.221194788813591, + -0.32877370715141296, + -0.2730632424354553, + -0.5231608152389526, + 0.13386638462543488, + -0.24350003898143768, + -0.04871968552470207, + 0.036523785442113876, + 0.14355482161045074, + -0.2647777497768402, + 0.010369881987571716, + -0.14041107892990112, + -0.022885939106345177, + -0.08430659770965576, + 0.3382740318775177, + 0.37681302428245544, + -0.10922961682081223, + 0.18540708720684052, + -0.19820082187652588, + 0.17190410196781158, + 0.013123612850904465, + -0.32454729080200195, + 0.2598307132720947, + -0.21498900651931763 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_045.json b/src/benchmark/output/results/results_graph_045.json new file mode 100644 index 0000000..d0272bd --- /dev/null +++ b/src/benchmark/output/results/results_graph_045.json @@ -0,0 +1,792 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 67-year-old male with a significant smoking history (25-pack-year). He presented with left focal motor seizure and expressive aphasia, which led to the diagnosis of Seizure (C0003638) and Aphasia, Expressive (C0003684).\n\n**Timeline of Diagnoses:**\n\n1. **Initial Presentation:** The patient was diagnosed with Seizure (C0003638) and Aphasia, Expressive (C0003684) upon presentation.\n2. **Brain MRI:** A brain MRI revealed innumerable supra- and infratentorial peripheral enhancing lesions with edema, suggesting intracranial metastases (N2).\n3. **PET-CT:** Further investigation with PET-CT identified the primary cancer source as a hypermetabolic left lung mass and mediastinal and supraclavicular lymph nodes compatible with lung cancer (N3).\n4. **Lung Mass Biopsy:** Endobronchial biopsy of the lung mass revealed adenocarcinoma, with PD-L1 IHC testing showing 100% positivity and HER2 amplification (N4).\n\n**Timeline of Treatments:**\n\n1. **Pembrolizumab:** The patient was started on pembrolizumab due to high PD-L1 expression.\n2. **WBRT:** Whole-brain radiation therapy (WBRT) was recommended for brain metastases, but the treatment was discontinued after 1 cycle due to worsening of brain metastases.\n3. **T-DXd and Bevacizumab:** The patient's treatment was changed to T-DXd and bevacizumab due to disease progression and cerebral edema.\n\n**Timeline of Outcomes:**\n\n1. **Follow-up Brain MRI:** A repeat brain MRI 6 weeks after starting T-DXd revealed remarkable improvement in cerebral edema and metastases.\n2. **Repeat CT Chest:** A repeat CT chest scan showed a decrease in size of the previously noted spiculated left lower lung mass.\n\n**Conclusion:**\nThe patient's clinical course was marked by significant progression of brain metastases, which led to changes in treatment. Despite initial worsening, T-DXd and bevacizumab treatment resulted in remarkable improvement in cerebral edema and metastases, suggesting a positive response to therapy.", + "bertscore": { + "precision": 0.8003971576690674, + "recall": 0.784216046333313, + "f1": 0.7922239899635315 + }, + "bleu": 0.14053318317372476, + "rouge1": 0.4970414201183431, + "rougeL": 0.31952662721893493, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 7, + "edge_count": 6, + "avg_in_degree": 0.8571428571428571, + "density": 0.14285714285714285 + }, + "trajectory_embedding": [ + 0.2637527883052826, + 0.15972600877285004, + -0.13202765583992004, + 0.0957951694726944, + -0.04258505254983902, + 0.0973554328083992, + -0.016224455088377, + 0.34089890122413635, + 0.39410585165023804, + -0.33490127325057983, + -0.20745256543159485, + 0.13487695157527924, + -0.6351459622383118, + -0.0365443155169487, + -0.3216632008552551, + 0.12383513897657394, + -0.04760764166712761, + 0.31662067770957947, + -0.06834237277507782, + -0.24286700785160065, + -0.37497809529304504, + 0.16411073505878448, + -0.43277332186698914, + -0.07514923065900803, + 0.06403642892837524, + -0.020005354657769203, + 0.2891775965690613, + 0.4582820534706116, + 0.22687070071697235, + 0.18308284878730774, + 0.18474015593528748, + -0.2568388283252716, + 0.19740566611289978, + 0.011691286228597164, + -0.16997148096561432, + 0.13903766870498657, + 0.17487506568431854, + 0.4176679253578186, + -0.15436698496341705, + 0.017137208953499794, + -0.011626942083239555, + 0.048110801726579666, + 0.8511399626731873, + 0.035195719450712204, + 0.5597261786460876, + -0.6147104501724243, + -0.07765679061412811, + 0.6431477665901184, + -0.4261336326599121, + -0.36867809295654297, + 0.229380264878273, + 0.7217655777931213, + 0.6602807641029358, + -0.15820109844207764, + 0.5177961587905884, + -0.1491081863641739, + -0.23740649223327637, + -0.2248646765947342, + -0.19848905503749847, + -0.056266844272613525, + 0.019042667001485825, + -0.20766322314739227, + 0.36757853627204895, + -0.038557298481464386, + -0.17710256576538086, + -0.2060033231973648, + -0.32802411913871765, + 0.09531055390834808, + -0.12682174146175385, + -0.2203969955444336, + -0.20830987393856049, + -0.31587299704551697, + -0.06893990188837051, + 0.23850920796394348, + 0.14400969445705414, + -0.11313515156507492, + 0.3342128396034241, + -0.1472698301076889, + 0.12926934659481049, + 0.19706390798091888, + 0.012676345184445381, + -0.02184647135436535, + -0.06154792383313179, + 0.34769007563591003, + -0.39192500710487366, + -0.014913676306605339, + -0.03524230048060417, + -0.22039905190467834, + -0.2709943950176239, + 0.3129062354564667, + 0.15639899671077728, + -0.34709206223487854, + 0.036033958196640015, + -0.16157105565071106, + -0.017415408045053482, + 0.17977771162986755, + 0.3931047320365906, + 0.16289864480495453, + 0.9117298722267151, + 0.0013929770793765783, + 0.2624664902687073, + 0.06068174168467522, + 0.3065105378627777, + 0.22417746484279633, + 0.46222397685050964, + -0.1442607343196869, + 0.24867503345012665, + -0.48799949884414673, + 0.27146345376968384, + 0.4364672303199768, + 0.037431444972753525, + -0.206253781914711, + 0.04022981971502304, + -0.28229907155036926, + 0.20460005104541779, + 0.1434260904788971, + -0.0176934152841568, + 0.15191173553466797, + 0.26090261340141296, + -0.4999381899833679, + -0.2115931212902069, + -0.2053930014371872, + 0.34489282965660095, + 0.309303343296051, + -0.45342567563056946, + -0.1935085505247116, + -0.1126754954457283, + 0.12421313673257828, + -0.049952130764722824, + 0.09485150128602982, + -0.39121586084365845, + -0.12530088424682617, + -0.009347187355160713, + 0.083448126912117, + -0.19457602500915527, + 0.205155611038208, + -0.31584784388542175, + 0.02956199273467064, + -1.1532951593399048, + 0.2815471589565277, + -0.430154949426651, + -0.03833770006895065, + 0.03226082772016525, + -0.6268243193626404, + -0.22153650224208832, + -0.1255929172039032, + -0.19101296365261078, + 0.11373525112867355, + 0.007232058327645063, + 0.05552083998918533, + 0.08721967041492462, + -0.0992443636059761, + 0.22382180392742157, + 0.34708285331726074, + 0.08398731797933578, + 0.1591593325138092, + 0.0587204173207283, + 0.3365333676338196, + 0.17984867095947266, + -0.23264136910438538, + 0.11239274591207504, + 0.46427610516548157, + 0.09222613275051117, + 0.06498251110315323, + -0.13669796288013458, + -0.7199097275733948, + -0.021586906164884567, + -0.18329082429409027, + 0.14229771494865417, + 0.06944538652896881, + -0.1886615753173828, + 0.11794548481702805, + -0.2587200701236725, + 0.544649064540863, + 0.07818958908319473, + 0.5304498672485352, + -0.18079236149787903, + -0.053740475326776505, + 0.2642553150653839, + 0.08616920560598373, + 0.01999683305621147, + -0.21340325474739075, + 0.6605494618415833, + 0.29717132449150085, + -0.26265785098075867, + 0.27423804998397827, + 0.311699241399765, + -0.001036086236126721, + -0.29678651690483093, + -0.10100467503070831, + 0.5553122162818909, + -0.18075333535671234, + 0.4518263339996338, + -0.4147214889526367, + -0.0034423598553985357, + 0.05800507590174675, + -0.20979823172092438, + -0.14451228082180023, + 0.06419872492551804, + -0.10712110996246338, + 0.2841126322746277, + 0.030792955309152603, + -0.3180393874645233, + 0.023522982373833656, + 0.12839145958423615, + -0.10140885412693024, + 0.18859948217868805, + 0.11593180149793625, + 0.10533011704683304, + 0.01946941390633583, + -0.07527224719524384, + 0.1365254670381546, + -0.14860615134239197, + 0.26855456829071045, + -0.009721837006509304, + -0.3767549991607666, + 0.10302142798900604, + -0.047712188214063644, + -0.23280011117458344, + 0.05171123519539833, + -0.06059455871582031, + -0.2602473795413971, + 0.05232662707567215, + -0.05336546525359154, + -0.5786672234535217, + 0.2160010039806366, + 0.1444745808839798, + 0.1140553280711174, + 0.16545473039150238, + -0.0035833269357681274, + -0.056768592447042465, + -0.27592307329177856, + 0.3437183201313019, + -0.07896008342504501, + -0.18098406493663788, + -0.4656810760498047, + 0.11493153870105743, + -0.1449211686849594, + 0.0034292936325073242, + 0.3769422471523285, + 0.040099237114191055, + -0.09804553538560867, + 0.18380889296531677, + -0.3745386004447937, + -0.0044115399941802025, + -0.4124279320240021, + -0.06304947286844254, + 0.3213532865047455, + 0.04136717692017555, + 0.26136744022369385, + 0.06261925399303436, + -0.2485232651233673, + 0.09210673719644547, + -0.26061758399009705, + -0.3736634850502014, + -0.3312024772167206, + -0.0318279042840004, + -0.08023025840520859, + -0.6199169754981995, + 0.1957211196422577, + 0.04584003612399101, + -0.03906792402267456, + 0.2552802860736847, + -0.39121267199516296, + -0.1781294196844101, + -0.015399664640426636, + -0.10242144018411636, + 0.12071461230516434, + -0.22393164038658142, + 0.13019175827503204, + -0.3749783933162689, + -0.2053486406803131, + -0.17232564091682434, + 0.047892410308122635, + 0.12914982438087463, + 0.15930365025997162, + -0.3059995770454407, + 0.16997560858726501, + 0.1808319389820099, + -0.37324258685112, + -0.27394071221351624, + 0.11035378277301788, + -0.24858367443084717, + 0.12700006365776062, + -0.01957264170050621, + 0.17109377682209015, + 0.2831864655017853, + 0.09330098330974579, + 0.2010422646999359, + 0.432858943939209, + 0.4787144958972931, + -0.047952957451343536, + -0.021694811061024666, + -0.15334513783454895, + -0.05889565125107765, + -0.0704054981470108, + -0.385530948638916, + 0.2582003176212311, + -0.07181493937969208, + 0.05231761187314987, + 0.11586909741163254, + 0.3327983319759369, + 0.08703934401273727, + -0.43144282698631287, + -0.04570610076189041, + 0.6240317225456238, + 0.02538215182721615, + 0.09686533361673355, + 0.1127510517835617, + 0.3463146388530731, + 0.5116881132125854, + -0.08836204558610916, + -0.013095702044665813, + 0.12576892971992493, + -0.12213891744613647, + -0.22938813269138336, + -0.0769309252500534, + 0.09046809375286102, + 0.4409720003604889, + -0.07795362174510956, + -0.2778860032558441, + 0.15930700302124023, + -0.08664760738611221, + -0.14723923802375793, + -0.14835111796855927, + -0.093327097594738, + 0.05378052964806557, + -0.2364777773618698, + 0.3124886453151703, + 0.0418986976146698, + 0.00939310621470213, + 0.4885781407356262, + -0.24560263752937317, + -0.14027772843837738, + 0.3196834921836853, + -0.09336373955011368, + -0.4874247610569, + 0.4141414165496826, + -0.13485676050186157, + -0.1001845970749855, + 0.37420058250427246, + -0.22730396687984467, + 0.00928629282861948, + -0.10739663988351822, + 0.30588290095329285, + -0.05714850500226021, + 0.07800091803073883, + -0.13693810999393463, + 0.005378518719226122, + 0.16613569855690002, + 0.5570912957191467, + 0.16769035160541534, + 0.13775865733623505, + 0.5849872827529907, + -0.06542567908763885, + -0.33793362975120544, + 0.060642652213573456, + -0.014186031185090542, + 0.36246150732040405, + -0.33592769503593445, + -0.20529766380786896, + -0.31354084610939026, + 0.08161328732967377, + 0.048976968973875046, + -0.17789551615715027, + 0.028911912813782692, + 0.1808389127254486, + 0.10076800733804703, + -0.0009220232022926211, + 0.30937886238098145, + 0.21956171095371246, + -0.2059270292520523, + 0.4281466007232666, + 0.022237194702029228, + -0.1602182537317276, + 0.3684556782245636, + -0.16353966295719147, + 0.26192668080329895, + -0.07123000174760818, + -0.2690967917442322, + -0.2597518563270569, + 0.11440259218215942, + -0.3152306079864502, + -0.19585253298282623, + -0.0339721143245697, + -0.23695333302021027, + 0.010022210888564587, + -0.19625461101531982, + 0.12993116676807404, + 0.10266727209091187, + 0.21011866629123688, + 0.0202326737344265, + 0.4409562945365906, + 0.21631334722042084, + -0.27948686480522156, + 0.09791842848062515, + -0.07134319841861725, + 0.2166842669248581, + -0.29761356115341187, + 0.1403992921113968, + -0.1599283218383789, + 0.5187095999717712, + 0.02781805396080017, + -0.058076974004507065, + 0.07819662988185883, + -0.018465561792254448, + -0.21467988193035126, + -0.457146018743515, + 0.01073733065277338, + -0.06304458528757095, + -0.0010013665305450559, + -0.02185508981347084, + 0.12238343805074692, + -0.23991276323795319, + -0.14299596846103668, + -0.02987738512456417, + 0.10046664625406265, + 0.06958045810461044, + -0.17561854422092438, + -0.09605572372674942, + 0.3901654779911041, + 0.1312832534313202, + 0.4573516249656677, + -0.2683428227901459, + 0.14714206755161285, + 0.0652875155210495, + -0.37555932998657227, + -0.05103660002350807, + -0.05366930738091469, + -0.3715563118457794, + -0.07986108213663101, + 0.21332654356956482, + 0.179373636841774, + 0.007311542052775621, + 0.001032271538861096, + -0.00010280683636665344, + 0.3239199221134186, + -0.2767238914966583, + -0.049160685390233994, + 0.530314028263092, + 0.12989477813243866, + 0.4905761182308197, + 0.004146810155361891, + -0.5527881383895874, + -0.22600515186786652, + 0.031683918088674545, + -0.41813912987709045, + 0.12095123529434204, + 0.21629633009433746, + -0.19794057309627533, + -0.19331757724285126, + 0.0949043408036232, + 0.05562594160437584, + -0.04136047512292862, + 0.21197029948234558, + -0.2531126141548157, + 0.12098496407270432, + 0.07788611203432083, + -0.1887999325990677, + -0.017728522419929504, + -0.254666268825531, + -0.34406372904777527, + -0.13412807881832123, + 0.31496280431747437, + 0.18840788304805756, + -0.2499838024377823, + 0.10926063358783722, + 0.18608450889587402, + -0.17826566100120544, + -0.3046448826789856, + -0.04454020783305168, + -0.18970942497253418, + 0.551347553730011, + -0.08273109048604965, + -0.19173946976661682, + 0.28548452258110046, + -0.11262212693691254, + 0.06890810281038284, + 0.17221508920192719, + 0.16801312565803528, + 0.3690635561943054, + 0.15949463844299316, + 0.19221487641334534, + 0.5538449883460999, + 0.08934397995471954, + 0.06078023090958595, + 0.2536282539367676, + 0.06985469907522202, + -0.04857928678393364, + -0.2065393030643463, + -0.2484283149242401, + 0.29207712411880493, + -0.38521578907966614, + -0.008189703337848186, + -0.015269530937075615, + 0.21376968920230865, + -0.39759543538093567, + -0.30834290385246277, + -0.081883504986763, + 0.028478655964136124, + -0.15560348331928253, + -0.26889750361442566, + -0.15018899738788605, + -0.056336574256420135, + -0.22019515931606293, + -0.106744185090065, + 0.3347203731536865, + 0.48884087800979614, + 0.190956249833107, + 0.2549979090690613, + -0.2988419830799103, + -0.3802010715007782, + 0.11378878355026245, + 0.2821696102619171, + 0.07678768783807755, + -0.10542363673448563, + -0.21799468994140625, + 0.19259928166866302, + 0.530512273311615, + -0.1731937676668167, + -0.013003485277295113, + 0.09567994624376297, + -0.0677076131105423, + 0.06797543913125992, + -0.031116720288991928, + -0.09281259775161743, + 0.06805676966905594, + -0.4920804500579834, + 0.23916271328926086, + -0.1083448976278305, + -0.2104412019252777, + 0.27111950516700745, + -0.21855852007865906, + -0.5184774994850159, + -0.1265622079372406, + 0.2419375330209732, + -0.20211681723594666, + -0.14468839764595032, + 0.1924026906490326, + 0.4019602835178375, + 0.04507601261138916, + -0.20694197714328766, + 0.0886058434844017, + -0.5126371383666992, + -0.21900807321071625, + 0.16007192432880402, + -0.13521035015583038, + -0.04983597621321678, + 0.007017518859356642, + 0.2386220544576645, + 0.3893115222454071, + 0.18145941197872162, + -0.1922331154346466, + 0.14157900214195251, + 0.5028610825538635, + 0.36395135521888733, + -0.19748075306415558, + -10.717467308044434, + -0.14767269790172577, + -0.25542184710502625, + 0.509068489074707, + -0.20895706117153168, + 0.07010151445865631, + 0.023230237886309624, + -0.045165419578552246, + 0.1871204376220703, + 0.2113236039876938, + -0.14502492547035217, + -0.014968454837799072, + 0.24801072478294373, + 0.28149133920669556, + -0.011811167001724243, + 0.13910724222660065, + -0.2954607605934143, + 0.2671447694301605, + 0.007963201031088829, + 0.22624894976615906, + 0.19095899164676666, + 0.41713374853134155, + -0.36062756180763245, + 0.21348626911640167, + 0.0687461718916893, + -0.3522712290287018, + -0.1540302038192749, + 0.5286874771118164, + 0.2612105906009674, + -0.3893272876739502, + 0.22630809247493744, + 0.09640133380889893, + -0.1321679800748825, + -0.02455376461148262, + -0.054253049194812775, + -0.13033358752727509, + -0.09656483680009842, + 0.133830264210701, + 0.2701391577720642, + -0.177614226937294, + 0.12847605347633362, + -0.16909202933311462, + 0.35832494497299194, + 0.23327329754829407, + -0.19464504718780518, + -0.5269423127174377, + -0.09118587523698807, + -1.675971269607544, + 0.3057993948459625, + 0.2951194643974304, + 0.5006667971611023, + -0.04268503934144974, + 0.2271026223897934, + 0.1632169932126999, + -0.4504690170288086, + -0.1289357990026474, + -0.3015478551387787, + -0.04091610386967659, + 0.16493450105190277, + -0.043372996151447296, + 0.16545049846172333, + -0.020705411210656166, + 0.5153104662895203, + -0.2186545580625534, + -0.16885803639888763, + 0.0722784474492073, + -0.0008209847728721797, + -0.05834666267037392, + -0.24107812345027924, + -0.5792292356491089, + -0.5673157572746277, + 0.06863474100828171, + 0.006406003143638372, + -0.09822483360767365, + 0.4548388123512268, + -0.0030777044594287872, + -0.29057884216308594, + 0.2774486839771271, + -0.10641195625066757, + 0.46444377303123474, + 0.3257273733615875, + -0.13071709871292114, + 0.07945980876684189, + -0.19545210897922516, + -0.2553441524505615, + -0.13610242307186127, + 0.1599007546901703, + 0.5419639348983765, + -0.08192604780197144, + -0.0570390485227108, + -0.02456311695277691, + 0.3714301288127899, + -0.11653799563646317, + -0.0926886796951294, + -0.4074513018131256, + 0.0068917651660740376, + 0.0073386915028095245, + 0.031838733702898026, + -0.0035169762559235096, + -0.10699260234832764, + -0.2188466489315033, + -0.025023801252245903, + -0.09684360027313232, + -0.5786617994308472, + -0.5661852955818176, + 0.23602087795734406, + 0.21873930096626282, + 0.17109178006649017, + 0.05161571875214577, + -0.07227950543165207, + -0.17798876762390137, + -0.005457459948956966, + 0.31478866934776306, + 0.545839250087738, + 0.16239574551582336, + 0.04875868558883667, + -0.13044869899749756, + -0.1900259107351303, + -0.18313400447368622, + 0.02145831473171711, + 0.4335358440876007, + -0.0728669986128807, + 0.2807242274284363, + 0.6965659856796265, + 0.026387104764580727, + -0.14012061059474945, + 1.0217301845550537, + -0.271355003118515, + 0.2382143884897232, + -0.16125039756298065, + 0.20323047041893005, + -0.03228753060102463, + -0.3927547037601471, + 0.09548906981945038, + 0.372710257768631, + -0.3653051555156708, + 0.7228313684463501, + 0.21654793620109558, + -0.5085169076919556, + 0.032327450811862946, + -0.4331655204296112, + 0.42982953786849976, + 0.25772780179977417, + 0.2714661955833435, + -0.2287147045135498, + -0.2991470992565155, + -0.3384869396686554, + 0.15062685310840607, + -0.3403807282447815, + -0.324948787689209, + -0.13339149951934814, + 0.11199881881475449, + 0.1223236471414566, + -0.1844135820865631, + 0.2829793095588684, + 0.21342121064662933, + -0.1674823760986328, + -0.3533896803855896, + -0.4094894826412201, + -0.213298961520195, + 0.058607518672943115, + 0.7778774499893188, + 0.032708700746297836, + -0.10342276096343994, + -0.04681689664721489, + 0.1619551032781601, + -0.19435203075408936, + 0.11240453273057938, + 0.20556488633155823, + -0.06238192319869995, + -0.41855505108833313, + 0.23142662644386292, + 0.1846342235803604, + -0.4124789237976074, + -0.14119097590446472, + -0.1496214121580124, + -0.028181463479995728, + 0.12397100776433945, + -0.16651932895183563, + 0.17961028218269348, + 0.21722204983234406, + 0.007520813960582018, + 0.07293646037578583, + -0.15725800395011902, + -0.04658053442835808, + 0.2346431016921997, + 0.2886977791786194, + 0.1455422192811966, + -0.3175258934497833, + -0.42687568068504333, + -0.43980544805526733, + 0.20059509575366974, + -0.4005231261253357, + -0.12408202886581421, + 0.07013263553380966, + 0.19881834089756012, + -0.21606789529323578, + 0.13770337402820587, + -0.12290889769792557, + -0.07209273427724838, + -0.18376101553440094, + 0.22134855389595032, + 0.5125210881233215, + -0.16460299491882324, + 0.30647435784339905, + -0.0637965202331543, + 0.26974478363990784, + 0.11607911437749863, + -0.34786686301231384, + 0.07689502090215683, + -0.1913035809993744 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_046.json b/src/benchmark/output/results/results_graph_046.json new file mode 100644 index 0000000..f1c03e6 --- /dev/null +++ b/src/benchmark/output/results/results_graph_046.json @@ -0,0 +1,792 @@ +{ + "status": "success", + "reconstructed_narrative": "The patient in question is a 55-year-old male who was initially diagnosed with intermittent dry cough and left temporal headaches. Over time, his symptoms progressed to subacute vertigo, nausea, vomiting, and ataxia. These symptoms led to hospital admission, where initial investigations including cranial MRI and CSF analysis were unremarkable.\n\nFollowing the progression of symptoms, negative paraneoplastic antibody profiles and anti-neuronal surface antigen antibody spectrum in blood and CSF were found, indicating that symptomatic therapy was ineffective. The patient's condition continued to deteriorate, leading to hospital admission with positive Romberg sign and gait ataxia. A CT scan revealed a solid mass shadow in the upper lobe of the right lung, along with multiple enlarged lymph nodes in both hilum and mediastinum.\n\nAbnormal serum tumor markers, including SCCAg, NSE, and Cyfra21-1, were detected, and the patient was diagnosed with squamous cell lung carcinoma. Contrast-enhanced MRI of the head showed no obvious abnormality, but PET-CT revealed a malignant lesion in the upper lobe of the right lung with multiple lymph node metastasis.\n\nThe histological and immunohistochemical results confirmed that the patient had squamous cell lung carcinoma. Following this diagnosis, oral prednisone was initiated to alleviate symptoms such as vertigo, nausea, and vomiting. Intravenous immunoglobulin (IVIG) was also started, which led to an improvement in these symptoms.\n\nThe patient's treatment plan included three courses of intravenous etoposide and cisplatin, with radiotherapy administered at a dose of 50.4 Gy. The timeline for the patient's diagnosis and treatment is as follows:\n\n* Initial symptoms: intermittent dry cough and left temporal headaches\n* Progression of symptoms: subacute vertigo, nausea, vomiting, and ataxia (hospital admission)\n* Diagnosis: squamous cell lung carcinoma with multiple lymph node metastasis\n* Treatment:\n\t+ Oral prednisone initiated to alleviate symptoms\n\t+ Intravenous immunoglobulin (IVIG) started to alleviate symptoms\n\t+ Three courses of intravenous etoposide and cisplatin\n\t+ Radiotherapy administered at a dose of 50.4 Gy\n\nThe patient's current status is not explicitly stated in the provided data, but it can be inferred that they are receiving ongoing treatment for their squamous cell lung carcinoma. The timeline suggests that the patient has been under treatment for several weeks, with some improvement in symptoms and potentially some progression or stabilization of the disease.\n\nIt is worth noting that the patient's demographics, including age and sex, are not explicitly stated in the provided data. However, based on the information provided, it can be inferred that the patient is a 55-year-old male who has been diagnosed with squamous cell lung carcinoma.", + "bertscore": { + "precision": 0.6984645128250122, + "recall": 0.7505180239677429, + "f1": 0.7235563397407532 + }, + "bleu": 0.0352731369608729, + "rouge1": 0.1935483870967742, + "rougeL": 0.1252371916508539, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 2, + "node_count": 9, + "edge_count": 7, + "avg_in_degree": 0.7777777777777778, + "density": 0.09722222222222222 + }, + "trajectory_embedding": [ + 0.21283334493637085, + 0.2261987030506134, + -0.18569672107696533, + 0.07250019162893295, + -0.07191392034292221, + 0.026674848049879074, + 0.13202348351478577, + 0.17625777423381805, + 0.3370841145515442, + -0.3352464735507965, + -0.19530074298381805, + 0.2723828852176666, + -0.5447418689727783, + -0.1018790602684021, + -0.38133886456489563, + 0.0197188351303339, + -0.013194016180932522, + 0.2992449104785919, + -0.11195860803127289, + -0.15697285532951355, + -0.24436324834823608, + 0.10384102165699005, + -0.3071918785572052, + -0.1414511799812317, + 0.024036221206188202, + 0.044095903635025024, + 0.31548312306404114, + 0.39260685443878174, + 0.14768189191818237, + 0.28036460280418396, + 0.3064742088317871, + 0.18841558694839478, + -0.0862426608800888, + -0.041264329105615616, + -0.16962404549121857, + 0.31783565878868103, + 0.25215375423431396, + 0.2695865035057068, + -0.042982976883649826, + 0.03094445914030075, + -0.030378904193639755, + 0.06392259150743484, + 0.6801570057868958, + 0.21543031930923462, + 0.5389238595962524, + -0.605004608631134, + -0.043979160487651825, + 0.4234747886657715, + -0.33355647325515747, + -0.001393609563820064, + 0.2408851832151413, + 0.6266682147979736, + 0.5581599473953247, + -0.007645789068192244, + 0.363479346036911, + -0.16565929353237152, + -0.2857747972011566, + -0.2333429902791977, + -0.18875747919082642, + 0.16070450842380524, + 0.020091155543923378, + -0.015242391265928745, + 0.004262878559529781, + 0.0805559754371643, + -0.225491464138031, + -0.08067435771226883, + -0.10134094208478928, + 0.07511609047651291, + -0.036051489412784576, + -0.14822736382484436, + -0.3002973198890686, + -0.36176469922065735, + -0.10734054446220398, + 0.19100052118301392, + 0.08973736315965652, + -0.2704123556613922, + 0.27427226305007935, + 0.011898607015609741, + 0.13745014369487762, + 0.14464294910430908, + 0.07898195832967758, + 0.03388437256217003, + -0.002102586906403303, + 0.19303452968597412, + -0.3502916693687439, + 0.14056171476840973, + -0.06496694684028625, + -0.0340188704431057, + -0.2515440583229065, + 0.25466108322143555, + 0.2112123668193817, + -0.2544920742511749, + -0.06839431822299957, + -0.15561389923095703, + -0.008667134679853916, + 0.0018484062748029828, + 0.07454684376716614, + 0.42554399371147156, + 0.9718409776687622, + 0.03468671813607216, + 0.18116915225982666, + 0.13545650243759155, + 0.2403615564107895, + 0.04644368961453438, + 0.4630066454410553, + -0.289556086063385, + 0.23708555102348328, + -0.46381527185440063, + 0.12591427564620972, + 0.3964519500732422, + 0.01366723608225584, + -0.10981326550245285, + -0.0507669672369957, + -0.23785100877285004, + -0.0004187557497061789, + 0.02311922051012516, + -0.14743798971176147, + 0.2172967791557312, + 0.06545457243919373, + -0.37822937965393066, + 0.007886763662099838, + -0.2027176171541214, + 0.16810692846775055, + 0.30216607451438904, + -0.31726202368736267, + -0.09446362406015396, + -0.04623013734817505, + 0.07307060807943344, + 0.06007042154669762, + 0.14948076009750366, + -0.265523225069046, + -0.09516588598489761, + 0.02646833285689354, + 0.21589338779449463, + -0.12413574755191803, + 0.31536081433296204, + -0.46508774161338806, + 0.08332397788763046, + -1.0640779733657837, + 0.13872206211090088, + -0.33625900745391846, + -0.07653570175170898, + 0.09586820006370544, + -0.45436224341392517, + -0.09874200820922852, + -0.1680566370487213, + -0.19887857139110565, + 0.13407449424266815, + -0.043161749839782715, + -0.019084269180893898, + -0.03355707600712776, + -0.045656006783246994, + 0.0748986080288887, + 0.07378706336021423, + -0.018580952659249306, + 0.1397104114294052, + 0.19816569983959198, + 0.3265959918498993, + 0.17126215994358063, + -0.17007790505886078, + -0.011945413425564766, + 0.33434587717056274, + -0.1633022427558899, + 0.03446871414780617, + 0.02192101441323757, + -0.5796559453010559, + 0.1331268548965454, + -0.28031033277511597, + 0.19753162562847137, + -0.06252069026231766, + -0.14420628547668457, + 0.15576739609241486, + -0.09634782373905182, + 0.48831450939178467, + 0.33430176973342896, + 0.46575137972831726, + -0.049799975007772446, + -0.01480710506439209, + 0.10451763868331909, + 0.040878474712371826, + -0.07442136853933334, + -0.024852236732840538, + 0.43379896879196167, + 0.12939031422138214, + -0.3333817720413208, + 0.10121433436870575, + 0.41327017545700073, + -0.21703380346298218, + -0.16962268948554993, + -0.10190442204475403, + 0.28198665380477905, + -0.22347715497016907, + 0.22554223239421844, + -0.2476748824119568, + -0.06317707896232605, + -0.011066824197769165, + -0.29848989844322205, + -0.25970691442489624, + 0.13536418974399567, + -0.09653794765472412, + 0.16976243257522583, + 0.09345123916864395, + -0.24072140455245972, + 0.16812534630298615, + 0.16770689189434052, + -0.11964637786149979, + 0.23136168718338013, + 0.05894629284739494, + 0.07916602492332458, + -0.16929058730602264, + -0.27491092681884766, + 0.15414299070835114, + 0.1325346827507019, + 0.2680622935295105, + 0.04969082027673721, + -0.14524608850479126, + 0.15766379237174988, + -0.06972102075815201, + -0.11582052707672119, + 0.08449088037014008, + -0.033755555748939514, + -0.07581183314323425, + 0.24828237295150757, + 0.05252065137028694, + -0.30359601974487305, + 0.1934724599123001, + 0.15098494291305542, + 0.09961482137441635, + 0.010259062051773071, + -0.16212156414985657, + 0.0635111853480339, + -0.24676460027694702, + 0.31443431973457336, + -0.11933349072933197, + -0.26863938570022583, + -0.2714122533798218, + 0.09790021926164627, + -0.025338806211948395, + -0.22963809967041016, + 0.3331666886806488, + -0.0713672935962677, + -0.13498127460479736, + 0.17511877417564392, + -0.21284346282482147, + -0.050672683864831924, + -0.13277965784072876, + -0.02451874129474163, + 0.35359668731689453, + 0.14838196337223053, + 0.35270678997039795, + 0.20181067287921906, + -0.057285111397504807, + 0.1375797986984253, + -0.3551873564720154, + -0.13520625233650208, + -0.28147387504577637, + -0.05275240167975426, + -0.09671392291784286, + -0.4379449784755707, + -0.10087770968675613, + 0.14222633838653564, + -0.250449538230896, + 0.15648314356803894, + -0.3380715847015381, + -0.0799122005701065, + -0.1471976637840271, + -0.10669047385454178, + 0.1332779973745346, + -0.25184744596481323, + 0.02016431652009487, + -0.3227500021457672, + -0.1776902973651886, + -0.0762394517660141, + 0.09082266688346863, + 0.20542031526565552, + 0.1545739620923996, + 0.02847827784717083, + 0.2123955339193344, + 0.13280418515205383, + -0.4918714761734009, + -0.407980352640152, + 0.09903141111135483, + -0.30152398347854614, + 0.32844293117523193, + -0.1322653889656067, + 0.23518212139606476, + 0.5350030064582825, + 0.03905997425317764, + 0.19683937728405, + 0.33506685495376587, + 0.49745315313339233, + 0.12021812051534653, + -0.1583317220211029, + 0.005540571175515652, + 0.0022256742231547832, + -0.003721402259543538, + -0.42594677209854126, + 0.18814119696617126, + -0.20640332996845245, + -0.10578683018684387, + -0.04623890668153763, + 0.1836135983467102, + 0.08455851674079895, + -0.3398422300815582, + -0.22167637944221497, + 0.5941989421844482, + 0.045187801122665405, + 0.06291237473487854, + 0.0490005761384964, + 0.32379281520843506, + 0.50832599401474, + 0.061645057052373886, + -0.19589084386825562, + -0.03434114158153534, + -0.23751074075698853, + -0.1602248102426529, + -0.23692086338996887, + 0.04062122851610184, + 0.2064872533082962, + 0.01689378172159195, + -0.09402807801961899, + 0.3246709704399109, + -0.03264154866337776, + -0.33337417244911194, + 0.019046170637011528, + -0.03687463328242302, + -0.040471598505973816, + -0.34209638833999634, + 0.2732621729373932, + -0.12541009485721588, + 0.010057424195110798, + 0.4563547670841217, + -0.16165989637374878, + -0.24885593354701996, + 0.27481141686439514, + 0.09622248262166977, + -0.3593529760837555, + 0.288421630859375, + -0.21253246068954468, + 0.00503713870421052, + 0.18412859737873077, + -0.1113007590174675, + -0.02591375820338726, + -0.16554638743400574, + 0.16822431981563568, + 0.10946062207221985, + 0.027460826560854912, + -0.13611605763435364, + 0.04138593375682831, + 0.005130467936396599, + 0.4780403673648834, + 0.11630149930715561, + -0.017535844817757607, + 0.3281402587890625, + -0.13995331525802612, + -0.20071503520011902, + 0.07032229006290436, + 0.009234660305082798, + 0.06395798921585083, + -0.28026992082595825, + -0.1801179051399231, + -0.24279287457466125, + 0.24337822198867798, + 0.04438222944736481, + -0.2879486680030823, + 0.013043173588812351, + 0.0997292697429657, + -0.08866995573043823, + -0.0069495271891355515, + 0.20371156930923462, + 0.3201078772544861, + -0.00961106363683939, + 0.3998523950576782, + 0.015987148508429527, + -0.06414195895195007, + 0.1502019613981247, + 0.020884687080979347, + 0.26524603366851807, + -0.08179717510938644, + -0.4002271294593811, + -0.3346138894557953, + 0.05195220559835434, + -0.08302678167819977, + -0.12294937670230865, + 0.052113279700279236, + -0.0507148802280426, + -0.028813868761062622, + -0.10453584790229797, + 0.21591179072856903, + -0.10600656270980835, + 0.12666364014148712, + -0.08397616446018219, + 0.3688596189022064, + -0.09853846579790115, + -0.3165881037712097, + 0.05747140198945999, + 0.050059668719768524, + 0.21534447371959686, + -0.1537393182516098, + -0.06781406700611115, + -0.11774025857448578, + 0.26112401485443115, + -0.12978605926036835, + -0.048902615904808044, + -4.07341867685318e-05, + -0.0012700326042249799, + -0.2337864488363266, + -0.38982418179512024, + 0.0813867598772049, + -0.06676480919122696, + -0.19045819342136383, + -0.20997051894664764, + 0.23356352746486664, + -0.058150988072156906, + -0.19093768298625946, + 0.0025059713516384363, + 0.26999032497406006, + 0.20945996046066284, + -0.06236864626407623, + 0.12354644387960434, + 0.27220234274864197, + -0.04315519705414772, + 0.21787072718143463, + -0.1447262167930603, + 0.17601896822452545, + -0.03411378338932991, + -0.26682984828948975, + 0.0814981535077095, + 0.009347396902740002, + -0.21583884954452515, + -0.019352883100509644, + 0.02298767864704132, + 0.13206809759140015, + 0.05135887861251831, + -0.007022013887763023, + -0.0631742924451828, + 0.05752534419298172, + -0.2853194773197174, + 0.0693616047501564, + 0.4101787507534027, + -0.03222912922501564, + 0.31939446926116943, + -0.05273374170064926, + -0.3583529591560364, + -0.07946258038282394, + -0.11275181174278259, + -0.3122475743293762, + 0.1589924544095993, + 0.06508535891771317, + -0.181715726852417, + -0.06236620247364044, + 0.09195244312286377, + 0.12129002064466476, + -0.024573825299739838, + 0.19135305285453796, + 0.04742388054728508, + 0.05829234421253204, + -0.011050757020711899, + -0.281404584646225, + -0.01098252460360527, + -0.36622852087020874, + -0.18200738728046417, + -0.33202052116394043, + 0.35880517959594727, + 0.1444559097290039, + -0.04766280576586723, + 0.06378807872533798, + 0.05220311880111694, + -0.3367024064064026, + -0.13326400518417358, + 0.03771273419260979, + -0.06240672618150711, + 0.5404244661331177, + 0.18733787536621094, + -0.15763355791568756, + 0.18037450313568115, + -0.316437304019928, + 0.009263915941119194, + 0.20572476089000702, + 0.16431133449077606, + 0.28605031967163086, + 0.20958532392978668, + 0.2013704478740692, + 0.4319247007369995, + 0.20126846432685852, + -0.005891015287488699, + 0.3217604458332062, + -0.027137458324432373, + 0.007510947063565254, + -0.13873188197612762, + -0.1854327917098999, + 0.37591949105262756, + -0.3473818004131317, + 0.14400824904441833, + 0.1279822140932083, + 0.2321036458015442, + -0.2766396403312683, + -0.23293399810791016, + -0.0751987174153328, + -0.049745071679353714, + -0.16147270798683167, + -0.4183061420917511, + -0.14531849324703217, + 0.08848855644464493, + -0.3244529664516449, + 0.048147521913051605, + 0.3318268060684204, + 0.20140165090560913, + 0.20443791151046753, + 0.08305230736732483, + -0.18334899842739105, + -0.44337591528892517, + 0.14690585434436798, + 0.2870486080646515, + 0.015619761310517788, + -0.11644724011421204, + -0.1881403625011444, + 0.08180245012044907, + 0.49300214648246765, + -0.08759057521820068, + -0.1492140144109726, + -0.10097543150186539, + -0.09030762314796448, + -0.019598310813307762, + 0.009156394749879837, + -0.10598734021186829, + -0.12093382328748703, + -0.29830437898635864, + 0.14583489298820496, + -0.20407335460186005, + -0.3196157217025757, + 0.11356539279222488, + -0.23035423457622528, + -0.3347676992416382, + -0.07506687194108963, + 0.2951148748397827, + -0.1841394305229187, + -0.08473078906536102, + 0.057009320706129074, + 0.5688856840133667, + 0.15249386429786682, + 0.024907313287258148, + 0.09165069460868835, + -0.3258637487888336, + 0.0017414229223504663, + 0.21541738510131836, + -0.1512048840522766, + 0.16125212609767914, + 0.12769708037376404, + 0.26745450496673584, + 0.2590113878250122, + 0.20553970336914062, + -0.4713110327720642, + 0.12736015021800995, + 0.26676782965660095, + 0.16526669263839722, + -0.2720050513744354, + -10.899870872497559, + 0.045490071177482605, + -0.14056718349456787, + 0.48876774311065674, + -0.15082964301109314, + 0.11659985035657883, + 0.1083529070019722, + 0.03025604598224163, + 0.22857099771499634, + 0.2745342254638672, + -0.33267533779144287, + 0.059894442558288574, + 0.1682625561952591, + 0.11300323903560638, + 0.051654599606990814, + 0.014451961033046246, + -0.10297545790672302, + 0.2783627510070801, + 0.08534044772386551, + 0.2424316704273224, + 0.11571012437343597, + 0.4719645082950592, + -0.11004272848367691, + 0.29751279950141907, + 0.1504238396883011, + -0.25993359088897705, + -0.2020144760608673, + 0.3196897506713867, + 0.05853502079844475, + -0.3853840231895447, + 0.20245157182216644, + 0.03566883131861687, + -0.1107543557882309, + -0.10815233737230301, + -0.0011197924613952637, + -0.25315192341804504, + -0.05670708417892456, + -0.048502445220947266, + -0.04860137030482292, + -0.17308034002780914, + 0.006812499836087227, + -0.20557016134262085, + 0.14916878938674927, + 0.20557747781276703, + -0.06213407218456268, + -0.3531949818134308, + -0.2083752304315567, + -1.4600480794906616, + 0.3418825566768646, + 0.35777875781059265, + 0.5423658490180969, + 0.060710079967975616, + 0.21327579021453857, + 0.14046257734298706, + -0.4543054401874542, + 0.12098178267478943, + -0.20515523850917816, + 0.11073673516511917, + 0.1942926049232483, + -0.02554556354880333, + 0.12231021374464035, + -0.09081941097974777, + 0.40735042095184326, + -0.25884416699409485, + -0.1699652224779129, + 0.1723531037569046, + -0.18658211827278137, + 0.05605747923254967, + -0.027085013687610626, + -0.23952047526836395, + -0.41727176308631897, + -0.027840005233883858, + -0.008344557136297226, + 0.17404943704605103, + 0.48877158761024475, + 0.048919107764959335, + -0.34051406383514404, + 0.2041877806186676, + -0.05990995466709137, + 0.2882596254348755, + 0.13159213960170746, + 0.020799560472369194, + 0.045565515756607056, + -0.149105504155159, + -0.008681552484631538, + -0.24527771770954132, + -0.07267572730779648, + 0.43082869052886963, + -0.09393588453531265, + 0.006248306017369032, + -0.012732194736599922, + 0.17859205603599548, + -0.10465846210718155, + -0.14659176766872406, + -0.4048817455768585, + 0.05939580500125885, + 0.002015696605667472, + -0.041262369602918625, + -0.004457493778318167, + 0.014516751281917095, + -0.17552635073661804, + -0.07980498671531677, + 0.02432759292423725, + -0.44587981700897217, + -0.2516319751739502, + 0.3019556701183319, + 0.2567998766899109, + 0.22570385038852692, + 0.16664236783981323, + 0.2512465715408325, + 0.05109352618455887, + -0.07403482496738434, + 0.3565337359905243, + 0.4589897692203522, + 0.16411586105823517, + -0.10788187384605408, + -0.1400454342365265, + -0.02829481102526188, + -0.2165587991476059, + 0.04056546464562416, + 0.4594404995441437, + -0.008534431457519531, + 0.2554766535758972, + 0.3977060317993164, + 0.02593780681490898, + -0.20805838704109192, + 0.9135934114456177, + -0.20856255292892456, + 0.26527053117752075, + -0.11175020784139633, + 0.1500868797302246, + -0.06991802155971527, + -0.2677736282348633, + 0.13384991884231567, + 0.33276790380477905, + -0.2025960236787796, + 0.4392930865287781, + 0.09262576699256897, + -0.3638356626033783, + 0.06772565096616745, + -0.22991813719272614, + 0.36017489433288574, + 0.188194140791893, + 0.2976173758506775, + -0.15880116820335388, + -0.2994076907634735, + -0.18980084359645844, + 0.04826117306947708, + -0.43584704399108887, + -0.2398812472820282, + -0.14241263270378113, + 0.039177801460027695, + -0.08267208188772202, + -0.23236876726150513, + 0.2714538872241974, + 0.08902620524168015, + -0.16783401370048523, + -0.11827147006988525, + -0.5969451069831848, + -0.14278316497802734, + 0.07921724766492844, + 0.5476028919219971, + 0.06470826268196106, + -0.07706396281719208, + -0.03389648720622063, + 0.17959539592266083, + -0.031061602756381035, + 0.01697085052728653, + 0.030577894300222397, + -0.04744522273540497, + -0.44362449645996094, + 0.15526634454727173, + 0.03123527765274048, + -0.32432401180267334, + -0.1853085160255432, + -0.3158264458179474, + 0.188261479139328, + -0.0017749584512785077, + -0.15611261129379272, + 0.3042958974838257, + 0.2432161420583725, + 0.0450713112950325, + 0.023609524592757225, + -0.19505208730697632, + 0.26095151901245117, + 0.2553902268409729, + 0.18188053369522095, + 0.12970411777496338, + -0.13089893758296967, + -0.379459023475647, + -0.3980197608470917, + 0.2006080150604248, + -0.28226834535598755, + -0.0964260995388031, + 0.0914294645190239, + 0.1325417011976242, + -0.2629554271697998, + 0.10421829670667648, + -0.26234742999076843, + 0.036127373576164246, + -0.2396201491355896, + 0.14727406203746796, + 0.3077162206172943, + -0.2678605318069458, + 0.0037977034226059914, + -0.20072217285633087, + 0.34394168853759766, + 0.16432230174541473, + -0.22313080728054047, + 0.13270944356918335, + -0.055142730474472046 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_047.json b/src/benchmark/output/results/results_graph_047.json new file mode 100644 index 0000000..c488d31 --- /dev/null +++ b/src/benchmark/output/results/results_graph_047.json @@ -0,0 +1,792 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 70-year-old male with a history of asbestos exposure and former smoking (20 pack-years).\n\n**Timeline of Diagnoses:**\n\n1. **2023:** The patient was diagnosed with large-cell squamous carcinoma of the left upper lobe with mediastinal lymph node metastases (cT4 cN3 cM0, stage IIIC).\n2. **2023:** The patient underwent treatment with curative intent, consisting of four cycles of vinorelbine/carboplatin, one cycle of durvalumab, and radiotherapy (total dose: 60 Gy).\n\n**Timeline of Treatments:**\n\n1. **2023:** The patient received four cycles of vinorelbine/carboplatin.\n2. **2023:** The patient received one cycle of durvalumab.\n3. **2023:** The patient underwent radiotherapy.\n\n**Timeline of Outcomes:**\n\n1. **After treatment (2023):** The patient's bilateral radiation pneumonitis progression was monitored.\n2. **After treatment (2023):** A CT scan showed regression of the left central tumor, mediastinal, and right hilar lymph nodes, along with a trend toward resolution of bipulmonary pneumonitis.\n3. **After treatment (2023):** Bronchoscopy revealed marked tumor regression in the left upper lobe, with histology showing bronchial wall reserve cell hyperplasia and mucosal changes, but no recurrence of the previously diagnosed poorly differentiated squamous cell carcinoma or evidence of malignancy.\n4. **After treatment (2023):** A CT scan revealed a new lesion suspicious for malignancy in liver segments V and VI, consistent with metastasis from the known squamous cell carcinoma of the lung.\n\n**Current Status:**\nThe patient is currently undergoing evaluation for surgical resection of solitary centrally located hepatic metastasis. The pulmonary tumor board has recommended this course of action based on imaging findings.\n\nIn summary, the patient was diagnosed with stage IIIC large-cell squamous carcinoma of the left upper lobe in 2023 and underwent treatment with curative intent. Following treatment, there were significant improvements in lung function and tumor regression, but a new lesion suspicious for malignancy was detected in the liver. The patient is now being evaluated for surgical resection of the hepatic metastasis.", + "bertscore": { + "precision": 0.8479164838790894, + "recall": 0.8669500350952148, + "f1": 0.8573276400566101 + }, + "bleu": 0.4280695015351555, + "rouge1": 0.6548148148148148, + "rougeL": 0.5125925925925925, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 8, + "edge_count": 7, + "avg_in_degree": 0.875, + "density": 0.125 + }, + "trajectory_embedding": [ + 0.23916545510292053, + 0.0230923630297184, + -0.08824869245290756, + 0.20278996229171753, + 0.04306795075535774, + 0.1345890760421753, + 0.015297275967895985, + 0.4002745747566223, + 0.5124368071556091, + -0.3175220787525177, + -0.045064736157655716, + -0.16486221551895142, + -0.5308375358581543, + -0.10607318580150604, + -0.2521823048591614, + 0.38863450288772583, + -0.037071093916893005, + 0.2851150929927826, + 0.018904972821474075, + -0.19477026164531708, + -0.47042977809906006, + 0.13593415915966034, + -0.4420822858810425, + 0.009708592668175697, + 0.2584648132324219, + -0.03729706630110741, + 0.39717987179756165, + 0.4403141140937805, + 0.3876214027404785, + 0.3821466565132141, + -0.049008093774318695, + -0.25582513213157654, + 0.26447319984436035, + 0.1338401436805725, + -0.37289562821388245, + 0.19368356466293335, + 0.15885013341903687, + 0.3817512094974518, + -0.13554736971855164, + 0.006086982786655426, + -0.2432585209608078, + 0.016892213374376297, + 0.8058010339736938, + 0.08626192063093185, + 0.5061189532279968, + -0.7485342025756836, + -0.04848037660121918, + 0.633547306060791, + -0.5691675543785095, + -0.3443128168582916, + 0.04448810964822769, + 0.841015100479126, + 0.5138186812400818, + -0.3893077075481415, + 0.40973517298698425, + -0.09072116017341614, + -0.213058739900589, + -0.20061297714710236, + -0.17622539401054382, + 0.01604689285159111, + 0.1056060865521431, + -0.49434196949005127, + 0.5643545389175415, + -0.3151908218860626, + -0.1822681725025177, + -0.21250919997692108, + -0.23800277709960938, + 0.1030765250325203, + -0.03802601248025894, + -0.5116323232650757, + -0.29254502058029175, + -0.19391736388206482, + -0.11960951238870621, + 0.15392082929611206, + 0.09672687947750092, + -0.1783643662929535, + 0.34146153926849365, + -0.04866170138120651, + 0.23927748203277588, + 0.2640075087547302, + -0.12428838014602661, + -0.25246673822402954, + -0.16459450125694275, + 0.28464609384536743, + -0.29049500823020935, + 0.08885020017623901, + -0.07627468556165695, + -0.2656208872795105, + -0.4493290185928345, + 0.15903203189373016, + 0.18786358833312988, + -0.345028281211853, + -0.061763737350702286, + -0.14254821836948395, + -0.013278767466545105, + 0.3473942279815674, + 0.65049809217453, + 0.1609984040260315, + 0.8541498184204102, + 0.07158741354942322, + 0.15381012856960297, + -0.0981658324599266, + 0.23000434041023254, + 0.1067076027393341, + 0.42738673090934753, + -0.11173161119222641, + 0.23492659628391266, + -0.45706427097320557, + 0.2904343008995056, + 0.5158804059028625, + 0.1607303023338318, + -0.25217539072036743, + -0.059543635696172714, + -0.09460222721099854, + 0.2728523015975952, + 0.19561836123466492, + 0.016242103651165962, + 0.2902768552303314, + 0.37699025869369507, + -0.5121920704841614, + -0.31924423575401306, + -0.0025723539292812347, + 0.2821520268917084, + 0.3053229749202728, + -0.534160852432251, + -0.06154714524745941, + -0.1291109174489975, + -0.04548010975122452, + -0.04747118428349495, + 0.03312918543815613, + -0.4919358193874359, + -0.26127490401268005, + -0.0075714364647865295, + -0.05427156016230583, + -0.10557722300291061, + 0.2518463730812073, + -0.2499013990163803, + -0.01850511133670807, + -1.069656252861023, + 0.27897733449935913, + -0.36940649151802063, + -0.10615763813257217, + -0.01936846412718296, + -0.41995441913604736, + -0.32895535230636597, + -0.11551427096128464, + -0.16118542850017548, + 0.1899474859237671, + -0.19357386231422424, + -0.015926243737339973, + 0.11461936682462692, + 0.024804159998893738, + 0.21615669131278992, + 0.7853617668151855, + 0.08007519692182541, + 0.05699310451745987, + -0.012561127543449402, + 0.11941462755203247, + 0.1282266080379486, + -0.08349186182022095, + 0.014021685346961021, + 0.5199325680732727, + 0.33884796500205994, + 0.0853668600320816, + -0.1701793074607849, + -0.5042878985404968, + -0.00989300012588501, + -0.19875264167785645, + -0.0014421450905501842, + 0.10112608969211578, + -0.10305187851190567, + 0.09125569462776184, + -0.48077112436294556, + 0.6939082741737366, + -0.10595937073230743, + 0.17632851004600525, + -0.11461243778467178, + -0.052738502621650696, + 0.11999131739139557, + 0.22470800578594208, + 0.20191341638565063, + -0.30140095949172974, + 0.6688401103019714, + 0.18269459903240204, + -0.2808096408843994, + 0.21060001850128174, + 0.311078280210495, + 0.1429791897535324, + -0.1396367847919464, + 0.08299676328897476, + 0.6329383254051208, + -0.33071354031562805, + 0.550216019153595, + -0.3539048433303833, + -0.12094932794570923, + 0.27331990003585815, + -0.017761703580617905, + -0.0038242973387241364, + -0.14559796452522278, + -0.1315731257200241, + 0.26408910751342773, + 0.07293840497732162, + -0.5072392225265503, + -0.016257930546998978, + 0.1891871839761734, + -0.07932303845882416, + 0.2373342365026474, + 0.03519657999277115, + 0.0522322878241539, + 0.08119183778762817, + -0.03141401335597038, + 0.27265000343322754, + -0.2881734371185303, + 0.2721598744392395, + 0.028905320912599564, + -0.4228232800960541, + 0.2643834352493286, + 0.003331054002046585, + -0.15850666165351868, + 0.17926450073719025, + -0.009748805314302444, + -0.32150959968566895, + -0.1287781000137329, + 0.06742924451828003, + -0.6642765998840332, + 0.1319436877965927, + 0.034188564866781235, + 0.2950955629348755, + 0.276382714509964, + -0.01744288019835949, + -0.14421921968460083, + -0.36711204051971436, + 0.4551778733730316, + -0.08603548258543015, + -0.201155886054039, + -0.3019055128097534, + 0.279215544462204, + -0.17544490098953247, + 0.16002945601940155, + 0.4527830481529236, + -0.07686503231525421, + -0.14373202621936798, + 0.09858730435371399, + -0.2869427800178528, + -0.2016579508781433, + -0.38160017132759094, + -0.012671157717704773, + 0.34799814224243164, + 0.019776195287704468, + 0.1877691000699997, + 0.09789854288101196, + -0.23447027802467346, + 0.16238880157470703, + -0.15985991060733795, + -0.45827415585517883, + -0.46151238679885864, + -0.03140532597899437, + -0.22493813931941986, + -0.683695375919342, + 0.182869553565979, + -0.08783626556396484, + -0.04191240668296814, + 0.1721004694700241, + -0.23982855677604675, + -0.0641641765832901, + 0.1367921233177185, + -0.06810329854488373, + 0.001751813106238842, + -0.37681809067726135, + 0.24769265949726105, + -0.20568883419036865, + -0.28103840351104736, + -0.2688092887401581, + 0.03259442746639252, + 0.10483285784721375, + -0.06590881943702698, + -0.39494168758392334, + -0.07504241168498993, + 0.12199659645557404, + -0.25332510471343994, + 0.0020755608566105366, + 0.1859305202960968, + -0.08978505432605743, + 0.13364790380001068, + 0.07839521020650864, + 0.2208636850118637, + 0.11190396547317505, + -0.04260125756263733, + 0.042628321796655655, + 0.3449624478816986, + 0.48940905928611755, + -0.21866746246814728, + 0.06838104873895645, + -0.05458301305770874, + -0.03437357395887375, + -0.0042863450944423676, + -0.44777849316596985, + 0.39815208315849304, + 0.09851765632629395, + 0.07063926756381989, + 0.07985954731702805, + 0.2961411476135254, + 0.05039303004741669, + -0.1432095468044281, + 0.12772899866104126, + 0.4197957217693329, + 0.05026201158761978, + 0.18824194371700287, + 0.1270054429769516, + 0.2243354171514511, + 0.23185107111930847, + -0.20890329778194427, + 0.0867835283279419, + 0.33312249183654785, + -0.10439618676900864, + -0.29665976762771606, + 0.0401923768222332, + 0.12260034680366516, + 0.5354807376861572, + -0.19739985466003418, + -0.19240960478782654, + -0.14141829311847687, + -0.3047819435596466, + -0.008016234263777733, + -0.3746032118797302, + -0.25688785314559937, + 0.1265971064567566, + -0.2793007493019104, + 0.3787802457809448, + 0.18748435378074646, + -0.10201786458492279, + 0.3285340368747711, + -0.4618520140647888, + -0.11969727277755737, + 0.19547995924949646, + -0.20717766880989075, + -0.4529758095741272, + 0.4938090443611145, + -0.140267476439476, + -0.017146294936537743, + 0.381991982460022, + -0.4191562533378601, + -0.0011249706149101257, + 0.1729729175567627, + 0.31922033429145813, + -0.1018112301826477, + 0.07167018204927444, + -0.09922455251216888, + 0.11736948043107986, + 0.1284363567829132, + 0.5605899691581726, + 0.09406490623950958, + 0.3356720805168152, + 0.6863611340522766, + 0.3335127830505371, + -0.40812984108924866, + 0.038330331444740295, + -0.1938192993402481, + 0.4838044345378876, + -0.09166642278432846, + -0.10729428380727768, + -0.21923017501831055, + 0.08228041231632233, + 0.05134449154138565, + -0.4769124686717987, + 0.17687159776687622, + 0.17856737971305847, + 0.11245335638523102, + -0.10231593251228333, + 0.3954057991504669, + 0.11438082158565521, + -0.11861132830381393, + 0.5594603419303894, + -0.0075246915221214294, + -0.1524541676044464, + 0.39226430654525757, + -0.26632678508758545, + 0.12958218157291412, + 0.009744266048073769, + -0.0960906594991684, + -0.37086981534957886, + 0.07494677603244781, + -0.3257332444190979, + -0.17820055782794952, + 0.005342049524188042, + -0.2660077214241028, + 0.26408451795578003, + -0.27889934182167053, + 0.0432979017496109, + -0.0657203420996666, + 0.21732458472251892, + 0.2024593949317932, + 0.28990885615348816, + 0.005886562168598175, + -0.1550672948360443, + 0.2148192673921585, + 0.0015115812420845032, + -0.06681744754314423, + -0.18324996531009674, + -0.03741396963596344, + -0.1521233767271042, + 0.7285904884338379, + 0.18593727052211761, + 0.04043383151292801, + 0.21845121681690216, + -0.08911292999982834, + -0.1325589120388031, + -0.3723185658454895, + -0.16868582367897034, + -0.11426837742328644, + 0.1486630141735077, + 0.10422483086585999, + 0.10153140872716904, + -0.46194273233413696, + -0.21856406331062317, + -0.060465067625045776, + -0.09730280935764313, + -0.021878190338611603, + -0.1325068175792694, + -0.22135767340660095, + 0.18732614815235138, + 0.29881227016448975, + 0.4374503493309021, + -0.41367796063423157, + 0.11229455471038818, + -0.0002710586413741112, + -0.24133408069610596, + -0.12433796375989914, + -0.03534567356109619, + -0.3819577693939209, + -0.22154533863067627, + 0.2849128544330597, + 0.40452176332473755, + -0.06325969099998474, + -0.049002375453710556, + 0.17511479556560516, + 0.3053179979324341, + -0.3844383955001831, + -0.07662883400917053, + 0.26200243830680847, + 0.16683663427829742, + 0.3666679561138153, + 0.03493577241897583, + -0.4416690170764923, + -0.25778740644454956, + -0.16799700260162354, + -0.3037862777709961, + -0.021426640450954437, + 0.4362791180610657, + 0.03571189567446709, + -0.21172034740447998, + -0.0811365470290184, + 0.038668207824230194, + -0.14651688933372498, + 0.3068229854106903, + -0.2044486105442047, + 0.22866614162921906, + -0.04144268482923508, + -0.2558550238609314, + -0.16902348399162292, + -0.10302722454071045, + -0.3275451362133026, + -0.2208402305841446, + 0.11180940270423889, + 0.28104057908058167, + -0.34812524914741516, + -0.027566388249397278, + 0.10804525017738342, + -0.0959005355834961, + -0.06651468575000763, + -0.02577967941761017, + -0.3739625811576843, + 0.2859920263290405, + -0.180495947599411, + -0.10680633038282394, + 0.10557601600885391, + -0.08656129240989685, + 0.1028042584657669, + 0.0967804342508316, + 0.1276516616344452, + 0.33789464831352234, + 0.08203957229852676, + 0.00387607142329216, + 0.5865333080291748, + 0.1344289630651474, + 0.05920006334781647, + 0.36273401975631714, + 0.09247457981109619, + 0.10208229720592499, + -0.34571799635887146, + -0.22338548302650452, + 0.15807968378067017, + -0.37924081087112427, + -0.18483760952949524, + 0.0900421291589737, + 0.237489715218544, + -0.3945906162261963, + -0.26531246304512024, + 0.054495684802532196, + 0.07848251610994339, + -0.01681666634976864, + -0.10847945511341095, + -0.25728121399879456, + -0.17053720355033875, + -0.3721294105052948, + -0.05608925595879555, + 0.28020715713500977, + 0.5741140842437744, + 0.2486969232559204, + 0.18071886897087097, + -0.3345600366592407, + -0.3132767379283905, + 0.28371867537498474, + 0.260001003742218, + 0.11227370798587799, + 0.025435443967580795, + -0.1776626706123352, + 0.4133024215698242, + 0.2735271155834198, + -0.01336791180074215, + 0.19291508197784424, + 0.17389336228370667, + 0.14605510234832764, + 0.2845494747161865, + 0.17875203490257263, + -0.22361686825752258, + -0.02501485124230385, + -0.4463793933391571, + 0.17412002384662628, + -0.3153131902217865, + -0.05125986039638519, + 0.2922404110431671, + -0.13809095323085785, + -0.48151740431785583, + -0.3123106360435486, + 0.284854918718338, + -0.22633789479732513, + -0.1700834333896637, + 0.2542152404785156, + 0.25463560223579407, + -0.01636194810271263, + -0.37074896693229675, + 0.005656082183122635, + -0.6684494614601135, + -0.4096358120441437, + 0.10456229001283646, + 0.03701178729534149, + -0.2163981795310974, + -0.007624402642250061, + 0.5075787901878357, + 0.6817411780357361, + 0.28864145278930664, + -0.034330084919929504, + 0.10676489770412445, + 0.518778920173645, + 0.30994075536727905, + -0.16890737414360046, + -10.590301513671875, + -0.201033353805542, + -0.3370797634124756, + 0.542715847492218, + -0.2142484486103058, + 0.07573401927947998, + 0.18965254724025726, + -0.04836706817150116, + 0.008721616119146347, + 0.12023971229791641, + -0.12402694672346115, + -0.09447978436946869, + 0.16497579216957092, + 0.38085848093032837, + -0.012033773586153984, + 0.09906738996505737, + -0.4826853275299072, + 0.17155183851718903, + -0.050074994564056396, + 0.12218914926052094, + 0.20745059847831726, + 0.3177463710308075, + -0.3625527024269104, + 0.11794580519199371, + -0.10254329442977905, + -0.44881588220596313, + -0.26241692900657654, + 0.6618045568466187, + 0.32269206643104553, + -0.421120285987854, + 0.22773770987987518, + 0.1575206071138382, + -0.26591265201568604, + 0.29699644446372986, + -0.12249276041984558, + 0.08275548368692398, + -0.06796081364154816, + 0.20312267541885376, + 0.42439669370651245, + -0.19628728926181793, + -0.015452743507921696, + -0.10041250288486481, + 0.346131831407547, + 0.16988737881183624, + -0.1442452371120453, + -0.47870659828186035, + -0.1753164380788803, + -1.7188913822174072, + 0.3596162796020508, + 0.18570177257061005, + 0.18797504901885986, + 0.029428336769342422, + 0.14211221039295197, + 0.3416958153247833, + -0.32210758328437805, + -0.06409884989261627, + -0.28580808639526367, + -0.06817889213562012, + 0.022880181670188904, + 0.12477768957614899, + 0.057793404906988144, + -0.004381187260150909, + 0.5921834707260132, + 0.14404599368572235, + -0.3381609618663788, + 0.06214451044797897, + 0.1597573161125183, + -0.24752022325992584, + -0.4016862213611603, + -0.884687066078186, + -0.5153358578681946, + 0.09142717719078064, + -0.22958526015281677, + -0.0415487065911293, + 0.3864733576774597, + -0.1049053966999054, + -0.16927625238895416, + 0.22574736177921295, + 0.14636912941932678, + 0.3017677068710327, + 0.24858558177947998, + -0.021927732974290848, + 0.24723584949970245, + -0.21714502573013306, + -0.31538715958595276, + -0.10662338137626648, + 0.30110156536102295, + 0.5044937133789062, + 0.06342962384223938, + -0.13150478899478912, + 0.04200959950685501, + 0.45574551820755005, + 0.07219965755939484, + -0.16015474498271942, + -0.3810471296310425, + 0.013091824017465115, + -0.05510357767343521, + 0.15148821473121643, + -0.10503404587507248, + -0.2777521014213562, + -0.12041417509317398, + 0.13931074738502502, + 0.0038018710911273956, + -0.6154782176017761, + -0.5535193085670471, + 0.23641686141490936, + 0.10951529443264008, + 0.24948666989803314, + -0.04708016663789749, + -0.3074757158756256, + -0.33928537368774414, + -0.03250422328710556, + 0.1706535816192627, + 0.5144854187965393, + 0.3807712197303772, + -0.01118164137005806, + 0.1425674557685852, + -0.35734373331069946, + -0.1791289746761322, + -0.053970951586961746, + 0.39644381403923035, + -0.2435230016708374, + 0.3315151333808899, + 0.699695348739624, + 0.036628659814596176, + -0.04486513137817383, + 0.853065013885498, + -0.3219931721687317, + 0.341957688331604, + -0.09745914489030838, + 0.1111777126789093, + -0.07859998196363449, + -0.41244250535964966, + 0.1211860179901123, + 0.46449172496795654, + -0.30081796646118164, + 0.8033382296562195, + 0.3214571177959442, + -0.40712040662765503, + -0.07522925734519958, + -0.2641802430152893, + 0.5094892978668213, + 0.2626941204071045, + 0.24601514637470245, + -0.06743049621582031, + -0.31681814789772034, + -0.4083525836467743, + 0.13787397742271423, + -0.30240774154663086, + -0.42868757247924805, + -0.13032883405685425, + 0.13760055601596832, + 0.33177149295806885, + -0.2348630130290985, + 0.31368833780288696, + 0.2298021763563156, + -0.24536295235157013, + -0.3245990574359894, + -0.3302265703678131, + 0.07708606123924255, + 0.2903745472431183, + 0.874649703502655, + -0.0920020192861557, + -0.05545302480459213, + 0.035961199551820755, + 0.08331318199634552, + -0.36245790123939514, + 0.18016792833805084, + 0.12763799726963043, + -0.13697591423988342, + -0.4677819609642029, + 0.2779429256916046, + 0.15159916877746582, + -0.31069982051849365, + -0.01924152672290802, + -0.009670075960457325, + -0.3061944842338562, + 0.19513867795467377, + -0.27031609416007996, + -0.07804754376411438, + 0.41443678736686707, + -0.09974159300327301, + 0.03737006336450577, + -0.2673841118812561, + -0.26906025409698486, + 0.15568692982196808, + 0.33988505601882935, + 0.024549271911382675, + -0.3064970076084137, + -0.24274270236492157, + -0.5429519414901733, + 0.27536195516586304, + -0.32771047949790955, + -0.09318261593580246, + 0.2167423665523529, + 0.1457623392343521, + -0.1423267126083374, + 0.15250545740127563, + -0.01623339019715786, + -0.0032391436398029327, + -0.19003593921661377, + 0.32480764389038086, + 0.4902690351009369, + -0.16600196063518524, + 0.42654579877853394, + 0.019208291545510292, + 0.09474597871303558, + 0.14433564245700836, + -0.17818982899188995, + 0.16263402998447418, + -0.4094008803367615 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_048.json b/src/benchmark/output/results/results_graph_048.json new file mode 100644 index 0000000..92cdb75 --- /dev/null +++ b/src/benchmark/output/results/results_graph_048.json @@ -0,0 +1,792 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 68-year-old female who presented with cough and headache in May 2024. She was diagnosed with lung adenocarcinoma, which had metastasized to the brain, mediastinal lymph nodes, and other parts of her body.\n\n**Timeline of Diagnoses:**\n\n1. **May 2024:** The patient presented with cough and headache, leading to a biopsy of the right supraclavicular lymph node (N2). The biopsy confirmed lung adenocarcinoma.\n2. **May 2024:** A diagnosis of advanced lung adenocarcinoma was made, with multiple brain metastases (N3).\n3. **May 2024:** Initial imaging revealed multiple brain metastases, pulmonary lesions, and mediastinal lymphadenopathy.\n\n**Timeline of Treatments:**\n\n1. **May 2024:** The patient underwent whole-brain radiotherapy.\n2. **June 2024:** Next-generation sequencing (NGS) detected a ROS1 fusion and TP53 mutations. The patient started entrectinib therapy.\n3. **July 2024:** The patient experienced significant improvements in headache and insomnia symptoms, indicating a partial response to entrectinib treatment.\n\n**Timeline of Outcomes:**\n\n1. **July 2024:** Imaging showed a reduction in lung nodule size, mediastinal lymph nodes, and intracranial metastatic lesion size, indicating a partial response to entrectinib.\n2. **August 2024:** The patient experienced grade 2 blurred vision and oral mucositis.\n\n**Current Status:**\nThe patient's lung and brain lesions have consistently remained in a state of partial response since starting entrectinib therapy. However, the patient has experienced new symptoms, including blurred vision and oral mucositis, which may indicate a need for further treatment adjustments or additional therapies.\n\nThis clinical case report highlights the importance of personalized medicine approaches, such as targeted therapy with entrectinib, in managing advanced lung cancer with brain metastases.", + "bertscore": { + "precision": 0.7794458866119385, + "recall": 0.7619431614875793, + "f1": 0.7705951929092407 + }, + "bleu": 0.10900761101947046, + "rouge1": 0.4695201037613489, + "rougeL": 0.2749675745784695, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 8, + "edge_count": 7, + "avg_in_degree": 0.875, + "density": 0.125 + }, + "trajectory_embedding": [ + 0.14966541528701782, + 0.2221803069114685, + -0.19240516424179077, + 0.08077575266361237, + -0.02466701529920101, + 0.20474261045455933, + -0.0013346318155527115, + 0.23096227645874023, + 0.5076491236686707, + -0.410561740398407, + -0.19279606640338898, + 0.06629909574985504, + -0.6102768182754517, + -0.13243712484836578, + -0.3075253367424011, + 0.08040007203817368, + -0.1899433434009552, + 0.2449004352092743, + -0.09295471012592316, + -0.3203767240047455, + -0.37075814604759216, + 0.19448061287403107, + -0.4349818825721741, + -0.041269220411777496, + 0.21338310837745667, + 0.026771236211061478, + 0.3829358220100403, + 0.5876777172088623, + 0.21540428698062897, + 0.31802278757095337, + 0.10701864212751389, + -0.07597276568412781, + 0.080228790640831, + 0.026402857154607773, + -0.2959792912006378, + 0.3052590489387512, + 0.24379383027553558, + 0.23812590539455414, + -0.15856392681598663, + 0.04393874853849411, + -0.19312871992588043, + 0.18494360148906708, + 0.8416618704795837, + 0.2957839369773865, + 0.4321128726005554, + -0.7661833167076111, + -0.059204570949077606, + 0.40680021047592163, + -0.5490126013755798, + -0.1329321712255478, + 0.16410110890865326, + 0.6877588033676147, + 0.7257632613182068, + -0.39265066385269165, + 0.4182553291320801, + -0.327140748500824, + -0.2638970613479614, + -0.20179536938667297, + -0.1879032552242279, + 0.11053405702114105, + -0.00790945440530777, + -0.15319649875164032, + 0.35262438654899597, + -0.1678994596004486, + -0.14073026180267334, + -0.19237345457077026, + -0.2559381425380707, + -0.01022861897945404, + -0.01022962387651205, + -0.30871886014938354, + -0.12903502583503723, + -0.3100150227546692, + -0.03286907076835632, + 0.047581400722265244, + 0.12958477437496185, + -0.13006862998008728, + 0.4655739367008209, + -2.650078386068344e-05, + 0.1600201427936554, + 0.2462025284767151, + 0.07535600662231445, + -0.03262091428041458, + -0.14214198291301727, + 0.2881300449371338, + -0.39257240295410156, + 0.033486198633909225, + -0.06062737852334976, + -0.3609837293624878, + -0.4934014678001404, + 0.18431469798088074, + 0.13876578211784363, + -0.4963354468345642, + -0.007755663245916367, + -0.3198193311691284, + 0.05727698653936386, + 0.1270906925201416, + 0.42905372381210327, + 0.2753284275531769, + 1.0231908559799194, + 0.01168445311486721, + 0.17147968709468842, + 0.00883689895272255, + 0.3151686489582062, + -0.09211920201778412, + 0.3520906865596771, + -0.05493555963039398, + 0.16101008653640747, + -0.5193175077438354, + 0.40484780073165894, + 0.5066609382629395, + 0.023486629128456116, + -0.1306096613407135, + -0.029842006042599678, + -0.47159960865974426, + 0.1999700367450714, + 0.00868641585111618, + -0.004242550581693649, + 0.21268533170223236, + 0.22996659576892853, + -0.39017513394355774, + -0.21297958493232727, + -0.07519520819187164, + 0.3500320613384247, + 0.09663345664739609, + -0.6577458381652832, + -0.09034504741430283, + -0.14407029747962952, + 0.013760283589363098, + -0.0762048214673996, + 0.11406022310256958, + -0.4410538971424103, + -0.16260935366153717, + 0.006210539489984512, + 0.09438003599643707, + -0.17592106759548187, + 0.36640724539756775, + -0.39055371284484863, + -0.04375765100121498, + -1.113560438156128, + 0.28143739700317383, + -0.41744470596313477, + -0.2071913331747055, + -0.049886107444763184, + -0.5039052367210388, + -0.14809955656528473, + -0.09470503032207489, + -0.0655423104763031, + 0.29676926136016846, + -0.10690620541572571, + -0.15369364619255066, + -0.10252248495817184, + -0.12341412901878357, + 0.25864312052726746, + 0.45934349298477173, + 0.1208864375948906, + 0.06827418506145477, + 0.16117902100086212, + 0.32768329977989197, + 0.12742964923381805, + -0.15516196191310883, + 0.12348759174346924, + 0.3954579830169678, + 0.11865823715925217, + 0.023074284195899963, + -0.05963245406746864, + -0.6919969320297241, + -0.0629894807934761, + -0.2279326319694519, + 0.03778563067317009, + 0.015611687675118446, + -0.168528214097023, + 0.15991446375846863, + -0.2959767282009125, + 0.6005589962005615, + 0.1415327936410904, + 0.36508315801620483, + 0.12411679327487946, + 0.17255698144435883, + 0.22601726651191711, + 0.2752682566642761, + 0.11442600190639496, + -0.22074559330940247, + 0.7139566540718079, + 0.14659857749938965, + -0.18170620501041412, + 0.23043982684612274, + 0.30862271785736084, + -0.02431338280439377, + -0.1866346299648285, + -0.06116188317537308, + 0.6012552976608276, + -0.369964063167572, + 0.4033125042915344, + -0.31239941716194153, + -0.07184378057718277, + 0.1109662801027298, + -0.21895462274551392, + -0.09756544232368469, + -0.022591430693864822, + -0.10628204047679901, + 0.24357163906097412, + 0.058583229780197144, + -0.3314272165298462, + 0.060163818299770355, + 0.08720235526561737, + -0.16738876700401306, + 0.07735578715801239, + 0.03268592804670334, + 0.082100510597229, + -0.04631967097520828, + -0.1347777247428894, + 0.39574727416038513, + -0.007662732154130936, + 0.2506340742111206, + 0.09382070600986481, + -0.23156620562076569, + 0.04106605052947998, + -0.03970330208539963, + -0.005714173428714275, + 0.053621917963027954, + -0.015405518934130669, + -0.1627756506204605, + 0.06775444746017456, + 0.020024331286549568, + -0.5150232911109924, + 0.293191522359848, + 0.1893663853406906, + 0.2214912325143814, + 0.04300299286842346, + -0.06880903244018555, + 0.2100725769996643, + -0.4320003092288971, + 0.33475950360298157, + -0.2494293749332428, + -0.1188528761267662, + -0.2381303906440735, + 0.26598674058914185, + -0.2048133909702301, + 0.1102459728717804, + 0.20611214637756348, + 0.0015713870525360107, + -0.18390093743801117, + 0.13734285533428192, + -0.3716282248497009, + -0.10421121120452881, + -0.35344430804252625, + 0.028611907735466957, + 0.35775089263916016, + 0.1252744197845459, + 0.26168376207351685, + 0.041001878678798676, + -0.12618005275726318, + 0.19299019873142242, + -0.3003186285495758, + -0.44419705867767334, + -0.39347749948501587, + 0.01206064224243164, + -0.06137144938111305, + -0.5047451257705688, + 0.14586102962493896, + -0.11919607222080231, + -0.09853411465883255, + 0.17868906259536743, + -0.3945505917072296, + -0.20919030904769897, + 0.06539192795753479, + 0.029946383088827133, + 0.16423113644123077, + -0.3658868968486786, + 0.15530513226985931, + -0.37145504355430603, + -0.16940844058990479, + -0.11256575584411621, + -0.08767106384038925, + 0.08966058492660522, + 0.08268541842699051, + -0.23496395349502563, + 0.10549978911876678, + 0.1430770307779312, + -0.45286375284194946, + -0.1597563624382019, + 0.28214678168296814, + -0.20383206009864807, + 0.34975260496139526, + 0.024494178593158722, + 0.21344563364982605, + 0.3967927396297455, + 0.025586603209376335, + 0.20134910941123962, + 0.43563312292099, + 0.506211519241333, + 0.019012099131941795, + -0.019461151212453842, + -0.17752185463905334, + 0.013395741581916809, + -0.12360015511512756, + -0.5413646101951599, + 0.4100223779678345, + -0.2578169107437134, + 0.11095612496137619, + 0.039350926876068115, + 0.1751149445772171, + 0.09956784546375275, + -0.2817384600639343, + 0.1285194605588913, + 0.503248393535614, + 0.09906671941280365, + 0.1466788947582245, + 0.10587963461875916, + 0.298248827457428, + 0.35454419255256653, + -0.1312607377767563, + 0.08815548568964005, + 0.14608928561210632, + -0.0773802250623703, + -0.1357904076576233, + -0.12428709119558334, + 0.2663770020008087, + 0.41708460450172424, + -0.20405879616737366, + -0.26876136660575867, + 0.1692616045475006, + -0.204240620136261, + -0.09646928310394287, + -0.284659743309021, + -0.05400034040212631, + 0.1428770273923874, + -0.1144208312034607, + 0.3089889585971832, + -0.13333512842655182, + -0.07272183150053024, + 0.30432629585266113, + -0.3129817247390747, + -0.13805627822875977, + 0.24138188362121582, + 0.09373613446950912, + -0.35262376070022583, + 0.44554904103279114, + -0.19689060747623444, + -0.061121366918087006, + 0.4779767096042633, + -0.23004205524921417, + -0.14514708518981934, + -0.054542578756809235, + 0.20165501534938812, + -0.030881229788064957, + 0.02686215192079544, + -0.09550876915454865, + 0.03694058582186699, + -0.08501984179019928, + 0.43144291639328003, + 0.06662503629922867, + 0.15278424322605133, + 0.5706176161766052, + 0.0002505369484424591, + -0.3425573706626892, + 0.024810979142785072, + -0.11436178535223007, + 0.385290265083313, + -0.26779094338417053, + -0.20542795956134796, + -0.2295825183391571, + 0.24912382662296295, + -0.002022676169872284, + -0.18241669237613678, + 0.04846886545419693, + 0.06800426542758942, + 0.109351247549057, + 0.05069086700677872, + 0.44035500288009644, + 0.19157017767429352, + -0.2200274020433426, + 0.594021737575531, + -0.043430913239717484, + -0.08334025740623474, + 0.19627267122268677, + -0.09714414924383163, + 0.15777507424354553, + -0.01707877218723297, + -0.2894008755683899, + -0.407664030790329, + -4.3550506234169006e-05, + -0.14226371049880981, + -0.22250407934188843, + -0.00654911482706666, + -0.20683586597442627, + -0.010101859457790852, + -0.18304188549518585, + 0.1976441740989685, + -0.010327748022973537, + 0.1379888355731964, + 0.09076844155788422, + 0.4483475685119629, + -0.036712050437927246, + -0.22585119307041168, + 0.13708139955997467, + -0.07501131296157837, + 0.0924864336848259, + -0.370386004447937, + 0.10438291728496552, + -0.13176597654819489, + 0.4846189022064209, + -0.06380312144756317, + 0.11329922825098038, + 0.0026508159935474396, + 0.03457438573241234, + -0.04822884500026703, + -0.35917261242866516, + 0.026810241863131523, + -0.02438564971089363, + 0.09568949788808823, + -0.029696432873606682, + 0.19559037685394287, + -0.13150209188461304, + -0.19173374772071838, + -0.07646674662828445, + 0.0045642186887562275, + 0.09102612733840942, + -0.10593002289533615, + -0.07891631871461868, + 0.30214744806289673, + 0.20381468534469604, + 0.4647851288318634, + -0.16512057185173035, + 0.18576651811599731, + 0.026329604908823967, + -0.2904147803783417, + -0.08493931591510773, + -0.019690237939357758, + -0.2850853204727173, + -0.11248733103275299, + 0.1711881309747696, + 0.26951056718826294, + -0.05718488618731499, + -0.05659814924001694, + 0.13644389808177948, + 0.19095468521118164, + -0.29542630910873413, + -0.1384412944316864, + 0.41569817066192627, + 0.06373850256204605, + 0.2924818992614746, + -0.007768442388623953, + -0.5678085088729858, + -0.35601022839546204, + -0.0842316746711731, + -0.4524388909339905, + 0.06464432924985886, + 0.15538640320301056, + -0.021561825647950172, + -0.11072149872779846, + 0.1354161500930786, + -0.014118971303105354, + 0.043292317539453506, + 0.19208016991615295, + -0.1139904037117958, + 0.1905052363872528, + 0.04501256346702576, + -0.31513941287994385, + 0.03016841970384121, + -0.24742701649665833, + -0.345145046710968, + -0.23504333198070526, + 0.3023112714290619, + 0.21320348978042603, + -0.33193373680114746, + 0.1133820042014122, + 0.19751062989234924, + -0.08840218931436539, + -0.32704833149909973, + -0.013786576688289642, + -0.25966235995292664, + 0.5695237517356873, + 0.0567924901843071, + -0.18429242074489594, + 0.1445784866809845, + -0.11065153777599335, + -0.015289515256881714, + 0.2557915151119232, + 0.1430688500404358, + 0.39630138874053955, + 0.19235341250896454, + 0.05142012983560562, + 0.5619776844978333, + 0.10736338049173355, + 0.11684907972812653, + 0.3790512979030609, + -0.039779115468263626, + 0.055291444063186646, + -0.28229016065597534, + -0.21135340631008148, + 0.3470136225223541, + -0.4683031141757965, + -0.005368540063500404, + 0.0926886647939682, + 0.30812782049179077, + -0.4597792327404022, + -0.4176681339740753, + -0.024655140936374664, + -0.017000507563352585, + -0.20942449569702148, + -0.20450031757354736, + -0.13103391230106354, + -0.13029994070529938, + -0.3240031599998474, + -0.012553970329463482, + 0.32128679752349854, + 0.31167441606521606, + 0.21355314552783966, + 0.21402513980865479, + -0.28694090247154236, + -0.36128032207489014, + 0.2381001114845276, + 0.3938139081001282, + 0.055453334003686905, + -0.016684412956237793, + -0.10000140964984894, + 0.32438939809799194, + 0.4642491936683655, + -0.012610716745257378, + 0.013737127184867859, + 0.012792088091373444, + 0.13102605938911438, + 0.12909531593322754, + 0.17196452617645264, + -0.07374931126832962, + 0.17042674124240875, + -0.37482234835624695, + 0.1920088827610016, + -0.20639921724796295, + -0.20803508162498474, + 0.21300765872001648, + -0.16843223571777344, + -0.4143609404563904, + -0.17532691359519958, + 0.1929808259010315, + -0.007040489464998245, + -0.12906740605831146, + 0.10519835352897644, + 0.32449790835380554, + -0.10926434397697449, + -0.17264600098133087, + 0.11232449114322662, + -0.5689476132392883, + -0.4172149896621704, + 0.1307932734489441, + -0.1958656907081604, + -0.026341043412685394, + 0.023414790630340576, + 0.3475375771522522, + 0.5672762393951416, + 0.18663430213928223, + -0.18513363599777222, + 0.10585611313581467, + 0.32829996943473816, + 0.2961902320384979, + -0.2198614925146103, + -10.638339042663574, + -0.0739673599600792, + -0.3041830062866211, + 0.4259847104549408, + -0.10994547605514526, + 0.16257116198539734, + -0.027415189892053604, + 0.0534093864262104, + -0.07739919424057007, + 0.14332978427410126, + -0.19419726729393005, + -0.117185078561306, + 0.3646639585494995, + 0.21652483940124512, + 0.08345313370227814, + 0.20746874809265137, + -0.36171582341194153, + 0.28390833735466003, + 0.08692587167024612, + 0.11962375044822693, + 0.20049208402633667, + 0.2956159710884094, + -0.3215198516845703, + 0.04845777526497841, + -0.0018270835280418396, + -0.2882210910320282, + -0.23891784250736237, + 0.6405126452445984, + 0.2456986904144287, + -0.41783785820007324, + 0.05034326761960983, + 0.06034671142697334, + -0.19491896033287048, + 0.026775969192385674, + -0.051451586186885834, + -0.22969479858875275, + -0.1533937007188797, + 0.16796258091926575, + 0.16341368854045868, + -0.2718676030635834, + 0.09145835041999817, + -0.02376924455165863, + 0.2650795876979828, + 0.20736318826675415, + -0.20817722380161285, + -0.5138792991638184, + -0.08464653789997101, + -1.5049083232879639, + 0.16791746020317078, + 0.2245664745569229, + 0.5308889150619507, + 0.0734504908323288, + 0.1364365518093109, + 0.28174835443496704, + -0.43945789337158203, + -0.024213140830397606, + -0.28019118309020996, + -0.00847858376801014, + 0.28887051343917847, + -0.035099972039461136, + -0.022902648895978928, + -0.08247129619121552, + 0.6465133428573608, + -0.14090994000434875, + -0.32290542125701904, + 0.17023837566375732, + 0.0067533645778894424, + -0.0832960456609726, + -0.22810254991054535, + -0.6376392245292664, + -0.5995692610740662, + -0.08181829005479813, + -0.029628843069076538, + -0.06445953249931335, + 0.37535983324050903, + -0.03062507137656212, + -0.3205689489841461, + 0.2184622585773468, + -0.07381074130535126, + 0.32256031036376953, + 0.3817598819732666, + -0.12714900076389313, + 0.13476376235485077, + -0.26167482137680054, + -0.07668367773294449, + -0.1318744271993637, + 0.15226471424102783, + 0.4663717746734619, + -0.10950806736946106, + -0.11556690186262131, + 0.024246307089924812, + 0.45822155475616455, + 0.03728944808244705, + -0.0973939374089241, + -0.4063909649848938, + -0.034082405269145966, + 0.13942012190818787, + 0.02964545413851738, + -0.03073517233133316, + -0.04527437314391136, + -0.12643451988697052, + -0.05883917212486267, + -0.12613961100578308, + -0.5989838242530823, + -0.6215231418609619, + 0.34288308024406433, + 0.16070376336574554, + 0.08287262916564941, + -0.015481297858059406, + -0.1288774162530899, + -0.10205477476119995, + 0.060824524611234665, + 0.3325900733470917, + 0.5101323127746582, + 0.1698959320783615, + -0.0647248774766922, + 0.03736015781760216, + -0.19609101116657257, + -0.17227181792259216, + -0.04472753405570984, + 0.3804851472377777, + -0.02569371648132801, + 0.28930431604385376, + 0.660843014717102, + -0.014928244054317474, + -0.14437253773212433, + 1.0558335781097412, + -0.41141843795776367, + 0.20400133728981018, + -0.031535230576992035, + 0.09716594964265823, + -0.13566482067108154, + -0.3750981390476227, + 0.13285744190216064, + 0.42504554986953735, + -0.4485510587692261, + 0.8858206272125244, + 0.374646931886673, + -0.38048213720321655, + -0.10933957993984222, + -0.31743675470352173, + 0.4393463134765625, + 0.19627241790294647, + 0.07276028394699097, + -0.14247649908065796, + -0.2841607928276062, + -0.39769619703292847, + 0.09268984943628311, + -0.2921658754348755, + -0.23729048669338226, + -0.296286404132843, + 0.06872104108333588, + 0.16713783144950867, + -0.11236144602298737, + 0.24047315120697021, + 0.19762103259563446, + -0.10464349389076233, + -0.1395609974861145, + -0.378463476896286, + -0.23470954596996307, + -0.057504162192344666, + 0.8576208353042603, + 0.06534650921821594, + -0.06479459255933762, + -0.09595497697591782, + 0.17840203642845154, + -0.09516694396734238, + 0.15356625616550446, + 0.11358857899904251, + 0.15398520231246948, + -0.4165397584438324, + 0.2905920445919037, + 0.27694785594940186, + -0.22059354186058044, + -0.07014444470405579, + -0.14063358306884766, + -0.10354846715927124, + 0.13549460470676422, + -0.11148326098918915, + 0.21553994715213776, + 0.37739983201026917, + -0.04671525955200195, + 0.024623950943350792, + -0.16066741943359375, + 0.0537964329123497, + 0.15883591771125793, + 0.35720112919807434, + 0.0945616215467453, + -0.2452256679534912, + -0.34032902121543884, + -0.48537296056747437, + 0.31968408823013306, + -0.44905394315719604, + -0.053177669644355774, + 0.1114051416516304, + 0.2789613902568817, + -0.18967163562774658, + 0.06674695014953613, + 0.03033033013343811, + -0.10336960107088089, + -0.20916886627674103, + 0.2114836573600769, + 0.47148627042770386, + -0.26277849078178406, + 0.25276702642440796, + -0.22746258974075317, + 0.25335800647735596, + 0.1808404177427292, + -0.25227323174476624, + 0.17246077954769135, + -0.4024060070514679 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_049.json b/src/benchmark/output/results/results_graph_049.json new file mode 100644 index 0000000..827a933 --- /dev/null +++ b/src/benchmark/output/results/results_graph_049.json @@ -0,0 +1,792 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 66-year-old man with a history of smoking 20 cigarettes per day until the age of 50, after which he abstained for the past 16 years. He has cerebral infarction and takes 25 mg of clopidogrel.\n\n**Timeline of Diagnoses:**\n\n1. **Step 1:** The patient's history and routine checkup revealed a 3 cm mass in the left middle lung field during chest radiography.\n2. **Step 2:** Further investigation with CT imaging and blood tests was conducted, which showed a ground-glass nodule with a maximum diameter of 4.6 cm and a solid component measuring 4 cm located in S9/10 of the left lower lobe.\n3. **Step 3:** Pulmonary function tests indicated normal respiratory capacity, but follow-up CT imaging revealed a part-solid nodule measuring 1.6 \u00d7 1.4 cm with a 1.5 cm solid component in the same location.\n4. **Step 4:** PET-CT and MRI of the head were conducted to evaluate the lung nodule and rule out metastasis, showing mild accumulation in the mass with an SUVmax of 2.04.\n5. **Step 5:** Bronchoscopy and biopsy were performed to determine the nature of the lung nodule, leading to a suspected diagnosis of stage IB primary lung cancer.\n\n**Timeline of Treatments:**\n\n1. **Step 6:** Surgical lobectomy was planned following the surgical biopsy.\n\n**Outcomes:**\n\nThe patient underwent bronchoscopy and biopsy, which led to a suspected diagnosis of stage IB primary lung cancer. The patient is scheduled for surgical lobectomy. Further follow-up will be necessary to monitor the patient's condition and assess the effectiveness of treatment.\n\nNote: This narrative is based on the provided data and may not reflect the actual clinical case report or outcomes.", + "bertscore": { + "precision": 0.8009686470031738, + "recall": 0.8117077946662903, + "f1": 0.8063024878501892 + }, + "bleu": 0.03576180724801479, + "rouge1": 0.3530326594090203, + "rougeL": 0.2255054432348367, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 6, + "edge_count": 5, + "avg_in_degree": 0.8333333333333334, + "density": 0.16666666666666666 + }, + "trajectory_embedding": [ + 0.2567644715309143, + 0.054647695273160934, + -0.025133753195405006, + 0.027657220140099525, + 0.0567028634250164, + -0.047446608543395996, + 0.08157778531312943, + 0.12755827605724335, + 0.3595859110355377, + -0.3565047085285187, + -0.2112758755683899, + 0.1016974225640297, + -0.5609835982322693, + -0.06822846084833145, + -0.41357529163360596, + 0.09834272414445877, + 0.2301262617111206, + 0.30650249123573303, + 0.23083041608333588, + -0.25639793276786804, + -0.4508514106273651, + 0.10909075289964676, + -0.37323257327079773, + -0.17521654069423676, + 0.26630499958992004, + -0.06100469455122948, + 0.23391740024089813, + 0.3831678628921509, + 0.3318760097026825, + 0.3661697804927826, + 0.18243010342121124, + 0.10102397203445435, + 0.08750001341104507, + 0.09491461515426636, + -0.15478600561618805, + 0.24837768077850342, + 0.29393264651298523, + 0.4305003881454468, + 0.012244741432368755, + 0.18666161596775055, + -0.07575502246618271, + -0.09277432411909103, + 0.7130119800567627, + 0.2930741012096405, + 0.6534185409545898, + -0.628726065158844, + -0.014942511916160583, + 0.40638241171836853, + -0.5615766048431396, + -0.3384920358657837, + 0.15534049272537231, + 0.7424958348274231, + 0.5820599794387817, + -0.13016420602798462, + 0.4049873352050781, + -0.10209625959396362, + -0.3915539085865021, + -0.21328912675380707, + -0.18580351769924164, + 0.061684105545282364, + -0.034710343927145004, + -0.11146549135446548, + 0.04748772457242012, + 0.015314791351556778, + -0.32906869053840637, + -0.20495788753032684, + -0.12581847608089447, + 0.08674752712249756, + -0.03597379848361015, + -0.4479992687702179, + -0.2631644904613495, + -0.1706678718328476, + -0.16941969096660614, + 0.13451983034610748, + 0.14708197116851807, + -0.16877788305282593, + 0.39201653003692627, + -0.06782414764165878, + -0.011311913840472698, + 0.20590484142303467, + 0.044855888932943344, + -0.10129227489233017, + 0.17574341595172882, + 0.21457819640636444, + -0.41236400604248047, + 0.16965098679065704, + 0.12907831370830536, + -0.24311614036560059, + -0.19260239601135254, + 0.09645482897758484, + 0.3634212017059326, + -0.17252831161022186, + -0.08624999970197678, + -0.18047039210796356, + 0.10848585516214371, + -0.0634133368730545, + 0.13066242635250092, + 0.5581034421920776, + 0.9562094211578369, + -0.01895514875650406, + 0.22670423984527588, + 0.21381665766239166, + 0.2516179382801056, + 0.014214918948709965, + 0.6349357962608337, + -0.033967021852731705, + 0.07173444330692291, + -0.5029047727584839, + -0.07316675782203674, + 0.3638746738433838, + -0.014512906782329082, + -0.1694277971982956, + 0.08649471402168274, + -0.23585927486419678, + 0.04690052941441536, + 0.16347908973693848, + -0.20878833532333374, + 0.18634293973445892, + 0.12257172912359238, + -0.48823681473731995, + -0.09186337143182755, + -0.028479771688580513, + 0.3324275314807892, + 0.5146360993385315, + -0.35747480392456055, + 0.026537781581282616, + -0.16074584424495697, + 0.08699318766593933, + 0.08551987260580063, + 0.01365471351891756, + -0.49736177921295166, + -0.15070444345474243, + 0.012297066859900951, + 0.3595079481601715, + -0.1623847931623459, + 0.1916723996400833, + -0.4807084798812866, + -0.03362792357802391, + -1.1671077013015747, + 0.2633489668369293, + -0.393343061208725, + 0.019191227853298187, + 0.1794801503419876, + -0.3998546302318573, + -0.19515573978424072, + -0.2935968339443207, + -0.3726128339767456, + 0.1387694627046585, + 0.0897676944732666, + -0.12214385718107224, + 0.012520882301032543, + 0.1258244514465332, + 0.20884542167186737, + 0.20610950887203217, + 0.19021809101104736, + 0.24265961349010468, + 0.16213645040988922, + 0.12403691560029984, + 0.11398787051439285, + -0.06022300198674202, + -0.006209204439073801, + 0.2989065647125244, + 0.020074477419257164, + -0.1387871354818344, + 0.09396535158157349, + -0.8062517046928406, + 0.20646345615386963, + -0.32049885392189026, + 0.22402840852737427, + -0.01954949088394642, + -0.20140105485916138, + 0.11741650104522705, + -0.2536066472530365, + 0.6072469353675842, + 0.12195799499750137, + 0.3998850882053375, + -0.10260409116744995, + -0.19156809151172638, + 0.04294634982943535, + -0.0018441478023305535, + 0.014206391759216785, + 0.020715733990073204, + 0.7414531707763672, + 0.11567020416259766, + -0.2832781970500946, + 0.25940418243408203, + 0.3683091700077057, + -0.18443144857883453, + 0.019958844408392906, + -0.13507908582687378, + 0.4497736394405365, + -0.29400524497032166, + 0.3067609369754791, + -0.5533306002616882, + 0.024636728689074516, + 0.03246603161096573, + -0.22620779275894165, + -0.2284907102584839, + 0.18188397586345673, + -0.1465589851140976, + 0.2109435796737671, + 0.06699205189943314, + -0.1407681107521057, + 0.18527407944202423, + 0.0024786144495010376, + -0.16265909373760223, + 0.397862046957016, + 0.12031110376119614, + 0.0013976246118545532, + -0.10048040002584457, + -0.2039431780576706, + 0.051571886986494064, + -0.16632777452468872, + 0.1711951494216919, + 0.04296974837779999, + -0.20839251577854156, + 0.3698556125164032, + -0.022856688126921654, + -0.24172669649124146, + 0.2169945240020752, + -0.21191225945949554, + -0.10892332345247269, + 0.19794750213623047, + -0.0921207070350647, + -0.3723834455013275, + 0.09389778226613998, + 0.025864146649837494, + 0.24160484969615936, + 0.1264984905719757, + -0.11732038110494614, + 0.07025247812271118, + -0.2659688889980316, + 0.28220027685165405, + 0.024390168488025665, + -0.19264738261699677, + -0.42175212502479553, + 0.14417444169521332, + -0.23507827520370483, + -0.23875193297863007, + 0.3745476007461548, + -0.16679322719573975, + -0.16459442675113678, + 0.1405930072069168, + -0.25853627920150757, + -0.17076946794986725, + -0.28174009919166565, + 0.0788956806063652, + 0.4072481691837311, + 0.09300778061151505, + 0.41231289505958557, + 0.14781196415424347, + -0.09328743815422058, + 0.18840138614177704, + -0.3491116762161255, + -0.16819220781326294, + -0.35879895091056824, + -0.15572570264339447, + 0.014808326959609985, + -0.4225861132144928, + -0.0033341199159622192, + 0.25102004408836365, + -0.12959618866443634, + -0.023023219779133797, + -0.2553872764110565, + -0.06757350265979767, + 0.04816959425806999, + -0.061303988099098206, + 0.1592148095369339, + 0.0009159992332570255, + 0.2541206181049347, + -0.32678619027137756, + -0.4095669090747833, + -0.0890570655465126, + -0.012893512845039368, + 0.18513844907283783, + 0.08613903075456619, + -0.11660867184400558, + 0.04846123978495598, + 0.18121004104614258, + -0.38220855593681335, + -0.3468528091907501, + 0.19498582184314728, + -0.25394976139068604, + 0.03253226727247238, + -0.25787946581840515, + 0.18279342353343964, + 0.35620227456092834, + -0.1328677535057068, + 0.16482537984848022, + 0.3580454885959625, + 0.5171672701835632, + 0.14697910845279694, + -0.154265359044075, + 0.061135198920965195, + 0.010888803750276566, + -0.045767202973365784, + -0.425426721572876, + 0.20599491894245148, + 0.13548362255096436, + -0.06953422725200653, + 0.043080881237983704, + 0.2773016691207886, + 0.18362011015415192, + -0.46928250789642334, + -0.20541580021381378, + 0.7687499523162842, + 0.036430057138204575, + -0.05291818082332611, + 0.05840182676911354, + 0.5254464149475098, + 0.6934916973114014, + -0.02786218374967575, + -0.24638254940509796, + 0.039297234266996384, + -0.16627417504787445, + -0.1860509067773819, + 0.04168695583939552, + -0.08493759483098984, + 0.3096385896205902, + -0.025141268968582153, + 0.0032154687214642763, + 0.27051040530204773, + -0.20187075436115265, + -0.10908608883619308, + 0.014324337244033813, + -0.024342982098460197, + -0.07883320748806, + -0.3017563819885254, + 0.39838096499443054, + -0.049979209899902344, + -0.09823311120271683, + 0.42287859320640564, + -0.15677838027477264, + -0.3211692273616791, + 0.27475103735923767, + -0.201103076338768, + -0.6143441796302795, + 0.26540499925613403, + -0.07149770110845566, + -0.027679426595568657, + 0.3769514560699463, + 0.04318079352378845, + -0.04428985342383385, + -0.29216524958610535, + 0.3416769504547119, + 0.11279866099357605, + -0.07905539870262146, + -0.14408640563488007, + 0.05060046911239624, + 0.21931642293930054, + 0.619964599609375, + 0.13614660501480103, + 0.08426513522863388, + 0.384540319442749, + -0.12463974952697754, + -0.341552734375, + -0.0968519076704979, + 0.15099714696407318, + 0.19977520406246185, + -0.2067735344171524, + -0.1936662346124649, + -0.23055405914783478, + 0.04354266822338104, + 0.1083572581410408, + -0.34287071228027344, + -0.010666747577488422, + 0.12098294496536255, + -0.10312426090240479, + -0.07402093708515167, + 0.17969083786010742, + 0.3437140882015228, + 0.02284686453640461, + 0.4255564212799072, + 0.03445722907781601, + 0.001605341793037951, + 0.2862929403781891, + -0.26226311922073364, + 0.3411618769168854, + -0.22642694413661957, + -0.3738151490688324, + -0.3267021179199219, + -0.07017236202955246, + -0.2934410870075226, + -0.21541263163089752, + -0.0178332831710577, + -0.11434977501630783, + -0.016070468351244926, + -0.26695945858955383, + 0.28414276242256165, + 0.1044958233833313, + 0.267194539308548, + 0.11671946197748184, + 0.36977124214172363, + 0.04042429104447365, + -0.4122868776321411, + 0.15105390548706055, + -0.0566176176071167, + 0.09019996970891953, + -0.08880605548620224, + -0.08643335103988647, + -0.29347696900367737, + 0.3613191545009613, + 0.11735422164201736, + -0.012280023656785488, + 0.12057303637266159, + -0.09611748903989792, + -0.23868714272975922, + -0.44654905796051025, + -0.12312587350606918, + -0.19569122791290283, + -0.028962934389710426, + -0.11758724600076675, + 0.15953195095062256, + -0.17363320291042328, + -0.2520342767238617, + -0.00026544928550720215, + 0.3615114688873291, + 0.23229365050792694, + -0.06938732415437698, + 0.09161273390054703, + 0.23469217121601105, + 0.009865929372608662, + 0.2783743441104889, + -0.06156933307647705, + 0.06356468796730042, + 0.016839690506458282, + -0.3949708044528961, + -0.15408755838871002, + 0.12373312562704086, + -0.19214241206645966, + -0.06290382891893387, + 0.2230714112520218, + 0.2244025468826294, + 0.08108693361282349, + -0.02778303623199463, + 0.010971516370773315, + 0.4503476321697235, + -0.4929099977016449, + -0.07192618399858475, + 0.30564892292022705, + 0.18236331641674042, + 0.510549008846283, + -0.006905071437358856, + -0.3393498659133911, + -0.062112484127283096, + -0.055349837988615036, + -0.4637646973133087, + 0.13325883448123932, + 0.1284475326538086, + -0.20420551300048828, + -0.12513527274131775, + 0.18135331571102142, + 0.09901738911867142, + 0.01033159252256155, + 0.07760990411043167, + -0.0384158194065094, + 0.21602775156497955, + -0.12376264482736588, + -0.39367201924324036, + -0.07645947486162186, + -0.17857308685779572, + -0.17772233486175537, + -0.2982494533061981, + 0.4295850992202759, + 0.34239235520362854, + -0.19945590198040009, + 0.1160731315612793, + 0.12300371378660202, + -0.2330305427312851, + -0.20542879402637482, + 0.018699610605835915, + -0.16400735080242157, + 0.46508729457855225, + -0.022740961983799934, + -0.2985071837902069, + 0.17199455201625824, + -0.455716609954834, + 0.2083752155303955, + 0.1953922063112259, + 0.19823966920375824, + 0.40497246384620667, + 0.15362046658992767, + 0.22892439365386963, + 0.35686060786247253, + 0.020942693576216698, + -0.07616151124238968, + 0.2713387906551361, + 0.010906979441642761, + 0.056140199303627014, + -0.08816027641296387, + -0.17018313705921173, + 0.31824979186058044, + -0.29802653193473816, + 0.11504767090082169, + 0.23575150966644287, + 0.29233282804489136, + -0.43991947174072266, + -0.12221308797597885, + -0.06714961677789688, + -0.16299580037593842, + -0.1522783637046814, + -0.42884087562561035, + -0.15537361800670624, + 0.12757658958435059, + -0.217074915766716, + -0.1924450844526291, + 0.4016702175140381, + 0.28122270107269287, + 0.15393279492855072, + 0.11671632528305054, + -0.3184525668621063, + -0.5127158761024475, + 0.11280230432748795, + 0.28736191987991333, + 0.08120352029800415, + 0.07242023944854736, + -0.10548578947782516, + 0.2469063550233841, + 0.582009494304657, + -0.029357826337218285, + 0.02673153020441532, + 0.0655505433678627, + 0.0030315157491713762, + -0.020229792222380638, + -0.03533201292157173, + -0.1612560898065567, + 0.12458962202072144, + -0.4030732214450836, + 0.2934851050376892, + -0.33430686593055725, + -0.2764648497104645, + 0.17947256565093994, + -0.11697950214147568, + -0.36205124855041504, + -0.17168311774730682, + 0.37642404437065125, + -0.27187395095825195, + -0.02921135164797306, + 0.12633703649044037, + 0.498738557100296, + 0.1609475463628769, + -0.2681986093521118, + -0.026569461449980736, + -0.47176268696784973, + -0.12062794715166092, + 0.11078733205795288, + -0.09782484173774719, + 0.0023211936932057142, + -0.169968843460083, + 0.3880041837692261, + 0.3578130900859833, + 0.11763940006494522, + -0.4813665449619293, + -0.10347896814346313, + 0.24357981979846954, + 0.3724425733089447, + -0.14462046325206757, + -10.616826057434082, + 0.013704407960176468, + -0.18380360305309296, + 0.5865207314491272, + -0.152750164270401, + 0.07400861382484436, + 0.1438300460577011, + -0.12722571194171906, + 0.16061021387577057, + 0.24059909582138062, + -0.17251212894916534, + 0.11196237802505493, + 0.4147752821445465, + 0.23892711102962494, + -0.06638500839471817, + -0.2527748644351959, + -0.30901190638542175, + 0.11179125308990479, + -0.09630758315324783, + 0.3143559396266937, + 0.26752933859825134, + 0.42435094714164734, + -0.3073941469192505, + 0.3584843575954437, + 0.2610261142253876, + -0.2650402784347534, + -0.1594763845205307, + 0.6285990476608276, + 0.08410970121622086, + -0.3022899329662323, + 0.36601200699806213, + 0.2684483826160431, + -0.2657216787338257, + 0.07662360370159149, + 0.006730282213538885, + -0.14872890710830688, + -0.02853289805352688, + 0.005274981260299683, + 0.11725449562072754, + -0.046378474682569504, + -0.035843219608068466, + -0.2058020383119583, + 0.13137951493263245, + 0.2607768476009369, + -0.0712469145655632, + -0.531154453754425, + -0.23718954622745514, + -1.4782066345214844, + 0.3222294747829437, + 0.3831448554992676, + 0.34081220626831055, + -0.006653102580457926, + 0.28010889887809753, + 0.014179840683937073, + -0.401740700006485, + 0.10215827077627182, + -0.2815476953983307, + 0.08820632845163345, + 0.08024688065052032, + -0.02609177492558956, + 0.20321226119995117, + -0.20275743305683136, + 0.3069598376750946, + -0.2695642411708832, + -0.338731050491333, + 0.08329558372497559, + 0.0186556875705719, + -0.07772798836231232, + -0.22380895912647247, + -0.46594616770744324, + -0.49291571974754333, + 0.018415803089737892, + -0.02680712379515171, + 0.021801531314849854, + 0.7258334755897522, + -0.01567288674414158, + -0.3567058742046356, + 0.20597468316555023, + 0.060889095067977905, + 0.4025122821331024, + 0.06056283041834831, + 0.003497886238619685, + 0.11631568521261215, + -0.13262121379375458, + -0.2576778829097748, + -0.12096837908029556, + 0.07407429069280624, + 0.5627965927124023, + -0.003220031736418605, + 0.07800175994634628, + -0.06158817186951637, + 0.43035635352134705, + -0.07872545719146729, + -0.18353402614593506, + -0.4382437765598297, + 0.17848354578018188, + -0.17031890153884888, + 0.11069171875715256, + 0.010168418288230896, + -0.21929140388965607, + -0.12307421118021011, + -0.13713203370571136, + -0.09890935570001602, + -0.5486672520637512, + -0.21980005502700806, + 0.08008436113595963, + 0.14192621409893036, + 0.2843337953090668, + 0.14715386927127838, + 0.007925912737846375, + -0.0637773722410202, + 0.003764241933822632, + 0.28281792998313904, + 0.4673670828342438, + 0.08164247125387192, + -0.08871052414178848, + -0.14729805290699005, + -0.1027877926826477, + -0.22942261397838593, + 0.16007305681705475, + 0.3888063430786133, + -0.1884269267320633, + 0.28113219141960144, + 0.6444199085235596, + -0.12033288925886154, + -0.2786875069141388, + 0.9409419894218445, + -0.20997263491153717, + 0.46836018562316895, + -0.2564603090286255, + 0.14908039569854736, + -0.10539919137954712, + -0.17819423973560333, + 0.1059143915772438, + 0.35121849179267883, + -0.2444978952407837, + 0.5245700478553772, + 0.038106560707092285, + -0.44227203726768494, + 0.11036250740289688, + -0.3603193759918213, + 0.5390539765357971, + 0.3152288496494293, + 0.2517121732234955, + -0.02332683652639389, + -0.23814786970615387, + -0.30149975419044495, + -0.056807469576597214, + -0.5429525375366211, + -0.3235109746456146, + -0.1181982234120369, + 0.2399153709411621, + 0.18090225756168365, + -0.4014083445072174, + 0.3968798816204071, + 0.1201978325843811, + -0.2105562686920166, + -0.21742452681064606, + -0.607570469379425, + -0.007181110326200724, + 0.16441118717193604, + 0.6403666138648987, + -0.01992282271385193, + 0.11760757118463516, + -0.12061230093240738, + 0.12311587482690811, + -0.08899597078561783, + 0.05671534314751625, + 0.10128848999738693, + -0.03540448099374771, + -0.5646531581878662, + 0.13876895606517792, + 0.1328868418931961, + -0.4247245788574219, + -0.18939344584941864, + -0.33714163303375244, + -0.008449741639196873, + -0.011848400346934795, + -0.25716808438301086, + 0.14446556568145752, + 0.3791041076183319, + -0.09448457509279251, + -0.04921277239918709, + -0.2370712012052536, + 0.11256077140569687, + 0.11598029732704163, + 0.11212000995874405, + 0.28194934129714966, + -0.22438853979110718, + -0.4330560863018036, + -0.2993071675300598, + 0.16982102394104004, + -0.05377756431698799, + -0.012679293751716614, + 0.10639557242393494, + 0.15050260722637177, + -0.301895409822464, + -0.007256550248712301, + -0.3482191860675812, + 0.06449958682060242, + -0.24084468185901642, + 0.285435289144516, + 0.26688438653945923, + -0.1868153065443039, + 0.11883104592561722, + -0.07296127080917358, + 0.21374869346618652, + 0.0485217459499836, + -0.2740878462791443, + 0.29664984345436096, + -0.12676501274108887 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_050.json b/src/benchmark/output/results/results_graph_050.json new file mode 100644 index 0000000..4915b98 --- /dev/null +++ b/src/benchmark/output/results/results_graph_050.json @@ -0,0 +1,792 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics**\n\nThe patient is a 67-year-old man with a history of 40 pack-years of smoking. He presented to the clinic in February 2022 with chest tightness.\n\n**Initial Diagnosis (Step 1)**\n\nUpon physical examination, left supraclavicular lymphadenopathy was noted, measuring approximately 1 cm in size. Chest CT revealed a 2 cm mass in the posterior basal segment of the left lower lobe, with multiple burrs on the edge and enhancement. Mediastinal lymph nodes were enlarged and fused, surrounding the left main bronchus. Abdominal enhanced CT showed enlargement of the left adrenal gland, considered to be a metastatic lesion.\n\nImaging studies, including whole-body bone imaging and brain-enhanced MRI, did not reveal any obvious abnormalities. Immunohistochemical markers (CK-pan and P40) were positive, suggesting a diagnosis of lung cancer.\n\n**Biopsy and Diagnosis (Step 2)**\n\nOn March 10, 2022, a CT-guided lung puncture biopsy was performed to further characterize the tumor. Pathology suggested poorly differentiated carcinoma. Immunohistochemical markers were CK-pan (+), CK7 (-), TTF-1 (-), P40 (+), BRG-1 (-), and Syn (-). PD-L1 staining revealed a tumor proportion score (TPS) of 8%.\n\n**Diagnosis Confirmation and Treatment (Step 3)**\n\nBased on immunohistochemistry and genetic testing, a diagnosis of SMARCA4-deficient non-small cell lung cancer (SMARCA4-dNSCLC) was made. First-line treatment with tislelizumab combined with fruquintinib was initiated.\n\n**Treatment Outcomes (Step 4)**\n\nFollowing initial treatment, the patient experienced cervical lymph node progression. Subsequent biopsy confirmed the diagnosis, and the patient was treated with local radiotherapy and previous systemic therapy. The patient achieved more than two years of disease control without grade \u22653 adverse events.\n\n**Timeline**\n\n* February 2022: Patient presents to clinic with chest tightness.\n* March 10, 2022: CT-guided lung puncture biopsy is performed.\n* March 2022: Diagnosis of SMARCA4-dNSCLC is confirmed via subsequent biopsy.\n* April 1, 2022: Initial treatment with tislelizumab and fruquintinib begins.\n* April 1, 2022: Patient undergoes local radiotherapy and previous systemic therapy.\n\n**Outcomes**\n\nThe patient achieved more than two years of disease control without grade \u22653 adverse events. The diagnosis of SMARCA4-dNSCLC was confirmed via subsequent biopsy, and the patient responded well to first-line treatment with tislelizumab combined with fruquintinib.", + "bertscore": { + "precision": 0.8664990067481995, + "recall": 0.8506335020065308, + "f1": 0.858492910861969 + }, + "bleu": 0.11985709106260009, + "rouge1": 0.4781818181818182, + "rougeL": 0.26363636363636367, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 4, + "edge_count": 3, + "avg_in_degree": 0.75, + "density": 0.25 + }, + "trajectory_embedding": [ + 0.28611698746681213, + 0.13427646458148956, + -0.17884783446788788, + 0.06759999692440033, + -0.12707366049289703, + 0.07035525888204575, + 0.17056792974472046, + -0.0935962051153183, + 0.17258435487747192, + -0.4768597185611725, + -0.167130708694458, + 0.24880175292491913, + -0.5263209342956543, + 0.07364700734615326, + -0.45961248874664307, + 0.04494486376643181, + -0.026198312640190125, + 0.3359876871109009, + 0.012521790340542793, + -0.26034823060035706, + -0.41108110547065735, + 0.037916794419288635, + -0.3372756242752075, + -0.25214606523513794, + 0.0999106913805008, + -0.11487384885549545, + 0.28169575333595276, + 0.5982757210731506, + 0.15346869826316833, + 0.26648271083831787, + 0.17303115129470825, + 0.2140756994485855, + -0.17565792798995972, + 0.08639498054981232, + -0.09855536371469498, + 0.26307201385498047, + 0.2998790144920349, + 0.13723576068878174, + -0.08768844604492188, + 0.011026464402675629, + -0.2002849280834198, + -0.048587024211883545, + 0.878470778465271, + 0.4011160731315613, + 0.5819730162620544, + -0.4260130226612091, + 0.011033251881599426, + 0.4375970959663391, + -0.7640367746353149, + -0.12306598573923111, + 0.15911906957626343, + 0.5300086140632629, + 0.8712754249572754, + -0.1643335223197937, + 0.4470507502555847, + -0.2173643708229065, + -0.4557937979698181, + -0.0844617411494255, + -0.21899664402008057, + 0.0742630586028099, + 0.13631054759025574, + 0.16249915957450867, + -0.09851536899805069, + 0.0505608394742012, + -0.2905880808830261, + -0.21038293838500977, + -0.39228636026382446, + -0.010893747210502625, + 0.06424669921398163, + -0.501523494720459, + -0.3400188982486725, + -0.40115177631378174, + -0.1286676824092865, + 0.24838244915008545, + 0.1508217304944992, + -0.34514880180358887, + 0.29071101546287537, + -0.05093805119395256, + 0.0051512084901332855, + 0.0868554562330246, + 0.3020612895488739, + -0.050956450402736664, + 0.13252362608909607, + 0.21917816996574402, + -0.48753684759140015, + 0.13600105047225952, + 0.14534994959831238, + -0.2028047889471054, + -0.22278347611427307, + 0.27956125140190125, + 0.3308485746383667, + -0.1514054834842682, + 0.05407838895916939, + -0.16169729828834534, + 0.2651010751724243, + -0.037498943507671356, + 0.11191870272159576, + 0.4537842571735382, + 0.8735491633415222, + -0.06848015636205673, + 0.3412664532661438, + 0.12493781745433807, + 0.33396536111831665, + -0.035614121705293655, + 0.4351556897163391, + -0.05037370324134827, + 0.3503718376159668, + -0.33370694518089294, + 0.11448526382446289, + 0.3839879035949707, + -0.07083563506603241, + -0.19810566306114197, + 0.1066712886095047, + -0.3637048602104187, + 0.08103729039430618, + 0.25520825386047363, + -0.2815818786621094, + 0.08018158376216888, + 0.08865801990032196, + -0.4253826141357422, + -0.09739439934492111, + -0.14829817414283752, + 0.5049974322319031, + 0.13626214861869812, + -0.43955790996551514, + -0.0019403360784053802, + -0.10275361686944962, + 0.18361759185791016, + -0.18384690582752228, + 0.11932960152626038, + -0.48526132106781006, + -0.14824563264846802, + 0.15075623989105225, + 0.14106670022010803, + -0.3923092484474182, + 0.3413350582122803, + -0.4033099412918091, + 0.05596005171537399, + -1.1557360887527466, + 0.17026367783546448, + -0.3898908793926239, + -0.0009445361793041229, + 0.1861003190279007, + -0.3648298978805542, + -0.13174337148666382, + -0.1422368586063385, + -0.1551688015460968, + 0.16327136754989624, + 0.10406364500522614, + -0.15309861302375793, + -0.12624764442443848, + -0.02770388498902321, + 0.1016465425491333, + 0.16573543846607208, + 0.14634031057357788, + 0.09266834706068039, + 0.14615139365196228, + 0.2753906846046448, + 0.21327972412109375, + -0.2331511229276657, + -0.08298072218894958, + 0.4351575970649719, + -0.14475589990615845, + -0.20079879462718964, + 0.23498594760894775, + -0.6575887799263, + 0.15307697653770447, + -0.24700656533241272, + 0.35997551679611206, + 0.04937354847788811, + -0.12082144618034363, + 0.12923043966293335, + 0.0557987354695797, + 0.5082664489746094, + 0.26311948895454407, + 0.5054872035980225, + 0.013673227280378342, + 0.009112924337387085, + 0.12733131647109985, + 0.16569937765598297, + 0.00310705229640007, + -0.08176115900278091, + 0.4182768166065216, + 0.2179679125547409, + -0.30778276920318604, + 0.25560349225997925, + 0.4322963058948517, + -0.4572395384311676, + -0.16039693355560303, + -0.12213903665542603, + 0.5717853307723999, + -0.2520174980163574, + 0.3979622721672058, + -0.47662776708602905, + 0.013381663709878922, + -0.018789071589708328, + -0.3408171534538269, + -0.280231237411499, + 0.10877002030611038, + -0.16022472083568573, + 0.07480621337890625, + 0.24456706643104553, + -0.20619921386241913, + 0.29714328050613403, + 0.20191602408885956, + -0.17042505741119385, + 0.26733195781707764, + 0.32364046573638916, + 0.036039434373378754, + -0.19135543704032898, + -0.22775527834892273, + 0.1766640692949295, + 0.10322166979312897, + 0.2048116773366928, + 0.011436711996793747, + -0.26955655217170715, + 0.24534083902835846, + -0.09736577421426773, + -0.2338249385356903, + 0.19743533432483673, + -0.25545522570610046, + -0.15769422054290771, + 0.39490509033203125, + 0.057777270674705505, + -0.3223835527896881, + 0.30582237243652344, + 0.20960485935211182, + 0.1412213295698166, + -0.013808518648147583, + -0.030449647456407547, + 0.08296868205070496, + -0.12145452201366425, + 0.3112379014492035, + -0.06933535635471344, + -0.1435001790523529, + -0.3136235177516937, + 0.15269654989242554, + -0.21046385169029236, + -0.3846070170402527, + 0.3341795802116394, + -0.0763542652130127, + -0.05320972204208374, + 0.061510443687438965, + -0.3148258626461029, + -0.20902186632156372, + -0.13835537433624268, + 0.1127195730805397, + 0.5595144033432007, + 0.010520918294787407, + 0.4197878837585449, + 0.2708355784416199, + -0.12647435069084167, + 0.20740364491939545, + -0.46402645111083984, + -0.2240506112575531, + -0.3230225145816803, + -0.15311935544013977, + -0.20417216420173645, + -0.5147440433502197, + 0.015085883438587189, + 0.07050317525863647, + -0.3042822480201721, + 0.17397169768810272, + -0.26245105266571045, + -0.12953199446201324, + -0.1489570587873459, + 0.03644797205924988, + 0.361921101808548, + -0.14653226733207703, + 0.11346759647130966, + -0.5632423162460327, + -0.4179075360298157, + 0.004305437207221985, + -0.008211316540837288, + 0.1934705674648285, + 0.19282713532447815, + 0.14203518629074097, + 0.25611960887908936, + 0.3151339888572693, + -0.412030965089798, + -0.36540257930755615, + 0.050604447722435, + -0.45540377497673035, + 0.09515400230884552, + -0.37448975443840027, + 0.14557713270187378, + 0.550338864326477, + -0.13654349744319916, + 0.30999845266342163, + 0.4467751085758209, + 0.5205051898956299, + 0.23446506261825562, + -0.11501815915107727, + -0.06679169833660126, + 0.02285410463809967, + 0.028809456154704094, + -0.4496556520462036, + 0.1144946739077568, + -0.23425181210041046, + -0.08715091645717621, + 0.31243640184402466, + 0.3895567059516907, + 0.08900932222604752, + -0.45884788036346436, + -0.21385839581489563, + 0.7885830402374268, + 0.27527695894241333, + -0.18858632445335388, + -0.028043732047080994, + 0.29875603318214417, + 0.7054168581962585, + 0.07107377052307129, + -0.16307532787322998, + 0.03757654130458832, + -0.18278731405735016, + -0.13380441069602966, + -0.04871849715709686, + 0.06552621722221375, + 0.17830991744995117, + 0.0657883882522583, + -0.12852227687835693, + 0.29549968242645264, + -0.1116783544421196, + -0.0679718405008316, + -0.041574180126190186, + 0.012001711875200272, + 0.0022985711693763733, + -0.16856612265110016, + 0.20106177031993866, + -0.20944277942180634, + 0.013970524072647095, + 0.5270072817802429, + -0.056031424552202225, + -0.2767646014690399, + 0.4002992510795593, + 0.03616563230752945, + -0.5012728571891785, + 0.22156104445457458, + -0.2022896409034729, + -0.018658190965652466, + 0.28121212124824524, + -0.1479737013578415, + -0.09649447351694107, + -0.15575730800628662, + -0.14630237221717834, + 0.21232230961322784, + 0.1045440137386322, + -0.14755134284496307, + 0.09750846028327942, + 0.12608152627944946, + 0.6075655221939087, + -0.0491010881960392, + -0.15878045558929443, + 0.36383017897605896, + -0.303674578666687, + -0.139631450176239, + 0.017303448170423508, + 0.1479826271533966, + 0.10025434195995331, + -0.4083082377910614, + -0.30561330914497375, + -0.40813252329826355, + 0.06945443898439407, + 0.06091393530368805, + -0.1910412609577179, + -0.047186195850372314, + 0.21456490457057953, + -0.1141955554485321, + 0.11537095904350281, + 0.40348875522613525, + 0.34748774766921997, + 0.07191719114780426, + 0.5059363842010498, + 0.25959986448287964, + -0.02637544646859169, + 0.3511104881763458, + -0.02535049244761467, + 0.22289957106113434, + -0.026455219835042953, + -0.36932793259620667, + -0.49803292751312256, + 0.11723490804433823, + -0.2919188439846039, + -0.13946878910064697, + 0.11761865764856339, + 0.09952259063720703, + -0.07412463426589966, + -0.08564862608909607, + 0.16367147862911224, + 0.018953701481223106, + 0.15992528200149536, + -0.0596538782119751, + 0.529747486114502, + -0.036212317645549774, + -0.4240519106388092, + 0.1747322976589203, + 0.01459946297109127, + 0.27978062629699707, + -0.19594606757164001, + -0.09019763767719269, + -0.37640586495399475, + 0.4065615236759186, + 0.003042500466108322, + -0.08811837434768677, + 0.05574090778827667, + -0.16220590472221375, + -0.4509143531322479, + -0.4442014694213867, + -0.05911988019943237, + -0.04536598175764084, + -0.08711369335651398, + -0.20615258812904358, + 0.28761693835258484, + -0.11493343114852905, + -0.15314644575119019, + 0.18207456171512604, + 0.5431855320930481, + 0.18065589666366577, + -0.18394294381141663, + -0.10792461037635803, + 0.08106616884469986, + 0.2082202434539795, + 0.45270657539367676, + -0.2531249523162842, + 0.19319702684879303, + 0.050442904233932495, + -0.38391873240470886, + -0.08642759919166565, + 0.032898519188165665, + -0.3828655183315277, + 0.17220157384872437, + 0.20545430481433868, + 0.10500820726156235, + 0.08463238924741745, + 0.10580836981534958, + 0.0359724760055542, + 0.3080650866031647, + -0.43123912811279297, + -0.05305764824151993, + 0.30112752318382263, + -0.1331443190574646, + 0.500444233417511, + -0.11753887683153152, + -0.311636358499527, + -0.0955292358994484, + -0.03531794250011444, + -0.47755569219589233, + 0.2135458141565323, + -0.036886703222990036, + -0.13463351130485535, + 0.13409295678138733, + 0.24143600463867188, + 0.14437252283096313, + 0.06905212253332138, + -0.05057410150766373, + -0.04990082606673241, + 0.05424710735678673, + -0.08028794825077057, + -0.517091691493988, + -0.06076958030462265, + -0.34456807374954224, + -0.3337685167789459, + -0.27521225810050964, + 0.5027885437011719, + 0.19781309366226196, + 0.018157340586185455, + 0.21312889456748962, + 0.20783403515815735, + -0.26342150568962097, + -0.46998780965805054, + 0.17756298184394836, + 0.09235695749521255, + 0.8029807806015015, + 0.03478199988603592, + -0.22001612186431885, + 0.08366791903972626, + -0.5377001762390137, + 0.18756717443466187, + 0.2371927797794342, + 0.17131154239177704, + 0.2717122435569763, + 0.15818588435649872, + 0.3033129870891571, + 0.3824073076248169, + 0.2087305784225464, + -0.09367642551660538, + 0.23282885551452637, + -0.17755545675754547, + -0.20320512354373932, + 0.12113910913467407, + -0.05998587608337402, + 0.5657732486724854, + -0.46463334560394287, + 0.23911577463150024, + -0.031010426580905914, + 0.4292449653148651, + -0.15956278145313263, + -0.2705172002315521, + -0.039062805473804474, + -0.3034370243549347, + -0.13700655102729797, + -0.3776121735572815, + -0.24670469760894775, + 0.02542027086019516, + -0.3266569972038269, + 0.006663868203759193, + 0.3107166886329651, + 0.2237526923418045, + 0.30320122838020325, + 0.13753119111061096, + -0.23212677240371704, + -0.5131415724754333, + -0.0292116217315197, + 0.48148781061172485, + 0.22850051522254944, + -0.0349501296877861, + -0.15351517498493195, + 0.14526182413101196, + 0.7079096436500549, + 0.05395514518022537, + -0.12520454823970795, + -0.15301859378814697, + -0.06865004450082779, + 0.01030103862285614, + -0.00728218350559473, + -0.0619417205452919, + 0.16871026158332825, + -0.34539008140563965, + -0.0584397166967392, + -0.21137507259845734, + -0.3909897804260254, + 0.22458739578723907, + -0.4177096486091614, + -0.31723251938819885, + -0.17922085523605347, + 0.13097426295280457, + -0.15707644820213318, + -0.017049606889486313, + 0.21073544025421143, + 0.5532355308532715, + 0.24607297778129578, + -0.10640455037355423, + 0.12368571758270264, + -0.5548756122589111, + -0.0694003701210022, + 0.26647886633872986, + -0.19097845256328583, + 0.18057143688201904, + 0.0916849672794342, + 0.2498811036348343, + 0.24502527713775635, + 0.23572248220443726, + -0.45633813738822937, + 0.13080842792987823, + 0.18696050345897675, + 0.40971940755844116, + -0.14450708031654358, + -10.72884750366211, + -0.08436558395624161, + -0.17222632467746735, + 0.3722347319126129, + -0.005003519356250763, + 0.08569922298192978, + -0.2880721688270569, + 0.14975649118423462, + 0.08099672198295593, + 0.2767045795917511, + -0.1416490077972412, + 0.22035539150238037, + 0.31024396419525146, + 0.3281044065952301, + -0.00700637511909008, + 0.09197277575731277, + -0.2828317880630493, + 0.36237338185310364, + -0.2018129825592041, + 0.08031363040208817, + 0.29958000779151917, + 0.5100498199462891, + -0.24878625571727753, + 0.316982626914978, + 0.16252052783966064, + -0.3794524669647217, + -0.16013485193252563, + 0.3249574899673462, + 0.15042707324028015, + -0.4480612576007843, + 0.4206530451774597, + 0.06914687901735306, + -0.12947405874729156, + -0.17984142899513245, + 0.04047023504972458, + -0.18042239546775818, + -0.2634485363960266, + -0.13561904430389404, + -0.010061487555503845, + -0.049630045890808105, + 0.07044035196304321, + -0.2805670499801636, + 0.046354323625564575, + 0.3614566922187805, + -0.18569093942642212, + -0.4011118710041046, + -0.146980881690979, + -1.5222930908203125, + 0.26466691493988037, + 0.28200364112854004, + 0.5429244637489319, + 0.04674656689167023, + 0.24689969420433044, + 0.0596962571144104, + -0.6062489748001099, + 0.043502502143383026, + -0.0716652125120163, + 0.294344425201416, + 0.323344886302948, + -0.07167421281337738, + 0.1381332278251648, + -0.20218941569328308, + 0.33652880787849426, + -0.5205097198486328, + -0.24576926231384277, + 0.15342357754707336, + -0.13860425353050232, + -0.01793592981994152, + -0.23604585230350494, + -0.19331979751586914, + -0.5147315859794617, + -0.07783228904008865, + 0.020054936408996582, + 0.003683023154735565, + 0.5302668213844299, + -0.14905905723571777, + -0.6215678453445435, + -0.04693080112338066, + 0.03177265077829361, + 0.43928441405296326, + 0.20044471323490143, + 0.053440943360328674, + 0.03512869030237198, + -0.25870904326438904, + 0.0456407368183136, + -0.10165692120790482, + 0.10231848061084747, + 0.6454752087593079, + -0.06057240813970566, + -0.02014753967523575, + -0.0805678740143776, + 0.3307194709777832, + -0.21311278641223907, + -0.12919773161411285, + -0.5383883714675903, + 0.19735124707221985, + 0.10391107946634293, + -0.1251986026763916, + -0.04085569828748703, + -0.04879387468099594, + -0.1310943365097046, + -0.24909880757331848, + 0.0552033931016922, + -0.40416133403778076, + -0.2569256126880646, + 0.31423652172088623, + 0.32732781767845154, + 0.10698288679122925, + 0.1568198949098587, + 0.13665547966957092, + 0.039797551929950714, + -0.010011918842792511, + 0.45069649815559387, + 0.4661501348018646, + 0.2840852737426758, + -0.08953103423118591, + -0.22950732707977295, + 0.07077176868915558, + -0.2921951711177826, + 0.052205778658390045, + 0.32449954748153687, + 0.0655127540230751, + 0.2779186964035034, + 0.6569525003433228, + -0.09968475252389908, + -0.15900298953056335, + 0.7934086918830872, + -0.313374400138855, + 0.3700951337814331, + -0.1288086622953415, + 0.1459966003894806, + 0.0017610639333724976, + -0.21991565823554993, + 0.03200221434235573, + 0.1541668325662613, + -0.2301967740058899, + 0.51127028465271, + -0.04711591452360153, + -0.5631332993507385, + -0.09498932212591171, + -0.3220555782318115, + 0.3919947147369385, + 0.20188823342323303, + 0.19454336166381836, + -0.18447835743427277, + -0.3446812629699707, + -0.15064498782157898, + 0.06562292575836182, + -0.5549658536911011, + -0.25142520666122437, + -0.18479636311531067, + 0.06086111068725586, + -0.07113157212734222, + -0.21488645672798157, + 0.44719141721725464, + 0.040575891733169556, + -0.23016901314258575, + 0.016948353499174118, + -0.4576629102230072, + -0.2774576246738434, + 0.19591179490089417, + 0.7523588538169861, + 0.15914063155651093, + -0.3030513525009155, + -0.11176756024360657, + 0.2445915937423706, + -0.0673903077840805, + -0.011832956224679947, + 0.026855669915676117, + 0.08922559022903442, + -0.5653276443481445, + 0.07565314322710037, + 0.3082425594329834, + -0.5675989985466003, + -0.23595665395259857, + -0.4375462830066681, + 0.2345152199268341, + -0.19853003323078156, + -0.18320170044898987, + 0.4040122628211975, + 0.1327686309814453, + 0.09642577916383743, + 0.1718791127204895, + -0.25090765953063965, + 0.07952342182397842, + 0.1694749891757965, + 0.13337859511375427, + 0.26768943667411804, + -0.08014815300703049, + -0.5359716415405273, + -0.2287704050540924, + 0.27064019441604614, + -0.36046329140663147, + -0.1262928545475006, + 0.1026020348072052, + 0.12672147154808044, + -0.271016389131546, + 0.09319630265235901, + -0.26792603731155396, + 0.017616063356399536, + -0.3463478684425354, + 0.06339090317487717, + 0.27214208245277405, + -0.33809763193130493, + 0.20576338469982147, + -0.14227889478206635, + 0.2541172206401825, + 0.21700401604175568, + -0.2943233251571655, + 0.17018800973892212, + -0.1988847255706787 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_051.json b/src/benchmark/output/results/results_graph_051.json new file mode 100644 index 0000000..85a7fa5 --- /dev/null +++ b/src/benchmark/output/results/results_graph_051.json @@ -0,0 +1,792 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 65-year-old male with a 20-year history of chronic obstructive pulmonary disease (COPD).\n\n**Initial Presentation:**\nOn [date], the patient was admitted to hospital with sudden massive hemoptysis, which he denied experiencing any chest pain, dyspnea, or fever. No other significant comorbidities were present at the time of presentation.\n\n**Diagnosis and Timeline:**\n\n1. **Step 1 (N1):**\nThe patient's history of COPD was noted, with a diagnosis code of \"233936005\" for Chronic obstructive lung disease, which is historical in nature.\n2. **Step 2 (N2):**\nTwo months prior to admission, an enhanced CT scan revealed a tumor in the right upper lung.\n3. **Step 3 (N3):**\nBiopsy confirmed that the tumor was squamous cell carcinoma of the lung (SCC), with a TNM stage of T2bNXM1c1.\n4. **Step 4 (N4):**\nThe patient received two cycles of albumin-bound paclitaxel, nedaplatin, and tislelizumab as treatment for SCC.\n\n**Follow-up and Complications:**\n\n5. **Step 5 (N5):**\nA follow-up CT scan showed partial remission of the tumor with cavitation.\n6. **Step 6 (N6):**\nThe patient presented with hemoptysis, which led to further evaluation, including lab tests and imaging.\n7. **Step 7 (N7):**\nEmergency endovascular intervention was performed due to pseudoaneurysm formation in the right upper pulmonary artery located at the SCC cavity wall with an intraluminal hematoma.\n8. **Step 8 (N8):**\nThe patient underwent emergency endovascular intervention, which included embolization using microcoils to occlude the PAP and proximal artery.\n9. **Step 9 (N9):**\nPost-procedure angiography confirmed the disappearance of the pulmonary artery pseudoaneurysm (PAP).\n10. **Step 10 (N10):**\nThe patient experienced no active bleeding postoperatively, and follow-up over 6 months showed no recurrence of hemoptysis.\n11. **Step 11 (N11):**\nA CT scan 3 months post-embolization showed absorption of the tumor cavity with significant tumor reduction.\n\n**Outcomes:**\n\nThe patient's treatment for SCC was successful, with partial remission of the tumor and disappearance of the pulmonary artery pseudoaneurysm. The patient experienced no active bleeding postoperatively and no recurrence of hemoptysis over 6 months. Follow-up imaging showed absorption of the tumor cavity with significant tumor reduction.\n\n**Conclusion:**\nThis case highlights the importance of early diagnosis and treatment for SCC, particularly in patients with a history of COPD. The successful outcome of this patient's treatment underscores the effectiveness of endovascular intervention in managing complications associated with SCC.", + "bertscore": { + "precision": 0.7820798754692078, + "recall": 0.7985286116600037, + "f1": 0.7902186512947083 + }, + "bleu": 0.15408828759088924, + "rouge1": 0.4800693240901213, + "rougeL": 0.2998266897746967, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 12, + "edge_count": 11, + "avg_in_degree": 0.9166666666666666, + "density": 0.08333333333333333 + }, + "trajectory_embedding": [ + 0.19094891846179962, + 0.14106714725494385, + -0.031158799305558205, + 0.13212095201015472, + -0.034361883997917175, + 0.11214422434568405, + 0.008480226621031761, + 0.27649667859077454, + 0.44355106353759766, + -0.3264440596103668, + -0.24161100387573242, + -0.02264360710978508, + -0.5586544275283813, + -0.07856817543506622, + -0.13135342299938202, + 0.2850583493709564, + -0.02288839966058731, + 0.2912149727344513, + 0.003512168535962701, + -0.31964847445487976, + -0.3711169958114624, + 0.1159251481294632, + -0.4533284306526184, + 0.038472980260849, + 0.24174714088439941, + -0.030941514298319817, + 0.3462403118610382, + 0.5779390931129456, + 0.2785898447036743, + 0.3189777135848999, + 0.14821793138980865, + 0.015613364987075329, + 0.16177898645401, + 0.0635412409901619, + -0.2472148984670639, + 0.3098788559436798, + 0.12770746648311615, + 0.3534388840198517, + -0.037386197596788406, + -0.054510749876499176, + -0.0025609703734517097, + 0.0313134603202343, + 0.8939815163612366, + 0.23854190111160278, + 0.32405316829681396, + -0.8171070218086243, + 0.0318169966340065, + 0.5683367848396301, + -0.48634955286979675, + -0.3582748472690582, + 0.1165669858455658, + 0.7459186315536499, + 0.567617654800415, + -0.2915267050266266, + 0.4774470329284668, + -0.23445822298526764, + -0.2539263367652893, + -0.42970606684684753, + -0.14772860705852509, + 0.033471111208200455, + -0.04910167306661606, + -0.2052757292985916, + 0.31284111738204956, + -0.1733635514974594, + -0.22471214830875397, + -0.1454334706068039, + -0.16022424399852753, + 0.08478660881519318, + 0.018503820523619652, + -0.4332069158554077, + -0.1765756458044052, + -0.19817395508289337, + -0.09132220596075058, + 0.06759564578533173, + 0.11315162479877472, + -0.18721602857112885, + 0.4069445729255676, + -0.08486670255661011, + 0.11253757029771805, + 0.1453879028558731, + -0.1293947547674179, + -0.14425037801265717, + 0.01777280867099762, + 0.24056577682495117, + -0.4250442683696747, + 0.07426676154136658, + -0.06154009327292442, + -0.15809665620326996, + -0.3489093780517578, + 0.11119237542152405, + 0.20891395211219788, + -0.3485325872898102, + 0.07850185036659241, + -0.13518120348453522, + 0.13621823489665985, + 0.14744067192077637, + 0.4469539523124695, + 0.29965150356292725, + 0.9332895278930664, + 0.07178158313035965, + 0.10418141633272171, + -0.04303005710244179, + 0.22302748262882233, + 0.02683250978589058, + 0.3797377347946167, + -0.16346760094165802, + 0.1096019521355629, + -0.5771856904029846, + 0.13077057898044586, + 0.44911858439445496, + 0.025568801909685135, + -0.15841908752918243, + 0.006335198879241943, + -0.2211894392967224, + 0.1398351788520813, + 0.0879717543721199, + 0.00398073298856616, + 0.19677186012268066, + 0.20679594576358795, + -0.40137407183647156, + -0.16071675717830658, + -0.06497296690940857, + 0.30343544483184814, + 0.2966051399707794, + -0.4089924693107605, + 0.008863494731485844, + -0.20866107940673828, + 0.021763013675808907, + 0.004102692473679781, + 0.06657807528972626, + -0.4731425940990448, + -0.17991520464420319, + -0.08739478141069412, + 0.1031360924243927, + -0.15920963883399963, + 0.22302298247814178, + -0.34198296070098877, + 0.04968779906630516, + -1.0663485527038574, + 0.10440728813409805, + -0.3866520822048187, + -0.018199682235717773, + 0.014895658940076828, + -0.49616190791130066, + -0.25237366557121277, + -0.1474708616733551, + -0.1502130627632141, + 0.10663757473230362, + -0.20781637728214264, + -0.11339282244443893, + -0.0027344971895217896, + 0.08031895756721497, + 0.2411370873451233, + 0.3774353861808777, + 0.07304146885871887, + 0.09206283092498779, + 0.029945863410830498, + 0.28016722202301025, + 0.10834024101495743, + -0.08094920963048935, + 0.04222196713089943, + 0.4482365548610687, + 0.08113250881433487, + -0.00809185765683651, + -0.026369599625468254, + -0.6576817631721497, + 0.15983717143535614, + -0.14143669605255127, + 0.2476421743631363, + 0.08759968727827072, + -0.1594245284795761, + 0.05932655557990074, + -0.2781563401222229, + 0.5673711895942688, + 0.05853328853845596, + 0.3078257143497467, + 0.10266649723052979, + -0.08796900510787964, + 0.06542083621025085, + 0.19804805517196655, + 0.0569678395986557, + -0.18759411573410034, + 0.6016750335693359, + 0.19346891343593597, + -0.2672523856163025, + 0.22446174919605255, + 0.33883944153785706, + -0.03287084400653839, + -0.1990729719400406, + -0.018878616392612457, + 0.4933117628097534, + -0.31329214572906494, + 0.4603515565395355, + -0.4358474612236023, + 0.008301946334540844, + 0.20370358228683472, + -0.23555879294872284, + -0.18351620435714722, + -0.018741071224212646, + -0.13888464868068695, + 0.11807167530059814, + 0.026254886761307716, + -0.2636762857437134, + 0.14814221858978271, + 0.15412123501300812, + -0.15580083429813385, + 0.2938325107097626, + -0.0890255719423294, + 0.18235860764980316, + -0.10037370026111603, + -0.08933348953723907, + 0.21167907118797302, + -0.18058249354362488, + 0.1372062712907791, + -0.010980512946844101, + -0.32624194025993347, + 0.21716003119945526, + -0.08167710900306702, + -0.039732400327920914, + 0.26160016655921936, + 0.002250573132187128, + -0.22661751508712769, + -0.10921990126371384, + -0.013210299424827099, + -0.5326783657073975, + 0.25696709752082825, + 0.10750465840101242, + 0.28419411182403564, + 0.297998309135437, + -0.01609373278915882, + 0.04446385055780411, + -0.37519943714141846, + 0.28912636637687683, + -0.19353193044662476, + -0.10305824875831604, + -0.3192024230957031, + 0.25994062423706055, + -0.23299647867679596, + 0.015665993094444275, + 0.1651689112186432, + -0.07293307036161423, + -0.17282937467098236, + 0.1346348375082016, + -0.2649390995502472, + 0.0018071356462314725, + -0.310137003660202, + 0.060303423553705215, + 0.27184101939201355, + 0.17266370356082916, + 0.23124371469020844, + 0.024022696539759636, + -0.08349869400262833, + 0.19501905143260956, + -0.1497233361005783, + -0.3982785940170288, + -0.47297728061676025, + -0.1038932353258133, + -0.02060980349779129, + -0.5805975198745728, + 0.08674362301826477, + -0.05290735885500908, + -0.0549015998840332, + -0.00790991447865963, + -0.29442891478538513, + -0.136831596493721, + 0.07148788124322891, + 0.021244853734970093, + 0.06239302083849907, + -0.17239466309547424, + 0.12096230685710907, + -0.09722525626420975, + -0.22580766677856445, + -0.12006731331348419, + -0.05214909091591835, + 0.14095324277877808, + 0.0040327636525034904, + -0.20288728177547455, + -7.873638242017478e-05, + 0.08176250755786896, + -0.3332521617412567, + -0.16884587705135345, + 0.16540077328681946, + -0.25601914525032043, + 0.3336305022239685, + -0.06304765492677689, + 0.17451544106006622, + 0.2424243986606598, + 0.048303019255399704, + 0.20669297873973846, + 0.32897791266441345, + 0.4673144221305847, + 0.04896167293190956, + -0.005703209433704615, + 0.02857513539493084, + -0.0198189839720726, + -0.027272425591945648, + -0.3427080512046814, + 0.4115428924560547, + 0.05080471932888031, + 0.0016239593969658017, + -0.044011205434799194, + 0.28814399242401123, + 0.1063091829419136, + -0.2920747697353363, + -0.039684999734163284, + 0.6049829721450806, + 0.12567752599716187, + 0.08993291854858398, + 0.11041045188903809, + 0.3999946713447571, + 0.3928902745246887, + -0.03851931169629097, + -0.08497002720832825, + 0.030264396220445633, + -0.11007676273584366, + -0.14249195158481598, + -0.10249415040016174, + 0.18465657532215118, + 0.39143607020378113, + -0.22170978784561157, + -0.07035940140485764, + 0.06377561390399933, + -0.043343305587768555, + 0.029087640345096588, + -0.25997525453567505, + -0.06446229666471481, + 0.11766389012336731, + -0.18083275854587555, + 0.3022649586200714, + -0.06595628708600998, + -0.11083913594484329, + 0.39614880084991455, + -0.286289781332016, + -0.19291196763515472, + 0.1384749561548233, + -0.10130176693201065, + -0.4696400463581085, + 0.3791688084602356, + -0.1880205273628235, + 0.10157148540019989, + 0.32650890946388245, + -0.23785170912742615, + 0.07592041045427322, + -0.05216998979449272, + 0.32650554180145264, + 0.024744482710957527, + 0.01702575571835041, + -0.09327530115842819, + 0.06496191024780273, + 0.06579211354255676, + 0.5461304187774658, + 0.2267688810825348, + 0.18436168134212494, + 0.5087961554527283, + 0.0668533518910408, + -0.42412450909614563, + 0.014898168854415417, + -0.03307408466935158, + 0.35356244444847107, + -0.09419333189725876, + -0.16072210669517517, + -0.13200615346431732, + 0.053954459726810455, + 0.15426093339920044, + -0.29224255681037903, + 0.01019919291138649, + 0.1613394170999527, + 0.0855192244052887, + -0.12590287625789642, + 0.317500501871109, + 0.14517813920974731, + -0.09934082627296448, + 0.4981444180011749, + -0.051182009279727936, + -0.10979887843132019, + 0.3576841652393341, + -0.2112240344285965, + 0.22816157341003418, + -0.08570058643817902, + -0.2278006672859192, + -0.2525404691696167, + 0.11332028359174728, + -0.23273593187332153, + -0.17832408845424652, + 0.01875140145421028, + -0.18520431220531464, + 0.11991856247186661, + -0.2380026876926422, + 0.1449422985315323, + 0.03122391551733017, + 0.2285527139902115, + 0.0872030183672905, + 0.3563791513442993, + 0.061768367886543274, + -0.2637602388858795, + 0.24822677671909332, + -0.041144367307424545, + 0.015523252077400684, + -0.28305864334106445, + 0.020409511402249336, + -0.12434007972478867, + 0.4844158887863159, + -0.012193693779408932, + -0.04268227890133858, + 0.03554869815707207, + -0.033881865441799164, + -0.13600239157676697, + -0.382303923368454, + -0.15320897102355957, + -0.15577943623065948, + -0.0022908824030309916, + 0.03735930100083351, + 0.11865749955177307, + -0.3134608566761017, + -0.15268541872501373, + -0.0664103701710701, + -0.045090582221746445, + 0.2200946807861328, + -0.12978920340538025, + -0.1365133374929428, + 0.3668656349182129, + 0.17513738572597504, + 0.40399169921875, + -0.34162676334381104, + 0.20498956739902496, + 0.12280737608671188, + -0.3162277936935425, + -0.11437566578388214, + -0.01992126926779747, + -0.3349311351776123, + -0.08125343918800354, + 0.2670181691646576, + 0.3032830059528351, + 0.0002204768970841542, + -0.018182771280407906, + 0.1633535623550415, + 0.1505696177482605, + -0.3155216872692108, + -0.05801606550812721, + 0.34460437297821045, + 0.09821174293756485, + 0.36374855041503906, + 0.004542629234492779, + -0.4936901330947876, + -0.24061916768550873, + -0.0952354222536087, + -0.488727867603302, + 0.1617792546749115, + 0.21668098866939545, + -0.17562973499298096, + -0.12557779252529144, + -0.00882737897336483, + -0.019892053678631783, + -0.12603463232517242, + 0.2967451810836792, + -0.11472491919994354, + 0.16318480670452118, + -0.07745308429002762, + -0.28813308477401733, + -0.12840117514133453, + -0.1803760677576065, + -0.35747459530830383, + -0.3566107451915741, + 0.33845219016075134, + 0.27148178219795227, + -0.3039121925830841, + 0.03499644994735718, + 0.14564304053783417, + -0.14873789250850677, + -0.1862473040819168, + -0.06093388795852661, + -0.3023805320262909, + 0.4018360376358032, + -0.06756354123353958, + -0.20657537877559662, + 0.045960236340761185, + -0.19606180489063263, + -0.011831795796751976, + 0.3075883686542511, + 0.05089161545038223, + 0.483248233795166, + 0.18867100775241852, + 0.05045071989297867, + 0.5045363903045654, + 0.02315126731991768, + 0.05543635040521622, + 0.27923834323883057, + 0.07450801879167557, + 0.17183344066143036, + -0.2827977240085602, + -0.14327391982078552, + 0.2875491976737976, + -0.33328911662101746, + -0.007631499785929918, + 0.25081583857536316, + 0.2756015658378601, + -0.3667318522930145, + -0.2791220247745514, + 0.12183677405118942, + -0.0853201374411583, + -0.13226182758808136, + -0.1633516550064087, + -0.13688145577907562, + -0.0546460784971714, + -0.25458475947380066, + -0.07069426774978638, + 0.18920527398586273, + 0.5055086016654968, + 0.1569167971611023, + 0.3079119026660919, + -0.30343368649482727, + -0.3728949725627899, + 0.16967229545116425, + 0.23135291039943695, + 0.025669120252132416, + -0.04772617667913437, + -0.15766897797584534, + 0.31426894664764404, + 0.40961599349975586, + -0.037370599806308746, + 0.029563497751951218, + 0.054615579545497894, + 0.04578715190291405, + 0.16311107575893402, + 0.05636230483651161, + -0.10584265738725662, + 0.10434482246637344, + -0.32156771421432495, + 0.21709097921848297, + -0.17347122728824615, + -0.1449459046125412, + 0.1969769150018692, + -0.12468148022890091, + -0.4720155596733093, + -0.15959085524082184, + 0.32757118344306946, + -0.1419375240802765, + -0.14879679679870605, + 0.2481510192155838, + 0.3887300491333008, + 0.060037992894649506, + -0.3401050567626953, + -0.03990919888019562, + -0.51358562707901, + -0.09461970627307892, + 0.2344813346862793, + -0.12724849581718445, + -0.14003024995326996, + 0.03205497935414314, + 0.4611909091472626, + 0.4070449769496918, + 0.15769757330417633, + -0.28918197751045227, + 0.12555362284183502, + 0.2676740288734436, + 0.2350650429725647, + -0.2624610364437103, + -10.745993614196777, + -0.12893487513065338, + -0.32608330249786377, + 0.5240890979766846, + -0.21350574493408203, + 0.06783820688724518, + 0.11104471236467361, + -0.037054240703582764, + 0.12012320011854172, + 0.04536654055118561, + -0.211399644613266, + -0.030445706099271774, + 0.3239701986312866, + 0.2166062891483307, + -0.014118357561528683, + -0.04215191304683685, + -0.3600086271762848, + 0.21030449867248535, + 0.006253220606595278, + 0.1975545436143875, + 0.23634415864944458, + 0.31936293840408325, + -0.20811577141284943, + 0.25351229310035706, + -0.09517870098352432, + -0.3012394905090332, + -0.1784743219614029, + 0.6404629945755005, + 0.31051743030548096, + -0.26683947443962097, + 0.16186566650867462, + 0.15097258985042572, + -0.19489231705665588, + 0.07882729172706604, + -0.07526905834674835, + -0.15495212376117706, + 4.2407435103086755e-05, + 0.14460092782974243, + 0.21992658078670502, + -0.03809976950287819, + 0.024773769080638885, + -0.2210741937160492, + 0.1896129995584488, + 0.13687807321548462, + -0.1779307723045349, + -0.5710297226905823, + -0.1892595887184143, + -1.4844306707382202, + 0.18588615953922272, + 0.3354470729827881, + 0.3098658323287964, + 0.09357399493455887, + 0.11811672896146774, + 0.22004319727420807, + -0.42688044905662537, + 0.04660094901919365, + -0.2603687047958374, + -0.0898217260837555, + 0.11243734508752823, + 0.15578092634677887, + 0.10758467018604279, + -0.11934950202703476, + 0.5527052283287048, + -0.07071653008460999, + -0.38405874371528625, + 0.09534880518913269, + 0.030234219506382942, + -0.05046984180808067, + -0.2867332398891449, + -0.5873365998268127, + -0.5103051662445068, + -0.022636985406279564, + -0.16433854401111603, + -0.029490606859326363, + 0.41554415225982666, + -0.07572385668754578, + -0.30972030758857727, + 0.24150176346302032, + -0.045552004128694534, + 0.3215571641921997, + 0.16260553896427155, + 0.020533697679638863, + 0.09548033028841019, + -0.09123978018760681, + -0.21215996146202087, + -0.15280377864837646, + 0.15199264883995056, + 0.5069378018379211, + 0.05625903233885765, + -0.009921767748892307, + -0.05812028795480728, + 0.41037943959236145, + 0.043372929096221924, + -0.18998365104198456, + -0.461628794670105, + -0.07817098498344421, + -0.022916944697499275, + 0.1410103291273117, + -0.008755980990827084, + -0.07745662331581116, + -0.21702809631824493, + 0.035010382533073425, + 0.06267145276069641, + -0.47814443707466125, + -0.41153475642204285, + 0.2928331196308136, + 0.10875929147005081, + 0.14258962869644165, + -0.0014272765256464481, + -0.14417269825935364, + -0.06225234642624855, + -0.018146462738513947, + 0.18877467513084412, + 0.5126664638519287, + 0.2560887038707733, + -0.07243573665618896, + -0.020360363647341728, + -0.224511057138443, + -0.1826852262020111, + 0.005298877600580454, + 0.323956698179245, + -0.051439687609672546, + 0.1424778401851654, + 0.6224844455718994, + -0.021091625094413757, + -0.03393978253006935, + 0.8963201642036438, + -0.2472096085548401, + 0.2320713996887207, + -0.10943920165300369, + 0.22820572555065155, + -0.04009385406970978, + -0.3376707136631012, + 0.04805195331573486, + 0.44219323992729187, + -0.3386395573616028, + 0.7483369708061218, + 0.19872498512268066, + -0.36432406306266785, + -0.013159104622900486, + -0.2789859175682068, + 0.47885072231292725, + 0.37096917629241943, + 0.285831481218338, + -0.12348324805498123, + -0.21833211183547974, + -0.29422858357429504, + 0.044767603278160095, + -0.39564695954322815, + -0.3398112952709198, + -0.1327308863401413, + 0.08455590903759003, + 0.1674269288778305, + -0.23312824964523315, + 0.3644222319126129, + 0.16214518249034882, + -0.19494442641735077, + -0.20102228224277496, + -0.4217049777507782, + -0.07246432453393936, + 0.2085323929786682, + 0.8311479091644287, + -0.04884607717394829, + -0.0358612984418869, + -0.07514459639787674, + 0.1149691641330719, + -0.21547217667102814, + 0.19622308015823364, + 0.0970342680811882, + -0.007679974660277367, + -0.4775974452495575, + 0.2435050904750824, + 0.11554893851280212, + -0.3277517557144165, + -0.1424865573644638, + -0.12860864400863647, + -0.03809446841478348, + 0.16011835634708405, + -0.271041601896286, + 0.123362235724926, + 0.4564916789531708, + -0.16954384744167328, + 0.007680540904402733, + -0.20490258932113647, + -0.07409235835075378, + 0.16346803307533264, + 0.2577599287033081, + 0.0392175167798996, + -0.28559020161628723, + -0.2841348946094513, + -0.5293683409690857, + 0.3451726734638214, + -0.37702476978302, + -0.08774478733539581, + 0.07544264197349548, + 0.24123243987560272, + -0.2973092794418335, + 0.08464527875185013, + -0.07614510506391525, + 0.010685469955205917, + -0.1582186371088028, + 0.289948970079422, + 0.4170743227005005, + -0.38005006313323975, + 0.2592196762561798, + -0.15659330785274506, + 0.14205040037631989, + 0.07462868094444275, + -0.29018911719322205, + 0.15791089832782745, + -0.19333161413669586 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_052.json b/src/benchmark/output/results/results_graph_052.json new file mode 100644 index 0000000..e4a08ed --- /dev/null +++ b/src/benchmark/output/results/results_graph_052.json @@ -0,0 +1,792 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 61-year-old male with a history of intermittent cough for over two years, worsening in the last month. He has also experienced pneumonia caused by Legionella pneumophila, hypertension, severe anemia, smoking, and alcohol use.\n\n**Timeline of Diagnoses:**\n\n1. **Step 1 (N1):**\nThe patient presented with symptoms of a persistent cough, which had worsened over time. His medical history revealed previous episodes of pneumonia, hypertension, anemia, smoking, and alcohol use.\n2. **Step 2 (N2):** One month prior to presentation, the patient developed a Pasteurella pneumotropica infection at an outside facility, as confirmed by bronchoscopy and alveolar lavage fluid mNGS analysis. Despite treatment with anti-infective medications for over two weeks, the patient did not show improvement.\n3. **Step 3 (N3):** The patient presented with a palpable lump on the right thoracic wall, localized pain, and coarse breath sounds in both lungs. Laboratory tests revealed abnormalities in white blood cell count, red blood cell count, hemoglobin, total protein, globulin, albumin, glucose, C-reactive protein, and squamous cell carcinoma antigen.\n4. **Step 4 (N4):** Enhanced CT scans showed a new mass in the left lower lung, multiple enlarged lymph nodes, and bone destruction in the right tenth rib, leading to suspicion of lung cancer with metastasis. Bronchoscopy did not reveal tumor cells.\n\n**Treatments:**\n\n1. **Anti-infective treatment:** The patient received anti-infective medications for over two weeks following the diagnosis of Pasteurella pneumotropica infection.\n2. **Imaging studies:** Enhanced CT scans were performed to evaluate the new mass in the left lower lung and multiple enlarged lymph nodes.\n\n**Outcomes:**\n\n1. **Lung cancer with metastasis:** The patient's symptoms and imaging results suggested a diagnosis of lung cancer with metastasis.\n2. **No tumor cells found on bronchoscopy:** Despite the high suspicion of lung cancer, no tumor cells were found during bronchoscopy.\n3. **Negative antibody tests:** Antibody tests for HIV, HBV, HCV, EBV, and TP were negative, indicating that these infections were not contributing to the patient's condition.\n\n**Conclusion:**\nThe patient presented with a complex clinical picture, including a history of pneumonia, hypertension, anemia, smoking, and alcohol use. The development of Pasteurella pneumotropica infection led to progression in his diagnosis, ultimately resulting in suspicion of lung cancer with metastasis. Despite the high suspicion of lung cancer, no tumor cells were found on bronchoscopy, and antibody tests for common infections were negative. Further evaluation and treatment are necessary to determine the best course of action for this patient.", + "bertscore": { + "precision": 0.7502202987670898, + "recall": 0.7783499956130981, + "f1": 0.7640262842178345 + }, + "bleu": 0.024499507708589042, + "rouge1": 0.351493848857645, + "rougeL": 0.1687170474516696, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 4, + "edge_count": 3, + "avg_in_degree": 0.75, + "density": 0.25 + }, + "trajectory_embedding": [ + 0.3750039041042328, + -0.018641069531440735, + -0.2502043545246124, + 0.05081702023744583, + -0.05105207860469818, + 0.0839003473520279, + 0.2023211419582367, + 0.19112949073314667, + 0.2581161558628082, + -0.5016443729400635, + -0.10917043685913086, + 0.22764131426811218, + -0.6944714784622192, + -0.16388894617557526, + -0.19019311666488647, + -0.02061181329190731, + 0.21072253584861755, + 0.36244553327560425, + 0.1649523675441742, + -0.19564396142959595, + -0.4511476755142212, + 0.20265279710292816, + -0.3970683515071869, + -0.07290428876876831, + 0.06168309599161148, + -0.09458416700363159, + 0.14242085814476013, + 0.5246515870094299, + 0.2932756245136261, + 0.2652825117111206, + 0.06448846310377121, + 0.1772792637348175, + -0.20149506628513336, + 0.16522261500358582, + -0.25548550486564636, + 0.4062054753303528, + 0.14651307463645935, + 0.10961253941059113, + -0.18582983314990997, + 0.05126669257879257, + -0.1780514419078827, + 0.0277843214571476, + 0.6572881937026978, + 0.427096962928772, + 0.731152355670929, + -0.6117132306098938, + -0.037707939743995667, + 0.37013891339302063, + -0.5210444927215576, + -0.024334007874131203, + 0.13324706256389618, + 0.8416606187820435, + 0.46486666798591614, + 0.09050995856523514, + 0.5590276718139648, + -0.03726061061024666, + -0.2525431215763092, + -0.06953722983598709, + -0.2951086163520813, + 0.21630530059337616, + -0.003851592540740967, + -0.25878116488456726, + 0.084021657705307, + -0.02554335445165634, + -0.18547093868255615, + -0.0071035330183804035, + -0.10002142935991287, + -0.022179020568728447, + -0.16623756289482117, + -0.4337896704673767, + -0.28635454177856445, + -0.23838165402412415, + -0.0745307207107544, + 0.14370892941951752, + 0.12053336948156357, + -0.3137984871864319, + 0.15123985707759857, + 0.10516850650310516, + -0.10271459072828293, + 0.07256560027599335, + 0.06432320922613144, + 0.11226767301559448, + 0.13952317833900452, + 0.10879547894001007, + -0.20519058406352997, + 0.11949052661657333, + 0.0489501878619194, + -0.06891728937625885, + -0.306130051612854, + 0.19894450902938843, + 0.013912171125411987, + -0.2484026998281479, + -0.015323575586080551, + -0.2818257808685303, + 0.07071297615766525, + -0.12937968969345093, + 0.265982061624527, + 0.33658355474472046, + 0.9003799557685852, + -0.029388174414634705, + 0.12319771945476532, + 0.38167083263397217, + 0.4185314476490021, + -0.08359169960021973, + 0.43835651874542236, + -0.09264031797647476, + 0.18517109751701355, + -0.3304045796394348, + -0.025782013311982155, + 0.4000227451324463, + -0.21055254340171814, + -0.21370747685432434, + 0.0004560612142086029, + -0.3826911449432373, + -0.2137700915336609, + 0.0007847361266613007, + -0.3079833388328552, + 0.005332674831151962, + 0.06937509775161743, + -0.31980860233306885, + 0.1354016661643982, + -0.1521102637052536, + 0.3260740339756012, + 0.13874965906143188, + -0.477588951587677, + 0.129996195435524, + -0.1010374054312706, + -0.02798978053033352, + -0.05269686505198479, + 0.24253839254379272, + -0.5391861200332642, + -0.26594796776771545, + 0.11924968659877777, + 0.2704978585243225, + -0.13381721079349518, + 0.22580784559249878, + -0.5472376346588135, + 0.2593297064304352, + -1.3018028736114502, + 0.11757175624370575, + -0.4669552743434906, + -0.03903498873114586, + -0.015594881027936935, + -0.5755515694618225, + -0.24181075394153595, + -0.12715989351272583, + -0.1480318158864975, + 0.17188116908073425, + -0.09114311635494232, + -0.04409800097346306, + -0.19648411870002747, + -0.03167814016342163, + 0.05811990797519684, + 0.14378733932971954, + 0.06015128642320633, + 0.2832489609718323, + 0.20626427233219147, + 0.2108088880777359, + 0.2910540699958801, + -0.20453929901123047, + -0.17753660678863525, + 0.17088258266448975, + -0.03704344108700752, + 0.09050876647233963, + 0.03505607694387436, + -0.7488185167312622, + 0.24450576305389404, + -0.24621155858039856, + 0.24071085453033447, + 0.03053906559944153, + 0.027132824063301086, + 0.23277997970581055, + -0.1849484145641327, + 0.5160245299339294, + 0.12026375532150269, + 0.3551260828971863, + -0.0612788051366806, + -0.03043258935213089, + 0.2101808786392212, + 0.07654383778572083, + 0.031165091320872307, + 0.013304777443408966, + 0.43383294343948364, + 0.15458561480045319, + -0.44488441944122314, + 0.12800030410289764, + 0.5983635783195496, + -0.3576675355434418, + -0.23850134015083313, + -0.30051931738853455, + 0.33574387431144714, + -0.16317453980445862, + 0.20916450023651123, + -0.2582557499408722, + -0.023145239800214767, + 0.1016504317522049, + -0.2705596685409546, + -0.1513102650642395, + 0.16109776496887207, + -0.021233662962913513, + 0.1400686502456665, + 0.06246664747595787, + -0.060198843479156494, + 0.10760002583265305, + 0.07032246887683868, + -0.14529147744178772, + 0.24459832906723022, + 0.24535557627677917, + -0.11421000212430954, + -0.1129978820681572, + -0.30976128578186035, + 0.18432126939296722, + 0.05019228160381317, + 0.2384565770626068, + 0.12331455945968628, + -0.25998473167419434, + 0.17488107085227966, + -0.06560686230659485, + -0.23357824981212616, + 0.15521836280822754, + -0.16593274474143982, + -0.1576358675956726, + 0.4989814758300781, + 0.05092253535985947, + -0.08330187201499939, + 0.15839987993240356, + 0.3273718059062958, + 0.1789856106042862, + 0.021622417494654655, + -0.08829770982265472, + 0.00846201553940773, + -0.4490392804145813, + 0.2554747462272644, + -0.08211470395326614, + -0.149913027882576, + -0.4093863368034363, + 0.10268251597881317, + -0.09163713455200195, + -0.2408151924610138, + 0.4805627465248108, + -0.18071678280830383, + -0.048656970262527466, + -0.03038608655333519, + -0.15858371555805206, + 0.03689543157815933, + -0.25902968645095825, + 0.1336105316877365, + 0.37157315015792847, + 0.06220059469342232, + 0.21135851740837097, + 0.1647842675447464, + -0.06509989500045776, + 0.34585052728652954, + -0.3354659080505371, + -0.33058521151542664, + -0.29961922764778137, + -0.14873506128787994, + -0.01010885275900364, + -0.35397595167160034, + 0.01279933750629425, + -0.06509362906217575, + 0.01087331771850586, + 0.23828469216823578, + -0.1385555863380432, + -0.2002955973148346, + -0.12080001085996628, + -0.09788139164447784, + 0.1841183602809906, + -0.1585860252380371, + 0.16171488165855408, + -0.40340036153793335, + 0.009950034320354462, + -0.28218626976013184, + -0.03077949956059456, + 0.3286609351634979, + 0.023091565817594528, + -0.21082238852977753, + 0.29606693983078003, + 0.06933808326721191, + -0.48805296421051025, + -0.4823635220527649, + 0.06469932943582535, + -0.31950074434280396, + 0.30493563413619995, + -0.21087253093719482, + 0.0875583216547966, + 0.4066821336746216, + -0.0853029415011406, + 0.2061665654182434, + 0.3255894184112549, + 0.49005091190338135, + 0.05144333839416504, + 0.1125626191496849, + 0.0013696402311325073, + -0.10166411101818085, + 0.04174596071243286, + -0.44953781366348267, + 0.045084863901138306, + 0.05771317705512047, + -0.08910995721817017, + 0.2623455226421356, + 0.24640654027462006, + 0.11367761343717575, + -0.32870692014694214, + -0.09174969792366028, + 0.32928982377052307, + 0.1261325180530548, + 0.1458982527256012, + -0.046844232827425, + 0.2645372152328491, + 0.7887958884239197, + 0.038384050130844116, + -0.1966702938079834, + 0.16988855600357056, + -0.1961507946252823, + -0.1110076904296875, + 0.25232040882110596, + -0.10560067743062973, + 0.23622725903987885, + -0.08181202411651611, + -0.048231080174446106, + 0.3462892770767212, + -0.07239373028278351, + -0.14689849317073822, + -0.1532508283853531, + 0.0557711161673069, + -0.033861108124256134, + -0.45571064949035645, + 0.26195764541625977, + -0.25430983304977417, + -0.09292025119066238, + 0.4105997681617737, + -0.13970857858657837, + -0.2790803909301758, + 0.07117658108472824, + 0.18175937235355377, + -0.5349920988082886, + 0.2550427317619324, + -0.07486564666032791, + 0.1134282648563385, + 0.24906429648399353, + -0.04243599250912666, + -0.23666946589946747, + -0.0027700886130332947, + 0.20715011656284332, + -4.1719526052474976e-05, + -0.12619619071483612, + -0.03286398947238922, + -0.128810852766037, + 0.1990654021501541, + 0.4536164402961731, + -0.0015131477266550064, + 0.17493194341659546, + 0.34009402990341187, + -0.1793300360441208, + -0.11215025931596756, + -0.04416448995471001, + -0.05121298134326935, + 0.24006140232086182, + -0.31121349334716797, + -0.2717509865760803, + -0.19144973158836365, + 0.2488461136817932, + -0.04174831137061119, + -0.2528179883956909, + 0.20812097191810608, + -0.030365241691470146, + -0.056994277983903885, + -0.1414940506219864, + 0.4065503180027008, + 0.17571111023426056, + 0.009257098659873009, + 0.6271113157272339, + 0.04087134078145027, + -0.16922305524349213, + 0.3091869354248047, + -0.17213496565818787, + 0.2699822783470154, + -0.08422352373600006, + -0.37675726413726807, + -0.30431613326072693, + -0.09750919044017792, + -0.18563100695610046, + -0.13736270368099213, + -0.03263430669903755, + 0.054255589842796326, + -0.1422896534204483, + -0.07827696204185486, + 0.11504770815372467, + -0.0009004438761621714, + 0.14770765602588654, + 0.1936701536178589, + 0.5093162059783936, + -0.07697384059429169, + -0.3184918761253357, + 0.033418118953704834, + -0.16829243302345276, + 0.1554146558046341, + -0.039780013263225555, + 0.015141483396291733, + -0.3109550178050995, + 0.3239828944206238, + -0.19746467471122742, + 0.07195942103862762, + -0.022807709872722626, + -0.1506001055240631, + -0.27553820610046387, + -0.40653306245803833, + 0.06227269768714905, + 0.006492896005511284, + -0.08410124480724335, + 0.010814206674695015, + 0.2038450688123703, + 0.04493845999240875, + -0.23208191990852356, + 0.11181776225566864, + 0.3160119652748108, + 0.16281871497631073, + -0.00028581544756889343, + 0.2481541931629181, + 0.1376548707485199, + -0.13691338896751404, + 0.22288841009140015, + -0.00031397491693496704, + 0.12424523383378983, + 0.09831471741199493, + -0.41922247409820557, + -0.09688174724578857, + 0.05529389902949333, + -0.3952501714229584, + -0.06656894832849503, + 0.23003879189491272, + 0.061884332448244095, + 0.003401000052690506, + -0.09492473304271698, + -0.07218591868877411, + 0.23426181077957153, + -0.43210482597351074, + -0.10506930947303772, + 0.4241871237754822, + -0.17007039487361908, + 0.4095035791397095, + 0.016066819429397583, + -0.286850243806839, + -0.16375477612018585, + 0.08804114907979965, + -0.3778175711631775, + 0.21149899065494537, + 0.0860079675912857, + -0.22953258454799652, + -0.09721724689006805, + -0.15336279571056366, + -0.11439813673496246, + -0.055991992354393005, + 0.06729795783758163, + 0.20628632605075836, + 0.048323169350624084, + 0.19144345819950104, + -0.35162487626075745, + 0.10775546729564667, + -0.319551944732666, + -0.42717263102531433, + -0.20851175487041473, + 0.23914705216884613, + 0.023892007768154144, + -0.023760763928294182, + 0.07325327396392822, + 0.027908936142921448, + -0.22596696019172668, + -0.32983237504959106, + 0.01151999831199646, + -0.18768593668937683, + 0.6030633449554443, + 0.03443092107772827, + -0.094368577003479, + 0.17755207419395447, + -0.24652066826820374, + 0.14295069873332977, + 0.14117196202278137, + 0.2862781882286072, + 0.16126519441604614, + 0.20174260437488556, + 0.21768182516098022, + 0.3508859872817993, + 0.3642650246620178, + 0.06048420071601868, + 0.11228246241807938, + -0.01619621179997921, + 0.04915003478527069, + -0.16038154065608978, + -0.14777955412864685, + 0.4062119424343109, + -0.38699546456336975, + 0.06568989902734756, + 0.08522632718086243, + 0.10896672308444977, + -0.24720799922943115, + -0.14860254526138306, + 0.02438458800315857, + 0.03181155025959015, + -0.07101091742515564, + -0.3253816068172455, + -0.25519171357154846, + 0.12036871910095215, + -0.416866660118103, + -0.09823688864707947, + 0.17580446600914001, + 0.23086783289909363, + 0.13085639476776123, + -0.014502979815006256, + -0.06492513418197632, + -0.4745086133480072, + 0.2985357344150543, + 0.3817300796508789, + -0.0046818070113658905, + 0.12240583449602127, + -0.07319547981023788, + 0.250882089138031, + 0.497036337852478, + -0.0006879791617393494, + -0.12899065017700195, + 0.03423226252198219, + -0.011099658906459808, + -0.0590672492980957, + 0.0592232346534729, + -0.11508695781230927, + 0.015379764139652252, + -0.38003501296043396, + 0.020966289564967155, + -0.1184057742357254, + -0.5067121386528015, + 0.09947311878204346, + -0.32564812898635864, + -0.3854447305202484, + -0.02750253677368164, + 0.0954226478934288, + -0.1266884207725525, + 0.14535966515541077, + 0.21293872594833374, + 0.463053822517395, + 0.14017099142074585, + 0.021533723920583725, + 0.25957775115966797, + -0.510695219039917, + -0.18367788195610046, + 0.18255847692489624, + -0.050550997257232666, + 0.1913098692893982, + 0.02761061117053032, + 0.30185237526893616, + 0.4022231101989746, + 0.431317001581192, + -0.3444938659667969, + 0.2470586746931076, + 0.2515931725502014, + 0.2559956908226013, + -0.37206217646598816, + -10.831937789916992, + 0.24646838009357452, + -0.14392134547233582, + 0.5180757641792297, + -0.14971095323562622, + -0.03557116538286209, + -0.02863197773694992, + 0.15279504656791687, + 0.21674880385398865, + 0.2877245545387268, + -0.24807164072990417, + 0.060724351555109024, + 0.3617299199104309, + 0.32060056924819946, + -0.12450279295444489, + 0.04984812065958977, + -0.17435088753700256, + 0.1971028745174408, + -0.2029043287038803, + 0.16108888387680054, + 0.18725277483463287, + 0.3026028275489807, + -0.24498075246810913, + 0.29923421144485474, + 0.12469060719013214, + -0.05368555337190628, + -0.2760915458202362, + 0.31406059861183167, + -0.06642401218414307, + -0.44017544388771057, + 0.32242220640182495, + 0.1829984486103058, + -0.20154017210006714, + 0.24639548361301422, + -0.06700929254293442, + -0.13153594732284546, + -0.03024989366531372, + 0.010064341127872467, + 0.09532149136066437, + -0.05738985538482666, + 0.06875564157962799, + -0.073263019323349, + 0.028717659413814545, + 0.29055947065353394, + -0.17149873077869415, + -0.2919727563858032, + -0.3191659450531006, + -1.3544580936431885, + 0.18604397773742676, + 0.27028942108154297, + 0.35888671875, + 0.0461045503616333, + 0.23725414276123047, + 0.2954067885875702, + -0.27310559153556824, + 0.007919851690530777, + -0.22170592844486237, + 0.22358232736587524, + 0.10117414593696594, + -0.20946954190731049, + 0.2748386263847351, + -0.18665048480033875, + 0.20294475555419922, + -0.47866290807724, + -0.2365807145833969, + 0.10222537070512772, + -0.03457706421613693, + -0.017110517248511314, + -0.10610051453113556, + -0.2230035960674286, + -0.444757342338562, + -0.05684872344136238, + 0.17132651805877686, + -0.043878305703401566, + 0.3603177070617676, + -0.0768551230430603, + -0.4540203809738159, + 0.20816829800605774, + -0.002235580235719681, + 0.2262583076953888, + 0.2741658687591553, + -0.04602742940187454, + 0.22836074233055115, + -0.16489854454994202, + -0.18109923601150513, + -0.3006269633769989, + 0.08404020965099335, + 0.38976383209228516, + -0.09542255848646164, + -0.16560132801532745, + 0.0863485336303711, + 0.18521104753017426, + -0.0032340139150619507, + -0.0783798098564148, + -0.4946853518486023, + 0.10106542706489563, + 0.18657535314559937, + 0.011812053620815277, + 0.11058761179447174, + -0.20258143544197083, + -0.24303673207759857, + -0.06153615936636925, + -0.20401030778884888, + -0.5645541548728943, + -0.24207338690757751, + 0.284088671207428, + 0.2871110439300537, + 0.15522363781929016, + 0.11855602264404297, + 0.11679840832948685, + 0.17434605956077576, + -0.10265945643186569, + 0.5012632608413696, + 0.40620702505111694, + 0.14352789521217346, + -0.18981163203716278, + -0.1582859754562378, + 0.008393794298171997, + -0.2276940792798996, + 0.09434521198272705, + 0.33295339345932007, + 0.04517092555761337, + 0.25691020488739014, + 0.6408071517944336, + -0.06869882345199585, + 0.023283392190933228, + 0.9037225842475891, + -0.38384512066841125, + 0.5766766667366028, + -0.015866786241531372, + 0.10324790328741074, + 0.014261778444051743, + -0.11121969670057297, + 0.22141292691230774, + 0.180240660905838, + -0.16019640862941742, + 0.42217200994491577, + 0.13101716339588165, + -0.32906538248062134, + 0.08930487930774689, + -0.20802795886993408, + 0.4570109248161316, + 0.13498859107494354, + 0.0578104704618454, + -0.13888096809387207, + -0.2891021966934204, + -0.3635624945163727, + 0.015923835337162018, + -0.14917075634002686, + -0.10793698579072952, + -0.11837610602378845, + 0.21120737493038177, + -0.043733999133110046, + -0.14604198932647705, + 0.30076873302459717, + 0.07965907454490662, + 0.026789143681526184, + -0.0994078665971756, + -0.42464298009872437, + -0.12217742204666138, + 0.0050747692584991455, + 0.5033242702484131, + 0.2736607789993286, + -0.08555269241333008, + -0.26413995027542114, + 0.34121304750442505, + -0.10038420557975769, + 0.17320673167705536, + 0.19697876274585724, + 0.013582564890384674, + -0.3914993703365326, + 0.17125779390335083, + 0.006498765200376511, + -0.40618833899497986, + -0.17143946886062622, + -0.30856558680534363, + 0.15081411600112915, + -0.17511332035064697, + -0.013049963861703873, + 0.47596991062164307, + 0.2743627727031708, + 0.03840314969420433, + 0.10192780941724777, + -0.3956719636917114, + 0.31400951743125916, + 0.19255207479000092, + 0.16658376157283783, + 0.20138844847679138, + -0.047207776457071304, + -0.41338497400283813, + -0.30670416355133057, + 0.0767974853515625, + -0.19766026735305786, + -0.12404906004667282, + 0.23401625454425812, + 0.1205226331949234, + -0.14431576430797577, + 0.050111185759305954, + -0.2666166424751282, + -0.07771646976470947, + -0.3870171010494232, + 0.2369057834148407, + 0.16285769641399384, + -0.49654126167297363, + 0.10719437897205353, + -0.0726730152964592, + 0.3677505552768707, + 0.18041354417800903, + -0.4210672378540039, + 0.3003746271133423, + -0.17996804416179657 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_053.json b/src/benchmark/output/results/results_graph_053.json new file mode 100644 index 0000000..6a0b1d0 --- /dev/null +++ b/src/benchmark/output/results/results_graph_053.json @@ -0,0 +1,792 @@ +{ + "status": "success", + "reconstructed_narrative": "The patient in question is a [age]-year-old individual who was initially diagnosed with lung and mediastinal lesions. The diagnosis was made in [year] and marked the beginning of a complex treatment journey.\n\nFollowing the initial diagnosis, the patient transitioned to radiotherapy for the lung and mediastinal lesions (N1 to N2). This marked an important step in the patient's care, as it aimed to alleviate symptoms and slow disease progression. However, this was followed by another significant change when the patient began chemotherapy with albumin-bound paclitaxel and cisplatin, with recombinant human endostatin added in the 4th cycle (N2 to N3). Unfortunately, treatment was not completed due to cardiac reactions, resulting in stable disease.\n\nThe patient's condition continued to evolve as they developed symptoms of chest tightness and shortness of breath. These symptoms persisted despite hospitalization for worsening shortness of breath (N5 to N6), where ECG abnormalities and lab results indicating elevated troponin, BNP, and myoglobin were noted. The initial treatment included a range of medications aimed at managing these complications.\n\nDespite the efforts to manage symptoms, the patient's condition continued to deteriorate. A coronary angiography revealed significant stenosis in the left main trunk (N6 to N7), which further complicated the patient's care. Notably, anticoagulant therapy was not initiated due to concerns about gastrointestinal bleeding secondary to long-term aspirin use.\n\nThroughout this journey, the patient has been managed with a range of treatments, including medications and procedures aimed at addressing complications such as cardiac reactions, chest tightness, and shortness of breath. The timeline of diagnoses and treatments is complex, reflecting the evolving nature of the patient's condition.\n\nThe patient's age and demographic information are not explicitly stated in the provided data, but based on the treatment journey described, it can be inferred that this individual has been living with a serious health condition for several years.", + "bertscore": { + "precision": 0.7764316201210022, + "recall": 0.7502598762512207, + "f1": 0.7631214261054993 + }, + "bleu": 0.010387883712094016, + "rouge1": 0.2814526588845655, + "rougeL": 0.13488975356679636, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 7, + "edge_count": 6, + "avg_in_degree": 0.8571428571428571, + "density": 0.14285714285714285 + }, + "trajectory_embedding": [ + 0.17100100219249725, + 0.01172204501926899, + -0.21289609372615814, + 0.19774876534938812, + 0.11490162461996078, + 0.15191338956356049, + -0.03697091341018677, + 0.23890110850334167, + 0.5338540077209473, + -0.3338589072227478, + -0.10677526146173477, + 0.1514439433813095, + -0.44707658886909485, + -0.2678467631340027, + 0.006834420841187239, + 0.15527208149433136, + -0.11113017052412033, + 0.2591327130794525, + -0.09351473301649094, + -0.20768888294696808, + -0.16499637067317963, + 0.09954027831554413, + -0.4701754152774811, + -0.020324762910604477, + 0.11852780729532242, + -0.06426599621772766, + 0.33649319410324097, + 0.6274865865707397, + 0.18352051079273224, + 0.30850425362586975, + 0.08665106445550919, + -0.03726126626133919, + -0.08848248422145844, + 0.013605847023427486, + -0.20068073272705078, + 0.14376775920391083, + 0.1463918834924698, + 0.012711933813989162, + -0.21329282224178314, + 0.06016463786363602, + -0.13615386188030243, + 0.10873724520206451, + 0.7263768911361694, + 0.2762015461921692, + 0.3738660514354706, + -0.4993719756603241, + -0.07149950414896011, + 0.6947835087776184, + -0.4605201184749603, + -0.1495877057313919, + 0.3336849808692932, + 0.6468313932418823, + 0.47226986289024353, + -0.36773309111595154, + 0.3829520642757416, + -0.24915626645088196, + -0.10759878158569336, + -0.3838324248790741, + -0.1543833166360855, + 0.15415135025978088, + 0.08567430824041367, + -0.10774904489517212, + 0.3047535717487335, + -0.22125987708568573, + -0.14934059977531433, + -0.20016419887542725, + -0.2885456383228302, + 0.02380061335861683, + 0.05224994570016861, + -0.14045299589633942, + -0.28438031673431396, + -0.3955760896205902, + -0.159181609749794, + 0.1616220623254776, + 0.23758140206336975, + -0.1629956066608429, + 0.3648713231086731, + -0.23331484198570251, + 0.08615858107805252, + 0.07766558974981308, + -0.08805838972330093, + 0.0022421765606850386, + -0.12579445540905, + 0.29239121079444885, + -0.47865670919418335, + -0.0019257919630035758, + -0.03364467993378639, + -0.3095218539237976, + -0.3319779336452484, + 0.2068275362253189, + 0.004538444336503744, + -0.5003085732460022, + 0.0974946841597557, + -0.15187697112560272, + 0.11915046721696854, + 0.10334234684705734, + 0.3709621727466583, + 0.2474813610315323, + 0.8601303696632385, + 0.006439132150262594, + 0.20540118217468262, + -0.049783919006586075, + 0.11110716313123703, + -0.16807867586612701, + 0.298078715801239, + -0.21528120338916779, + 0.1959475427865982, + -0.44597768783569336, + 0.17520877718925476, + 0.38327616453170776, + -0.05869729071855545, + -0.33759233355522156, + 0.04677050560712814, + -0.42605504393577576, + 0.16364312171936035, + 0.08517057448625565, + 0.0027300757355988026, + 0.1446908563375473, + 0.23417554795742035, + -0.5083310604095459, + -0.13706664741039276, + -0.1675989329814911, + 0.43946439027786255, + 0.28368955850601196, + -0.5352855920791626, + -0.008423960767686367, + -0.09388279914855957, + 0.0690157413482666, + -0.20451389253139496, + 0.17577232420444489, + -0.48916059732437134, + -0.2847658097743988, + -0.07840248197317123, + 0.02749628759920597, + -0.28859391808509827, + 0.38677874207496643, + -0.3567811846733093, + 0.24413646757602692, + -1.092475175857544, + 0.23130880296230316, + -0.4474027156829834, + -0.17902925610542297, + 0.1882493942975998, + -0.625089168548584, + -0.16087977588176727, + -0.11653619259595871, + -0.19434748589992523, + 0.11690963804721832, + -0.20534853637218475, + -0.18866467475891113, + 0.10551813989877701, + -0.13814431428909302, + 0.2587955892086029, + 0.4571447968482971, + 0.06362473964691162, + 0.09472285211086273, + 0.06336577981710434, + 0.3045656681060791, + 0.18465708196163177, + -0.12187506258487701, + 0.13138042390346527, + 0.6344067454338074, + 0.01855069026350975, + 0.03687042370438576, + -0.03251279518008232, + -0.7075977921485901, + -0.031911078840494156, + -0.24646680057048798, + 0.08599924296140671, + 0.05160089209675789, + -0.07021670043468475, + 0.08312087506055832, + -0.14292344450950623, + 0.6327731013298035, + 0.11689610034227371, + 0.5186426043510437, + 0.05964914709329605, + 0.24154837429523468, + 0.23561908304691315, + 0.1754046380519867, + 0.07956383377313614, + -0.25514426827430725, + 0.6309335827827454, + 0.32216963171958923, + -0.10558386892080307, + 0.4341564476490021, + 0.3129425644874573, + -0.26681748032569885, + -0.14742815494537354, + 0.05094332620501518, + 0.451366662979126, + -0.2527161240577698, + 0.3837912082672119, + -0.1897650808095932, + -0.004625398200005293, + 0.10092123597860336, + -0.15214654803276062, + -0.18263672292232513, + -0.151779904961586, + -0.029724320396780968, + 0.1512133777141571, + 0.08459486067295074, + -0.32088378071784973, + 0.11378102004528046, + 0.20025239884853363, + -0.1299767941236496, + 0.10940182209014893, + 0.09048126637935638, + 0.07911936193704605, + 0.06689372658729553, + -0.20037414133548737, + 0.14459848403930664, + 0.03134804591536522, + 0.20343337953090668, + -0.026495469734072685, + -0.31806373596191406, + 0.2294769138097763, + -0.02291073463857174, + -0.24677526950836182, + 0.17867790162563324, + -0.061832062900066376, + -0.08554155379533768, + -0.07250199466943741, + 0.02048652432858944, + -0.4265856146812439, + 0.23360513150691986, + 0.18275348842144012, + 0.28285831212997437, + 0.10267741978168488, + 0.02285960502922535, + 0.0520843043923378, + -0.49216774106025696, + 0.2752619981765747, + -0.19124498963356018, + -0.03228912875056267, + -0.3726004958152771, + 0.27938953042030334, + 0.03446498140692711, + 0.061065685003995895, + 0.2689950168132782, + 0.08788073807954788, + -0.1657726913690567, + 0.11356303840875626, + -0.3225928843021393, + -0.1917956918478012, + -0.388960063457489, + 0.10789813101291656, + 0.1842545121908188, + 0.0646943673491478, + 0.29498744010925293, + 0.03642653673887253, + -0.032270386815071106, + 0.13051283359527588, + -0.21828405559062958, + -0.3837900161743164, + -0.2880827486515045, + -0.05526581034064293, + -0.018391774967312813, + -0.528144896030426, + 0.2281871736049652, + 0.02687625028192997, + -0.10383328050374985, + 0.19207577407360077, + -0.33357974886894226, + -0.15060199797153473, + -0.10420278459787369, + 0.06376777589321136, + 0.03733211010694504, + -0.21956856548786163, + -0.0700782909989357, + -0.4142184853553772, + -0.1542847454547882, + 0.05535644292831421, + 0.01932511106133461, + -0.017645327374339104, + 0.06497722864151001, + -0.22565290331840515, + 0.08997087925672531, + 0.3061147630214691, + -0.40247780084609985, + -0.09383560717105865, + 0.2400093823671341, + -0.25934213399887085, + 0.3796001076698303, + -0.168920636177063, + 0.16842913627624512, + 0.2331302911043167, + 0.06186581403017044, + 0.09495898336172104, + 0.5970635414123535, + 0.43322300910949707, + -0.009353501722216606, + 0.0644209235906601, + 0.05224369093775749, + 0.015331150032579899, + -0.022899020463228226, + -0.40473678708076477, + 0.4006102383136749, + -0.281204491853714, + -0.04212673753499985, + 0.0903128907084465, + 0.2303827553987503, + 0.1565549373626709, + -0.2792680561542511, + 0.03031235933303833, + 0.3822140097618103, + 0.1373763531446457, + 0.12471430003643036, + -0.09068803489208221, + 0.4138628840446472, + 0.49196815490722656, + 0.07891718298196793, + -0.06529351323843002, + 0.06035742536187172, + 0.06364093720912933, + -0.15560516715049744, + -0.09094028919935226, + 0.3771493434906006, + 0.45136094093322754, + -0.15570054948329926, + -0.26267415285110474, + 0.2630266547203064, + -0.21795889735221863, + -0.1303381472826004, + -0.1863185316324234, + -0.11796443909406662, + 0.03457719460129738, + -0.1228424683213234, + 0.37951841950416565, + 0.031170835718512535, + 0.00246279570274055, + 0.41730207204818726, + -0.31318336725234985, + -0.13298830389976501, + 0.31936630606651306, + -0.11588530242443085, + -0.5356836915016174, + 0.2674857974052429, + -0.044302936643362045, + 0.026165321469306946, + 0.23012959957122803, + -0.28225386142730713, + -0.1280623972415924, + -0.07541272789239883, + 0.18717481195926666, + -0.02904072031378746, + 0.12683121860027313, + -0.10298130661249161, + 0.08049675077199936, + -0.05848463252186775, + 0.489097535610199, + 0.15787816047668457, + 0.10409598797559738, + 0.6004343628883362, + -0.1780608594417572, + -0.4649643301963806, + 0.0772586241364479, + -0.06998047977685928, + 0.2506263256072998, + -0.22562482953071594, + -0.19465772807598114, + -0.22446107864379883, + 0.10364481061697006, + 0.21837303042411804, + -0.14856888353824615, + 0.0031958334147930145, + 0.21666717529296875, + -0.007610406260937452, + -0.032290246337652206, + 0.35074546933174133, + 0.10883370786905289, + -0.07031030207872391, + 0.547732949256897, + -0.11237557977437973, + -0.17616544663906097, + 0.31050896644592285, + -0.17020276188850403, + 0.19927635788917542, + -0.19449540972709656, + -0.20777522027492523, + -0.4680130183696747, + 0.13593627512454987, + -0.3009422719478607, + -0.17046581208705902, + 0.009019889868795872, + -0.07510928809642792, + 0.07159510999917984, + -0.10804851353168488, + 0.15755628049373627, + 0.08155161887407303, + 0.08600945770740509, + -0.02825811877846718, + 0.34424927830696106, + -0.003742153523489833, + -0.3586452305316925, + 0.07235796749591827, + -0.007372724357992411, + 0.11125193536281586, + -0.2928902804851532, + 0.17747437953948975, + -0.043546710163354874, + 0.5521405339241028, + 0.02815089002251625, + 0.14051099121570587, + 0.05909854918718338, + 0.020304983481764793, + -0.07132837176322937, + -0.33573269844055176, + -0.06728563457727432, + -0.04354606196284294, + -0.11208877712488174, + -2.932335701189004e-05, + 0.11677627265453339, + -0.2652531564235687, + -0.2824511229991913, + -0.09639781713485718, + 0.10138951987028122, + 0.1350623071193695, + -0.0869540125131607, + -0.06912440061569214, + 0.4026637375354767, + 0.2285010665655136, + 0.4918633997440338, + -0.37914684414863586, + 0.2500379681587219, + 0.18726885318756104, + -0.3283156752586365, + -0.08630543202161789, + -0.06418611109256744, + -0.32360735535621643, + 0.005279677454382181, + 0.16871704161167145, + 0.3007362484931946, + 0.12491422146558762, + -0.05362760275602341, + 0.13641060888767242, + 0.06280901283025742, + -0.2879883348941803, + 0.02127690240740776, + 0.4871537387371063, + 0.0629173293709755, + 0.39538416266441345, + -0.011763920076191425, + -0.42817214131355286, + -0.23108455538749695, + -0.11256667226552963, + -0.37668153643608093, + 0.08490006625652313, + 0.24711458384990692, + -0.13663576543331146, + -0.1400398164987564, + 0.1589566171169281, + 0.03949296474456787, + -0.06337105482816696, + 0.11664221435785294, + -0.1760568916797638, + 0.24378632009029388, + 0.10223359614610672, + -0.30523091554641724, + 0.12192542850971222, + -0.2233382612466812, + -0.533306896686554, + -0.25841790437698364, + 0.31091830134391785, + 0.19524700939655304, + -0.288938045501709, + -0.038094453513622284, + 0.1019466295838356, + -0.026005038991570473, + -0.2828468382358551, + 0.10415085405111313, + -0.10341385751962662, + 0.5106364488601685, + -0.020691562443971634, + -0.15194548666477203, + 0.06794970482587814, + -0.300289124250412, + -0.07811343669891357, + 0.08984720706939697, + 0.013593414798378944, + 0.444155752658844, + 0.1953645944595337, + 0.2376483529806137, + 0.46534332633018494, + 0.22318466007709503, + 0.020042750984430313, + 0.3159398138523102, + 0.0052218311466276646, + 0.06239974871277809, + -0.06658835709095001, + -0.21927247941493988, + 0.2775903642177582, + -0.4601425528526306, + -0.006048652809113264, + 0.15806253254413605, + 0.3728953003883362, + -0.37755754590034485, + -0.39288315176963806, + 0.07657933235168457, + -0.24903453886508942, + -0.08021024614572525, + -0.07371076196432114, + -0.0528247095644474, + -0.1615319401025772, + -0.2654031217098236, + 0.10253708809614182, + 0.1720353364944458, + 0.31135082244873047, + 0.16231386363506317, + 0.013995245099067688, + -0.37161439657211304, + -0.2250300943851471, + 0.17971684038639069, + 0.2776537537574768, + -0.01491178385913372, + 0.005444915033876896, + -0.08520027250051498, + 0.2877308428287506, + 0.36741966009140015, + -0.0857776403427124, + -0.05094502493739128, + -0.001286128768697381, + 0.19180725514888763, + 0.19552956521511078, + 0.030790627002716064, + -0.20318198204040527, + 0.23981483280658722, + -0.3726024329662323, + -0.0009107972728088498, + -0.049984853714704514, + -0.18804553151130676, + 0.35033801198005676, + -0.213377445936203, + -0.5057328343391418, + 0.0018925443291664124, + 0.2909131646156311, + -0.099146768450737, + -0.1993604600429535, + 0.05558851361274719, + 0.38665562868118286, + -0.027765026316046715, + -0.15315087139606476, + -0.025464508682489395, + -0.3749809265136719, + -0.1438710242509842, + 0.0754445418715477, + -0.08469874411821365, + 0.058662328869104385, + 0.051381487399339676, + 0.35544610023498535, + 0.4800654351711273, + 0.266383558511734, + -0.2524513900279999, + 0.37617596983909607, + 0.3144438564777374, + 0.2590644955635071, + -0.3073919713497162, + -10.73615550994873, + -0.14148171246051788, + -0.4415019154548645, + 0.4704132378101349, + -0.18455982208251953, + 0.08499276638031006, + -0.26629844307899475, + 0.05361584201455116, + 0.12853150069713593, + 0.10459945350885391, + -0.19463495910167694, + -0.046458806842565536, + 0.18511120975017548, + 0.3033631145954132, + 0.21903565526008606, + 0.23645640909671783, + -0.29071542620658875, + 0.24516674876213074, + 0.010741723701357841, + 0.1828749179840088, + 0.25786033272743225, + 0.39176324009895325, + -0.287773460149765, + 0.09634155035018921, + -0.1945691555738449, + -0.4117409586906433, + -0.2066155970096588, + 0.4852396547794342, + 0.26736006140708923, + -0.18429994583129883, + 0.32252365350723267, + 0.08467023819684982, + -0.2598281502723694, + 0.03414541482925415, + -0.08408021181821823, + -0.16580632328987122, + -0.1256483495235443, + 0.32154157757759094, + 0.1343560367822647, + -0.0898323580622673, + 0.06353811174631119, + -0.21296975016593933, + 0.20939742028713226, + 0.07985307276248932, + -0.14449474215507507, + -0.5243708491325378, + -0.14403867721557617, + -1.5034592151641846, + 0.04413445666432381, + 0.3742007911205292, + 0.35636359453201294, + 0.035002660006284714, + 0.09784924983978271, + 0.34718984365463257, + -0.39871707558631897, + -0.0130897993221879, + -0.26208317279815674, + -0.07611887902021408, + 0.2885091006755829, + 0.092270128428936, + -0.013246892020106316, + -0.04186173155903816, + 0.48246297240257263, + -0.0046471888199448586, + -0.3662783205509186, + 0.3224092423915863, + -0.11527599394321442, + -0.1642409861087799, + -0.23173284530639648, + -0.47847214341163635, + -0.7642673850059509, + -0.039810873568058014, + -0.01895822398364544, + 0.08913274109363556, + 0.3285217881202698, + 0.003354056505486369, + -0.2411489486694336, + 0.17458154261112213, + 0.03856223449110985, + 0.28193092346191406, + 0.2344440370798111, + 0.13761982321739197, + 0.0316561758518219, + -0.18293459713459015, + 0.0007082947413437068, + -0.10183478146791458, + 0.29677852988243103, + 0.48663806915283203, + 0.016980256885290146, + 0.00042689271504059434, + 0.07147838175296783, + 0.2905617356300354, + -0.0540410652756691, + -0.05438515543937683, + -0.4179891049861908, + 0.09178335219621658, + -0.037066392600536346, + 0.13005496561527252, + -0.14459240436553955, + -0.18306554853916168, + -0.20466716587543488, + 0.03651946038007736, + -0.12245716899633408, + -0.511111319065094, + -0.4696480333805084, + 0.36203640699386597, + 0.3340136408805847, + -0.08825206756591797, + 0.02906821109354496, + -0.18552137911319733, + 0.03877456113696098, + 0.026951655745506287, + 0.3871261477470398, + 0.3181215822696686, + 0.3022526204586029, + 0.01529880054295063, + -0.042525459080934525, + -0.23556050658226013, + -0.012458854354918003, + -0.20570513606071472, + 0.43123674392700195, + -0.029536444693803787, + -0.015221425332129002, + 0.5441558361053467, + -0.009173333644866943, + -0.035774923861026764, + 0.7406247854232788, + -0.3937263488769531, + 0.39137062430381775, + -0.013164905831217766, + 0.0961257740855217, + -0.17442461848258972, + -0.43023523688316345, + 0.09774846583604813, + 0.3492068946361542, + -0.43372392654418945, + 0.6945797204971313, + 0.2833877503871918, + -0.2448021024465561, + -0.0571584515273571, + -0.3274467885494232, + 0.2153135985136032, + 0.19341155886650085, + 0.23870344460010529, + -0.20771363377571106, + -0.11539062112569809, + -0.2974030375480652, + -0.002839918714016676, + -0.3126678466796875, + -0.1707625538110733, + -0.14578597247600555, + 0.046418897807598114, + 0.006933932658284903, + 0.020693322643637657, + 0.20589579641819, + 0.18723252415657043, + -0.163631409406662, + -0.13990086317062378, + -0.357511967420578, + -0.25564637780189514, + 0.020241592079401016, + 0.7646552324295044, + 0.04144992306828499, + -0.14769421517848969, + 0.023255493491888046, + 0.21928749978542328, + -0.04082940146327019, + 0.03222467750310898, + 0.1012636050581932, + 0.03582748770713806, + -0.3437248170375824, + 0.12110476940870285, + 0.1621411293745041, + -0.4145309627056122, + -0.14715680480003357, + -0.133422389626503, + -0.016409102827310562, + 0.06696154922246933, + -0.18553867936134338, + 0.19406889379024506, + 0.34697484970092773, + 0.054065264761447906, + 0.11948585510253906, + -0.15907779335975647, + -0.09753081947565079, + 0.009691094048321247, + 0.40486088395118713, + 0.07232224941253662, + -0.3861137926578522, + -0.3529038429260254, + -0.48146969079971313, + 0.19582390785217285, + -0.4145156741142273, + 0.09389970451593399, + -0.047726165503263474, + 0.1124381497502327, + -0.23491093516349792, + 0.17927539348602295, + -0.14224475622177124, + 0.1265493929386139, + -0.35552749037742615, + 0.1961769014596939, + 0.41992321610450745, + -0.4877544939517975, + 0.4726913273334503, + -0.08445429801940918, + 0.19499151408672333, + -0.009040338918566704, + -0.2341529130935669, + 0.008638948202133179, + -0.19954811036586761 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_054.json b/src/benchmark/output/results/results_graph_054.json new file mode 100644 index 0000000..16e9e17 --- /dev/null +++ b/src/benchmark/output/results/results_graph_054.json @@ -0,0 +1,792 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 49-year-old male with a significant smoking history (37 pack-years). He was admitted to the local hospital with acute abdominal pain, which marked the beginning of his clinical journey.\n\n**Timeline of Diagnoses and Treatments:**\n\n1. **Initial Presentation:** The patient presented with acute abdominal pain, which led to an enhanced CT scan revealing a 4.0 cm soft tissue mass within the small intestine and mid-lower intestine intussusception (N2).\n2. **Surgical Intervention:** Admitted to the general surgery ward, the patient underwent intussusception surgery on April 8, 2019 (N3). During surgery, an irregular, hard, solid white mass involving the intestine was identified.\n3. **Initial Pathological Diagnosis:** The resected specimen showed a multinodular mass with a tan-white cut surface and firm consistency, thin envelope observed in the periphery of the mass (N4).\n4. **Detailed Pathology and Immunohistochemistry Results:** Histological examination revealed tumor located within the submucosa and lamina propria of the intestinal wall with mucosal erosion, neoplastic cells embedded within the inflammatory background. Immunohistochemistry results confirmed ALK-positive inflammatory myofibroblastic tumor (IMT), highly suspicious for epithelioid inflammatory myofibroblastic sarcoma (EIMS) (N5).\n\n**Diagnosis and Treatment Outcomes:**\n\nThe patient was diagnosed with a suspected case of epithelioid inflammatory myofibroblastic sarcoma (EIMS). Given the ALK-positive status, treatment options were considered. However, no specific treatment details are provided in this data.\n\n**Conclusion:**\nThis clinical case report highlights the importance of a thorough diagnostic workup and the significance of molecular testing in identifying rare and aggressive tumors like EIMS. Further investigation into the patient's treatment plan is necessary to determine the most effective course of action for this unique diagnosis.\n\n**Recommendations:**\n\n1. **Multidisciplinary Team Approach:** Collaboration between surgeons, pathologists, radiologists, and oncologists is crucial for managing complex cases like this.\n2. **Molecular Testing:** Regular molecular testing can help identify potential biomarkers for targeted therapies in EIMS patients.\n3. **Clinical Trials Participation:** Patients with rare tumors like EIMS should be considered for participation in clinical trials to explore new treatment options.\n\n**Future Directions:**\n\n1. **Research on EIMS:** Further studies are needed to understand the biology and behavior of EIMS, as well as to identify potential therapeutic targets.\n2. **Development of New Treatment Strategies:** Researchers should focus on developing novel treatments for EIMS, including targeted therapies and immunotherapies.\n\nBy sharing this clinical case report, we aim to raise awareness about the importance of accurate diagnosis and treatment planning in managing rare and aggressive tumors like EIMS.", + "bertscore": { + "precision": 0.8164544701576233, + "recall": 0.8288332223892212, + "f1": 0.8225972652435303 + }, + "bleu": 0.10046274166922226, + "rouge1": 0.4076539101497504, + "rougeL": 0.25291181364392684, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 5, + "edge_count": 4, + "avg_in_degree": 0.8, + "density": 0.2 + }, + "trajectory_embedding": [ + 0.2819657325744629, + 0.01156010851264, + -0.19529643654823303, + -0.042242903262376785, + 0.0824071615934372, + -0.062329452484846115, + 0.08502864092588425, + -0.14531011879444122, + 0.2912984788417816, + -0.3691332936286926, + -0.4327576160430908, + 0.2096576988697052, + -0.7493955492973328, + 0.01814318634569645, + -0.5375791788101196, + 0.016119401901960373, + 0.22100715339183807, + 0.18724648654460907, + 0.03841910511255264, + -0.21638181805610657, + -0.48673343658447266, + 0.07024292647838593, + -0.3643311858177185, + -0.23545090854167938, + 0.14727391302585602, + 0.009976985864341259, + 0.22331109642982483, + 0.46797052025794983, + 0.31234797835350037, + 0.1649298369884491, + 0.187848761677742, + 0.28659406304359436, + -0.19404426217079163, + 0.08399435132741928, + -0.2307843267917633, + 0.5273750424385071, + 0.3137717545032501, + 0.3533502519130707, + -0.01034017838537693, + 0.16888263821601868, + 0.025408577173948288, + 0.06290604174137115, + 0.6615124940872192, + 0.5666652917861938, + 0.5595418214797974, + -0.5713450312614441, + -0.002448448445647955, + 0.41315245628356934, + -0.6382060050964355, + -0.022182364016771317, + 0.11898112297058105, + 0.7024340629577637, + 0.5959348678588867, + 0.10346529632806778, + 0.3609403967857361, + -0.010024135932326317, + -0.41306430101394653, + -0.09724655747413635, + -0.2617156505584717, + 0.12284529209136963, + -0.005021440796554089, + 0.06885652989149094, + -0.14805562794208527, + -0.020574724301695824, + -0.3853421211242676, + -0.18950721621513367, + 0.0011491298209875822, + -0.009224670939147472, + -0.12623415887355804, + -0.5179650783538818, + -0.41000232100486755, + -0.16581407189369202, + -0.23971864581108093, + 0.026845943182706833, + 0.1398806869983673, + -0.4564540982246399, + 0.3844260573387146, + 0.2364782840013504, + -0.03694479539990425, + 0.06192534416913986, + 0.15585803985595703, + -0.06395810842514038, + 0.22396664321422577, + 0.010370844043791294, + -0.3596239984035492, + 0.13184896111488342, + -0.029421698302030563, + -0.005504290573298931, + -0.145220085978508, + 0.19270962476730347, + 0.2139541655778885, + -0.0691504031419754, + -0.24397054314613342, + -0.11164649575948715, + 0.16217145323753357, + -0.14121678471565247, + -0.005196228623390198, + 0.4833621382713318, + 0.8817175626754761, + 0.006323543377220631, + 0.18569307029247284, + 0.3828979432582855, + 0.3616761565208435, + -0.13213948905467987, + 0.4813898205757141, + -0.09522002935409546, + 0.20643095672130585, + -0.3958446979522705, + -0.2907494306564331, + 0.38507378101348877, + -0.10256996005773544, + -0.07805794477462769, + -0.03671841323375702, + -0.42862510681152344, + -0.1323743611574173, + 0.10578533262014389, + -0.26192721724510193, + 0.12471119314432144, + -0.04531417414546013, + -0.25588709115982056, + 0.14686565101146698, + -0.014113294892013073, + 0.4391873776912689, + 0.3200407326221466, + -0.3037782907485962, + 0.1367434561252594, + -0.23748591542243958, + 0.1433216780424118, + 0.029233749955892563, + 0.22284051775932312, + -0.48567837476730347, + -0.17378975450992584, + -0.04064939171075821, + 0.30401086807250977, + -0.07699992507696152, + 0.225277379155159, + -0.5841492414474487, + 0.1473255604505539, + -1.1481292247772217, + 0.1354365348815918, + -0.2891828715801239, + -0.07392589747905731, + 0.03602614626288414, + -0.3595748543739319, + -0.16831736266613007, + -0.28920719027519226, + -0.12690773606300354, + 0.1131347268819809, + 0.0625547543168068, + -0.026239940896630287, + -0.1986147165298462, + 0.10290782153606415, + 0.11960642039775848, + -0.056672610342502594, + 0.2557312548160553, + 0.30895471572875977, + 0.19126012921333313, + 0.1916830688714981, + 0.15540015697479248, + -0.00703870365396142, + -0.18617956340312958, + 0.14683955907821655, + -0.25667130947113037, + -0.057021062821149826, + 0.03640029951930046, + -0.7908259630203247, + 0.5084153413772583, + -0.33375629782676697, + 0.2227286398410797, + 0.24182340502738953, + -0.05195746570825577, + 0.26042163372039795, + -0.03700605034828186, + 0.4879745841026306, + 0.41023963689804077, + 0.42232638597488403, + 0.07641778886318207, + -0.05374490097165108, + 0.04331245273351669, + 0.17478929460048676, + -0.029185574501752853, + 0.039728183299303055, + 0.48788270354270935, + 0.08482994139194489, + -0.3019776940345764, + 0.03680054098367691, + 0.39694899320602417, + -0.26271986961364746, + -0.08964405953884125, + -0.2876098155975342, + 0.4486129879951477, + -0.35308265686035156, + 0.17106133699417114, + -0.4115082323551178, + -0.15082576870918274, + 0.03513195738196373, + -0.3936923146247864, + -0.3235332667827606, + 0.24168696999549866, + -0.23818698525428772, + 0.1304507553577423, + 0.2335294485092163, + -0.1587386578321457, + 0.3151378631591797, + 0.08301068842411041, + -0.040391940623521805, + 0.2454967498779297, + 0.126488596200943, + 0.10284750163555145, + -0.28173309564590454, + -0.4230947494506836, + 0.20568108558654785, + -0.010282578878104687, + 0.20891611278057098, + 0.14070436358451843, + -0.07551243156194687, + 0.5132578611373901, + -0.12277515977621078, + -0.1477503478527069, + 0.21111464500427246, + -0.10337124019861221, + 0.11373928934335709, + 0.6116440892219543, + -0.02891787327826023, + -0.2560272216796875, + 0.22197239100933075, + 0.18883918225765228, + 0.3178527355194092, + 0.11936540901660919, + -0.22341518104076385, + 0.081446073949337, + -0.1539449244737625, + 0.2728028893470764, + -0.08746681362390518, + -0.27951258420944214, + -0.14418792724609375, + 0.16988372802734375, + -0.16448208689689636, + -0.32468995451927185, + 0.3970807194709778, + -0.3475591242313385, + -0.10016006231307983, + 0.000508898519910872, + -0.12484131008386612, + -0.10205300152301788, + -0.13561642169952393, + 0.10606913268566132, + 0.4626343846321106, + 0.0530124232172966, + 0.2949811518192291, + 0.21213805675506592, + -0.014922755770385265, + 0.21438510715961456, + -0.35733336210250854, + -0.03728798031806946, + -0.32251983880996704, + -0.20010869204998016, + -0.03009653463959694, + -0.17133785784244537, + -0.17072144150733948, + 0.19208277761936188, + -0.21260876953601837, + 0.045306820422410965, + -0.30475252866744995, + -0.20405307412147522, + -0.003769330680370331, + -0.11991526931524277, + 0.15337379276752472, + -0.007221841719001532, + 0.34581536054611206, + -0.3109282851219177, + -0.2648845314979553, + -0.1373087614774704, + -0.02402234636247158, + 0.27946537733078003, + 0.1285712569952011, + 0.06717168539762497, + 0.3381385803222656, + 0.11312544345855713, + -0.5430663824081421, + -0.5410584807395935, + 0.1770082265138626, + -0.31392914056777954, + 0.30305618047714233, + -0.11267969757318497, + 0.18842267990112305, + 0.6420873999595642, + -0.14211536943912506, + 0.2482599914073944, + 0.16216333210468292, + 0.6098726987838745, + 0.2301134169101715, + -0.07901699095964432, + 0.1310667246580124, + -0.036422450095415115, + 0.040156953036785126, + -0.37019240856170654, + 0.05949672311544418, + 0.10593041032552719, + -0.11186661571264267, + 0.23038455843925476, + 0.23154819011688232, + 0.08147681504487991, + -0.41597071290016174, + -0.34312954545021057, + 0.5608704686164856, + 0.21357527375221252, + 0.13585183024406433, + -0.09090302884578705, + 0.29289939999580383, + 0.5642803907394409, + 0.11637301743030548, + -0.4090180993080139, + 0.032584480941295624, + -0.17435336112976074, + -0.1940097063779831, + -0.10765485465526581, + -0.12867698073387146, + 0.04984060674905777, + -0.10114653408527374, + 0.012731410562992096, + 0.4958353042602539, + -0.17315582931041718, + -0.18637704849243164, + 0.0931919515132904, + 0.02466379478573799, + -0.04879599064588547, + -0.3212471306324005, + 0.20249846577644348, + -0.36788836121559143, + -0.19267335534095764, + 0.3757289946079254, + -0.14616259932518005, + -0.3999912142753601, + 0.3249477446079254, + 0.09166757017374039, + -0.41328945755958557, + 0.20471489429473877, + -0.20471730828285217, + -0.026013553142547607, + 0.37527355551719666, + 0.07070465385913849, + -0.04677145928144455, + -0.257219523191452, + 0.09950919449329376, + 0.09069094806909561, + -0.24026012420654297, + -0.06821098923683167, + -0.04505574703216553, + 0.24342553317546844, + 0.5499352216720581, + -0.010531236417591572, + -0.17595723271369934, + 0.22296276688575745, + -0.19226904213428497, + -0.16540242731571198, + 0.03457000479102135, + 0.030670464038848877, + 0.0817415714263916, + -0.10850231349468231, + -0.14931195974349976, + -0.14941152930259705, + 0.16228844225406647, + 0.07606784999370575, + -0.31834691762924194, + 0.03720006346702576, + 0.18604466319084167, + -0.17718732357025146, + 0.051259808242321014, + 0.1965215653181076, + 0.30737289786338806, + 0.06997787952423096, + 0.515029788017273, + 0.14422515034675598, + -0.06916314363479614, + 0.23996594548225403, + -0.13686047494411469, + 0.30965667963027954, + -0.11265214532613754, + -0.3902631402015686, + -0.5225185751914978, + -0.08763500303030014, + -0.1360173523426056, + -0.2288244664669037, + 0.06367043405771255, + 0.07010520249605179, + -0.004669687710702419, + 0.016875971108675003, + 0.3325256407260895, + -0.04973766207695007, + 0.09560365974903107, + 0.006523969583213329, + 0.5087031126022339, + -0.19585342705249786, + -0.43661680817604065, + 0.0840020477771759, + -0.06538631021976471, + 0.20009329915046692, + -0.06858948618173599, + -0.22737650573253632, + -0.24373483657836914, + 0.2227402627468109, + -0.20619824528694153, + 0.003876660717651248, + -0.0488007627427578, + -0.22553808987140656, + -0.18322208523750305, + -0.4884607195854187, + -0.20216837525367737, + -0.030023038387298584, + -0.11414720863103867, + -0.1916341781616211, + 0.3237042725086212, + 0.1354282796382904, + -0.2255854308605194, + 0.11419685184955597, + 0.4803258776664734, + 0.3798507750034332, + -0.10202062129974365, + 0.16469919681549072, + 0.021654600277543068, + 0.0533205084502697, + 0.22574946284294128, + 0.03888440132141113, + 0.1390540897846222, + 0.1104675754904747, + -0.2320142239332199, + -0.10046698898077011, + 0.05306949466466904, + -0.2549882233142853, + -0.05469985678792, + 0.11206956207752228, + 0.09330709278583527, + 0.2569495737552643, + 0.03564918786287308, + -0.10288609564304352, + 0.2938670516014099, + -0.38132068514823914, + -0.09856522083282471, + 0.4201720356941223, + -0.03937888145446777, + 0.29909127950668335, + -0.18918009102344513, + -0.25448641180992126, + -0.19327464699745178, + -0.07191035896539688, + -0.3532315790653229, + 0.27596449851989746, + 0.042613573372364044, + -0.2677476108074188, + -0.051544271409511566, + 0.08639760315418243, + -0.05997587367892265, + -0.01986256241798401, + 0.08639562875032425, + 0.2152630090713501, + 0.052332282066345215, + 0.002368220593780279, + -0.4492368698120117, + -0.019947480410337448, + -0.3480650782585144, + -0.3315059244632721, + -0.4616914391517639, + 0.5195516347885132, + 0.31312471628189087, + 0.033030781894922256, + 0.1273924708366394, + -0.012801790609955788, + -0.29804739356040955, + -0.14500217139720917, + 0.029920075088739395, + 0.13169267773628235, + 0.6464425921440125, + 0.07861386239528656, + -0.3326285779476166, + 0.27793365716934204, + -0.379084050655365, + 0.26129403710365295, + 0.05180910974740982, + 0.13850137591362, + 0.30924832820892334, + 0.41900768876075745, + 0.11717581748962402, + 0.4368710517883301, + 0.12804348766803741, + -0.0511070117354393, + 0.2268187552690506, + -0.10402921587228775, + 0.17748552560806274, + -0.10792158544063568, + -0.004463016986846924, + 0.5278986692428589, + -0.33122676610946655, + 0.2842572331428528, + 0.21393170952796936, + 0.2537659704685211, + -0.3018670678138733, + -0.23411352932453156, + -0.11559351533651352, + -0.09254096448421478, + -0.0019650100730359554, + -0.3699612021446228, + -0.14035384356975555, + 0.2506367564201355, + -0.35856691002845764, + -0.03846556693315506, + 0.24453067779541016, + 0.06467701494693756, + 0.18118174374103546, + -0.09313437342643738, + -0.18066686391830444, + -0.5968683958053589, + 0.12002919614315033, + 0.36896753311157227, + 0.04797782003879547, + 0.11252231895923615, + -0.18932481110095978, + 0.1817692220211029, + 0.5597721338272095, + 0.01591671071946621, + -0.0859982818365097, + -0.03955406695604324, + -0.14732638001441956, + -0.18711695075035095, + 0.1421598345041275, + -0.09672565758228302, + 0.011964231729507446, + -0.1905207335948944, + 0.04277913644909859, + -0.17823031544685364, + -0.26543062925338745, + 0.11301042884588242, + -0.2458002120256424, + -0.3204088807106018, + -0.15424102544784546, + 0.1764768809080124, + -0.17536865174770355, + -0.08618875592947006, + 0.1358158141374588, + 0.6120887994766235, + 0.22199785709381104, + -0.06003031134605408, + 0.12544585764408112, + -0.32640355825424194, + -0.1089656725525856, + 0.175840824842453, + -0.1430301070213318, + 0.19983583688735962, + 0.03325486183166504, + 0.3547280430793762, + 0.4124228060245514, + 0.1358843892812729, + -0.6560123562812805, + -0.10335878282785416, + 0.05185486003756523, + 0.2560424208641052, + -0.23765762150287628, + -10.68913459777832, + 0.27580446004867554, + -0.15968427062034607, + 0.574459433555603, + -0.08790814131498337, + -0.055183857679367065, + 0.1339123547077179, + -0.017256394028663635, + 0.07973160594701767, + 0.24353232979774475, + -0.3917399048805237, + 0.09729699790477753, + 0.3632754683494568, + 0.16694439947605133, + -0.16284869611263275, + -0.23012928664684296, + -0.02414735034108162, + 0.03616098314523697, + -0.11411072313785553, + 0.1642410159111023, + 0.24508197605609894, + 0.35791903734207153, + -0.03128154203295708, + 0.42729735374450684, + 0.2815253436565399, + -0.1577373445034027, + -0.2408381998538971, + 0.4919394552707672, + -0.08061450719833374, + -0.5037323236465454, + 0.4084181785583496, + 0.3214499056339264, + -0.29248204827308655, + -0.06257804483175278, + 0.10729587078094482, + -0.1379738748073578, + -0.03425617888569832, + 0.025445619598031044, + 0.04020975902676582, + -0.01717967540025711, + 0.027411941438913345, + -0.39731842279434204, + -0.0852234959602356, + 0.5058475732803345, + 0.01610795594751835, + -0.27728086709976196, + -0.33120355010032654, + -1.3148202896118164, + 0.31182655692100525, + 0.31345024704933167, + 0.3940262794494629, + 0.07604080438613892, + 0.145135760307312, + 7.220804400276393e-05, + -0.493582546710968, + 0.31558114290237427, + -0.23512013256549835, + 0.3255839943885803, + 0.13163986802101135, + -0.1443617045879364, + 0.11162862926721573, + -0.2633225917816162, + 0.026633460074663162, + -0.4106953740119934, + -0.2748780846595764, + 0.16248026490211487, + -0.09041117131710052, + 0.047892939299345016, + -0.11936809867620468, + -0.01629996858537197, + -0.271892249584198, + -0.21580886840820312, + 0.03376949578523636, + -0.07055852562189102, + 0.6470610499382019, + -0.05516018345952034, + -0.6901593208312988, + 0.22685472667217255, + 0.008406287059187889, + 0.3929494321346283, + -0.011151174083352089, + 0.09318292886018753, + 0.12803347408771515, + -0.09911654144525528, + -0.1421150118112564, + -0.21677851676940918, + 0.07863418757915497, + 0.40272530913352966, + -0.01134209893643856, + 0.16438165307044983, + 0.1136201024055481, + 0.08711381256580353, + -0.28522825241088867, + -0.23506751656532288, + -0.43682631850242615, + 0.2354322373867035, + -0.01765471138060093, + 0.04081321507692337, + 0.06465517729520798, + -0.07987804710865021, + -0.22834742069244385, + -0.24478814005851746, + 0.019913554191589355, + -0.4649529457092285, + -0.26934629678726196, + 0.22237679362297058, + 0.036859508603811264, + 0.3196752071380615, + 0.24554911255836487, + 0.07474811375141144, + 0.23659472167491913, + -0.03021365962922573, + 0.4542574882507324, + 0.40544262528419495, + 0.11862766742706299, + -0.16169245541095734, + -0.16027319431304932, + -0.028901493176817894, + -0.5350267291069031, + 0.21116161346435547, + 0.3787907361984253, + -0.1087554469704628, + 0.22526565194129944, + 0.5065306425094604, + -0.05097439885139465, + -0.20970487594604492, + 1.0602271556854248, + -0.15767021477222443, + 0.2806263864040375, + -0.15042836964130402, + 0.19843806326389313, + -0.07326511293649673, + -0.1375170797109604, + 0.11471432447433472, + 0.35731202363967896, + -0.26258140802383423, + 0.2953881025314331, + -0.04774404689669609, + -0.358589231967926, + 0.09489456564188004, + -0.18334512412548065, + 0.47902998328208923, + 0.3594898283481598, + 0.26052993535995483, + -0.07597152143716812, + -0.4741649031639099, + -0.1843908131122589, + 0.015452748164534569, + -0.435493528842926, + -0.28131332993507385, + -0.3245774209499359, + 0.13966748118400574, + -0.11624328792095184, + -0.33955103158950806, + 0.40277227759361267, + -0.0664106160402298, + -0.1328691989183426, + -0.23422029614448547, + -0.5450707674026489, + 0.1295308768749237, + 0.24664855003356934, + 0.6430838108062744, + 0.2672436237335205, + -0.024748414754867554, + -0.17750433087348938, + 0.2842051386833191, + -0.030547112226486206, + 0.023227548226714134, + 0.009114616550505161, + -0.013943331316113472, + -0.5814539194107056, + 0.04636714234948158, + 0.1672561913728714, + -0.33161461353302, + -0.24174821376800537, + -0.4846605360507965, + 0.26745468378067017, + -0.23636695742607117, + -0.10067620128393173, + 0.279702365398407, + 0.21455411612987518, + -0.14842669665813446, + -0.06560420989990234, + -0.20862743258476257, + 0.5034682154655457, + 0.2268894463777542, + 0.14920401573181152, + 0.11234637349843979, + -0.1524461954832077, + -0.4215036928653717, + -0.2795286774635315, + 0.1484694629907608, + -0.040418364107608795, + -0.156514510512352, + 0.16409710049629211, + 0.19948771595954895, + -0.3850327134132385, + -0.030213987454771996, + -0.4962828755378723, + 0.003129857825115323, + -0.2587776780128479, + 0.04645847529172897, + 0.27845102548599243, + -0.3072490394115448, + -0.032910335808992386, + -0.13369184732437134, + 0.2985060214996338, + 0.18743810057640076, + -0.25318223237991333, + 0.332520067691803, + -0.08831311017274857 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_056.json b/src/benchmark/output/results/results_graph_056.json new file mode 100644 index 0000000..378d470 --- /dev/null +++ b/src/benchmark/output/results/results_graph_056.json @@ -0,0 +1,792 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is an adult with no publicly available demographic information. However, based on the provided data, it can be inferred that the patient has cancer, as mentioned in Step 1.\n\n**Timeline of Diagnoses and Treatments:**\n\nStep 1:\nThe patient's cancer had no driver gene mutations.\n\nStep 2 (First-line Chemotherapy):\nInitiation of first-line chemotherapy with cisplatin, pemetrexed, and pembrolizumab was administered. This treatment was initiated to target the patient's cancer.\n\nStep 3 (Second-line Chemotherapy):\nProgression to second-line chemotherapy with docetaxel and ramucirumab was administered. This treatment was initiated due to the development of resistance or intolerance to the first-line chemotherapy.\n\nStep 4:\nChemotherapy was delayed for approximately one month due to the development of a perianal abscess, which required surgical intervention under local anesthesia. The patient's cancer treatment was interrupted due to an unexpected complication.\n\nStep 5 (Post-Surgical Complication):\nThe patient developed dyspnea the day following surgery. This symptom suggested that the patient may be experiencing respiratory complications related to the surgery.\n\nStep 6:\nAdmission and Vital Sign Abnormalities:\nFour days after symptom onset, the patient was admitted with vital sign abnormalities, including hypotension, hypoxemia, and tachycardia. These findings indicated that the patient's condition had deteriorated significantly.\n\nStep 7 (Lab Abnormalities):\nElevated D-dimer, C-reactive protein, brain natriuretic peptide, and carcinoembryonic antigen levels were detected in the patient's blood. Additionally, abnormal CBC results and arterial blood gas findings were observed. These lab abnormalities suggested that the patient had developed a systemic inflammatory response syndrome (SIRS) or sepsis.\n\n**Outcomes:**\n\nThe patient's condition continued to deteriorate, with ongoing vital sign abnormalities and lab abnormalities. The exact outcome of this case is not provided in the data, but it can be inferred that the patient required further medical intervention to manage their symptoms and stabilize their condition.\n\nIn conclusion, this clinical case report highlights the complexities of cancer treatment and the potential for unexpected complications. The patient's journey from diagnosis to admission and beyond demonstrates the need for close monitoring and prompt intervention in managing cancer-related symptoms and lab abnormalities.", + "bertscore": { + "precision": 0.7944204211235046, + "recall": 0.7673730254173279, + "f1": 0.7806625366210938 + }, + "bleu": 0.03316548148309143, + "rouge1": 0.2944444444444444, + "rougeL": 0.1625, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 7, + "edge_count": 6, + "avg_in_degree": 0.8571428571428571, + "density": 0.14285714285714285 + }, + "trajectory_embedding": [ + 0.22469878196716309, + 0.19692015647888184, + 0.00025188070139847696, + 0.173471599817276, + 0.09548087418079376, + 0.17378945648670197, + -0.016956541687250137, + 0.2958507835865021, + 0.6613865494728088, + -0.4530636966228485, + -0.13141368329524994, + -0.04939684644341469, + -0.6155732274055481, + -0.17467454075813293, + -0.18280437588691711, + 0.12072768062353134, + -0.1693776696920395, + 0.36427292227745056, + -0.11844424158334732, + -0.22703833878040314, + -0.22091881930828094, + 0.11670362949371338, + -0.6725220680236816, + 0.10164103657007217, + 0.20791147649288177, + -0.03777886554598808, + 0.3214867115020752, + 0.6401349306106567, + 0.13143087923526764, + 0.2320757806301117, + 0.17600999772548676, + -0.10020772367715836, + 0.13705681264400482, + 0.059911761432886124, + -0.23374390602111816, + 0.25236326456069946, + 0.20346732437610626, + 0.3799627125263214, + -0.22374756634235382, + -0.12771087884902954, + -0.17458724975585938, + 0.1423516422510147, + 0.9342103600502014, + 0.06327115744352341, + 0.34945550560951233, + -0.749184787273407, + -0.08388042449951172, + 0.7538290619850159, + -0.40097424387931824, + -0.327763170003891, + 0.13337692618370056, + 0.771461009979248, + 0.5585850477218628, + -0.3650854229927063, + 0.4895590841770172, + -0.16174796223640442, + -0.20078660547733307, + -0.3044884204864502, + -0.1344498097896576, + 0.06310762465000153, + 0.011655847541987896, + -0.31084534525871277, + 0.5292473435401917, + -0.20876888930797577, + -0.10482144355773926, + -0.07125664502382278, + -0.3000344932079315, + 0.17378416657447815, + -0.05821957811713219, + -0.24617798626422882, + -0.19034655392169952, + -0.1978224664926529, + -0.1294981986284256, + 0.026532581076025963, + 0.049367886036634445, + -0.2103743553161621, + 0.30202120542526245, + -0.1625305414199829, + 0.2595093548297882, + 0.16770608723163605, + -0.011134983971714973, + -0.08638764917850494, + 0.01100680697709322, + 0.3230552077293396, + -0.3027610778808594, + -0.046645548194646835, + -0.1163703054189682, + -0.07102371007204056, + -0.3265528380870819, + 0.09866658598184586, + -0.0014226819621399045, + -0.4219525456428528, + 0.21809256076812744, + -0.35074740648269653, + -0.10733859241008759, + 0.19963793456554413, + 0.696682333946228, + 0.15613733232021332, + 0.7823827862739563, + -0.10320763289928436, + 0.2902891933917999, + -0.04866643622517586, + 0.27103373408317566, + 0.04075722023844719, + 0.3885001540184021, + -0.006918954197317362, + 0.17122578620910645, + -0.4727141559123993, + 0.39181771874427795, + 0.5767492055892944, + 0.07633522897958755, + -0.25837329030036926, + -0.006403965409845114, + -0.23254263401031494, + 0.17066249251365662, + 0.06589744240045547, + -0.02698918804526329, + 0.345904678106308, + 0.23928038775920868, + -0.5169200301170349, + -0.14834341406822205, + -0.2114701271057129, + 0.147049218416214, + 0.26934900879859924, + -0.43777135014533997, + -0.16545696556568146, + -0.2131681591272354, + -0.16323384642601013, + 0.13455404341220856, + 0.01998034492135048, + -0.5584474802017212, + -0.27987655997276306, + -0.11074145883321762, + 0.14436854422092438, + -0.07224613428115845, + 0.32376861572265625, + -0.35424089431762695, + 0.09824318438768387, + -1.1182879209518433, + 0.11961840093135834, + -0.34295710921287537, + -0.06515182554721832, + -0.0642845630645752, + -0.6493039131164551, + -0.18422116339206696, + -0.10730741918087006, + -0.04602300375699997, + 0.1153545156121254, + -0.24960991740226746, + 0.02682415209710598, + 0.042228203266859055, + -0.10121792554855347, + 0.2753884196281433, + 0.5334533452987671, + 0.07838999480009079, + -0.0435774065554142, + 0.04627418518066406, + 0.27988532185554504, + 0.05917259678244591, + -0.05117029696702957, + -0.013790122233331203, + 0.6459563970565796, + 0.028662264347076416, + 0.1737588495016098, + -0.0589175820350647, + -0.7323708534240723, + -0.031106730923056602, + -0.08361741155385971, + 0.016399836167693138, + -0.04907277598977089, + -0.05511435493826866, + 0.11302033811807632, + -0.17577333748340607, + 0.7015606164932251, + 0.08665943145751953, + 0.29554301500320435, + 0.08704205602407455, + 0.02366805449128151, + 0.20670022070407867, + 0.2268480360507965, + 0.18430401384830475, + -0.2915305197238922, + 0.5492498278617859, + 0.23509946465492249, + -0.29434290528297424, + 0.1794404685497284, + 0.28481200337409973, + 0.033230919390916824, + -0.36189746856689453, + -0.02949059009552002, + 0.4296116530895233, + -0.410980761051178, + 0.4986247420310974, + -0.20137465000152588, + 0.03222942352294922, + 0.10513366013765335, + -0.1622185856103897, + -0.004757741931825876, + -0.11050976812839508, + -0.12115741521120071, + 0.2502313554286957, + 0.06535696983337402, + -0.3554372191429138, + 0.0980512946844101, + 0.21861614286899567, + -0.1664574146270752, + 0.17979423701763153, + -0.10072606056928635, + 0.185216024518013, + 0.0775797888636589, + -0.1456650048494339, + 0.2926482856273651, + -0.10801077634096146, + 0.23464109003543854, + 0.0010535882320255041, + -0.46491608023643494, + 0.02120785415172577, + -0.003971497993916273, + -0.11590417474508286, + 0.07090578973293304, + 0.09716969728469849, + -0.11238840967416763, + -0.1383257806301117, + 0.0993557721376419, + -0.5222828388214111, + 0.3271873891353607, + 0.1920936107635498, + 0.2158873975276947, + 0.145614892244339, + 0.02053617127239704, + -0.061245113611221313, + -0.5324280858039856, + 0.384147584438324, + -0.24116051197052002, + -0.04885660856962204, + -0.29416608810424805, + 0.35971543192863464, + -0.06005369871854782, + 0.18086205422878265, + 0.16348035633563995, + 0.11944399029016495, + -0.026796609163284302, + 0.061670687049627304, + -0.29774561524391174, + 0.052647385746240616, + -0.4357898533344269, + -0.04830760508775711, + 0.29982027411460876, + 0.12870745360851288, + 0.2669839560985565, + 0.02877725102007389, + 0.0498492531478405, + 0.23797091841697693, + -0.14100633561611176, + -0.4737057387828827, + -0.28655341267585754, + -0.13253158330917358, + -0.11716262996196747, + -0.6110339164733887, + 0.16249188780784607, + -0.2768310010433197, + 0.029053756967186928, + 0.21750785410404205, + -0.23640979826450348, + -0.15723037719726562, + 0.02150021120905876, + 0.21713249385356903, + 0.19919343292713165, + -0.18014851212501526, + -0.04367617517709732, + -0.204382985830307, + -0.0594809465110302, + -0.19889231026172638, + -0.0350150503218174, + -0.027789784595370293, + 0.07477488368749619, + -0.2786652445793152, + -0.03885364532470703, + 0.025705883279442787, + -0.3375895619392395, + -0.08070240914821625, + 0.1495007425546646, + -0.15083347260951996, + 0.4207339882850647, + -0.021226832643151283, + 0.3251180946826935, + 0.25055885314941406, + 0.1437041014432907, + 0.10422282665967941, + 0.14273498952388763, + 0.44763144850730896, + -0.09087233245372772, + 0.02104048989713192, + -0.1237037181854248, + 0.019756896421313286, + 0.035168033093214035, + -0.2985188961029053, + 0.5834994316101074, + 0.04615021497011185, + -0.07509762793779373, + 0.07852970063686371, + 0.33903929591178894, + 0.07797182351350784, + -0.23805935680866241, + 0.04065174236893654, + 0.47394320368766785, + 0.07331110537052155, + 0.24165818095207214, + 0.12978826463222504, + 0.21933241188526154, + 0.4058678150177002, + -0.09019618481397629, + 0.04683222249150276, + 0.0691743865609169, + -0.11874572187662125, + -0.23624150454998016, + -0.0027644506189972162, + 0.19068321585655212, + 0.4629102647304535, + -0.25012901425361633, + -0.23108817636966705, + -0.007269429508596659, + -0.15290524065494537, + -0.006123108323663473, + -0.3816106617450714, + -0.20164798200130463, + 0.1702619343996048, + -0.10270830243825912, + 0.4750049412250519, + -0.09267127513885498, + -0.13874810934066772, + 0.46263381838798523, + -0.45516735315322876, + -0.1791352480649948, + 0.1638338267803192, + -0.023506266996264458, + -0.528973400592804, + 0.3626210689544678, + -0.2662975788116455, + 0.04107432812452316, + 0.3268541693687439, + -0.4090483486652374, + -0.2010653167963028, + 0.05102803185582161, + 0.42286252975463867, + -0.0458962582051754, + 0.07577352225780487, + 0.06345751881599426, + 0.0733143612742424, + 0.11865455657243729, + 0.3912322521209717, + 0.14511552453041077, + 0.3507525324821472, + 0.5427592992782593, + 0.18271663784980774, + -0.34501442313194275, + 0.12625810503959656, + -0.09739840030670166, + 0.24561183154582977, + -0.10940498858690262, + -0.152739018201828, + -0.15850447118282318, + 0.2041025012731552, + 0.08817499876022339, + -0.32539620995521545, + 0.026872428134083748, + -0.026737408712506294, + 0.07391124218702316, + -0.132284477353096, + 0.3706359267234802, + 0.1050071194767952, + -0.06658230721950531, + 0.3959886133670807, + -0.06984694302082062, + -0.19429056346416473, + 0.2272765189409256, + -0.1324797421693802, + 0.21873705089092255, + 0.06766661256551743, + -0.14322349429130554, + -0.34403327107429504, + 0.19339844584465027, + -0.30182406306266785, + -0.20493678748607635, + 0.06378086656332016, + -0.2496194988489151, + 0.1151234582066536, + -0.2908453643321991, + 0.018007392063736916, + 0.04006078094244003, + 0.14456117153167725, + 0.1918841302394867, + 0.3431141972541809, + 0.12143320590257645, + -0.1605629175901413, + 0.26926901936531067, + -0.14407287538051605, + -0.23863370716571808, + -0.22886350750923157, + -0.006889507174491882, + -0.15153582394123077, + 0.701823353767395, + -0.013171106576919556, + 0.033671777695417404, + -0.0348944291472435, + -0.026487186551094055, + -0.20702211558818817, + -0.33742985129356384, + -0.03633204102516174, + -0.14446072280406952, + 0.09681902080774307, + 0.08271758258342743, + 0.015685120597481728, + -0.228705033659935, + -0.09060531854629517, + -0.05174392834305763, + -0.06770431250333786, + 0.1089167445898056, + 0.0255803894251585, + -0.14151513576507568, + 0.4373488426208496, + 0.14492128789424896, + 0.4571680724620819, + -0.2783263027667999, + 0.20387636125087738, + 0.05216667428612709, + -0.4458121657371521, + 0.10101441293954849, + -0.10418935120105743, + -0.37659725546836853, + -0.10075097531080246, + 0.24888058006763458, + 0.30402541160583496, + -0.11320360749959946, + 0.028017578646540642, + 0.08623961359262466, + 0.05617130920290947, + -0.2875747084617615, + -0.09869205206632614, + 0.3081248104572296, + -0.13928385078907013, + 0.28482747077941895, + 0.15605489909648895, + -0.5872836709022522, + -0.2794762849807739, + 0.0008917301893234253, + -0.4180013835430145, + 0.05338042974472046, + 0.1992405503988266, + -0.11851298063993454, + -0.04241678863763809, + 0.019543204456567764, + -0.03889615088701248, + -0.2334025800228119, + 0.39664894342422485, + -0.15255920588970184, + 0.28551506996154785, + 0.06486667692661285, + -0.19735240936279297, + -0.09945381432771683, + -0.35150429606437683, + -0.42753419280052185, + -0.027418745681643486, + 0.254689484834671, + 0.12796670198440552, + -0.331301212310791, + 0.008003996685147285, + 0.01808343455195427, + 0.01662474311888218, + -0.33985328674316406, + -0.07790560275316238, + -0.35182979702949524, + 0.4031921923160553, + -0.2896983325481415, + -0.1693846434354782, + 0.04780232533812523, + -0.1776127815246582, + -0.08287981897592545, + 0.23879431188106537, + 0.00627507921308279, + 0.2766403257846832, + -0.02040010131895542, + -0.11700429022312164, + 0.42572346329689026, + 0.04141980782151222, + 0.3021600544452667, + 0.16275011003017426, + 0.09805972129106522, + 0.2000085860490799, + -0.2469392716884613, + -0.11666830629110336, + 0.3471514880657196, + -0.365037739276886, + -0.05861234292387962, + 0.13529027998447418, + 0.30311980843544006, + -0.43392831087112427, + -0.31981056928634644, + 0.13031241297721863, + -0.026194196194410324, + -0.07157210260629654, + -0.24315418303012848, + -0.24611081182956696, + -0.03168698772788048, + -0.195882648229599, + -0.033316005021333694, + 0.13665448129177094, + 0.5414629578590393, + 0.12739138305187225, + 0.14976570010185242, + -0.22984226047992706, + -0.31954672932624817, + 0.22291243076324463, + 0.2747359573841095, + 0.08952312916517258, + -0.1782289296388626, + -0.09108305722475052, + 0.29551681876182556, + 0.3838856518268585, + 0.06972069293260574, + -0.0017040371894836426, + -0.08907315880060196, + -0.012755627743899822, + 0.1897895187139511, + 0.051658518612384796, + -0.2027146816253662, + 0.06946615874767303, + -0.3131866157054901, + 0.19437578320503235, + -0.1514696329832077, + -0.0846664160490036, + 0.20609340071678162, + -0.31969091296195984, + -0.45860713720321655, + -0.0044958037324249744, + 0.1867484599351883, + -0.01238296739757061, + -0.1578221172094345, + 0.3046669363975525, + 0.28942832350730896, + 0.0041148173622787, + -0.36526814103126526, + 0.08819875866174698, + -0.5573554039001465, + -0.16263540089130402, + 0.05780705437064171, + -0.10368853807449341, + -0.13635973632335663, + 0.15562404692173004, + 0.6155082583427429, + 0.4216609597206116, + 0.30246514081954956, + -0.13754448294639587, + 0.2843063771724701, + 0.42405152320861816, + 0.19480064511299133, + -0.21151435375213623, + -10.591654777526855, + -0.20434141159057617, + -0.36403688788414, + 0.5892795324325562, + -0.21099291741847992, + 0.12946920096874237, + -0.08354949951171875, + 0.04747855290770531, + 0.08965682238340378, + 0.14987514913082123, + -0.21348007023334503, + -0.11271349340677261, + 0.2959910035133362, + 0.393771231174469, + 0.03945614770054817, + 0.2124864012002945, + -0.21829082071781158, + 0.3833410441875458, + -0.061495859175920486, + 0.24469225108623505, + 0.11049375683069229, + 0.42387133836746216, + -0.2569354772567749, + 0.1718987077474594, + -0.12706705927848816, + -0.38750705122947693, + -0.24735744297504425, + 0.5728124380111694, + 0.3494979739189148, + -0.38358455896377563, + 0.10554575175046921, + 0.06178182363510132, + -0.1177964061498642, + 0.17011305689811707, + -0.15876640379428864, + -0.1893967241048813, + 0.02700314298272133, + 0.08388880640268326, + 0.31694191694259644, + -0.16233648359775543, + 0.04530244320631027, + -0.2762695252895355, + 0.33245593309402466, + 0.009630417451262474, + -0.2033102959394455, + -0.6332572102546692, + -0.03543485328555107, + -1.480163812637329, + 0.329806387424469, + 0.4816587269306183, + 0.42114660143852234, + 0.23393502831459045, + 0.09392577409744263, + 0.37409520149230957, + -0.24870863556861877, + -0.08346735686063766, + -0.34297794103622437, + -0.2099401205778122, + 0.13298171758651733, + 0.10812436044216156, + 0.10378018766641617, + -0.010793630965054035, + 0.4954144358634949, + -0.09385309368371964, + -0.28284987807273865, + 0.04763180390000343, + 0.022549143061041832, + -0.08376394957304001, + -0.38555318117141724, + -0.7452481985092163, + -0.49656781554222107, + 0.013684956356883049, + -0.21524620056152344, + 0.07899868488311768, + 0.22202017903327942, + 0.005056783556938171, + -0.2148675173521042, + 0.1451697200536728, + 0.05980062484741211, + 0.36935144662857056, + 0.3179796040058136, + 0.063559390604496, + 0.14135988056659698, + -0.18995751440525055, + -0.19069449603557587, + -0.25539082288742065, + 0.13059617578983307, + 0.50597083568573, + -0.026443609967827797, + -0.09107254445552826, + 0.0028959426563233137, + 0.34475359320640564, + 0.05627785995602608, + -0.17894062399864197, + -0.5148047804832458, + -0.058175645768642426, + -0.0091350506991148, + 0.21075783669948578, + -0.07000023871660233, + -0.024535659700632095, + -0.34298086166381836, + 0.1603182703256607, + -0.10686243325471878, + -0.517955482006073, + -0.4204992353916168, + 0.3462347984313965, + 0.23554304242134094, + 0.03379710391163826, + 0.024035224691033363, + -0.20123091340065002, + -0.19475634396076202, + 0.02937142364680767, + 0.11771070212125778, + 0.4681134521961212, + 0.21978716552257538, + -0.11360656470060349, + -0.010257278569042683, + -0.32053494453430176, + -0.18390873074531555, + 0.0549912266433239, + 0.31058645248413086, + 0.06608651578426361, + 0.15125994384288788, + 0.5382686853408813, + -0.009786456823348999, + -0.05269967392086983, + 0.8227816820144653, + -0.48103412985801697, + 0.2065214067697525, + 0.010088504292070866, + 0.31602874398231506, + 0.02979358099400997, + -0.37584835290908813, + 0.1191294714808464, + 0.3830339014530182, + -0.25801700353622437, + 0.645388662815094, + 0.22943297028541565, + -0.1792154163122177, + -0.07256896793842316, + -0.232699915766716, + 0.4844439625740051, + 0.22519274055957794, + 0.1476229578256607, + -0.19796110689640045, + -0.3219866156578064, + -0.3986318111419678, + 0.25882309675216675, + -0.2505650818347931, + -0.34616416692733765, + -0.10109169036149979, + 0.059624962508678436, + 0.12354503571987152, + -0.14813004434108734, + 0.3331802189350128, + 0.12046253681182861, + -0.06728184223175049, + -0.3057446777820587, + -0.40206125378608704, + -0.0195672158151865, + -0.0047930097207427025, + 0.8805016279220581, + 0.006117147859185934, + -0.22313667833805084, + 0.007776894606649876, + 0.09404511004686356, + -0.2128940373659134, + 0.19451236724853516, + -0.02685682103037834, + -0.13765671849250793, + -0.4301077425479889, + 0.3178205192089081, + 0.1659836769104004, + -0.3222659230232239, + -0.12026584893465042, + -0.0805409625172615, + -0.04602634906768799, + 0.10385092347860336, + -0.11045651882886887, + 0.23248018324375153, + 0.3587457835674286, + -0.13853533565998077, + 0.034105539321899414, + -0.32961374521255493, + -0.1869012862443924, + 0.19477489590644836, + 0.37288737297058105, + 0.08484739065170288, + -0.33075055480003357, + -0.2734149396419525, + -0.5212315917015076, + 0.2912118434906006, + -0.5846805572509766, + -0.06435152143239975, + 0.12771162390708923, + 0.05220737308263779, + -0.24137623608112335, + 0.257464200258255, + 0.06223537400364876, + -0.04959791898727417, + -0.13453152775764465, + 0.31796786189079285, + 0.5243514776229858, + -0.3719533085823059, + 0.3910529613494873, + -0.19191911816596985, + 0.16935834288597107, + 0.17208360135555267, + -0.36385399103164673, + 0.20567388832569122, + -0.32839956879615784 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_057.json b/src/benchmark/output/results/results_graph_057.json new file mode 100644 index 0000000..1d6e27c --- /dev/null +++ b/src/benchmark/output/results/results_graph_057.json @@ -0,0 +1,792 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 72-year-old woman with a history of small cell lung cancer (SCLC).\n\n**Initial Presentation:**\nThe patient presented with progressive involuntary writhing movements in her hands and lower extremities over the past 3 months. This symptomatology was documented as part of her clinical data, including a history of progressive worsening (P3M) and associated symptoms such as involuntary writhing movements.\n\n**Diagnostic Workup:**\nFollowing the patient's presentation, a comprehensive diagnostic workup was conducted, which included imaging studies (Brain MRI and CT), electroencephalogram (EEG), and laboratory tests. The results of these studies were negative for hemorrhage or lesions on the red nucleus or midbrain, seizure activity, and abnormal electrolyte levels.\n\n**Treatment Initiation:**\nDespite the initial negative diagnostic workup, the patient's symptoms worsened, prompting further evaluation and treatment initiation. A ceruloplasmin test was conducted, which revealed a negative result. Subsequent laboratory tests showed positive anti-Hu antibodies at a titer of 1:960, indicating paraneoplastic syndrome.\n\n**Treatment Regimen:**\nThe patient received a treatment regimen consisting of diazepam, primidone, and pramipexole, with the goal of managing her symptoms. However, despite this treatment, the patient's symptoms continued to worsen, leading to hospitalization.\n\n**Intravenous Immunoglobulin (IVIG) Therapy:**\nAs part of her treatment regimen, the patient received IVIG for 4 days. This therapy was aimed at reducing the severity of her paraneoplastic syndrome.\n\n**New Symptoms and Imaging Findings:**\nFollowing the patient's discharge from the hospital, she presented to the emergency department with nausea and vomiting without new abnormal movements or neurologic symptoms. Repeat imaging studies revealed a 3.3 x 2.3 cm mass in the left cerebellar region, involving the left cerebellar peduncle.\n\n**Treatment of New Symptoms:**\nThe patient underwent further evaluation and treatment for her new symptoms. Laboratory tests showed positive anti-Hu antibodies, indicating continued paraneoplastic syndrome.\n\n**Current Status:**\nAt this time, the patient is currently under observation with ongoing management of her paraneoplastic syndrome. The patient's symptoms have improved since the initiation of IVIG therapy, but she continues to experience discomfort and disrupted sleep due to the frequency of her movements.\n\nIn conclusion, this 72-year-old woman with a history of small cell lung cancer presented with progressive involuntary writhing movements in her hands and lower extremities. Despite an initial negative diagnostic workup, further evaluation and treatment initiation revealed paraneoplastic syndrome, which was managed with IVIG therapy. However, new symptoms and imaging findings have necessitated ongoing management and observation.", + "bertscore": { + "precision": 0.7369856834411621, + "recall": 0.736884355545044, + "f1": 0.736935019493103 + }, + "bleu": 0.13227885704263823, + "rouge1": 0.4652049571020019, + "rougeL": 0.2421353670162059, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 6, + "edge_count": 5, + "avg_in_degree": 0.8333333333333334, + "density": 0.16666666666666666 + }, + "trajectory_embedding": [ + 0.10924185812473297, + 0.10171635448932648, + -0.130819171667099, + 0.11970636993646622, + 0.01621156930923462, + -0.025944743305444717, + 0.059883225709199905, + 0.19405730068683624, + 0.5056430101394653, + -0.3832123875617981, + -0.28973308205604553, + 0.21129187941551208, + -0.575080156326294, + -0.07535974681377411, + -0.27020901441574097, + -0.11037592589855194, + 0.01244857907295227, + 0.24032163619995117, + -0.05925019457936287, + -0.07463321834802628, + -0.3116808831691742, + 0.09356198459863663, + -0.4920731484889984, + -0.0821610540151596, + 0.04886844754219055, + 0.052564311772584915, + 0.3352467715740204, + 0.6847864985466003, + 0.24349327385425568, + 0.18328168988227844, + 0.1138065829873085, + 0.0029223919846117496, + -0.18558859825134277, + -0.10630349069833755, + -0.10665483772754669, + 0.30981841683387756, + 0.30020251870155334, + 0.41428762674331665, + -0.11225412040948868, + -0.0755331888794899, + -0.18469664454460144, + 0.11992812156677246, + 0.7719197869300842, + 0.2542802393436432, + 0.44182854890823364, + -0.6720637679100037, + -0.0040540993213653564, + 0.5885321497917175, + -0.29807180166244507, + -0.13491535186767578, + 0.1668306291103363, + 0.6660178899765015, + 0.498084157705307, + -0.24175158143043518, + 0.36294180154800415, + -0.1543881893157959, + -0.1818050891160965, + -0.16917678713798523, + -0.12515181303024292, + 0.0024065792094916105, + 0.05014798790216446, + -0.13257186114788055, + 0.2776688039302826, + 0.10028089582920074, + -0.03562074154615402, + -0.22122779488563538, + -0.20439191162586212, + -0.01183529756963253, + -0.003177095903083682, + -0.28868287801742554, + -0.24049349129199982, + -0.31077319383621216, + -0.16211707890033722, + 0.03357764333486557, + 0.1027599573135376, + -0.11970771849155426, + 0.35485219955444336, + -0.12445580959320068, + -0.0009727656724862754, + -0.07024397701025009, + 0.12669575214385986, + 0.0821976512670517, + -0.16544020175933838, + 0.23085010051727295, + -0.21088024973869324, + 0.14472916722297668, + -0.07828816771507263, + -0.09991832822561264, + -0.23807764053344727, + 0.35479438304901123, + 0.03755633160471916, + -0.19433608651161194, + 0.03802541643381119, + -0.17530657351016998, + 0.07252204418182373, + 0.017057236284017563, + 0.2504293620586395, + 0.20435366034507751, + 1.0451838970184326, + -0.03581312671303749, + 0.1911657750606537, + 0.1659659892320633, + 0.35480284690856934, + -0.04771328717470169, + 0.5017708539962769, + -0.21934874355793, + 0.13821174204349518, + -0.6209023594856262, + 0.06451758742332458, + 0.2161007672548294, + -0.08655419945716858, + -0.23141026496887207, + 0.16088911890983582, + -0.43194857239723206, + -0.05408357456326485, + 0.081070676445961, + -0.09388317167758942, + -0.008918779902160168, + 0.13580255210399628, + -0.34047308564186096, + -0.03758281469345093, + -0.2535480558872223, + 0.35616686940193176, + 0.03771355748176575, + -0.5673664808273315, + -0.09514494985342026, + -0.09447282552719116, + 0.24392597377300262, + -0.12477197498083115, + 0.3335886299610138, + -0.4272153377532959, + 0.02771768346428871, + -0.15457110106945038, + 0.22193880379199982, + -0.02806141972541809, + 0.23601441085338593, + -0.5588722229003906, + 0.29311853647232056, + -1.1137664318084717, + 0.34766387939453125, + -0.34928980469703674, + -0.06753065437078476, + 0.07564837485551834, + -0.7035880088806152, + -0.17115411162376404, + -0.16743209958076477, + -0.002408078406006098, + 0.006516927387565374, + -0.00483356136828661, + 0.08675999939441681, + -0.21628780663013458, + -0.13183407485485077, + 0.2756427526473999, + 0.26390689611434937, + 0.022414937615394592, + 0.05928945541381836, + 0.09964289516210556, + 0.520445704460144, + 0.18720769882202148, + -0.07169397175312042, + -0.06730888038873672, + 0.32805222272872925, + -0.08635339885950089, + -0.011068016290664673, + 0.015680933371186256, + -0.7204256653785706, + 0.080217145383358, + -0.2689545452594757, + -0.020941833034157753, + 0.11111952364444733, + -0.06658010184764862, + 0.11819498240947723, + -0.18308529257774353, + 0.4973403811454773, + 0.32610753178596497, + 0.5459386706352234, + -0.10167711973190308, + 0.02111263945698738, + 0.3829290270805359, + 0.03673028200864792, + 0.09797900915145874, + -0.23603442311286926, + 0.5699781179428101, + 0.17996710538864136, + -0.22703132033348083, + 0.1916649043560028, + 0.2447470724582672, + -0.07066328823566437, + -0.3557664155960083, + -0.10733211040496826, + 0.4915229380130768, + -0.2789129614830017, + 0.3551129698753357, + -0.17333592474460602, + 0.10135761648416519, + 0.20426654815673828, + -0.2620519995689392, + -0.09011366963386536, + 0.061963796615600586, + -0.1320790946483612, + 0.42120522260665894, + 0.06595773994922638, + -0.20556345582008362, + 0.06127799674868584, + 0.04491905868053436, + -0.04729349911212921, + 0.1130501851439476, + 0.07470438629388809, + 0.024166971445083618, + 0.028589803725481033, + -0.15762746334075928, + 0.2798975110054016, + 0.09849324077367783, + 0.16199560463428497, + 0.11564649641513824, + -0.17860059440135956, + 0.17151932418346405, + -0.11540389060974121, + -0.14117911458015442, + 0.07506893575191498, + -0.1215183362364769, + -0.2226943075656891, + 0.1044890433549881, + -0.06423553824424744, + -0.3824222981929779, + 0.3074544370174408, + 0.26847100257873535, + 0.23667578399181366, + 0.10540620982646942, + 0.06851553916931152, + 0.02549104019999504, + -0.3455931544303894, + 0.3040311634540558, + -0.23826810717582703, + -0.25523293018341064, + -0.37781211733818054, + 0.18964362144470215, + -0.19270072877407074, + 0.03476959466934204, + 0.30701756477355957, + 0.11215607821941376, + -0.16327911615371704, + 0.04833440110087395, + -0.28519898653030396, + -0.012807989493012428, + -0.3638160228729248, + -0.0820334330201149, + 0.41104722023010254, + 0.12516364455223083, + 0.27007919549942017, + 0.04506196081638336, + -0.1453045904636383, + 0.2996339499950409, + -0.19137369096279144, + -0.2901274263858795, + -0.43721804022789, + -0.03322502225637436, + -0.04297659918665886, + -0.4425579905509949, + 0.2408432513475418, + -0.07041382044553757, + -0.18270032107830048, + 0.19883789122104645, + -0.32066163420677185, + -0.23315384984016418, + -0.13152053952217102, + 0.13040705025196075, + 0.08472712337970734, + -0.3067662715911865, + -0.051268987357616425, + -0.29373687505722046, + -0.11089809238910675, + -0.10499675571918488, + -0.06456374377012253, + 0.046978116035461426, + 0.12931755185127258, + -0.23270253837108612, + 0.14660370349884033, + 0.1452331244945526, + -0.3829244077205658, + -0.45727062225341797, + 0.17210106551647186, + -0.30094456672668457, + 0.3951161503791809, + 0.056366223841905594, + 0.31242212653160095, + 0.28175657987594604, + 0.022277379408478737, + 0.009101887233555317, + 0.4218485355377197, + 0.4428749084472656, + -0.03245127946138382, + 0.08035583794116974, + -0.023733804002404213, + 0.06428305804729462, + 0.06078559160232544, + -0.45504647493362427, + 0.3633532226085663, + -0.26096194982528687, + 0.07054846733808517, + 0.1963920146226883, + 0.3282721936702728, + 0.12592904269695282, + -0.47781902551651, + -0.23236434161663055, + 0.3812021315097809, + 0.11216072738170624, + 0.11663460731506348, + 0.0758281797170639, + 0.2232145369052887, + 0.5459354519844055, + -0.11372901499271393, + -0.06148464232683182, + 0.14221373200416565, + -0.16324682533740997, + -0.09225545823574066, + 0.030035067349672318, + 0.13837756216526031, + 0.2911422848701477, + 0.021378466859459877, + -0.33142152428627014, + 0.24871110916137695, + -0.22250576317310333, + -0.1701701283454895, + -0.22141289710998535, + -0.10232319682836533, + 0.12954868376255035, + -0.026307925581932068, + 0.20491039752960205, + -0.1831112653017044, + 0.007430071942508221, + 0.4381527304649353, + -0.16701658070087433, + -0.13099589943885803, + 0.24413220584392548, + 0.08622002601623535, + -0.39607468247413635, + 0.4597998559474945, + -0.14279277622699738, + -0.0346023254096508, + 0.29701265692710876, + -0.17324769496917725, + -0.043102048337459564, + -0.054909657686948776, + 0.22552864253520966, + -0.14389392733573914, + -0.07062119245529175, + -0.05912753939628601, + -0.03551813215017319, + 0.07077666372060776, + 0.5788582563400269, + 0.1928655207157135, + 0.13534362614154816, + 0.4143311381340027, + 0.015823470428586006, + -0.2373960018157959, + 0.017855782061815262, + -0.018001267686486244, + 0.2660100758075714, + -0.487525075674057, + -0.18977627158164978, + -0.2712238132953644, + 0.19840869307518005, + 0.05640114098787308, + -0.1632021814584732, + 0.08239136636257172, + 0.14751631021499634, + -0.04571714252233505, + -0.07106632739305496, + 0.4161146283149719, + 0.1989745795726776, + -0.17261509597301483, + 0.48750025033950806, + 0.07943093776702881, + -0.09917481988668442, + 0.15923389792442322, + -0.013997070491313934, + 0.22025816142559052, + -0.16151364147663116, + -0.3623410761356354, + -0.4084945619106293, + -0.003943534102290869, + -0.1610366404056549, + -0.1940363645553589, + -0.12663009762763977, + -0.15365809202194214, + 0.05830683186650276, + -0.040886037051677704, + 0.21090281009674072, + 0.015886735171079636, + 0.24767859280109406, + 0.03268742188811302, + 0.6291698217391968, + -0.013198191300034523, + -0.2675228714942932, + -0.07097052037715912, + -0.126922607421875, + 0.3221951127052307, + -0.3570408821105957, + 0.04229829087853432, + -0.05516160652041435, + 0.3316287398338318, + -0.11540138721466064, + -0.12417104095220566, + -0.005435542203485966, + 0.028523052111268044, + -0.092466339468956, + -0.5387811064720154, + 0.0020402551162987947, + -0.09519001096487045, + 0.047684360295534134, + 0.006166079547256231, + 0.1952669322490692, + -0.16802415251731873, + -0.19332680106163025, + 0.05349377915263176, + 0.1451374590396881, + 0.038480713963508606, + -0.1586594432592392, + 0.10967016220092773, + 0.16126909852027893, + 0.11323635280132294, + 0.35680216550827026, + -0.20086875557899475, + 0.11082224547863007, + 0.13503527641296387, + -0.3414280116558075, + 0.07849792391061783, + -0.11547739803791046, + -0.25565358996391296, + -0.10601426661014557, + 0.05788467451930046, + 0.20199593901634216, + -0.028099114075303078, + 0.12550656497478485, + -0.06965185701847076, + 0.05969526618719101, + -0.1594017595052719, + -0.04188672453165054, + 0.5845794081687927, + 0.08505809307098389, + 0.2622690200805664, + -0.09211146086454391, + -0.5003320574760437, + -0.2893083393573761, + -0.017624741420149803, + -0.4128602147102356, + -0.03293060511350632, + 0.04344021901488304, + -0.1683373749256134, + -0.06854351609945297, + 0.07929714024066925, + 0.013918918557465076, + 0.16084237396717072, + 0.31532031297683716, + -0.029086386784911156, + -0.026308858767151833, + 0.034654710441827774, + -0.3115904927253723, + 0.039660967886447906, + -0.32543450593948364, + -0.4561700224876404, + -0.2658217251300812, + 0.2564217448234558, + 0.17218925058841705, + -0.1207721084356308, + 0.19912724196910858, + 0.03150946646928787, + -0.1556633859872818, + -0.4796765446662903, + 0.059758562594652176, + -0.12046198546886444, + 0.5264169573783875, + 0.04045654460787773, + -0.07133637368679047, + 0.20169410109519958, + -0.1630585938692093, + 0.03493889048695564, + 0.30844634771347046, + 0.22780899703502655, + 0.20997822284698486, + 0.21702814102172852, + 0.16414983570575714, + 0.5044440031051636, + 0.1691654622554779, + 0.056308262050151825, + 0.2018394023180008, + -0.007832502946257591, + -0.04771144688129425, + -0.19423215091228485, + -0.21489115059375763, + 0.2868252396583557, + -0.25526708364486694, + 0.10494992882013321, + 0.08159781992435455, + 0.24737879633903503, + -0.3952074348926544, + -0.2143787443637848, + -0.16885899007320404, + -0.06467990577220917, + -0.1502266824245453, + -0.23753578960895538, + 0.038168780505657196, + -0.13763763010501862, + -0.22113139927387238, + -0.02623211219906807, + 0.2641030550003052, + 0.2154160737991333, + 0.22561192512512207, + 0.057998210191726685, + -0.2809911370277405, + -0.29116445779800415, + 0.15582136809825897, + 0.4329434037208557, + 0.0008528798935003579, + -0.19649764895439148, + -0.10904517024755478, + 0.10536422580480576, + 0.4596944749355316, + -0.20153728127479553, + -0.19132693111896515, + -0.043119024485349655, + 0.0484551265835762, + -0.07380412518978119, + 0.21267685294151306, + 0.13177742063999176, + 0.06947487592697144, + -0.4011216163635254, + 0.18024425208568573, + -0.06341172754764557, + -0.21628275513648987, + 0.23752084374427795, + -0.34450703859329224, + -0.4729718267917633, + -0.06155691668391228, + 0.30037394165992737, + 0.0017974793445318937, + 0.018184786662459373, + -0.03956688567996025, + 0.3134695589542389, + -0.013118351809680462, + -0.03399385139346123, + 0.1512022465467453, + -0.6668116450309753, + -0.07026197016239166, + 0.11100264638662338, + -0.09794410318136215, + 0.19721199572086334, + -0.04173459857702255, + 0.08590853214263916, + 0.46454310417175293, + 0.051332391798496246, + -0.2951541543006897, + 0.13062778115272522, + 0.3630453944206238, + 0.339113712310791, + -0.4013586938381195, + -10.761629104614258, + 0.10128474235534668, + -0.21862781047821045, + 0.5836707353591919, + -0.054762136191129684, + 0.21005213260650635, + -0.146541029214859, + 0.026764657348394394, + 0.06164403632283211, + 0.13031426072120667, + -0.19539456069469452, + 0.053036607801914215, + 0.4151616096496582, + 0.14065305888652802, + 0.054483991116285324, + 0.12797380983829498, + -0.1742629110813141, + 0.27107375860214233, + 0.050742555409669876, + 0.2400476038455963, + -0.004814263433218002, + 0.32790714502334595, + -0.2093295156955719, + 0.15674369037151337, + 0.07109211385250092, + -0.3802664875984192, + -0.3300723731517792, + 0.39757785201072693, + 0.20597624778747559, + -0.4995551109313965, + 0.22039131820201874, + 0.10235987603664398, + -0.20480772852897644, + -0.11565124988555908, + -0.04234688729047775, + -0.2751874625682831, + -0.19690366089344025, + 0.04203527420759201, + 0.012910130433738232, + -0.1736120879650116, + 0.09358257800340652, + -0.06102636456489563, + 0.1476498544216156, + 0.3511073887348175, + -0.21687066555023193, + -0.38187700510025024, + -0.09858687222003937, + -1.541949987411499, + 0.14928197860717773, + 0.27913179993629456, + 0.5910792946815491, + -0.09530351310968399, + 0.042550165206193924, + 0.31998467445373535, + -0.2935808002948761, + 0.17877762019634247, + -0.42522019147872925, + -0.1002252846956253, + 0.24506831169128418, + -0.012028349563479424, + -0.01161621231585741, + -0.06592228263616562, + 0.3877994418144226, + -0.33846354484558105, + -0.34534090757369995, + 0.2023712396621704, + -0.042639654129743576, + 0.03063664212822914, + -0.29227501153945923, + -0.3968042731285095, + -0.41985684633255005, + -0.13246391713619232, + 0.18694981932640076, + -0.046354345977306366, + 0.5806816220283508, + 0.03690534830093384, + -0.443873792886734, + 0.26182347536087036, + -0.24293017387390137, + 0.5143827199935913, + 0.20112280547618866, + -0.28122812509536743, + 0.14041480422019958, + -0.17839106917381287, + -0.11722562462091446, + -0.1712552309036255, + 0.19616204500198364, + 0.43894657492637634, + -0.13646912574768066, + 0.004487755708396435, + 0.02974642440676689, + 0.05980997160077095, + -0.1670512855052948, + 0.04580686613917351, + -0.420910507440567, + -0.001071929931640625, + 0.11478010565042496, + -0.11331496387720108, + 0.12373204529285431, + 0.09004705399274826, + -0.17702852189540863, + -0.019123854115605354, + -0.1288100928068161, + -0.37169039249420166, + -0.4662720561027527, + 0.37442561984062195, + 0.18873855471611023, + 0.14151960611343384, + 0.23636317253112793, + 0.13905660808086395, + -0.010603433474898338, + 0.17766110599040985, + 0.4484413266181946, + 0.4169641137123108, + 0.11436674743890762, + 0.013595366850495338, + -0.045982446521520615, + -0.17194116115570068, + -0.19342041015625, + 0.20780906081199646, + 0.40196728706359863, + -0.25039905309677124, + 0.04570662975311279, + 0.5544910430908203, + 0.07123783230781555, + -0.11022879928350449, + 1.089414358139038, + -0.29390278458595276, + 0.22609181702136993, + -0.12128780037164688, + 0.2755132019519806, + 0.013648644089698792, + -0.32570546865463257, + 0.07642745971679688, + 0.2736797332763672, + -0.4553698003292084, + 0.6472108364105225, + 0.3447061777114868, + -0.33788084983825684, + 0.08976311981678009, + -0.36027565598487854, + 0.37658625841140747, + 0.231145977973938, + 0.18201665580272675, + -0.148493230342865, + -0.3001708984375, + -0.34605124592781067, + 0.23437118530273438, + -0.34665608406066895, + -0.1837950497865677, + -0.22869136929512024, + 0.0028280257247388363, + -0.058978475630283356, + -0.05847141891717911, + 0.3172945976257324, + 0.05248671770095825, + -0.09966695308685303, + -0.1571982353925705, + -0.4286063313484192, + -0.19316384196281433, + -0.18204014003276825, + 0.7265452146530151, + 0.16682782769203186, + -0.14364638924598694, + -0.04676531255245209, + 0.413640558719635, + -0.08753673732280731, + 0.14306727051734924, + 0.11643042415380478, + 0.06543125957250595, + -0.25645750761032104, + 0.13066579401493073, + 0.14353647828102112, + -0.27806705236434937, + -0.1847536563873291, + -0.34352177381515503, + -0.0021650255657732487, + -0.03112264908850193, + -0.05791633576154709, + 0.4012259542942047, + 0.21817323565483093, + 0.08860315382480621, + 0.122983418405056, + -0.14338712394237518, + 0.12788084149360657, + 0.10928910970687866, + 0.2956147789955139, + 0.1792273223400116, + -0.4059372842311859, + -0.23331065475940704, + -0.37941601872444153, + 0.11205389350652695, + -0.4454869329929352, + 0.0583542101085186, + 0.03873931244015694, + 0.21176092326641083, + -0.30576521158218384, + 0.26758909225463867, + -0.1262715756893158, + -0.08964912593364716, + -0.17794224619865417, + 0.21173910796642303, + 0.3451806902885437, + -0.28578510880470276, + 0.0015843205619603395, + -0.13235023617744446, + 0.23455262184143066, + 0.15019331872463226, + -0.2953014373779297, + 0.20367667078971863, + -0.06641408056020737 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_058.json b/src/benchmark/output/results/results_graph_058.json new file mode 100644 index 0000000..c547294 --- /dev/null +++ b/src/benchmark/output/results/results_graph_058.json @@ -0,0 +1,792 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 65-year-old man who presented to the hospital with suspected uveitis of the right eye. He experienced right ocular pain and blurred vision for approximately 1 month prior to presentation.\n\n**Timeline of Diagnoses:**\n\n* **Suspected Uveitis:** The patient was referred to the hospital with suspected uveitis of the right eye, which was diagnosed as a suspected case of uveitis (code C0042095).\n* **Small Cell Lung Cancer (SCLC):** Four months prior to presentation, the patient was diagnosed with SCLC (code C0007106) and had developed right cerebellar metastasis and invasion.\n* **Metastasis:** The patient also had a diagnosis of metastasis (code C0242393), which was active at the time of presentation.\n\n**Timeline of Treatments:**\n\n* **Topical Medications:** Following SCLC diagnosis, the patient started therapy with topical 0.005% latanoprost, 1.0% brinzolamide, and 0.5% timolol maleate.\n* **Oral Acetazolamide:** The patient also took oral acetazolamide at a dose of 500 mg/day.\n* **Intravenous Mannitol:** Due to high IOP and pronounced nausea, the patient required intravenous administration of 200 mL of 20% hypertonic mannitol every 2-3 days for five administrations.\n\n**Timeline of Outcomes:**\n\n* **Iris Metastasis:** Anterior chamber fluid cytology revealed iris metastasis from SCLC, consistent with bronchoalveolar lavage cytology results.\n* **Neovascular Glaucoma:** The patient developed neovascular glaucoma (code C0271198), which was treated with a single intravitreal injection of 2 mg (0.05 mL of 40 mg/mL) aflibercept OD.\n* **Resolution of Symptoms:** Five days post-aflibercept injection, the patient's iris tumor size and iris neovascularization decreased, IOP measured at 18 mm Hg, and symptoms such as ocular pain and nausea were relieved.\n\n**Conclusion:**\nThe patient was diagnosed with suspected uveitis and SCLC, which led to the development of right cerebellar metastasis and invasion. Following diagnosis, the patient received topical medications and oral acetazolamide, as well as intravenous mannitol due to high IOP and nausea. The patient also developed iris metastasis from SCLC, which was treated with an intravitreal injection of aflibercept. Ultimately, the patient's symptoms resolved following treatment, and their IOP returned to normal.", + "bertscore": { + "precision": 0.7505869269371033, + "recall": 0.845012903213501, + "f1": 0.7950058579444885 + }, + "bleu": 0.06704047393594473, + "rouge1": 0.39263803680981596, + "rougeL": 0.20449897750511245, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 7, + "edge_count": 6, + "avg_in_degree": 0.8571428571428571, + "density": 0.14285714285714285 + }, + "trajectory_embedding": [ + 0.10041718930006027, + 0.16403163969516754, + -0.2795267105102539, + 0.20759916305541992, + 0.1098250150680542, + 0.12031718343496323, + 0.02523813582956791, + 0.28508585691452026, + 0.4031936228275299, + -0.14178399741649628, + -0.1515788584947586, + 0.027539696544408798, + -0.39865249395370483, + -0.16108302772045135, + -0.1848643273115158, + 0.29761239886283875, + -0.348704069852829, + 0.19526958465576172, + -0.07590274512767792, + -0.18397021293640137, + -0.1955096572637558, + 0.10713893175125122, + -0.5743194222450256, + 0.00762562220916152, + 0.07806367427110672, + 0.02329537272453308, + 0.4958905577659607, + 0.8108068108558655, + 0.13331110775470734, + 0.3856915831565857, + 0.10080420225858688, + -0.09534323215484619, + 0.1747761070728302, + 0.1420178860425949, + -0.3017433285713196, + 0.1649470031261444, + 0.1394738256931305, + 0.22270822525024414, + -0.08839493989944458, + 0.0466955304145813, + -0.18056416511535645, + 0.039326999336481094, + 0.9210913777351379, + 0.380204439163208, + 0.4561716914176941, + -0.8226035237312317, + -0.14125052094459534, + 0.7079371213912964, + -0.36442047357559204, + -0.34494560956954956, + 0.2782876193523407, + 0.7064962387084961, + 0.6023497581481934, + -0.5169581770896912, + 0.27580752968788147, + -0.20440661907196045, + -0.1758495420217514, + -0.4039357602596283, + -0.21733525395393372, + 0.11375804990530014, + 0.048031169921159744, + -0.15035252273082733, + 0.5047577619552612, + -0.3279033303260803, + -0.0837758257985115, + -0.20585878193378448, + -0.29636767506599426, + 0.0630626529455185, + 0.10342448204755783, + -0.16298635303974152, + -0.18039628863334656, + -0.4393019378185272, + -0.039508156478405, + -0.022983746603131294, + 0.07178163528442383, + -0.032513707876205444, + 0.45633506774902344, + -0.1324375569820404, + 0.24564631283283234, + 0.15320630371570587, + -0.1691569834947586, + -0.14381353557109833, + -0.2672562897205353, + 0.33864641189575195, + -0.21684782207012177, + -0.04640193656086922, + -0.15535108745098114, + -0.16606655716896057, + -0.3843379318714142, + 0.25596901774406433, + 0.10141774266958237, + -0.5092669725418091, + 0.1174798384308815, + -0.23468850553035736, + -0.08472394943237305, + 0.13617955148220062, + 0.38971585035324097, + 0.073185496032238, + 1.0961822271347046, + 0.006318185944110155, + 0.08026591688394547, + -0.10738039761781693, + 0.1991339772939682, + -0.08866874128580093, + 0.32724955677986145, + -0.05121637135744095, + 0.29665762186050415, + -0.6044756174087524, + 0.3382262587547302, + 0.4875820279121399, + 0.019187500700354576, + -0.2636858820915222, + 0.004726205486804247, + -0.4449402987957001, + 0.22213730216026306, + 0.10275395959615707, + 0.2415297031402588, + 0.22994555532932281, + 0.19549433887004852, + -0.22323870658874512, + -0.2822403609752655, + -0.09365540742874146, + 0.2984512746334076, + 0.13506314158439636, + -0.5046548247337341, + -0.02684345841407776, + -0.011541790328919888, + -0.05225741118192673, + 0.028683850541710854, + 0.07437215745449066, + -0.600497305393219, + -0.31889280676841736, + -0.09339629858732224, + -0.06603451073169708, + -0.09583941847085953, + 0.28762468695640564, + -0.27787861227989197, + 0.04449940845370293, + -0.9695418477058411, + 0.46700772643089294, + -0.4160101115703583, + -0.23633554577827454, + 0.05892905220389366, + -0.5885133147239685, + -0.2476823627948761, + 0.02767055295407772, + -0.26925036311149597, + 0.2188478261232376, + -0.1678793579339981, + -0.09294655174016953, + -0.1801975518465042, + -0.20275795459747314, + 0.31416985392570496, + 0.5441374182701111, + 0.08812812715768814, + -0.01153175812214613, + 0.07337536662817001, + 0.4216914176940918, + 0.11574424803256989, + -0.005643226206302643, + 0.005734612699598074, + 0.474221795797348, + 0.09835516661405563, + 0.1073085218667984, + -0.2133936583995819, + -0.46663352847099304, + -0.058094970881938934, + -0.2534818947315216, + 0.016529904678463936, + 0.15584397315979004, + -0.161490336060524, + 0.09208517521619797, + -0.47234630584716797, + 0.6378527283668518, + -0.015818390995264053, + 0.41032347083091736, + 0.12255750596523285, + 0.22990475594997406, + 0.2200852334499359, + 0.11963337659835815, + 0.11585784703493118, + -0.31792518496513367, + 0.5930489301681519, + 0.3332863748073578, + -0.2891683578491211, + 0.32059064507484436, + 0.28325918316841125, + -0.014230446889996529, + -0.2977527976036072, + 0.26158007979393005, + 0.5521560311317444, + -0.3529055416584015, + 0.652664065361023, + -0.1373528391122818, + -0.1728714555501938, + 0.04082566499710083, + -0.15764185786247253, + -0.15343567728996277, + -0.2646167278289795, + 0.09915491193532944, + 0.2570823132991791, + 0.1207243800163269, + -0.49108362197875977, + -0.00643101567402482, + 0.20962728559970856, + -0.18279743194580078, + 0.011648275889456272, + -0.03136153891682625, + -0.04385334625840187, + 0.12048060446977615, + -0.1709427535533905, + 0.21749188005924225, + -0.09882985800504684, + 0.3577049672603607, + -0.1837451159954071, + -0.2879418730735779, + 0.2881632149219513, + 0.08363316208124161, + -0.17137077450752258, + 0.26506057381629944, + 0.029290663078427315, + -0.36454805731773376, + -0.12866325676441193, + 0.15853480994701385, + -0.4535687565803528, + 0.2786649763584137, + 0.12622858583927155, + 0.44672510027885437, + 0.029467377811670303, + 0.12455600500106812, + -0.1133221909403801, + -0.4155275225639343, + 0.12809564173221588, + -0.25739291310310364, + -0.07217598706483841, + -0.27480801939964294, + 0.3002417981624603, + 0.03192080929875374, + 0.24665726721286774, + 0.2297316938638687, + 0.08520597964525223, + -0.19582438468933105, + 0.1384952962398529, + -0.4201824367046356, + -0.1205417662858963, + -0.3906688988208771, + -0.017530908808112144, + 0.41854026913642883, + 0.10915219783782959, + 0.252002090215683, + 0.0836314707994461, + -0.2809872031211853, + 0.0017748773097991943, + 0.03664844483137131, + -0.5397785902023315, + -0.49708253145217896, + -0.08055763691663742, + 0.07724291831254959, + -0.7061089277267456, + 0.3303668200969696, + 0.014823630452156067, + -0.0594077967107296, + 0.0644952803850174, + -0.30018875002861023, + -0.2310188114643097, + 0.09281862527132034, + 0.12350153177976608, + 0.024037566035985947, + -0.40277978777885437, + -0.0954475998878479, + -0.22221671044826508, + -0.07398925721645355, + -0.23883147537708282, + -0.09598464518785477, + -0.08223473280668259, + -0.07746248692274094, + -0.46295422315597534, + 0.09221555292606354, + 0.1759498119354248, + -0.49284741282463074, + -0.024186333641409874, + 0.20977185666561127, + -0.18195722997188568, + 0.24573591351509094, + 0.027450472116470337, + 0.3664107620716095, + 0.20598594844341278, + 0.011668480932712555, + 0.12794210016727448, + 0.6198838353157043, + 0.4467492997646332, + -0.1977706104516983, + 0.10685566812753677, + 0.03377616032958031, + -0.12240961939096451, + -0.056370168924331665, + -0.44993844628334045, + 0.44212961196899414, + -0.057738158851861954, + 0.22612033784389496, + 0.13757000863552094, + 0.13319425284862518, + 0.06207533925771713, + -0.22648075222969055, + 0.0888129323720932, + 0.41969555616378784, + -0.054957617074251175, + 0.25432226061820984, + 0.18717195093631744, + 0.28349289298057556, + 0.26631268858909607, + -0.08723854273557663, + 0.06313345581293106, + 0.07292996346950531, + -0.06033144146203995, + -0.08807481825351715, + -0.15816712379455566, + 0.34383082389831543, + 0.35739484429359436, + -0.22502963244915009, + -0.38183164596557617, + -0.02932651899755001, + -0.1200883537530899, + -0.11626052111387253, + -0.4932703673839569, + -0.3131512701511383, + 0.031234068796038628, + -0.032915148884058, + 0.2359011024236679, + 0.06965795159339905, + 0.12502223253250122, + 0.20343017578125, + -0.3544941842556, + -0.0006578112370334566, + 0.12905487418174744, + -0.06337586045265198, + -0.3025466799736023, + 0.6170421838760376, + -0.23069091141223907, + 0.17346599698066711, + 0.31216856837272644, + -0.4809999167919159, + -0.004114418290555477, + 0.1488792449235916, + 0.2956516146659851, + -0.1504010111093521, + 0.13538554310798645, + -0.03822466358542442, + 0.08713611215353012, + -0.22196988761425018, + 0.43739309906959534, + 0.15887358784675598, + 0.20813827216625214, + 0.6209712028503418, + 0.22635720670223236, + -0.45009705424308777, + 0.08219941705465317, + -0.21065066754817963, + 0.29089826345443726, + -0.183850958943367, + -0.13900092244148254, + 0.028947381302714348, + 0.2071864902973175, + 0.05713606998324394, + -0.23042525351047516, + 0.19195768237113953, + 0.1781945675611496, + 0.17089605331420898, + -0.0964665412902832, + 0.45976585149765015, + 0.07470469921827316, + -0.1567397266626358, + 0.4935135841369629, + -0.1300264447927475, + -0.2707837224006653, + 0.2981880009174347, + -0.190780907869339, + 0.12305842339992523, + -0.0402815155684948, + -0.11382778733968735, + -0.27641811966896057, + 0.018526004627346992, + -0.05870174989104271, + -0.11839889734983444, + -0.025937693193554878, + -0.23458120226860046, + 0.21909745037555695, + -0.13899435102939606, + 0.23618271946907043, + -0.06603067368268967, + 0.19974969327449799, + 0.07700403034687042, + 0.31901755928993225, + -0.12268050760030746, + -0.23568452894687653, + -0.10156311839818954, + 0.026971271261572838, + -0.12070135027170181, + -0.4358535706996918, + 0.07480071485042572, + 0.023448223248124123, + 0.5045492053031921, + -0.012661376036703587, + 0.07035442441701889, + 0.22327475249767303, + 0.09235532581806183, + 0.02730543352663517, + -0.5230974555015564, + 0.007723282556980848, + 0.0411105714738369, + 0.209525465965271, + 0.013834276236593723, + 0.02702438458800316, + -0.38615337014198303, + -0.23450268805027008, + -0.023800691589713097, + -0.12751401960849762, + 0.015096604824066162, + -0.11797446012496948, + -0.30267247557640076, + 0.3926370441913605, + 0.4907875657081604, + 0.47941917181015015, + -0.38207104802131653, + 0.32497796416282654, + 0.017633095383644104, + -0.27593132853507996, + -0.07738243043422699, + -0.12500427663326263, + -0.47137734293937683, + -0.08334764093160629, + 0.26694732904434204, + 0.34297674894332886, + -0.02544955350458622, + -0.15372708439826965, + 0.06564154475927353, + -0.05159115791320801, + -0.21892593801021576, + -0.07687093317508698, + 0.42052561044692993, + 0.305806428194046, + 0.12244294583797455, + 0.054697029292583466, + -0.66656094789505, + -0.5231123566627502, + -0.21303100883960724, + -0.3570212721824646, + -0.047308970242738724, + 0.17589758336544037, + 0.09871701896190643, + -0.1677543818950653, + 0.014241858385503292, + -0.057800475507974625, + -0.07792984694242477, + 0.15997658669948578, + -0.11668568849563599, + 0.1364569365978241, + 0.14003828167915344, + -0.35516777634620667, + 0.004816029686480761, + -0.17901955544948578, + -0.3729376196861267, + -0.24852094054222107, + 0.019686492159962654, + 0.22973741590976715, + -0.25645262002944946, + -0.050704143941402435, + 0.17498578131198883, + -0.07733910530805588, + -0.1157073974609375, + -0.006170225795358419, + -0.2686651349067688, + 0.2657169699668884, + -0.02755497395992279, + 0.0026688033249229193, + 0.08871249109506607, + -0.12708884477615356, + -0.09305834770202637, + 0.02858908660709858, + 0.11492156982421875, + 0.4335777759552002, + 0.22233478724956512, + 0.09606070816516876, + 0.628285825252533, + -0.00989628303796053, + 0.037419553846120834, + 0.3874848186969757, + -0.031134530901908875, + -0.03362620994448662, + -0.4043872058391571, + -0.13321109116077423, + 0.06271658092737198, + -0.5610679984092712, + -0.2521840035915375, + 0.24107013642787933, + 0.25532981753349304, + -0.39696183800697327, + -0.482626736164093, + -0.06920278072357178, + 0.16279837489128113, + -0.21867868304252625, + -0.09064681828022003, + -0.019119279459118843, + -0.30069079995155334, + -0.37123823165893555, + -0.0014421002706512809, + 0.17836792767047882, + 0.3759138584136963, + 0.2757260799407959, + 0.17132163047790527, + -0.3433229625225067, + -0.24997194111347198, + 0.1832418441772461, + 0.32347890734672546, + 0.13070085644721985, + -0.043225497007369995, + -0.008223836310207844, + 0.15412108600139618, + 0.1260257512331009, + -0.05618427321314812, + -0.09029193967580795, + 0.010234138928353786, + 0.10688466578722, + 0.263703852891922, + 0.10123255103826523, + -0.027598079293966293, + 0.21482370793819427, + -0.4252282679080963, + 0.1372317522764206, + -0.1032986119389534, + -0.02943190559744835, + 0.2652200758457184, + -0.21811029314994812, + -0.6660507917404175, + -0.07716627418994904, + 0.25762999057769775, + -0.0887565016746521, + -0.25831279158592224, + 0.005112537182867527, + 0.3262178301811218, + -0.08803188055753708, + -0.14818570017814636, + -0.05959288403391838, + -0.5844441056251526, + -0.23379959166049957, + 0.1150628998875618, + -0.09193355590105057, + -0.2545396387577057, + 0.0032503593247383833, + 0.4723699390888214, + 0.5558490753173828, + 0.12659133970737457, + -0.0324685201048851, + 0.2723774015903473, + 0.4639137387275696, + 0.15715958178043365, + -0.41566944122314453, + -10.644660949707031, + -0.04599574953317642, + -0.46536940336227417, + 0.4767208993434906, + -0.1508106291294098, + 0.10612978041172028, + -0.17334119975566864, + 0.15423369407653809, + 0.1521361619234085, + 0.11525695025920868, + -0.05711393430829048, + -0.19742313027381897, + 0.44899699091911316, + 0.25928008556365967, + 0.1872165948152542, + 0.11855956166982651, + -0.29581326246261597, + 0.23597176373004913, + 0.24299927055835724, + 0.1197739690542221, + 0.2828510105609894, + 0.4070078432559967, + -0.2599063515663147, + 0.0003257649368606508, + -0.08927349001169205, + -0.3044043183326721, + -0.15762130916118622, + 0.6840715408325195, + 0.42402681708335876, + -0.30725622177124023, + -0.016202952712774277, + -0.08197290450334549, + -0.19935300946235657, + 0.29807421565055847, + -0.2754516303539276, + -0.12647520005702972, + -0.01349520031362772, + 0.44971445202827454, + 0.2516697347164154, + -0.2670213580131531, + 0.04679897427558899, + 0.10771608352661133, + 0.3937901556491852, + -0.024761242792010307, + -0.06425591558218002, + -0.5644456744194031, + -0.03474839776754379, + -1.5868219137191772, + 0.06359662860631943, + 0.35858410596847534, + 0.26808327436447144, + 0.13491086661815643, + 0.14424268901348114, + 0.33256885409355164, + -0.3431401252746582, + 0.07156246155500412, + -0.40173229575157166, + -0.11011780053377151, + 0.25587064027786255, + 0.2502792477607727, + -0.1445828676223755, + -0.1258247047662735, + 0.870843231678009, + 0.11872349679470062, + -0.4261038899421692, + 0.20092728734016418, + 0.04641024023294449, + -0.21494145691394806, + -0.4077056348323822, + -0.8497666120529175, + -0.5675711035728455, + -0.21539020538330078, + -0.16943106055259705, + -0.0538436584174633, + 0.22634756565093994, + 0.016039861366152763, + -0.08935464173555374, + 0.33645573258399963, + -0.15450774133205414, + 0.2500685155391693, + 0.337556928396225, + -0.23790578544139862, + 0.22384729981422424, + -0.2001974880695343, + -0.14057216048240662, + -0.04974738880991936, + 0.27764591574668884, + 0.4104287028312683, + 0.07933108508586884, + -0.04021089896559715, + 0.06024518236517906, + 0.36865201592445374, + 0.02312830463051796, + -0.07954209297895432, + -0.326101690530777, + -0.23009265959262848, + -0.07886116951704025, + -0.038400452584028244, + -0.0770130380988121, + 0.014276815578341484, + -0.18870556354522705, + 0.19454653561115265, + 0.04629876837134361, + -0.3219069838523865, + -0.7883215546607971, + 0.368009090423584, + 0.22121450304985046, + 0.17012536525726318, + 0.09880270063877106, + -0.24345663189888, + -0.09150123596191406, + 0.12991054356098175, + 0.354809045791626, + 0.37348055839538574, + 0.22603295743465424, + -0.0593147873878479, + -0.03411107510328293, + -0.2639525532722473, + -0.07682289928197861, + -0.03669959306716919, + 0.5184228420257568, + -0.12020094692707062, + 0.10377638787031174, + 0.6753701567649841, + 0.02318601869046688, + 0.025752868503332138, + 0.8616753220558167, + -0.29157528281211853, + 0.2159208208322525, + 0.07087916880846024, + 0.07478644698858261, + -0.16236983239650726, + -0.45543211698532104, + 0.29560616612434387, + 0.4486173093318939, + -0.502527117729187, + 0.6408544182777405, + 0.4320511817932129, + -0.35508808493614197, + -0.08008872717618942, + -0.39318323135375977, + 0.3356773257255554, + 0.21981756389141083, + 0.1836652010679245, + -0.0480940155684948, + -0.203811377286911, + -0.3586428463459015, + -0.016758834943175316, + -0.23378369212150574, + -0.3532119393348694, + -0.20010623335838318, + 0.07577543705701828, + 0.24250154197216034, + 0.012310410849750042, + 0.23225699365139008, + 0.25747427344322205, + 0.0837361067533493, + -0.4620650112628937, + -0.1670389473438263, + -0.12135634571313858, + 0.020845815539360046, + 0.7568926811218262, + 0.009003372862935066, + -0.050994813442230225, + 0.055693041533231735, + 0.11255991458892822, + -0.157039612531662, + 0.24380910396575928, + 0.10165450721979141, + -0.05614985153079033, + -0.262979656457901, + 0.21788235008716583, + 0.10048622637987137, + -0.21479080617427826, + -0.009746639057993889, + 0.014993974007666111, + 0.002477705478668213, + 0.29585355520248413, + -0.20001018047332764, + 0.013258202001452446, + 0.3338783085346222, + -0.05860629305243492, + 0.01137791108340025, + -0.14215227961540222, + -0.016694771125912666, + 0.20936046540737152, + 0.44907936453819275, + -0.05439732223749161, + -0.29521647095680237, + -0.11369256675243378, + -0.7047519683837891, + 0.20202748477458954, + -0.41014936566352844, + 0.04539225623011589, + 0.26661771535873413, + 0.15643148124217987, + -0.13941065967082977, + 0.12629172205924988, + 0.22594773769378662, + -0.01957302913069725, + -0.13286712765693665, + 0.28059548139572144, + 0.44471898674964905, + -0.3310451805591583, + 0.4087703227996826, + -0.12750519812107086, + 0.2447206676006317, + 0.12802754342556, + -0.3163151443004608, + -0.021892959251999855, + -0.2720976769924164 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_059.json b/src/benchmark/output/results/results_graph_059.json new file mode 100644 index 0000000..80df9f2 --- /dev/null +++ b/src/benchmark/output/results/results_graph_059.json @@ -0,0 +1,792 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 67-year-old man born in the United States. He has a significant occupational asbestos exposure history while working for a shipbuilding company. The patient denies any history of cigarette smoking or exposure to organic dusts, pet birds, or exotic pets.\n\n**Initial Presentation (Step 1):**\nIn June 2024, the patient presented to the Emergency Department with concerns of weight loss and abdominal distention over the past 4 weeks. He denied any alterations in bowel habits, melena, hematochezia, abdominal pain, nausea, vomiting, dysphagia, or odynophagia.\n\n**Physical Examination and Laboratory Findings (Step 2):**\nAfter initial presentation, the patient underwent multiple abdominal paracenteses, which revealed hazy yellow ascitic fluid with nucleated cells. The cell count was 589 cells/\u03bcL, with lymphocytes 87% and erythrocytes 1461 cells/\u03bcL.\n\n**Imaging Studies (Step 3):**\nA CT scan performed during this time showed massive ascites and a lung nodule.\n\n**Abdominal Paracentesis and Ascitic Fluid Analysis (Steps 4-5):**\nThe patient underwent multiple abdominal paracenteses, which revealed exudative process in the ascitic fluid. The first abdominal paracentesis results showed lactate dehydrogenase 763 IU/L, total protein 4.0 g/dL, albumin 1.7 g/dL, and serum albumin-ascites gradient (SAAG) 0.4 g/dL.\n\n**Repeat Ascitic Fluid Analysis and Abdominal Ultrasonography (Step 6):**\nA repeat ascitic fluid analysis revealed no growth on AFB smear, culture, or fungal culture. An abdominal ultrasonography performed during this time showed normal portal vein size and Doppler indices, with the spleen not enlarged.\n\n**Serum FibroTest-ActiTest (Step 7):**\nThe patient underwent a Serum FibroTest-ActiTest, which suggested no hepatic fibrosis (F0).\n\n**Diagnosis:**\nBased on the results of the various diagnostic tests and imaging studies, the patient was diagnosed with cirrhosis due to chronic liver disease.\n\n**Treatment:**\nNo specific treatment is mentioned in the provided data. However, it can be inferred that the patient may require ongoing management of his ascites and potential complications related to cirrhosis.\n\n**Outcome:**\nThe patient's condition appears to be stable at this point, with no further information provided on any changes or developments since the last update.", + "bertscore": { + "precision": 0.7324800491333008, + "recall": 0.7999362945556641, + "f1": 0.7647234797477722 + }, + "bleu": 0.03761262491128669, + "rouge1": 0.28633405639913234, + "rougeL": 0.16919739696312364, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 8, + "edge_count": 7, + "avg_in_degree": 0.875, + "density": 0.125 + }, + "trajectory_embedding": [ + 0.3212769627571106, + 0.027124296873807907, + 0.007639573886990547, + 0.1450214982032776, + 0.04273857921361923, + -0.0566130205988884, + 0.15015661716461182, + 0.13063287734985352, + 0.360310435295105, + -0.2895905375480652, + -0.29207170009613037, + 0.0069152191281318665, + -0.5160095691680908, + 0.030897781252861023, + -0.4960392117500305, + 0.0959697812795639, + 0.19705793261528015, + 0.3254237174987793, + 0.07715645432472229, + -0.21043089032173157, + -0.463147908449173, + 0.1879664957523346, + -0.37844499945640564, + -0.12864604592323303, + 0.1851418912410736, + -0.03530677780508995, + 0.34146028757095337, + 0.5455081462860107, + 0.17384392023086548, + 0.17564281821250916, + 0.2514132857322693, + 0.15975980460643768, + 0.036245182156562805, + 0.14230892062187195, + -0.09213109314441681, + 0.29905956983566284, + 0.2861369252204895, + 0.25377601385116577, + -0.16749906539916992, + 0.25536131858825684, + -0.13993358612060547, + 0.00023137591779232025, + 0.8482945561408997, + 0.2792898416519165, + 0.4952598512172699, + -0.5131751894950867, + -0.04887772351503372, + 0.5369172692298889, + -0.5956619381904602, + -0.14719735085964203, + 0.10004576295614243, + 0.8377113938331604, + 0.4221964180469513, + -0.1498866230249405, + 0.3760993182659149, + 0.020198799669742584, + -0.24073506891727448, + -0.32281923294067383, + -0.3462153673171997, + 0.19768309593200684, + 0.010837219655513763, + -0.06512635946273804, + -0.09095405042171478, + -0.025230765342712402, + -0.2317681759595871, + -0.06113087013363838, + -0.12202930450439453, + -0.04193533957004547, + -0.06680387258529663, + -0.3318430781364441, + -0.275201678276062, + -0.15793970227241516, + -0.4154232144355774, + 0.047505490481853485, + 0.1517646461725235, + -0.25239837169647217, + 0.290303498506546, + -0.07159022986888885, + 0.06352033466100693, + 0.02245129644870758, + 0.038698140531778336, + 0.0609905906021595, + 0.2149471938610077, + 0.23555351793766022, + -0.4736027419567108, + 0.14000040292739868, + -0.07614503055810928, + 0.009592264890670776, + -0.2430189698934555, + 0.26903069019317627, + 0.35744327306747437, + -0.15594348311424255, + 0.09219282865524292, + -0.15058182179927826, + 0.058577582240104675, + -0.01003439724445343, + 0.09935586899518967, + 0.36904746294021606, + 0.8996005654335022, + 0.20306850969791412, + 0.15551058948040009, + 0.3015850782394409, + 0.3447939455509186, + -0.0427740179002285, + 0.5099870562553406, + -0.035501062870025635, + 0.16166184842586517, + -0.2816431522369385, + 0.05502912029623985, + 0.04181544855237007, + -0.1521131843328476, + -0.2861865162849426, + -0.12743669748306274, + -0.1058553010225296, + -0.0919744223356247, + -0.0004819463938474655, + -0.19011670351028442, + 0.11407125741243362, + 0.13274447619915009, + -0.337208092212677, + 0.20529358088970184, + -0.24752359092235565, + 0.36482328176498413, + 0.35213541984558105, + -0.28965550661087036, + 0.12707994878292084, + -0.10999983549118042, + 0.06338398158550262, + 0.09819918870925903, + 0.2249649465084076, + -0.6117876768112183, + -0.1353360116481781, + 0.12326651811599731, + 0.32901835441589355, + -0.18812713027000427, + 0.0034405263140797615, + -0.49328508973121643, + 0.01833994686603546, + -1.1489897966384888, + 0.1336502879858017, + -0.28609827160835266, + -0.01364973559975624, + 0.17200660705566406, + -0.540554404258728, + -0.045234743505716324, + -0.2363405078649521, + -0.05156566947698593, + 0.09913241863250732, + 0.05354035645723343, + 0.05111401900649071, + -0.09613097459077835, + -0.012324687093496323, + 0.05143137648701668, + 0.1441812366247177, + 0.11962719261646271, + 0.20701415836811066, + 0.19899319112300873, + 0.2105577290058136, + 0.21056552231311798, + -0.16368626058101654, + -0.23504261672496796, + 0.26082026958465576, + 0.1151704341173172, + -0.029884204268455505, + 0.13575918972492218, + -0.6310707926750183, + 0.1893375813961029, + -0.27659380435943604, + 0.21350906789302826, + -0.06985262036323547, + 0.022135544568300247, + 0.13919274508953094, + 0.033336490392684937, + 0.550769031047821, + 0.23101045191287994, + 0.40552353858947754, + -0.13831090927124023, + -0.2714400291442871, + 0.07616619765758514, + -0.05734608322381973, + 0.04041236639022827, + -0.05243794620037079, + 0.5886944532394409, + 0.24829775094985962, + -0.3395480215549469, + 0.1890704333782196, + 0.42277151346206665, + -0.39610356092453003, + -0.23838534951210022, + -0.1097087413072586, + 0.29599910974502563, + -0.3030024468898773, + 0.36264804005622864, + -0.27416932582855225, + -0.002256998559460044, + 0.09953072667121887, + -0.17637504637241364, + -0.09749571979045868, + 0.15355481207370758, + -0.046559691429138184, + 0.13408999145030975, + 0.1618463695049286, + -0.1542164385318756, + 0.19633816182613373, + 0.19059625267982483, + 0.02859725058078766, + 0.3913072645664215, + 0.08922357857227325, + 0.06587585061788559, + -0.05987701565027237, + -0.19762226939201355, + -0.054617591202259064, + -0.07245709002017975, + 0.19703792035579681, + 0.02544614113867283, + -0.3039719760417938, + 0.47266802191734314, + -0.030010439455509186, + -0.4196570813655853, + 0.12348750978708267, + -0.06359846889972687, + -0.21405507624149323, + 0.26691514253616333, + 0.004244185984134674, + -0.4218568205833435, + 0.16506026685237885, + 0.19302670657634735, + 0.24645447731018066, + 0.17231054604053497, + 0.02184642292559147, + -0.0057579874992370605, + -0.2975187599658966, + 0.11487952619791031, + -0.078462615609169, + -0.11089345067739487, + -0.4480881094932556, + 0.17235708236694336, + -0.02804313227534294, + -0.2285093367099762, + 0.4555237889289856, + 0.0796227902173996, + -0.09351184964179993, + 0.23616266250610352, + -0.18462201952934265, + -0.13238993287086487, + -0.32408544421195984, + 0.1980779618024826, + 0.33797764778137207, + 0.05364053696393967, + 0.22423195838928223, + 0.1668098121881485, + -0.11741682142019272, + 0.28384891152381897, + -0.2416415512561798, + -0.1464877426624298, + -0.2907993197441101, + -0.16407844424247742, + 0.07938133180141449, + -0.5039862394332886, + 0.046670764684677124, + 0.06203648820519447, + -0.09580573439598083, + -0.008611056953668594, + -0.020807089284062386, + -0.02417304553091526, + -0.05467764288187027, + -0.046899836510419846, + 0.31518134474754333, + 0.06074550747871399, + 0.12450337409973145, + -0.2061132937669754, + -0.24458137154579163, + -0.055746857076883316, + -0.1310538351535797, + 0.0230395644903183, + 0.043344415724277496, + -0.12026727199554443, + 0.11239442229270935, + 0.06690467894077301, + -0.3889109194278717, + -0.4895171523094177, + 0.29363420605659485, + -0.262593537569046, + 0.09981031715869904, + -0.08245856314897537, + 0.1632567048072815, + 0.36134058237075806, + -0.26351407170295715, + 0.08127778768539429, + 0.36136892437934875, + 0.4832592308521271, + 0.24930940568447113, + 0.03741318732500076, + -0.024904048070311546, + -0.1163511723279953, + 0.02844812348484993, + -0.4516550600528717, + 0.34866711497306824, + 0.14481890201568604, + -0.2824186384677887, + 0.20891878008842468, + 0.38981449604034424, + 0.06180645897984505, + -0.4528341591358185, + -0.2451983094215393, + 0.47724875807762146, + 0.16437865793704987, + 0.034343380481004715, + 0.05854594707489014, + 0.2400565892457962, + 0.5628412365913391, + 0.09386804699897766, + -0.13262082636356354, + 0.11176405847072601, + -0.144064798951149, + -0.20716191828250885, + 0.05214492231607437, + -0.25173211097717285, + 0.25760161876678467, + -0.012754656374454498, + -0.10397684574127197, + 0.2617386281490326, + -0.10037698596715927, + -0.22663657367229462, + -0.15257592499256134, + -0.05413558706641197, + -0.07852517068386078, + -0.26748934388160706, + 0.4026290774345398, + -0.04975870996713638, + -0.11292174458503723, + 0.5387819409370422, + -0.1804785579442978, + -0.20607417821884155, + 0.08430855721235275, + -0.015324007719755173, + -0.5522943735122681, + 0.31671521067619324, + -0.15871912240982056, + 0.062123000621795654, + 0.2647492289543152, + -0.09021185338497162, + -0.19445931911468506, + -0.10330142080783844, + 0.3321719765663147, + 0.1404438316822052, + -0.10668038576841354, + -0.003114070277661085, + 0.026027031242847443, + 0.2394903600215912, + 0.5777596235275269, + 0.2558059096336365, + 0.13160613179206848, + 0.42627429962158203, + -0.12550505995750427, + -0.34435176849365234, + -0.06116145849227905, + -0.026200558990240097, + 0.17813915014266968, + -0.31091344356536865, + -0.0025517381727695465, + -0.12868823111057281, + -0.07278139144182205, + 0.09273823350667953, + -0.32259196043014526, + -0.02077668532729149, + 0.3379209637641907, + -0.1663515716791153, + -0.051268190145492554, + 0.1931937336921692, + 0.22760646045207977, + 0.01691923290491104, + 0.32373934984207153, + -0.04550691321492195, + -0.12355415523052216, + 0.15325315296649933, + -0.1148691400885582, + 0.30213966965675354, + -0.15965230762958527, + -0.29309555888175964, + -0.45201045274734497, + -0.00864420086145401, + -0.21516954898834229, + -0.2456834763288498, + -0.059791937470436096, + -0.07710721343755722, + -0.11957000941038132, + -0.23716804385185242, + 0.18476612865924835, + 0.14864082634449005, + 0.16747361421585083, + 0.06555008143186569, + 0.3092443346977234, + 0.04005281999707222, + -0.29202619194984436, + 0.20402739942073822, + -0.009828926995396614, + -0.07447586208581924, + -0.1619531810283661, + -0.05409196391701698, + -0.12557074427604675, + 0.42131292819976807, + -0.0054033249616622925, + 0.013693362474441528, + -0.04359319061040878, + -0.016264937818050385, + -0.27936509251594543, + -0.5011048316955566, + -0.12215275317430496, + -0.06531307846307755, + -0.006484270095825195, + -0.04886622726917267, + 0.11686033755540848, + -0.16717609763145447, + -0.2340424507856369, + 0.03834771737456322, + 0.2928287088871002, + 0.21297332644462585, + -0.1366775929927826, + -0.07311826944351196, + 0.2535603940486908, + -0.033988941460847855, + 0.2689420282840729, + -0.07289992272853851, + 0.1635773926973343, + 0.1398514360189438, + -0.5353471040725708, + 0.004163078963756561, + -0.03261023014783859, + -0.32301777601242065, + -0.15493467450141907, + 0.20000344514846802, + 0.1817021518945694, + 0.07763637602329254, + -0.015451822429895401, + -0.011349033564329147, + 0.18871067464351654, + -0.39599063992500305, + -0.1327400505542755, + 0.28034642338752747, + 0.06907794624567032, + 0.36727070808410645, + -0.13643378019332886, + -0.23859362304210663, + -0.09165585041046143, + -0.08721356093883514, + -0.39118796586990356, + 0.14445024728775024, + 0.18976540863513947, + -0.3678368628025055, + -0.0621175616979599, + 0.08127462863922119, + 0.03158002346754074, + -0.16296127438545227, + 0.27506211400032043, + 0.14906084537506104, + 0.21920451521873474, + -0.095692478120327, + -0.3362957239151001, + -0.09714174270629883, + -0.26782506704330444, + -0.45965731143951416, + -0.2729566693305969, + 0.25732824206352234, + 0.2500401735305786, + 0.11006768047809601, + 0.2587975561618805, + 0.1262442022562027, + -0.13945728540420532, + -0.16680462658405304, + 0.05787403881549835, + -0.18935826420783997, + 0.3080531656742096, + -0.11207771301269531, + -0.21024547517299652, + 0.13613256812095642, + -0.5122655630111694, + 0.12121643871068954, + 0.07530513405799866, + 0.05485007166862488, + 0.25372180342674255, + 0.22170521318912506, + 0.21099893748760223, + 0.38444095849990845, + 0.19118119776248932, + -0.07639127224683762, + 0.0625278651714325, + 0.029036784544587135, + -0.05491258203983307, + -0.14122311770915985, + -0.0034462008625268936, + 0.32276755571365356, + -0.2703332304954529, + -0.011348448693752289, + 0.3242357075214386, + 0.20465674996376038, + -0.3318464159965515, + -0.3087562620639801, + -0.1053384318947792, + -0.07162285596132278, + 0.010435223579406738, + -0.2959614396095276, + -0.0535341240465641, + 0.15634381771087646, + -0.331221342086792, + -0.10667794197797775, + 0.1393067091703415, + 0.3724020719528198, + 0.2044195830821991, + 0.08791524916887283, + -0.07574434578418732, + -0.46646648645401, + 0.2736928164958954, + 0.34014174342155457, + -0.056019850075244904, + -0.06364163756370544, + -0.22366049885749817, + -0.10510315001010895, + 0.5999229550361633, + -0.10672521591186523, + -0.008123181760311127, + -0.06189455837011337, + -0.003806252032518387, + -8.20457935333252e-05, + -0.09706656634807587, + -0.10411538928747177, + 0.12421941757202148, + -0.4416852593421936, + 0.20919868350028992, + -0.24050256609916687, + -0.250347763299942, + 0.1624547839164734, + -0.07962118834257126, + -0.343248188495636, + -0.16261997818946838, + 0.3777315020561218, + -0.2147292196750641, + -0.0008063614368438721, + 0.08072583377361298, + 0.4382367730140686, + 0.0059815384447574615, + -0.16304868459701538, + 0.1740894615650177, + -0.4074089229106903, + 0.013331379741430283, + 0.052633680403232574, + -0.1317206770181656, + 0.07457226514816284, + 0.016384445130825043, + 0.42184486985206604, + 0.46257737278938293, + 0.2821699380874634, + -0.4744175672531128, + 0.27997997403144836, + 0.30315279960632324, + 0.2615652084350586, + -0.18839424848556519, + -10.491643905639648, + 0.12024131417274475, + -0.1401829719543457, + 0.6439712643623352, + -0.17492054402828217, + -0.16441068053245544, + 0.2167280614376068, + 0.05331645533442497, + 0.07022251188755035, + 0.23234547674655914, + -0.31370052695274353, + 0.12263962626457214, + 0.2970048189163208, + 0.24233338236808777, + -0.13582532107830048, + -0.016925543546676636, + -0.16516417264938354, + 0.12752556800842285, + -0.12318303436040878, + 0.21171900629997253, + 0.10651078075170517, + 0.28514766693115234, + -0.13628187775611877, + 0.35490620136260986, + 0.08108126372098923, + -0.3294053077697754, + -0.2595016062259674, + 0.4644663631916046, + 0.021114401519298553, + -0.18882602453231812, + 0.4103369116783142, + 0.33331775665283203, + -0.10410599410533905, + 0.1798475980758667, + -0.015130525454878807, + -0.14437705278396606, + 0.13387754559516907, + -0.10040943324565887, + 0.1596640944480896, + 0.24111023545265198, + 0.004278069362044334, + -0.41514283418655396, + 0.1710638552904129, + 0.15617680549621582, + -0.13672536611557007, + -0.3997924327850342, + -0.09216757118701935, + -1.5004844665527344, + 0.12088396400213242, + 0.319912314414978, + 0.4553978741168976, + 0.07330206781625748, + 0.15444152057170868, + 0.16016791760921478, + -0.29770636558532715, + 0.16814106702804565, + -0.3169933557510376, + 0.11687159538269043, + 0.10890576988458633, + -0.04409976303577423, + 0.11740757524967194, + -0.25917530059814453, + 0.28940874338150024, + -0.3599430024623871, + -0.4206664562225342, + 0.038310181349515915, + -0.07813330739736557, + 0.06403255462646484, + -0.26814451813697815, + -0.2969704866409302, + -0.39201462268829346, + 0.0221739262342453, + -0.09723573178052902, + -0.13933995366096497, + 0.4764840304851532, + 0.02239415980875492, + -0.43241268396377563, + 0.18955253064632416, + -0.013799913227558136, + 0.3527354300022125, + 0.22379443049430847, + -0.13570646941661835, + 0.13065463304519653, + -0.2224656641483307, + -0.2302999049425125, + -0.2931046783924103, + 0.07212059199810028, + 0.5245420336723328, + 0.001025363802909851, + 0.06678292900323868, + 0.006796227768063545, + 0.18915848433971405, + -0.1581624299287796, + -0.25025665760040283, + -0.4141623377799988, + 0.21802358329296112, + -0.26055097579956055, + -0.012953020632266998, + 0.09819892048835754, + -0.21092218160629272, + -0.14056001603603363, + 0.07320593297481537, + 0.03144840896129608, + -0.5079767107963562, + -0.2609317898750305, + 0.01043691672384739, + 0.18079671263694763, + 0.2092301845550537, + 0.3643694818019867, + 0.015498101711273193, + 0.005142934620380402, + 0.03656654804944992, + 0.24314287304878235, + 0.3042920231819153, + 0.18436726927757263, + -0.06862974911928177, + -0.15653011202812195, + -0.27482402324676514, + -0.31248536705970764, + 0.07927927374839783, + 0.3376043140888214, + -0.2397507131099701, + 0.3012092411518097, + 0.6214525103569031, + -0.09010297805070877, + -0.0747327208518982, + 0.9092488288879395, + -0.2168780416250229, + 0.22905679047107697, + -0.10259687155485153, + 0.11231158673763275, + 0.03952575474977493, + -0.1527365893125534, + 0.11306284368038177, + 0.37664610147476196, + -0.17984174191951752, + 0.46115875244140625, + 0.0986807644367218, + -0.16754582524299622, + 0.18710564076900482, + -0.2192874550819397, + 0.38158300518989563, + 0.13572749495506287, + 0.24496707320213318, + -0.07271167635917664, + -0.3392811417579651, + -0.23205186426639557, + 0.03885918855667114, + -0.45338955521583557, + -0.10303190350532532, + -0.11939848959445953, + 0.20109108090400696, + 0.047510892152786255, + -0.24978908896446228, + 0.2907201647758484, + -0.04647795110940933, + -0.12297841161489487, + -0.1981087327003479, + -0.43222033977508545, + -0.022479595616459846, + -0.012721878476440907, + 0.8237607479095459, + 0.08748522400856018, + 0.02047467604279518, + -0.11072924733161926, + 0.1098223328590393, + -0.14701330661773682, + 0.12096437066793442, + 0.02096686325967312, + -0.06532515585422516, + -0.5849081873893738, + 0.24678635597229004, + 0.09544801712036133, + -0.5073127150535583, + -0.1783873736858368, + -0.3916610777378082, + 0.009205341339111328, + -0.20584054291248322, + -0.1806856095790863, + 0.27739912271499634, + 0.26468750834465027, + -0.06101863086223602, + 0.14204496145248413, + -0.3146379590034485, + 0.16526249051094055, + 0.1364118903875351, + 0.13405324518680573, + 0.13687217235565186, + -0.14869526028633118, + -0.3088264465332031, + -0.3468317687511444, + 0.21980024874210358, + -0.12102527916431427, + -0.13035570085048676, + 0.14863520860671997, + 0.10306505858898163, + -0.3110966682434082, + -0.03367820754647255, + -0.37257009744644165, + 0.1630478948354721, + -0.23239746689796448, + 0.30163151025772095, + 0.19426922500133514, + -0.33579719066619873, + 0.10216507315635681, + -0.13191290199756622, + 0.1885225772857666, + 0.1349676549434662, + -0.26934781670570374, + 0.18921026587486267, + -0.055178768932819366 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_061.json b/src/benchmark/output/results/results_graph_061.json new file mode 100644 index 0000000..9f21883 --- /dev/null +++ b/src/benchmark/output/results/results_graph_061.json @@ -0,0 +1,792 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 65-year-old woman. Unfortunately, her demographic information is not explicitly provided in the data, so we will assume that she is an adult female with no other relevant medical history mentioned.\n\n**Initial Presentation (Step 1):**\nThe patient presented to our institution with dyspnea, which was her primary symptom. This presentation led to further investigation and subsequent diagnoses.\n\n**Diagnosis of Adenocarcinoma (Step 2):**\nFollowing a bronchoscopic biopsy of the right upper lobe, the patient was diagnosed with adenocarcinoma. The biopsy results revealed adenocarcinoma, which is a type of non-small cell lung cancer.\n\n**Imaging and Further Diagnosis (Step 3):**\nImaging studies, including bone and brain metastases, were performed to further evaluate the extent of disease. These findings led to a diagnosis of stage IVB lung adenocarcinoma with multiple metastases in the bones and brain.\n\n**Molecular Profiling and Treatment Planning (Step 4):**\nA tumor proportion score was calculated to guide treatment decisions. The results showed that the programmed death-ligand 1 tumor proportion score was 60%. Based on this information, palliative radiation therapy for spinal and brain metastases was initiated, followed by first-line chemotherapy with cisplatin, pemetrexed, and pembrolizumab.\n\n**Progression of Disease (Step 5-6):**\nAfter 13 cycles of chemotherapy, imaging revealed ascites and progressive disease. The patient's condition continued to decline, with worsening ascites and a marked increase in abdominal circumference.\n\n**Second-Line Therapy (Step 7):**\nDue to the progression of disease, second-line therapy was initiated with docetaxel and ramucirumab (DTX+RAM). However, despite this treatment, the patient's condition continued to deteriorate.\n\n**Current Status:**\nThe patient is currently in a poor clinical state, with significant ascites, hypoalbuminemia, and a marked decline in activities of daily living. Her performance status has decreased, and she requires frequent abdominal paracentesis. The patient's abdomen is markedly distended, and her vital signs are concerning.\n\n**Conclusion:**\nThis patient presents with a complex clinical scenario, characterized by rapidly progressive disease despite multiple treatment modalities. Further evaluation and management strategies will be necessary to address this challenging case.", + "bertscore": { + "precision": 0.8127667903900146, + "recall": 0.808251142501831, + "f1": 0.8105026483535767 + }, + "bleu": 0.047636868820993244, + "rouge1": 0.37435897435897436, + "rougeL": 0.16923076923076924, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 2, + "node_count": 9, + "edge_count": 7, + "avg_in_degree": 0.7777777777777778, + "density": 0.09722222222222222 + }, + "trajectory_embedding": [ + 0.2474288046360016, + 0.2092151939868927, + -0.12583652138710022, + 0.19021673500537872, + 0.0814264714717865, + 0.177109494805336, + -0.002533096820116043, + 0.3530573844909668, + 0.759898841381073, + -0.3953750431537628, + -0.04731377586722374, + -0.07567942142486572, + -0.6275361180305481, + -0.17365944385528564, + -0.21753628551959991, + 0.26948532462120056, + -0.22064340114593506, + 0.46433359384536743, + -0.15440678596496582, + -0.28024598956108093, + -0.44532668590545654, + 0.2564878463745117, + -0.6302626132965088, + 0.10224810242652893, + 0.20949804782867432, + 0.009543396532535553, + 0.4226093292236328, + 0.4936608672142029, + 0.2593908905982971, + 0.223179429769516, + 0.152333602309227, + -0.3438692092895508, + 0.2866702973842621, + 0.16359074413776398, + -0.3603590130805969, + 0.19850221276283264, + 0.13433672487735748, + 0.4280996322631836, + -0.25178849697113037, + -0.016268614679574966, + -0.15648142993450165, + 0.12844860553741455, + 0.9050235152244568, + 0.079796701669693, + 0.4123043417930603, + -0.768221378326416, + -0.13257351517677307, + 0.7003955245018005, + -0.48415014147758484, + -0.4720841646194458, + 0.22440290451049805, + 0.9267661571502686, + 0.6730108857154846, + -0.4461787939071655, + 0.5450923442840576, + -0.2852385640144348, + -0.18545196950435638, + -0.28213265538215637, + -0.15310357511043549, + 0.013971561565995216, + 0.10701192170381546, + -0.40082472562789917, + 0.5132468938827515, + -0.253410667181015, + -0.06489899754524231, + -0.15557144582271576, + -0.32458093762397766, + 0.16422566771507263, + -0.04110860824584961, + -0.3884689211845398, + -0.13535962998867035, + -0.25457948446273804, + -0.05048992484807968, + 0.1686599999666214, + 0.040690187364816666, + -0.05052243545651436, + 0.3306153416633606, + -0.10000050067901611, + 0.2837120592594147, + 0.13309495151042938, + -0.031342513859272, + -0.13367417454719543, + -0.07288648188114166, + 0.37100809812545776, + -0.34105047583580017, + -0.13560695946216583, + -0.18512386083602905, + -0.15250417590141296, + -0.4056796431541443, + 0.09863897413015366, + -0.03251934051513672, + -0.5375545620918274, + 0.10792097449302673, + -0.24792835116386414, + -0.06818529218435287, + 0.20810289680957794, + 0.6429087519645691, + 0.03647049516439438, + 0.8740354180335999, + 0.01476980745792389, + 0.17828281223773956, + -0.06596662849187851, + 0.267045259475708, + 0.10360687971115112, + 0.32819274067878723, + -0.09128675609827042, + 0.1444026380777359, + -0.5285681486129761, + 0.45322221517562866, + 0.5252869129180908, + 0.14879195392131805, + -0.17116793990135193, + -0.10920645296573639, + -0.22087547183036804, + 0.2519119679927826, + 0.14097309112548828, + 0.044296979904174805, + 0.32062140107154846, + 0.33641088008880615, + -0.4486435651779175, + -0.28412505984306335, + -0.1374320536851883, + 0.19175387918949127, + 0.1435806006193161, + -0.5362026691436768, + -0.11653237789869308, + -0.12197071313858032, + -0.15996694564819336, + 0.09342095255851746, + -0.09662836045026779, + -0.49499061703681946, + -0.20311211049556732, + 0.03840809315443039, + -0.05671254172921181, + -0.14890745282173157, + 0.3777737617492676, + -0.24940115213394165, + -0.009750470519065857, + -1.1548070907592773, + 0.19032707810401917, + -0.3745191991329193, + -0.046673811972141266, + -0.03163881599903107, + -0.5799851417541504, + -0.26181238889694214, + -0.10767561197280884, + -0.11547179520130157, + 0.17647992074489594, + -0.23939257860183716, + 0.014531340450048447, + 0.042531922459602356, + -0.08516637235879898, + 0.25909045338630676, + 0.5073627829551697, + 0.11405060440301895, + -0.027198249474167824, + 0.010945739224553108, + 0.2674846947193146, + 0.058090660721063614, + -0.21556252241134644, + 0.1346292346715927, + 0.689369797706604, + 0.3295997381210327, + 0.16687455773353577, + -0.2907380163669586, + -0.6308159828186035, + -0.13070149719715118, + -0.0586414560675621, + -0.07125037163496017, + 0.08177226781845093, + -0.20934340357780457, + 0.1417921930551529, + -0.3093430697917938, + 0.648400604724884, + -0.002409420907497406, + 0.3685421049594879, + -0.07871555536985397, + -0.061614882200956345, + 0.1369674652814865, + 0.21043172478675842, + 0.160532146692276, + -0.4026050865650177, + 0.6824887990951538, + 0.3416898548603058, + -0.3958756625652313, + 0.18998302519321442, + 0.3921610713005066, + 0.11419449746608734, + -0.3193144202232361, + 0.017555907368659973, + 0.6630592942237854, + -0.397549033164978, + 0.7330995798110962, + -0.34225431084632874, + -0.029733510687947273, + 0.2507571876049042, + -0.1209719181060791, + 0.03246713802218437, + -0.12745186686515808, + -0.07992155849933624, + 0.3425280451774597, + -0.00027002859860658646, + -0.38500699400901794, + -0.028524037450551987, + 0.2373577207326889, + -0.05475214123725891, + 0.2468254119157791, + -0.1189594566822052, + 0.15761160850524902, + 0.13603991270065308, + -0.06449518352746964, + 0.3302517533302307, + -0.09825067967176437, + 0.33678150177001953, + 0.09319666028022766, + -0.5011940002441406, + 0.12913429737091064, + -0.0006219395436346531, + -0.12734948098659515, + 0.09022471308708191, + 0.019520405679941177, + -0.34538379311561584, + -0.1626301407814026, + 0.000229712575674057, + -0.6532209515571594, + 0.2616381347179413, + 0.21147912740707397, + 0.19318003952503204, + 0.25716009736061096, + 0.053813524544239044, + -0.12325683981180191, + -0.5003531575202942, + 0.33513346314430237, + -0.14115193486213684, + -0.09196598082780838, + -0.3111063241958618, + 0.30827629566192627, + -0.07816414535045624, + 0.19592779874801636, + 0.31989797949790955, + 0.005649898201227188, + -0.007455252110958099, + 0.11787906289100647, + -0.39907586574554443, + -0.07571979612112045, + -0.4045724868774414, + -0.008730463683605194, + 0.34730827808380127, + 0.11567720770835876, + 0.26986992359161377, + -0.0828150138258934, + -0.1537369340658188, + 0.16460679471492767, + -0.1437443047761917, + -0.5334728956222534, + -0.283153235912323, + 0.026044059544801712, + -0.11731011420488358, + -0.8561437726020813, + 0.37526512145996094, + -0.16706308722496033, + 0.08130678534507751, + 0.2621362507343292, + -0.3420047163963318, + -0.17030273377895355, + 0.0887889564037323, + 0.1239231750369072, + 0.14007605612277985, + -0.3320673108100891, + 0.01137293130159378, + -0.2528994381427765, + -0.20001554489135742, + -0.2609359323978424, + -0.034444257616996765, + 0.05742136389017105, + 0.030924983322620392, + -0.44553273916244507, + -0.12867368757724762, + 0.03368363529443741, + -0.3206373453140259, + -0.08493828773498535, + 0.13794586062431335, + -0.21532762050628662, + 0.17406167089939117, + 0.07746371626853943, + 0.19047626852989197, + 0.2787382900714874, + 0.15642473101615906, + 0.043574824929237366, + 0.4282212555408478, + 0.37749844789505005, + -0.1087842583656311, + 0.02302526868879795, + -0.04575304687023163, + -0.09677232056856155, + -0.01350809633731842, + -0.39988046884536743, + 0.48384684324264526, + 0.02535863034427166, + 0.020812466740608215, + 0.1330721080303192, + 0.22198781371116638, + 0.03276463598012924, + -0.2221183329820633, + 0.10217461735010147, + 0.5667365193367004, + 0.07253216207027435, + 0.18427276611328125, + 0.2227112054824829, + 0.22626850008964539, + 0.32970350980758667, + -0.12805035710334778, + 0.09570568799972534, + 0.27290207147598267, + -0.0688340812921524, + -0.2575719654560089, + 0.024955278262495995, + 0.31039804220199585, + 0.543548047542572, + -0.20509736239910126, + -0.266879677772522, + -0.1455192267894745, + -0.13511225581169128, + -0.01576375402510166, + -0.44707226753234863, + -0.16930513083934784, + 0.11384731531143188, + -0.26227372884750366, + 0.43528634309768677, + 0.11493717133998871, + -0.06934335827827454, + 0.3761230707168579, + -0.49820417165756226, + -0.09861333668231964, + 0.2508455812931061, + -0.1294126659631729, + -0.4030299782752991, + 0.46051907539367676, + -0.13734400272369385, + -0.027555784210562706, + 0.40941566228866577, + -0.5176143050193787, + -0.16636493802070618, + 0.1102132499217987, + 0.3547123670578003, + -0.11693757772445679, + 0.13585558533668518, + 0.018819980323314667, + 0.09399145096540451, + 0.1057262271642685, + 0.4412054121494293, + 0.053070418536663055, + 0.31878265738487244, + 0.7638611197471619, + 0.23469914495944977, + -0.3656395375728607, + 0.09445472806692123, + -0.10848180949687958, + 0.3663689196109772, + -0.11580905318260193, + -0.06980348378419876, + -0.23841078579425812, + 0.165745347738266, + 0.04646908864378929, + -0.3088207244873047, + 0.0010346155613660812, + 0.0004941858351230621, + 0.09051825106143951, + -0.07388828694820404, + 0.37136349081993103, + 0.010374654084444046, + -0.17990358173847198, + 0.5024390816688538, + -0.16215890645980835, + -0.2659148573875427, + 0.40283387899398804, + -0.189349964261055, + 0.07735902816057205, + 0.08453433215618134, + -0.25369948148727417, + -0.27845457196235657, + 0.15960581600666046, + -0.4060025215148926, + -0.2871885299682617, + 0.11507461965084076, + -0.2797015905380249, + 0.09516991674900055, + -0.3060813844203949, + 0.04376138001680374, + 0.07084845006465912, + 0.10474808514118195, + 0.2310372143983841, + 0.3101925849914551, + 0.18945907056331635, + -0.16413262486457825, + 0.2844293713569641, + -0.03617854788899422, + -0.18950383365154266, + -0.3586387634277344, + 0.14893342554569244, + -0.1790696233510971, + 0.7171720266342163, + 0.10400288552045822, + -0.03010983020067215, + 0.15797582268714905, + -0.11059305816888809, + -0.12730857729911804, + -0.27869167923927307, + 0.00712523004040122, + -0.12241735309362411, + 0.12554235756397247, + 0.29801830649375916, + 0.0314694419503212, + -0.36098769307136536, + -0.10374028980731964, + -0.1435193121433258, + -0.10725550353527069, + 0.003017284907400608, + -0.07079105079174042, + -0.16502737998962402, + 0.46602460741996765, + 0.28542712330818176, + 0.5367545485496521, + -0.36782941222190857, + 0.2636677026748657, + 0.014116751030087471, + -0.36083322763442993, + -0.012809373438358307, + -0.20034296810626984, + -0.463847279548645, + -0.1582167148590088, + 0.33216992020606995, + 0.29515835642814636, + -0.04150944948196411, + -0.07910757511854172, + 0.1025189757347107, + 0.16058295965194702, + -0.38547948002815247, + -0.06299492716789246, + 0.41649138927459717, + 0.19950976967811584, + 0.3958536684513092, + 0.13724705576896667, + -0.5606046915054321, + -0.34546399116516113, + -0.06539136916399002, + -0.4102364182472229, + -0.012278708629310131, + 0.23257459700107574, + 0.01011296920478344, + -0.12340724468231201, + 0.06791362166404724, + -0.035072579979896545, + -0.23245300352573395, + 0.29668891429901123, + -0.31240156292915344, + 0.32346245646476746, + 0.07061052322387695, + -0.18248093128204346, + -0.14157210290431976, + -0.19322997331619263, + -0.3813169300556183, + -0.11284425109624863, + 0.1710788458585739, + 0.18879346549510956, + -0.38051337003707886, + 0.01378791406750679, + 0.19295620918273926, + -0.12452749907970428, + -0.23847848176956177, + 0.05666845664381981, + -0.4183095097541809, + 0.349368155002594, + -0.22666415572166443, + -0.28490397334098816, + 0.0757436454296112, + -0.1464388072490692, + -0.09050866961479187, + 0.16522878408432007, + 0.061005599796772, + 0.4142916202545166, + -0.026998110115528107, + 0.011175381019711494, + 0.5083684325218201, + 0.08929872512817383, + 0.16157595813274384, + 0.3694569170475006, + 0.08086130768060684, + -0.006170984357595444, + -0.4611409902572632, + -0.29081836342811584, + 0.2145928144454956, + -0.4151502251625061, + -0.17983511090278625, + 0.10503862798213959, + 0.30314862728118896, + -0.5050584077835083, + -0.43113836646080017, + 0.05641426146030426, + 0.0619920939207077, + -0.013836918398737907, + -0.14363308250904083, + -0.27965402603149414, + -0.13117866218090057, + -0.2959071099758148, + -0.043925609439611435, + 0.17751044034957886, + 0.6072612404823303, + 0.15313737094402313, + 0.23825585842132568, + -0.30539458990097046, + -0.11196178197860718, + 0.306706041097641, + 0.22055192291736603, + 0.09758789837360382, + -0.13543783128261566, + -0.14155618846416473, + 0.29686009883880615, + 0.4885350465774536, + 0.06608840078115463, + 0.13890081644058228, + 0.01013236865401268, + 0.11781002581119537, + 0.2549940049648285, + 0.031785257160663605, + -0.18353252112865448, + -0.004647810012102127, + -0.46123290061950684, + 0.18704335391521454, + -0.21100419759750366, + -0.07775810360908508, + 0.28343111276626587, + -0.22152259945869446, + -0.6229356527328491, + -0.21281684935092926, + 0.1824328601360321, + -0.10667175054550171, + -0.2114647775888443, + 0.22491976618766785, + 0.2824113070964813, + -0.07781774550676346, + -0.2466939091682434, + 0.09478389471769333, + -0.5808854103088379, + -0.40948423743247986, + 0.07500547915697098, + -0.05559469014406204, + -0.17505601048469543, + 0.0973970964550972, + 0.5113881230354309, + 0.6146116852760315, + 0.34088584780693054, + -0.02090776152908802, + 0.2461005002260208, + 0.5180326700210571, + 0.3032766282558441, + -0.24937379360198975, + -10.492722511291504, + -0.18166381120681763, + -0.33075693249702454, + 0.609231173992157, + -0.21124954521656036, + 0.041339412331581116, + -0.030709220096468925, + 0.0462377667427063, + 0.008817996829748154, + 0.13839074969291687, + -0.14367790520191193, + -0.226935014128685, + 0.21971964836120605, + 0.44054844975471497, + 0.00036082929000258446, + 0.2685233950614929, + -0.32103100419044495, + 0.40157151222229004, + -0.019415132701396942, + 0.12625589966773987, + 0.08065924048423767, + 0.4054347276687622, + -0.32254594564437866, + 0.07994589954614639, + -0.15920427441596985, + -0.5145461559295654, + -0.18526479601860046, + 0.6663429141044617, + 0.454655259847641, + -0.4681839346885681, + 0.16253331303596497, + 0.10277656465768814, + -0.1387007236480713, + 0.25983044505119324, + -0.29312244057655334, + -0.12110882997512817, + -0.10613927245140076, + 0.19227342307567596, + 0.4411795139312744, + -0.18659783899784088, + 0.0602419339120388, + -0.14831030368804932, + 0.3380459249019623, + 0.05273851752281189, + -0.22291673719882965, + -0.583213210105896, + -0.01348314993083477, + -1.751699686050415, + 0.39631059765815735, + 0.39011040329933167, + 0.397417813539505, + 0.20549944043159485, + 0.10121989995241165, + 0.3133712410926819, + -0.22824794054031372, + -0.12035030871629715, + -0.44932204484939575, + -0.2018738090991974, + 0.1286967694759369, + 0.04690631106495857, + 0.14393851161003113, + -0.04387877508997917, + 0.6374436020851135, + 0.06679205596446991, + -0.21566534042358398, + 0.03216436877846718, + 0.18498210608959198, + -0.1780645251274109, + -0.41825467348098755, + -0.8771959543228149, + -0.5769665241241455, + 0.1912241280078888, + -0.15896640717983246, + -0.07813112437725067, + 0.3110414147377014, + 0.0019352929666638374, + -0.20062318444252014, + 0.2649616599082947, + 0.029607579112052917, + 0.3840513527393341, + 0.33135515451431274, + -0.12452322244644165, + 0.1190989762544632, + -0.19417904317378998, + -0.23861216008663177, + -0.14152145385742188, + 0.17432525753974915, + 0.540013313293457, + -0.04155760258436203, + -0.16007274389266968, + 0.010763381607830524, + 0.4254085421562195, + 0.026549600064754486, + -0.20764987170696259, + -0.4897440969944, + 0.049948353320360184, + 0.04619473218917847, + 0.14731572568416595, + -0.030806168913841248, + -0.07910434156656265, + -0.29132890701293945, + 0.17112918198108673, + -0.09082689881324768, + -0.635960578918457, + -0.5755260586738586, + 0.2536362111568451, + 0.16383564472198486, + 0.14503750205039978, + 0.021618077531456947, + -0.17618215084075928, + -0.25938379764556885, + 0.09301234036684036, + 0.22947996854782104, + 0.5216777324676514, + 0.28966039419174194, + -0.10596019774675369, + 0.09310103952884674, + -0.34401458501815796, + -0.09563308954238892, + -0.013886112719774246, + 0.44787025451660156, + 0.007255901582539082, + 0.17670409381389618, + 0.7266382575035095, + -0.029979493468999863, + 0.05816517770290375, + 0.920714259147644, + -0.5000869035720825, + 0.16242334246635437, + -0.010177046060562134, + 0.20143023133277893, + -0.024314286187291145, + -0.592297375202179, + 0.023114845156669617, + 0.5272396206855774, + -0.32394716143608093, + 0.851578414440155, + 0.396298885345459, + -0.27341026067733765, + -0.131796196103096, + -0.3363179564476013, + 0.5272847414016724, + 0.19720755517482758, + 0.1670018434524536, + -0.1992090940475464, + -0.315632700920105, + -0.3610754907131195, + 0.10325397551059723, + -0.27086135745048523, + -0.2982610762119293, + -0.18296584486961365, + 0.08418313413858414, + 0.1647537499666214, + -0.07370283454656601, + 0.332377552986145, + 0.30741748213768005, + -0.07301062345504761, + -0.3441603481769562, + -0.32363730669021606, + -0.0737682431936264, + 0.039549343287944794, + 0.9724972248077393, + -0.14692151546478271, + -0.19200702011585236, + -0.03663553297519684, + 0.13727612793445587, + -0.2483002096414566, + 0.19835573434829712, + 0.08698147535324097, + -0.07522369176149368, + -0.41911011934280396, + 0.3206632733345032, + 0.17721211910247803, + -0.3879513144493103, + -0.07318800687789917, + 0.009198175743222237, + -0.09736260026693344, + 0.1958516389131546, + -0.16283875703811646, + 0.09489928930997849, + 0.30212172865867615, + -0.046928297728300095, + 0.09360192716121674, + -0.3726518750190735, + -0.22947120666503906, + 0.11896955221891403, + 0.4078627824783325, + 0.035514019429683685, + -0.3865315616130829, + -0.23404957354068756, + -0.6315596103668213, + 0.34451207518577576, + -0.5986541509628296, + -0.11872436851263046, + 0.15665724873542786, + 0.19783008098602295, + -0.16555820405483246, + 0.2139514535665512, + 0.10367842018604279, + -0.06595541536808014, + -0.23181718587875366, + 0.332355797290802, + 0.5700253248214722, + -0.22458267211914062, + 0.5243464708328247, + -0.19641821086406708, + 0.10315823554992676, + 0.09639372676610947, + -0.23391179740428925, + 0.1516333818435669, + -0.4367642402648926 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_062.json b/src/benchmark/output/results/results_graph_062.json new file mode 100644 index 0000000..35a944d --- /dev/null +++ b/src/benchmark/output/results/results_graph_062.json @@ -0,0 +1,792 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 38-year-old male who presented with a chronic recurrent dry cough over the course of a month. He denied any fever, sputum or blood production, and chest pain.\n\n**Timeline of Diagnoses:**\n\n1. **Step 1 (N1):** The patient's chronic recurrent dry cough prompted a chest computed tomography (CT) scan.\n2. **Step 2 (N2):** The CT revealed pulmonary masses at an external hospital, leading to admission to the oncology department for further evaluation and treatment.\n3. **Step 3 (N3):** The patient was admitted to the oncology department for further evaluation and treatment.\n4. **Step 4 (N4):** As part of the evaluation, the patient's medical history was reviewed, revealing no history of hypertension, coronary heart disease, diabetes, cerebral venous thrombosis or hemorrhage, tuberculosis, chronic hepatitis B virus infection and other diseases.\n5. **Step 5 (N5):** Vitals and labs were taken as part of the evaluation, including temperature 37.2\u00b0C, pulse rate 118 bpm, respiratory rate 20 breaths/minute, blood pressure 106/69 mmHg, white blood cells 7.97 \u00d7 109/L, hemoglobin 142 g/L, platelets 287 \u00d7 109/L, and various other lab results.\n6. **Step 6 (N6):** Additional labs were taken as part of the evaluation, including treponema pallidum-specific antibody, hepatitis B surface antigen, and hepatitis C.\n\n**Treatments:**\n\nThe patient underwent a series of evaluations and treatments based on the findings from each step:\n\n* Following the CT scan, the patient was admitted to the oncology department for further evaluation and treatment.\n* As part of the evaluation, the patient's medical history was reviewed, revealing no history of certain diseases.\n* Vitals and labs were taken as part of the evaluation.\n\n**Outcomes:**\n\nThe patient's current status is not explicitly stated in the provided data. However, based on the timeline of diagnoses and treatments, it appears that the patient has undergone a series of evaluations and treatments for pulmonary masses detected by CT scan. The patient's medical history was reviewed, revealing no history of certain diseases, and vitals and labs were taken as part of the evaluation.\n\n**Conclusion:**\n\nThe patient presented with a chronic recurrent dry cough over the course of a month, which prompted a chest CT scan that revealed pulmonary masses. The patient underwent a series of evaluations and treatments based on the findings from each step, including admission to the oncology department for further evaluation and treatment. The patient's medical history was reviewed, revealing no history of certain diseases, and vitals and labs were taken as part of the evaluation.", + "bertscore": { + "precision": 0.6768946051597595, + "recall": 0.7102913856506348, + "f1": 0.6931909322738647 + }, + "bleu": 0.01979863091357997, + "rouge1": 0.20848056537102472, + "rougeL": 0.13780918727915192, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 6, + "edge_count": 5, + "avg_in_degree": 0.8333333333333334, + "density": 0.16666666666666666 + }, + "trajectory_embedding": [ + 0.29947397112846375, + -0.028808513656258583, + 0.018951475620269775, + 0.24079148471355438, + 0.11866217851638794, + 0.17880016565322876, + 0.11841905117034912, + 0.2565062940120697, + 0.5162163972854614, + -0.40549495816230774, + -0.19314958155155182, + -0.05226249620318413, + -0.6632895469665527, + -0.11044865846633911, + -0.34900379180908203, + 0.20892314612865448, + 0.0023391495924443007, + 0.3613584041595459, + 0.03122534416615963, + -0.24920932948589325, + -0.4481029510498047, + 0.3001985251903534, + -0.5988388061523438, + 0.05307899788022041, + 0.22755618393421173, + -0.131968691945076, + 0.4439794719219208, + 0.5466761589050293, + 0.31771886348724365, + 0.24100959300994873, + -0.10971758514642715, + -0.17458467185497284, + 0.06261575222015381, + 0.12151173502206802, + -0.332698792219162, + 0.19091731309890747, + 0.23537187278270721, + 0.2702086865901947, + -0.1578827053308487, + 0.000803215429186821, + -0.24547170102596283, + -0.01477339118719101, + 0.8851456046104431, + 0.18155045807361603, + 0.43704381585121155, + -0.5708225965499878, + -0.1669672727584839, + 0.748521625995636, + -0.5138639807701111, + -0.17732495069503784, + -0.09516710042953491, + 0.9330987930297852, + 0.33173343539237976, + -0.31040236353874207, + 0.441397100687027, + -0.16228680312633514, + -0.20543169975280762, + -0.35198330879211426, + -0.11635354906320572, + 0.21407131850719452, + 0.12020236253738403, + -0.41610679030418396, + 0.4582405984401703, + -0.22627276182174683, + 0.029675668105483055, + -0.02421610616147518, + -0.10107824206352234, + 0.032975051552057266, + -0.09741229563951492, + -0.3790196180343628, + -0.13328605890274048, + -0.2717601954936981, + -0.1202009916305542, + 0.052508652210235596, + 0.24520277976989746, + -0.2078080177307129, + 0.41277584433555603, + -0.1218118965625763, + 0.12164954096078873, + 0.2530306875705719, + -0.16012853384017944, + -0.13158580660820007, + 0.009668275713920593, + 0.2985859811306, + -0.39279451966285706, + 0.07253089547157288, + -0.02653445303440094, + -0.09272889047861099, + -0.457582950592041, + 0.217140331864357, + 0.07936916500329971, + -0.4932047128677368, + 0.0904335081577301, + -0.45746758580207825, + 0.0318153090775013, + 0.21505804359912872, + 0.4336695373058319, + 0.17545145750045776, + 0.72902512550354, + -0.013932471163570881, + 0.05010358616709709, + 0.1858871430158615, + 0.3562144935131073, + 0.17085601389408112, + 0.4035920798778534, + 0.051238495856523514, + 0.06851653009653091, + -0.43026259541511536, + 0.3828446865081787, + 0.3200426995754242, + -0.08956816792488098, + -0.321315199136734, + -0.1656428575515747, + -0.248518705368042, + -0.02897167019546032, + 0.12237484008073807, + 0.0023838530760258436, + 0.06082877516746521, + 0.398444801568985, + -0.38420602679252625, + -0.10816473513841629, + -0.06444895267486572, + 0.42409154772758484, + 0.1571182757616043, + -0.43264588713645935, + 0.01029630471020937, + -0.16299012303352356, + -0.14038507640361786, + -0.08940261602401733, + 0.12581586837768555, + -0.6488975882530212, + -0.32606425881385803, + 0.0425783134996891, + 0.17472527921199799, + -0.08513165265321732, + 0.19218067824840546, + -0.35194024443626404, + 0.14117495715618134, + -1.1187050342559814, + 0.16388438642024994, + -0.3338117301464081, + -0.11240413784980774, + 0.008726236410439014, + -0.5794187188148499, + -0.28249165415763855, + -0.17164753377437592, + -0.13809709250926971, + 0.09689880162477493, + -0.2258555293083191, + -0.07129588723182678, + -0.015294477343559265, + -0.06722518801689148, + 0.22740864753723145, + 0.4822322428226471, + 0.009144107811152935, + 0.11241891235113144, + 0.12156564742326736, + 0.15985681116580963, + 0.10972777009010315, + -0.21470296382904053, + -0.26282814145088196, + 0.530223548412323, + 0.32163918018341064, + 0.25565120577812195, + 0.06727799773216248, + -0.7073482871055603, + 0.019063390791416168, + -0.15896780788898468, + -0.10646619647741318, + 0.21319927275180817, + 0.023521238937973976, + 0.15306086838245392, + -0.20089195668697357, + 0.6239797472953796, + -0.06495245546102524, + 0.2984829843044281, + -0.005029628518968821, + -0.24798424541950226, + 0.1151365414261818, + 0.15143656730651855, + 0.0627003163099289, + -0.08622157573699951, + 0.5532793998718262, + 0.18645204603672028, + -0.4199434220790863, + 0.18466228246688843, + 0.4629444181919098, + -0.11579140275716782, + -0.19583427906036377, + 0.049188774079084396, + 0.16527323424816132, + -0.45052942633628845, + 0.33943137526512146, + -0.23000948131084442, + -0.12981541454792023, + 0.18078674376010895, + -0.21670301258563995, + 0.07381177693605423, + -0.040719226002693176, + 0.115618996322155, + 0.1891051083803177, + 0.017074478790163994, + -0.30659762024879456, + 0.11881404370069504, + 0.12183761596679688, + -0.11458485573530197, + 0.3580172061920166, + 0.03293129801750183, + 0.08483340591192245, + 0.15004120767116547, + -0.023213421925902367, + 0.11114390939474106, + -0.07456807792186737, + 0.24347519874572754, + 0.054390013217926025, + -0.4227900505065918, + 0.31680193543434143, + -0.11612141877412796, + -0.329537957906723, + 0.18808938562870026, + -0.035357825458049774, + -0.3558134138584137, + -0.03428232669830322, + 0.03179483115673065, + -0.5616217851638794, + 0.1104147732257843, + 0.18924717605113983, + 0.3007170259952545, + 0.07679153233766556, + 0.06298815459012985, + -0.020120391622185707, + -0.5644744038581848, + 0.25673893094062805, + -0.17612801492214203, + -0.021223144605755806, + -0.4530586898326874, + 0.19764526188373566, + -0.12454725056886673, + 0.13493140041828156, + 0.3532525599002838, + 0.22731302678585052, + -0.07901956886053085, + 0.1748970001935959, + -0.2389681339263916, + -0.18878968060016632, + -0.3307226598262787, + 0.01776844821870327, + 0.33717453479766846, + 0.04368257522583008, + 0.24586503207683563, + 0.12112834304571152, + -0.2447993904352188, + 0.08346859365701675, + -0.097503162920475, + -0.399975448846817, + -0.4241580069065094, + -0.1501956582069397, + 0.11248153448104858, + -0.74247145652771, + 0.31621891260147095, + -0.1698482185602188, + 0.08876866102218628, + 0.031240567564964294, + -0.023896673694252968, + -0.1277555227279663, + 0.09917959570884705, + -0.03564586490392685, + 0.17340286076068878, + -0.3515503406524658, + -0.04702622815966606, + -0.19211788475513458, + -0.17951945960521698, + -0.1402389407157898, + 0.01010665763169527, + 0.005530992988497019, + -0.024262845516204834, + -0.3539024591445923, + 0.14248783886432648, + 0.02012564428150654, + -0.41196271777153015, + -0.09096042066812515, + 0.04673240706324577, + -0.18630512058734894, + 0.29960212111473083, + 0.04223944619297981, + 0.25878480076789856, + 0.218160942196846, + -0.01669258065521717, + 0.05746651068329811, + 0.40103110671043396, + 0.3652494251728058, + 0.125021830201149, + 0.16079451143741608, + -0.08198466897010803, + -0.0737573578953743, + 0.09879680722951889, + -0.37381711602211, + 0.43048903346061707, + 0.20765133202075958, + 0.037258800119161606, + 0.41095995903015137, + 0.425368994474411, + 0.1328878253698349, + -0.25979602336883545, + 0.037362802773714066, + 0.3034142255783081, + -0.05761513113975525, + 0.10448893904685974, + 0.15887361764907837, + 0.2087748497724533, + 0.45641446113586426, + -0.061875998973846436, + 0.23564893007278442, + 0.41691386699676514, + -0.14164668321609497, + -0.2674359977245331, + 0.1491672545671463, + 0.024081766605377197, + 0.3332526683807373, + -0.17076127231121063, + -0.14266563951969147, + -0.04007117822766304, + 0.018572157248854637, + -0.10670346766710281, + -0.412332683801651, + -0.15576964616775513, + 0.07411069422960281, + -0.16636765003204346, + 0.45528116822242737, + 0.039862558245658875, + 0.026820214465260506, + 0.35721302032470703, + -0.4566836357116699, + -0.22429557144641876, + 0.12909476459026337, + 0.012417403049767017, + -0.6860682964324951, + 0.35795918107032776, + -0.13622771203517914, + 0.26252517104148865, + 0.26259398460388184, + -0.35689735412597656, + -0.33739444613456726, + 0.0818556621670723, + 0.33913663029670715, + -0.16169042885303497, + -0.05352560803294182, + 0.02471647597849369, + -0.0776720866560936, + 0.121330626308918, + 0.41465631127357483, + 0.2792188823223114, + 0.2872600555419922, + 0.6834046244621277, + 0.0899701938033104, + -0.3981269299983978, + -0.04693607613444328, + -0.26971134543418884, + 0.4385688006877899, + -0.17042219638824463, + -0.14931532740592957, + -0.0599999837577343, + -0.043867338448762894, + -0.06377381831407547, + -0.2731002867221832, + -0.04694138094782829, + 0.24441593885421753, + 0.008808339945971966, + -0.2788238525390625, + 0.4257526397705078, + 0.1115109920501709, + -0.08385175466537476, + 0.5048245787620544, + -0.1555798500776291, + -0.24417805671691895, + 0.34888216853141785, + -0.3426004946231842, + 0.22615522146224976, + 0.008808969520032406, + -0.28673502802848816, + -0.3003964424133301, + 0.05139539763331413, + -0.34502169489860535, + -0.2658625841140747, + -0.02449219487607479, + -0.07350200414657593, + 0.11040198057889938, + -0.2807537019252777, + 0.11179796606302261, + 0.009942199103534222, + 0.11017898470163345, + 0.4192347526550293, + 0.22988517582416534, + 0.184701606631279, + -0.12026873975992203, + 0.3479163646697998, + -0.10247620195150375, + -0.24942795932292938, + -0.12268346548080444, + 0.21221022307872772, + -0.19662904739379883, + 0.4461817741394043, + 0.04159945249557495, + 0.14142479002475739, + 0.10593104362487793, + 0.061855997890233994, + -0.20490390062332153, + -0.46822962164878845, + -0.03860314562916756, + -0.16105276346206665, + 0.11965998262166977, + 0.190557599067688, + -0.010256897658109665, + -0.2813721299171448, + -0.1551939845085144, + 0.06711689382791519, + 0.11778897047042847, + 0.14302854239940643, + -0.14107969403266907, + -0.16728468239307404, + 0.49135708808898926, + 0.07164336740970612, + 0.45127585530281067, + -0.1909623146057129, + 0.15665926039218903, + 0.11800483614206314, + -0.5397899746894836, + 0.013170742429792881, + -0.13862930238246918, + -0.3737868368625641, + -0.19253157079219818, + 0.20895199477672577, + 0.3186688721179962, + -0.07408503443002701, + -0.09984464198350906, + 0.060611214488744736, + 0.14543874561786652, + -0.348100870847702, + -0.1540510356426239, + 0.36003580689430237, + -0.06094399094581604, + 0.3937849998474121, + -0.05874299630522728, + -0.34760522842407227, + -0.2623552978038788, + 0.08859413862228394, + -0.2901171147823334, + -0.022667154669761658, + 0.2832697331905365, + -0.07916132360696793, + -0.1425292044878006, + 0.1326168328523636, + -0.13694192469120026, + -0.1418275088071823, + 0.2724510133266449, + -0.24638283252716064, + 0.22834010422229767, + 0.12343543767929077, + -0.221838116645813, + -0.03425018489360809, + -0.18420948088169098, + -0.5320374965667725, + -0.16523142158985138, + 0.1479042023420334, + 0.20431165397167206, + -0.1775394231081009, + 0.17355172336101532, + 0.15988726913928986, + 0.009374994784593582, + -0.20599476993083954, + 0.052467528730630875, + -0.4612429440021515, + 0.4525350034236908, + -0.2156354933977127, + 0.026901021599769592, + -0.08519291132688522, + -0.11716751009225845, + 0.09584935754537582, + 0.07738078385591507, + 0.12694966793060303, + 0.2712271511554718, + 0.20680809020996094, + -0.0024925346951931715, + 0.5756165981292725, + 0.02436993084847927, + 0.28081056475639343, + 0.05823943391442299, + 0.030259931460022926, + 0.06704867631196976, + -0.37896212935447693, + -0.11861979961395264, + 0.3323400020599365, + -0.3686281144618988, + -0.2840619385242462, + 0.1828310340642929, + 0.10877863317728043, + -0.42314836382865906, + -0.4504970610141754, + 0.07378868013620377, + 0.05898439884185791, + -0.07149483263492584, + -0.13513541221618652, + -0.16826260089874268, + -0.12911589443683624, + -0.3820160925388336, + -0.2373398095369339, + 0.21127600967884064, + 0.5085600018501282, + 0.2673085629940033, + 0.2135663777589798, + -0.21979904174804688, + -0.4503312110900879, + 0.30176523327827454, + 0.32215574383735657, + -0.09726715832948685, + 0.11717647314071655, + -0.24285005033016205, + 0.2140655368566513, + 0.47870934009552, + -0.10752428323030472, + 0.16955821216106415, + 0.1446668654680252, + 0.2638823688030243, + 0.10832545161247253, + 0.04220486059784889, + -0.15616054832935333, + 0.038664255291223526, + -0.4631839692592621, + 0.21196091175079346, + -0.2794380187988281, + -0.2038167268037796, + 0.14990754425525665, + -0.19122880697250366, + -0.41357457637786865, + -0.16012141108512878, + 0.22182030975818634, + -0.08449427038431168, + -0.09431207925081253, + 0.10277131199836731, + 0.18134301900863647, + -0.058144256472587585, + -0.38909482955932617, + 0.2445492297410965, + -0.6146760582923889, + -0.30389106273651123, + 0.01361830998212099, + -0.09319836646318436, + -0.18402792513370514, + 0.08696040511131287, + 0.3508175313472748, + 0.7528955340385437, + 0.3685692250728607, + -0.02005128003656864, + 0.343692809343338, + 0.2714267671108246, + 0.3210121691226959, + -0.32269880175590515, + -10.40825366973877, + 0.017601242288947105, + -0.44092902541160583, + 0.7505715489387512, + -0.12366139143705368, + -0.059315115213394165, + 0.13619008660316467, + 0.13976691663265228, + 0.05618780478835106, + 0.20106862485408783, + -0.23765790462493896, + -0.026517145335674286, + 0.3326139748096466, + 0.5158229470252991, + 0.12033945322036743, + 0.11869502812623978, + -0.22470177710056305, + 0.1640101820230484, + -0.0807146355509758, + 0.1930171102285385, + 0.04108398035168648, + 0.35677197575569153, + -0.2760326564311981, + 0.20379598438739777, + -0.125321164727211, + -0.44563785195350647, + -0.19928254187107086, + 0.49136045575141907, + 0.3891371786594391, + -0.4508388936519623, + 0.2920176684856415, + 0.32036012411117554, + -0.23178739845752716, + 0.4702413082122803, + -0.11725304275751114, + -0.105715811252594, + 0.026271715760231018, + 0.1812642365694046, + 0.41709104180336, + -0.10408627986907959, + 0.1026412844657898, + -0.19996733963489532, + 0.3539188802242279, + 0.044561516493558884, + -0.12356222420930862, + -0.5086995959281921, + -0.16619712114334106, + -1.6481399536132812, + 0.13749819993972778, + 0.3567114770412445, + 0.28401145339012146, + 0.11268830299377441, + 0.19846904277801514, + 0.40098345279693604, + -0.15096034109592438, + -0.09812053292989731, + -0.4134500324726105, + -0.049528613686561584, + 0.09485820680856705, + -0.013139300979673862, + 0.14825382828712463, + -0.13923116028308868, + 0.35664406418800354, + 0.004551122430711985, + -0.3896462917327881, + 0.0828138217329979, + 0.07651215046644211, + -0.19701051712036133, + -0.461948961019516, + -0.7615580558776855, + -0.4095878601074219, + 0.0819731056690216, + -0.17821800708770752, + -0.22230295836925507, + 0.3233569860458374, + -0.007336615119129419, + -0.23833422362804413, + 0.39191046357154846, + 0.032665178179740906, + 0.3418463170528412, + 0.32827436923980713, + -0.10585292428731918, + 0.26254525780677795, + -0.20861183106899261, + -0.2828517258167267, + -0.21104390919208527, + 0.2639690637588501, + 0.5363162755966187, + 0.03969647362828255, + -0.31623703241348267, + 0.023540453985333443, + 0.3397761881351471, + 0.11036422848701477, + -0.12211201339960098, + -0.4517713487148285, + -0.027815021574497223, + 0.06292741745710373, + 0.08483344316482544, + 0.08375366777181625, + -0.21984009444713593, + -0.21042390167713165, + 0.13507585227489471, + -0.11865595728158951, + -0.5174440741539001, + -0.5089638829231262, + 0.21873657405376434, + 0.1296745091676712, + 0.17031316459178925, + 0.18363533914089203, + -0.12844663858413696, + -0.2018030434846878, + -0.008486375212669373, + 0.37689754366874695, + 0.3099379539489746, + 0.23536650836467743, + -0.15182483196258545, + 0.059665072709321976, + -0.3599013090133667, + -0.15936322510242462, + -0.14405733346939087, + 0.49020853638648987, + -0.18524299561977386, + 0.025846228003501892, + 0.6813861727714539, + 0.06894811242818832, + 0.007173473481088877, + 0.9081423878669739, + -0.4097316563129425, + 0.32971152663230896, + -0.0446179062128067, + 0.19561684131622314, + 0.1985386162996292, + -0.3553820550441742, + 0.22090375423431396, + 0.38992586731910706, + -0.2867406904697418, + 0.6361806988716125, + 0.4314461052417755, + -0.28546491265296936, + -0.05208525061607361, + -0.004079336766153574, + 0.42014583945274353, + 0.1342659592628479, + 0.04198996350169182, + 0.02967180870473385, + -0.20365439355373383, + -0.4606381356716156, + -0.017954250797629356, + -0.29516854882240295, + -0.20204538106918335, + -0.28662458062171936, + 0.15654490888118744, + 0.12256547063589096, + 0.01634504459798336, + 0.2017688900232315, + 0.22405584156513214, + 0.09737098962068558, + -0.30528154969215393, + -0.37543025612831116, + -0.071438267827034, + -0.09059157222509384, + 1.0452958345413208, + -0.0796094462275505, + -0.04549512267112732, + -0.03188043832778931, + 0.09997353702783585, + -0.16423743963241577, + 0.19417624175548553, + 0.05807309225201607, + -0.0678180456161499, + -0.46195724606513977, + 0.3389154374599457, + 0.20416176319122314, + -0.5145459175109863, + -0.03079431690275669, + -0.07592789828777313, + -0.1882951855659485, + -0.06498304009437561, + -0.08902623504400253, + 0.12206214666366577, + 0.32246077060699463, + 0.09924134612083435, + 0.16828472912311554, + -0.35444164276123047, + -0.10631731897592545, + 0.13144825398921967, + 0.30434897541999817, + 0.05582847818732262, + -0.3187164068222046, + -0.176213800907135, + -0.4796113073825836, + 0.2694871723651886, + -0.36351969838142395, + -0.0713631883263588, + 0.07081777602434158, + 0.028287231922149658, + -0.2617647647857666, + 0.09145715087652206, + -0.019603872671723366, + 0.035746000707149506, + -0.2948511242866516, + 0.5913751721382141, + 0.23290474712848663, + -0.271211713552475, + 0.2973516881465912, + -0.10398947447538376, + 0.10752678662538528, + 0.1278497874736786, + -0.28075602650642395, + 0.005139946937561035, + -0.3862721025943756 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_064.json b/src/benchmark/output/results/results_graph_064.json new file mode 100644 index 0000000..5a1a564 --- /dev/null +++ b/src/benchmark/output/results/results_graph_064.json @@ -0,0 +1,792 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 44-year-old asymptomatic nulliparous woman. She presented with a palpable pelvic mass, which was later identified as an anterior wall uterine leiomyoma on gynecological sonography.\n\n**Timeline of Diagnoses and Treatments:**\n\n1. **Step 1 (N1):**\nThe patient presented with a palpable pelvic mass in January 2010. Physical examination revealed an enlarged uterus, which was mobile, firm in consistency, with no uterine or forniceal tenderness, and mild swelling in the right pubic area.\n\n2. **Step 2 (N2):**\nGynecological sonography on January 30, 2010, identified an anterior wall uterine leiomyoma, measuring 112\u00d794\u00d7108 mm, accompanied by ascites measuring 65\u00d742 mm and a 20\u00d714 mm mass.\n\n3. **Step 3 (N3):**\nLaparotomic myomectomy was performed on February 17, 2020, with incidental discovery of a pelvic tumor. The pelvic tumor described as a cauliflower-like lesion disseminated across the right pelvic wall, cul-de-sac, anterior uterine surface, bladder, and colon.\n\n4. **Step 4 (N4):**\nBiopsy of the sigmoid colon serosa was performed, revealing proliferative mesothelial cells without significant atypia or necrosis. Post-myomectomy CT scan revealed seeding in the lower pelvis, characterized by multiple small, heterogeneous, enhancing nodules on the peritoneum and a prominent soft-tissue mass in the right adnexa.\n\n5. **Step 5 (N5):**\nAnother CT scan performed on February 26th, 2020, revealed moderate ascites and nonspecific peritoneal thickening. Histopathology identified bland mesothelial cells without invasion, and immunohistochemistry showed no significant staining loss. Differential diagnosis included well-differentiated papillary mesothelioma, epithelioid peritoneal mesothelioma, and florid mesothelial hyperplasia; well-differentiated papillary mesothelioma was highly suspected.\n\n**Outcomes:**\n\nThe patient underwent a series of procedures, including laparotomic myomectomy, biopsy, histopathology, and immunohistochemistry. The results of these procedures led to the diagnosis of a pelvic tumor with seeding in the lower pelvis. Despite the presence of seeding, the patient's condition was managed conservatively, with no further surgical interventions reported.\n\n**Conclusion:**\nThis case highlights the complexities of managing a patient with a pelvic mass and subsequent discovery of a pelvic tumor with seeding. The patient's presentation and diagnostic workup led to a series of procedures that ultimately resulted in a diagnosis of a mesothelial tumor. While the patient's condition was managed conservatively, further follow-up is necessary to monitor for any progression or recurrence of the disease.\n\n**Recommendations:**\n\n1. Further imaging studies should be performed to assess the extent of seeding and monitor for any progression or recurrence of the disease.\n2. The patient should be followed up regularly with a multidisciplinary team, including oncologists, radiologists, and pathologists.\n3. Additional diagnostic procedures, such as PET scans or CT scans, may be necessary to further evaluate the patient's condition.\n\n**Limitations:**\n\nThis case report is limited by its retrospective nature and the availability of data. Further research is needed to better understand the management and outcomes of patients with pelvic tumors and seeding.", + "bertscore": { + "precision": 0.7205074429512024, + "recall": 0.7689757943153381, + "f1": 0.7439529895782471 + }, + "bleu": 0.020398040132653002, + "rouge1": 0.21212121212121213, + "rougeL": 0.13468013468013468, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 5, + "edge_count": 4, + "avg_in_degree": 0.8, + "density": 0.2 + }, + "trajectory_embedding": [ + 0.33560317754745483, + -0.032035164535045624, + -0.11456692218780518, + 0.1346358358860016, + 0.020706722512841225, + 0.00046664924593642354, + 0.1556069552898407, + 0.050799597054719925, + 0.29955029487609863, + -0.3043522834777832, + -0.21893103420734406, + 0.13041041791439056, + -0.5819693207740784, + -0.027642954140901566, + -0.3483089804649353, + 0.05678959935903549, + 0.08175595104694366, + 0.18470464646816254, + 0.07032836973667145, + -0.1516115516424179, + -0.3795337677001953, + 0.032354261726140976, + -0.34762853384017944, + -0.22245562076568604, + 0.2131357640028, + -0.0658518522977829, + 0.011187409982085228, + 0.4108278751373291, + 0.22763344645500183, + 0.22971227765083313, + 0.15224574506282806, + 0.1498984396457672, + -0.15490344166755676, + -0.04655313491821289, + -0.22414235770702362, + 0.4316777288913727, + 0.3122991621494293, + 0.3148569166660309, + -0.10164471715688705, + 0.11181680858135223, + -0.11857211589813232, + 0.072939932346344, + 0.7276207804679871, + 0.5894370675086975, + 0.5643633008003235, + -0.5973739624023438, + 0.045762799680233, + 0.42931610345840454, + -0.6271008253097534, + -0.33162400126457214, + 0.3009917736053467, + 0.8356558680534363, + 0.6982433199882507, + -0.13345390558242798, + 0.427293062210083, + -0.055330127477645874, + -0.1970469057559967, + -0.2082684487104416, + -0.28132063150405884, + 0.0707617849111557, + 0.08441466093063354, + -0.03799280896782875, + -0.046762190759181976, + 0.10460342466831207, + -0.3640845715999603, + -0.22343210875988007, + -0.3437555730342865, + -0.05723061040043831, + -0.02330029010772705, + -0.43740272521972656, + -0.18157999217510223, + -0.1682252585887909, + -0.13557171821594238, + -0.017114270478487015, + 0.0007291227811947465, + -0.1402357667684555, + 0.2427610456943512, + 0.07756771892309189, + -0.14562609791755676, + -0.08803218603134155, + -0.05296463891863823, + -0.06846114248037338, + 0.23501446843147278, + 0.2003447562456131, + -0.46018290519714355, + 0.07143741846084595, + -0.09776132553815842, + -0.0718153566122055, + -0.26666712760925293, + 0.27199918031692505, + 0.2733019292354584, + -0.14292141795158386, + -0.017898693680763245, + -0.04234260320663452, + 0.27673250436782837, + -0.020977124571800232, + 0.25201481580734253, + 0.4361487030982971, + 1.0113563537597656, + 0.12119171768426895, + 0.20306091010570526, + 0.23786409199237823, + 0.26452866196632385, + -0.12299710512161255, + 0.4842044413089752, + 0.06933087855577469, + 0.18963052332401276, + -0.44958558678627014, + -0.06302215158939362, + -0.01591341756284237, + -0.0806119441986084, + -0.03527894616127014, + 0.0203951857984066, + -0.43035799264907837, + 0.05068916082382202, + 0.019635310396552086, + -0.1544349640607834, + 0.011310997419059277, + -0.02003743126988411, + -0.25159940123558044, + -0.02532372809946537, + -0.21257519721984863, + 0.3038928508758545, + 0.35977864265441895, + -0.4075821042060852, + 0.03794197738170624, + -0.12353910505771637, + 0.25676435232162476, + -0.0716257318854332, + 0.2026764452457428, + -0.5808151364326477, + 0.0740826204419136, + -0.08215422183275223, + 0.4875335693359375, + -0.14100992679595947, + 0.14344120025634766, + -0.5816518664360046, + 0.2766825556755066, + -1.0389540195465088, + 0.2509419322013855, + -0.3951149582862854, + -0.01660017855465412, + 0.14995422959327698, + -0.22423258423805237, + -0.1081976667046547, + -0.12171987444162369, + -0.1163778081536293, + 0.29509443044662476, + 0.09899212419986725, + 0.05243415758013725, + -0.24585866928100586, + 0.18484219908714294, + 0.3383546471595764, + 0.1773250550031662, + 0.16008874773979187, + 0.23528365790843964, + 0.1562768518924713, + 0.32315993309020996, + 0.24902641773223877, + -0.10990337282419205, + -0.0147356316447258, + 0.1579272598028183, + 0.0060639409348368645, + -0.36261242628097534, + 0.16927000880241394, + -0.6561983823776245, + 0.26251330971717834, + -0.4186895489692688, + 0.23464255034923553, + -0.10785496234893799, + -0.1942734271287918, + 0.3496845066547394, + -0.1438242644071579, + 0.40089112520217896, + 0.28135114908218384, + 0.27764075994491577, + 0.12174657732248306, + -0.053034208714962006, + 0.1735358089208603, + 0.1698169857263565, + 0.09189990907907486, + -0.06263132393360138, + 0.6606196165084839, + 0.12165489047765732, + -0.17571207880973816, + 0.30642104148864746, + 0.38385438919067383, + -0.14679065346717834, + -0.17179706692695618, + -0.044077347964048386, + 0.4863673150539398, + -0.21029385924339294, + 0.4112943112850189, + -0.2600322663784027, + -0.01379256509244442, + 0.1494172066450119, + -0.2872883379459381, + -0.18621478974819183, + 0.13532006740570068, + -0.028694670647382736, + 0.3737735152244568, + 0.15056683123111725, + -0.13684657216072083, + 0.19906941056251526, + 0.23984622955322266, + 0.08346773684024811, + 0.38823848962783813, + 0.275332510471344, + 0.13147124648094177, + -0.22103330492973328, + -0.2693495750427246, + 0.16843147575855255, + -0.003161512315273285, + 0.12250424921512604, + 0.0422867126762867, + -0.12192821502685547, + 0.3981272280216217, + -0.1597909927368164, + -0.1717352718114853, + 0.30824556946754456, + -0.18251577019691467, + -0.03598945215344429, + 0.3633285164833069, + -0.1353255808353424, + -0.2657017111778259, + 0.06870225071907043, + 0.022413786500692368, + 0.20148810744285583, + 0.21683335304260254, + 0.07008782029151917, + 0.11414499580860138, + -0.26550567150115967, + 0.2345420867204666, + -0.13706141710281372, + -0.08283475041389465, + -0.22081542015075684, + 0.1407686471939087, + -0.24368230998516083, + -0.214861199259758, + 0.4414401948451996, + -0.2712688446044922, + -0.2730482518672943, + 0.06619233638048172, + -0.18487019836902618, + -0.1616365909576416, + -0.38689324259757996, + 0.05900753661990166, + 0.2616967260837555, + 0.0634087473154068, + 0.2613607943058014, + 0.08268435299396515, + -0.20808109641075134, + 0.24636872112751007, + -0.27626949548721313, + -0.17884041368961334, + -0.38042113184928894, + -0.11751596629619598, + -0.1295323520898819, + -0.2846967577934265, + 0.09537354856729507, + 0.11598465591669083, + -0.13226722180843353, + -0.07906992733478546, + -0.4564613401889801, + -0.1831643432378769, + -0.10851426422595978, + -0.045731447637081146, + 0.15401139855384827, + 0.0413057766854763, + 0.2574419379234314, + -0.32416266202926636, + -0.25036460161209106, + -0.10724109411239624, + 0.027393454685807228, + 0.18335479497909546, + 0.24615971744060516, + -0.07185234874486923, + 0.01997610554099083, + 0.2149784117937088, + -0.4187377393245697, + -0.5654075145721436, + 0.22487160563468933, + -0.20692682266235352, + 0.14642928540706635, + -0.001559130847454071, + 0.1295344978570938, + 0.38583385944366455, + -0.1442580223083496, + 0.09612281620502472, + 0.5535184741020203, + 0.481480211019516, + 0.10034594684839249, + 0.03558123856782913, + 0.07914243638515472, + 0.02632269822061062, + -0.06944473832845688, + -0.381732702255249, + 0.3589501976966858, + -0.08561427146196365, + 0.002281930996105075, + 0.114282988011837, + 0.20286378264427185, + -0.1481705605983734, + -0.4674918055534363, + -0.31998685002326965, + 0.5454086661338806, + 0.32933488488197327, + -0.03318002074956894, + -0.07517983019351959, + 0.2862533926963806, + 0.6337651610374451, + 0.013185607269406319, + -0.23809675872325897, + 0.07214036583900452, + -0.04003562405705452, + -0.2164071500301361, + -0.14531919360160828, + 0.1477869600057602, + 0.27610671520233154, + -0.1055360808968544, + -0.20622774958610535, + 0.47358861565589905, + -0.1402096003293991, + -0.07512059807777405, + -0.01859874837100506, + -0.037761442363262177, + -0.02976355329155922, + -0.23252353072166443, + 0.19876812398433685, + -0.06478234380483627, + -0.1322105973958969, + 0.39888936281204224, + -0.05361371114850044, + -0.3154321610927582, + 0.29998666048049927, + 0.014129179529845715, + -0.3622787296772003, + 0.25742030143737793, + -0.03589904308319092, + -0.16614016890525818, + 0.3914344012737274, + 0.003187321126461029, + -0.0462554469704628, + -0.2460150271654129, + 0.33470723032951355, + 0.1183033436536789, + -0.18595406413078308, + -0.21344678103923798, + -0.13997238874435425, + 0.21350303292274475, + 0.6959315538406372, + -0.10287053883075714, + 0.21839690208435059, + 0.5774563550949097, + -0.09644024819135666, + -0.19528737664222717, + -0.027076173573732376, + 0.2793784737586975, + 0.25700095295906067, + -0.35905465483665466, + -0.08900097757577896, + -0.3963938355445862, + -0.05389058589935303, + 0.20246699452400208, + -0.18120642006397247, + 0.03622838109731674, + 0.21789076924324036, + 0.0780276507139206, + 0.15445590019226074, + 0.10744788497686386, + 0.13094612956047058, + 0.009495136328041553, + 0.3329838216304779, + 0.07381661236286163, + -0.0456281341612339, + 0.20400682091712952, + -0.12625308334827423, + 0.3132331967353821, + -0.19864359498023987, + -0.39620643854141235, + -0.49883824586868286, + -0.2061084806919098, + -0.27710872888565063, + -0.24107220768928528, + 0.030064856633543968, + -0.05576012283563614, + -0.010668491944670677, + -0.06476755440235138, + 0.3926456868648529, + -0.06282313168048859, + 0.2021419107913971, + -0.07967887818813324, + 0.6277588605880737, + -0.11692110449075699, + -0.40754079818725586, + -0.02295638993382454, + 0.1284984052181244, + 0.21615925431251526, + -0.22891780734062195, + -0.12953020632266998, + -0.29672563076019287, + 0.43222755193710327, + 0.08325879275798798, + -0.1885521411895752, + -0.07056255638599396, + -0.08609067648649216, + -0.19559144973754883, + -0.2925633192062378, + -0.4121498167514801, + -0.16911400854587555, + -0.10310044139623642, + -0.07868444174528122, + 0.2910645306110382, + -0.26348617672920227, + -0.4337734580039978, + -0.01331852376461029, + 0.3241409659385681, + 0.15768426656723022, + -0.07038985192775726, + 0.2847890257835388, + 0.01419221144169569, + 0.03919692710042, + 0.4566080570220947, + -0.011020423844456673, + 0.10359295457601547, + 0.15255188941955566, + -0.1628478467464447, + -0.14622226357460022, + 0.03475236892700195, + -0.27461326122283936, + -0.16276094317436218, + 0.285914808511734, + 0.07612387835979462, + 0.2138102501630783, + 0.1366858184337616, + 0.07779347151517868, + 0.22664165496826172, + -0.41434383392333984, + -0.05467502027750015, + 0.31234967708587646, + 0.2673739790916443, + 0.4871460497379303, + -0.2253309190273285, + -0.14807210862636566, + -0.2353394478559494, + -0.09087810665369034, + -0.39372682571411133, + 0.18194475769996643, + 0.005927999969571829, + -0.06474979221820831, + -0.24133582413196564, + 0.06416954100131989, + -0.02843792364001274, + -0.054334986954927444, + 0.24924448132514954, + 0.01792779006063938, + 0.0785948634147644, + -0.06673279404640198, + -0.36065083742141724, + -0.05349283665418625, + -0.19382253289222717, + -0.4077865481376648, + -0.4806350767612457, + 0.6206315159797668, + 0.29612261056900024, + 0.04115890711545944, + 0.23263534903526306, + 0.1921098381280899, + -0.2738867402076721, + -0.3647075891494751, + 0.09540901333093643, + -0.006288842763751745, + 0.5018874406814575, + 0.06922896206378937, + -0.09539033472537994, + 0.20160822570323944, + -0.5012338757514954, + 0.17781813442707062, + 0.20920196175575256, + -0.04464862868189812, + 0.4938294291496277, + 0.3065129816532135, + 0.3138893246650696, + 0.34178298711776733, + 0.20569360256195068, + -0.14844182133674622, + 0.3235245943069458, + 0.1012946143746376, + -0.08699314296245575, + -0.24855592846870422, + -0.062219809740781784, + 0.3322758078575134, + -0.24630972743034363, + 0.2030840367078781, + 0.12496839463710785, + 0.34996530413627625, + -0.32092684507369995, + -0.23372086882591248, + -0.1261737048625946, + -0.04753397777676582, + -0.22952120006084442, + -0.2769433856010437, + -0.24786034226417542, + 0.12369358539581299, + -0.509034276008606, + 0.10922491550445557, + 0.2630237936973572, + 0.19023403525352478, + 0.1711912453174591, + -0.024832207709550858, + -0.32518839836120605, + -0.3768353760242462, + -0.02831302583217621, + 0.28463083505630493, + -0.06335188448429108, + 0.0639704167842865, + -0.12866613268852234, + 0.11760225147008896, + 0.5313243269920349, + -0.03812999650835991, + -0.06942366063594818, + -0.1156844049692154, + -0.027204781770706177, + -0.0548255555331707, + 0.14261110126972198, + -0.07800968736410141, + 0.07844690978527069, + -0.30221810936927795, + 0.1406601071357727, + -0.24469947814941406, + -0.3127005994319916, + 0.2706459164619446, + -0.1956145465373993, + -0.2804684638977051, + -0.3323759138584137, + 0.33920666575431824, + -0.2830282151699066, + 0.022267667576670647, + 0.014432420954108238, + 0.4148065149784088, + 0.0969894751906395, + -0.03911527618765831, + 0.04702569544315338, + -0.403374582529068, + -0.09830044955015182, + 0.05851547792553902, + -0.1453237533569336, + 0.1991727650165558, + -0.03692428022623062, + 0.36958998441696167, + 0.3868367671966553, + 0.16010256111621857, + -0.3434354364871979, + -0.025588780641555786, + 0.19180041551589966, + 0.20981967449188232, + -0.30631643533706665, + -10.883829116821289, + 0.12041393667459488, + -0.07875798642635345, + 0.5608879923820496, + -0.1739535629749298, + 0.06960147619247437, + 0.04744551703333855, + 0.028127823024988174, + 0.11305008083581924, + 0.1510947048664093, + -0.21851029992103577, + 0.21622943878173828, + 0.2982082962989807, + 0.32255497574806213, + -0.12886327505111694, + -0.038390081375837326, + -0.20238849520683289, + 0.2114648073911667, + -0.142917662858963, + 0.13894900679588318, + 0.15419067442417145, + 0.32208576798439026, + -0.06742260605096817, + 0.2518003582954407, + 0.20575420558452606, + -0.33785536885261536, + -0.3811854124069214, + 0.5696561336517334, + 0.18351851403713226, + -0.3555838465690613, + 0.5340484380722046, + 0.14739397168159485, + -0.23907318711280823, + -0.03446248918771744, + -0.07289380580186844, + 0.01998709701001644, + -0.04670310392975807, + -0.01828787848353386, + 0.1966160088777542, + 0.014986643567681313, + -0.071186862885952, + -0.3916344940662384, + -0.034107841551303864, + 0.3472280502319336, + -0.06375177204608917, + -0.3470641076564789, + -0.19369371235370636, + -1.3896539211273193, + 0.2696584463119507, + 0.15727689862251282, + 0.5652212500572205, + 0.03639747202396393, + 0.09248635917901993, + 0.09212083369493484, + -0.4373280107975006, + 0.19878676533699036, + -0.3496972918510437, + -0.03144214674830437, + 0.04079236462712288, + -0.24454693496227264, + 0.04831955209374428, + -0.26963478326797485, + 0.23124714195728302, + -0.3462902009487152, + -0.3817715644836426, + 0.25806501507759094, + -0.1288265585899353, + 0.026332980021834373, + -0.06867487728595734, + -0.036075081676244736, + -0.6097730994224548, + -0.14585956931114197, + -0.025156598538160324, + 0.07111582905054092, + 0.5177943110466003, + 0.049514807760715485, + -0.529831051826477, + 0.13862037658691406, + -0.10304449498653412, + 0.48017340898513794, + 0.07198216766119003, + -0.04638935998082161, + 0.20140233635902405, + -0.22813229262828827, + -0.15570572018623352, + 0.07385534793138504, + 0.17245908081531525, + 0.5296483039855957, + -0.07032891362905502, + 0.08131518214941025, + 0.10733769088983536, + 0.136903777718544, + -0.1809205710887909, + -0.1695035696029663, + -0.3725152611732483, + 0.22701768577098846, + -0.0445411391556263, + -0.06289853900671005, + 0.20032009482383728, + -0.12726131081581116, + -0.09268026053905487, + -0.1012594923377037, + -0.03822965547442436, + -0.44754868745803833, + -0.328389048576355, + 0.3224477469921112, + 0.11855292320251465, + 0.3316042125225067, + 0.19742831587791443, + 0.10067053884267807, + 0.06955144554376602, + 0.013529536314308643, + 0.296440452337265, + 0.47831887006759644, + 0.026710275560617447, + -0.11027918756008148, + -0.12863551080226898, + -0.0695943832397461, + -0.41708260774612427, + 0.1842915117740631, + 0.3275899291038513, + -0.23778459429740906, + 0.29992133378982544, + 0.6300154328346252, + 0.0042360154911875725, + -0.11082752048969269, + 1.0828417539596558, + -0.1962750256061554, + 0.24483975768089294, + -0.15790808200836182, + 0.1336795836687088, + -0.30219465494155884, + -0.18810676038265228, + 0.1910901963710785, + 0.32831501960754395, + -0.2948533892631531, + 0.5665644407272339, + 0.12137497961521149, + -0.5611319541931152, + 0.12389020621776581, + -0.42432349920272827, + 0.46737805008888245, + 0.3487494885921478, + 0.24224750697612762, + -0.20100092887878418, + -0.47824016213417053, + -0.10228542238473892, + 0.03461415320634842, + -0.37174034118652344, + -0.08808693289756775, + -0.18931035697460175, + 0.042588599026203156, + -0.10387172549962997, + -0.2862917482852936, + 0.35212647914886475, + 0.0404648557305336, + -0.24441155791282654, + -0.21441979706287384, + -0.529125988483429, + -0.12590175867080688, + 0.13167528808116913, + 0.5254259705543518, + -0.024559425190091133, + -0.112767294049263, + -0.0473635196685791, + 0.1579911857843399, + 0.02512630820274353, + 0.05093712732195854, + 0.09656459093093872, + 0.005491861142218113, + -0.5059370994567871, + -0.017622647807002068, + 0.14112888276576996, + -0.1867193877696991, + -0.2941269874572754, + -0.4297026991844177, + 0.14765973389148712, + -0.23978658020496368, + -0.0937226191163063, + 0.1619885265827179, + 0.10663392394781113, + 0.009553092531859875, + 0.15573135018348694, + -0.31531357765197754, + 0.15864798426628113, + -0.028239702805876732, + 0.3077250123023987, + -0.02186582051217556, + -0.3958908021450043, + -0.3308035731315613, + -0.42296576499938965, + 0.3263550400733948, + -0.14208748936653137, + 0.0496726855635643, + 0.0726565569639206, + 0.2825194299221039, + -0.23277647793293, + -0.09760838001966476, + -0.4335680902004242, + 0.10552122443914413, + -0.3766399919986725, + -0.018738679587841034, + 0.38841864466667175, + -0.19129742681980133, + -0.0953783243894577, + -0.14685487747192383, + 0.036095038056373596, + -0.03208252042531967, + -0.37713712453842163, + 0.22937937080860138, + -0.07395924627780914 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_065.json b/src/benchmark/output/results/results_graph_065.json new file mode 100644 index 0000000..a7b8d91 --- /dev/null +++ b/src/benchmark/output/results/results_graph_065.json @@ -0,0 +1,792 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 56-year-old male with occupational exposure to asbestos as a tunnel inspector. He presented to the emergency room with cough, low back pain, and abdominal pain.\n\n**Timeline of Diagnoses:**\n\n1. **Initial Presentation (October 28, 2023):** The patient was evaluated at the emergency room due to symptoms of cough, low back pain, and abdominal pain. A CT angiogram of the chest was performed, which revealed a large left pleural effusion tracking to the lung apex with near complete opacification of the left lower lobe, a 6-cm left lower lobe mass, and 4-cm left hilar mass with mediastinal adenopathy and pleural nodularity.\n2. **Surgical Intervention (November 9, 2023):** The patient underwent left video-assisted thorascopic surgery with total left lung decortication, removal of fibrin deposits, and placement of a pleural drainage catheter requiring daily drainage.\n3. **Pathology and Imaging Results (November 29, 2023):** Pathology from the left pleural mass revealed malignant epithelial neoplasm with 70% spindle cell and 30% epithelioid cell components consistent with biphasic MPM. PET imaging confirmed advanced disease with extensive left-sided pleural involvement, bilateral mediastinal adenopathy, adrenal, and scattered bone lesions.\n4. **Immune Checkpoint Inhibitor Therapy (December 4, 2023):** The patient began receiving immune checkpoint inhibitor therapy with nivolumab and ipilimumab, which showed initial improvement in pleural drainage output.\n\n**Timeline of Symptoms:**\n\n1. **Initial Presentation:** Cough, low back pain, and abdominal pain.\n2. **Post-Surgical Complication (December 4, 2023):** Lower back pain, lower extremity numbness, and inability to walk after one cycle of therapy.\n\n**Treatment Outcomes:**\nThe patient's treatment with immune checkpoint inhibitors showed initial improvement in pleural drainage output. However, a new symptom of lower back pain, lower extremity numbness, and inability to walk developed after one cycle of therapy, indicating potential side effects or progression of the disease.\n\nThis clinical case report highlights the importance of early diagnosis and treatment of malignant pleural mesothelioma (MPM), as well as the need for careful monitoring of patients receiving immune checkpoint inhibitors.", + "bertscore": { + "precision": 0.8396786451339722, + "recall": 0.8474234938621521, + "f1": 0.8435333371162415 + }, + "bleu": 0.16483788813818426, + "rouge1": 0.5029126213592232, + "rougeL": 0.3572815533980583, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 6, + "edge_count": 5, + "avg_in_degree": 0.8333333333333334, + "density": 0.16666666666666666 + }, + "trajectory_embedding": [ + 0.1652541607618332, + 0.039438892155885696, + -0.14641372859477997, + 0.18929584324359894, + 0.14937780797481537, + 0.1875849962234497, + -0.10926973819732666, + 0.32221996784210205, + 0.5160953402519226, + -0.21352215111255646, + -0.1066395565867424, + 0.04818613827228546, + -0.5228782296180725, + -0.10994511842727661, + -0.18322902917861938, + 0.2892516553401947, + -0.11534184217453003, + 0.24044062197208405, + 0.026726022362709045, + -0.21000735461711884, + -0.39076241850852966, + 0.10443174093961716, + -0.5317621827125549, + 0.018876194953918457, + 0.12694860994815826, + -0.056921202689409256, + 0.4481050670146942, + 0.6197983622550964, + 0.3282276391983032, + 0.4314173758029938, + 0.030062491074204445, + -0.23560656607151031, + 0.19153659045696259, + -0.07723374664783478, + -0.28160423040390015, + 0.24283885955810547, + -0.001099617569707334, + 0.32391342520713806, + -0.1220952495932579, + 0.05494336411356926, + 0.033832333981990814, + 0.09665459394454956, + 0.7754995822906494, + 0.1367119997739792, + 0.49934151768684387, + -0.7912638783454895, + -0.12291689962148666, + 0.5892982482910156, + -0.5710733532905579, + -0.4964151382446289, + 0.25105077028274536, + 0.7749610543251038, + 0.5300043225288391, + -0.4333530366420746, + 0.4474921226501465, + -0.24401365220546722, + -0.2492191195487976, + -0.43112626671791077, + -0.34976091980934143, + -0.06265155225992203, + 0.011767860502004623, + -0.2936820387840271, + 0.42574942111968994, + -0.42795681953430176, + -0.07472843676805496, + -0.2092389613389969, + -0.2546403408050537, + 0.051758017390966415, + 0.058273136615753174, + -0.35516366362571716, + -0.15378005802631378, + -0.2871567904949188, + -0.04860498383641243, + 0.014323265291750431, + 0.04791118577122688, + 0.02426183968782425, + 0.3211006224155426, + -0.19132550060749054, + 0.23720364272594452, + 0.12217091768980026, + -0.24488665163516998, + -0.041259121149778366, + -0.06983067840337753, + 0.4556575119495392, + -0.38383063673973083, + -0.03157388046383858, + -0.2471301108598709, + -0.26424941420555115, + -0.3909715712070465, + 0.10016978532075882, + 0.031601689755916595, + -0.3851616382598877, + 0.04937880113720894, + -0.1855396181344986, + 0.06385422497987747, + 0.08545226603746414, + 0.5294673442840576, + 0.08534722775220871, + 0.8456420302391052, + -0.08549866080284119, + 0.10749156028032303, + -0.10654956102371216, + 0.2888645827770233, + -0.06400411576032639, + 0.36680254340171814, + 0.049483466893434525, + 0.08266838639974594, + -0.5948764681816101, + 0.30583080649375916, + 0.5356130599975586, + 0.015617611818015575, + -0.23994795978069305, + 0.0827704444527626, + -0.3229733407497406, + 0.30386385321617126, + 0.20920944213867188, + 0.06012508273124695, + 0.21136145293712616, + 0.17870204150676727, + -0.31595978140830994, + -0.23347772657871246, + -0.011881351470947266, + 0.33385777473449707, + 0.11741405725479126, + -0.5669156908988953, + -0.026554131880402565, + -0.19358831644058228, + 0.06251541525125504, + 0.013346116058528423, + -0.026631169021129608, + -0.47243937849998474, + -0.11795071512460709, + 0.1069725826382637, + 0.10357528924942017, + 0.008108035661280155, + 0.19503797590732574, + -0.31370091438293457, + 0.16570349037647247, + -1.0394198894500732, + 0.3344894349575043, + -0.32096317410469055, + -0.16416674852371216, + 0.01839795894920826, + -0.5803526043891907, + -0.3326651155948639, + -0.1735600084066391, + -0.216802716255188, + 0.14950044453144073, + -0.13621945679187775, + -0.17232643067836761, + -0.10140856355428696, + -0.008820722810924053, + 0.17567966878414154, + 0.5561952590942383, + 0.15486718714237213, + 0.008536783047020435, + 0.07802999764680862, + 0.1812390834093094, + -0.038269806653261185, + -0.16715329885482788, + 0.10598593950271606, + 0.4629107415676117, + 0.2273872047662735, + 0.00950538832694292, + -0.1037626788020134, + -0.6091808676719666, + -0.027142243459820747, + -0.14075349271297455, + 0.15631546080112457, + 0.18644209206104279, + -0.28414398431777954, + 0.11554819345474243, + -0.5001252889633179, + 0.6827899813652039, + -0.0455966480076313, + 0.3976258933544159, + 0.09679439663887024, + -0.041496288031339645, + 0.2532375752925873, + 0.21561479568481445, + 0.18428118526935577, + -0.34162986278533936, + 0.7105341553688049, + 0.1768902689218521, + -0.19923712313175201, + 0.3483537435531616, + 0.32274457812309265, + -0.04187555983662605, + -0.20554129779338837, + 0.09012087434530258, + 0.49703142046928406, + -0.21993057429790497, + 0.5850445628166199, + -0.21109718084335327, + -0.036739248782396317, + 0.19470208883285522, + -0.3020554482936859, + -0.16263176500797272, + -0.08351150900125504, + 0.05219811201095581, + 0.3030013144016266, + 0.03692315146327019, + -0.3244953155517578, + -0.042577292770147324, + 0.13607238233089447, + -0.06327202171087265, + 0.32354435324668884, + -0.08207744359970093, + 0.09247535467147827, + 0.07329896092414856, + -0.18565885722637177, + 0.23337139189243317, + -0.17554421722888947, + 0.29211652278900146, + -0.05942178890109062, + -0.3735121488571167, + 0.3001287281513214, + -0.06274455785751343, + -0.15084581077098846, + 0.2736443281173706, + 0.1128845140337944, + -0.40210017561912537, + -0.10129330307245255, + -0.05615416169166565, + -0.6754670739173889, + 0.17577815055847168, + 0.23239417374134064, + 0.30690014362335205, + 0.27442416548728943, + 0.147186741232872, + -0.07401994615793228, + -0.3560217320919037, + 0.2167888730764389, + -0.06775251775979996, + -0.054776787757873535, + -0.3344864547252655, + 0.2177036553621292, + -0.042714666575193405, + 0.16488708555698395, + 0.27141743898391724, + -0.006959991995245218, + -0.11808031797409058, + 0.035660505294799805, + -0.3684547245502472, + -0.0659632757306099, + -0.3549499809741974, + 0.04634331166744232, + 0.3619332015514374, + 0.09447800368070602, + 0.11231859773397446, + -0.09712422639131546, + -0.16898642480373383, + 0.14379942417144775, + -0.04071413353085518, + -0.5130113959312439, + -0.4154414236545563, + 0.031137369573116302, + 0.038525547832250595, + -0.6315584778785706, + 0.3468407094478607, + 0.007752468343824148, + -0.11196065694093704, + 0.06131288409233093, + -0.35615360736846924, + -0.19307558238506317, + 0.24600893259048462, + -0.10323775559663773, + -0.0021806645672768354, + -0.22258643805980682, + 0.1781720668077469, + -0.2166530340909958, + -0.15125785768032074, + -0.3101038932800293, + -0.18399719893932343, + 0.0037865042686462402, + 0.08043424785137177, + -0.4800228774547577, + 0.12134960293769836, + 0.14833076298236847, + -0.38230594992637634, + 0.05712107941508293, + 0.294429749250412, + -0.12408149242401123, + 0.11874693632125854, + 0.008685757406055927, + 0.22688263654708862, + 0.1739286631345749, + -0.11388737708330154, + 0.1290922462940216, + 0.5230034589767456, + 0.5069182515144348, + -0.038417503237724304, + 0.06328462064266205, + 0.006300991866737604, + -0.060063835233449936, + -0.05002867057919502, + -0.5364003777503967, + 0.49496352672576904, + 0.0897550955414772, + 0.17021746933460236, + 0.019383439794182777, + 0.20213818550109863, + 0.07641709595918655, + -0.23019219934940338, + -0.044186752289533615, + 0.29905006289482117, + 0.25098851323127747, + 0.23678357899188995, + 0.09845423698425293, + 0.15705710649490356, + 0.4727902114391327, + -0.11433114856481552, + 0.014110823161900043, + 0.15609759092330933, + -0.036052245646715164, + -0.28068843483924866, + 0.07579048722982407, + 0.2282099723815918, + 0.47721362113952637, + -0.1841495782136917, + -0.22628237307071686, + 0.09729188680648804, + -0.17388971149921417, + 0.012753896415233612, + -0.43664243817329407, + -0.20836229622364044, + -0.03585362806916237, + -0.20999044179916382, + 0.27854910492897034, + 0.06934595853090286, + -0.018094131723046303, + 0.26864805817604065, + -0.17242221534252167, + -0.11979788541793823, + 0.2288493514060974, + -0.19818198680877686, + -0.48004022240638733, + 0.4782852232456207, + -0.18525855243206024, + 0.15318499505519867, + 0.3508727252483368, + -0.2892538011074066, + -0.11759943515062332, + -0.0286345724016428, + 0.42787328362464905, + -0.07629237323999405, + 0.07749351114034653, + -0.1354428082704544, + 0.09178321808576584, + 0.17696236073970795, + 0.49829307198524475, + 0.1887774020433426, + 0.3701010048389435, + 0.6411929726600647, + 0.2556265890598297, + -0.464760422706604, + -0.03382926806807518, + -0.1696479469537735, + 0.3567068576812744, + -0.04217585548758507, + -0.21443508565425873, + -0.14776252210140228, + 0.04128584638237953, + 0.09696990251541138, + -0.18466202914714813, + 0.08632544428110123, + 0.05158121511340141, + 0.2496476173400879, + -0.029189301654696465, + 0.36359819769859314, + 0.08984845876693726, + -0.23182962834835052, + 0.5325621962547302, + -0.10580960661172867, + -0.2037486582994461, + 0.3337392807006836, + -0.174191415309906, + 0.10829009860754013, + 0.03563177213072777, + -0.26299330592155457, + -0.34698012471199036, + 0.10106850415468216, + -0.27080461382865906, + -0.17716270685195923, + 0.043743181973695755, + -0.3760688006877899, + 0.14685003459453583, + -0.20107632875442505, + 0.04884321615099907, + 0.1177874431014061, + 0.3450278043746948, + 0.08812117576599121, + 0.2841958999633789, + 0.043550435453653336, + -0.12624742090702057, + 0.1491718888282776, + -0.07535624504089355, + -0.07805177569389343, + -0.2631889283657074, + 0.06437651813030243, + 0.022020429372787476, + 0.6423196792602539, + 0.1947021484375, + -0.07976164668798447, + 0.15348996222019196, + 0.10588431358337402, + -0.19050221145153046, + -0.35946425795555115, + -0.09081050008535385, + -0.12293263524770737, + 0.03743430972099304, + 0.16249561309814453, + 0.054392412304878235, + -0.49602463841438293, + -0.2646627128124237, + -0.0967554822564125, + -0.18452352285385132, + 0.13222190737724304, + -0.15437550842761993, + -0.24414591491222382, + 0.5621192455291748, + 0.22896666824817657, + 0.4897097647190094, + -0.4064384400844574, + 0.08284471184015274, + 0.13211248815059662, + -0.3789707124233246, + -0.024763109162449837, + -0.11281993240118027, + -0.395414263010025, + -0.1286918669939041, + 0.31215015053749084, + 0.4061897099018097, + -0.07581788301467896, + -0.06314576417207718, + -0.021911783143877983, + 0.10228126496076584, + -0.42245662212371826, + -0.20780356228351593, + 0.2651396691799164, + 0.27545708417892456, + 0.3959256708621979, + 0.12261349707841873, + -0.5424414277076721, + -0.5363603234291077, + -0.024122893810272217, + -0.3702215254306793, + 0.053831446915864944, + 0.22017262876033783, + 0.010851740837097168, + -0.29499533772468567, + 0.03156821057200432, + -0.08963242173194885, + -0.10686705261468887, + 0.2518503963947296, + -0.25070494413375854, + 0.2887665331363678, + 0.22966651618480682, + -0.22755931317806244, + -0.05105099454522133, + -0.19354026019573212, + -0.3235435485839844, + -0.10761585086584091, + 0.0347164086997509, + 0.24250023066997528, + -0.43877485394477844, + -0.04493574798107147, + 0.1559942215681076, + -0.1980910748243332, + -0.1140047013759613, + -0.07072155922651291, + -0.43667474389076233, + 0.28309860825538635, + -0.17325599491596222, + -0.10726843029260635, + 0.07463382929563522, + -0.15880613029003143, + 0.021873770281672478, + 0.10891146212816238, + 0.16469921171665192, + 0.40037545561790466, + 0.19791077077388763, + 0.006994126830250025, + 0.4453113079071045, + 0.06295749545097351, + 0.02800966054201126, + 0.2081678956747055, + -0.09072446823120117, + -0.13326334953308105, + -0.4391831159591675, + -0.2411012500524521, + 0.0695541501045227, + -0.3834310472011566, + -0.179937943816185, + 0.12417176365852356, + 0.03714548796415329, + -0.40569868683815, + -0.37089529633522034, + 0.05743691697716713, + 0.166998028755188, + -0.14968661963939667, + -0.10449668765068054, + -0.19910721480846405, + -0.10344302654266357, + -0.16963763535022736, + -0.14065630733966827, + 0.2484932541847229, + 0.39106106758117676, + 0.16030339896678925, + 0.2320888489484787, + -0.3279159963130951, + -0.15894220769405365, + 0.233418270945549, + 0.22761517763137817, + 0.051738787442445755, + -0.025255734100937843, + -0.20845837891101837, + 0.452549546957016, + 0.308134526014328, + -0.001250115572474897, + 0.09059005230665207, + 0.06544674187898636, + 0.16595104336738586, + 0.18040192127227783, + 0.19335921108722687, + -0.19383399188518524, + 0.09933540970087051, + -0.4311390817165375, + 0.25905415415763855, + -0.20403288304805756, + -0.2505330741405487, + 0.1455889195203781, + -0.22897785902023315, + -0.581580638885498, + -0.20834757387638092, + 0.2546212077140808, + -0.1438681185245514, + -0.1492682546377182, + 0.1509302258491516, + 0.357839971780777, + -0.0059340414591133595, + -0.35886573791503906, + 0.06297000497579575, + -0.6482064127922058, + -0.37106001377105713, + 0.08488047122955322, + -0.14562620222568512, + -0.25109636783599854, + 0.08871662616729736, + 0.41756394505500793, + 0.4966334402561188, + 0.16365572810173035, + 0.022403394803404808, + 0.14851385354995728, + 0.39302578568458557, + 0.3227708339691162, + -0.28175485134124756, + -10.545528411865234, + 0.008158582262694836, + -0.3876628577709198, + 0.49560579657554626, + -0.2616336941719055, + 0.0037317872047424316, + -0.05145883932709694, + 0.08730348199605942, + 0.022066229954361916, + 0.011020426638424397, + -0.11735747009515762, + -0.15972931683063507, + 0.27400267124176025, + 0.2588048577308655, + 0.07208439707756042, + 0.06253185868263245, + -0.2640773057937622, + 0.2528142035007477, + 0.12234678119421005, + 0.12228688597679138, + 0.34288761019706726, + 0.4560675621032715, + -0.35627612471580505, + 0.04226427897810936, + -0.1239113137125969, + -0.5123240947723389, + -0.21726393699645996, + 0.5529163479804993, + 0.3407224416732788, + -0.27147701382637024, + 0.07091296464204788, + 0.11050966382026672, + -0.35254013538360596, + 0.3119750916957855, + -0.19920945167541504, + 0.06962386518716812, + -0.125289186835289, + 0.34711623191833496, + 0.4204179346561432, + -0.12700296938419342, + 0.033996034413576126, + 0.08437106758356094, + 0.44935479760169983, + 0.17172521352767944, + -0.11320038884878159, + -0.6467727422714233, + -0.07398699223995209, + -1.5811125040054321, + 0.26310014724731445, + 0.4660705029964447, + 0.21447370946407318, + 0.11800394207239151, + 0.13810066878795624, + 0.24176716804504395, + -0.3893686830997467, + -0.03096841275691986, + -0.1389656662940979, + -0.12763585150241852, + 0.11883822828531265, + 0.07600509375333786, + -0.14164605736732483, + -0.17006371915340424, + 0.7761989235877991, + 0.11721920222043991, + -0.32049694657325745, + 0.06823599338531494, + 0.1480935961008072, + -0.14710663259029388, + -0.16311149299144745, + -0.6702942848205566, + -0.5789613127708435, + -0.1340443193912506, + -0.03940504789352417, + -0.10384920239448547, + 0.33137503266334534, + 0.003646649420261383, + -0.14961910247802734, + 0.33785903453826904, + 0.04400714859366417, + 0.38170120120048523, + 0.3230189085006714, + -0.13054513931274414, + 0.1493968814611435, + -0.10488086193799973, + -0.3291749656200409, + -0.031031399965286255, + 0.24324409663677216, + 0.43641313910484314, + 0.1637044996023178, + 0.018027182668447495, + -0.004549933131784201, + 0.3693949282169342, + 0.07997158914804459, + -0.02599423937499523, + -0.41887012124061584, + -0.04981198534369469, + -0.047046929597854614, + 0.199593186378479, + 0.09400298446416855, + -0.15669985115528107, + -0.2603311240673065, + 0.2722800672054291, + 0.03091178834438324, + -0.38572701811790466, + -0.6321165561676025, + 0.35222864151000977, + 0.087679423391819, + 0.12568829953670502, + -0.0017912288894876838, + -0.2995126247406006, + -0.3751087188720703, + 0.05341852828860283, + 0.1790657639503479, + 0.5356160998344421, + 0.26018810272216797, + 0.01789526641368866, + -0.062299128621816635, + -0.3972206115722656, + -0.11172463744878769, + -0.000330035894876346, + 0.33568844199180603, + -0.2967802584171295, + 0.11588067561388016, + 0.6591761112213135, + 0.018065545707941055, + 0.015165269374847412, + 1.0064481496810913, + -0.2534324526786804, + 0.2719924747943878, + -0.08510994166135788, + 0.13282066583633423, + -0.12963734567165375, + -0.4858119487762451, + 0.28277310729026794, + 0.5150777697563171, + -0.3756895065307617, + 0.8527396321296692, + 0.37660086154937744, + -0.4042244851589203, + -0.06316526979207993, + -0.3249480724334717, + 0.5318021774291992, + 0.38964328169822693, + 0.16488003730773926, + -0.07197468727827072, + -0.09228169918060303, + -0.30745282769203186, + 0.05128428339958191, + -0.28112921118736267, + -0.18978498876094818, + -0.15510036051273346, + 0.14312876760959625, + 0.4052397310733795, + -0.18464075028896332, + 0.40996018052101135, + 0.31302469968795776, + -0.16822147369384766, + -0.3918851912021637, + -0.33840158581733704, + -0.08412184566259384, + -0.004811972379684448, + 0.883807897567749, + -0.005599358584731817, + 0.1318400353193283, + 0.10339409112930298, + 0.07457219809293747, + -0.15906620025634766, + 0.24405765533447266, + 0.2090870887041092, + 0.07019635289907455, + -0.4718707501888275, + 0.2973215579986572, + 0.04585787653923035, + -0.3391345739364624, + 0.010625305585563183, + 0.007796153426170349, + -0.10595250874757767, + 0.25771841406822205, + -0.2182052731513977, + -0.007550099398940802, + 0.5900967717170715, + 0.027679776772856712, + -0.07848504930734634, + -0.34914159774780273, + 0.0014931932091712952, + 0.20944039523601532, + 0.3608688414096832, + 0.007897858507931232, + -0.25251519680023193, + -0.20743446052074432, + -0.5568317770957947, + 0.1634812206029892, + -0.41405370831489563, + -0.03869534656405449, + 0.0992266833782196, + 0.1854182928800583, + -0.22279910743236542, + 0.09872794896364212, + 0.08140212297439575, + -0.04449039325118065, + -0.10929547995328903, + 0.23828046023845673, + 0.519236147403717, + -0.3027288615703583, + 0.44225582480430603, + -0.07203154265880585, + 0.0797000601887703, + 0.023911170661449432, + -0.3608057498931885, + -0.00946913193911314, + -0.3093157112598419 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_066.json b/src/benchmark/output/results/results_graph_066.json new file mode 100644 index 0000000..4fcffc1 --- /dev/null +++ b/src/benchmark/output/results/results_graph_066.json @@ -0,0 +1,792 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 59-year-old woman who presented with a cough. Her demographic information is not explicitly mentioned in the provided data, but based on the age and sex, we can infer that she is an adult female.\n\n**Initial Diagnosis (Step 1):**\nUpon presentation, the patient underwent a lung CT scan, which revealed a space-occupying lesion in the left lower lobe. The lesion was accompanied by peripheral obstructive inflammation, atelectasis, and multiple enlarged lymph nodes in the mediastinum. A biopsy of the lesion was performed, which confirmed the presence of keratinized squamous cell carcinoma. The patient was diagnosed with left lower lobe squamous cell carcinoma (T3N2bM0, Stage IIIB).\n\n**Treatment Initiation (Step 2):**\nThe patient underwent six cycles of albumin-bound paclitaxel (100 mg/m\u00b2 on day 1, day 8, and day 15), cisplatin (75 mg/m\u00b2 on day 1), and carrelizumab (200 mg on day 1). Following this treatment, the left lower lung lesion had significantly reduced in size to approximately 23x25 mm.\n\n**Radiotherapy and Re-emergence of Disease (Step 3):**\nThe patient underwent radiotherapy with a dose of 2 Gy per fraction, administered over a total of 30 fractions. However, after ten fractions, the patient developed dyspnea and fever, with a maximum temperature of 38.5\u00b0C. A lung puncture biopsy was performed, which confirmed the presence of squamous cell carcinoma. The lesion had significantly enlarged to a size of 50 \u00d7 51 mm.\n\n**Outcome:**\nThe patient's condition worsened after radiotherapy, and she developed delayed hypersensitivity pneumonitis (DHP) after 5 months of immunotherapy. Despite this, the patient continued to receive treatment, highlighting the complexities of managing advanced cancer.\n\nIn conclusion, this clinical case report highlights the challenges of treating advanced squamous cell carcinoma in a 59-year-old woman. The patient's initial diagnosis and treatment response were promising, but the disease re-emerged after radiotherapy, leading to worsening symptoms and complications. Further management strategies are needed to improve outcomes for patients with advanced cancer.", + "bertscore": { + "precision": 0.7917846441268921, + "recall": 0.8422552347183228, + "f1": 0.8162405490875244 + }, + "bleu": 0.05509384931217402, + "rouge1": 0.3931623931623932, + "rougeL": 0.22222222222222224, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 3, + "edge_count": 2, + "avg_in_degree": 0.6666666666666666, + "density": 0.3333333333333333 + }, + "trajectory_embedding": [ + 0.24472539126873016, + 0.05973951891064644, + -0.20621691644191742, + 0.22169888019561768, + -0.08776857703924179, + -0.01297292485833168, + 0.14311833679676056, + 0.19575707614421844, + 0.13809828460216522, + -0.30675601959228516, + -0.19033236801624298, + 0.21958637237548828, + -0.5650694966316223, + -0.03671947494149208, + -0.21233956515789032, + -0.07029158622026443, + 0.05985746905207634, + 0.3540482819080353, + 0.09971606731414795, + -0.21774829924106598, + -0.4880874454975128, + 0.07818809896707535, + -0.3714626729488373, + -0.23509180545806885, + 0.06321892887353897, + -0.14382852613925934, + -0.09785137325525284, + 0.5526863932609558, + 0.2408498376607895, + 0.36133289337158203, + 0.11607518792152405, + 0.14982308447360992, + -0.18732130527496338, + -0.06406443566083908, + -0.04870617389678955, + 0.30946287512779236, + 0.2232000231742859, + 0.2514793574810028, + -0.03711273521184921, + 0.06858106702566147, + -0.04543985798954964, + -0.054216574877500534, + 0.8410571217536926, + 0.4946504533290863, + 0.6904703974723816, + -0.3553180694580078, + 0.07950248569250107, + 0.38915541768074036, + -0.8199913501739502, + -0.18235641717910767, + 0.2594229578971863, + 0.7004188895225525, + 0.7419648170471191, + -0.09346562623977661, + 0.48649755120277405, + -0.19655929505825043, + -0.35712262988090515, + -0.12270615249872208, + -0.33330056071281433, + 0.035338446497917175, + 0.08950041979551315, + 0.07932708412408829, + -0.13393497467041016, + -0.05882519111037254, + -0.4297293722629547, + -0.07603780180215836, + -0.24973559379577637, + -0.010420563630759716, + 0.03171468898653984, + -0.5315023064613342, + -0.39088842272758484, + -0.19595032930374146, + -0.19118864834308624, + 0.24489863216876984, + 0.1897304207086563, + -0.3389620780944824, + 0.20047469437122345, + 0.03468834236264229, + -0.0655626729130745, + 0.14029420912265778, + 0.17140133678913116, + -0.02399207092821598, + 0.2540210783481598, + 0.22558891773223877, + -0.2655019760131836, + 0.1640091985464096, + 0.11728119850158691, + -0.1884794980287552, + -0.15492989122867584, + 0.21031498908996582, + 0.20496852695941925, + -0.1964985728263855, + -0.023617811501026154, + -0.08346119523048401, + 0.210036039352417, + -0.03352765366435051, + 0.24766667187213898, + 0.39670801162719727, + 0.9792380332946777, + 0.041457414627075195, + 0.3535352945327759, + 0.12252096086740494, + 0.26902487874031067, + -0.04724891856312752, + 0.48376134037971497, + 0.06455666571855545, + 0.0948953703045845, + -0.3248388469219208, + 0.0001873125584097579, + 0.41208887100219727, + -0.07521289587020874, + -0.19096501171588898, + 0.1534561961889267, + -0.41474649310112, + 0.002934597432613373, + 0.11999937146902084, + -0.24417127668857574, + 0.12330881506204605, + -0.022776365280151367, + -0.41632938385009766, + -0.13032205402851105, + -0.1667323261499405, + 0.5076087117195129, + 0.24391146004199982, + -0.6251253485679626, + -0.15292535722255707, + -0.09079304337501526, + 0.10629767179489136, + -0.0969785824418068, + 0.14091737568378448, + -0.35459503531455994, + -0.07694574445486069, + 0.24394215643405914, + 0.35355687141418457, + -0.30491742491722107, + 0.31794604659080505, + -0.38083335757255554, + 0.07474204152822495, + -1.226477026939392, + 0.2961015999317169, + -0.5032801032066345, + -0.108010433614254, + 0.13107943534851074, + -0.49610671401023865, + -0.1767665594816208, + -0.068946473300457, + -0.19116894900798798, + 0.18121390044689178, + 0.002250944497063756, + -0.0333944670855999, + -0.18197953701019287, + 0.031042953953146935, + 0.20110321044921875, + 0.26335009932518005, + 0.2646425664424896, + 0.27324384450912476, + 0.2407650500535965, + 0.26426127552986145, + 0.3190576732158661, + -0.22063130140304565, + -0.02279333770275116, + 0.30932655930519104, + -0.12357389181852341, + -0.16448788344860077, + 0.009782317094504833, + -0.7148368954658508, + 0.2502247393131256, + -0.2690623998641968, + 0.38259294629096985, + 0.062444090843200684, + -0.03332372382283211, + 0.08372946828603745, + -0.06197817251086235, + 0.41303038597106934, + 0.21075521409511566, + 0.43564775586128235, + 0.09936109185218811, + 0.03837363421916962, + 0.35816511511802673, + 0.2276294231414795, + 0.10912089794874191, + -0.030399831011891365, + 0.568000853061676, + 0.28022265434265137, + -0.34713688492774963, + 0.18400056660175323, + 0.6108300685882568, + -0.4837230145931244, + -0.07710225135087967, + -0.38692915439605713, + 0.5639374852180481, + -0.03400975093245506, + 0.27839186787605286, + -0.4430330991744995, + 0.11624273657798767, + 0.0877058133482933, + -0.3161497414112091, + -0.3183850049972534, + 0.19277746975421906, + -0.2225656509399414, + 0.04632681608200073, + 0.42847514152526855, + -0.07463964819908142, + 0.054895926266908646, + 0.2422086000442505, + -0.1537158340215683, + 0.3643310070037842, + 0.21861886978149414, + 0.03560551628470421, + -0.15345647931098938, + -0.1623491793870926, + 0.22562961280345917, + 0.22217579185962677, + 0.30118897557258606, + -0.08191647380590439, + -0.15430192649364471, + 0.2179277390241623, + -0.1365259736776352, + -0.20148350298404694, + 0.1175960898399353, + -0.1683780699968338, + -0.0619087815284729, + 0.4505422115325928, + -0.010252299718558788, + -0.31232932209968567, + 0.26019707322120667, + 0.18838584423065186, + 0.10241077095270157, + 0.047579988837242126, + -0.003696044208481908, + 0.12725670635700226, + -0.2746680676937103, + 0.4076017439365387, + -0.04719288647174835, + -0.11623629927635193, + -0.2201196700334549, + 0.14945465326309204, + -0.14551478624343872, + -0.3147028386592865, + 0.36578240990638733, + -0.07165887951850891, + -0.09624495357275009, + -0.0745454728603363, + -0.23157548904418945, + -0.082053042948246, + -0.3674026429653168, + 0.2011731117963791, + 0.35115382075309753, + 0.19356246292591095, + 0.21420156955718994, + 0.05888652801513672, + -0.2460108995437622, + 0.3210803270339966, + -0.4284001290798187, + -0.3601716458797455, + -0.23948414623737335, + -0.160123810172081, + -0.20349836349487305, + -0.219018816947937, + -0.04691457748413086, + -0.04989147186279297, + -0.2610017955303192, + 0.2012440413236618, + -0.3811030685901642, + -0.15432433784008026, + -0.09969782829284668, + -0.09778731316328049, + 0.18930615484714508, + 0.04510769248008728, + 0.2529543936252594, + -0.4515397548675537, + -0.2720588743686676, + -0.10315386205911636, + 0.02979304827749729, + 0.3163506090641022, + 0.2647949159145355, + 0.012967054732143879, + 0.2102910727262497, + 0.29734015464782715, + -0.4553937017917633, + -0.36370977759361267, + 0.029198577627539635, + -0.2898355722427368, + 0.0427025742828846, + -0.3326948583126068, + 0.04941452667117119, + 0.3447096347808838, + 0.041680995374917984, + 0.3457329273223877, + 0.5037882328033447, + 0.5015177130699158, + 0.27465498447418213, + -0.1846528798341751, + -0.055688705295324326, + -0.0830637514591217, + -0.059880126267671585, + -0.4160454273223877, + 0.16137750446796417, + -0.12424380332231522, + -0.013688790611922741, + 0.1888742595911026, + 0.23198576271533966, + -0.011724273674190044, + -0.45893311500549316, + -0.2340559959411621, + 0.6245488524436951, + 0.30824407935142517, + -0.11972123384475708, + -0.06818624585866928, + 0.31432485580444336, + 0.7497386336326599, + -0.009430192410945892, + -0.1330808401107788, + -0.10549646615982056, + -0.024887895211577415, + -0.10062122344970703, + -0.17127345502376556, + 0.01669115386903286, + 0.18056027591228485, + -0.10295003652572632, + -0.09337595105171204, + 0.36089882254600525, + -0.13965356349945068, + -0.08542203158140182, + -0.06505189090967178, + 0.10638538002967834, + -0.012201775796711445, + -0.33361807465553284, + 0.27496346831321716, + -0.2726285755634308, + -0.057488005608320236, + 0.519100546836853, + -0.01144926156848669, + -0.28289830684661865, + 0.3690139055252075, + -0.10617876052856445, + -0.5634174942970276, + 0.27518460154533386, + -0.2088218480348587, + 0.0028694632928818464, + 0.34025660157203674, + -0.16064055263996124, + 0.0016224136343225837, + -0.15492258965969086, + 0.012122553773224354, + 0.18882644176483154, + -0.050750669091939926, + -0.03924507275223732, + -0.03840144723653793, + 0.2402849644422531, + 0.5950093865394592, + -0.11780447512865067, + 0.10417792946100235, + 0.15058690309524536, + -0.202588751912117, + -0.10731291025876999, + -0.07707282155752182, + 0.16964705288410187, + 0.04422913119196892, + -0.3682064116001129, + -0.4024607241153717, + -0.32807669043540955, + 0.19396977126598358, + 0.11229383200407028, + -0.06358324736356735, + -0.049455493688583374, + -0.049556080251932144, + -0.021056191995739937, + 0.11639239639043808, + 0.3737211227416992, + 0.26526185870170593, + 0.0833679810166359, + 0.49039459228515625, + 0.06786119192838669, + 0.013739767484366894, + 0.3272363841533661, + -0.1748441457748413, + 0.30978843569755554, + -0.17690134048461914, + -0.3660604655742645, + -0.5179305672645569, + 0.004800538066774607, + -0.42185071110725403, + -0.07543555647134781, + 0.010172267444431782, + 0.09870466589927673, + -0.09843180328607559, + -0.12942905724048615, + 0.1613881140947342, + 0.0856059268116951, + 0.312078595161438, + -0.04180729761719704, + 0.5679910182952881, + -0.044651586562395096, + -0.4304715394973755, + 0.09852247685194016, + -0.14173902571201324, + 0.334534615278244, + -0.16404055058956146, + 0.018181854858994484, + -0.17308539152145386, + 0.5315093398094177, + 0.11742828041315079, + -0.07481261342763901, + -0.001330789178609848, + -0.21552641689777374, + -0.28844380378723145, + -0.34183570742607117, + -0.1385217159986496, + -0.0353928804397583, + -0.13364623486995697, + -0.09281674772500992, + 0.29700711369514465, + -0.21455669403076172, + -0.2409260869026184, + 0.121465764939785, + 0.4624112844467163, + 0.04286643862724304, + -0.09062247723340988, + -0.11810433119535446, + 0.2106172889471054, + 0.019037535414099693, + 0.3781695067882538, + -0.16599641740322113, + 0.055901166051626205, + 0.01362465787678957, + -0.3248428702354431, + -0.06648602336645126, + 0.04167942330241203, + -0.300541490316391, + 0.07971624284982681, + 0.27121031284332275, + -0.005033507943153381, + 0.10767247527837753, + 0.03863084316253662, + -0.07513835281133652, + 0.27220484614372253, + -0.4194846451282501, + -0.09670042991638184, + 0.3917611539363861, + 0.08840013295412064, + 0.6115625500679016, + -0.0882614478468895, + -0.4061022102832794, + -0.08047638088464737, + 0.025134295225143433, + -0.48740851879119873, + 0.24531686305999756, + -0.029790988191962242, + -0.19875936210155487, + 0.01629987545311451, + 0.03272233530879021, + 0.025919994339346886, + 0.028100989758968353, + 0.025510305538773537, + -0.026835812255740166, + 0.11868489533662796, + -0.06550981104373932, + -0.38142433762550354, + 0.047631364315748215, + -0.38747766613960266, + -0.33251288533210754, + -0.3359937369823456, + 0.49157238006591797, + 0.18256129324436188, + -0.1027270182967186, + 0.06662095338106155, + 0.09664812684059143, + -0.1800452619791031, + -0.29837337136268616, + 0.07263601571321487, + 0.014624076895415783, + 0.683661937713623, + -0.028218962252140045, + -0.12441673129796982, + 0.34542861580848694, + -0.5134815573692322, + 0.12539905309677124, + 0.16842679679393768, + 0.15858405828475952, + 0.2769908607006073, + 0.037397440522909164, + 0.23338834941387177, + 0.3327862024307251, + 0.21860282123088837, + -0.0847303569316864, + 0.2821405231952667, + -0.07222587615251541, + -0.09961170703172684, + 0.11621060222387314, + -0.21702654659748077, + 0.5164672136306763, + -0.4418872892856598, + 0.2534107267856598, + -0.014755435287952423, + 0.4497506618499756, + -0.24374859035015106, + -0.3478260934352875, + -0.09775318950414658, + -0.2522020637989044, + -0.21367521584033966, + -0.34489715099334717, + -0.21151171624660492, + 0.1533224880695343, + -0.41795364022254944, + 0.009175683371722698, + 0.4369765520095825, + 0.3349725902080536, + 0.13335593044757843, + 0.08260536193847656, + -0.355595201253891, + -0.4663221538066864, + -0.07575363665819168, + 0.2912334203720093, + -0.012158308178186417, + -0.01939759962260723, + -0.052952419966459274, + 0.3092961311340332, + 0.6253311038017273, + -0.10531309992074966, + -0.1512894481420517, + -0.134952574968338, + -0.05019104480743408, + -0.16695024073123932, + -0.04916447028517723, + -0.1300649493932724, + 0.3077431619167328, + -0.36611390113830566, + -0.046004459261894226, + -0.14477355778217316, + -0.3982226848602295, + 0.13922584056854248, + -0.34826961159706116, + -0.39057230949401855, + -0.024207821115851402, + 0.1379953771829605, + -0.2238806039094925, + -0.026945918798446655, + 0.2545139789581299, + 0.4592592716217041, + 0.1505405455827713, + -0.07086842507123947, + 0.12405675649642944, + -0.6305832266807556, + -0.058170806616544724, + 0.29443609714508057, + -0.2588263750076294, + 0.2799323797225952, + -0.003765612840652466, + 0.23406900465488434, + 0.15053169429302216, + 0.16451911628246307, + -0.38798782229423523, + 0.0768650695681572, + 0.2781657874584198, + 0.43474605679512024, + -0.15346772968769073, + -10.960356712341309, + 0.06405992805957794, + -0.10026196390390396, + 0.4984339773654938, + -0.08484695106744766, + 0.05730124190449715, + -0.10981613397598267, + -0.060770418494939804, + 0.22861559689044952, + 0.2867518365383148, + -0.05398468300700188, + 0.2388964146375656, + 0.29632505774497986, + 0.2794932425022125, + -0.015646910294890404, + -0.11755019426345825, + -0.33758094906806946, + 0.33045339584350586, + -0.2305048704147339, + -0.07931394129991531, + 0.47469034790992737, + 0.5132012963294983, + -0.26039257645606995, + 0.3521421253681183, + 0.24662601947784424, + -0.3290752172470093, + -0.18977028131484985, + 0.30583569407463074, + 0.2560260593891144, + -0.4243943393230438, + 0.41480517387390137, + 0.11285549402236938, + -0.15821020305156708, + -0.08145276457071304, + 0.04051022604107857, + -0.08236095309257507, + -0.09063855558633804, + -0.062187764793634415, + 0.014029591344296932, + -0.008436200208961964, + 0.009130623191595078, + -0.26938101649284363, + 0.02358812838792801, + 0.217571422457695, + -0.0987858772277832, + -0.4252159595489502, + -0.3924587666988373, + -1.5080143213272095, + 0.13750313222408295, + 0.27976346015930176, + 0.588225245475769, + 0.060049694031476974, + 0.2496291548013687, + 0.13963903486728668, + -0.5151636004447937, + -0.08688181638717651, + -0.1798693686723709, + 0.31586572527885437, + 0.27058014273643494, + -0.09923862665891647, + 0.18622322380542755, + -0.2636469900608063, + 0.4458160400390625, + -0.42067423462867737, + -0.24530106782913208, + 0.2546333372592926, + -0.1903402954339981, + -0.07899084687232971, + -0.18558235466480255, + -0.10308300703763962, + -0.5935779213905334, + -0.14467324316501617, + 0.06936707347631454, + -0.009953108616173267, + 0.329560786485672, + -0.1617351919412613, + -0.4816628694534302, + -0.01653486303985119, + 0.10779452323913574, + 0.32051554322242737, + 0.28326278924942017, + 0.12196606397628784, + 0.08756425976753235, + -0.19185858964920044, + -0.10937216877937317, + -0.014642149209976196, + 0.06141020357608795, + 0.6293041706085205, + 0.02164670266211033, + 0.06238098070025444, + -0.1194082573056221, + 0.3395727574825287, + -0.14156518876552582, + -0.1660834550857544, + -0.434939980506897, + 0.27401623129844666, + 0.08059815317392349, + 0.18688659369945526, + 0.012292377650737762, + -0.2353852391242981, + -0.17058952152729034, + -0.2572742700576782, + -0.07646320760250092, + -0.41726577281951904, + -0.3206033408641815, + 0.27345409989356995, + 0.27907463908195496, + -0.02266020141541958, + 0.11334013938903809, + 0.0774502083659172, + 0.09779997915029526, + -0.051723137497901917, + 0.6278414130210876, + 0.626000702381134, + 0.04142439737915993, + -0.2174665927886963, + -0.33282700181007385, + 0.288815975189209, + -0.3903399407863617, + -0.003919137641787529, + 0.3264608681201935, + 0.05567343160510063, + 0.36269280314445496, + 0.61568284034729, + -0.07746411114931107, + -0.048094492405653, + 0.8306520581245422, + -0.32907164096832275, + 0.3848963677883148, + -0.19391123950481415, + 0.1863178014755249, + -0.07402336597442627, + -0.27095863223075867, + 0.07724221050739288, + 0.25158074498176575, + -0.2959558963775635, + 0.5592979788780212, + 0.07577923685312271, + -0.4425506293773651, + 0.00042188167572021484, + -0.4586349427700043, + 0.38460829854011536, + 0.30545172095298767, + 0.10892649739980698, + -0.19438405334949493, + -0.3272428810596466, + -0.1468651294708252, + 0.008953355252742767, + -0.25023123621940613, + -0.37482044100761414, + -0.09951747208833694, + -0.020684322342276573, + 0.04263325408101082, + -0.2340986281633377, + 0.4263988733291626, + 0.0822518989443779, + -0.19622670114040375, + -0.02026284672319889, + -0.4919753968715668, + -0.1848757416009903, + 0.2676183879375458, + 0.6674940586090088, + 0.3138386905193329, + -0.2451866865158081, + -0.2035677433013916, + 0.2600369155406952, + -0.01173351425677538, + 0.0680723786354065, + 0.10946498066186905, + -0.08542770147323608, + -0.5419972538948059, + 0.030171914026141167, + 0.12477704137563705, + -0.33835503458976746, + -0.23286695778369904, + -0.33639511466026306, + 0.19271008670330048, + -0.13297611474990845, + -0.06605911999940872, + 0.2756675183773041, + 0.2757405936717987, + -0.10188999027013779, + 0.004778603557497263, + -0.2490537315607071, + 0.01903938315808773, + 0.16929584741592407, + 0.11932594329118729, + 0.10526015609502792, + -0.02270149439573288, + -0.6346606612205505, + -0.2796635329723358, + 0.2684823274612427, + -0.22892530262470245, + -0.06004071235656738, + 0.08261638134717941, + 0.18701212108135223, + -0.41923144459724426, + 0.09933196753263474, + -0.3425528109073639, + 0.07792862504720688, + -0.36998236179351807, + 0.009928437881171703, + 0.4032503664493561, + -0.41004666686058044, + 0.2437080591917038, + -0.10462010651826859, + 0.24723057448863983, + 0.11909554153680801, + -0.3022080659866333, + 0.18338240683078766, + -0.21861453354358673 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_067.json b/src/benchmark/output/results/results_graph_067.json new file mode 100644 index 0000000..e9a9008 --- /dev/null +++ b/src/benchmark/output/results/results_graph_067.json @@ -0,0 +1,792 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 67-year-old male who presented in 2016 with stage IIIA non-small cell lung cancer (NSCLC) adenocarcinoma.\n\n**Timeline of Diagnoses:**\n\n1. **2016:** The patient was diagnosed with stage IIIA NSCLC adenocarcinoma.\n2. **2016:** Following the diagnosis, the patient underwent a right middle lobectomy, adjuvant carboplatin/paclitaxel chemotherapy, and postoperative radiotherapy (PORT).\n3. **2022:** The patient developed metastatic disease in the right lung, liver, and brain.\n\n**Timeline of Treatments:**\n\n1. **2016-2017:** Adjuvant carboplatin/paclitaxel chemotherapy.\n2. **2017:** Postoperative radiotherapy (PORT) was administered.\n3. **2022:** Stereotactic radiation therapy was performed to treat a single brain metastasis.\n4. **2022:** Empirical chemotherapy regimen consisting of 5-fluorouracil/oxaliplatin (FOLFOX) was initiated.\n5. **2022:** Histopathological analysis of liver lesions identified spindle cell carcinoma likely pulmonary in origin despite atypical features, with a high proliferative Ki-67 index (90%).\n6. **2022:** Treatment with docetaxel was administered.\n\n**Timeline of Outcomes:**\n\n1. **2017:** The patient underwent upper and lower GI endoscopy due to microcytosis, but no lesions were identified.\n2. **2022:** Liver biopsy showed metastatic spindle cell carcinoma on H&E stain, sections demonstrated a spindle cell neoplasm with significant mitotic activity and focal necrosis, and immunohistochemistry showed the tumor cells positive for AE1/AE3 and CK8/18, but negative for Alk-1, CK7, CK20, CDX-2, and CD117.\n3. **2022:** The patient received nine weekly doses of docetaxel with modest shrinkage (approximately 10-15%).\n\n**Conclusion:**\nThe patient's clinical course was marked by a diagnosis of stage IIIA NSCLC adenocarcinoma in 2016, followed by treatment with adjuvant chemotherapy and radiotherapy. Despite this initial treatment, the patient developed metastatic disease in 2022, which led to further evaluation and treatment, including stereotactic radiation therapy for brain metastasis, empirical chemotherapy regimen, histopathological analysis of liver lesions, and treatment with docetaxel. The patient's current status is characterized by ongoing treatment with docetaxel, with modest shrinkage observed in the tumor size.", + "bertscore": { + "precision": 0.8460601568222046, + "recall": 0.8547090888023376, + "f1": 0.8503626585006714 + }, + "bleu": 0.22916691868794195, + "rouge1": 0.5531914893617021, + "rougeL": 0.34793491864831044, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 9, + "edge_count": 8, + "avg_in_degree": 0.8888888888888888, + "density": 0.1111111111111111 + }, + "trajectory_embedding": [ + 0.2563111484050751, + 0.18047350645065308, + -0.12980332970619202, + 0.12957733869552612, + 0.14545029401779175, + 0.19874490797519684, + -0.020612286403775215, + 0.3609883785247803, + 0.5175485610961914, + -0.42774152755737305, + -0.11932812631130219, + -0.07010838389396667, + -0.6297792792320251, + -0.06867539882659912, + -0.2806960642337799, + 0.28194066882133484, + -0.16101223230361938, + 0.2974811792373657, + -0.0320054367184639, + -0.26180869340896606, + -0.3653232455253601, + 0.21554100513458252, + -0.4952680766582489, + -0.01274600438773632, + 0.2917851209640503, + 0.013397665694355965, + 0.4539494514465332, + 0.5107171535491943, + 0.1910659819841385, + 0.2023172825574875, + 0.14290876686573029, + -0.1720331311225891, + 0.27078431844711304, + 0.12576454877853394, + -0.30881425738334656, + 0.23997381329536438, + 0.20052491128444672, + 0.2819211781024933, + -0.16505563259124756, + 0.02628747560083866, + -0.17063747346401215, + 0.08229643851518631, + 0.8373680114746094, + 0.14184650778770447, + 0.4898078739643097, + -0.7631044387817383, + -0.05833498015999794, + 0.6571429967880249, + -0.587323784828186, + -0.3337332010269165, + 0.11421965062618256, + 0.8041656613349915, + 0.6735653877258301, + -0.3212493658065796, + 0.4462393522262573, + -0.09566310048103333, + -0.2393297553062439, + -0.24039578437805176, + -0.23803025484085083, + -0.0028881398029625416, + 0.051754288375377655, + -0.2753262519836426, + 0.4287317991256714, + -0.23822420835494995, + -0.17750635743141174, + -0.223173588514328, + -0.3731268048286438, + 0.04168960824608803, + 0.010609358549118042, + -0.42431437969207764, + -0.12321975827217102, + -0.20164258778095245, + -0.0698876902461052, + 0.059933118522167206, + 0.05492713674902916, + -0.09806787967681885, + 0.350442111492157, + -0.13774612545967102, + 0.15925580263137817, + 0.2140136957168579, + -0.07230867445468903, + -0.17573881149291992, + 0.030170436948537827, + 0.2979617714881897, + -0.445273756980896, + -0.13959911465644836, + -0.11444449424743652, + -0.20965570211410522, + -0.40044495463371277, + 0.13729432225227356, + 0.17726798355579376, + -0.46805816888809204, + -0.05943233519792557, + -0.16726654767990112, + -0.0215974822640419, + 0.21199630200862885, + 0.5280852317810059, + 0.216959610581398, + 0.9069752097129822, + -0.05025506392121315, + 0.14157015085220337, + -0.026503555476665497, + 0.1826874166727066, + 0.05934286117553711, + 0.34719324111938477, + -0.08723073452711105, + 0.25699499249458313, + -0.4970172345638275, + 0.34495222568511963, + 0.45673301815986633, + 0.0726204514503479, + -0.16635073721408844, + -0.004855076316744089, + -0.18847019970417023, + 0.19316837191581726, + 0.1378999948501587, + 0.07015062868595123, + 0.23014742136001587, + 0.2763122320175171, + -0.4145337641239166, + -0.2305348664522171, + -0.16869285702705383, + 0.2995665967464447, + 0.23186254501342773, + -0.4474298059940338, + -0.046202387660741806, + -0.19713261723518372, + -0.022294674068689346, + 0.14391879737377167, + 0.062021996825933456, + -0.5559811592102051, + -0.21763890981674194, + -0.00721403956413269, + 0.035294752568006516, + -0.07481279969215393, + 0.3524245023727417, + -0.3655874729156494, + -0.019033798947930336, + -1.0617194175720215, + 0.19405941665172577, + -0.33067160844802856, + -0.11612159758806229, + -0.006241641007363796, + -0.4924764037132263, + -0.27442190051078796, + -0.10036749392747879, + -0.10831528156995773, + 0.18844126164913177, + -0.1787920892238617, + -0.10481493920087814, + 0.06010334938764572, + 0.005608707666397095, + 0.21282905340194702, + 0.5520514845848083, + 0.15650419890880585, + 0.06096847727894783, + 0.015503909438848495, + 0.31192928552627563, + 0.08708088845014572, + 0.002102242549881339, + 0.013117737136781216, + 0.5071194171905518, + 0.22254493832588196, + 0.07495769113302231, + -0.15746352076530457, + -0.5346567630767822, + -0.061059579253196716, + -0.2254386991262436, + -0.0025296227540820837, + 0.13289958238601685, + -0.09840560704469681, + 0.11590811610221863, + -0.28228721022605896, + 0.5979018807411194, + -0.0006272461614571512, + 0.19261036813259125, + -0.017632193863391876, + 0.005382660310715437, + 0.08769732713699341, + 0.19561141729354858, + 0.23628224432468414, + -0.2900877296924591, + 0.7235522866249084, + 0.38908424973487854, + -0.23791950941085815, + 0.2786569893360138, + 0.3320704996585846, + -0.039316654205322266, + -0.27462318539619446, + -0.0002805127005558461, + 0.6495236754417419, + -0.3378776013851166, + 0.6428676843643188, + -0.3850654065608978, + -0.079743891954422, + 0.21607255935668945, + -0.14196699857711792, + -0.03390302136540413, + -0.06184215843677521, + -0.08423982560634613, + 0.2539777457714081, + 0.06911060214042664, + -0.4456231892108917, + 0.0044640665873885155, + 0.21410337090492249, + -0.05766420066356659, + 0.16673514246940613, + -0.01690095290541649, + 0.13375528156757355, + 0.06507658958435059, + -0.18613427877426147, + 0.3015982210636139, + -0.18185624480247498, + 0.3694620132446289, + -0.02114221453666687, + -0.46926626563072205, + 0.16210311651229858, + -0.012697579339146614, + -0.16178935766220093, + 0.15819913148880005, + -0.004583375528454781, + -0.30103757977485657, + -0.08974733203649521, + -0.047581665217876434, + -0.6438201665878296, + 0.24425122141838074, + 0.10657566040754318, + 0.30328407883644104, + 0.2577802538871765, + -0.014891871251165867, + -0.0130117516964674, + -0.43777337670326233, + 0.35279685258865356, + -0.10263874381780624, + -0.07498358935117722, + -0.26379409432411194, + 0.3302410840988159, + -0.10006142407655716, + 0.16516052186489105, + 0.44004735350608826, + -0.010329893790185452, + -0.06775636225938797, + 0.1897384375333786, + -0.4060557186603546, + -0.10382090508937836, + -0.44256407022476196, + 0.019130907952785492, + 0.364189088344574, + 0.08011194318532944, + 0.27923333644866943, + -0.03265766799449921, + -0.17198534309864044, + 0.18690527975559235, + -0.12449974566698074, + -0.4856452941894531, + -0.30901801586151123, + -0.027464741840958595, + -0.13205735385417938, + -0.7264115214347839, + 0.1181509792804718, + -0.1127496138215065, + 0.0019398066215217113, + 0.19052189588546753, + -0.34588658809661865, + -0.20879706740379333, + 0.11871564388275146, + 0.14009429514408112, + 0.1609005630016327, + -0.22135360538959503, + 0.10623787343502045, + -0.2685736119747162, + -0.09476426243782043, + -0.22107644379138947, + -0.0026477526407688856, + 0.06600001454353333, + 0.0014596200780943036, + -0.3718755543231964, + -0.05315720662474632, + 0.1078578382730484, + -0.3234424889087677, + -0.05669151991605759, + 0.20027855038642883, + -0.1291794627904892, + 0.17780669033527374, + 0.04459580406546593, + 0.2170383334159851, + 0.390860378742218, + -0.005249791778624058, + 0.10039656609296799, + 0.36140620708465576, + 0.5250841379165649, + -0.11312157660722733, + 0.11197253316640854, + 0.00719456048682332, + -0.11138778179883957, + -0.009262846782803535, + -0.4462110102176666, + 0.46684136986732483, + 0.0056252446956932545, + 0.08430922776460648, + 0.1525137573480606, + 0.22625356912612915, + -0.012632980942726135, + -0.21722687780857086, + 0.1597178727388382, + 0.531234085559845, + 0.15898969769477844, + 0.23828989267349243, + 0.16438181698322296, + 0.18891021609306335, + 0.26625773310661316, + -0.13577808439731598, + 0.04122096300125122, + 0.15837545692920685, + -0.02935744635760784, + -0.29432213306427, + -0.022714396938681602, + 0.1750982105731964, + 0.46150222420692444, + -0.2683558464050293, + -0.36105892062187195, + 0.01579613797366619, + -0.23539382219314575, + -0.02449367381632328, + -0.3135550618171692, + -0.10939577221870422, + 0.14637205004692078, + -0.25333261489868164, + 0.3853977918624878, + 0.05118032172322273, + -0.0978781133890152, + 0.37814176082611084, + -0.423348993062973, + -0.08173621445894241, + 0.1880859136581421, + -0.042604777961969376, + -0.40653422474861145, + 0.42451632022857666, + -0.24886509776115417, + -0.005955649074167013, + 0.3546699285507202, + -0.4556626081466675, + -0.07820828258991241, + 0.15935449302196503, + 0.30810436606407166, + -0.07229045033454895, + 0.12459214776754379, + 0.014383073896169662, + 0.04380850866436958, + 0.09870689362287521, + 0.6041895151138306, + 0.07100291550159454, + 0.25920569896698, + 0.6406476497650146, + 0.31951746344566345, + -0.35319676995277405, + 0.10219580680131912, + -0.2607383131980896, + 0.408083975315094, + -0.13438265025615692, + -0.07431582361459732, + -0.195485457777977, + 0.16928330063819885, + 0.04176736995577812, + -0.3041282892227173, + 0.039509277790784836, + 0.1898241639137268, + 0.07274668663740158, + 0.030978377908468246, + 0.30259159207344055, + 0.20311325788497925, + -0.09501809626817703, + 0.45608678460121155, + -0.17285370826721191, + -0.1034097671508789, + 0.347759872674942, + -0.2291771024465561, + 0.12405966222286224, + 0.12078092992305756, + -0.062239568680524826, + -0.3865746557712555, + 0.18865078687667847, + -0.3410874903202057, + -0.23614726960659027, + 0.04899827390909195, + -0.12557347118854523, + 0.09591282904148102, + -0.26604950428009033, + 0.05497484654188156, + 0.06773429363965988, + 0.04967539384961128, + 0.17482496798038483, + 0.35082393884658813, + 0.059912484139204025, + -0.1907939463853836, + 0.2109791338443756, + -0.042397402226924896, + -0.10436010360717773, + -0.3644818067550659, + 0.0881710797548294, + -0.18994587659835815, + 0.6630847454071045, + 0.06388696283102036, + -0.022125741466879845, + 0.1327216625213623, + -0.14152146875858307, + -0.18682795763015747, + -0.4027436673641205, + -0.08173949271440506, + -0.1665683388710022, + 0.08023914694786072, + 0.13450318574905396, + 0.05962695553898811, + -0.3576686382293701, + -0.11541208624839783, + -0.023674385622143745, + -0.10740462690591812, + 0.09639335423707962, + -0.11354199051856995, + -0.1706063151359558, + 0.3247024118900299, + 0.26461711525917053, + 0.42767003178596497, + -0.39370471239089966, + 0.09580746293067932, + 0.06179129332304001, + -0.2857809066772461, + -0.12670451402664185, + -0.026705123484134674, + -0.4812834560871124, + -0.23243390023708344, + 0.3261158764362335, + 0.31943270564079285, + 0.01188349723815918, + 0.052742768079042435, + 0.13957804441452026, + 0.25010421872138977, + -0.369578093290329, + -0.07842645049095154, + 0.2857654392719269, + 0.2305995672941208, + 0.32215672731399536, + 0.05624943971633911, + -0.4458381235599518, + -0.3493761420249939, + -0.09723154455423355, + -0.4201689660549164, + 0.05046665295958519, + 0.23753809928894043, + 0.029007647186517715, + -0.05417732894420624, + 0.07578655332326889, + -0.022361917421221733, + -0.24034860730171204, + 0.35533517599105835, + -0.057443127036094666, + 0.278106153011322, + 0.0873420238494873, + -0.22808769345283508, + -0.08650699257850647, + -0.20494116842746735, + -0.35072046518325806, + -0.2496449202299118, + 0.18551291525363922, + 0.24581533670425415, + -0.3094838261604309, + 0.03934190049767494, + 0.23132427036762238, + -0.1402081400156021, + -0.17246097326278687, + -0.010208829306066036, + -0.2707397937774658, + 0.4107304811477661, + -0.1262853592634201, + -0.28506845235824585, + 0.17675578594207764, + -0.026497740298509598, + 0.005959221161901951, + 0.15867610275745392, + -0.006215577479451895, + 0.37070876359939575, + 0.06254514306783676, + 0.021026961505413055, + 0.5632040500640869, + 0.08371199667453766, + 0.12306446582078934, + 0.27995607256889343, + 0.09476613998413086, + -0.015644725412130356, + -0.2608633041381836, + -0.2269676774740219, + 0.2435905933380127, + -0.3656603991985321, + -0.17693662643432617, + 0.13172589242458344, + 0.282509446144104, + -0.4208969473838806, + -0.32790568470954895, + 0.02855946309864521, + 0.029470013454556465, + -0.052197717130184174, + -0.14030805230140686, + -0.26553845405578613, + -0.15844698250293732, + -0.40292036533355713, + -0.006387969478964806, + 0.2104761302471161, + 0.47560420632362366, + 0.19139701128005981, + 0.18151742219924927, + -0.2554055452346802, + -0.2698480784893036, + 0.29285064339637756, + 0.24421283602714539, + 0.04559524357318878, + -0.02580331824719906, + -0.17833274602890015, + 0.2966034710407257, + 0.3906712532043457, + 0.036921098828315735, + 0.09224876016378403, + 0.02836645022034645, + 0.013121644966304302, + 0.17179760336875916, + 0.09241248667240143, + -0.23306499421596527, + -0.0361931174993515, + -0.4037712812423706, + 0.11465311050415039, + -0.22384013235569, + -0.13772326707839966, + 0.1899043619632721, + -0.19693519175052643, + -0.5686931610107422, + -0.17484872043132782, + 0.2454901784658432, + -0.09055855870246887, + -0.21049080789089203, + 0.20207257568836212, + 0.25824782252311707, + -0.0856563076376915, + -0.32466623187065125, + 0.04943637549877167, + -0.6365343332290649, + -0.3912724554538727, + 0.14179760217666626, + -0.06053011864423752, + -0.1336173117160797, + 0.11264845728874207, + 0.5574877858161926, + 0.6269810199737549, + 0.2831834554672241, + -0.1764572411775589, + 0.10152709484100342, + 0.4402831792831421, + 0.2750452160835266, + -0.26345095038414, + -10.53958797454834, + -0.24325020611286163, + -0.4370220899581909, + 0.5419100522994995, + -0.14332497119903564, + 0.03426136448979378, + 0.04662206023931503, + -0.015338003635406494, + -0.015151770785450935, + 0.07651343196630478, + -0.06670750677585602, + -0.13182608783245087, + 0.2413972020149231, + 0.37658578157424927, + -0.020042261108756065, + 0.19873683154582977, + -0.34008076786994934, + 0.1857091784477234, + 0.04247715324163437, + 0.15104743838310242, + 0.12944477796554565, + 0.23402012884616852, + -0.27233079075813293, + 0.10315030068159103, + -0.06042518839240074, + -0.4643903374671936, + -0.19956164062023163, + 0.6833988428115845, + 0.3026259243488312, + -0.49559223651885986, + 0.18144457042217255, + 0.09822139143943787, + -0.08708757907152176, + 0.1921965628862381, + -0.17693962156772614, + -0.02344360575079918, + -0.06860484182834625, + 0.19017118215560913, + 0.47005999088287354, + -0.10647406429052353, + 0.07101799547672272, + -0.17018988728523254, + 0.3171253502368927, + 0.15009671449661255, + -0.12065419554710388, + -0.5578388571739197, + -0.07680998742580414, + -1.6092629432678223, + 0.37576255202293396, + 0.19459375739097595, + 0.2655843198299408, + 0.17125600576400757, + 0.16062740981578827, + 0.320028692483902, + -0.2682441174983978, + -0.031299784779548645, + -0.37888023257255554, + -0.1387372612953186, + 0.12342213094234467, + 0.037366922944784164, + 0.021292701363563538, + -0.07971557974815369, + 0.5174992084503174, + 0.08627235889434814, + -0.2913949489593506, + -0.0070678312331438065, + 0.0806439146399498, + -0.15925346314907074, + -0.3818877935409546, + -0.7508208155632019, + -0.5077129006385803, + -0.015371579676866531, + -0.21697354316711426, + -0.10090424120426178, + 0.34639376401901245, + -0.0360957570374012, + -0.29134833812713623, + 0.29133984446525574, + 0.03507006913423538, + 0.38625314831733704, + 0.3480467200279236, + -0.016976913437247276, + 0.23984700441360474, + -0.24661046266555786, + -0.266758531332016, + -0.11940452456474304, + 0.22042125463485718, + 0.4598276913166046, + 0.022168587893247604, + -0.012605531141161919, + 0.04371859133243561, + 0.38908711075782776, + 0.020787067711353302, + -0.23353531956672668, + -0.5190649032592773, + -0.016093701124191284, + -0.10030075162649155, + 0.09077152609825134, + -0.07327613234519958, + -0.13100510835647583, + -0.21425645053386688, + 0.22100454568862915, + -0.053261373192071915, + -0.60146164894104, + -0.529291033744812, + 0.2726321518421173, + 0.07354256510734558, + 0.2038210779428482, + 0.03103623166680336, + -0.16682370007038116, + -0.2672257721424103, + 0.001944760442711413, + 0.1734459400177002, + 0.5298051834106445, + 0.23192299902439117, + 0.00561538664624095, + -0.020770259201526642, + -0.24250862002372742, + -0.2480211853981018, + -0.0642152801156044, + 0.4254811108112335, + -0.1370002031326294, + 0.2795073688030243, + 0.6639853119850159, + 0.0030143277253955603, + 0.016614986583590508, + 0.9106820225715637, + -0.41669145226478577, + 0.20060107111930847, + 0.001052684267051518, + 0.09848597645759583, + -0.09791652858257294, + -0.4289093315601349, + 0.08117537945508957, + 0.5730606317520142, + -0.33259645104408264, + 0.801346480846405, + 0.24811972677707672, + -0.3711259961128235, + -0.077213816344738, + -0.2828516662120819, + 0.44660547375679016, + 0.16936135292053223, + 0.1950913518667221, + -0.14170639216899872, + -0.2820476293563843, + -0.3287266194820404, + 0.07876759022474289, + -0.2917419672012329, + -0.33581820130348206, + -0.19273975491523743, + 0.197501540184021, + 0.20982851088047028, + -0.19229239225387573, + 0.24591705203056335, + 0.15758797526359558, + -0.1002824679017067, + -0.34775763750076294, + -0.34296268224716187, + -0.0026926216669380665, + 0.16984984278678894, + 0.9312196373939514, + -0.04375514015555382, + -0.16746827960014343, + 0.015947900712490082, + 0.06800193339586258, + -0.36041897535324097, + 0.17884646356105804, + 0.07759329676628113, + -0.04371793940663338, + -0.43101081252098083, + 0.24981124699115753, + 0.13317324221134186, + -0.3283451497554779, + -0.1267511546611786, + -0.09107645601034164, + -0.13491111993789673, + 0.10378967225551605, + -0.17422327399253845, + 0.03339078277349472, + 0.38441774249076843, + -0.12827354669570923, + 0.06830746680498123, + -0.16860397160053253, + -0.14379164576530457, + 0.2162192016839981, + 0.45242002606391907, + 0.024911366403102875, + -0.2729759216308594, + -0.2879253625869751, + -0.5447385311126709, + 0.295782208442688, + -0.47549331188201904, + -0.03999749571084976, + 0.1288137435913086, + 0.184272900223732, + -0.30362462997436523, + 0.176407128572464, + 0.02824077382683754, + -0.0005072636995464563, + -0.20781172811985016, + 0.3229638934135437, + 0.502821147441864, + -0.2654266357421875, + 0.38718515634536743, + -0.11719797551631927, + 0.20717376470565796, + 0.054223570972681046, + -0.219769686460495, + 0.08627665042877197, + -0.4457436203956604 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_068.json b/src/benchmark/output/results/results_graph_068.json new file mode 100644 index 0000000..6a6f661 --- /dev/null +++ b/src/benchmark/output/results/results_graph_068.json @@ -0,0 +1,792 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is an adult male with no specified age or background information provided. However, based on the clinical data, it appears that the patient has a history of lung cancer.\n\n**Timeline of Diagnoses:**\n\n1. **September 2021:** The patient presented to The First Affiliated Hospital of Dalian Medical University with complaints of chest pain and fatigue for half a year. A CT scan revealed partial solid nodules in the posterior segment of the upper lobe of the right lung, which were later diagnosed as malignant neoplasm of bronchus and lung (C34).\n2. **Multiple small lung nodules in both lungs:** Following the initial diagnosis, the patient developed multiple small lung nodules in both lungs, accompanied by abnormal blood test results (lymphocytopenia and neutrophilia). This led to a decision to proceed with surgical resection of lung tissue.\n3. **November 2022:** The patient underwent surgical resection of lung tissue, which revealed invasive adenocarcinoma in the upper lobe of the right lung. The cancer was diagnosed as C2330808 (Adenocarcinoma, Invasive).\n4. **January 2024:** A CT examination revealed recurrent tumor shrinkage of about 7 mm * 9 mm.\n\n**Timeline of Treatments:**\n\n1. **Surgical resection of lung tissue:** The patient underwent surgical resection of lung tissue in November 2022.\n2. **No second surgical treatment:** The patient refused a second surgical treatment for the recurrence of primary cancer, which presented as ground glass nodules in the left lung.\n\n**Timeline of Outcomes:**\n\n1. **Pathological diagnosis:** The pathological diagnosis of invasive adenocarcinoma was confirmed post-surgery in November 2022.\n2. **Recurrence of primary cancer:** The patient developed recurrence of primary cancer with ground glass nodules in the left lung and new symptoms (fatigue, pale tongue, white fur, and weak pulse) in November 2022.\n3. **Recurrent tumor shrinkage:** A CT examination revealed recurrent tumor shrinkage of about 7 mm * 9 mm in January 2024.\n\n**Clinical Findings:**\n\nThroughout the patient's treatment, various clinical findings were reported, including:\n\n* Chest pain and fatigue\n* Multiple small lung nodules in both lungs\n* Abnormal blood test results (lymphocytopenia and neutrophilia)\n* Invasive adenocarcinoma in the upper lobe of the right lung\n* Ground glass nodules in the left lung\n* Recurrent tumor shrinkage\n\n**Laboratory Results:**\n\nThe patient's laboratory results showed:\n\n* Normal blood work (January 2024)\n* Elevated carcinoembryonic antigen level (November 2022)\n\n**Imaging Results:**\n\nThe patient underwent various imaging studies, including CT scans and pathology reports, which revealed:\n\n* Partial solid nodules in the posterior segment of the upper lobe of the right lung (September 2021)\n* Multiple small lung nodules in both lungs\n* Invasive adenocarcinoma in the upper lobe of the right lung\n* Ground glass nodules in the left lung\n* Recurrent tumor shrinkage\n\n**Prognosis:**\nThe patient's prognosis remains uncertain, as the cancer has recurred and treatment options are limited. Further evaluation and management are necessary to determine the best course of action.\n\n**Conclusion:**\nThis clinical case report highlights the complexities of managing lung cancer, particularly in cases where recurrence occurs. The patient's treatment plan will require careful consideration of various factors, including the patient's overall health, tumor characteristics, and available treatment options.", + "bertscore": { + "precision": 0.8164668083190918, + "recall": 0.7990182638168335, + "f1": 0.8076483011245728 + }, + "bleu": 0.14948288116375336, + "rouge1": 0.518118735543562, + "rougeL": 0.2713955281418658, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 7, + "edge_count": 6, + "avg_in_degree": 0.8571428571428571, + "density": 0.14285714285714285 + }, + "trajectory_embedding": [ + 0.257910817861557, + 0.11300678551197052, + -0.15380962193012238, + -0.04967570677399635, + -0.14522525668144226, + 0.06221002712845802, + 0.07804203033447266, + 0.17250725626945496, + 0.2976982593536377, + -0.48700565099716187, + -0.2710980474948883, + 0.19328932464122772, + -0.552730143070221, + -0.1464165896177292, + -0.4568333923816681, + 0.13878197968006134, + 0.02563413418829441, + 0.2673860490322113, + -0.019058991223573685, + -0.18468356132507324, + -0.4789164662361145, + 0.0781332477927208, + -0.2851276099681854, + -0.24811133742332458, + 0.20884834229946136, + -0.016835913062095642, + 0.25854167342185974, + 0.35525670647621155, + 0.21759851276874542, + 0.4681854546070099, + 0.2248246967792511, + 0.133042111992836, + -0.03714079037308693, + 0.05629848688840866, + -0.1767597198486328, + 0.43038496375083923, + 0.3032340407371521, + 0.32303494215011597, + -0.04867037013173103, + 0.06161421164870262, + 0.058320362120866776, + 0.12750902771949768, + 0.8212385177612305, + 0.41533976793289185, + 0.5168468356132507, + -0.679559588432312, + 0.07470003515481949, + 0.35858991742134094, + -0.5663052797317505, + -0.08274025470018387, + 0.07410455495119095, + 0.6897895932197571, + 0.6447339653968811, + -0.03358379378914833, + 0.40656599402427673, + -0.10406357795000076, + -0.5019628405570984, + -0.2848895490169525, + -0.3709580600261688, + 0.006552434526383877, + -0.08974719047546387, + -0.0024305772967636585, + 0.09557554870843887, + 0.03158172219991684, + -0.3938182294368744, + -0.13308726251125336, + -0.0766187384724617, + 0.1671714037656784, + 1.7858508726931177e-05, + -0.4156047999858856, + -0.3196241855621338, + -0.08988817036151886, + -0.09667807817459106, + 0.16465596854686737, + 0.08332294225692749, + -0.2664347290992737, + 0.2311166226863861, + 0.14017698168754578, + 0.15632550418376923, + 0.12526968121528625, + 0.09520483016967773, + 0.07731276750564575, + 0.07999370992183685, + 0.15698719024658203, + -0.38738980889320374, + 0.11310368031263351, + -0.122066430747509, + -0.1456766575574875, + -0.2630731761455536, + 0.2728005647659302, + 0.25551721453666687, + -0.17390330135822296, + -0.17627640068531036, + -0.08535031229257584, + 0.1371786743402481, + 0.07251978665590286, + 0.2027861624956131, + 0.4604012072086334, + 0.9338180422782898, + 0.014508937485516071, + 0.15948785841464996, + 0.13478852808475494, + 0.23506386578083038, + 0.04120669886469841, + 0.47317975759506226, + -0.10579004138708115, + 0.1435161530971527, + -0.5643869042396545, + -0.0015329867601394653, + 0.5455747246742249, + -0.0219764094799757, + -0.036088209599256516, + 0.025912806391716003, + -0.34990420937538147, + 0.04349283128976822, + 0.021924296393990517, + -0.16728831827640533, + 0.17924459278583527, + 0.13912682235240936, + -0.3372514545917511, + 0.04560248181223869, + -0.0229333508759737, + 0.3301222026348114, + 0.2795155346393585, + -0.4968406558036804, + 0.015529283322393894, + -0.18602527678012848, + 0.11655867099761963, + 0.07062103599309921, + 0.053703151643276215, + -0.4289408326148987, + -0.1267450600862503, + -0.0052694897167384624, + 0.17655329406261444, + -0.08067993819713593, + 0.37970200181007385, + -0.32298213243484497, + -0.03782970458269119, + -1.0430104732513428, + 0.17690931260585785, + -0.41261714696884155, + -0.19421198964118958, + 0.07163189351558685, + -0.309453547000885, + -0.22980134189128876, + -0.18007990717887878, + -0.14290952682495117, + 0.24436593055725098, + -0.09717380255460739, + -0.11724849790334702, + -0.1623566448688507, + 0.1656780242919922, + 0.03994229808449745, + 0.3269713222980499, + 0.11053980141878128, + 0.11616048961877823, + 0.11836142838001251, + 0.20040975511074066, + 0.102094367146492, + -0.07785135507583618, + -0.007163951639086008, + 0.2859248220920563, + -0.032562918961048126, + -0.14833112061023712, + -0.008867095224559307, + -0.6301792860031128, + 0.2578873634338379, + -0.326127290725708, + 0.3455800414085388, + 0.10990671068429947, + -0.23336918652057648, + 0.08967093378305435, + -0.17060354351997375, + 0.6361510157585144, + 0.29917603731155396, + 0.38942641019821167, + 0.1329830139875412, + -0.03214949741959572, + 0.02214880660176277, + 0.1379566341638565, + 0.1067245677113533, + 0.10406391322612762, + 0.5688046216964722, + 0.07914479076862335, + -0.2788706123828888, + 0.16789428889751434, + 0.365398645401001, + -0.1660861223936081, + -0.16790124773979187, + -0.17871248722076416, + 0.4429779648780823, + -0.2852441668510437, + 0.2592916190624237, + -0.46805912256240845, + -0.06363794952630997, + 0.027121590450406075, + -0.36002108454704285, + -0.32579126954078674, + 0.17554299533367157, + -0.14457689225673676, + 0.16129231452941895, + 0.08408020436763763, + -0.1657658964395523, + 0.1598348617553711, + 0.11962132900953293, + -0.13328878581523895, + 0.4140895903110504, + 0.016213973984122276, + 0.0763547420501709, + -0.2014019936323166, + -0.22820483148097992, + 0.2024112045764923, + -0.07958986610174179, + 0.3245660662651062, + 0.13307632505893707, + -0.19950516521930695, + 0.1922171413898468, + -0.10051142424345016, + -0.0259255301207304, + 0.202180415391922, + -0.041997142136096954, + 0.0012015923857688904, + 0.1957121193408966, + -0.01669490896165371, + -0.4792470633983612, + 0.2618766725063324, + 0.15061260759830475, + 0.17356610298156738, + 0.17918694019317627, + -0.1169610396027565, + 0.12071911245584488, + -0.21224723756313324, + 0.27193012833595276, + -0.09437282383441925, + -0.19468651711940765, + -0.2538995146751404, + 0.2276444286108017, + -0.22820214927196503, + -0.09768296778202057, + 0.40628817677497864, + -0.234662726521492, + -0.20958593487739563, + 0.17395827174186707, + -0.28271549940109253, + -0.1604999303817749, + -0.24928922951221466, + 0.07390798628330231, + 0.2517296373844147, + 0.20566269755363464, + 0.3778197467327118, + 0.18780432641506195, + -0.031177373602986336, + 0.13938194513320923, + -0.35594186186790466, + -0.06270204484462738, + -0.3875791132450104, + -0.05299249291419983, + -0.15581496059894562, + -0.43189939856529236, + -0.10690911114215851, + 0.09435353428125381, + -0.26190605759620667, + 0.2100285291671753, + -0.39513131976127625, + -0.16501006484031677, + 0.08892975747585297, + -0.1010013297200203, + 0.14383026957511902, + -0.23211108148097992, + 0.30838486552238464, + -0.25435084104537964, + -0.18839368224143982, + -0.09086290746927261, + 0.0402226559817791, + 0.32440900802612305, + 0.02355138771235943, + 0.022190028801560402, + 0.0861833468079567, + 0.10816608369350433, + -0.4298248589038849, + -0.336774617433548, + 0.13587817549705505, + -0.25500306487083435, + 0.23458942770957947, + -0.1441519558429718, + 0.1892801970243454, + 0.5324669480323792, + -0.02555871196091175, + 0.19611819088459015, + 0.3758634924888611, + 0.5762526392936707, + 0.17223426699638367, + -0.1804651916027069, + -0.05172509700059891, + 0.0014566077152267098, + -0.09912760555744171, + -0.4437260627746582, + 0.21475696563720703, + -0.10044058412313461, + 0.03050301969051361, + -0.10264978557825089, + 0.17729809880256653, + 0.014340017922222614, + -0.3781067728996277, + -0.20162799954414368, + 0.6308273673057556, + 0.22443614900112152, + 0.12554390728473663, + 0.10289487987756729, + 0.38225558400154114, + 0.5230599045753479, + -0.06768714636564255, + -0.25093701481819153, + -0.055451951920986176, + -0.1952861100435257, + -0.1934734582901001, + -0.2511402666568756, + 0.03232553228735924, + 0.21090854704380035, + -0.08662402629852295, + -0.08637242019176483, + 0.24084079265594482, + -0.11112572252750397, + -0.16587631404399872, + 0.021634820848703384, + 0.06401766091585159, + 0.1695651262998581, + -0.401689738035202, + 0.17993757128715515, + -0.1848776638507843, + -0.071177639067173, + 0.4663868248462677, + -0.14145983755588531, + -0.30292361974716187, + 0.2356678992509842, + 0.0054202997125685215, + -0.33236318826675415, + 0.3066963255405426, + -0.3104722797870636, + 0.021008459851145744, + 0.34235307574272156, + -0.16197632253170013, + -0.09682395309209824, + -0.20880649983882904, + 0.09334950894117355, + 0.09295223653316498, + -0.01833457686007023, + -0.10675712674856186, + 0.10031618177890778, + 0.18376269936561584, + 0.6338824033737183, + 0.14719250798225403, + -0.061250608414411545, + 0.3609916865825653, + -0.08907049149274826, + -0.23203401267528534, + -0.028914181515574455, + 0.015907661989331245, + 0.18478600680828094, + -0.1589738428592682, + -0.3454917371273041, + -0.20965316891670227, + 0.2043069303035736, + 0.08620325475931168, + -0.36280354857444763, + -0.0058339363895356655, + 0.14572790265083313, + 0.0383317731320858, + 0.037166450172662735, + 0.27156952023506165, + 0.4179667830467224, + 0.010855287313461304, + 0.5978474617004395, + 0.10450074821710587, + 0.04088432341814041, + 0.3417457938194275, + -0.07894221693277359, + 0.2239762246608734, + -0.16890788078308105, + -0.35792964696884155, + -0.4607165455818176, + 0.008754143491387367, + -0.18909214437007904, + -0.19390001893043518, + 0.05790316313505173, + -0.002972081769257784, + 0.05440378561615944, + -0.17599141597747803, + 0.19892607629299164, + -0.07598540931940079, + 0.08387656509876251, + 0.08871302753686905, + 0.4303794205188751, + -0.12228763848543167, + -0.23714081943035126, + 0.30283620953559875, + -0.016660790890455246, + 0.24756070971488953, + -0.09654510021209717, + -0.193336620926857, + -0.17527355253696442, + 0.3275286853313446, + -0.06291978806257248, + -0.034940946847200394, + -0.032658882439136505, + -0.060590360313653946, + -0.2374279499053955, + -0.2899346649646759, + -0.040939442813396454, + -0.18875372409820557, + -0.18698661029338837, + -0.1081521064043045, + 0.12437715381383896, + -0.2138088047504425, + -0.2943722903728485, + -0.0444556288421154, + 0.1590350866317749, + 0.25248897075653076, + -0.14792773127555847, + 0.10739093273878098, + 0.23395469784736633, + 0.034710485488176346, + 0.3290145993232727, + -0.1953204721212387, + 0.10524509847164154, + -0.04479096457362175, + -0.25737708806991577, + -0.16353082656860352, + 0.10642571747303009, + -0.2869308888912201, + -0.10941682755947113, + 0.12703506648540497, + 0.23196367919445038, + 0.023255154490470886, + 0.03595578670501709, + -0.0015696244081482291, + 0.16496476531028748, + -0.37702757120132446, + -0.1228712946176529, + 0.25661811232566833, + -0.015411469154059887, + 0.46193763613700867, + 0.04135467857122421, + -0.26964786648750305, + -0.09547962993383408, + -0.17507517337799072, + -0.3632226288318634, + 0.192514106631279, + 0.10959605127573013, + 0.021600497886538506, + -0.05275629088282585, + 0.08311472088098526, + 0.047228723764419556, + -0.006591098848730326, + 0.335419625043869, + 0.015506991185247898, + 0.16610033810138702, + -0.04257791116833687, + -0.31140097975730896, + -0.11086351424455643, + -0.3570387363433838, + -0.1267203390598297, + -0.3058464825153351, + 0.4352256953716278, + 0.21142961084842682, + -0.20587600767612457, + 0.01921088993549347, + 0.22315014898777008, + -0.3580777049064636, + -0.21406105160713196, + -0.018174588680267334, + -0.07430107146501541, + 0.6013728976249695, + 0.11590957641601562, + -0.230387344956398, + 0.17042455077171326, + -0.26303163170814514, + 0.23465704917907715, + 0.1601210981607437, + 0.15655794739723206, + 0.3975866436958313, + 0.2466340959072113, + 0.030884066596627235, + 0.5256264209747314, + 0.14188574254512787, + -0.0005735818995162845, + 0.24675491452217102, + -0.0668097659945488, + 0.03410813957452774, + -0.11404989659786224, + -0.1723935306072235, + 0.4611855149269104, + -0.19366027414798737, + 0.1929199993610382, + 0.21703235805034637, + 0.24089619517326355, + -0.3656768202781677, + -0.32505765557289124, + -0.013640071265399456, + -0.12561489641666412, + -0.14239375293254852, + -0.28019729256629944, + -0.17725086212158203, + 0.09302232414484024, + -0.3797146677970886, + -0.011877929791808128, + 0.33361148834228516, + 0.26836803555488586, + 0.1832355409860611, + 0.14867854118347168, + -0.2718643248081207, + -0.549046516418457, + 0.03244709596037865, + 0.3028177320957184, + 0.04109968990087509, + -0.05554979667067528, + -0.1559552252292633, + 0.22826732695102692, + 0.5046679377555847, + -0.058798205107450485, + -0.035188425332307816, + 0.017042379826307297, + -0.04334796592593193, + -0.096144899725914, + 0.11144337803125381, + -0.13208167254924774, + -0.11256126314401627, + -0.2553696036338806, + 0.17507793009281158, + -0.27199405431747437, + -0.35706278681755066, + 0.0870698019862175, + -0.13155190646648407, + -0.28870344161987305, + -0.17460618913173676, + 0.24993896484375, + -0.1518329530954361, + -0.05495179817080498, + 0.20044134557247162, + 0.5630549788475037, + 0.23897819221019745, + -0.19199791550636292, + 0.1335974782705307, + -0.4680521488189697, + -0.09780969470739365, + 0.21133430302143097, + -0.18471264839172363, + 0.035050928592681885, + 0.06235470995306969, + 0.39093461632728577, + 0.3089151978492737, + 0.13247427344322205, + -0.443920761346817, + -0.031239641830325127, + 0.19824740290641785, + 0.282096803188324, + -0.227371484041214, + -10.921643257141113, + -0.03881015256047249, + -0.11955142021179199, + 0.44315019249916077, + -0.17297972738742828, + 0.1154191642999649, + 0.16336701810359955, + -0.04355164244771004, + 0.1938946545124054, + 0.15325133502483368, + -0.32515648007392883, + 0.05140870064496994, + 0.21076002717018127, + 0.14866122603416443, + 0.04258067533373833, + -0.1140730008482933, + -0.2215823382139206, + 0.11299649626016617, + 0.049213673919439316, + 0.17940069735050201, + 0.3351728916168213, + 0.3969946503639221, + -0.15206965804100037, + 0.4012179970741272, + 0.3075217306613922, + -0.3096199333667755, + -0.21893838047981262, + 0.46285662055015564, + 0.05433392897248268, + -0.40873971581459045, + 0.20000895857810974, + 0.17597278952598572, + -0.18395327031612396, + -0.0980963185429573, + -0.03955435752868652, + -0.1916564553976059, + -0.1056063324213028, + 0.03228755295276642, + 0.09082381427288055, + -0.23321597278118134, + 0.045616038143634796, + -0.239066943526268, + 0.07958667725324631, + 0.3520508110523224, + -0.05643850564956665, + -0.43123215436935425, + -0.30093154311180115, + -1.4472496509552002, + 0.31958451867103577, + 0.24062666296958923, + 0.47002777457237244, + 0.07725192606449127, + 0.25205814838409424, + 0.09040461480617523, + -0.4781024754047394, + 0.07967328280210495, + -0.0885622426867485, + 0.0735144093632698, + 0.10490528494119644, + -0.10102032124996185, + 0.13732607662677765, + -0.16178952157497406, + 0.4973938465118408, + -0.22768403589725494, + -0.21819543838500977, + 0.1483512818813324, + -0.14249287545681, + -0.013923419639468193, + -0.004140827339142561, + -0.29926005005836487, + -0.5383898019790649, + -0.18086722493171692, + -0.06241372972726822, + 0.06002248078584671, + 0.3923259675502777, + -0.09438575059175491, + -0.4361092746257782, + 0.1807328462600708, + 0.0064940121956169605, + 0.3181244432926178, + 0.09866649657487869, + 0.02553069218993187, + 0.17628821730613708, + -0.11486543715000153, + -0.16882114112377167, + -0.2226882129907608, + -0.015100106596946716, + 0.39919859170913696, + 0.005192925687879324, + 0.026073921471834183, + -0.12851813435554504, + 0.2884746491909027, + -0.009317421354353428, + -0.33114033937454224, + -0.48016563057899475, + 0.06349640339612961, + -0.014390530064702034, + 0.0702880322933197, + 0.07262090593576431, + -0.11045648157596588, + -0.027649031952023506, + -0.1769273430109024, + 0.056880079209804535, + -0.489705353975296, + -0.2054206281900406, + 0.31949034333229065, + 0.1423395574092865, + 0.19040080904960632, + 0.2038942128419876, + 0.035608045756816864, + -0.034638501703739166, + -0.10403968393802643, + 0.28506919741630554, + 0.5592585802078247, + 0.030886664986610413, + -0.13787482678890228, + -0.16464214026927948, + -0.017582980915904045, + -0.4104207158088684, + 0.15400509536266327, + 0.38337764143943787, + -0.09984564781188965, + 0.4529314637184143, + 0.4032384753227234, + -0.04598564654588699, + -0.08253119140863419, + 0.9451876878738403, + -0.24790246784687042, + 0.17935578525066376, + -0.2555616796016693, + 0.27246150374412537, + -0.1169796958565712, + -0.299321711063385, + 0.005042029079049826, + 0.4223065674304962, + -0.320008248090744, + 0.6217605471611023, + 0.0398024246096611, + -0.46446695923805237, + 0.06261195987462997, + -0.10402078181505203, + 0.47655174136161804, + 0.3902003765106201, + 0.21526029706001282, + -0.10089581459760666, + -0.3213474154472351, + -0.25325459241867065, + 0.05054272338747978, + -0.30911463499069214, + -0.35181012749671936, + -0.10106396675109863, + 0.022647807374596596, + 0.022388502955436707, + -0.3158870041370392, + 0.38259002566337585, + 0.1236480325460434, + -0.19847598671913147, + -0.0909845381975174, + -0.5730968713760376, + -0.039837006479501724, + 0.35183098912239075, + 0.7271355390548706, + -0.025470752269029617, + -0.005656791385263205, + -0.1562054604291916, + 0.017243729904294014, + -0.043475788086652756, + 0.2513992488384247, + 0.02429349534213543, + -0.026223108172416687, + -0.5405780673027039, + 0.16676625609397888, + 0.04218953475356102, + -0.28371351957321167, + -0.1204003319144249, + -0.3467075526714325, + 0.09304962307214737, + -0.015151949599385262, + -0.12499912083148956, + 0.28778377175331116, + 0.36443331837654114, + -0.038726307451725006, + -0.02391372248530388, + -0.10095508396625519, + 0.23879598081111908, + 0.22273504734039307, + 0.2852991819381714, + 0.10914801061153412, + -0.09601807594299316, + -0.5023117661476135, + -0.4190657436847687, + 0.29546263813972473, + -0.22277162969112396, + -0.15266098082065582, + 0.1191401332616806, + 0.14395330846309662, + -0.335524320602417, + -0.03250269964337349, + -0.2945737838745117, + 0.07886723428964615, + -0.19570288062095642, + 0.0793914720416069, + 0.37023988366127014, + -0.17387816309928894, + 0.08216991275548935, + -0.2517470717430115, + 0.3181871473789215, + 0.022438665851950645, + -0.3121962249279022, + 0.2183285504579544, + -0.29422396421432495 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_069.json b/src/benchmark/output/results/results_graph_069.json new file mode 100644 index 0000000..9da4ba6 --- /dev/null +++ b/src/benchmark/output/results/results_graph_069.json @@ -0,0 +1,792 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 67-year-old man with a significant smoking history, having smoked 30 cigarettes per day for 50 years. He presented to the clinic with a persistent dry cough that had lasted for more than three months.\n\n**Timeline of Diagnoses and Treatments:**\n\n1. **July 2019:** The patient was diagnosed with a mass in the central left upper lobe, enlarged bilateral mediastinal lymph nodes, and bilateral pulmonary nodules on contrast-enhanced chest CT (Step 2). Biopsy of the lesion under tracheoscopy confirmed lung adenocarcinoma histologically (Step 3).\n2. **July-September 2019:** The patient underwent whole-body scanning, which revealed macroscopic metastases in the bone. He was clinically classified as stage IVB (T4N0M1c) Non-Small Cell Lung Carcinoma (NSCLC). Zoledronic acid was administered to control bone destruction (Step 4).\n3. **September-October 2019:** The patient underwent tissue biopsy, which detected an acquired T790M mutation in exon 20 (c.2369C>T, frequency as 61.9%) via droplet digital polymerase chain reaction (ddPCR) (Step 7).\n4. **October-November 2019:** Due to the detection of the T790M mutation, the patient was switched to osimertinib 80mg once daily, achieving stable disease with shrinkage of hepatic lesions (Step 8).\n\n**Outcomes:**\n\n1. The patient experienced a rapid clinical benefit lasting 11 months after starting treatment with gefitinib (250 mg once daily) in response to the detection of EGFR exon 19 deletion (Step 6).\n2. After 11 months on gefitinib, tissue biopsy was performed to investigate resistance mechanisms, detecting an acquired T790M mutation in exon 20 (c.2369C>T, frequency as 61.9%) via droplet digital polymerase chain reaction (ddPCR) (Step 7).\n\n**Conclusion:**\nThe patient's clinical course highlights the importance of molecular testing and targeted therapy in the management of NSCLC. The detection of EGFR exon 19 deletion led to treatment with gefitinib, resulting in a rapid clinical benefit. However, the subsequent development of T790M mutation necessitated a switch to osimertinib, achieving stable disease with shrinkage of hepatic lesions.\n\n**Recommendations:**\n\n1. Regular molecular testing for EGFR mutations and T790M status should be performed in patients with NSCLC.\n2. Targeted therapy with gefitinib or osimertinib should be considered based on molecular test results.\n3. Close monitoring of disease progression and response to treatment is essential in managing NSCLC.\n\n**Limitations:**\n\n1. The patient's clinical course was limited by the availability of targeted therapies at the time of diagnosis.\n2. Further research is needed to explore the optimal timing and sequence of molecular testing and targeted therapy in NSCLC.\n\nThis case highlights the importance of personalized medicine in the management of NSCLC, emphasizing the need for regular molecular testing and targeted therapy based on test results.", + "bertscore": { + "precision": 0.8484562039375305, + "recall": 0.8624377250671387, + "f1": 0.8553898930549622 + }, + "bleu": 0.21123213345024985, + "rouge1": 0.5747800586510264, + "rougeL": 0.29912023460410553, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 8, + "edge_count": 7, + "avg_in_degree": 0.875, + "density": 0.125 + }, + "trajectory_embedding": [ + 0.25666746497154236, + 0.09836211800575256, + -0.10564713180065155, + 0.11217941343784332, + 0.015587031841278076, + 0.07877800613641739, + -0.006527600809931755, + 0.30493852496147156, + 0.5536767244338989, + -0.33620452880859375, + -0.018288739025592804, + -0.09518112242221832, + -0.5867060422897339, + -0.1109105795621872, + -0.2592107355594635, + 0.24846264719963074, + -0.07007073611021042, + 0.40585020184516907, + -0.035121072083711624, + -0.17632266879081726, + -0.41150736808776855, + 0.12900085747241974, + -0.5179646611213684, + 0.011795973405241966, + 0.2825905680656433, + -0.00016220123507082462, + 0.34252843260765076, + 0.4280332922935486, + 0.22219640016555786, + 0.3613862991333008, + 0.07800126075744629, + -0.2447209656238556, + 0.19326499104499817, + 0.07914368063211441, + -0.29915452003479004, + 0.09507599472999573, + 0.22362208366394043, + 0.46399396657943726, + -0.18116922676563263, + -0.007514392025768757, + -0.12442851066589355, + 0.07210458815097809, + 0.934358537197113, + 0.10561495274305344, + 0.3901500999927521, + -0.6726486086845398, + -0.08380874991416931, + 0.5911934971809387, + -0.5257490873336792, + -0.29130375385284424, + 0.1044064536690712, + 0.8028460741043091, + 0.5484437942504883, + -0.24162191152572632, + 0.4524662494659424, + -0.18043237924575806, + -0.29025259613990784, + -0.22971883416175842, + -0.14949378371238708, + 0.05125546455383301, + 0.07477600127458572, + -0.35419896245002747, + 0.41701623797416687, + -0.17004019021987915, + -0.21359305083751678, + -0.1945311725139618, + -0.3463388979434967, + 0.09063318371772766, + -0.0030839145183563232, + -0.3870120048522949, + -0.09583520144224167, + -0.1283489465713501, + -0.2513892948627472, + 0.1604527235031128, + 0.18581846356391907, + -0.11709420382976532, + 0.33531466126441956, + -0.03188348188996315, + 0.19029131531715393, + 0.2550313174724579, + -0.0822543129324913, + -0.15219824016094208, + -0.09043455123901367, + 0.3333173990249634, + -0.3944036662578583, + 0.042653217911720276, + -0.018155138939619064, + -0.35361000895500183, + -0.49409446120262146, + 0.18242305517196655, + 0.2514861524105072, + -0.3646293580532074, + 0.02510599046945572, + -0.16440901160240173, + -0.04039209336042404, + 0.25337204337120056, + 0.6405584812164307, + 0.2825964093208313, + 0.8349196910858154, + 0.053331635892391205, + 0.23610857129096985, + 0.05057676136493683, + 0.18641595542430878, + 0.11548621207475662, + 0.3753573000431061, + -0.06961709260940552, + 0.21650367975234985, + -0.4167139530181885, + 0.3236599862575531, + 0.4980228543281555, + 0.08730289340019226, + -0.23056495189666748, + 0.027384035289287567, + -0.18483182787895203, + 0.26607802510261536, + 0.1577218770980835, + -0.0730682760477066, + 0.2394803911447525, + 0.40272998809814453, + -0.5341137647628784, + -0.1731872856616974, + -0.041732899844646454, + 0.37931421399116516, + 0.3169870972633362, + -0.4419413208961487, + -0.11098247021436691, + -0.06337802112102509, + -0.08721653372049332, + 0.03974949195981026, + 0.017354171723127365, + -0.5232160091400146, + -0.21202696859836578, + -0.12197725474834442, + -0.009444866329431534, + -0.18841594457626343, + 0.20541569590568542, + -0.3392311930656433, + -0.006989772897213697, + -1.1055917739868164, + 0.21539819240570068, + -0.38327109813690186, + -0.12076538801193237, + -0.03378903865814209, + -0.45007824897766113, + -0.2675973176956177, + -0.2437313348054886, + -0.18390080332756042, + 0.2096915990114212, + -0.12327835708856583, + -0.09460892528295517, + 0.1252395212650299, + 0.040386710315942764, + 0.20688828825950623, + 0.6405147910118103, + 0.04969670996069908, + 0.04438483715057373, + 0.04089076817035675, + 0.23667104542255402, + 0.09772547334432602, + -0.10673050582408905, + 0.009607091546058655, + 0.5492638349533081, + 0.24171483516693115, + -0.001349408645182848, + -0.02168954536318779, + -0.6605674624443054, + 0.03441593050956726, + -0.11884206533432007, + 0.1436830461025238, + -0.010533898137509823, + -0.16988228261470795, + 0.0326748862862587, + -0.30332010984420776, + 0.640763521194458, + -0.06947337090969086, + 0.377486914396286, + 0.03378318250179291, + -0.06391999125480652, + 0.10308650135993958, + 0.2027653604745865, + 0.14286676049232483, + -0.2090056836605072, + 0.7181804180145264, + 0.2938482165336609, + -0.3369445502758026, + 0.10026802122592926, + 0.2669830620288849, + 0.004845362156629562, + -0.22821567952632904, + 0.0394570454955101, + 0.4800572097301483, + -0.34305521845817566, + 0.5293163657188416, + -0.41192543506622314, + 0.07043854892253876, + 0.20112955570220947, + -0.15012454986572266, + -0.028599578887224197, + -0.023524366319179535, + -0.15297278761863708, + 0.25060245394706726, + 0.08758500218391418, + -0.36206623911857605, + 0.09267867356538773, + 0.1335269808769226, + -0.15156210958957672, + 0.2387210875749588, + -0.09116030484437943, + 0.06634648144245148, + 0.030832534655928612, + -0.03730488196015358, + 0.23086045682430267, + -0.0797153189778328, + 0.18242359161376953, + -0.014068938791751862, + -0.40358978509902954, + 0.20286288857460022, + -0.07431277632713318, + -0.14920426905155182, + 0.08184167742729187, + -0.06755200773477554, + -0.3457333445549011, + -0.1492878794670105, + 0.05128539726138115, + -0.5932213664054871, + 0.18393123149871826, + 0.0824032723903656, + 0.24191436171531677, + 0.2795810103416443, + -0.011457322165369987, + -0.04560541361570358, + -0.36321258544921875, + 0.3616323471069336, + -0.06459646672010422, + -0.05504806712269783, + -0.3412683606147766, + 0.3263639211654663, + -0.18049117922782898, + 0.12835970520973206, + 0.32410502433776855, + 0.04115778207778931, + -0.10247916728258133, + 0.21699130535125732, + -0.32951346039772034, + -0.07888811081647873, + -0.3947087824344635, + -0.08454478532075882, + 0.34643369913101196, + 0.07439595460891724, + 0.31764206290245056, + 0.09817415475845337, + -0.21077699959278107, + 0.15804523229599, + -0.18754459917545319, + -0.43145880103111267, + -0.4026658535003662, + -0.14664074778556824, + -0.18226730823516846, + -0.6329051852226257, + 0.1640111804008484, + 0.050134576857089996, + -0.06383318454027176, + 0.16606715321540833, + -0.31898292899131775, + -0.051457252353429794, + 0.08045471459627151, + 0.05186709016561508, + 0.08801534026861191, + -0.2857780456542969, + 0.0887056291103363, + -0.2129225730895996, + -0.2659778296947479, + -0.10775581002235413, + -0.033920768648386, + 0.08397144824266434, + 0.044675201177597046, + -0.25342482328414917, + -0.010279938578605652, + 0.12222690880298615, + -0.2919011116027832, + -0.09838028252124786, + 0.18340519070625305, + -0.15575754642486572, + 0.18318885564804077, + 0.0067793577909469604, + 0.28727737069129944, + 0.25091224908828735, + 0.10195071250200272, + 0.13100571930408478, + 0.3899761736392975, + 0.49315428733825684, + -0.07927301526069641, + 0.025261692702770233, + -0.10839638859033585, + -0.0816258117556572, + -0.030743882060050964, + -0.33818185329437256, + 0.3746686577796936, + 0.04611862450838089, + -0.017529593780636787, + 0.025740139186382294, + 0.31984949111938477, + 0.14884240925312042, + -0.29760751128196716, + 0.05642168968915939, + 0.5311634540557861, + 0.0994412750005722, + 0.19660961627960205, + 0.1454971730709076, + 0.2518691420555115, + 0.3074530363082886, + -0.13429395854473114, + 0.1153658777475357, + 0.2333822101354599, + -0.12232224643230438, + -0.18372851610183716, + -0.0720856711268425, + 0.13661940395832062, + 0.42326945066452026, + -0.11844570934772491, + -0.18767580389976501, + 0.03744101896882057, + -0.12768149375915527, + -0.0298610907047987, + -0.2751069664955139, + -0.22378407418727875, + 0.10570341348648071, + -0.2272801548242569, + 0.41350069642066956, + 0.046144403517246246, + 0.03656047582626343, + 0.4484408497810364, + -0.4249313473701477, + -0.20341786742210388, + 0.19298073649406433, + -0.20763367414474487, + -0.4511153995990753, + 0.39717018604278564, + -0.21834659576416016, + -0.017930038273334503, + 0.4075450599193573, + -0.42279547452926636, + -0.033417850732803345, + -0.006711484864354134, + 0.3404155373573303, + -0.11087452620267868, + -0.0027406886219978333, + -0.059695057570934296, + 0.12452209740877151, + 0.1565469354391098, + 0.583995521068573, + 0.19145068526268005, + 0.2966713607311249, + 0.682086169719696, + 0.10559949278831482, + -0.35648390650749207, + 0.07549180835485458, + -0.09466895461082458, + 0.40385594964027405, + -0.18018187582492828, + -0.16928385198116302, + -0.22170531749725342, + 0.019481703639030457, + -0.00995594635605812, + -0.3576612174510956, + 0.06909862905740738, + 0.19293169677257538, + 0.09793014824390411, + -0.03551984205842018, + 0.3290531039237976, + 0.1922406107187271, + -0.06429126858711243, + 0.44014090299606323, + 0.043542567640542984, + -0.10600118339061737, + 0.30084165930747986, + -0.22587302327156067, + 0.1712511032819748, + 0.036774687469005585, + -0.159850612282753, + -0.34072425961494446, + 0.1383986473083496, + -0.2547699511051178, + -0.15231941640377045, + -0.030812354758381844, + -0.20281964540481567, + 0.042921412736177444, + -0.31337788701057434, + 0.09639241546392441, + -0.022920481860637665, + 0.19006317853927612, + 0.15015213191509247, + 0.33820581436157227, + 0.052548620849847794, + -0.22459056973457336, + 0.3048524856567383, + 0.04193713515996933, + -0.018307477235794067, + -0.2143227905035019, + 0.016221703961491585, + -0.11753380298614502, + 0.7342591285705566, + 0.10019055008888245, + 0.06097016483545303, + 0.018677005544304848, + -0.01033921167254448, + -0.12460128962993622, + -0.4061761200428009, + -0.06788623332977295, + -0.10716073215007782, + 0.1844807267189026, + 0.13965795934200287, + -0.020252803340554237, + -0.4010528326034546, + -0.12914541363716125, + -0.06211543455719948, + -0.023204544559121132, + 0.0714690089225769, + -0.18026070296764374, + -0.17783468961715698, + 0.25477340817451477, + 0.1980656534433365, + 0.4922015964984894, + -0.505878746509552, + 0.1366254836320877, + 0.09200766682624817, + -0.36253616213798523, + -0.03907886520028114, + -0.11656356602907181, + -0.36645838618278503, + -0.08961674571037292, + 0.21734029054641724, + 0.21677625179290771, + -0.0009335018694400787, + -0.0403369665145874, + 0.16244661808013916, + 0.2696321904659271, + -0.42910662293434143, + -0.09376411885023117, + 0.3015987277030945, + 0.12665431201457977, + 0.395073264837265, + 0.09692437946796417, + -0.5088995695114136, + -0.16167086362838745, + -0.18511955440044403, + -0.45006123185157776, + -0.00400446355342865, + 0.32954469323158264, + -0.048425666987895966, + -0.08821266144514084, + -0.0033811014145612717, + 0.036058783531188965, + -0.06416185945272446, + 0.25571030378341675, + -0.12525710463523865, + 0.22573985159397125, + -0.03233420103788376, + -0.20570218563079834, + -0.12262456119060516, + -0.20368114113807678, + -0.35417628288269043, + -0.25642091035842896, + 0.21898102760314941, + 0.31150150299072266, + -0.3409660756587982, + 0.04296618327498436, + 0.012179923243820667, + -0.16421425342559814, + -0.14551402628421783, + -0.009469850920140743, + -0.3570883274078369, + 0.3245953917503357, + -0.14418059587478638, + -0.21235565841197968, + 0.026580292731523514, + -0.16160055994987488, + 0.06273306161165237, + 0.0674327164888382, + 0.05402405187487602, + 0.4008018374443054, + 0.11610833555459976, + 0.018250875174999237, + 0.621117353439331, + 0.029201889410614967, + 0.12359878420829773, + 0.26489773392677307, + 0.03465788811445236, + -0.021458175033330917, + -0.16944482922554016, + -0.0978836715221405, + 0.2692405879497528, + -0.317363977432251, + -0.08677121251821518, + 0.17694926261901855, + 0.20305095613002777, + -0.4414465129375458, + -0.315221905708313, + 0.062397900968790054, + -0.029627026990056038, + -0.11430064588785172, + -0.20136934518814087, + -0.2924620807170868, + -0.06921135634183884, + -0.29818642139434814, + -0.11660957336425781, + 0.31896135210990906, + 0.5837572813034058, + 0.16474467515945435, + 0.24154958128929138, + -0.26881614327430725, + -0.2994037866592407, + 0.20282429456710815, + 0.19028927385807037, + 0.12397941201925278, + 0.08452485501766205, + -0.24504870176315308, + 0.30071932077407837, + 0.44657644629478455, + -0.10751473903656006, + 0.07248286157846451, + 0.06704111397266388, + 0.04767543449997902, + 0.1292532980442047, + 0.07252524048089981, + -0.2346123307943344, + -0.05968847870826721, + -0.4427047669887543, + 0.14516319334506989, + -0.2968674302101135, + -0.13700878620147705, + 0.1596498191356659, + -0.05213196575641632, + -0.5064513683319092, + -0.2503249943256378, + 0.2584705352783203, + -0.21903470158576965, + -0.2469715178012848, + 0.3465113341808319, + 0.37456387281417847, + -0.017981842160224915, + -0.31929922103881836, + 0.005608430132269859, + -0.5615453720092773, + -0.3400079309940338, + 0.15573377907276154, + -0.1490129977464676, + -0.19149033725261688, + 0.046852122992277145, + 0.3527134656906128, + 0.5191280245780945, + 0.27859199047088623, + -0.07715807110071182, + 0.1862334907054901, + 0.4373195469379425, + 0.23818320035934448, + -0.1671731323003769, + -10.671300888061523, + -0.16085131466388702, + -0.3527109920978546, + 0.5222480297088623, + -0.1905766725540161, + 0.052273839712142944, + 0.09883707761764526, + -0.06563977152109146, + 0.057327765971422195, + 0.11146701872348785, + -0.21209898591041565, + -0.05851806700229645, + 0.3832474946975708, + 0.3569848835468292, + 0.08526182174682617, + 0.03134160488843918, + -0.38918259739875793, + 0.20344680547714233, + -0.009908504784107208, + 0.17736244201660156, + 0.18095320463180542, + 0.36517053842544556, + -0.329647421836853, + 0.19775936007499695, + -0.06888578832149506, + -0.43765559792518616, + -0.27472400665283203, + 0.7292103171348572, + 0.3435141146183014, + -0.35067427158355713, + 0.2577577829360962, + 0.16584846377372742, + -0.07950234413146973, + 0.2136671394109726, + -0.15160438418388367, + -0.024166133254766464, + -0.08196989446878433, + 0.10629440099000931, + 0.2703576982021332, + -0.09050708264112473, + -0.020090151578187943, + -0.16557104885578156, + 0.38666099309921265, + 0.1663493663072586, + -0.13936802744865417, + -0.5812921524047852, + -0.14124681055545807, + -1.6571545600891113, + 0.2949896454811096, + 0.23343142867088318, + 0.31535834074020386, + -0.0014957450330257416, + 0.21099869906902313, + 0.2615029811859131, + -0.42352965474128723, + -0.1343311369419098, + -0.31063422560691833, + -0.05367868393659592, + 0.10456769168376923, + 0.048608094453811646, + 0.08472727239131927, + -0.029528450220823288, + 0.5252254605293274, + 0.0715777650475502, + -0.24401605129241943, + 0.05202998220920563, + 0.12594753503799438, + -0.2505672574043274, + -0.29577749967575073, + -0.7286742925643921, + -0.569593608379364, + 0.10052652657032013, + -0.16005727648735046, + -0.06095202639698982, + 0.420904278755188, + -0.09311717003583908, + -0.2753746211528778, + 0.18907378613948822, + 0.13708391785621643, + 0.33056166768074036, + 0.3137446939945221, + -0.01773213967680931, + 0.19031891226768494, + -0.25361570715904236, + -0.2605799436569214, + -0.15459437668323517, + 0.10893630981445312, + 0.5415650010108948, + 0.02603469416499138, + -0.02515205182135105, + -0.026172420009970665, + 0.4368271231651306, + 0.04866420477628708, + -0.1560000777244568, + -0.4696718752384186, + 0.02098233252763748, + -0.07415862381458282, + 0.11432771384716034, + -0.08622188866138458, + -0.1000296026468277, + -0.1716911494731903, + 0.038574010133743286, + -0.03483861684799194, + -0.5616407990455627, + -0.5548403859138489, + 0.23178496956825256, + 0.047906313091516495, + 0.16707739233970642, + -0.0756557360291481, + -0.15162193775177002, + -0.30099406838417053, + 0.019038036465644836, + 0.2653662860393524, + 0.5421844720840454, + 0.25984328985214233, + -0.048513490706682205, + 0.06438425183296204, + -0.2756190001964569, + -0.18491627275943756, + -0.03770400583744049, + 0.3633764386177063, + -0.15793238580226898, + 0.2725774943828583, + 0.6454645991325378, + 0.006664185784757137, + -0.05192241445183754, + 0.8732181787490845, + -0.31832653284072876, + 0.20779645442962646, + -0.14652594923973083, + 0.13894358277320862, + -0.009172346442937851, + -0.39835768938064575, + 0.09639112651348114, + 0.45227691531181335, + -0.26172131299972534, + 0.8121075630187988, + 0.2704976201057434, + -0.3790532052516937, + -0.02944677323102951, + -0.30447208881378174, + 0.4518047869205475, + 0.2453765571117401, + 0.238155335187912, + -0.12558923661708832, + -0.29473307728767395, + -0.4124121069908142, + 0.25407177209854126, + -0.36685800552368164, + -0.46930864453315735, + -0.15156909823417664, + 0.26486292481422424, + 0.15625834465026855, + -0.1362447887659073, + 0.3022874593734741, + 0.24081048369407654, + -0.1505184918642044, + -0.31114035844802856, + -0.3496468961238861, + -0.06350313872098923, + 0.2260129749774933, + 0.8786884546279907, + -0.020772546529769897, + -0.10452791303396225, + -0.009844676591455936, + 0.06732234358787537, + -0.1979723572731018, + 0.11052621901035309, + 0.12381531298160553, + -0.14624632894992828, + -0.49884873628616333, + 0.2957819998264313, + 0.2346268892288208, + -0.3053198456764221, + -0.020453380420804024, + -0.08236579596996307, + -0.14079026877880096, + 0.06781109422445297, + -0.31418806314468384, + 0.07816377282142639, + 0.2698047161102295, + -0.1276203989982605, + 0.10266298800706863, + -0.31398600339889526, + -0.15008530020713806, + 0.20494110882282257, + 0.37378621101379395, + 0.056014157831668854, + -0.23630234599113464, + -0.289334774017334, + -0.5381220579147339, + 0.22854255139827728, + -0.387206494808197, + -0.07254603505134583, + 0.19826030731201172, + 0.22601494193077087, + -0.20607522130012512, + 0.11965243518352509, + -0.05140595883131027, + -0.0036779576912522316, + -0.2800808548927307, + 0.41920292377471924, + 0.39557746052742004, + -0.17992065846920013, + 0.33541178703308105, + -0.06209132447838783, + 0.18823902308940887, + 0.14005045592784882, + -0.22118143737316132, + 0.15195871889591217, + -0.39623144268989563 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_070.json b/src/benchmark/output/results/results_graph_070.json new file mode 100644 index 0000000..06b7c2f --- /dev/null +++ b/src/benchmark/output/results/results_graph_070.json @@ -0,0 +1,792 @@ +{ + "status": "success", + "reconstructed_narrative": "**Patient Demographics**\n\nThe patient is a 35-year-old female who was diagnosed with breast cancer. Unfortunately, the demographic information provided does not include her name, address, or any other identifying details.\n\n**Timeline of Diagnoses**\n\nThe patient's journey began in [month/year] when she developed memory problems following a COVID-19 infection. Two days later, she underwent lumpectomy due to the worsening symptoms. The pathology report revealed infiltrative breast carcinoma of mixed type (80% non-specific, 20% lobular), histoprognostic grade I (2-2-1), and histological tumor size of 30 mm along the long axis.\n\n**Timeline of Treatments**\n\nFollowing the lumpectomy, the patient was diagnosed with anti-LGI1 limbic encephalitis associated with early-stage breast cancer. MRI, EEG, and positive anti-LGI1 antibodies supported this diagnosis. As a result, she underwent PET scans to further investigate the breast cancer diagnosis.\n\nThe PET scan identified a moderately hypermetabolic lesion in the right breast, leading to resection of the breast tumor with immunohistopathological analysis. The pathological stage was determined as pT2 N0 (sn) G1 R. Following resection, immunosuppressive treatment was started within 24 hours of admission.\n\n**Timeline of Outcomes**\n\nThe patient's condition improved gradually over time. She recovered from the initial symptoms and no longer experienced headaches or focal epileptic seizures since hospitalization. However, partial retrograde and anterograde amnesia persisted during the initial week, followed by a slow and steady improvement.\n\nAfter 12 months of recovery, the patient returned to work with 80% of her previous productivity. Neuropsychological evaluations at baseline showed impairment in verbal episodic memory (Free and Cued Selective Reminding Test) and visual episodic memory (recall of the Rey-Osterrieth complex figure). However, after six months of treatment, objective cognitive improvement was observed.\n\n**Current Status**\n\nThe patient's current status is one of ongoing management and monitoring. She continues to receive immunosuppressive treatment to manage her anti-LGI1 limbic encephalitis. Regular follow-up appointments with her healthcare team are necessary to monitor her condition and adjust treatment as needed.\n\nDespite the challenges she has faced, the patient has demonstrated remarkable resilience and determination in her pursuit of recovery. Her progress is a testament to the importance of comprehensive care and ongoing support for individuals with complex medical conditions.", + "bertscore": { + "precision": 0.754819929599762, + "recall": 0.7756854295730591, + "f1": 0.7651103734970093 + }, + "bleu": 0.021079017527702103, + "rouge1": 0.36927621861152143, + "rougeL": 0.14180206794682423, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 12, + "edge_count": 11, + "avg_in_degree": 0.9166666666666666, + "density": 0.08333333333333333 + }, + "trajectory_embedding": [ + 0.13369283080101013, + 0.14433510601520538, + -0.22548367083072662, + 0.060306016355752945, + -0.08639272302389145, + 0.002943794010207057, + 0.23735707998275757, + 0.16482573747634888, + 0.5013976693153381, + -0.3400944769382477, + -0.0792926773428917, + 0.0980411171913147, + -0.5940414071083069, + -0.14733976125717163, + -0.22831867635250092, + 0.1983317881822586, + -0.00968053936958313, + 0.277439147233963, + -0.14450059831142426, + -0.16099824011325836, + -0.34076163172721863, + 0.0865948423743248, + -0.31558945775032043, + -0.0824897438287735, + 0.10710851103067398, + -0.0934332087635994, + 0.37865975499153137, + 0.49469253420829773, + 0.15615332126617432, + 0.24864457547664642, + 0.14125993847846985, + 0.01845535635948181, + -0.15576577186584473, + 0.03730376437306404, + -0.2879844009876251, + 0.2889155447483063, + 0.213713601231575, + 0.3224811255931854, + -0.05982811748981476, + -0.033730100840330124, + -0.10818079113960266, + 0.21347206830978394, + 0.8228889107704163, + 0.25680774450302124, + 0.36214807629585266, + -0.5653674006462097, + -0.049573663622140884, + 0.4634188711643219, + -0.3663308322429657, + -0.10936939716339111, + 0.1866655945777893, + 0.5487546324729919, + 0.5227803587913513, + -0.2137134075164795, + 0.4485027492046356, + -0.07090269774198532, + -0.3489706218242645, + -0.16254732012748718, + -0.15057876706123352, + 0.11174788326025009, + -0.014290958642959595, + -0.1474752575159073, + 0.33366265892982483, + -0.10847434401512146, + -0.23606844246387482, + -0.25416824221611023, + -0.18237197399139404, + 0.06671617180109024, + 0.04271206259727478, + -0.312054306268692, + -0.17764820158481598, + -0.39080968499183655, + -0.23062437772750854, + 0.16309311985969543, + 0.08586438745260239, + -0.15263618528842926, + 0.4506126642227173, + 0.1265716552734375, + 0.1787474900484085, + 0.1616818606853485, + 0.08129360526800156, + -0.07555656880140305, + -0.032675452530384064, + 0.23464518785476685, + -0.3550747334957123, + 0.1810835599899292, + -0.1592039316892624, + -0.13825233280658722, + -0.2598206698894501, + 0.29697516560554504, + 0.2694394290447235, + -0.4037123918533325, + 0.051219675689935684, + -0.1736326366662979, + 0.003282601712271571, + 0.11851459741592407, + 0.3484923839569092, + 0.31940537691116333, + 0.8392224311828613, + 0.02724343352019787, + 0.26075252890586853, + 0.052311692386865616, + 0.2747480571269989, + -0.06750866025686264, + 0.3651670217514038, + -0.21141113340854645, + 0.2730628550052643, + -0.43804681301116943, + 0.0446157343685627, + 0.4512770473957062, + 0.03257989510893822, + -0.26928049325942993, + 0.0012383708963170648, + -0.3603943884372711, + 0.01977371983230114, + 0.09622174501419067, + -0.08374900370836258, + 0.20036540925502777, + 0.19462311267852783, + -0.5109869837760925, + -0.13110634684562683, + -0.051308903843164444, + 0.3071380853652954, + 0.2497265338897705, + -0.5640978813171387, + -0.10582602769136429, + -0.07318683713674545, + 0.007638255599886179, + 0.023114101961255074, + 0.14992059767246246, + -0.45205625891685486, + -0.1908349245786667, + -0.1434377282857895, + 0.1947791427373886, + -0.02827431447803974, + 0.3386586606502533, + -0.4353886842727661, + 0.05987301841378212, + -1.0165730714797974, + 0.14351540803909302, + -0.4588097333908081, + -0.09114237874746323, + 0.045307278633117676, + -0.41874977946281433, + -0.12226101756095886, + -0.13272303342819214, + -0.08449415117502213, + 0.20634578168392181, + -0.22234326601028442, + 0.05836540833115578, + -0.03988165408372879, + -0.03378593549132347, + 0.25582465529441833, + 0.401073694229126, + 0.00880881305783987, + 0.03959021344780922, + -0.010096686892211437, + 0.34262850880622864, + 0.15954278409481049, + -0.12223462015390396, + 0.053812071681022644, + 0.39979198575019836, + -0.0308555718511343, + -0.08000319451093674, + 0.04816700890660286, + -0.5325723886489868, + -0.026968175545334816, + -0.24248643219470978, + 0.03366946056485176, + 0.0303976908326149, + -0.20455892384052277, + 0.1550566703081131, + -0.17140136659145355, + 0.5480491518974304, + 0.17741626501083374, + 0.4223334789276123, + -0.06001768633723259, + 0.0418718159198761, + 0.23618412017822266, + 0.05499522015452385, + -0.012503673322498798, + -0.18104957044124603, + 0.5137625336647034, + 0.06913763284683228, + -0.3243136703968048, + 0.15785230696201324, + 0.3465646207332611, + -0.11138931661844254, + -0.22015583515167236, + 0.08521714061498642, + 0.4761897623538971, + -0.3507315218448639, + 0.36825743317604065, + -0.22183209657669067, + -0.017696889117360115, + 0.11378219723701477, + -0.28424033522605896, + -0.20387907326221466, + -0.07319405674934387, + -0.20854443311691284, + 0.21480238437652588, + 0.10793677717447281, + -0.3450411558151245, + 0.17583273351192474, + 0.13426493108272552, + -0.1309541016817093, + 0.14964306354522705, + 0.11205101758241653, + 0.0369296558201313, + -0.16131845116615295, + -0.13489222526550293, + 0.23906724154949188, + -0.08209555596113205, + 0.1775376945734024, + 0.052272338420152664, + -0.21379972994327545, + 0.22216705977916718, + -0.07851523905992508, + -0.15016934275627136, + 0.12440332025289536, + 0.06782232969999313, + -0.15268243849277496, + 0.12486954778432846, + 0.12850499153137207, + -0.40576648712158203, + 0.21358908712863922, + 0.2588064670562744, + 0.2425181269645691, + 0.012843807227909565, + -0.10945073515176773, + 0.07783098518848419, + -0.3200782239437103, + 0.3623781204223633, + -0.2896438539028168, + -0.21270795166492462, + -0.29278627038002014, + 0.20661650598049164, + -0.084601990878582, + -0.026783021166920662, + 0.30580824613571167, + -0.08935374766588211, + -0.10114268213510513, + 0.12749981880187988, + -0.12924204766750336, + -0.042565878480672836, + -0.24609309434890747, + -0.04173661768436432, + 0.36877432465553284, + 0.015414354391396046, + 0.2621048390865326, + 0.1296478807926178, + 0.028784437105059624, + 0.08362378925085068, + -0.24670858681201935, + -0.29480770230293274, + -0.418149471282959, + -0.1254057139158249, + -0.09309981018304825, + -0.5016807913780212, + 0.1129632219672203, + 0.04898205026984215, + -0.14827008545398712, + 0.01911735348403454, + -0.35567596554756165, + -0.10920429974794388, + -0.04350036382675171, + 0.0031482491176575422, + 0.23762480914592743, + -0.26676133275032043, + 0.024606266990303993, + -0.40406370162963867, + -0.35046085715293884, + -0.16688822209835052, + -0.013889278285205364, + 0.057161737233400345, + 0.12509512901306152, + -0.20088766515254974, + 0.14081457257270813, + 0.11382729560136795, + -0.42765820026397705, + -0.21322210133075714, + 0.11389172077178955, + -0.20810635387897491, + 0.3671903908252716, + -0.08413372188806534, + 0.3005961775779724, + 0.41636988520622253, + 0.11242785304784775, + 0.18965785205364227, + 0.28928327560424805, + 0.520293116569519, + -0.044199634343385696, + 0.024378767237067223, + -0.006035264115780592, + 0.05313709005713463, + 0.004007492680102587, + -0.3168799877166748, + 0.3585367202758789, + -0.09793543070554733, + 0.09263209253549576, + 0.10440099239349365, + 0.19418644905090332, + 0.07036259770393372, + -0.313355952501297, + 0.011952652595937252, + 0.5541787147521973, + 0.1412898302078247, + 0.160475492477417, + 0.08976251631975174, + 0.17537327110767365, + 0.3155760169029236, + -0.10054931789636612, + -0.1561570167541504, + 0.18973542749881744, + -0.13867297768592834, + -0.1387985199689865, + -0.12286537885665894, + 0.13513325154781342, + 0.3361354172229767, + -0.03276941925287247, + -0.16890649497509003, + 0.21351651847362518, + -0.10991711169481277, + -0.07627999037504196, + -0.21893203258514404, + -0.1382598578929901, + -0.0059937890619039536, + -0.19009922444820404, + 0.21068556606769562, + 0.03446594998240471, + 0.015854530036449432, + 0.3723958432674408, + -0.29323187470436096, + -0.28275343775749207, + 0.08757380396127701, + -0.03232966363430023, + -0.3145970106124878, + 0.42372259497642517, + -0.21242040395736694, + -0.03761497884988785, + 0.26172947883605957, + -0.26935288310050964, + -0.056598175317049026, + 0.0194065123796463, + 0.2074081152677536, + -0.005017491523176432, + 0.10081883519887924, + -0.22837196290493011, + 0.09224596619606018, + 0.05369365215301514, + 0.4721032679080963, + 0.0363822840154171, + 0.02430731989443302, + 0.47994187474250793, + 0.034579940140247345, + -0.28111281991004944, + 0.01448619645088911, + -0.10241955518722534, + 0.2818920314311981, + -0.35109904408454895, + -0.0656985491514206, + -0.16916698217391968, + 0.07858668267726898, + 0.14301124215126038, + -0.23890535533428192, + 0.06551255285739899, + 0.07614059001207352, + -0.10317137837409973, + -0.12597224116325378, + 0.35762524604797363, + 0.15913806855678558, + -0.00016100953507702798, + 0.459397554397583, + -0.015815353021025658, + -0.1740366369485855, + 0.1316688358783722, + -0.04304949939250946, + 0.2007022649049759, + -0.03190537914633751, + -0.22499823570251465, + -0.4295353591442108, + 0.04322853684425354, + -0.04501204192638397, + -0.11935264617204666, + 0.06014082953333855, + -0.1900591105222702, + -0.01789635606110096, + -0.10643137246370316, + 0.20597542822360992, + -0.13492771983146667, + 0.09973853081464767, + -0.08143756538629532, + 0.37203916907310486, + -0.10802135616540909, + -0.2251192182302475, + 0.1895110160112381, + -0.001184944063425064, + 0.21880216896533966, + -0.28858664631843567, + -0.01768559031188488, + -0.17352627217769623, + 0.4409390985965729, + -0.17716597020626068, + 0.09665370732545853, + 0.08173658698797226, + -0.15442289412021637, + -0.1614701896905899, + -0.23705892264842987, + -0.008753109723329544, + 0.0026541941333562136, + 0.012119864113628864, + -0.11445283144712448, + 0.16676847636699677, + -0.14762179553508759, + -0.21313880383968353, + -0.015447833575308323, + 0.16811029613018036, + 0.050082504749298096, + -0.0501839853823185, + 0.09630388021469116, + 0.17460648715496063, + 0.08663546293973923, + 0.29719579219818115, + -0.25729629397392273, + 0.2130459100008011, + 0.10926475375890732, + -0.21921229362487793, + 0.04991713538765907, + -0.019299637526273727, + -0.16784268617630005, + -0.06860018521547318, + 0.045204147696495056, + 0.1771063655614853, + -0.03680209815502167, + -0.04808233305811882, + 0.02319001592695713, + 0.15841515362262726, + -0.24960601329803467, + -0.04259495809674263, + 0.4412775933742523, + -0.09239838272333145, + 0.276295006275177, + 0.019630176946520805, + -0.4266878068447113, + -0.14792127907276154, + -0.06619903445243835, + -0.39507484436035156, + 0.06897125393152237, + 0.25724226236343384, + -0.02481030859053135, + -0.11322715878486633, + 0.04402487352490425, + 0.07595331966876984, + 0.036155715584754944, + 0.3421369791030884, + -0.009855955839157104, + 0.049794748425483704, + 0.05466816946864128, + -0.22960107028484344, + -0.07555495202541351, + -0.18758220970630646, + -0.3266429603099823, + -0.2951572835445404, + 0.39320287108421326, + 0.15531866252422333, + -0.11411883682012558, + 0.21703268587589264, + 0.07975958287715912, + -0.08188915997743607, + -0.2652644217014313, + 0.02148693986237049, + -0.22459274530410767, + 0.4671039581298828, + -0.07289432734251022, + -0.18442785739898682, + 0.10770847648382187, + -0.17967168986797333, + 0.070625439286232, + 0.0899442657828331, + 0.10153353214263916, + 0.334744930267334, + 0.05648738145828247, + 0.15713071823120117, + 0.5687419176101685, + 0.15792421996593475, + 0.07198785990476608, + 0.346431165933609, + -0.011998350732028484, + 0.21020857989788055, + -0.2132946401834488, + -0.15075136721134186, + 0.39081916213035583, + -0.36817875504493713, + 0.08657001703977585, + 0.07854559272527695, + 0.3019058406352997, + -0.29808509349823, + -0.37159404158592224, + -0.037252411246299744, + -0.031213074922561646, + -0.10314192622900009, + -0.14263789355754852, + -0.21780936419963837, + -0.09251782298088074, + -0.3848308026790619, + -0.04128674790263176, + 0.15951508283615112, + 0.2599267065525055, + 0.2932097613811493, + 0.09694564342498779, + -0.24545425176620483, + -0.4213933050632477, + 0.26006755232810974, + 0.36978015303611755, + -0.014208558946847916, + -0.12072038650512695, + -0.18712176382541656, + 0.13509446382522583, + 0.27101829648017883, + -0.07785334438085556, + 0.020884402096271515, + -0.05586683750152588, + -0.024019740521907806, + 0.0859542116522789, + 0.12834765017032623, + -0.009478085674345493, + -0.03219858556985855, + -0.330635130405426, + 0.08101152628660202, + -0.16528365015983582, + -0.21762602031230927, + 0.16226263344287872, + -0.14579856395721436, + -0.4195441007614136, + -0.1634223461151123, + 0.17104683816432953, + -0.10313675552606583, + -0.17274470627307892, + 0.1721215844154358, + 0.3831445872783661, + -0.007932684384286404, + -0.07580296695232391, + 0.16059912741184235, + -0.5120869278907776, + -0.15657000243663788, + 0.2063646912574768, + -0.11311114579439163, + 0.060340702533721924, + 0.10143822431564331, + 0.331358402967453, + 0.39359989762306213, + 0.21257595717906952, + -0.40275833010673523, + 0.18102405965328217, + 0.2956150472164154, + 0.09417331963777542, + -0.3702111542224884, + -10.834364891052246, + -0.11203810572624207, + -0.1915384978055954, + 0.5572553277015686, + -0.15912386775016785, + 0.12665636837482452, + -0.006013969425112009, + 0.0022143900860100985, + 0.061949845403432846, + 0.18148262798786163, + -0.29447439312934875, + -0.03174024447798729, + 0.2532036304473877, + 0.2717180550098419, + 0.16377513110637665, + 0.07306229323148727, + -0.2374240756034851, + 0.25964489579200745, + 0.10002177208662033, + 0.2528753876686096, + 0.10205801576375961, + 0.48796701431274414, + -0.1474599391222, + 0.14683641493320465, + -0.03977102041244507, + -0.28073158860206604, + -0.38511887192726135, + 0.5401586890220642, + 0.36154699325561523, + -0.3091740012168884, + 0.18853668868541718, + 0.017350271344184875, + -0.0952727273106575, + -0.06880739331245422, + 0.05472588166594505, + -0.18106548488140106, + -0.19867289066314697, + 0.01577911525964737, + -0.009101185947656631, + -0.05456354841589928, + 0.052926644682884216, + -0.21073172986507416, + 0.14525043964385986, + 0.2752441167831421, + -0.15024036169052124, + -0.5265786051750183, + -0.13649414479732513, + -1.3948246240615845, + 0.16458535194396973, + 0.2391982525587082, + 0.5531957149505615, + 0.003794849617406726, + 0.10253766179084778, + 0.2757987082004547, + -0.32251986861228943, + 0.015557251870632172, + -0.2508157193660736, + -0.04504910111427307, + 0.17682473361492157, + -0.1156758964061737, + 0.13978193700313568, + -0.030885599553585052, + 0.4446631968021393, + -0.20023749768733978, + -0.2900990843772888, + 0.25828447937965393, + -0.0967584028840065, + 0.008840516209602356, + -0.23207437992095947, + -0.4876144826412201, + -0.5852916836738586, + -0.0502762496471405, + 0.032880064100027084, + 0.05854444205760956, + 0.4420769512653351, + 0.027179980650544167, + -0.2948583662509918, + 0.1697344332933426, + -0.1131061390042305, + 0.3400327265262604, + 0.06233333423733711, + -0.06178048253059387, + 0.15663470327854156, + -0.19814758002758026, + 0.053158652037382126, + -0.15635184943675995, + 0.12776301801204681, + 0.49489620327949524, + -0.055175576359033585, + -0.029246417805552483, + -0.05819543078541756, + 0.29239779710769653, + -0.10725220292806625, + -0.2111825793981552, + -0.4797670841217041, + 0.05479389429092407, + 0.0034328761976212263, + -0.05249451473355293, + 0.006541082169860601, + -0.09699243307113647, + -0.14804300665855408, + -0.09950397163629532, + -0.06707563996315002, + -0.5284958481788635, + -0.4301547706127167, + 0.3653144836425781, + 0.22122466564178467, + 0.11984621733427048, + 0.10394102334976196, + 0.08261428773403168, + -0.047052595764398575, + 0.01708347350358963, + 0.4604164659976959, + 0.4961283206939697, + 0.2094811648130417, + 0.02300799824297428, + 0.11407476663589478, + -0.19110210239887238, + -0.1690978854894638, + 0.062100499868392944, + 0.4442782700061798, + -0.014268008060753345, + 0.2945822477340698, + 0.47472211718559265, + 0.05398660898208618, + -0.09321630001068115, + 0.9861577153205872, + -0.34482601284980774, + 0.19569243490695953, + -0.0018870687345042825, + 0.22855663299560547, + -0.10818133503198624, + -0.25911659002304077, + 0.0782269611954689, + 0.2777820825576782, + -0.2894342243671417, + 0.5496587157249451, + 0.2505837380886078, + -0.3777984380722046, + -0.033916935324668884, + -0.24738569557666779, + 0.3974572420120239, + 0.13839787244796753, + 0.24944257736206055, + -0.16024769842624664, + -0.43543779850006104, + -0.36452779173851013, + 0.10373172909021378, + -0.27122992277145386, + -0.2931581139564514, + -0.19121940433979034, + 0.03754951432347298, + -0.05383605882525444, + -0.09965893626213074, + 0.28969433903694153, + 0.05203607305884361, + -0.14020299911499023, + -0.1341765969991684, + -0.4949578046798706, + -0.12240168452262878, + 0.04652697220444679, + 0.7514114379882812, + 0.07740660756826401, + -0.14325566589832306, + -0.1004452332854271, + 0.273474782705307, + -0.11568859219551086, + 0.21486151218414307, + -0.0060142031870782375, + 0.08099699765443802, + -0.38304778933525085, + 0.15438102185726166, + 0.261804461479187, + -0.2076626867055893, + -0.06949709355831146, + -0.19780856370925903, + 0.019032368436455727, + 0.02649535797536373, + -0.09652302414178848, + 0.1914377212524414, + 0.21322862803936005, + 0.054714351892471313, + 0.0989469587802887, + -0.3116009533405304, + 0.051409732550382614, + 0.10438374429941177, + 0.287426620721817, + 0.10781389474868774, + -0.366584450006485, + -0.21971769630908966, + -0.45732173323631287, + 0.2694143056869507, + -0.3026338517665863, + -0.034956786781549454, + 0.09978895634412766, + 0.2033783346414566, + -0.11928807944059372, + 0.17544913291931152, + -0.07910385727882385, + 0.03179256245493889, + -0.17706315219402313, + 0.18418331444263458, + 0.3205330967903137, + -0.2857564687728882, + 0.14534620940685272, + -0.1672273874282837, + 0.25369489192962646, + 0.18283875286579132, + -0.1367650032043457, + 0.20030300319194794, + -0.23739977180957794 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_072.json b/src/benchmark/output/results/results_graph_072.json new file mode 100644 index 0000000..2c85e15 --- /dev/null +++ b/src/benchmark/output/results/results_graph_072.json @@ -0,0 +1,792 @@ +{ + "status": "success", + "reconstructed_narrative": "The patient in question is a male who has been diagnosed with lung cancer. Unfortunately, the provided data does not include the patient's demographic information such as age, address, or contact details.\n\nHowever, based on the timeline of diagnoses and treatments provided, we can reconstruct a coherent narrative:\n\nThe patient was first diagnosed with lung cancer, which led to the start of gyroknife radiotherapy for left and right lung malignancies 12 times. This treatment was likely aimed at reducing the size of the tumors in the lungs.\n\nAfter completing this treatment, the patient experienced tumor progression, leading to the start of anlotinib 8mg orally once daily for 14 days every 3 weeks. This medication was intended to slow down the growth of the cancer cells.\n\nHowever, after 14 cycles of anlotinib treatment, the patient presented with hyperglycemia (fasting plasma glucose of 26.1 mmol/L) and urine ketone (+++), leading to a diagnosis of type 1 diabetes. As a result, the patient was discharged with a hypoglycemic regimen of insulin degludec 5 units in the morning and insulin aspartate 4 units three times a day.\n\nOne week after discharge, the patient's blood glucose levels significantly increased after re-starting anlotinib (highest recorded level was 30.1 mmol/L), and the insulin dose was increased. Despite this escalation, the patient continued to experience significant improvements in their laboratory parameters, including GADA, ICA, IAA, Fasting blood glucose, Hemoglobin A1c, Hemoglobin, and Serum albumin.\n\nAfter two cycles of anlotinib treatment, the medication was discontinued due to tumor progression and its significant negative impact on glucose metabolism. However, by the 16th cycle, laboratory parameters showed a marked improvement in these areas.\n\nThe patient's current status is unclear from the provided data, but it appears that they have undergone various treatments for their lung cancer and diabetes. The exact outcome of these treatments is not specified, but the narrative suggests that the patient has experienced significant improvements in their laboratory parameters over time.", + "bertscore": { + "precision": 0.8337717056274414, + "recall": 0.8181021213531494, + "f1": 0.8258626461029053 + }, + "bleu": 0.08451707165944072, + "rouge1": 0.41294005708848713, + "rougeL": 0.247383444338725, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 10, + "edge_count": 9, + "avg_in_degree": 0.9, + "density": 0.1 + }, + "trajectory_embedding": [ + 0.1467558592557907, + 0.21578022837638855, + -0.22472743690013885, + 0.1429169625043869, + -0.0391475111246109, + 0.10741577297449112, + 0.24607594311237335, + 0.2464669942855835, + 0.3772128224372864, + -0.3546753525733948, + -0.1136227399110794, + 0.030413171276450157, + -0.4117017686367035, + -0.1751895248889923, + -0.3702186644077301, + 0.24298548698425293, + -0.22810597717761993, + 0.43166160583496094, + -0.07609720528125763, + -0.19508908689022064, + -0.2506624460220337, + 0.16180557012557983, + -0.3597126603126526, + -0.14883342385292053, + 0.054762791842222214, + 0.066930390894413, + 0.5134936571121216, + 0.6241241693496704, + 0.13119105994701385, + 0.39884868264198303, + 0.34290724992752075, + 0.07410649210214615, + 0.13018269836902618, + 0.03570286184549332, + -0.3678257167339325, + 0.20287713408470154, + 0.08639800548553467, + 0.03956761211156845, + -0.2587645649909973, + 0.08862163126468658, + -0.25685548782348633, + 0.01334497332572937, + 0.868068516254425, + 0.01634276658296585, + 0.3725665211677551, + -0.5754799246788025, + 0.025804687291383743, + 0.6441324949264526, + -0.31139636039733887, + -0.06749574095010757, + 0.043065305799245834, + 0.6532628536224365, + 0.37668541073799133, + -0.381503164768219, + 0.21977543830871582, + -0.3113846480846405, + -0.23924875259399414, + -0.2351614236831665, + -0.05154666304588318, + 0.2549881339073181, + 0.12514403462409973, + -0.2485843002796173, + 0.28092867136001587, + -0.3764851987361908, + -0.2138647735118866, + -0.08040594309568405, + -0.13744919002056122, + 0.2584134042263031, + 0.08712949603796005, + -0.17679020762443542, + -0.4196208119392395, + -0.2697073221206665, + -0.18063995242118835, + 0.15724965929985046, + -0.02044837176799774, + -0.2573614716529846, + 0.3839556872844696, + -0.028295908123254776, + 0.32923001050949097, + 0.1749843955039978, + 0.03201086074113846, + -0.20241613686084747, + -0.20521089434623718, + 0.26871758699417114, + -0.3518373370170593, + 0.07867185026407242, + -0.0590418204665184, + -0.10131154209375381, + -0.4003247618675232, + 0.16886074841022491, + 0.23691201210021973, + -0.4590117931365967, + -0.03547119349241257, + -0.125101700425148, + -0.11660709232091904, + 0.2730478346347809, + 0.36038222908973694, + 0.24189582467079163, + 0.8972047567367554, + 0.21318212151527405, + 0.023122116923332214, + 0.03919263184070587, + 0.07379062473773956, + -0.008304650895297527, + 0.3914582133293152, + -0.26800113916397095, + 0.10497178882360458, + -0.4425472617149353, + 0.4172024726867676, + 0.5542877912521362, + 0.09718867391347885, + -0.19852010905742645, + -0.09972235560417175, + -0.21962186694145203, + 0.2633120119571686, + 0.03274567052721977, + -0.02935497835278511, + 0.4012452960014343, + 0.34589189291000366, + -0.29314231872558594, + -0.16397865116596222, + -0.18719443678855896, + 0.23125767707824707, + 0.2925569713115692, + -0.23924842476844788, + -0.10354697704315186, + 0.11308254301548004, + -0.26390764117240906, + 0.022814739495515823, + -0.011556057259440422, + -0.521220326423645, + -0.28582364320755005, + -0.02419230341911316, + -0.1930917650461197, + -0.231863334774971, + 0.3714632987976074, + -0.21983346343040466, + -0.17233477532863617, + -1.059095025062561, + 0.09837963432073593, + -0.2561350464820862, + -0.06845741719007492, + -0.027006398886442184, + -0.5712205171585083, + -0.1504819691181183, + 0.008047682233154774, + -0.21386170387268066, + 0.18834829330444336, + -0.20514488220214844, + 0.028025785461068153, + 0.23172470927238464, + -0.2620478570461273, + 0.19429410994052887, + 0.5900846719741821, + -0.040279075503349304, + -0.07002563774585724, + 0.13729365170001984, + 0.09394415467977524, + -0.0071976869367063046, + -0.04783643037080765, + 0.010025514289736748, + 0.5305513143539429, + 0.009506863541901112, + 0.29826706647872925, + -0.2428264170885086, + -0.3946989178657532, + -0.12148205935955048, + -0.18953801691532135, + 0.1484622359275818, + -0.18778763711452484, + 0.0036178373266011477, + 0.04874396696686745, + -0.2736683785915375, + 0.6273735165596008, + -0.05598446726799011, + 0.21809370815753937, + -0.009256398305296898, + 0.0923294797539711, + -0.06790988147258759, + 0.05280381441116333, + -0.025408487766981125, + -0.16398142278194427, + 0.5152157545089722, + 0.16592112183570862, + -0.37397003173828125, + 0.12032677978277206, + 0.39339056611061096, + -0.035347841680049896, + -0.12495218217372894, + 0.16375714540481567, + 0.38146263360977173, + -0.20081070065498352, + 0.509199857711792, + -0.18221314251422882, + -0.047622788697481155, + 0.07603194564580917, + -0.08978302031755447, + 0.05722694471478462, + -0.18994253873825073, + -0.20203018188476562, + 0.07032635062932968, + 0.14731472730636597, + -0.4199419915676117, + 0.13970163464546204, + 0.3231737017631531, + -0.15464814007282257, + 0.1596236675977707, + 0.029887324199080467, + 0.11352817714214325, + 0.0014318585162982345, + -0.12874475121498108, + 0.10113590955734253, + 0.1491338461637497, + 0.31072384119033813, + -0.0032197958789765835, + -0.38153210282325745, + 0.0656530112028122, + 0.11896853148937225, + -0.22674818336963654, + 0.052436817437410355, + 0.14132793247699738, + -0.3060030937194824, + -0.17020323872566223, + 0.21048235893249512, + -0.436528742313385, + 0.22804853320121765, + 0.2027864158153534, + 0.20461246371269226, + -0.09846068918704987, + 0.01446255762130022, + -0.08623360842466354, + -0.20274241268634796, + 0.39063018560409546, + -0.17123058438301086, + -0.07699687778949738, + -0.12564930319786072, + 0.3477362394332886, + 0.26989006996154785, + 0.1616668701171875, + 0.3151460289955139, + 0.18125085532665253, + -0.13693901896476746, + 0.20597469806671143, + -0.3475784361362457, + -0.07087185233831406, + -0.2660316824913025, + -0.11002080142498016, + 0.35642945766448975, + 0.15521788597106934, + 0.27897635102272034, + 0.09877828508615494, + 0.001769575523212552, + 0.05051774904131889, + -0.04526882246136665, + -0.4147090017795563, + -0.25381579995155334, + -0.1564108282327652, + -0.20474962890148163, + -0.7942279577255249, + -0.012655595317482948, + 0.09141578525304794, + -0.08337827771902084, + 0.10615050792694092, + -0.2125818282365799, + -0.026336977258324623, + -0.04088575020432472, + 0.04255533963441849, + 0.11867685616016388, + -0.4701949656009674, + 0.05214893817901611, + -0.3366972804069519, + -0.23798970878124237, + -0.16544215381145477, + 0.06259768456220627, + 0.09437423944473267, + 0.08463583141565323, + -0.2870126962661743, + 0.20736460387706757, + 0.14921386539936066, + -0.23761186003684998, + -0.04541198909282684, + 0.06258977949619293, + -0.25223925709724426, + 0.17701342701911926, + 0.0406658835709095, + 0.15853345394134521, + 0.32122695446014404, + 0.062818743288517, + 0.17743121087551117, + 0.3767830729484558, + 0.4307214319705963, + -0.14313772320747375, + -0.07605954259634018, + 0.06110112741589546, + 0.01150633953511715, + 0.1238938421010971, + -0.43520838022232056, + 0.2948581576347351, + -0.07918266952037811, + -0.049306727945804596, + -0.04951731488108635, + 0.1361767053604126, + 0.23928086459636688, + 0.09140973538160324, + -0.03656182810664177, + 0.4791076183319092, + -0.09062507748603821, + 0.23751933872699738, + 0.11158742010593414, + 0.10434363037347794, + 0.154245063662529, + -0.1015637069940567, + 0.14817926287651062, + 0.2390809804201126, + -0.20413494110107422, + -0.25570106506347656, + -0.016404088586568832, + 0.144990473985672, + 0.5284889340400696, + -0.05836212635040283, + -0.11955232918262482, + 0.04613831639289856, + -0.10829593986272812, + -0.2275884449481964, + -0.35607996582984924, + -0.1915653645992279, + 0.01895376853644848, + -0.2098993957042694, + 0.38058751821517944, + 0.15650279819965363, + 0.06385938823223114, + 0.29727494716644287, + -0.46553659439086914, + -0.11989670991897583, + 0.1972590684890747, + -0.10775226354598999, + -0.33122071623802185, + 0.34752753376960754, + -0.1995423287153244, + 0.31886056065559387, + 0.12877532839775085, + -0.5177029371261597, + -0.03133440762758255, + 0.2025662660598755, + 0.32317858934402466, + 0.02872704342007637, + 0.20551195740699768, + -0.04093034192919731, + 0.13289186358451843, + -0.03587167337536812, + 0.28664636611938477, + 0.10394580662250519, + 0.03811519965529442, + 0.4892265796661377, + 0.08575405925512314, + -0.32652217149734497, + 0.1621469110250473, + -0.2651614546775818, + 0.26876598596572876, + -0.04428689181804657, + -0.15482404828071594, + 0.025008510798215866, + 0.13651856780052185, + -0.01320398785173893, + -0.38759756088256836, + 0.19344229996204376, + 0.08029833436012268, + -0.06462834775447845, + -0.1538604348897934, + 0.44362694025039673, + 0.23752036690711975, + -0.08606479316949844, + 0.49882107973098755, + -0.09216127544641495, + -0.18504269421100616, + 0.31577908992767334, + -0.1463363617658615, + 0.10288114845752716, + 0.016293346881866455, + -0.09976895153522491, + -0.2922491133213043, + 0.09390418976545334, + -0.018488731235265732, + -0.12227575480937958, + -0.002609365386888385, + -0.09500180184841156, + 0.17433643341064453, + -0.2604838013648987, + 0.03977131098508835, + -0.047779593616724014, + 0.02710282802581787, + 0.1168392151594162, + 0.04782016947865486, + 0.004629187751561403, + -0.17526385188102722, + 0.20097270607948303, + 0.10645027458667755, + -0.1354227364063263, + -0.24779196083545685, + -0.12895958125591278, + -0.14895187318325043, + 0.7062500715255737, + -0.0171036459505558, + 0.12317010015249252, + 0.09601439535617828, + -0.03774922341108322, + -0.047240134328603745, + -0.3598775267601013, + 0.11602409183979034, + -0.08174605667591095, + -0.007841676473617554, + -0.022301455959677696, + 0.015358957462012768, + -0.2556130588054657, + -0.06083443760871887, + -0.03944473713636398, + -0.04985945299267769, + 0.0885101929306984, + 0.06494314968585968, + -0.19790372252464294, + 0.319629967212677, + 0.17731168866157532, + 0.2622233033180237, + -0.3309285044670105, + 0.2701236605644226, + -0.036373138427734375, + -0.3810669779777527, + -0.05134083703160286, + -0.13280043005943298, + -0.37084364891052246, + -0.0896112322807312, + 0.18589049577713013, + 0.2305971384048462, + -0.15549463033676147, + -0.11894340813159943, + 0.06211910769343376, + -0.011870044283568859, + -0.3256921172142029, + 0.08518384397029877, + 0.40091386437416077, + 0.02822517789900303, + 0.13844819366931915, + 0.18404532968997955, + -0.44956859946250916, + -0.08736832439899445, + -0.26938340067863464, + -0.22091856598854065, + 0.08076024800539017, + 0.299245148897171, + 0.05726863816380501, + -0.18056657910346985, + 0.005609108135104179, + 0.1610868275165558, + -0.24337193369865417, + 0.20091977715492249, + 0.07438572496175766, + 0.15251891314983368, + -0.05615922808647156, + -0.18971483409404755, + -0.035100437700748444, + -0.2538006901741028, + -0.39921122789382935, + -0.23949792981147766, + 0.05675571411848068, + -0.06270407140254974, + -0.16913190484046936, + -0.04761975631117821, + 0.08796928077936172, + -0.19344601035118103, + 0.07061181217432022, + -0.00701174046844244, + -0.22233304381370544, + 0.3843590319156647, + -0.1723875105381012, + -0.15632855892181396, + 0.11514637619256973, + -0.11420341581106186, + -0.1089068055152893, + 0.20675912499427795, + 0.13253267109394073, + 0.24227342009544373, + 0.035336919128894806, + 0.06747899949550629, + 0.5281792283058167, + 0.0982801765203476, + 0.18560242652893066, + 0.3739277422428131, + 0.05999390408396721, + 0.04225751757621765, + -0.2424444705247879, + 0.009240892715752125, + 0.04715024307370186, + -0.5379596948623657, + -0.2022087574005127, + 0.25781458616256714, + 0.3765815496444702, + -0.2341899424791336, + -0.08735928684473038, + 0.12516091763973236, + -0.015649516135454178, + -0.11499756574630737, + -0.1802949607372284, + -0.14979815483093262, + -0.0698680728673935, + -0.421628475189209, + 0.11402423679828644, + 0.2602878212928772, + 0.5458724498748779, + 0.3064882159233093, + 0.145802304148674, + -0.14707684516906738, + -0.12892957031726837, + 0.21412897109985352, + 0.12117652595043182, + -0.07937133312225342, + -0.13859590888023376, + -0.014036153443157673, + 0.2481590062379837, + 0.18772627413272858, + -0.058366358280181885, + 0.20095443725585938, + -0.1382633000612259, + -0.01619616150856018, + 0.24248409271240234, + 0.018217677250504494, + -0.23908419907093048, + -0.036725353449583054, + -0.36994606256484985, + -0.030545193701982498, + -0.25978851318359375, + -0.17193163931369781, + 0.12156152725219727, + -0.14354027807712555, + -0.27277061343193054, + -0.08866120129823685, + 0.26799991726875305, + -0.1538381725549698, + -0.15487608313560486, + 0.2119164913892746, + 0.4706689417362213, + -0.06511050462722778, + -0.1143641471862793, + -0.03818877413868904, + -0.36263054609298706, + -0.23984873294830322, + 0.06439974159002304, + -0.10582228749990463, + -0.13907457888126373, + 0.180571511387825, + 0.522671103477478, + 0.42723995447158813, + 0.32214251160621643, + -0.29380494356155396, + 0.45324939489364624, + 0.42643529176712036, + 0.01747933030128479, + -0.3533126413822174, + -10.762231826782227, + -0.19128000736236572, + -0.31866416335105896, + 0.3074939250946045, + -0.1728026568889618, + 0.12364353984594345, + 0.15939033031463623, + 0.08644340932369232, + 0.11528076976537704, + 0.22454671561717987, + -0.24274154007434845, + -0.165045365691185, + 0.040752802044153214, + 0.30975615978240967, + 0.05254935100674629, + 0.21793587505817413, + -0.19195708632469177, + 0.26805591583251953, + 0.021485963836312294, + 0.09730029851198196, + 0.022529730573296547, + 0.4004499018192291, + -0.22746577858924866, + -0.019998619332909584, + -0.11083652079105377, + -0.34675759077072144, + -0.261724054813385, + 0.38002246618270874, + 0.16910651326179504, + -0.25341299176216125, + 0.15961603820323944, + -0.07117217034101486, + -0.09691376984119415, + 0.2501903176307678, + -0.17309916019439697, + -0.09962232410907745, + 0.02629014290869236, + 0.2350984513759613, + 0.1822194755077362, + -0.1910620480775833, + -0.1615205556154251, + -0.12327390909194946, + 0.39768245816230774, + -0.08601591736078262, + -0.13806121051311493, + -0.45644086599349976, + -0.15172681212425232, + -1.5214844942092896, + 0.13275209069252014, + 0.29141563177108765, + 0.268086314201355, + 0.07025369256734848, + 0.13054518401622772, + 0.3608424663543701, + -0.3282610774040222, + -0.014312353916466236, + -0.3313286304473877, + 0.026303809136152267, + 0.1206677183508873, + 0.1823887676000595, + -0.047240037471055984, + -0.031160270795226097, + 0.5480109453201294, + -0.07098613679409027, + -0.18692639470100403, + 0.07935027778148651, + -0.14783647656440735, + -0.1478123962879181, + -0.20950262248516083, + -0.6116077899932861, + -0.4265856146812439, + 0.09962843358516693, + -0.23099052906036377, + -0.0033271522261202335, + 0.24456675350666046, + -0.001556271337904036, + -0.047484349459409714, + 0.22979728877544403, + 0.18177863955497742, + 0.04981476068496704, + 0.3405466377735138, + -0.1320308893918991, + -0.0033684875816106796, + -0.20814037322998047, + -0.05660295486450195, + -0.22190317511558533, + 0.13366428017616272, + 0.29052531719207764, + -0.06479400396347046, + -0.13368049263954163, + -0.09971731156110764, + 0.25853869318962097, + -0.09293120354413986, + -0.18177570402622223, + -0.25768518447875977, + -0.09835201501846313, + -0.1602870523929596, + 0.08837125450372696, + -0.23356731235980988, + -0.10015814006328583, + -0.11753282696008682, + 0.16396623849868774, + 0.13959747552871704, + -0.5469827055931091, + -0.3743216395378113, + 0.1664438098669052, + 0.42448368668556213, + 0.09309141337871552, + -0.014063874259591103, + 0.05483916401863098, + -0.19726437330245972, + 0.10182209312915802, + 0.2844861149787903, + 0.33971619606018066, + 0.3693521022796631, + -0.0583476796746254, + 0.09314439445734024, + -0.1851673424243927, + -0.05094872787594795, + -0.0869995504617691, + 0.46160513162612915, + 0.15710847079753876, + 0.16642798483371735, + 0.4780958592891693, + 0.10498277097940445, + -0.014262663200497627, + 0.7639195322990417, + -0.32794445753097534, + 0.2807396352291107, + 0.12222782522439957, + 0.06334886699914932, + -0.018406609073281288, + -0.21027088165283203, + 0.19686976075172424, + 0.3977941870689392, + -0.15418635308742523, + 0.495749294757843, + 0.2718666195869446, + -0.2323676347732544, + -0.01604553684592247, + -0.1697501391172409, + 0.4119974970817566, + 0.03453035280108452, + 0.178964301943779, + -0.2899135649204254, + -0.2135457545518875, + -0.24727647006511688, + 0.03928215056657791, + -0.3034737706184387, + -0.4017711579799652, + -0.13074614107608795, + 0.18908433616161346, + 0.06772884726524353, + -0.13202431797981262, + 0.22765254974365234, + 0.17336753010749817, + -0.054644305258989334, + -0.2935251295566559, + -0.3731357753276825, + 0.03777190297842026, + -0.02863817848265171, + 0.7420274615287781, + 0.08737258613109589, + 0.012328848242759705, + 0.06267563998699188, + -0.06314559280872345, + -0.23698747158050537, + -0.07805575430393219, + 0.15573829412460327, + -0.23690490424633026, + -0.47903770208358765, + 0.18958881497383118, + 0.02512039802968502, + -0.46465373039245605, + -0.0076937004923820496, + -0.003477832768112421, + -0.030192255973815918, + 0.17734971642494202, + -0.23208603262901306, + 0.12795761227607727, + 0.3348274528980255, + -0.03275985270738602, + 0.055001698434352875, + -0.33812984824180603, + -0.1535843312740326, + 0.1890907883644104, + 0.3861348330974579, + -0.04616880416870117, + -0.055928491055965424, + -0.26633378863334656, + -0.5144811272621155, + 0.18852071464061737, + -0.3991573750972748, + -0.01008499413728714, + 0.2912987768650055, + -0.011974113993346691, + -0.0814003273844719, + 0.1869930475950241, + 0.11971618980169296, + 0.08653546869754791, + -0.011959878727793694, + 0.2634030282497406, + 0.22030997276306152, + -0.3473755717277527, + 0.41999754309654236, + 0.0027862905990332365, + 0.31245502829551697, + 0.22135451436042786, + -0.046912871301174164, + 0.13703131675720215, + -0.19747385382652283 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_073.json b/src/benchmark/output/results/results_graph_073.json new file mode 100644 index 0000000..28c612d --- /dev/null +++ b/src/benchmark/output/results/results_graph_073.json @@ -0,0 +1,792 @@ +{ + "status": "success", + "reconstructed_narrative": "**Patient Profile**\n\nThe patient is an adult male with a history of immunocompromised status due to HIV/AIDS. He was admitted to the hospital on day 1 (N1) with symptoms of pneumonia and acute hypoxic respiratory failure requiring intubation. His vital signs were unstable, and he required close monitoring in the intensive care unit.\n\n**Timeline of Diagnoses**\n\n* Day 1 (N1): Admitted with pneumonia and acute hypoxic respiratory failure.\n* Day 14 (N2): Developed septic shock and PICC-line-associated MSSA bacteremia. He was treated with IV cefazolin.\n* Day 28 (N3): Developed SVC syndrome and left upper extremity DVT. He was treated with therapeutic enoxaparin.\n* Day 42 (N4): Recurrent fevers and transfer back to the ICU for septic shock management. Blood cultures grew MSSA, and a transesophageal echocardiogram showed no endocarditis.\n* Day 54 (N5): Repeat blood cultures grew A. fumigatus in addition to MSSA. The infectious disease team recommended continuing IV cefazolin for MSSA bacteremia and adding caspofungin for fungal coverage.\n* Day 56 (N6): Atovaquone continued for pneumocystis jirovecii prophylaxis, and tenofovir discontinued due to concern for contributing to acute kidney injury. The antiretroviral regimen was changed to dolutegravir/rilpivirine plus emtricitabine pending further evaluation of hepatitis B status.\n* Day 62 (N9): Patient died of his illness.\n\n**Timeline of Treatments**\n\n* Day 1-14 (N2): IV cefazolin for MSSA bacteremia\n* Day 28-42 (N3): Therapeutic enoxaparin for SVC syndrome and DVT\n* Day 54 (N5): IV cefazolin continued, caspofungin added for fungal coverage\n* Day 56 (N6): Atovaquone continued, tenofovir discontinued, dolutegravir/rilpivirine plus emtricitabine started\n\n**Outcome**\n\nThe patient's condition worsened over time, and he eventually died on day 62 due to his illness. Despite multiple treatments, including IV cefazolin, therapeutic enoxaparin, and caspofungin, the patient's immune system was unable to overcome the infections.\n\nNote: The narrative is based on the provided data and may not be a comprehensive or entirely accurate representation of the patient's medical history.", + "bertscore": { + "precision": 0.8412173986434937, + "recall": 0.8211429119110107, + "f1": 0.8310589790344238 + }, + "bleu": 0.26754135696306547, + "rouge1": 0.5846645367412141, + "rougeL": 0.4057507987220447, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 10, + "edge_count": 9, + "avg_in_degree": 0.9, + "density": 0.1 + }, + "trajectory_embedding": [ + 0.18157726526260376, + 0.24173596501350403, + -0.15064290165901184, + 0.07789953052997589, + 0.15454770624637604, + 0.16961298882961273, + -0.11799095571041107, + 0.21222464740276337, + 0.46130186319351196, + -0.346190482378006, + -0.21522000432014465, + 0.06953564286231995, + -0.6833328008651733, + -0.11731839179992676, + -0.13093623518943787, + 0.1565907597541809, + -0.1658409684896469, + 0.3295991122722626, + 0.023968718945980072, + -0.24436740577220917, + -0.2730705142021179, + 0.09766922891139984, + -0.4291715621948242, + 0.040992893278598785, + 0.1778842955827713, + 0.06241704896092415, + 0.3450567424297333, + 0.5343670845031738, + 0.2705721855163574, + 0.32455119490623474, + 0.1970655918121338, + -0.0567609965801239, + 0.11557091772556305, + 0.1374279409646988, + -0.3696678578853607, + 0.3157033920288086, + 0.08424127846956253, + 0.30429309606552124, + -0.1628073900938034, + -0.0343419648706913, + -0.06158728525042534, + 0.13099119067192078, + 0.6208643913269043, + 0.12156106531620026, + 0.45937037467956543, + -0.7845557928085327, + -0.11881051957607269, + 0.6727222204208374, + -0.3872811496257782, + -0.28184717893600464, + 0.25917887687683105, + 0.8072859644889832, + 0.44624844193458557, + -0.23553839325904846, + 0.4472980499267578, + -0.14592644572257996, + -0.14090317487716675, + -0.17685841023921967, + -0.1263105869293213, + 0.10700918734073639, + 0.16321928799152374, + -0.23707929253578186, + 0.38165396451950073, + -0.24890558421611786, + -0.08730532974004745, + -0.02561669424176216, + -0.15296049416065216, + 0.2447458803653717, + -0.0723525881767273, + -0.33950018882751465, + -0.29810041189193726, + -0.32604363560676575, + 0.007825215347111225, + 0.04972695931792259, + 0.025376880541443825, + -0.1429591327905655, + 0.24852678179740906, + -0.034040480852127075, + 0.2870536744594574, + -0.011306770145893097, + -0.061809368431568146, + 0.010281805880367756, + -0.08853095024824142, + 0.34559541940689087, + -0.09181114286184311, + -0.07461856305599213, + -0.2512638568878174, + 0.005537307355552912, + -0.1936032474040985, + 0.0803741067647934, + -0.023251116275787354, + -0.39227181673049927, + 0.11193098872900009, + -0.1564551740884781, + 0.003976819105446339, + -0.010268200188875198, + 0.41871994733810425, + 0.05979905277490616, + 0.8428556323051453, + -0.12373845279216766, + 0.054951321333646774, + 0.17990902066230774, + 0.14112572371959686, + 0.018083970993757248, + 0.25094738602638245, + -0.2062138319015503, + 0.17142395675182343, + -0.43000760674476624, + 0.19608716666698456, + 0.4743573069572449, + 0.09206487983465195, + -0.18884409964084625, + 0.037467461079359055, + -0.21518810093402863, + 0.08606284856796265, + 0.12509246170520782, + -0.04996276646852493, + 0.25770801305770874, + 0.03437798097729683, + -0.31697386503219604, + 0.0385102815926075, + -0.090479277074337, + 0.14348503947257996, + -0.018328726291656494, + -0.36699408292770386, + -0.05970442295074463, + -0.10394291579723358, + -0.09087718278169632, + 0.23112022876739502, + 0.008289863355457783, + -0.3970450758934021, + -0.2605791389942169, + 0.08304773271083832, + 0.05678866058588028, + 0.03604061156511307, + 0.41559848189353943, + -0.38162484765052795, + 0.17668405175209045, + -1.1716099977493286, + 0.16458794474601746, + -0.28417742252349854, + -0.015548867173492908, + -0.07594817131757736, + -0.711194634437561, + -0.2291402369737625, + -0.12000241130590439, + -0.1406688243150711, + 0.19124874472618103, + -0.23169219493865967, + -0.05283690243959427, + -0.04616454988718033, + -0.0858042985200882, + 0.15748555958271027, + 0.31612810492515564, + 0.07103674113750458, + -0.0673355683684349, + -0.07175082713365555, + 0.25514885783195496, + 0.05068795010447502, + -0.14902164041996002, + -0.006055218167603016, + 0.43648838996887207, + -0.009410729631781578, + 0.17091694474220276, + -0.29464638233184814, + -0.7076739072799683, + 0.024696577340364456, + -0.11499001830816269, + 0.0008866667631082237, + 0.08362817764282227, + -0.09280485659837723, + 0.15718020498752594, + -0.4357791543006897, + 0.5816224217414856, + 0.2680997848510742, + 0.3100568950176239, + 0.05116096884012222, + 0.009569879621267319, + 0.12924569845199585, + 0.10145223140716553, + 0.0758548453450203, + -0.27769631147384644, + 0.45971131324768066, + 0.20859965682029724, + -0.33784347772598267, + 0.0705091804265976, + 0.3839980363845825, + 0.052564311772584915, + -0.2852851152420044, + -0.024933893233537674, + 0.43453550338745117, + -0.2564859688282013, + 0.4329327940940857, + -0.2065388709306717, + -0.046664781868457794, + 0.09751643240451813, + -0.27093544602394104, + -0.14071236550807953, + 0.00899127684533596, + -0.022287223488092422, + 0.07503581047058105, + -0.018698453903198242, + -0.2804120182991028, + 0.044384829699993134, + 0.22532419860363007, + -0.1216619461774826, + 0.044075626879930496, + -0.08619797229766846, + 0.022313162684440613, + -0.03587185591459274, + -0.17787562310695648, + 0.2842544913291931, + -0.0953623503446579, + 0.2675912380218506, + 0.12902551889419556, + -0.37056440114974976, + 0.02508065104484558, + 0.03116915002465248, + -0.08371514081954956, + 0.07715325057506561, + 0.03929922729730606, + -0.21154585480690002, + 0.22997598350048065, + -0.05840129777789116, + -0.342581570148468, + 0.1775730848312378, + 0.359138548374176, + 0.30173930525779724, + 0.07008328288793564, + -0.16640983521938324, + 0.01262134313583374, + -0.2634149193763733, + 0.21909400820732117, + -0.1186048611998558, + -0.19360928237438202, + -0.32276421785354614, + 0.21952266991138458, + 0.12848389148712158, + 0.09633677452802658, + 0.19681166112422943, + -0.13839873671531677, + 0.05562460422515869, + -0.007560743950307369, + -0.19483274221420288, + 0.16679741442203522, + -0.3166010081768036, + -0.07062391191720963, + 0.31550732254981995, + 0.18269464373588562, + 0.11530967801809311, + -0.012370807118713856, + -0.10057101398706436, + 0.10396616160869598, + -0.21465742588043213, + -0.3132184147834778, + -0.1957148313522339, + -0.1458921730518341, + -0.01989445462822914, + -0.5681425333023071, + 0.2194744348526001, + -0.0009315162897109985, + 0.03656891733407974, + 0.23701921105384827, + -0.12102049589157104, + -0.17208704352378845, + -0.051812708377838135, + 0.07092301547527313, + 0.1261751651763916, + -0.2683359384536743, + 0.008651318028569221, + -0.14771969616413116, + -0.04778953641653061, + -0.2970026731491089, + -0.028194475919008255, + 0.15859226882457733, + 0.12895110249519348, + -0.3457646071910858, + 0.16645152866840363, + 0.15823428332805634, + -0.5857977271080017, + -0.1420481652021408, + 0.06284819543361664, + -0.14102862775325775, + 0.348876416683197, + -0.006073593162000179, + 0.17805418372154236, + 0.4542171359062195, + 0.11078587919473648, + 0.14286144077777863, + 0.33494463562965393, + 0.39043885469436646, + -0.12349659204483032, + -0.010611413046717644, + 0.1362195611000061, + -0.28544890880584717, + -0.02167845331132412, + -0.5888930559158325, + 0.26736411452293396, + 0.10486531257629395, + 0.12899798154830933, + 0.12498937547206879, + -0.052146025002002716, + 0.17739573121070862, + -0.20172464847564697, + -0.07808282971382141, + 0.27521324157714844, + 0.0439002588391304, + 0.3505401909351349, + 0.27165788412094116, + 0.12362979352474213, + 0.456890344619751, + -0.04554905369877815, + -0.06890411674976349, + 0.20742671191692352, + -0.21730399131774902, + -0.3073647618293762, + 0.0959082767367363, + 0.2170354574918747, + 0.23280659317970276, + -0.15779171884059906, + -0.2738577425479889, + 0.2858556807041168, + -0.2116968184709549, + -0.12356128543615341, + -0.2659599184989929, + -0.16417834162712097, + -0.06512857973575592, + -0.23439428210258484, + 0.17980527877807617, + -0.06487801671028137, + 0.03441762551665306, + 0.2714279294013977, + -0.335573673248291, + -0.1563459187746048, + 0.39495086669921875, + 0.0598733052611351, + -0.4398280680179596, + 0.3569442629814148, + -0.21959352493286133, + 0.21411772072315216, + 0.2415691316127777, + -0.23799827694892883, + -0.0275203138589859, + 0.017063576728105545, + 0.2339799404144287, + -0.1449342966079712, + 0.1748427003622055, + -0.03219287097454071, + -0.03797931224107742, + 0.053762394934892654, + 0.2592673897743225, + 0.15174971520900726, + 0.1136842742562294, + 0.42255187034606934, + 0.047379471361637115, + -0.27283650636672974, + 0.12324601411819458, + -0.21107809245586395, + 0.08605097234249115, + -0.03227163851261139, + -0.06743749231100082, + -0.07294677197933197, + 0.27267852425575256, + -0.007410484366118908, + -0.265026718378067, + 0.02373521961271763, + -0.07616546005010605, + -0.09990662336349487, + -0.19171182811260223, + 0.4424431324005127, + -0.040293410420417786, + -0.20871929824352264, + 0.5981371998786926, + -0.016681332141160965, + -0.2776864171028137, + 0.4313011169433594, + 0.005187648348510265, + 0.14348891377449036, + -0.0007390171522274613, + -0.4269329011440277, + -0.20846585929393768, + 0.08971717953681946, + -0.15879306197166443, + -0.08854798972606659, + -0.0381813570857048, + -0.10957054048776627, + 0.03878896310925484, + -0.031618982553482056, + 0.037570420652627945, + 0.02869970165193081, + 0.1661781221628189, + 0.10340765863656998, + 0.40337538719177246, + -0.0632922500371933, + -0.17038527131080627, + 0.09968487918376923, + 0.09140974283218384, + -0.01250526588410139, + -0.16833749413490295, + -0.08409100770950317, + -0.02720922790467739, + 0.46356528997421265, + -0.20175714790821075, + -0.025314947590231895, + 0.0663636103272438, + -0.10444492101669312, + -0.18244223296642303, + -0.2960977852344513, + 0.1477549970149994, + -0.09990190714597702, + -0.15287050604820251, + 0.041650090366601944, + 0.01173420064151287, + 0.07396619021892548, + 0.020081523805856705, + -0.12024860084056854, + 0.07408074289560318, + 0.28869953751564026, + 0.11962145566940308, + -0.07432802766561508, + 0.35325154662132263, + 0.14265429973602295, + 0.1713699996471405, + -0.24997727572917938, + 0.29511940479278564, + 0.030739452689886093, + -0.3692754805088043, + -0.05238616466522217, + -0.15488693118095398, + -0.44822245836257935, + -0.10873015969991684, + 0.2430027425289154, + 0.20071229338645935, + -0.1258717030286789, + -0.038965895771980286, + -0.07628043740987778, + 0.026770979166030884, + -0.09105877578258514, + -0.052381910383701324, + 0.13684847950935364, + -0.02807474695146084, + 0.256748765707016, + 0.1284431517124176, + -0.5095011591911316, + -0.28800612688064575, + -0.02384519949555397, + -0.21591369807720184, + 0.17006954550743103, + 0.09644508361816406, + -0.05048646777868271, + -0.17762598395347595, + 0.02235526777803898, + -0.11447609961032867, + -0.1502404510974884, + 0.2778838574886322, + -0.13707950711250305, + 0.3155015707015991, + 0.2808328866958618, + -0.2911819517612457, + 0.02660376951098442, + -0.23990651965141296, + -0.33747658133506775, + -0.23955580592155457, + 0.18466472625732422, + 0.009571048431098461, + -0.257381796836853, + -0.13445940613746643, + -0.004590742290019989, + -0.16584929823875427, + -0.08639497309923172, + -0.11372051388025284, + -0.03149271756410599, + 0.33574503660202026, + -0.059503037482500076, + -0.18139784038066864, + 0.1278296858072281, + 0.07298298925161362, + -0.06915251165628433, + 0.1284720003604889, + 0.23369967937469482, + 0.25129440426826477, + 0.08527600765228271, + -0.10059531778097153, + 0.27520161867141724, + 0.10088445246219635, + 0.25962644815444946, + 0.26203659176826477, + -0.12423031032085419, + 0.1608431041240692, + -0.3454696238040924, + -0.2116205245256424, + 0.08308203518390656, + -0.4368212819099426, + 0.05639520287513733, + 0.1571504771709442, + 0.18229061365127563, + -0.30084556341171265, + -0.2520159184932709, + 0.09372211992740631, + 0.06560350954532623, + -0.0762154757976532, + -0.13256771862506866, + -0.08354126662015915, + -0.0016011253464967012, + -0.09548208862543106, + 0.029486704617738724, + 0.11638529598712921, + 0.33140310645103455, + 0.0867951363325119, + 0.11991649866104126, + -0.13486678898334503, + -0.3106093406677246, + 0.30515167117118835, + 0.311331570148468, + -0.047474659979343414, + 0.000635759555734694, + -0.05501333624124527, + 0.24573318660259247, + 0.33128947019577026, + 0.0862356424331665, + 0.04203740879893303, + -0.05483384057879448, + -0.049499284476041794, + 0.06382375210523605, + 0.0856262743473053, + -0.1278141289949417, + -0.011735456995666027, + -0.3894802927970886, + 0.036342039704322815, + 0.05288202688097954, + -0.17797493934631348, + 0.18720602989196777, + -0.4781675934791565, + -0.6327563524246216, + -0.008378768339753151, + 0.09345807135105133, + -0.027831245213747025, + -0.15652665495872498, + 0.210295632481575, + 0.534176230430603, + -0.010117411613464355, + -0.09219713509082794, + 0.05162297561764717, + -0.45773738622665405, + -0.134120911359787, + 0.18254640698432922, + 0.06112511083483696, + -0.08313168585300446, + 0.13736149668693542, + 0.5559831857681274, + 0.45035892724990845, + 0.2314745932817459, + -0.3566986918449402, + 0.20644590258598328, + 0.31592029333114624, + 0.2510663568973541, + -0.2930491864681244, + -10.731353759765625, + 0.04862998053431511, + -0.3188585638999939, + 0.32804444432258606, + -0.33146750926971436, + -0.0560254342854023, + 0.07343591749668121, + 0.017088308930397034, + 0.0679975301027298, + 0.1285393238067627, + -0.2852936387062073, + -0.14765837788581848, + 0.06846374273300171, + 0.2916242182254791, + 0.09349022060632706, + 0.14258766174316406, + -0.09424163401126862, + 0.2506990134716034, + 0.15114916861057281, + 0.27528461813926697, + 0.16642193496227264, + 0.40676409006118774, + -0.23998603224754333, + 0.27607059478759766, + 0.0776575431227684, + -0.2924764156341553, + -0.11448617279529572, + 0.38136714696884155, + 0.16680708527565002, + -0.2939472496509552, + 0.07823546975851059, + -0.03213023766875267, + -0.23636212944984436, + 0.0044772387482225895, + -0.2526151239871979, + -0.15451374650001526, + 0.04990076273679733, + 0.24410252273082733, + 0.2510082721710205, + -0.12669046223163605, + 0.07962235063314438, + -0.06892544776201248, + 0.2425260990858078, + 0.057691216468811035, + -0.06892422586679459, + -0.48557013273239136, + -0.15087108314037323, + -1.4740550518035889, + 0.3788347542285919, + 0.4238322377204895, + 0.3295937478542328, + 0.016429483890533447, + 0.05903347209095955, + 0.18632450699806213, + -0.21358013153076172, + 0.20488980412483215, + -0.3559091091156006, + 0.02797761559486389, + -0.09907160699367523, + 0.10354135185480118, + 0.11119399219751358, + -0.1005065068602562, + 0.5321890115737915, + -0.037488680332899094, + -0.22661232948303223, + 0.1618994027376175, + -0.00899996142834425, + -0.028053458780050278, + -0.19525526463985443, + -0.42058834433555603, + -0.41438570618629456, + 0.009322874248027802, + 0.024700414389371872, + 0.0014415502082556486, + 0.31659606099128723, + 0.016689840704202652, + -0.26710477471351624, + 0.390737384557724, + -0.01085034478455782, + 0.11493291705846786, + 0.3050146996974945, + -0.0856911689043045, + -0.0174887515604496, + -0.16887864470481873, + -0.1715092957019806, + -0.016562527045607567, + 0.16368183493614197, + 0.19937971234321594, + 0.05205193907022476, + -0.029703477397561073, + 0.22450122237205505, + 0.26133114099502563, + -0.025594305247068405, + -0.22071132063865662, + -0.4266149401664734, + -0.028872722759842873, + 0.0540560707449913, + 0.21648108959197998, + -0.0688907653093338, + 0.025538083165884018, + -0.3323007822036743, + 0.20793581008911133, + -0.1394197642803192, + -0.33915987610816956, + -0.34730929136276245, + 0.31990116834640503, + 0.2548900842666626, + 0.17785947024822235, + 0.04865370690822601, + -0.11748357862234116, + -0.020514681935310364, + 0.02124701626598835, + 0.29569774866104126, + 0.4932135045528412, + 0.24348755180835724, + -0.22339868545532227, + -0.04098835587501526, + -0.2484463006258011, + -0.12969334423542023, + 0.08278878778219223, + 0.327031672000885, + 0.09014321863651276, + 0.03604106977581978, + 0.44937825202941895, + 0.07948388159275055, + 0.08059508353471756, + 0.8134622573852539, + -0.32867690920829773, + 0.39408785104751587, + 0.0895610898733139, + 0.3642854690551758, + -0.09822408854961395, + -0.3908959925174713, + -0.009249294176697731, + 0.45607107877731323, + -0.3056427240371704, + 0.4062795042991638, + 0.163981094956398, + -0.24260754883289337, + -0.08668837696313858, + -0.22507648169994354, + 0.43144291639328003, + 0.20747098326683044, + 0.27738919854164124, + -0.16621790826320648, + -0.1904042661190033, + -0.25848060846328735, + -0.030776213854551315, + -0.21076600253582, + -0.19378426671028137, + -0.0772520899772644, + -0.0505722276866436, + -0.019702116027474403, + -0.20553115010261536, + 0.32772737741470337, + 0.1536443829536438, + -0.04502632096409798, + -0.49869346618652344, + -0.25819429755210876, + 0.05866633728146553, + 0.11492965370416641, + 0.48161250352859497, + 0.08003558218479156, + -0.05724286288022995, + -0.056733936071395874, + 0.31550753116607666, + -0.16656918823719025, + 0.18831710517406464, + 0.04821368306875229, + 0.00128183513879776, + -0.3221592307090759, + 0.22793488204479218, + 0.08622206002473831, + -0.3294474184513092, + -0.11203116178512573, + -0.18163274228572845, + 0.0842447429895401, + 0.1564849615097046, + -0.11939491331577301, + 0.22108379006385803, + 0.32407230138778687, + 0.03628622740507126, + 0.05031429976224899, + -0.27038508653640747, + 0.006122891791164875, + 0.2561357915401459, + 0.3403213620185852, + -0.07488597184419632, + -0.28012964129447937, + -0.21776294708251953, + -0.5603423714637756, + 0.02805805578827858, + -0.3674620985984802, + -0.04308294132351875, + 0.29657334089279175, + 0.04545745998620987, + -0.19705525040626526, + 0.1035865768790245, + 0.031884558498859406, + -0.30009692907333374, + -0.17086265981197357, + 0.2595962584018707, + 0.44319963455200195, + -0.38089779019355774, + 0.3074343502521515, + -0.2748555839061737, + 0.17860734462738037, + 0.20200741291046143, + -0.25985413789749146, + 0.0914209634065628, + -0.11942343413829803 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_074.json b/src/benchmark/output/results/results_graph_074.json new file mode 100644 index 0000000..1ec63a8 --- /dev/null +++ b/src/benchmark/output/results/results_graph_074.json @@ -0,0 +1,792 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is an unknown female with no specified age or background information provided in the data. However, based on the clinical presentation and imaging findings, it can be inferred that she is likely a young adult.\n\n**Initial Presentation (Step 1):**\nThe patient presented with a fluid collection adjacent to the spleen, which was identified through abdominal ultrasound. The fluid collection had septations, and no malignant cells were found in the aspirated fluid.\n\n**Progression of Disease (Steps 2-5):**\nOver time, the cystic lesion in the left upper quadrant of the abdomen grew in size, with a notable increase from 7.6 x 11.7 cm to 11 x 22 cm. The patient reported feeling pressure and a pulling sensation on the left side of her abdomen, rated as 4/10 for pain. Ultrasound-guided aspiration revealed 33 mL of clear yellow fluid, which was sent to pathology and showed no evidence of malignant cells.\n\n**Imaging Findings:**\nThroughout the course of the disease, various imaging modalities were used, including ultrasound, CT scans, and MRI. These studies consistently demonstrated a large cystic mass extending from the spleen on the left to the left hemipelvis, with enhancing septations.\n\n**Treatment (Step 7):**\nThe patient received doxycycline sclerotherapy over eight months as part of her treatment plan. Post-sclerotherapy ultrasound showed no significant changes in the size or appearance of the cystic mass.\n\n**Outcome:**\nDespite the growth of the cystic lesion, the patient did not experience any symptoms that would suggest malignancy. The sclerotherapy treatment appears to have been effective in stabilizing the lesion, and further imaging studies are scheduled for follow-up.\n\nIn summary, this patient presented with a fluid collection adjacent to the spleen, which progressed over time into a large cystic mass extending from the spleen on the left to the left hemipelvis. The patient received doxycycline sclerotherapy as part of her treatment plan, and post-treatment imaging studies showed no significant changes in the size or appearance of the lesion.", + "bertscore": { + "precision": 0.8279114961624146, + "recall": 0.8213652968406677, + "f1": 0.8246254324913025 + }, + "bleu": 0.0684286530717067, + "rouge1": 0.42224152910512597, + "rougeL": 0.25021720243266726, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 7, + "edge_count": 6, + "avg_in_degree": 0.8571428571428571, + "density": 0.14285714285714285 + }, + "trajectory_embedding": [ + 0.37995657324790955, + 0.09801924228668213, + 0.029700586572289467, + 0.12594357132911682, + 0.10155230760574341, + 0.09751962870359421, + -0.09553129225969315, + 0.2206941395998001, + 0.4248223304748535, + -0.16399696469306946, + -0.31089702248573303, + -0.05961534380912781, + -0.545925498008728, + 0.12594513595104218, + -0.3283112645149231, + 0.15797248482704163, + -0.0726936012506485, + 0.13808110356330872, + -0.07467623800039291, + -0.230401411652565, + -0.45884889364242554, + 0.16840192675590515, + -0.37421342730522156, + -0.002563644666224718, + 0.19825102388858795, + -0.05888105183839798, + 0.35362979769706726, + 0.48598116636276245, + 0.2372424602508545, + 0.32929399609565735, + 0.2568945586681366, + -0.03116828016936779, + 0.21256186068058014, + 0.02031186781823635, + -0.06004540994763374, + 0.2603452801704407, + 0.22633515298366547, + 0.5330950021743774, + -0.05005381628870964, + 0.09714651852846146, + 0.02627384662628174, + 0.01042833924293518, + 0.7473216652870178, + 0.2562236487865448, + 0.4196780323982239, + -0.8364146947860718, + -0.000517376814968884, + 0.4777333438396454, + -0.5929005742073059, + -0.40455013513565063, + 0.21538951992988586, + 0.7955760955810547, + 0.5978747010231018, + -0.1643076241016388, + 0.3185666501522064, + -0.18994393944740295, + -0.15423810482025146, + -0.3700208067893982, + -0.33925214409828186, + -0.09597659111022949, + -0.0526815727353096, + -0.18973149359226227, + 0.1422053724527359, + -0.108767569065094, + -0.34792500734329224, + -0.1796339750289917, + -0.1651369035243988, + -0.047563642263412476, + -0.07213956862688065, + -0.2794947028160095, + -0.08152622729539871, + -0.010557140223681927, + -0.18007643520832062, + -0.017403606325387955, + 0.07476487010717392, + -0.07647428661584854, + 0.3955647349357605, + -0.15808923542499542, + 0.051303356885910034, + 0.14312902092933655, + -0.12051256746053696, + -0.03177320584654808, + 0.1489228457212448, + 0.3017025887966156, + -0.5240438580513, + 0.0015829886542633176, + -0.1602783054113388, + -0.23726974427700043, + -0.30996233224868774, + 0.22271975874900818, + 0.13667693734169006, + -0.23178228735923767, + 0.0236444603651762, + 0.019947124645113945, + -0.012596950866281986, + 0.1883441060781479, + 0.2551479935646057, + 0.38596677780151367, + 0.9295811057090759, + 0.18678845465183258, + 0.16199538111686707, + 0.17060962319374084, + 0.24650311470031738, + 0.03523850813508034, + 0.3747576177120209, + -0.01919887587428093, + 0.0992204025387764, + -0.5053381323814392, + 0.14267583191394806, + 0.15122167766094208, + -0.06995239108800888, + -0.1420145481824875, + -0.05846596136689186, + -0.08499719947576523, + 0.26948410272598267, + 0.10332638025283813, + -0.08442048728466034, + 0.04924004152417183, + 0.17249906063079834, + -0.33537524938583374, + -0.05022487789392471, + -0.07760488986968994, + 0.2646951973438263, + 0.3605910837650299, + -0.2587319016456604, + -0.03369029238820076, + -0.2535383403301239, + 0.08854810148477554, + 0.13160087168216705, + 0.14474964141845703, + -0.42608165740966797, + -0.004225836601108313, + -0.1396503746509552, + 0.221908301115036, + -0.1856192648410797, + 0.17320813238620758, + -0.35494735836982727, + 0.05256684496998787, + -1.1480152606964111, + 0.19605596363544464, + -0.3841502368450165, + -0.006509731989353895, + 0.10978672653436661, + -0.5162526369094849, + -0.06708173453807831, + -0.19396118819713593, + -0.12482210248708725, + 0.13667625188827515, + -0.018347056582570076, + 0.1603400558233261, + -0.08113069087266922, + 0.07419180124998093, + 0.34137430787086487, + 0.2806939482688904, + 0.1137097105383873, + 0.15906167030334473, + 0.07755331695079803, + 0.32156482338905334, + 0.0055593037977814674, + -0.12838676571846008, + -0.025127043947577477, + 0.28370901942253113, + 0.08226039260625839, + -0.09020189195871353, + -0.07910968363285065, + -0.586747944355011, + 0.19163911044597626, + -0.19184447824954987, + 0.25433996319770813, + -0.017567452043294907, + -0.30781441926956177, + 0.07864553481340408, + -0.37995025515556335, + 0.6156628727912903, + 0.10681413114070892, + 0.3946901857852936, + -0.11176124960184097, + -0.17329703271389008, + -0.04869617894291878, + 0.07029209285974503, + 0.10197190940380096, + -0.1370113343000412, + 0.7894839644432068, + 0.16819843649864197, + -0.07950420677661896, + 0.2423354536294937, + 0.31975334882736206, + -0.0200608279556036, + -0.28354766964912415, + -0.05729326978325844, + 0.37516874074935913, + -0.26047608256340027, + 0.477372407913208, + -0.32793352007865906, + 0.0603640042245388, + 0.09628403186798096, + -0.27923861145973206, + -0.030989142134785652, + 0.209242582321167, + 0.02517770417034626, + 0.3067164421081543, + 0.032403554767370224, + -0.2771337628364563, + 0.13135555386543274, + 0.07782643288373947, + 0.05506567284464836, + 0.3015282154083252, + 0.05968746915459633, + 0.2846646010875702, + -0.050218772143125534, + -0.07979687303304672, + 0.11240636557340622, + -0.0880211740732193, + 0.187428817152977, + 0.0137978196144104, + -0.33199504017829895, + 0.29251763224601746, + 0.025832032784819603, + -0.2305680811405182, + 0.20346692204475403, + -0.13242125511169434, + -0.2294529527425766, + -0.010386824607849121, + -0.2373780459165573, + -0.5054355263710022, + 0.2120778113603592, + 0.07724116742610931, + 0.3203694522380829, + 0.28840163350105286, + 0.11630939692258835, + 0.0843522921204567, + -0.2442571222782135, + 0.10728006809949875, + -0.12942470610141754, + -0.12881740927696228, + -0.36000803112983704, + 0.2137957364320755, + -0.2752557694911957, + -0.003968194127082825, + 0.3274936079978943, + -0.16641893982887268, + -0.20756219327449799, + 0.03983568027615547, + -0.2729133069515228, + -0.1331460028886795, + -0.3431987762451172, + 0.09842705726623535, + 0.1291016787290573, + 0.1838821917772293, + 0.24851009249687195, + -0.031012799590826035, + -0.16926300525665283, + 0.18297219276428223, + -0.15960296988487244, + -0.3437172472476959, + -0.48363879323005676, + -0.021346228197216988, + 0.07692231237888336, + -0.5759924054145813, + 0.11376823484897614, + 0.17436455190181732, + -0.13003112375736237, + -0.050318747758865356, + -0.3444478511810303, + -0.04262489825487137, + 0.1204909235239029, + -0.020992234349250793, + 0.13836073875427246, + 0.0020301532931625843, + 0.26009783148765564, + -0.22942093014717102, + -0.2508060038089752, + -0.08233727514743805, + -0.1628398895263672, + 0.08114083856344223, + 0.11445826292037964, + -0.2885421812534332, + 0.004430701490491629, + 0.15514829754829407, + -0.33929187059402466, + -0.27121350169181824, + 0.39570972323417664, + -0.17809666693210602, + 0.09738986939191818, + 0.06274087727069855, + 0.2423219382762909, + 0.17938974499702454, + -0.007644993718713522, + 0.13662517070770264, + 0.5079261660575867, + 0.5058150291442871, + -0.002438613446429372, + -0.051615159958601, + -0.013487345539033413, + 0.06108113005757332, + -0.0810045376420021, + -0.47588029503822327, + 0.35241007804870605, + 0.12438230961561203, + -0.022784385830163956, + -0.1594230681657791, + 0.2839639186859131, + 0.028176410123705864, + -0.42326289415359497, + -0.2542061507701874, + 0.5551326274871826, + 0.24816347658634186, + -0.04103132709860802, + -0.05459409952163696, + 0.4102260172367096, + 0.47135406732559204, + -0.1475778967142105, + -0.046225227415561676, + -0.10576371103525162, + -0.03395043686032295, + 0.011244518682360649, + -0.12956266105175018, + 0.08546238392591476, + 0.42741870880126953, + -0.16566692292690277, + -0.045255597680807114, + 0.24098530411720276, + -0.09031276404857635, + -0.1327068954706192, + -0.19221661984920502, + -0.05484132096171379, + 0.026008915156126022, + -0.13336940109729767, + 0.29434606432914734, + 0.016346288844943047, + -0.14489005506038666, + 0.5130201578140259, + -0.2209785282611847, + -0.11640842258930206, + 0.031207213178277016, + -0.15411090850830078, + -0.36458662152290344, + 0.48960304260253906, + -0.24959087371826172, + -0.16240628063678741, + 0.4750869572162628, + -0.05579386278986931, + -0.003918517846614122, + -0.21311834454536438, + 0.4977683424949646, + -0.03374994546175003, + -0.12895527482032776, + -0.06601860374212265, + 0.06383255869150162, + 0.2116803377866745, + 0.7112784385681152, + 0.24886974692344666, + 0.26290541887283325, + 0.5474045276641846, + 0.1937641203403473, + -0.39962291717529297, + -0.05210968479514122, + 0.17879709601402283, + 0.32930508255958557, + -0.18192903697490692, + 0.04527191445231438, + -0.2038271725177765, + -0.045169439166784286, + 0.2012123167514801, + -0.31228846311569214, + 0.032264966517686844, + 0.2772414982318878, + 0.18482588231563568, + 0.08131016790866852, + 0.06595318019390106, + 0.12481772899627686, + -0.1587267965078354, + 0.36972951889038086, + -0.054978806525468826, + 0.03664937987923622, + 0.2202943116426468, + -0.22281673550605774, + 0.2837558686733246, + -0.1451645791530609, + -0.305817186832428, + -0.29813793301582336, + -0.061553001403808594, + -0.19008640944957733, + -0.25722455978393555, + 0.029829103499650955, + -0.1286444514989853, + 0.04832107573747635, + -0.29580602049827576, + 0.3301613926887512, + 0.026412632316350937, + 0.2703469395637512, + 0.12473652511835098, + 0.45020297169685364, + 0.0680600181221962, + -0.33683493733406067, + 0.14152637124061584, + -0.0906151533126831, + 0.10293073952198029, + -0.3256339132785797, + -0.08019039779901505, + -0.08885722607374191, + 0.4913967549800873, + 0.07968335598707199, + -0.04253444820642471, + -0.041778236627578735, + 0.11386442184448242, + -0.09062569588422775, + -0.40395182371139526, + -0.2160898894071579, + -0.20846907794475555, + 0.009410346858203411, + -0.040480442345142365, + 0.1513473242521286, + -0.3172982633113861, + -0.37204232811927795, + -0.11877298355102539, + 0.06637699902057648, + 0.24262240529060364, + -0.20356817543506622, + 0.051173243671655655, + 0.3762260377407074, + 0.13089516758918762, + 0.34144333004951477, + -0.09274134784936905, + 0.12101983278989792, + 0.22923634946346283, + -0.36679890751838684, + -0.07128846645355225, + 0.07605759054422379, + -0.4967430531978607, + -0.2725875973701477, + 0.28985223174095154, + 0.1582464873790741, + 0.14206473529338837, + -0.029324963688850403, + 0.0828104168176651, + 0.22078970074653625, + -0.43010759353637695, + -0.07443193346261978, + 0.2603622376918793, + 0.35916659235954285, + 0.38706716895103455, + -0.07034778594970703, + -0.43161970376968384, + -0.29155439138412476, + -0.1570243388414383, + -0.38972118496894836, + 0.13986770808696747, + 0.1429203897714615, + -0.15219150483608246, + -0.14774684607982635, + 0.0766138955950737, + -0.11019197851419449, + -0.07156208902597427, + 0.36617976427078247, + -0.04210776463150978, + 0.13302408158779144, + -0.038639314472675323, + -0.23136751353740692, + -0.14230073988437653, + -0.1415536254644394, + -0.27027660608291626, + -0.329255074262619, + 0.41802266240119934, + 0.31522509455680847, + -0.2677532136440277, + 0.06844540685415268, + 0.18795347213745117, + -0.23568645119667053, + -0.1506429761648178, + -0.05028267577290535, + -0.23699530959129333, + 0.3191778361797333, + 0.07562350481748581, + -0.22345854341983795, + 0.05637361854314804, + -0.3477286398410797, + 0.13604339957237244, + 0.16756485402584076, + 0.0913146585226059, + 0.5264246463775635, + 0.259994238615036, + 0.21286983788013458, + 0.4868946373462677, + -0.05619483068585396, + -0.11250904947519302, + 0.122774638235569, + 0.11811138689517975, + -0.02638634480535984, + -0.33726605772972107, + -0.2917758524417877, + 0.3046490252017975, + -0.2856607139110565, + 0.049223508685827255, + 0.36503008008003235, + 0.19397734105587006, + -0.42573466897010803, + -0.21536943316459656, + -0.11695005744695663, + 0.06905940920114517, + -0.11133057624101639, + -0.2563154697418213, + -0.08291972428560257, + 0.057241495698690414, + -0.30275487899780273, + -0.07605274766683578, + 0.3041597902774811, + 0.433889240026474, + 0.1465456634759903, + 0.03412970155477524, + -0.38994136452674866, + -0.4159722328186035, + 0.0940321832895279, + 0.23996415734291077, + -0.04011116176843643, + -0.0991034135222435, + -0.29198047518730164, + 0.023102272301912308, + 0.48434287309646606, + -0.07548333704471588, + 0.03373415023088455, + 0.10176242887973785, + -0.06307227164506912, + 0.09136135131120682, + 0.139975443482399, + 0.053977254778146744, + 0.02194300852715969, + -0.3653024137020111, + 0.34197500348091125, + -0.19960835576057434, + -0.13359884917736053, + 0.1813196837902069, + 0.06455648690462112, + -0.3188205361366272, + -0.4104425609111786, + 0.4396914541721344, + -0.21566851437091827, + -0.11718641966581345, + -0.07141082733869553, + 0.4281046688556671, + -0.013657866977155209, + -0.2886578142642975, + 0.08933538943529129, + -0.4452657699584961, + -0.1127772405743599, + 0.1089206412434578, + -0.1703837662935257, + -0.09747439622879028, + -0.1491556465625763, + 0.2755518853664398, + 0.46370190382003784, + 0.13232271373271942, + -0.28244131803512573, + -0.08030446618795395, + 0.3003416061401367, + 0.20794597268104553, + -0.15605412423610687, + -10.821137428283691, + 0.07166632264852524, + -0.1505032330751419, + 0.6149778366088867, + -0.27706030011177063, + -0.03804642707109451, + 0.28296658396720886, + -0.055307839065790176, + 0.18252743780612946, + 0.11978350579738617, + -0.20182767510414124, + 0.13750223815441132, + 0.31941238045692444, + 0.16238471865653992, + -0.12446495145559311, + -0.04245349019765854, + -0.25090858340263367, + 0.1522710770368576, + -0.13911917805671692, + 0.23711861670017242, + 0.1290946900844574, + 0.28213900327682495, + -0.25027620792388916, + 0.3394520580768585, + 0.12081465870141983, + -0.3219100534915924, + -0.21894630789756775, + 0.7313545942306519, + 0.06483325362205505, + -0.17339764535427094, + 0.31810328364372253, + 0.34713298082351685, + -0.2376079559326172, + 0.05275648087263107, + -0.09874344617128372, + -0.12670518457889557, + 0.0960308387875557, + 0.05677909031510353, + 0.24223005771636963, + 0.004201292991638184, + -0.058505672961473465, + -0.31525251269340515, + 0.3759646415710449, + 0.21020841598510742, + -0.22195680439472198, + -0.4385775923728943, + -0.026129351928830147, + -1.478589653968811, + 0.12578800320625305, + 0.17339526116847992, + 0.38787204027175903, + 0.09360547363758087, + 0.31952252984046936, + 0.012759238481521606, + -0.41150689125061035, + 0.18061377108097076, + -0.37527260184288025, + -0.0863092765212059, + -0.019355518743395805, + 0.018429305404424667, + 0.08877609670162201, + -0.2149476706981659, + 0.46419769525527954, + -0.17458681762218475, + -0.43142130970954895, + 0.11288626492023468, + 0.07445921003818512, + 0.12628164887428284, + -0.11945603042840958, + -0.38261833786964417, + -0.5283170342445374, + -0.08888468891382217, + -0.045344386249780655, + -0.05548547953367233, + 0.5140365362167358, + 0.18226051330566406, + -0.39427682757377625, + 0.3037468492984772, + -0.08763206005096436, + 0.39484742283821106, + 0.13341321051120758, + -0.14059601724147797, + 0.1915351152420044, + -0.13258162140846252, + -0.34495028853416443, + -0.1213214248418808, + 0.13526709377765656, + 0.4893025755882263, + 0.0487591028213501, + 0.030913488939404488, + 0.006703980732709169, + 0.3817351460456848, + -0.11707624047994614, + -0.27272289991378784, + -0.41967275738716125, + 0.07028400897979736, + -0.24211427569389343, + 0.11122997850179672, + 0.044782619923353195, + -0.0412275567650795, + -0.2315467894077301, + 0.06260370463132858, + 0.022414233535528183, + -0.5007809996604919, + -0.4019578993320465, + 0.30645158886909485, + 0.10654999315738678, + 0.4325349032878876, + 0.06229427084326744, + -0.20297692716121674, + -0.2986350357532501, + -0.011530312709510326, + 0.10124281793832779, + 0.6350119709968567, + -0.0023636179976165295, + -0.023279715329408646, + 0.017329039052128792, + -0.46684056520462036, + -0.25323957204818726, + 0.06903299689292908, + 0.34610384702682495, + -0.12704606354236603, + 0.231996089220047, + 0.6985863447189331, + 0.06540343910455704, + -0.205169215798378, + 1.0532562732696533, + -0.18552327156066895, + 0.10639381408691406, + -0.15420426428318024, + 0.2088264524936676, + -0.1638656109571457, + -0.25836676359176636, + 0.029533471912145615, + 0.5921178460121155, + -0.3884141147136688, + 0.7821306586265564, + 0.14494366943836212, + -0.39747023582458496, + 0.1607729196548462, + -0.3863277733325958, + 0.5246726274490356, + 0.3249935209751129, + 0.33247318863868713, + -0.14822350442409515, + -0.33232712745666504, + -0.10402630269527435, + 0.09154355525970459, + -0.458811491727829, + -0.20017090439796448, + -0.17602379620075226, + 0.1441136598587036, + 0.11163701862096786, + -0.2810453474521637, + 0.40791767835617065, + 0.14591684937477112, + -0.22489747405052185, + -0.4181624948978424, + -0.4583265781402588, + -0.03487362340092659, + 0.1333482712507248, + 0.8185035586357117, + -0.05929122120141983, + 0.03213487192988396, + -0.07802440226078033, + 0.01983635313808918, + -0.13263921439647675, + 0.16796091198921204, + 0.09266303479671478, + -0.10181672126054764, + -0.48844113945961, + 0.20073963701725006, + 0.019214781001210213, + -0.28359827399253845, + -0.19081313908100128, + -0.17977015674114227, + -0.04096474498510361, + -0.11055684089660645, + -0.27811509370803833, + 0.06136731430888176, + 0.29513970017433167, + -0.18971887230873108, + 0.04308944568037987, + -0.2796589732170105, + 0.13607721030712128, + 0.0892738550901413, + 0.39275088906288147, + -0.010025350376963615, + -0.25946077704429626, + -0.33738401532173157, + -0.413753479719162, + 0.24785423278808594, + -0.09910101443529129, + -0.006313375197350979, + 0.17575649917125702, + 0.21268554031848907, + -0.2925707697868347, + -0.07847266644239426, + -0.27649813890457153, + 0.06564453989267349, + -0.3149513304233551, + 0.18248412013053894, + 0.45127275586128235, + -0.20536358654499054, + 0.024198921397328377, + -0.13917332887649536, + 0.1625182181596756, + 0.053632061928510666, + -0.3890143036842346, + 0.3093743324279785, + -0.13650336861610413 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_075.json b/src/benchmark/output/results/results_graph_075.json new file mode 100644 index 0000000..adc1e9a --- /dev/null +++ b/src/benchmark/output/results/results_graph_075.json @@ -0,0 +1,792 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 77-year-old man with a history of smoking, hypertension, benign prostatic hyperplasia, and hyperuricemia. He was admitted for his first cycle of chemotherapy for stage IV small cell lung cancer without cerebral metastases.\n\n**Timeline of Diagnoses:**\n\n1. **Initial Diagnosis:** The patient's diagnosis of stage IV small cell lung cancer was confirmed upon admission.\n2. **Somnolence and Right-Sided Weakness:** 30 minutes after chemotherapy premedication, the patient experienced a sudden change in mental status, progressing to somnolence. Physical examination revealed altered mental status and right-sided weakness (N2).\n3. **Neurological Examination:** The patient's neurological examination showed signs of reduced mobility on the right side, accompanied by right facial paresis (N3).\n4. **Blood Gas Analysis and Brain CT Angiography:** Blood gas analysis showed no respiratory, metabolic, or electrolyte abnormalities, while brain CT angiography did not reveal any vascular lesions or thrombi in major vessels (N4).\n\n**Timeline of Treatments:**\n\n1. **Chemotherapy Premedication:** The patient received 4 mg intravenous ondansetron and 8 mg intravenous dexamethasone as premedication for chemotherapy.\n2. **Aspirin Administration:** Due to the suspicion of a transient ischemic event, a loading dose of 300 mg of aspirin was administered, followed by a daily dose of 100 mg of aspirin (N6).\n\n**Outcome:**\n\nThe patient gradually became more alert approximately one hour after the onset of symptoms and returned to his baseline mental status without any neurological deficits by one hour and thirty minutes after onset. The suspicion of a transient ischemic event as the primary cause of the symptoms was confirmed, and the patient's condition improved with the administration of aspirin.\n\n**Conclusion:**\n\nThis case highlights the importance of prompt recognition and management of acute neurological events in patients undergoing chemotherapy for cancer. Early intervention with aspirin may have contributed to the patient's rapid recovery from a suspected transient ischemic event. Further evaluation and monitoring are necessary to ensure that this patient does not experience any further complications related to his cancer treatment or underlying medical conditions.", + "bertscore": { + "precision": 0.8510310649871826, + "recall": 0.847151517868042, + "f1": 0.8490868806838989 + }, + "bleu": 0.09920424446993878, + "rouge1": 0.45546218487394957, + "rougeL": 0.2638655462184874, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 6, + "edge_count": 5, + "avg_in_degree": 0.8333333333333334, + "density": 0.16666666666666666 + }, + "trajectory_embedding": [ + 0.045807287096977234, + 0.11770268529653549, + -0.03572636470198631, + 0.021092357113957405, + 0.07645720988512039, + 0.007500001695007086, + 0.008010799996554852, + 0.14289645850658417, + 0.3722045123577118, + -0.33858588337898254, + -0.3850763738155365, + 0.18912379443645477, + -0.6559848189353943, + -0.16191299259662628, + -0.20137447118759155, + 0.0759354755282402, + 0.2702353894710541, + 0.16936542093753815, + 0.07835409790277481, + -0.3299759030342102, + -0.18143773078918457, + 0.11674398928880692, + -0.3384394347667694, + -0.17969034612178802, + 0.04424552246928215, + 0.19640791416168213, + 0.24683980643749237, + 0.49727484583854675, + 0.19678841531276703, + 0.1909312754869461, + 0.11201261729001999, + 0.19997799396514893, + -0.3539782464504242, + 0.11559206992387772, + -0.031568095088005066, + 0.408315509557724, + 0.19176192581653595, + 0.12137612700462341, + -0.03553854301571846, + -0.0301413144916296, + -0.1159721240401268, + 0.16482952237129211, + 0.595913827419281, + 0.42103350162506104, + 0.42424169182777405, + -0.825439989566803, + 0.08158329874277115, + 0.5744253993034363, + -0.3093647360801697, + -0.08049822598695755, + 0.21942491829395294, + 0.7388144135475159, + 0.6383765339851379, + 0.03873066231608391, + 0.5087663531303406, + 0.0825551226735115, + -0.3178311288356781, + -0.266065388917923, + -0.09997441619634628, + 0.12857599556446075, + -0.02170816995203495, + -0.07240775972604752, + 0.1888861060142517, + 0.24537062644958496, + -0.16507436335086823, + -0.15687721967697144, + -0.08168644458055496, + 0.07287833839654922, + -0.04427901282906532, + -0.4269390404224396, + -0.22114895284175873, + -0.3795653283596039, + -0.21332170069217682, + -0.022721821442246437, + 0.2507433593273163, + -0.1632072478532791, + 0.32238805294036865, + -0.13584774732589722, + -0.08217250555753708, + -0.1777264028787613, + 0.17538075149059296, + 0.17397461831569672, + -0.001024814904667437, + 0.10224354267120361, + -0.3581933081150055, + 0.23766402900218964, + -0.13690929114818573, + 0.11173954606056213, + -0.169885516166687, + 0.20873981714248657, + 0.06642169505357742, + -0.15311281383037567, + -0.011820261366665363, + -0.23973910510540009, + 0.1116490438580513, + -0.2871513068675995, + 0.17431245744228363, + 0.41358256340026855, + 0.9696435928344727, + -0.033063702285289764, + 0.27619078755378723, + 0.08359523862600327, + 0.36440756916999817, + -0.1718911975622177, + 0.6718617081642151, + -0.20658451318740845, + 0.16106708347797394, + -0.6716086864471436, + -0.282492071390152, + 0.18218117952346802, + -0.055064912885427475, + -0.3005070686340332, + 0.21839416027069092, + -0.43593910336494446, + -0.06691485643386841, + -0.013505811803042889, + -0.18712656199932098, + 0.04444829747080803, + -0.14876608550548553, + -0.31808018684387207, + 0.1609577238559723, + -0.17569458484649658, + 0.21265320479869843, + 0.30232834815979004, + -0.28047171235084534, + 0.14037325978279114, + -0.19971276819705963, + 0.3113831579685211, + 0.07889438420534134, + 0.21075396239757538, + -0.5272453427314758, + -0.0786275640130043, + -0.18754899501800537, + 0.4771214425563812, + 0.07079669088125229, + 0.10337550193071365, + -0.43884432315826416, + 0.27645444869995117, + -1.112174153327942, + 0.18329882621765137, + -0.24874530732631683, + -0.07672900706529617, + 0.17637914419174194, + -0.5260199308395386, + -0.23057429492473602, + -0.20318703353405, + -0.1930892914533615, + -0.0379716232419014, + 0.0071329474449157715, + -0.025361694395542145, + -0.2191867232322693, + -0.04551468417048454, + 0.31813332438468933, + 0.11107144504785538, + 0.07724209129810333, + 0.005266269668936729, + 0.17813818156719208, + 0.43489304184913635, + 0.2410293072462082, + -0.0921410322189331, + 0.11332813650369644, + 0.3278353214263916, + -0.14688603579998016, + -0.13512970507144928, + 0.251478374004364, + -0.6765346527099609, + 0.2792581617832184, + -0.2946648895740509, + 0.1759146898984909, + 0.038616348057985306, + -0.01827198825776577, + 0.1887245625257492, + -0.009888127446174622, + 0.5408356785774231, + 0.41578200459480286, + 0.45262014865875244, + 0.2340223342180252, + 0.010576675646007061, + 0.42736324667930603, + -0.09995642304420471, + 0.04484429955482483, + -0.07524427771568298, + 0.5264602303504944, + -0.009831699542701244, + -0.06505990773439407, + 0.2181854248046875, + 0.053839679807424545, + 0.06986883282661438, + -0.21507632732391357, + -0.13911765813827515, + 0.49655628204345703, + -0.33767402172088623, + 0.22505827248096466, + -0.31729987263679504, + -0.056519728153944016, + 0.09553543478250504, + -0.27626949548721313, + -0.2180691510438919, + -0.008334065787494183, + -0.07525476068258286, + 0.21599239110946655, + -0.03826938569545746, + -0.17923204600811005, + 0.19359922409057617, + 0.07805749028921127, + -0.1676754355430603, + 0.28698623180389404, + 0.02617894671857357, + -0.08517620712518692, + -0.16556791961193085, + -0.2392870932817459, + 0.2431897670030594, + -0.09607527405023575, + 0.1559644639492035, + 0.0509478785097599, + -0.19185946881771088, + 0.10511285066604614, + 0.03735724836587906, + -0.11670611053705215, + 0.1444745808839798, + -0.014770898036658764, + 0.15270490944385529, + 0.19065403938293457, + -0.13778145611286163, + -0.1578330397605896, + 0.30939483642578125, + 0.20108662545681, + 0.32657045125961304, + 0.07512149959802628, + -0.07247340679168701, + 0.15850992500782013, + -0.4860957860946655, + 0.04784030094742775, + -0.21473844349384308, + -0.201835036277771, + -0.47435662150382996, + 0.13540154695510864, + -0.04352383688092232, + -0.0712183266878128, + 0.24528361856937408, + -0.045626137405633926, + -0.09772226214408875, + 0.27391868829727173, + -0.07962411642074585, + -0.020101651549339294, + -0.4095834195613861, + -0.004720285534858704, + 0.4269004166126251, + 0.17443300783634186, + 0.22078071534633636, + -0.00587116414681077, + 0.0842377170920372, + 0.26104435324668884, + -0.1987699419260025, + -0.05484320595860481, + -0.4986896812915802, + -0.22078990936279297, + 0.1685221642255783, + -0.05971812829375267, + 0.06834506243467331, + 0.1094297245144844, + -0.14885027706623077, + 0.19028140604496002, + -0.04543418064713478, + -0.1554095447063446, + -0.14318221807479858, + 0.04609036445617676, + 0.07446836680173874, + 0.042161956429481506, + -0.10644064098596573, + -0.035189539194107056, + 0.04036230966448784, + -0.10374176502227783, + 0.12326893955469131, + 0.10584583133459091, + 0.143638014793396, + 0.04855826497077942, + 0.05617004632949829, + 0.21348953247070312, + -0.4096660614013672, + -0.5108349919319153, + 0.479423850774765, + -0.3253072500228882, + 0.5201472640037537, + -0.13545110821723938, + 0.22627592086791992, + 0.371024489402771, + -0.19324658811092377, + 0.01853490062057972, + 0.19200026988983154, + 0.45755982398986816, + 0.10106930881738663, + -0.02922132797539234, + -0.032825764268636703, + -0.033041033893823624, + 0.06723950058221817, + -0.47247323393821716, + 0.43418288230895996, + -0.19741666316986084, + -0.0027700464706867933, + 0.1406158059835434, + 0.16028419137001038, + 0.03392818197607994, + -0.36659908294677734, + -0.13780824840068817, + 0.48312613368034363, + 0.018238360062241554, + 0.08293566852807999, + 0.0590650774538517, + 0.38490214943885803, + 0.7467427253723145, + 0.02574780583381653, + -0.2764786183834076, + -0.11286959797143936, + -0.23064981400966644, + -0.25624313950538635, + 0.02088029868900776, + 0.08916089683771133, + 0.18534095585346222, + -0.009047550149261951, + -0.1779106855392456, + 0.3416960537433624, + -0.2659137547016144, + -0.198065385222435, + -0.02053266204893589, + 0.006016825791448355, + 0.10181015729904175, + -0.08950414508581161, + 0.24835817515850067, + -0.27386221289634705, + -0.0984625443816185, + 0.3747667074203491, + -0.23240776360034943, + -0.3240988552570343, + 0.22793002426624298, + 0.06194997951388359, + -0.6331691741943359, + 0.2460654228925705, + -0.10044597834348679, + -0.08023614436388016, + 0.11951855570077896, + -0.009397647343575954, + -0.1930791139602661, + -0.31534865498542786, + 0.16545869410037994, + 0.06166355311870575, + -0.023651519790291786, + -0.05672217532992363, + -0.060841742902994156, + 0.11141743510961533, + 0.44699594378471375, + 0.20271320641040802, + 0.1312423199415207, + 0.2800409495830536, + -0.23160766065120697, + -0.260114848613739, + -0.2224413901567459, + 0.006538711953908205, + 0.044628530740737915, + -0.31662631034851074, + -0.2851118743419647, + -0.1803547590970993, + 0.08842998743057251, + 0.35940292477607727, + -0.23928220570087433, + -0.10435357689857483, + 0.24953393638134003, + -0.045280229300260544, + -0.11500551551580429, + 0.32683178782463074, + 0.27548274397850037, + 0.002886255504563451, + 0.5633960366249084, + 0.03968578204512596, + -0.10894442349672318, + -0.033160533756017685, + -0.11194396018981934, + 0.28863832354545593, + -0.23651070892810822, + -0.4654752016067505, + -0.418099969625473, + 0.013085191138088703, + -0.2764267325401306, + -0.22765354812145233, + -0.06392227858304977, + -0.15067128837108612, + 0.10199207067489624, + 0.09312397241592407, + 0.19613100588321686, + 0.10900219529867172, + 0.17412912845611572, + -0.0817377045750618, + 0.4398547112941742, + -0.08249333500862122, + -0.2312345653772354, + 0.08181030303239822, + -0.06795352697372437, + 0.18233443796634674, + -0.0873120129108429, + -0.13699525594711304, + 0.003160859225317836, + 0.3276028335094452, + -0.09173407405614853, + -0.15781940519809723, + -0.13528122007846832, + -0.0024451911449432373, + -0.19121749699115753, + -0.33213579654693604, + -0.08850429207086563, + -0.1823796033859253, + -0.17562620341777802, + -0.11567753553390503, + 0.012981097213923931, + 0.05055880546569824, + -0.23257751762866974, + -0.012304077856242657, + 0.25431469082832336, + 0.28051188588142395, + 0.03017864190042019, + 0.27644675970077515, + 0.23462329804897308, + 0.062029119580984116, + 0.2311794012784958, + -0.08465990424156189, + 0.0925050750374794, + 0.06931477785110474, + -0.45069578289985657, + 0.02485833130776882, + 0.020732318982481956, + 0.11114931106567383, + -0.05347574129700661, + 0.04294453561306, + 0.3005938231945038, + 0.017919473350048065, + 0.0663289949297905, + 0.04522983357310295, + 0.054140884429216385, + -0.16539344191551208, + -0.08208431303501129, + 0.26937246322631836, + -0.10211315751075745, + 0.3584200143814087, + -0.04590592905879021, + -0.28549644351005554, + -0.24206280708312988, + -0.019471677020192146, + -0.3255821764469147, + 0.16466781497001648, + -0.044800933450460434, + -0.39803001284599304, + -0.049368929117918015, + 0.207502543926239, + -0.05322727560997009, + 0.06965098530054092, + 0.2017693966627121, + 0.1949002742767334, + 0.20946061611175537, + -0.2025788575410843, + -0.37732183933258057, + 0.0778084471821785, + -0.22756178677082062, + -0.3567558825016022, + -0.2655130922794342, + 0.3932616710662842, + 0.36519065499305725, + -0.12031441181898117, + -0.02142954431474209, + -0.023034000769257545, + -0.21062660217285156, + -0.516217052936554, + -0.07920899242162704, + -0.1171727403998375, + 0.5185403227806091, + 0.006964618805795908, + -0.21098293364048004, + 0.06525247544050217, + -0.29541918635368347, + 0.1513662487268448, + 0.36459028720855713, + -0.0002842073736246675, + 0.2876196801662445, + 0.33813175559043884, + 0.15945278108119965, + 0.2714601755142212, + 0.25497451424598694, + 0.015865279361605644, + 0.15562516450881958, + -0.03303305432200432, + 0.36623916029930115, + -0.08988836407661438, + -0.031013989821076393, + 0.30426153540611267, + -0.18487049639225006, + 0.31742721796035767, + 0.10855990648269653, + 0.3368889391422272, + -0.3676564693450928, + -0.30894598364830017, + -0.11257509142160416, + -0.2964707612991333, + -0.15796317160129547, + -0.26654598116874695, + 0.07596386969089508, + 0.14172467589378357, + -0.03332973271608353, + -0.02233228273689747, + 0.10226302593946457, + 0.06007678434252739, + 0.12070644646883011, + -0.09412562847137451, + -0.1100994125008583, + -0.5099721550941467, + -0.017193228006362915, + 0.4679844081401825, + -0.09347512573003769, + -0.27180421352386475, + -0.054054439067840576, + 0.1782311052083969, + 0.3806983530521393, + -0.03514458239078522, + -0.12807129323482513, + -0.11974363774061203, + -0.028948253020644188, + -0.03484257683157921, + 0.16952501237392426, + -0.08431141823530197, + 0.2805462181568146, + -0.3047405779361725, + 0.09282463043928146, + -0.08384589105844498, + -0.3484751284122467, + 0.21448807418346405, + -0.3169567286968231, + -0.589252769947052, + 0.19485588371753693, + 0.32439231872558594, + 0.187123641371727, + 0.03689095005393028, + 0.16865180432796478, + 0.5078623294830322, + 0.04753690958023071, + -0.08345508575439453, + -0.02967919409275055, + -0.39215484261512756, + 0.23056809604167938, + 0.006667591631412506, + -0.18089079856872559, + 0.14338625967502594, + -0.09725946187973022, + 0.3044348359107971, + 0.29591554403305054, + -0.08778408169746399, + -0.4849074184894562, + 0.18375559151172638, + 0.1615869551897049, + 0.4971350133419037, + -0.3819853365421295, + -10.784584999084473, + 0.07432346791028976, + -0.13066285848617554, + 0.40988993644714355, + -0.22827774286270142, + 0.08938691765069962, + -0.08332996815443039, + -0.07639814913272858, + -0.03603735566139221, + 0.07136651128530502, + -0.36214983463287354, + 0.08152792602777481, + 0.34609243273735046, + 0.19340276718139648, + 0.061928629875183105, + -0.0696096122264862, + -0.2490527182817459, + 0.32531896233558655, + 0.12854351103305817, + 0.49040746688842773, + 0.06591958552598953, + 0.3692816197872162, + -0.08876323699951172, + 0.3140319585800171, + 0.05634321644902229, + -0.24968500435352325, + -0.07500339299440384, + 0.45240119099617004, + -0.04083656147122383, + -0.46719929575920105, + 0.14255836606025696, + 0.16099637746810913, + -0.267530232667923, + -0.17878036201000214, + 0.023350156843662262, + -0.526637613773346, + -0.15053056180477142, + -0.006377881858497858, + 0.10716927796602249, + -0.0432642437517643, + 0.1161072850227356, + -0.1319752186536789, + -0.1061578020453453, + 0.38084712624549866, + -0.15933924913406372, + -0.629843533039093, + -0.14984317123889923, + -1.410626769065857, + 0.09585443884134293, + 0.4477544128894806, + 0.6733363270759583, + 0.06669875234365463, + 0.03272247314453125, + 0.10794716328382492, + -0.29961487650871277, + 0.3287826180458069, + -0.29620227217674255, + -0.004936398472636938, + 0.12386378645896912, + -0.09463632851839066, + 0.08716341853141785, + -0.08781584352254868, + 0.35632118582725525, + -0.4679558575153351, + -0.39591240882873535, + 0.12213527411222458, + -0.020555978640913963, + -0.08689723163843155, + -0.307513952255249, + -0.29978108406066895, + -0.35751625895500183, + -0.1426488161087036, + 0.01914580725133419, + 0.2691231071949005, + 0.5876139402389526, + 0.08908075094223022, + -0.5416000485420227, + 0.21136508882045746, + -0.23498564958572388, + 0.33110347390174866, + 0.06713372468948364, + -0.041269127279520035, + 0.03301684930920601, + -0.021819211542606354, + 0.031122028827667236, + -0.2836107909679413, + 0.11273357272148132, + 0.3210299611091614, + 0.01933843456208706, + 0.14997528493404388, + 0.00876593217253685, + 0.16449572145938873, + -0.08006290346384048, + -0.0046418956480920315, + -0.4767606258392334, + -0.057115111500024796, + -0.07196276634931564, + -0.10607392340898514, + 0.12266042828559875, + 0.17111603915691376, + -0.2426711767911911, + 0.12196645885705948, + -0.1711072325706482, + -0.26344406604766846, + -0.1831149309873581, + 0.3596714735031128, + 0.13474994897842407, + 0.09868946671485901, + 0.30858659744262695, + 0.07065614312887192, + 0.38284948468208313, + 0.10573241859674454, + 0.2893829345703125, + 0.41628849506378174, + 0.08404768258333206, + 0.037672948092222214, + -0.3271804451942444, + -0.16851353645324707, + -0.165676087141037, + 0.2403445988893509, + 0.3940105736255646, + -0.1632397472858429, + 0.1272577941417694, + 0.37807798385620117, + -0.03602704033255577, + 0.03403973579406738, + 0.9958648085594177, + -0.26264798641204834, + 0.4271481931209564, + -0.19224387407302856, + 0.2388107180595398, + -0.08013186603784561, + -0.17183659970760345, + 0.036771662533283234, + 0.2687005400657654, + -0.4412323534488678, + 0.25463226437568665, + 0.11078793555498123, + -0.3571939766407013, + 0.12838415801525116, + -0.32131707668304443, + 0.3560607433319092, + 0.37096476554870605, + 0.27762413024902344, + -0.06758014112710953, + -0.30936291813850403, + -0.22267447412014008, + 0.16040579974651337, + -0.5422574877738953, + -0.07723230868577957, + -0.10878738015890121, + -0.06900815665721893, + -0.059842485934495926, + -0.35485151410102844, + 0.23085857927799225, + -0.12131821364164352, + -0.0851445123553276, + -0.13702623546123505, + -0.4343409240245819, + -0.02115156687796116, + -0.1245972290635109, + 0.39238253235816956, + 0.0768936276435852, + -0.012623813934624195, + -0.039749037474393845, + 0.4451514780521393, + -0.03305370733141899, + 0.16015847027301788, + -0.03553462401032448, + 0.23680870234966278, + -0.46492233872413635, + -0.01829594559967518, + 0.13811343908309937, + -0.4061249792575836, + -0.26684466004371643, + -0.432390958070755, + 0.21755091845989227, + 0.13445784151554108, + -0.14616286754608154, + 0.4630083739757538, + 0.383459210395813, + 0.050667840987443924, + 0.0938803181052208, + -0.20945651829242706, + 0.3067765533924103, + -0.005457527935504913, + 0.14412924647331238, + 0.22710393369197845, + -0.27725207805633545, + -0.32695698738098145, + -0.3887687027454376, + 0.11401631683111191, + -0.2862842381000519, + -0.09186277538537979, + -0.01145879179239273, + 0.18655572831630707, + -0.18580882251262665, + 0.10415151715278625, + -0.3394136130809784, + -0.04606887698173523, + -0.09992384165525436, + 0.08843109756708145, + 0.31171372532844543, + -0.37404143810272217, + 0.04647715017199516, + -0.25522148609161377, + 0.2199818640947342, + 0.05082905292510986, + -0.3675343990325928, + 0.21184532344341278, + 0.1365559846162796 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_076.json b/src/benchmark/output/results/results_graph_076.json new file mode 100644 index 0000000..3e4cac0 --- /dev/null +++ b/src/benchmark/output/results/results_graph_076.json @@ -0,0 +1,792 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 37-year-old woman diagnosed with left lung adenocarcinoma in November 2019. She has extensive bone metastases (cT4N3M1c, stage IVB).\n\n**Timeline of Diagnoses and Treatments:**\n\n1. **November 2019:** The patient was diagnosed with left lung adenocarcinoma and had a baseline chest CT scan and head MRI performed.\n2. **December 2019:** Tumor tissue NGS revealed EGFR exon 18 p.G719S mutation and EGFR exon 20 p.S768I mutation, which led to the initiation of first-line afatinib treatment (40 mg daily po).\n3. **January 2020 - October 2020:** The patient experienced therapeutic failure after 10 months of afatinib treatment, as indicated by time to failure.\n4. **October 2020:** The patient developed new brain lesions and had a partial response on afatinib treatment (lung lesion stable disease, head lesions partial response).\n5. **February 2021:** The patient's brain lesions continued to deteriorate, leading to the reversion of third-line afatinib treatment.\n6. **February 2021:** The patient was switched to second-line osimertinib treatment (80 mg daily po).\n\n**Outcomes:**\n\n* Lung lesion stable disease (SD) at October 2020 and February 2021.\n* Head lesions partial response (PR) on afatinib treatment at October 2020 and February 2021.\n* Brain lesions deteriorated over time, with a new onset of symptoms in February 2021.\n\n**Medications:**\n\n* Afatinib (40 mg daily po): initiated in December 2019, experienced therapeutic failure after 10 months, and partially responsive to treatment at October 2020.\n* Osimertinib (80 mg daily po): started in February 2021 as a second-line treatment.\n\n**Imaging:**\n\n* Baseline chest CT scan and head MRI performed in November 2019.\n* Follow-up imaging not specified for each time point, but mentioned to be performed at October 2020 and February 2021.\n\nNote: The patient's timeline is based on the provided data, which may not be comprehensive or up-to-date.", + "bertscore": { + "precision": 0.8246598243713379, + "recall": 0.8222452402114868, + "f1": 0.8234508037567139 + }, + "bleu": 0.06299293132349305, + "rouge1": 0.42733397497593845, + "rougeL": 0.20789220404234843, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 6, + "edge_count": 5, + "avg_in_degree": 0.8333333333333334, + "density": 0.16666666666666666 + }, + "trajectory_embedding": [ + 0.23827679455280304, + 0.19383050501346588, + -0.3074941039085388, + 0.022699283435940742, + -0.1117713451385498, + 0.08163382858037949, + 0.16336341202259064, + 0.2284320592880249, + 0.4727567136287689, + -0.48018789291381836, + -0.17922638356685638, + 0.1761062890291214, + -0.5752786993980408, + -0.26775673031806946, + -0.2448425143957138, + 0.11222141981124878, + -0.026510274037718773, + 0.28753769397735596, + -0.13174520432949066, + -0.16616864502429962, + -0.2283923476934433, + 0.05737997591495514, + -0.35397660732269287, + -0.1248975396156311, + 0.09810677170753479, + 0.13049466907978058, + 0.2754243314266205, + 0.5482998490333557, + 0.17604190111160278, + 0.25324949622154236, + 0.38593244552612305, + 0.02705838531255722, + -0.15078306198120117, + 0.09797301143407822, + -0.20773859322071075, + 0.23861820995807648, + 0.28641024231910706, + 0.3107379376888275, + -0.09296360611915588, + -0.09835084527730942, + -0.1433781236410141, + 0.07524699717760086, + 0.78011155128479, + 0.20059669017791748, + 0.36591076850891113, + -0.7035710215568542, + 0.004147856030613184, + 0.6170968413352966, + -0.2732282876968384, + 0.02278464287519455, + 0.24261505901813507, + 0.5385316014289856, + 0.612238347530365, + -0.16031141579151154, + 0.3575305938720703, + -0.21200759708881378, + -0.2899843156337738, + -0.05277976766228676, + -0.04261234030127525, + 0.001894341199658811, + 0.05290482938289642, + -0.19629895687103271, + 0.240090012550354, + -0.08638229966163635, + -0.246315598487854, + -0.16833211481571198, + -0.239271342754364, + 0.13656902313232422, + 0.05970408022403717, + -0.29522469639778137, + -0.30052223801612854, + -0.4230187237262726, + -0.03623747453093529, + 0.24539999663829803, + 0.046417150646448135, + -0.17627276480197906, + 0.24379342794418335, + 0.03090083599090576, + 0.21856538951396942, + 0.06844562292098999, + 0.10070515424013138, + 0.02297864854335785, + 0.033781472593545914, + 0.18886268138885498, + -0.3648346960544586, + 0.15723097324371338, + -0.02727578766644001, + -0.20767347514629364, + -0.2654285728931427, + 0.30841436982154846, + 0.1980409026145935, + -0.4216786324977875, + 0.06747474521398544, + -0.11965957283973694, + -0.020126206800341606, + 0.061832696199417114, + 0.32162997126579285, + 0.30300042033195496, + 0.8911454081535339, + -0.03714946657419205, + 0.2522032558917999, + 0.07825726270675659, + 0.1833336353302002, + 0.06436900794506073, + 0.379732608795166, + -0.326210618019104, + 0.1718369573354721, + -0.3786802291870117, + 0.1216210126876831, + 0.5358230471611023, + 0.06706127524375916, + -0.13807742297649384, + 0.026261737570166588, + -0.31022170186042786, + 0.12481814622879028, + 0.07880108803510666, + -0.17353813350200653, + 0.22634130716323853, + 0.19617867469787598, + -0.4773015081882477, + -0.04363327845931053, + -0.19761033356189728, + 0.29919755458831787, + 0.2651759684085846, + -0.312110036611557, + -0.20090796053409576, + -0.02743689902126789, + 0.039075084030628204, + -0.03280032053589821, + 0.09062299132347107, + -0.35866498947143555, + -0.08795995265245438, + -0.0402611680328846, + 0.11945450305938721, + -0.07223264873027802, + 0.42689552903175354, + -0.49844980239868164, + 0.06586521118879318, + -1.060118317604065, + 0.2107294797897339, + -0.5224700570106506, + -0.02383153885602951, + 0.0010092133888974786, + -0.549434244632721, + -0.07599660009145737, + -0.13625043630599976, + -0.1650521606206894, + 0.2526179552078247, + -0.1384706348180771, + -0.02262040041387081, + -0.014829491265118122, + -0.16993677616119385, + 0.19162696599960327, + 0.3590554893016815, + -0.1217368021607399, + -0.011269618757069111, + 0.02524806372821331, + 0.34759363532066345, + 0.09698069840669632, + -0.12387923151254654, + 0.16090041399002075, + 0.5066038966178894, + -0.2184649556875229, + -0.06521037966012955, + 0.004006996750831604, + -0.656337559223175, + -0.09213676303625107, + -0.09536509960889816, + 0.181168794631958, + -3.571854904294014e-05, + -0.23346710205078125, + 0.2737833559513092, + -0.17373062670230865, + 0.5266119837760925, + 0.2703331708908081, + 0.4663962423801422, + 0.03587856888771057, + 0.01709422841668129, + 0.2607605457305908, + 0.08499119430780411, + 0.030362913385033607, + -0.07279767841100693, + 0.5984684228897095, + 0.18580321967601776, + -0.3127437233924866, + 0.1029241606593132, + 0.3040538728237152, + -0.11147192120552063, + -0.29046955704689026, + -0.1379408985376358, + 0.5362194776535034, + -0.18836070597171783, + 0.2764721214771271, + -0.24798683822155, + -0.06313785910606384, + -0.09634830802679062, + -0.1063026562333107, + -0.19674207270145416, + 0.028267016634345055, + -0.3050723075866699, + 0.14571696519851685, + 0.10303711146116257, + -0.3434045612812042, + 0.15377391874790192, + 0.20161239802837372, + -0.1426643282175064, + 0.08833193778991699, + 0.09128958731889725, + 0.057928454130887985, + -0.10151702165603638, + -0.18967902660369873, + 0.2443976253271103, + 0.011745641939342022, + 0.2861246168613434, + -0.007262446451932192, + -0.33451583981513977, + -0.1543598175048828, + -0.06315622478723526, + -0.050310712307691574, + 0.06104981526732445, + 0.0038887448608875275, + -0.08948274701833725, + 0.09850939363241196, + 0.04890972748398781, + -0.36560022830963135, + 0.16136130690574646, + 0.16882987320423126, + 0.2584773004055023, + 0.02724684774875641, + -0.1380205750465393, + -0.03179508075118065, + -0.1728607416152954, + 0.38502374291419983, + -0.08179805427789688, + -0.3234620988368988, + -0.3075498044490814, + 0.24709784984588623, + -0.011476606130599976, + -0.013557135127484798, + 0.42269715666770935, + -0.023010211065411568, + -0.11280085891485214, + 0.10046976804733276, + -0.202076256275177, + -0.05836661532521248, + -0.2695712745189667, + -0.10399019718170166, + 0.4278355836868286, + 0.20179863274097443, + 0.3021261692047119, + 0.11456140130758286, + -0.15060685575008392, + 0.12468696385622025, + -0.32081839442253113, + -0.42870327830314636, + -0.1741471290588379, + -0.10028757899999619, + -0.2288406938314438, + -0.490246444940567, + -0.07416433840990067, + 0.11537960916757584, + -0.19447587430477142, + 0.2010151892900467, + -0.3204379975795746, + -0.03378818929195404, + -0.1075812503695488, + -0.017441559582948685, + 0.09932020306587219, + -0.4088621139526367, + 0.07245766371488571, + -0.3610595464706421, + -0.19502733647823334, + -0.04854920133948326, + 0.01055243518203497, + 0.23597480356693268, + 0.20520442724227905, + -0.1007285937666893, + 0.17065422236919403, + 0.2868387699127197, + -0.5504851341247559, + -0.2683980166912079, + 0.11708105355501175, + -0.2751244604587555, + 0.23397918045520782, + -0.1560806781053543, + 0.20418113470077515, + 0.38233229517936707, + 0.12889455258846283, + 0.15180151164531708, + 0.34789881110191345, + 0.5347495675086975, + -0.09157653898000717, + -0.06969303637742996, + -0.01055761706084013, + -0.07495594769716263, + -0.04805253818631172, + -0.4226577579975128, + 0.15748365223407745, + -0.19419145584106445, + 0.0037715930957347155, + 0.0035321637988090515, + 0.1534736156463623, + 0.13046225905418396, + -0.315142959356308, + -0.08391523361206055, + 0.6381580233573914, + 0.0845278799533844, + 0.19986873865127563, + 0.07772208005189896, + 0.20112478733062744, + 0.5161496996879578, + -0.053612738847732544, + -0.12709742784500122, + 0.09074511379003525, + -0.2847677171230316, + -0.12185272574424744, + -0.0832335352897644, + 0.12799514830112457, + 0.31815770268440247, + -0.003989753779023886, + -0.16307155787944794, + 0.3751034736633301, + -0.13116158545017242, + -0.23640240728855133, + -0.08085393905639648, + -0.036249417811632156, + 0.11417465656995773, + -0.2432255744934082, + 0.16269807517528534, + -0.12650281190872192, + 0.048263851553201675, + 0.5234131813049316, + -0.33847692608833313, + -0.21068920195102692, + 0.20218396186828613, + -0.07551262527704239, + -0.3687446117401123, + 0.39088013768196106, + -0.1307496279478073, + 0.035130541771650314, + 0.2280704379081726, + -0.2663896083831787, + -0.045487258583307266, + -0.09461545944213867, + 0.23525656759738922, + -0.033148959279060364, + 0.17548994719982147, + -0.065199114382267, + 0.15917401015758514, + -0.13741353154182434, + 0.454095721244812, + 0.036522675305604935, + 0.0017640875885263085, + 0.39572057127952576, + 0.014464967884123325, + -0.23824095726013184, + 0.08686508983373642, + -0.11023706942796707, + 0.2427162081003189, + -0.2589390277862549, + -0.20971643924713135, + -0.2648310661315918, + 0.2665846645832062, + 0.08727061748504639, + -0.29877379536628723, + 0.19200725853443146, + -0.09347536414861679, + -0.09068822860717773, + -0.01262566540390253, + 0.22778479754924774, + 0.19346244633197784, + -0.0805535688996315, + 0.500500500202179, + 0.11900460720062256, + -0.08666285872459412, + 0.3616199493408203, + 0.0013142278185114264, + 0.27503451704978943, + -0.03687556833028793, + -0.26693302392959595, + -0.28157591819763184, + 0.1319924145936966, + -0.1641833633184433, + -0.11888476461172104, + 0.0020799387712031603, + -0.014306637458503246, + -0.14002352952957153, + -0.11141038686037064, + 0.15729904174804688, + -0.10911998897790909, + 0.10334336757659912, + -0.04004526510834694, + 0.41739794611930847, + -0.029898785054683685, + -0.2604459822177887, + 0.05580504611134529, + -0.006255663465708494, + 0.20598864555358887, + -0.3604949414730072, + 0.00875041913241148, + -0.06235986948013306, + 0.49740687012672424, + -0.1496560424566269, + 0.03303674980998039, + 0.0071773710660636425, + -0.1228853166103363, + -0.20660744607448578, + -0.27232107520103455, + 0.04186980798840523, + -0.10468286275863647, + -0.15697933733463287, + -0.04937216639518738, + 0.07219849526882172, + -0.0909268856048584, + -0.14083537459373474, + -0.018182728439569473, + 0.21466375887393951, + 0.20753483474254608, + 0.019511206075549126, + 0.15288442373275757, + 0.19375836849212646, + 0.1406347006559372, + 0.32268646359443665, + -0.21089236438274384, + 0.2705146074295044, + -0.009363668970763683, + -0.14061424136161804, + 0.026788724586367607, + 0.03640532121062279, + -0.30273959040641785, + 0.02521367371082306, + 0.14005766808986664, + 0.22278131544589996, + 0.004735744092613459, + -0.10149452835321426, + -0.05744875967502594, + 0.17576129734516144, + -0.31779733300209045, + -0.06905771046876907, + 0.47184911370277405, + -0.13301736116409302, + 0.244576096534729, + 0.19458036124706268, + -0.47640880942344666, + -0.1275714784860611, + -0.20870816707611084, + -0.3786466121673584, + 0.1351262778043747, + 0.15544787049293518, + 0.0037402112502604723, + 0.06931210309267044, + 0.0585038959980011, + 0.09448304772377014, + 0.02017739973962307, + 0.19778569042682648, + 0.040925707668066025, + 0.08659282326698303, + 0.06887143105268478, + -0.2927178144454956, + 0.06577499210834503, + -0.2871173322200775, + -0.35785040259361267, + -0.3076360523700714, + 0.22519391775131226, + -4.8731762944953516e-05, + -0.1346731036901474, + 0.05453641712665558, + -0.013205967843532562, + -0.2104175090789795, + -0.18275673687458038, + -0.009928501211106777, + -0.019398557022213936, + 0.5932345390319824, + 0.09169135242700577, + -0.1954777091741562, + 0.14180095493793488, + -0.05631763115525246, + -0.023510076105594635, + 0.30225956439971924, + 0.14967507123947144, + 0.31031396985054016, + 0.049463901668787, + 0.017285920679569244, + 0.40960320830345154, + 0.10816052556037903, + 0.06725604832172394, + 0.2638516128063202, + -0.03598957136273384, + 0.12339723110198975, + -0.0787513479590416, + -0.21330519020557404, + 0.43414950370788574, + -0.3668399155139923, + 0.018611179664731026, + 0.04072288051247597, + 0.27639228105545044, + -0.33493950963020325, + -0.19886840879917145, + -0.04608851671218872, + -0.0586431659758091, + -0.148858904838562, + -0.2269318699836731, + -0.22774334251880646, + -0.04927827790379524, + -0.222814679145813, + 0.007563702296465635, + 0.2533177435398102, + 0.40309882164001465, + 0.14567531645298004, + 0.10136713832616806, + -0.3357924520969391, + -0.35419750213623047, + 0.21702735126018524, + 0.34039148688316345, + 0.007884149439632893, + -0.10568678379058838, + -0.07729733735322952, + 0.23728637397289276, + 0.3348486125469208, + 0.11152873188257217, + -0.09791740775108337, + 0.046775396913290024, + -0.04576405510306358, + 0.03567689284682274, + 0.12494464963674545, + -0.10470893979072571, + -0.05517800152301788, + -0.47385916113853455, + 0.011056706309318542, + -0.11555882543325424, + -0.28675463795661926, + 0.13021652400493622, + -0.2633022367954254, + -0.521785318851471, + -0.01653568632900715, + 0.25446146726608276, + -0.0660158097743988, + -0.1931300312280655, + 0.1309727281332016, + 0.4767743647098541, + 0.053156301379203796, + -0.19031654298305511, + -0.007364729885011911, + -0.3377082347869873, + -0.07569721341133118, + 0.19164244830608368, + -0.06226549670100212, + 0.1750444769859314, + 0.04836896434426308, + 0.37478718161582947, + 0.3508851230144501, + 0.22481666505336761, + -0.42879995703697205, + 0.29197749495506287, + 0.354479044675827, + 0.2115197777748108, + -0.4128757417201996, + -10.943734169006348, + -0.05729388818144798, + -0.2507791817188263, + 0.40578493475914, + -0.10982594639062881, + 0.14948545396327972, + -0.035657476633787155, + -0.07036983966827393, + 0.06213514879345894, + 0.20859794318675995, + -0.26474031805992126, + 0.00902507919818163, + 0.2592955529689789, + 0.2484438568353653, + -0.0533563606441021, + 0.17193275690078735, + -0.24006696045398712, + 0.1390850692987442, + 0.05164804682135582, + 0.24255883693695068, + 0.0485161654651165, + 0.33334362506866455, + -0.25250157713890076, + 0.20343182981014252, + 0.06583064049482346, + -0.26805463433265686, + -0.31305578351020813, + 0.3719705045223236, + 0.06861823797225952, + -0.38839492201805115, + 0.19481457769870758, + -0.005363086704164743, + -0.005480388645082712, + -0.08960574865341187, + -0.08657622337341309, + -0.21099726855754852, + -0.13326576352119446, + 0.03981168195605278, + -0.0796785056591034, + -0.20723004639148712, + 0.083144411444664, + -0.1726781576871872, + 0.2685622274875641, + 0.22117920219898224, + -0.06871628761291504, + -0.47652265429496765, + -0.2003326267004013, + -1.5943797826766968, + 0.24705785512924194, + 0.17785973846912384, + 0.5524916648864746, + 0.011432387866079807, + 0.2053167074918747, + 0.20437519252300262, + -0.320361852645874, + -0.0882052481174469, + -0.27516815066337585, + 0.09215494245290756, + 0.06625693291425705, + -0.1008252501487732, + 0.11732197552919388, + 0.0059815868735313416, + 0.5044061541557312, + -0.2398584634065628, + -0.19111891090869904, + 0.20792479813098907, + -0.10610423237085342, + 0.08218506723642349, + -0.1596282422542572, + -0.3775855302810669, + -0.4835216999053955, + -0.019602349027991295, + 0.029715919867157936, + 0.1211496964097023, + 0.49409905076026917, + -0.03614509478211403, + -0.39977946877479553, + 0.18927331268787384, + 0.07952244579792023, + 0.2743697464466095, + 0.235004261136055, + -0.05651728808879852, + -0.008346005342900753, + -0.03986770287156105, + 0.03933858498930931, + -0.1566717028617859, + 0.033127311617136, + 0.3307221233844757, + -0.05544814094901085, + -0.0784774199128151, + -0.038103461265563965, + 0.33608993887901306, + -0.1196669414639473, + -0.2691238820552826, + -0.4948171079158783, + 0.04511487856507301, + -0.05143973231315613, + 0.034892741590738297, + 0.030007528141140938, + 0.0906679630279541, + -0.16117911040782928, + -0.054543137550354004, + -0.07662104815244675, + -0.5650389790534973, + -0.2986502945423126, + 0.4416470527648926, + 0.2973870038986206, + 0.10707498341798782, + 0.025166520848870277, + 0.08520689606666565, + -0.12716203927993774, + -0.060971006751060486, + 0.3781185448169708, + 0.5010175108909607, + 0.2670290172100067, + 0.06372016668319702, + -0.050673726946115494, + -0.06312360614538193, + -0.2566622793674469, + -0.04676256701350212, + 0.4391810894012451, + 0.060142237693071365, + 0.26652204990386963, + 0.44227495789527893, + 0.09132727235555649, + -0.1420161873102188, + 0.7933509945869446, + -0.25437524914741516, + 0.16183561086654663, + -0.022979838773608208, + 0.2906959056854248, + -0.07331342250108719, + -0.298669695854187, + 0.10622362047433853, + 0.35206833481788635, + -0.3475235402584076, + 0.6022205948829651, + 0.07010727375745773, + -0.31871703267097473, + -0.11529938131570816, + -0.22900517284870148, + 0.3383882939815521, + 0.21599525213241577, + 0.2684257924556732, + -0.2317115217447281, + -0.30861538648605347, + -0.22270362079143524, + 0.35290732979774475, + -0.204167440533638, + -0.313772052526474, + -0.09073493629693985, + 0.07836584746837616, + -0.12624867260456085, + -0.2130827158689499, + 0.1985190361738205, + 0.13588394224643707, + -0.09622285515069962, + -0.19318430125713348, + -0.35954248905181885, + -0.22423122823238373, + 0.13571950793266296, + 0.634863555431366, + 0.22830449044704437, + -0.1395283192396164, + -0.06030825898051262, + 0.24075627326965332, + -0.08418592065572739, + 0.0645587369799614, + 0.098998062312603, + -0.08312030881643295, + -0.38061216473579407, + 0.2246633768081665, + 0.056326691061258316, + -0.37183383107185364, + -0.0995800718665123, + -0.3492063581943512, + -0.010427403263747692, + 0.03626984730362892, + -0.2471179962158203, + 0.35784968733787537, + 0.2236282080411911, + 0.05103149637579918, + 0.1038864478468895, + -0.21317404508590698, + 0.034050751477479935, + 0.2734452784061432, + 0.3848705291748047, + -0.016803694888949394, + -0.1745295375585556, + -0.39672836661338806, + -0.47388410568237305, + 0.1805296093225479, + -0.3081200420856476, + -0.008426097221672535, + 0.22735898196697235, + 0.12968361377716064, + -0.2141256183385849, + 0.13192060589790344, + -0.2130144089460373, + -0.0985049232840538, + -0.24702554941177368, + 0.1737651228904724, + 0.4471312463283539, + -0.34420982003211975, + 0.2605140507221222, + -0.09364992380142212, + 0.4649883210659027, + 0.34544655680656433, + -0.21542488038539886, + 0.10511022061109543, + -0.1617775410413742 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_077.json b/src/benchmark/output/results/results_graph_077.json new file mode 100644 index 0000000..6e8a524 --- /dev/null +++ b/src/benchmark/output/results/results_graph_077.json @@ -0,0 +1,792 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 66-year-old man who presented with persistent respiratory symptoms, including cough, sputum, chest tightness, and pain, for approximately 1 month. He received cefaclor and azithromycin at a local clinic without significant alleviation of his symptoms.\n\n**Timeline of Diagnoses:**\n\n1. **Step 1 (September 2023):**\nThe patient was initially evaluated in an outpatient setting with persistent respiratory symptoms. A chest X-ray revealed a space-occupying mass in the left lung, prompting hospitalization on September 10, 2023.\n2. **Step 2 (September 10, 2023):**\nUpon admission, laboratory investigations were normal, and CT imaging demonstrated irregularly shaped soft tissue masses in both the upper and lower lobes of the left lung.\n3. **Step 3 (September 11-12, 2023):**\nFurther characterization of the lung mass was performed through additional CT imaging, which showed an oval mass in the lower lobe of the lung measuring approximately 2.3 cm x 1.7 cm with lobulated and spiculated margins.\n4. **Step 4 (September 13-14, 2023):**\nPET-CT imaging revealed high-density lesions in both the upper and lower lobes of the left lung, with increased glucose metabolism. Multiple enlarged lymph nodes were detected in the mediastinum and interlobular spaces.\n\n**Treatments:**\n\n1. **Step 1 (September 2023):**\nThe patient received cefaclor and azithromycin at a local clinic.\n2. **Step 2-4 (September 10-14, 2023):**\nNo specific treatments were mentioned in the provided data.\n\n**Outcomes:**\n\n1. **Imaging:** The initial chest X-ray revealed a space-occupying mass in the left lung, which was later characterized through additional imaging studies.\n2. **Laboratory Investigations:** Normal laboratory results were reported during hospitalization.\n3. **PET-CT Imaging:** High-density lesions with increased glucose metabolism were detected in both the upper and lower lobes of the left lung.\n\n**Conclusion:**\nThe patient's clinical presentation and diagnostic timeline suggest a complex respiratory condition, potentially related to malignancy or other pathologies. Further investigation and characterization are necessary to determine the underlying cause and develop an effective treatment plan.", + "bertscore": { + "precision": 0.7074882388114929, + "recall": 0.7944755554199219, + "f1": 0.7484629154205322 + }, + "bleu": 0.10824027121706958, + "rouge1": 0.3758389261744966, + "rougeL": 0.2818791946308725, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 4, + "edge_count": 3, + "avg_in_degree": 0.75, + "density": 0.25 + }, + "trajectory_embedding": [ + 0.28606685996055603, + 0.19629862904548645, + -0.1704561412334442, + 0.05046887323260307, + 0.02108978107571602, + -0.05829715356230736, + -0.002245333045721054, + 0.13291165232658386, + 0.2349492609500885, + -0.29417815804481506, + -0.1785058230161667, + 0.17046767473220825, + -0.6892815232276917, + -0.1641303449869156, + -0.12110166251659393, + -0.009564938955008984, + 0.20506024360656738, + 0.19735971093177795, + -0.06371694803237915, + -0.168881356716156, + -0.41785648465156555, + 0.1446683406829834, + -0.34754589200019836, + -0.12143974751234055, + 0.19943948090076447, + -0.11634601652622223, + 0.20133116841316223, + 0.4066394567489624, + 0.1798296570777893, + 0.2901723384857178, + 0.15701924264431, + 0.17261850833892822, + -0.28471100330352783, + 0.043912891298532486, + -0.01824628934264183, + 0.39242038130760193, + 0.2999846637248993, + 0.4059707522392273, + -0.0009173145517706871, + 0.028525274246931076, + -0.019805196672677994, + 0.06979569792747498, + 0.8095908761024475, + 0.40700992941856384, + 0.5914306640625, + -0.6786153316497803, + -0.09830516576766968, + 0.3571213185787201, + -0.5512141585350037, + -0.14503896236419678, + 0.3630041480064392, + 0.7878065705299377, + 0.6123318076133728, + 0.03371438384056091, + 0.5765873789787292, + -0.0640755146741867, + -0.28928911685943604, + -0.1567484438419342, + -0.37792763113975525, + 0.1678239405155182, + -0.17291393876075745, + -0.05864691361784935, + 0.08173887431621552, + 0.12520043551921844, + -0.2564089000225067, + -0.07728845626115799, + -0.21699613332748413, + -0.05495607480406761, + -0.1491466909646988, + -0.3501957952976227, + -0.32962435483932495, + -0.20398621261119843, + -0.13638442754745483, + 0.059259478002786636, + 0.2011043131351471, + -0.2829757630825043, + 0.20064125955104828, + -0.05215670168399811, + -0.08033516258001328, + -0.0018166601657867432, + -0.038232576102018356, + 0.12476839125156403, + 0.177750363945961, + 0.172443687915802, + -0.3024919033050537, + 0.14695730805397034, + -0.1317208707332611, + -0.1699632704257965, + -0.19738131761550903, + 0.1700049638748169, + -0.0034266039729118347, + -0.18103933334350586, + 0.03591066226363182, + -0.159166619181633, + 0.08757392317056656, + -0.2176816761493683, + 0.21160346269607544, + 0.5036696195602417, + 1.0377775430679321, + -0.1700681746006012, + 0.31139636039733887, + 0.3032952547073364, + 0.2098039984703064, + -0.11058178544044495, + 0.5221318602561951, + 0.06838042289018631, + 0.3081011176109314, + -0.6443921327590942, + -0.03846201300621033, + 0.3459491729736328, + -0.0747748613357544, + -0.18894332647323608, + 0.16755911707878113, + -0.43337664008140564, + 0.032294947654008865, + 0.13194766640663147, + -0.2418166697025299, + 0.0026704873889684677, + -0.15550586581230164, + -0.37391942739486694, + 0.15865842998027802, + -0.1404341608285904, + 0.2971459627151489, + 0.3584194779396057, + -0.4447707235813141, + -0.02101503685116768, + -0.1586252748966217, + 0.08740537613630295, + -0.010801387950778008, + 0.20346030592918396, + -0.4284203350543976, + -0.034719426184892654, + 0.04530620574951172, + 0.32328715920448303, + -0.15784144401550293, + 0.33654287457466125, + -0.4054098427295685, + 0.26389631628990173, + -1.2855446338653564, + 0.21219593286514282, + -0.39983999729156494, + -0.15384645760059357, + -0.04526066035032272, + -0.5079841017723083, + -0.26107659935951233, + -0.1370515078306198, + -0.2692130506038666, + 0.08586348593235016, + -0.0825556069612503, + -0.19149133563041687, + -0.1884382665157318, + 0.14856082201004028, + 0.25330406427383423, + 0.1584334671497345, + 0.22645211219787598, + 0.2041165679693222, + 0.1547349989414215, + 0.428128719329834, + 0.10280472040176392, + -0.09783235192298889, + -0.06509645283222198, + 0.28199297189712524, + -0.044215571135282516, + -0.19037151336669922, + 0.2109173834323883, + -0.8558968305587769, + 0.19494667649269104, + -0.12928329408168793, + 0.34601739048957825, + 0.12390577793121338, + -0.10118449479341507, + 0.20150896906852722, + -0.24660973250865936, + 0.5307393074035645, + 0.3035988211631775, + 0.6282746195793152, + 0.11016793549060822, + -0.018224507570266724, + 0.2186698615550995, + 0.23973889648914337, + 0.12388400733470917, + 0.032403066754341125, + 0.5895467400550842, + 0.22763067483901978, + -0.22540611028671265, + 0.2786703109741211, + 0.3384469151496887, + -0.2813228964805603, + -0.21484513580799103, + -0.1265110969543457, + 0.3004475235939026, + -0.23478037118911743, + 0.2502119243144989, + -0.4079107344150543, + 0.053726162761449814, + 0.0010094530880451202, + -0.3698914051055908, + -0.2103906124830246, + 0.14945241808891296, + -0.08980578929185867, + 0.2633441090583801, + 0.2107224017381668, + 0.061378657817840576, + 0.019323576241731644, + 0.03183364123106003, + -0.0974017009139061, + 0.2610115110874176, + 0.07986023277044296, + -0.01299683004617691, + -0.16036772727966309, + -0.002836895640939474, + 0.2015661746263504, + -0.007435724139213562, + 0.24711596965789795, + 0.015341505408287048, + -0.20637010037899017, + 0.24460408091545105, + -0.15150412917137146, + -0.1956862509250641, + 0.1892034411430359, + -0.16236916184425354, + -0.009086658246815205, + 0.4182066321372986, + -0.2144671380519867, + -0.15854772925376892, + 0.2057098150253296, + 0.19270478188991547, + 0.1443856954574585, + 0.09909569472074509, + -0.13023169338703156, + 0.16440939903259277, + -0.3449779152870178, + 0.1495196521282196, + 0.072191521525383, + -0.06278046220541, + -0.4180295467376709, + 0.044120293110609055, + -0.272815465927124, + -0.26147881150245667, + 0.31484854221343994, + -0.1916094571352005, + -0.05277404934167862, + -0.028660794720053673, + -0.1563258022069931, + -0.009956661611795425, + -0.38037124276161194, + 0.19271349906921387, + 0.2520340383052826, + 0.08303866535425186, + 0.4050411581993103, + 0.06510885059833527, + -0.13605070114135742, + 0.17259937524795532, + -0.4075334370136261, + -0.2840030789375305, + -0.28374770283699036, + -0.17928460240364075, + -0.06931274384260178, + -0.3282749056816101, + 0.1682906150817871, + 0.09378291666507721, + -0.11442618817090988, + 0.06828175485134125, + -0.33794358372688293, + -0.10933859646320343, + -0.0678621158003807, + -0.07116129994392395, + 0.1972588449716568, + 0.08762378990650177, + 0.0905664935708046, + -0.29154253005981445, + -0.2384873926639557, + -0.10114308446645737, + 0.015061281621456146, + 0.24454283714294434, + 0.10528075695037842, + -0.05971674993634224, + 0.07000371813774109, + 0.21128804981708527, + -0.5556223392486572, + -0.42226433753967285, + 0.1980648636817932, + -0.27930817008018494, + 0.3384021520614624, + -0.27251943945884705, + 0.27813225984573364, + 0.3490510582923889, + -0.07427588105201721, + 0.21714673936367035, + 0.5519065856933594, + 0.4834636449813843, + 0.04654815047979355, + -0.09818444401025772, + -0.11124028265476227, + -0.0033403001725673676, + -0.20703110098838806, + -0.3931959271430969, + 0.20898494124412537, + 0.0013197250664234161, + 0.003877289593219757, + 0.14543350040912628, + 0.07703478634357452, + 0.027768932282924652, + -0.6377753019332886, + -0.21562431752681732, + 0.490933895111084, + 0.14342001080513, + -0.019270319491624832, + -0.0968414694070816, + 0.45529162883758545, + 0.7304180860519409, + 0.043459534645080566, + -0.17168158292770386, + -0.06118766963481903, + 0.005051393061876297, + -0.09399973601102829, + -0.13365438580513, + -0.036810047924518585, + 0.18105335533618927, + -0.16371938586235046, + -0.1534590870141983, + 0.526409387588501, + -0.161090686917305, + -0.16261914372444153, + -0.05508507043123245, + 0.08648695796728134, + -0.06093638390302658, + -0.2340754270553589, + 0.42646878957748413, + -0.2993066608905792, + -0.040516164153814316, + 0.5393460988998413, + -0.06582631915807724, + -0.18302901089191437, + 0.25788062810897827, + -0.08681034296751022, + -0.58719402551651, + 0.3172959089279175, + -0.17419347167015076, + -0.019727811217308044, + 0.29131996631622314, + 0.11681635677814484, + -0.1709488332271576, + -0.34687095880508423, + 0.12234021723270416, + 0.12033829838037491, + -0.06132440268993378, + -0.10746213048696518, + -0.02651796117424965, + 0.2865901291370392, + 0.5939309597015381, + 0.14503344893455505, + 0.15339866280555725, + 0.25491273403167725, + -0.22446458041667938, + -0.11993828415870667, + 0.012695145793259144, + 0.23487181961536407, + 0.09834136068820953, + -0.30615219473838806, + -0.24916309118270874, + -0.3143124580383301, + 0.19578838348388672, + 0.09394712746143341, + -0.21350808441638947, + -0.018431078642606735, + 0.033431265503168106, + -0.08033496886491776, + 0.058770474046468735, + 0.3165023922920227, + 0.3147013187408447, + 0.0012837052345275879, + 0.4015222489833832, + 0.14233030378818512, + -0.03207666426897049, + 0.2730615437030792, + -0.09080955386161804, + 0.3049766421318054, + -0.1459517925977707, + -0.4461190700531006, + -0.3847319185733795, + -0.08021950721740723, + -0.26296836137771606, + -0.07766996324062347, + -0.0019341334700584412, + -0.11125586926937103, + -0.003276050090789795, + -0.01933297887444496, + 0.23401403427124023, + 0.11871583759784698, + 0.2633177638053894, + 0.11792641878128052, + 0.45676353573799133, + -0.10577230900526047, + -0.47230756282806396, + 0.08579570800065994, + -0.19637750089168549, + 0.2637426555156708, + 0.027366891503334045, + -0.08674746006727219, + -0.13557979464530945, + 0.4231654405593872, + 0.1219782903790474, + -0.07121968269348145, + -0.09480339288711548, + -0.1198142021894455, + -0.12847919762134552, + -0.43889790773391724, + -0.15349933505058289, + -0.028866689652204514, + -0.07360932976007462, + -0.09615080058574677, + 0.11228236556053162, + -0.09708157181739807, + -0.3526402413845062, + 0.012124750763177872, + 0.3918544054031372, + 0.1676657646894455, + -0.06369969993829727, + 0.2550939619541168, + 0.2474643886089325, + -0.04718436300754547, + 0.3636264204978943, + -0.10850459337234497, + 0.09603086113929749, + 0.13832902908325195, + -0.314791202545166, + -0.0016673528589308262, + 0.07403658330440521, + -0.21497663855552673, + 0.07620703428983688, + 0.1914444863796234, + 0.13187243044376373, + 0.14780455827713013, + -0.08127724379301071, + -0.07765182852745056, + 0.22089733183383942, + -0.3636993169784546, + -0.13719822466373444, + 0.4139607548713684, + -0.030294209718704224, + 0.6092257499694824, + -0.04661824554204941, + -0.34465888142585754, + -0.13774026930332184, + -0.05801468342542648, + -0.4845263957977295, + 0.1595146656036377, + -0.02318224124610424, + -0.29642924666404724, + 0.04574059695005417, + -0.005160834640264511, + -0.0516524612903595, + 0.10848543047904968, + 0.13428616523742676, + -0.03289274871349335, + 0.13046911358833313, + -0.005925724282860756, + -0.32641127705574036, + -0.034398432821035385, + -0.19207042455673218, + -0.3430449962615967, + -0.2102055698633194, + 0.4475308954715729, + 0.3112315535545349, + -0.171941339969635, + -0.08398556709289551, + 0.0031447969377040863, + -0.2861204147338867, + -0.4603792428970337, + -0.15396147966384888, + -0.03883592039346695, + 0.6403640508651733, + 0.1984761357307434, + -0.1738003045320511, + 0.14424443244934082, + -0.4065065383911133, + 0.13337039947509766, + 0.06342297047376633, + 0.16583900153636932, + 0.4052746891975403, + 0.16294607520103455, + 0.24486614763736725, + 0.3222638964653015, + 0.18784388899803162, + 0.009521860629320145, + 0.23639722168445587, + -0.1615857630968094, + 0.05569043383002281, + 0.11057544499635696, + -0.2537461519241333, + 0.5215979814529419, + -0.2233538031578064, + 0.21628376841545105, + 0.13996323943138123, + 0.35563409328460693, + -0.3939831554889679, + -0.274471253156662, + -0.043160926550626755, + -0.021331261843442917, + -0.18702386319637299, + -0.3293328285217285, + -0.16402915120124817, + 0.13207972049713135, + -0.05993706360459328, + -0.07221022248268127, + 0.32442545890808105, + 0.2044561803340912, + 0.03515951707959175, + 0.0502505823969841, + -0.2328818291425705, + -0.4584094285964966, + 0.04844971373677254, + 0.3023422360420227, + 0.20045900344848633, + 0.046738237142562866, + -0.12674221396446228, + 0.14850714802742004, + 0.5502374768257141, + -0.012255441397428513, + -0.15664422512054443, + 0.1369466781616211, + -0.0393584668636322, + -0.1637066751718521, + 0.016180474311113358, + -0.10688404738903046, + 0.1614128202199936, + -0.29407888650894165, + 0.07056370377540588, + -0.019987408071756363, + -0.31015676259994507, + 0.240941122174263, + -0.15239930152893066, + -0.627332329750061, + 0.028034493327140808, + 0.2544875741004944, + -0.09921582788228989, + 0.05429978296160698, + 0.12617741525173187, + 0.4436146020889282, + 0.21177327632904053, + -0.20857636630535126, + 0.14237797260284424, + -0.4464455842971802, + 0.03562391176819801, + 0.1505924016237259, + -0.21513405442237854, + 0.16257233917713165, + -0.037508852779865265, + 0.2443404197692871, + 0.3811696171760559, + 0.11125202476978302, + -0.4001495838165283, + 0.041632041335105896, + 0.08922100067138672, + 0.29810577630996704, + -0.14630937576293945, + -10.86948299407959, + 0.302509605884552, + -0.22962653636932373, + 0.43272316455841064, + -0.2570308446884155, + 0.08360690623521805, + -0.13700652122497559, + 0.1484958529472351, + 0.2490362673997879, + 0.16393277049064636, + -0.272381454706192, + 0.2534922957420349, + 0.3856602907180786, + 0.10875579714775085, + 0.06393343210220337, + -0.18178613483905792, + -0.2629234790802002, + 0.1470135748386383, + -0.07551360875368118, + 0.12686173617839813, + 0.36189988255500793, + 0.3792036175727844, + -0.2208305448293686, + 0.39043933153152466, + 0.1506909430027008, + -0.013560701161623001, + -0.08299165219068527, + 0.38657957315444946, + 0.03815913945436478, + -0.4141175448894501, + 0.4000435769557953, + 0.12925750017166138, + -0.25556063652038574, + -0.06824018061161041, + -0.06491340696811676, + -0.20601487159729004, + -0.11618153750896454, + 0.03460275009274483, + -0.026577923446893692, + -0.11598698049783707, + -0.08146411925554276, + -0.25622671842575073, + 0.06315018981695175, + 0.38705000281333923, + -0.12897390127182007, + -0.4983501136302948, + -0.24605697393417358, + -1.304955005645752, + 0.1062692254781723, + 0.3583422005176544, + 0.5518270134925842, + 0.009288787841796875, + 0.2906201183795929, + 0.11110702157020569, + -0.4198973476886749, + 0.06887240707874298, + -0.2036871463060379, + 0.09259751439094543, + 0.029676785692572594, + -0.10234832763671875, + 0.1946714073419571, + -0.23682254552841187, + 0.2908182442188263, + -0.2656105160713196, + -0.3765774369239807, + 0.27392899990081787, + -0.053743887692689896, + -0.09004094451665878, + 0.03831809014081955, + -0.23780648410320282, + -0.5505651235580444, + -0.12559355795383453, + 0.013369007036089897, + 0.07455819845199585, + 0.4398573935031891, + -0.10670143365859985, + -0.5009100437164307, + -0.006524546071887016, + -0.05285130441188812, + 0.34775805473327637, + 0.2545449435710907, + 0.05307784676551819, + 0.19996291399002075, + -0.21023540198802948, + -0.23382353782653809, + -0.20383916795253754, + -0.013612974435091019, + 0.4291483759880066, + 0.13470833003520966, + 0.06379444897174835, + -0.015289675444364548, + 0.2718344032764435, + -0.13541367650032043, + -0.11460825800895691, + -0.4477459788322449, + 0.22504039108753204, + 0.14276430010795593, + 0.09000031650066376, + 0.011936239898204803, + -0.14371708035469055, + -0.1349676549434662, + -0.16426807641983032, + -0.1972443014383316, + -0.385009765625, + -0.36492517590522766, + 0.20604568719863892, + 0.1916564702987671, + 0.04772558808326721, + 0.149903804063797, + 0.017417674884200096, + 0.06119879335165024, + -0.05237989500164986, + 0.43513333797454834, + 0.5444557666778564, + 0.014072999358177185, + -0.24828514456748962, + -0.2069569230079651, + -0.021418191492557526, + -0.28225380182266235, + 0.24618780612945557, + 0.38825684785842896, + -0.15846478939056396, + 0.23108457028865814, + 0.5354220867156982, + -0.09281803667545319, + -0.10032790154218674, + 1.029331922531128, + -0.3183230757713318, + 0.44928795099258423, + -0.1364426612854004, + 0.20965062081813812, + -0.1975679099559784, + -0.33614349365234375, + 0.1352708637714386, + 0.26992833614349365, + -0.4250962734222412, + 0.47427451610565186, + 0.09736381471157074, + -0.3824968934059143, + 0.12013322114944458, + -0.24874432384967804, + 0.500900387763977, + 0.2807953357696533, + 0.08689477294683456, + -0.19849443435668945, + -0.28465092182159424, + -0.24500258266925812, + -0.0027330778539180756, + -0.5580143332481384, + -0.13328498601913452, + -0.10783621668815613, + 0.09164115786552429, + 0.009176129475235939, + -0.11660171300172806, + 0.3770322799682617, + 0.07512025535106659, + -0.1753244549036026, + -0.10428463667631149, + -0.4950789213180542, + -0.2343485802412033, + 0.0785093680024147, + 0.5306124091148376, + 0.014031238853931427, + -0.10469789057970047, + -0.3154063820838928, + 0.331419974565506, + 0.05914422497153282, + 0.1837640106678009, + 0.034933436661958694, + 0.051506705582141876, + -0.3748853802680969, + 0.12265077233314514, + 0.1092354878783226, + -0.2965819239616394, + -0.18421238660812378, + -0.3950309753417969, + 0.27540650963783264, + -0.09308372437953949, + -0.18102282285690308, + 0.2423771768808365, + 0.28638145327568054, + -0.01811613328754902, + -0.05799128860235214, + -0.4096584916114807, + 0.23458220064640045, + 0.0612679086625576, + 0.1363360434770584, + 0.2250184565782547, + -0.18514981865882874, + -0.39065366983413696, + -0.3854674994945526, + 0.11488988995552063, + -0.251747190952301, + -0.058206312358379364, + 0.11306705325841904, + 0.09973936527967453, + -0.2868974804878235, + 0.14592105150222778, + -0.2502201795578003, + -0.003512006253004074, + -0.3017762303352356, + 0.11013872176408768, + 0.3909848928451538, + -0.3763326406478882, + 0.12033244967460632, + -0.17120030522346497, + 0.28242364525794983, + 0.07102137804031372, + -0.4536048173904419, + 0.28533706068992615, + -0.13200709223747253 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_079.json b/src/benchmark/output/results/results_graph_079.json new file mode 100644 index 0000000..f4223e2 --- /dev/null +++ b/src/benchmark/output/results/results_graph_079.json @@ -0,0 +1,792 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 74-year-old female who presented with symptoms of shortness of breath, cough, and hemoptysis. She was diagnosed with stage IVa epidermal growth factor receptor (EGFR)L858R-mutated non-small cell lung cancer (NSCLC).\n\n**Timeline of Diagnoses:**\n\n* September 2019: The patient presented with symptoms of shortness of breath, cough, and hemoptysis, leading to a diagnosis of stage IVa (cT4N2M1a) lung adenocarcinoma in the right upper lobe, with multiple ipsilateral lung metastases, and involvement of the pleura and mediastinal lymph nodes.\n* September 2019: A bronchoscopic lung biopsy revealed the presence of EGFR p.L858R and TP53 p.R248L mutations.\n\n**Timeline of Treatments:**\n\n1. **First-Line Treatment (October 11, 2019 - February 2020)**:\nThe patient received first-line treatment with icotinib (125 mg orally, three times daily) and pemetrexed. After two months, the patient experienced partial response.\n2. **Second-Line Treatment (April 28, 2020 - July 2020)**:\nThe patient commenced second-line treatment with amonertinib (110 mg orally, once daily) in combination with anlotinib (12 mg orally, once daily for 2 weeks, followed by a 1-week drug-free period). The treatment resulted in stable disease initially but progressed after 3 months.\n3. **Third-Line Treatment (August 3, 2020 - November 2020)**:\nThe patient initiated treatment with osimertinib (80 mg orally, once daily) and bevacizumab (350 mg IV, on day 1 of a 21-day cycle). The treatment resulted in partial response after two cycles and significant reduction in tumor lesions after four cycles.\n4. **Fourth-Line Treatment (October 10, 2020 - present)**:\nThe patient received pembrolizumab (200 mg IV on day 1 of every 3 weeks), pemetrexed, and carboplatin. The treatment resulted in partial response after two cycles and significant reduction in tumor lesions after four cycles.\n\n**Outcomes:**\n\n* **Pathological Complete Response (pCR)**:\nThe patient achieved a pathological complete response (pCR) and prolonged survival.\n* **High PD-L1 Expression**:\nTumor microenvironment analysis showed high programmed cell death 1 ligand 1 (PD-L1) expression on tumor cells, indicating potential for immune checkpoint therapy.\n* **Increased Immune Cell Infiltration**:\nThe patient had increased infiltration of immune cells, particularly PD-1+CD8+T cells and PD-L1+macrophages, in the tumor microenvironment.\n\nIn conclusion, this patient's case highlights the importance of personalized medicine approaches in treating advanced NSCLC. The use of targeted therapies, such as EGFR inhibitors and immunotherapies, has led to significant improvements in treatment outcomes and quality of life for patients with this disease.", + "bertscore": { + "precision": 0.7301585674285889, + "recall": 0.7485638856887817, + "f1": 0.7392467260360718 + }, + "bleu": 0.08636718645614525, + "rouge1": 0.3633276740237691, + "rougeL": 0.2139219015280136, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 7, + "edge_count": 6, + "avg_in_degree": 0.8571428571428571, + "density": 0.14285714285714285 + }, + "trajectory_embedding": [ + 0.28967222571372986, + 0.13287165760993958, + -0.27321428060531616, + 0.1138295978307724, + -0.09009366482496262, + 0.025592172518372536, + 0.09159565716981888, + 0.1864396333694458, + 0.445202499628067, + -0.5484539866447449, + -0.1185631975531578, + 0.20055018365383148, + -0.6732085347175598, + -0.10172402113676071, + -0.23370732367038727, + 0.013881613500416279, + 0.015598686411976814, + 0.3494771420955658, + 0.009218164719641209, + -0.07954765856266022, + -0.3512444496154785, + 0.16238413751125336, + -0.3741113841533661, + -0.030549421906471252, + 0.06190601363778114, + -0.1312652826309204, + 0.09005965292453766, + 0.3457756042480469, + 0.21935248374938965, + 0.1301935613155365, + 0.13383522629737854, + 0.08705072849988937, + -0.2715134024620056, + -0.017471088096499443, + -0.17541687190532684, + 0.3165104389190674, + 0.22981016337871552, + 0.2882510721683502, + -0.12422019988298416, + 0.030639026314020157, + -0.17778345942497253, + 0.0921536311507225, + 0.7343012690544128, + 0.25980523228645325, + 0.42370542883872986, + -0.47161728143692017, + 0.03305958956480026, + 0.42226549983024597, + -0.607052743434906, + -0.056931022554636, + 0.28774595260620117, + 0.6199279427528381, + 0.8208817839622498, + -0.12761585414409637, + 0.4721238911151886, + -0.1769290417432785, + -0.3682643473148346, + -0.08880753070116043, + -0.09844226390123367, + -0.04480478912591934, + 0.1371445506811142, + -0.13656330108642578, + 0.05829444155097008, + -0.07368315756320953, + -0.24113371968269348, + -0.2611972987651825, + -0.44950756430625916, + 0.021681228652596474, + 0.010904805734753609, + -0.4755452573299408, + -0.3611588180065155, + -0.3249382972717285, + -0.12531183660030365, + 0.25645360350608826, + 0.11633254587650299, + -0.27950018644332886, + 0.1850275844335556, + 0.009157419204711914, + 0.05280643701553345, + -0.04193834587931633, + 0.30206218361854553, + -0.0352933406829834, + 0.2162698656320572, + 0.24790331721305847, + -0.3847915232181549, + 0.25920042395591736, + 0.17477086186408997, + -0.3408800959587097, + -0.27560505270957947, + 0.356395423412323, + 0.2189721316099167, + -0.33915847539901733, + -0.05603358894586563, + -0.033332739025354385, + 0.23415698111057281, + 0.06172701343894005, + 0.31433412432670593, + 0.21495400369167328, + 0.8262764811515808, + 0.08993140608072281, + 0.3129323422908783, + 0.05358371511101723, + 0.19939061999320984, + -0.016300829127430916, + 0.3860202431678772, + -0.1777879297733307, + 0.38606563210487366, + -0.27002057433128357, + -0.038585513830184937, + 0.41770532727241516, + 0.05382521077990532, + -0.19494496285915375, + 0.11122935265302658, + -0.36440059542655945, + 0.053052689880132675, + 0.0399259552359581, + -0.2277214378118515, + 0.06811810284852982, + 0.14372451603412628, + -0.5153376460075378, + -0.16730041801929474, + -0.1724451333284378, + 0.34282657504081726, + 0.24908821284770966, + -0.5169404149055481, + -0.17519831657409668, + -0.13197645545005798, + 0.15705715119838715, + -0.19095900654792786, + 0.18576519191265106, + -0.3523712158203125, + -0.1744152009487152, + -0.022252483293414116, + 0.21914683282375336, + -0.2555006742477417, + 0.3989267945289612, + -0.5191221237182617, + 0.1786891222000122, + -1.1714674234390259, + 0.17875909805297852, + -0.5024257898330688, + -0.05538701266050339, + 0.04020046442747116, + -0.4468986690044403, + -0.07063507288694382, + -0.1438509076833725, + -0.031119409948587418, + 0.17066265642642975, + 0.008700119331479073, + -0.0768575519323349, + -0.023904429748654366, + -0.11930304765701294, + 0.10185611248016357, + 0.4682210385799408, + 0.06299436837434769, + 0.13141347467899323, + 0.09621164947748184, + 0.3122382164001465, + 0.18579742312431335, + -0.2830430567264557, + 0.03355366364121437, + 0.4873816967010498, + -0.15377037227153778, + -0.010006451047956944, + 0.11107636988162994, + -0.615912139415741, + -0.030115365982055664, + -0.1420772820711136, + 0.1729895919561386, + -0.023917708545923233, + -0.08727822452783585, + 0.11186224222183228, + -0.09620221704244614, + 0.5171002745628357, + 0.11784271150827408, + 0.49025508761405945, + -0.05882861837744713, + 0.16354672610759735, + 0.28826195001602173, + 0.1510169357061386, + 0.1367875635623932, + -0.054320406168699265, + 0.5517715811729431, + 0.2952355742454529, + -0.3269178867340088, + 0.2745454013347626, + 0.4210677742958069, + -0.2968375086784363, + -0.3493483364582062, + -0.17340795695781708, + 0.6756364107131958, + -0.11425215750932693, + 0.30465373396873474, + -0.3324955999851227, + 0.07581601291894913, + 0.0549696609377861, + -0.2760907709598541, + -0.12449358403682709, + 0.1093653216958046, + -0.24749299883842468, + 0.27507510781288147, + 0.4441538155078888, + -0.3095707595348358, + 0.07083987444639206, + 0.23406513035297394, + -0.11787354946136475, + 0.11195337027311325, + 0.26172110438346863, + -0.006455570459365845, + -0.1302744746208191, + -0.159796804189682, + 0.3143746256828308, + 0.0030647090170532465, + 0.30036577582359314, + 0.016690624877810478, + -0.40316852927207947, + -0.00013471661077346653, + -0.11191528290510178, + -0.24970947206020355, + 0.0097654415294528, + -0.057665493339300156, + -0.10953366011381149, + 0.3198998272418976, + 0.0868820995092392, + -0.47898370027542114, + 0.30328068137168884, + 0.26478198170661926, + 0.2495354562997818, + 0.10004949569702148, + -0.22297188639640808, + 0.005641948897391558, + -0.1663001924753189, + 0.46150967478752136, + -0.025082021951675415, + -0.2940424382686615, + -0.2777272164821625, + 0.2881106436252594, + -0.09620557725429535, + -0.09266971796751022, + 0.4040932357311249, + -0.06339290738105774, + -0.11190048605203629, + -0.0006616333848796785, + -0.3155289590358734, + -0.12966440618038177, + -0.38842740654945374, + 0.07462133467197418, + 0.3605482876300812, + 0.10924185812473297, + 0.2533766031265259, + 0.11878418177366257, + -0.09732914716005325, + 0.3802449107170105, + -0.4287714660167694, + -0.4361326992511749, + -0.22002220153808594, + -0.11263317614793777, + -0.19962425529956818, + -0.38438868522644043, + -0.01715191639959812, + -0.059421274811029434, + -0.18597976863384247, + 0.29453086853027344, + -0.38689857721328735, + -0.1480497568845749, + -0.23082926869392395, + -0.10439932346343994, + 0.25602105259895325, + -0.23777811229228973, + 0.251386433839798, + -0.48589178919792175, + -0.2170087844133377, + -0.13030366599559784, + 0.01969488523900509, + 0.36165112257003784, + 0.18080267310142517, + -0.12654685974121094, + 0.21449588239192963, + 0.2927591800689697, + -0.3578166961669922, + -0.2538065016269684, + 0.05583330616354942, + -0.35547611117362976, + 0.07698582112789154, + -0.23460640013217926, + 0.13946203887462616, + 0.42084333300590515, + -0.09450704604387283, + 0.23828668892383575, + 0.3789999485015869, + 0.5384190678596497, + 0.07774924486875534, + -0.012804687023162842, + -0.03326822444796562, + 0.002135055372491479, + 0.003370237071067095, + -0.4346676170825958, + 0.16199208796024323, + -0.2849520146846771, + -0.014696145430207253, + 0.23210862278938293, + 0.2893259823322296, + 0.01599133387207985, + -0.48155683279037476, + -0.20769087970256805, + 0.5547478795051575, + 0.3228905498981476, + 0.08965908735990524, + -0.10982903093099594, + 0.27760934829711914, + 0.6005199551582336, + -0.004116256255656481, + -0.23534728586673737, + 0.2274608314037323, + -0.23265668749809265, + -0.23064568638801575, + -0.13607372343540192, + -0.02076295204460621, + 0.32928863167762756, + -0.08277048170566559, + -0.14628338813781738, + 0.45051926374435425, + -0.31105682253837585, + -0.25121593475341797, + -0.1824515014886856, + -0.03780277445912361, + -0.04312751069664955, + -0.2350129783153534, + 0.32776692509651184, + -0.24188177287578583, + -0.11767809092998505, + 0.4889431595802307, + -0.1604010909795761, + -0.23388676345348358, + 0.2207779437303543, + -0.05705910176038742, + -0.5361013412475586, + 0.2952418625354767, + -0.0956900343298912, + -0.058307044208049774, + 0.4215090870857239, + -0.20759305357933044, + -0.06033257022500038, + 0.0036444482393562794, + 0.14124391973018646, + 0.06054878607392311, + 0.15261340141296387, + -0.016291795298457146, + 0.07726578414440155, + 0.197734996676445, + 0.5323013663291931, + -0.0004905802779830992, + 0.06438716500997543, + 0.3695080876350403, + -0.09198803454637527, + -0.17459318041801453, + -0.0609399676322937, + -0.026711059734225273, + 0.2645922005176544, + -0.2939346134662628, + -0.32479217648506165, + -0.4593767523765564, + 0.15981721878051758, + 0.1392579823732376, + -0.18741311132907867, + 0.25667014718055725, + 0.015089892782270908, + -0.04481812193989754, + 0.07909588515758514, + 0.4087558686733246, + 0.25603801012039185, + -0.024839891120791435, + 0.58944171667099, + 0.18694981932640076, + -0.03641160577535629, + 0.3322760760784149, + -0.04384502395987511, + 0.16016586124897003, + -0.03353028744459152, + -0.18969707190990448, + -0.3973497450351715, + 0.04745931550860405, + -0.27838438749313354, + -0.16004541516304016, + 0.09827154129743576, + -0.057762205600738525, + -0.06583153456449509, + -0.07669543474912643, + 0.20494325459003448, + -0.14833498001098633, + 0.16243323683738708, + -0.12603820860385895, + 0.6300015449523926, + -0.09244956076145172, + -0.3902032673358917, + 0.08658789098262787, + -0.1725454330444336, + 0.28929710388183594, + -0.19730022549629211, + -0.05545606091618538, + -0.298552006483078, + 0.5052400827407837, + 0.00180157704744488, + -0.06005115434527397, + -0.04409284144639969, + -0.2896899878978729, + -0.14837579429149628, + -0.3761539161205292, + -0.007878346368670464, + -0.11249662935733795, + -0.10222945362329483, + -0.12502528727054596, + 0.2129075676202774, + -0.036784105002880096, + -0.11887486279010773, + 0.08552749454975128, + 0.3052138686180115, + 0.023013290017843246, + 0.002454501111060381, + 0.1161080077290535, + 0.04006757214665413, + 0.16009308397769928, + 0.3419356048107147, + -0.27117785811424255, + 0.2513508200645447, + 0.17737217247486115, + -0.1764993965625763, + -0.0591430701315403, + -0.07846539467573166, + -0.3145514130592346, + 0.025771180167794228, + 0.2627951204776764, + 0.12709160149097443, + 0.06073858588933945, + -0.07017429172992706, + -0.06779538840055466, + 0.27473920583724976, + -0.3822859823703766, + -0.11495144665241241, + 0.5263261795043945, + -0.2031695693731308, + 0.46737101674079895, + -0.0009923881152644753, + -0.341575562953949, + -0.12215767800807953, + -0.15284284949302673, + -0.46299150586128235, + 0.21459181606769562, + -0.03856450319290161, + -0.04700160026550293, + 0.013662009499967098, + 0.025660598650574684, + 0.08325345069169998, + -0.020084094256162643, + 0.21293704211711884, + 0.13208091259002686, + 0.0614907406270504, + 0.0160593893378973, + -0.31926029920578003, + -0.05446759983897209, + -0.34027257561683655, + -0.3687364161014557, + -0.33159443736076355, + 0.3063124120235443, + 0.07891631126403809, + -0.09566958993673325, + 0.21386925876140594, + 0.15311625599861145, + -0.24031387269496918, + -0.3483901619911194, + 0.035939235240221024, + -0.021818067878484726, + 0.700746476650238, + -0.01015093270689249, + -0.22639426589012146, + 0.2296704351902008, + -0.23792104423046112, + 0.2603660523891449, + 0.1689690500497818, + 0.21035762131214142, + 0.24694712460041046, + 0.07892201840877533, + 0.15463678538799286, + 0.47970151901245117, + 0.2620716691017151, + 0.07993534952402115, + 0.27389487624168396, + 0.002367000561207533, + 0.0009275068296119571, + -0.033652354031801224, + -0.17579017579555511, + 0.535103976726532, + -0.450234591960907, + 0.1456584632396698, + -0.00017565488815307617, + 0.4457348883152008, + -0.30656033754348755, + -0.23326945304870605, + -0.09910259395837784, + -0.15710829198360443, + -0.15850941836833954, + -0.2844614088535309, + -0.2842937111854553, + 0.09169753640890121, + -0.4262233078479767, + 0.024825306609272957, + 0.35772404074668884, + 0.3824091851711273, + 0.23279383778572083, + 0.052957359701395035, + -0.33554360270500183, + -0.3774503767490387, + 0.1421286016702652, + 0.4427526295185089, + -0.0338178388774395, + -0.08948683738708496, + -0.12881775200366974, + 0.2622751295566559, + 0.5057573914527893, + -0.03837591037154198, + -0.005317949689924717, + -0.040249694138765335, + 0.026192592456936836, + -0.10959991067647934, + 0.07289024442434311, + -0.09330327063798904, + -0.002816191641613841, + -0.4704037606716156, + -0.09868132323026657, + -0.025710372254252434, + -0.3043610453605652, + 0.15286512672901154, + -0.393623024225235, + -0.45060035586357117, + -0.03775904327630997, + 0.10853327810764313, + -0.17514102160930634, + -0.1105383038520813, + 0.2181914895772934, + 0.5257498621940613, + 0.05091087147593498, + -0.12341874837875366, + 0.06325674802064896, + -0.4749176800251007, + -0.026637906208634377, + 0.2773142158985138, + -0.08836515247821808, + 0.30598339438438416, + 0.05742163211107254, + 0.39186832308769226, + 0.44029709696769714, + 0.19125878810882568, + -0.2801852822303772, + 0.18362243473529816, + 0.32622748613357544, + 0.352365106344223, + -0.19342491030693054, + -10.864474296569824, + -0.0675220936536789, + -0.20281276106834412, + 0.3238285183906555, + -0.03562992811203003, + 0.08949095010757446, + -0.11705444008111954, + -0.03446536511182785, + 0.05287977680563927, + 0.26455721259117126, + -0.14750215411186218, + 0.11091314256191254, + 0.19575953483581543, + 0.28778889775276184, + 0.019959408789873123, + 0.20548667013645172, + -0.28015708923339844, + 0.31860584020614624, + -0.09151721745729446, + 0.055688221007585526, + 0.315818727016449, + 0.37046733498573303, + -0.21440018713474274, + 0.11870057135820389, + 0.10335554927587509, + -0.3256823718547821, + -0.3214492201805115, + 0.39063313603401184, + 0.16373607516288757, + -0.5220385789871216, + 0.3636987507343292, + 0.04829171672463417, + -0.03670072183012962, + -0.08939583599567413, + -0.03290948644280434, + -0.10313744097948074, + -0.1826518326997757, + 0.0209584292024374, + 0.08102841675281525, + -0.040978141129016876, + -0.03382750600576401, + -0.25632908940315247, + 0.06183001399040222, + 0.3834187090396881, + -0.14339660108089447, + -0.47818008065223694, + -0.16611053049564362, + -1.4688751697540283, + 0.15699635446071625, + 0.0753943994641304, + 0.5030497312545776, + 0.05595908313989639, + 0.12699879705905914, + 0.2289055734872818, + -0.4020373225212097, + -0.055559564381837845, + -0.23186932504177094, + 0.1323404610157013, + -0.013745056465268135, + -0.19996988773345947, + 0.13707265257835388, + 0.014514075592160225, + 0.381695419549942, + -0.2989253103733063, + -0.2995021641254425, + 0.2724134624004364, + -0.16989204287528992, + -0.0674980953335762, + -0.14477702975273132, + -0.26961836218833923, + -0.6019757390022278, + -0.06365279108285904, + 0.1580573320388794, + 0.06685082614421844, + 0.41906997561454773, + -0.1534811407327652, + -0.4862115681171417, + 0.05464538186788559, + 0.09809964895248413, + 0.4205111861228943, + 0.1642920821905136, + 0.07613559812307358, + 0.1527480185031891, + -0.09869176894426346, + -0.07568293064832687, + -0.16916313767433167, + 0.15995725989341736, + 0.47846871614456177, + -0.0997859388589859, + -0.04658050090074539, + -0.05753358080983162, + 0.21864032745361328, + -0.1015353724360466, + -0.17594926059246063, + -0.5499250292778015, + 0.19176438450813293, + 0.09658706933259964, + 0.05859261006116867, + -0.08791005611419678, + -0.09840131551027298, + -0.0476619191467762, + -0.11832360178232193, + -0.05876261368393898, + -0.5046718120574951, + -0.2179214209318161, + 0.34861311316490173, + 0.2996915280818939, + 0.1443328559398651, + 0.06942183524370193, + 0.011322115547955036, + -0.10855323821306229, + -0.08292877674102783, + 0.46120381355285645, + 0.4783497452735901, + 0.11509208381175995, + 0.017284413799643517, + -0.18751850724220276, + 0.007175466977059841, + -0.2643918991088867, + -0.12226884067058563, + 0.21522578597068787, + 0.06414483487606049, + 0.4275428354740143, + 0.5237908959388733, + 0.06738035380840302, + -0.11861338466405869, + 0.7751699090003967, + -0.32658490538597107, + 0.3873884081840515, + -0.023632006719708443, + 0.08779571950435638, + -0.02065986953675747, + -0.3203555941581726, + 0.06279540061950684, + 0.2946391701698303, + -0.3721751868724823, + 0.5796948671340942, + 0.007954047992825508, + -0.35443034768104553, + -0.05238080769777298, + -0.4264388978481293, + 0.2871454060077667, + 0.15541745722293854, + 0.23862481117248535, + -0.23090815544128418, + -0.37333399057388306, + -0.2889014184474945, + 0.25871747732162476, + -0.19321925938129425, + -0.2834831774234772, + -0.1565498262643814, + 0.04119173809885979, + 0.014212914742529392, + -0.2397836595773697, + 0.2033349573612213, + 0.12204419076442719, + -0.17446880042552948, + 0.04007628932595253, + -0.4067001938819885, + -0.1722506582736969, + 0.18190431594848633, + 0.6929059028625488, + 0.27528923749923706, + -0.24967753887176514, + -0.06132813170552254, + 0.30700966715812683, + -0.17502053081989288, + 0.0731566771864891, + 0.10760484635829926, + -0.06960611790418625, + -0.4021244943141937, + 0.10139738023281097, + 0.13292549550533295, + -0.4857683777809143, + -0.0997462049126625, + -0.43580156564712524, + 0.07551152259111404, + -0.0033843836281448603, + -0.14483292400836945, + 0.3712177574634552, + 0.19803941249847412, + 0.033927835524082184, + 0.09443007409572601, + -0.26732107996940613, + -0.05879153683781624, + 0.3543913960456848, + 0.29959550499916077, + 0.06797077506780624, + -0.18245546519756317, + -0.44452303647994995, + -0.2848609387874603, + 0.20486590266227722, + -0.27368444204330444, + 0.11429703235626221, + 0.15967264771461487, + 0.17556919157505035, + -0.23424656689167023, + 0.2251690775156021, + -0.21622833609580994, + 0.0028860631864517927, + -0.42873385548591614, + 0.1058376207947731, + 0.35441526770591736, + -0.431979238986969, + 0.3532979488372803, + 0.041436534374952316, + 0.4396197497844696, + 0.30838820338249207, + -0.3553692400455475, + 0.19427360594272614, + -0.3544304370880127 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_080.json b/src/benchmark/output/results/results_graph_080.json new file mode 100644 index 0000000..82675bc --- /dev/null +++ b/src/benchmark/output/results/results_graph_080.json @@ -0,0 +1,792 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 71-year-old male with a past medical history of tobacco use, who quit more than 24 years ago. He presented with a newly diagnosed lung cancer and a progressively increasing lump in the right axilla over 2 months.\n\n**Initial Diagnosis (Step 1):**\nUpon presentation, the patient underwent an ultrasound examination, which revealed a 3.7 cm enlarged lymph node (LN) in the right axilla with effacement and hypervascularity. A biopsy of the LN showed carcinoma with cytokeratin 7 (CK-7) and thyroid transcription factor-1 (TTF-1) positivity, consistent with lung adenocarcinoma, with a possibility of squamous component. Further imaging studies, including a PET scan, revealed multiple F-fluorodeoxyglucose (FDG) avid nodes in the right hilum, thoracic inlet, mediastinum, and right axilla, concerning for metastatic disease.\n\n**Treatment Initiation (Step 2):**\nThe patient was started on single-agent pembrolizumab, a checkpoint inhibitor, with good treatment response. However, after 17 months of treatment, the patient presented to the clinic with worsening shortness of breath (SOB), which he noted a few months ago, was mild in the beginning, and has progressively gotten worse in the last few weeks.\n\n**Progression and Complications (Step 3):**\nA recent PET scan did not show any evidence of disease progression or signs of inflammation in lungs. However, echocardiography revealed severe pulmonary arterial hypertension (PAH), with elevated right ventricular systolic pressure (RVSP) at 86 mm Hg. The patient also had mild regurgitation noted at the pulmonary valve with no structural abnormalities.\n\n**Current Status:**\nThe patient is currently under close observation for worsening symptoms and potential disease progression. Further management strategies, including additional immunotherapies or PAH-specific treatments, are being considered based on ongoing clinical evaluation.\n\n**Timeline of Diagnoses and Treatments:**\n\n* Month 0-2: Patient presents with newly diagnosed lung cancer and progressively increasing lump in the right axilla.\n* Month 2-17: Patient undergoes treatment with pembrolizumab, showing good initial response.\n* Month 17-present: Patient experiences worsening shortness of breath, prompting further evaluation.\n\n**Outcomes:**\n\n* The patient's current disease status is concerning for metastatic lung cancer with PAH.\n* Further management strategies are being considered to address the patient's worsening symptoms and potential disease progression.", + "bertscore": { + "precision": 0.8614916205406189, + "recall": 0.8687059283256531, + "f1": 0.8650836944580078 + }, + "bleu": 0.195284988308007, + "rouge1": 0.5114503816793894, + "rougeL": 0.3912213740458015, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 3, + "edge_count": 2, + "avg_in_degree": 0.6666666666666666, + "density": 0.3333333333333333 + }, + "trajectory_embedding": [ + 0.16170577704906464, + 0.06417428702116013, + -0.1753809005022049, + 0.09126577526330948, + 0.04058043658733368, + -0.0517929308116436, + 0.027891309931874275, + 0.20549362897872925, + 0.3396742641925812, + -0.1185796782374382, + -0.19451667368412018, + 0.3359101712703705, + -0.5800067186355591, + -0.037589181214571, + -0.14825548231601715, + -0.07752230018377304, + 0.1640154868364334, + 0.15847530961036682, + 0.09481053799390793, + -0.22051595151424408, + -0.36081311106681824, + 0.06775417178869247, + -0.27210137248039246, + -0.08581588417291641, + 0.03308814391493797, + -0.2221856713294983, + 0.25041311979293823, + 0.47027888894081116, + 0.010676463134586811, + 0.390374094247818, + 0.020987078547477722, + 0.3011362850666046, + -0.2802215814590454, + 0.13622573018074036, + -0.0426664836704731, + 0.46328845620155334, + 0.22242970764636993, + 0.24061594903469086, + 0.012163308449089527, + 0.2463909238576889, + -0.035688240081071854, + -0.033458296209573746, + 0.683021068572998, + 0.36508381366729736, + 0.5865605473518372, + -0.3869433104991913, + -0.16478519141674042, + 0.2541346549987793, + -0.6637176871299744, + -0.2128756195306778, + 0.1582735925912857, + 0.6316847205162048, + 0.676030158996582, + -0.06598640233278275, + 0.5675460696220398, + -0.015017884783446789, + -0.4154480993747711, + -0.3651273548603058, + -0.24078278243541718, + 0.19777317345142365, + 0.03367118164896965, + 0.09326181560754776, + -0.12598834931850433, + -0.1462969183921814, + -0.26702162623405457, + -0.20758824050426483, + -0.29405689239501953, + -0.1512245088815689, + 0.002099235774949193, + -0.49648937582969666, + -0.4524024426937103, + -0.523938000202179, + -0.21945929527282715, + 0.11926966160535812, + 0.30697500705718994, + -0.17828918993473053, + 0.07593215256929398, + 0.0031282901763916016, + -0.09978869557380676, + 0.06671863794326782, + 0.1485070139169693, + 0.10464618355035782, + 0.2119523286819458, + 0.2293415516614914, + -0.53892582654953, + 0.25895240902900696, + -0.018000666052103043, + -0.06887724250555038, + -0.23081785440444946, + 0.405300110578537, + 0.0023310978431254625, + -0.28803470730781555, + 0.19269920885562897, + -0.15252827107906342, + 0.23817749321460724, + -0.279422789812088, + 0.13371329009532928, + 0.48851433396339417, + 1.0066032409667969, + 0.02901902236044407, + 0.2888752520084381, + 0.08292227238416672, + 0.30324694514274597, + -0.11457598954439163, + 0.5307343602180481, + -0.05574449524283409, + 0.19429010152816772, + -0.3969154357910156, + -0.24090175330638885, + 0.29840365052223206, + -0.06193384528160095, + -0.18737812340259552, + 0.008145813830196857, + -0.3010093867778778, + -0.009682953357696533, + -0.09535468369722366, + -0.12818172574043274, + -0.08768980950117111, + -0.11715734004974365, + -0.33347287774086, + -0.0266678798943758, + -0.2392888069152832, + 0.4559757709503174, + 0.29971909523010254, + -0.6150010824203491, + 0.06653465330600739, + -0.2935921251773834, + 0.2735276520252228, + -0.1821199506521225, + 0.2592300474643707, + -0.4836507737636566, + -0.2863466441631317, + 0.04036503657698631, + 0.4803471565246582, + -0.329915314912796, + 0.29486167430877686, + -0.5024775266647339, + 0.5065647959709167, + -1.1835442781448364, + 0.10830271989107132, + -0.3016100227832794, + -0.1817319542169571, + 0.21494729816913605, + -0.49380624294281006, + -0.04988394305109978, + -0.019627826288342476, + -0.041309770196676254, + 0.10386083275079727, + 0.05729535222053528, + -0.2183636873960495, + -0.20842494070529938, + 0.0022983949165791273, + 0.23450523614883423, + 0.10784179717302322, + 0.149484321475029, + 0.1958412379026413, + 0.17026446759700775, + 0.2709245979785919, + 0.274440199136734, + -0.013130572624504566, + 0.023208647966384888, + 0.23512153327465057, + -0.199251189827919, + -0.08562996983528137, + 0.2056998461484909, + -0.6060120463371277, + 0.18293148279190063, + -0.2545846402645111, + 0.3098243772983551, + 0.03938345983624458, + -0.1685476452112198, + 0.18305246531963348, + -0.11972254514694214, + 0.5722284317016602, + 0.2124704122543335, + 0.44831323623657227, + 0.020334968343377113, + 0.13530932366847992, + 0.32751330733299255, + 0.043996524065732956, + 0.12881529331207275, + 0.004275381565093994, + 0.5150017142295837, + 0.18410582840442657, + -0.32989001274108887, + 0.35640931129455566, + 0.42475900053977966, + -0.5189270377159119, + -0.2981785237789154, + -0.1470656841993332, + 0.34028589725494385, + -0.22099550068378448, + 0.3039867877960205, + -0.36094167828559875, + -0.14047858119010925, + -0.0163204874843359, + -0.421978235244751, + -0.2378939390182495, + -0.03051541931927204, + 0.005137839820235968, + 0.18851839005947113, + 0.2045164853334427, + -0.08168909698724747, + 0.10849367827177048, + -0.00764103839173913, + -0.1480981707572937, + 0.31816622614860535, + 0.17019350826740265, + 0.06157438084483147, + -0.13919706642627716, + -0.026803061366081238, + 0.12923680245876312, + 0.020167088136076927, + 0.24664203822612762, + -0.11446008831262589, + -0.23026323318481445, + 0.4978926181793213, + -0.06820321828126907, + -0.4361797869205475, + 0.25302186608314514, + -0.2057608813047409, + -0.05945592001080513, + 0.4599365293979645, + -0.04139485955238342, + -0.2885613739490509, + 0.3359368145465851, + 0.3233077824115753, + 0.46385347843170166, + 0.13437789678573608, + -0.07005564123392105, + 0.05333550646901131, + -0.28356197476387024, + 0.1518421471118927, + -0.14833299815654755, + -0.13917085528373718, + -0.3918771743774414, + 0.09519139677286148, + -0.22675596177577972, + -0.22635622322559357, + 0.19554878771305084, + -0.14021697640419006, + -0.1394069343805313, + 0.09573733806610107, + -0.40174368023872375, + -0.01943335309624672, + -0.39033043384552, + 0.11863195896148682, + 0.38569021224975586, + -0.024844152852892876, + 0.2903454601764679, + 0.13991692662239075, + 0.019197562709450722, + 0.3583739101886749, + -0.3456098139286041, + -0.21909010410308838, + -0.2593524158000946, + -0.005434083286672831, + 0.2122776061296463, + -0.1608828902244568, + 0.049832671880722046, + -0.03504583239555359, + -0.30573660135269165, + 0.11994820088148117, + -0.17739969491958618, + 0.004336684942245483, + -0.06020696461200714, + -0.126387357711792, + 0.32634201645851135, + 0.067463219165802, + 0.10488498955965042, + -0.5681338310241699, + -0.32007458806037903, + -0.15360380709171295, + -0.28001120686531067, + 0.2688024938106537, + 0.20039302110671997, + -0.058453936129808426, + 0.150589719414711, + 0.2538689374923706, + -0.489363431930542, + -0.3854392468929291, + 0.3142465054988861, + -0.4604202210903168, + 0.23031790554523468, + -0.3282184302806854, + 0.1391030102968216, + 0.31331774592399597, + -0.24032974243164062, + 0.16569222509860992, + 0.4757949411869049, + 0.5051875710487366, + 0.2130226045846939, + -0.01114953588694334, + -0.04440610483288765, + 0.0168099757283926, + -0.09256894141435623, + -0.5790378451347351, + 0.40754246711730957, + -0.22961895167827606, + 0.04027270898222923, + 0.14651338756084442, + 0.1077340617775917, + 0.02400590293109417, + -0.48595574498176575, + -0.30283215641975403, + 0.5803824067115784, + 0.2862081527709961, + -0.1183202862739563, + -0.25270864367485046, + 0.3769168555736542, + 0.78188556432724, + 0.004750050604343414, + -0.23964212834835052, + 0.0021473292727023363, + -0.009572711773216724, + -0.04520444571971893, + -0.038921136409044266, + -0.043263357132673264, + 0.26619139313697815, + -0.0470220111310482, + -0.08051818609237671, + 0.5123961567878723, + -0.11394850164651871, + -0.11871293932199478, + -0.0956827774643898, + -0.14846593141555786, + -0.23261217772960663, + -0.2957981824874878, + 0.32122382521629333, + -0.25173553824424744, + -0.16259802877902985, + 0.45835113525390625, + 0.15288864076137543, + -0.19972564280033112, + 0.04171581193804741, + -0.07582410424947739, + -0.5825116634368896, + 0.20132161676883698, + -0.06379573792219162, + -0.04347846284508705, + 0.5257647633552551, + 0.08377230167388916, + -0.03626188635826111, + -0.20337092876434326, + 0.14988745748996735, + 0.17442531883716583, + -0.06815133988857269, + -0.0007118880748748779, + 0.011094112880527973, + 0.30379799008369446, + 0.4837910234928131, + 0.07047341018915176, + 0.0701151117682457, + 0.35754382610321045, + -0.2858234941959381, + -0.27199193835258484, + -0.11321226507425308, + 0.22233884036540985, + 0.19282692670822144, + -0.352459192276001, + -0.2555687725543976, + -0.43889284133911133, + 0.020942067727446556, + 0.23295383155345917, + 0.03966064006090164, + 0.10098153352737427, + 0.02947184443473816, + -0.06881203502416611, + 0.25679662823677063, + 0.31913289427757263, + 0.14395515620708466, + 0.08225718885660172, + 0.44989416003227234, + 0.21865634620189667, + -0.03538578376173973, + 0.23187457025051117, + -0.08539187908172607, + 0.27775195240974426, + -0.25336670875549316, + -0.3327300548553467, + -0.6518617272377014, + 0.03791474178433418, + -0.23796188831329346, + -0.2112639993429184, + 0.03844016417860985, + -0.07870272547006607, + -0.059338267892599106, + 0.018876032903790474, + 0.3236042261123657, + 0.06626769155263901, + 0.2576044499874115, + -0.19833962619304657, + 0.5462787747383118, + -0.0013432999840006232, + -0.40598535537719727, + -0.09618297964334488, + -0.189860001206398, + 0.30224987864494324, + -0.1370094120502472, + -0.010360236279666424, + -0.23108692467212677, + 0.28076794743537903, + -0.0056189484894275665, + -0.0932111144065857, + -0.06363409012556076, + -0.15601979196071625, + -0.13073007762432098, + -0.28219181299209595, + -0.14281325042247772, + 0.009279821999371052, + -0.054536301642656326, + -0.13986848294734955, + 0.2702961564064026, + -0.1357324868440628, + -0.32171741127967834, + -0.10712447017431259, + 0.5144136548042297, + 0.021468251943588257, + -0.0010568300494924188, + 0.3552232086658478, + 0.21233385801315308, + 0.11103376001119614, + 0.3788088262081146, + -0.30189526081085205, + 0.24352531135082245, + 0.34511828422546387, + -0.1582849770784378, + -0.09250759333372116, + 0.030928021296858788, + -0.1553855687379837, + -0.030506499111652374, + 0.17037808895111084, + 0.23281733691692352, + 0.09007861465215683, + -0.03122805617749691, + -0.13672585785388947, + 0.3326437771320343, + -0.26446542143821716, + -0.14839814603328705, + 0.45609593391418457, + -0.03043253719806671, + 0.538658618927002, + -0.04290486499667168, + -0.28737005591392517, + -0.3159334361553192, + 0.10606477409601212, + -0.5321884155273438, + 0.1916835904121399, + -0.05784996226429939, + -0.27770179510116577, + -0.05638095736503601, + 0.16572465002536774, + 0.12988774478435516, + 0.0034224092960357666, + 0.12267196178436279, + 0.035601794719696045, + 0.18500597774982452, + 0.0016053169965744019, + -0.38293972611427307, + -0.072118379175663, + -0.39139723777770996, + -0.48963668942451477, + -0.2621878385543823, + 0.49308255314826965, + 0.4136013090610504, + -0.07869190722703934, + 0.011978725902736187, + 0.1467512845993042, + -0.14674049615859985, + -0.4187954366207123, + 0.032208096235990524, + -0.16551727056503296, + 0.5775502324104309, + 0.12220194935798645, + -0.1174648329615593, + 0.053470250219106674, + -0.5826014876365662, + 2.0136436432949267e-05, + 0.217664435505867, + 0.24270987510681152, + 0.3843815326690674, + 0.2551819384098053, + 0.24215956032276154, + 0.25699126720428467, + 0.1521281599998474, + -0.10425279289484024, + 0.2962424159049988, + 0.06129523739218712, + 0.06566400080919266, + -0.05866144970059395, + -0.31432613730430603, + 0.554105281829834, + -0.3822920024394989, + 0.12933607399463654, + 0.051500916481018066, + 0.40378856658935547, + -0.3613762855529785, + -0.3446308374404907, + -0.1011548861861229, + -0.3012189269065857, + -0.02459586225450039, + -0.4447677433490753, + -0.22453542053699493, + 0.1441662758588791, + -0.3610188961029053, + -0.16058175265789032, + 0.25536420941352844, + 0.14051537215709686, + 0.11507883667945862, + 0.125632181763649, + -0.3028871715068817, + -0.4414997100830078, + 0.12171987444162369, + 0.44699159264564514, + -0.07384810596704483, + 0.055923253297805786, + -0.2615223824977875, + 0.25376811623573303, + 0.5499110817909241, + -0.12618230283260345, + -0.13409112393856049, + 0.024104351177811623, + 0.18812449276447296, + -0.229927197098732, + -0.03431566059589386, + -0.10431947559118271, + 0.2295948714017868, + -0.44498029351234436, + 0.02819477766752243, + 0.015521925874054432, + -0.4733261168003082, + 0.11836191266775131, + -0.2954564392566681, + -0.4829397201538086, + 0.10651502013206482, + 0.3445877134799957, + -0.051440875977277756, + 0.13554584980010986, + 0.0506732352077961, + 0.4395820200443268, + 0.08662901073694229, + -0.18536098301410675, + 0.2140907198190689, + -0.48223161697387695, + -0.02478078007698059, + 0.22532819211483002, + -0.1257062405347824, + 0.2698558568954468, + -0.09194726496934891, + 0.19092683494091034, + 0.44144532084465027, + 0.06286539137363434, + -0.4876507818698883, + 0.19771629571914673, + 0.2587491571903229, + 0.3993764817714691, + -0.21249842643737793, + -10.696544647216797, + 0.3267917037010193, + -0.1931016594171524, + 0.45036229491233826, + -0.08852332830429077, + 0.05742527171969414, + -0.3659094572067261, + 0.054845016449689865, + 0.050520434975624084, + 0.11332130432128906, + -0.11314848810434341, + 0.0736548900604248, + 0.16164906322956085, + 0.26976752281188965, + 0.09283443540334702, + 0.02761017717421055, + -0.31051892042160034, + 0.3553762435913086, + -0.1742977648973465, + 0.2205958366394043, + 0.34635546803474426, + 0.4062264859676361, + -0.35396823287010193, + 0.2646059989929199, + 0.16952429711818695, + -0.22071988880634308, + -0.09732081741094589, + 0.3406055271625519, + 0.05119972303509712, + -0.31444260478019714, + 0.4091686010360718, + 0.12900780141353607, + -0.3823615610599518, + -0.037645064294338226, + 0.11201243847608566, + -0.24389010667800903, + -0.189349964261055, + 0.2016192078590393, + 0.09059354662895203, + 0.05876535177230835, + 0.18239140510559082, + -0.3371480405330658, + -0.1271895319223404, + 0.20678092539310455, + -0.16091510653495789, + -0.3933931291103363, + -0.09605833142995834, + -1.3924120664596558, + 0.041603922843933105, + 0.40078845620155334, + 0.6122336387634277, + -0.031026005744934082, + 0.09205054491758347, + 0.13186831772327423, + -0.4089258015155792, + -0.039451923221349716, + -0.17487145960330963, + 0.11786512285470963, + 0.11953631043434143, + -0.23365505039691925, + 0.014726396650075912, + -0.027913773432374, + 0.34021639823913574, + -0.4306485652923584, + -0.4140009582042694, + 0.25939080119132996, + -0.07822064310312271, + 0.0587964802980423, + 0.06297113001346588, + 0.05746515467762947, + -0.6372826099395752, + -0.10111063718795776, + 0.11570742726325989, + 0.014021371491253376, + 0.4960898458957672, + 0.02326870895922184, + -0.6462897658348083, + 0.14166639745235443, + -0.06939949840307236, + 0.526535153388977, + 0.013086249120533466, + 0.043429940938949585, + 0.16642211377620697, + -0.05013129487633705, + -0.1368580460548401, + -0.4777989089488983, + 0.0451304130256176, + 0.5684677362442017, + -0.03262486681342125, + -0.006404608488082886, + -0.04261365905404091, + 0.09246858209371567, + -0.17152021825313568, + -0.12491945177316666, + -0.5599517226219177, + 0.22403578460216522, + -0.002937018871307373, + -0.016761846840381622, + 0.02910032868385315, + -0.24091923236846924, + 0.0761120393872261, + -0.21871237456798553, + -0.012899058870971203, + -0.5061669945716858, + -0.2397974282503128, + 0.21639524400234222, + 0.2235356718301773, + -0.06739028543233871, + 0.19935816526412964, + -0.0274154394865036, + 0.18605439364910126, + 0.024828828871250153, + 0.36120685935020447, + 0.4014972150325775, + 0.2253611832857132, + 0.036079224199056625, + -0.25269997119903564, + -0.11901547759771347, + -0.21596413850784302, + 0.20858030021190643, + 0.28345775604248047, + -0.12829269468784332, + 0.3251263201236725, + 0.6155745387077332, + 0.038912683725357056, + -0.19988779723644257, + 0.7746531367301941, + -0.175467848777771, + 0.4368321895599365, + 4.738072675536387e-05, + 0.1368003487586975, + 0.04108123853802681, + -0.3866727352142334, + 0.2919377088546753, + 0.21532011032104492, + -0.38474133610725403, + 0.46949830651283264, + 0.07764176279306412, + -0.24931935966014862, + -0.015154749155044556, + -0.40230438113212585, + 0.3921107351779938, + 0.07843241840600967, + 0.3270377516746521, + 0.020024141296744347, + -0.26750925183296204, + -0.2359234094619751, + 0.019181398674845695, + -0.3531128168106079, + -0.1538238376379013, + -0.21520940959453583, + 0.04078909382224083, + 0.043268799781799316, + -0.23968857526779175, + 0.29185494780540466, + 0.07115846127271652, + -0.07164786756038666, + 0.10682477802038193, + -0.3784548044204712, + -0.3577486574649811, + -0.1471642553806305, + 0.5361248850822449, + 0.06279879063367844, + -0.06982944905757904, + -0.12452534586191177, + 0.3395889103412628, + -0.03245915099978447, + 0.12318012118339539, + 0.05687183514237404, + 0.10818618535995483, + -0.4374234974384308, + 0.1441798061132431, + 0.1358024924993515, + -0.43465766310691833, + -0.22156845033168793, + -0.4098415672779083, + 0.23547561466693878, + 0.041761819273233414, + -0.1572698950767517, + 0.47256746888160706, + 0.4554685652256012, + 0.04705950990319252, + 0.06323787569999695, + -0.20251940190792084, + 0.3220158815383911, + 0.2226671427488327, + -0.05750179663300514, + 0.25517570972442627, + -0.21750958263874054, + -0.3569756746292114, + -0.27008959650993347, + 0.02801072597503662, + -0.2674688398838043, + 0.13896159827709198, + -0.15346553921699524, + 0.21098242700099945, + -0.4238058626651764, + 0.09534284472465515, + -0.10380738228559494, + 0.13649247586727142, + -0.24735979735851288, + 0.10851240158081055, + 0.29225099086761475, + -0.5054976940155029, + 0.2565760612487793, + -0.11907598376274109, + 0.17706717550754547, + 0.2255607396364212, + -0.3712857663631439, + 0.08376073837280273, + -0.10963030904531479 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_081.json b/src/benchmark/output/results/results_graph_081.json new file mode 100644 index 0000000..47919eb --- /dev/null +++ b/src/benchmark/output/results/results_graph_081.json @@ -0,0 +1,792 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 46-year-old woman who was incidentally found to have a pulmonary nodule during a routine health examination. No symptoms were reported, and she had no significant medical history, including no history of tuberculosis or lung infections.\n\n**Initial Diagnosis (Step 1):**\nA chest radiograph revealed a solitary pulmonary nodule in the left lower lung field. The patient was diagnosed with a pulmonary nodule (code: 7225005) and underwent further evaluation.\n\n**Biopsy and Initial Treatment (Steps 2-3):**\nA peripheral pulmonary nodule was identified on a chest CT scan, which led to the performance of an endobronchial ultrasound transbronchial lung biopsy. The procedure was successful, but minor bleeding occurred. Biopsy specimens revealed granulomatous inflammation. Following this, a transbronchial lung cryobiopsy was performed four times through the same guide sheath, also with minor bleeding.\n\n**Post-Biopsy Complications and Treatment Initiation (Step 3):**\nAfter the cryobiopsy, increased density in the lower zone of the left lung was observed on chest radiograph. Tissue sample PCR tests were negative for Mycobacterium tuberculosis and NTM. However, one week post-biopsy, follow-up outpatient chest radiographs revealed an enlarged shadow at the location of the original lesion. The patient reported discharge of a purulent and intermittent blood-tinged sputum, which led to the initiation of antibiotic therapy with moxifloxacin (400 mg daily).\n\n**Response to Antibiotics and Follow-Up (Step 4):**\nTwo weeks after starting antibiotics, chest radiographs indicated a slight increase in the size of the lesion. However, there was an improvement in her symptoms, with no other abnormal findings such as fever. The antibiotic therapy continued with regular outpatient follow-ups.\n\n**Lesion Improvement and Acid-Fast Bacilli Growth (Step 5):**\nThree weeks after tissue biopsy, chest radiographs showed improvement in the lesion size. Notably, growth of acid-fast bacilli was reported in the bronchoalveolar lavage fluid obtained during examination.\n\n**Outcome:**\nThe patient's symptoms improved significantly with antibiotic therapy and follow-up care. The growth of acid-fast bacilli in the bronchoalveolar lavage fluid suggested that the patient had a Mycobacterium tuberculosis infection, which was confirmed by PCR tests. However, due to the presence of granulomatous inflammation in biopsy specimens, it is possible that the patient had an NTM infection as well.\n\n**Conclusion:**\nThe patient's case highlights the importance of prompt evaluation and treatment for pulmonary nodules, particularly those with granulomatous inflammation or acid-fast bacilli growth. Early detection and management can significantly improve outcomes and prevent complications.", + "bertscore": { + "precision": 0.7984694242477417, + "recall": 0.855120837688446, + "f1": 0.8258247375488281 + }, + "bleu": 0.10369187817964154, + "rouge1": 0.4070175438596491, + "rougeL": 0.24912280701754386, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 2, + "node_count": 6, + "edge_count": 4, + "avg_in_degree": 0.6666666666666666, + "density": 0.13333333333333333 + }, + "trajectory_embedding": [ + 0.1967584788799286, + 0.11755304038524628, + -0.10197411477565765, + -0.01451544463634491, + -0.10492626577615738, + -0.16041645407676697, + 0.15277233719825745, + 0.07490139454603195, + 0.196526437997818, + -0.2453027218580246, + -0.23723392188549042, + 0.15686118602752686, + -0.45318803191185, + -0.14287793636322021, + -0.1919034719467163, + -0.01922443136572838, + 0.09047435224056244, + 0.2307237833738327, + 0.06612925231456757, + -0.30490654706954956, + -0.5095926523208618, + 0.09057998657226562, + -0.3310241401195526, + -0.15016674995422363, + 0.09834185242652893, + 0.00662646722048521, + 0.05036105588078499, + 0.5195268392562866, + 0.2559052109718323, + 0.49741601943969727, + 0.20520301163196564, + 0.1978311538696289, + -0.23709924519062042, + 0.05779299885034561, + -0.2160702645778656, + 0.35687413811683655, + 0.18609383702278137, + 0.4006708264350891, + -0.07851338386535645, + -0.013639949262142181, + -0.023297805339097977, + 0.01679356023669243, + 0.8863866925239563, + 0.39117974042892456, + 0.6297079920768738, + -0.7095476388931274, + 0.08873630315065384, + 0.47203999757766724, + -0.5215798616409302, + -0.2589757442474365, + 0.2998557984828949, + 0.6878936290740967, + 0.616496741771698, + -0.103790782392025, + 0.48690876364707947, + -0.13505902886390686, + -0.38761240243911743, + -0.21568915247917175, + -0.29627087712287903, + 0.08889561146497726, + -0.004067690577358007, + -0.0721888542175293, + 0.08505629748106003, + -0.059112370014190674, + -0.3711683452129364, + -0.1344449818134308, + -0.15514591336250305, + 0.04374406486749649, + 0.001033145235851407, + -0.47192955017089844, + -0.23844489455223083, + -0.271122545003891, + -0.0970202088356018, + 0.018400097265839577, + -0.016769196838140488, + -0.17139652371406555, + 0.3182295560836792, + -0.013026106171309948, + -0.05352813005447388, + -0.04483800753951073, + -0.02286483719944954, + 0.17096233367919922, + 0.10240630805492401, + 0.040907151997089386, + -0.1877213716506958, + 0.17709025740623474, + -0.0719011202454567, + -0.1333617866039276, + -0.1893998384475708, + 0.21347680687904358, + 0.19486841559410095, + -0.16797563433647156, + 0.08185581117868423, + -0.13447889685630798, + 0.13286735117435455, + -0.19486990571022034, + 0.1648717224597931, + 0.4256727695465088, + 1.1231606006622314, + 0.014604246243834496, + 0.19181255996227264, + 0.10960622131824493, + 0.20627649128437042, + -0.13242535293102264, + 0.4895930886268616, + -0.04705680534243584, + 0.07572434842586517, + -0.6876301765441895, + -0.30880647897720337, + 0.30060893297195435, + 0.014305981807410717, + -0.18023338913917542, + 0.1903560310602188, + -0.3354260325431824, + 0.022099385038018227, + 0.12615585327148438, + -0.2117345780134201, + 0.17497646808624268, + -0.13861685991287231, + -0.2423783838748932, + 0.07328806817531586, + -0.06552425771951675, + 0.3177458941936493, + 0.31820210814476013, + -0.37602055072784424, + -0.10976444184780121, + -0.132036030292511, + 0.10575046390295029, + 0.045866478234529495, + 0.04125301539897919, + -0.5529741048812866, + -0.15419010818004608, + 0.016441548243165016, + 0.3415800929069519, + -0.1986306607723236, + 0.16156351566314697, + -0.3381054997444153, + 0.3312362730503082, + -1.1593300104141235, + 0.2070571929216385, + -0.5770875811576843, + 0.041539017111063004, + 0.08659698069095612, + -0.40547579526901245, + -0.22364994883537292, + -0.25963708758354187, + -0.22558438777923584, + -0.001673890626989305, + 0.023335684090852737, + -0.13531021773815155, + -0.22158853709697723, + 0.13990099728107452, + 0.27269506454467773, + 0.21471509337425232, + 0.21108976006507874, + 0.2316681444644928, + 0.12973514199256897, + 0.33893221616744995, + 0.2858162522315979, + 0.04344502091407776, + 0.03169308975338936, + 0.22765187919139862, + -0.10976984351873398, + -0.4443940222263336, + -0.032376062124967575, + -0.7336358428001404, + 0.28923705220222473, + -0.273898184299469, + 0.3324330747127533, + 0.049167972058057785, + -0.15189211070537567, + 0.13944867253303528, + -0.21886488795280457, + 0.5503464937210083, + 0.2171466052532196, + 0.6291339993476868, + 0.11273552477359772, + 0.11478869616985321, + 0.3419473171234131, + 0.0773049145936966, + 0.20578324794769287, + 0.033577218651771545, + 0.522563099861145, + 0.17831286787986755, + -0.23628458380699158, + 0.1833256185054779, + 0.3928374648094177, + -0.1809474527835846, + -0.18037357926368713, + -0.26165372133255005, + 0.44358858466148376, + -0.1424209624528885, + 0.4192637503147125, + -0.3868114948272705, + 0.18567727506160736, + -0.04453083127737045, + -0.3912268280982971, + -0.3401441276073456, + 0.12440862506628036, + -0.06588377803564072, + 0.21651992201805115, + 0.18031904101371765, + 0.0385860837996006, + 0.05526469275355339, + 0.17041175067424774, + -0.14128008484840393, + 0.30237168073654175, + 0.05587827414274216, + 0.03877586871385574, + -0.2750449776649475, + -0.18203917145729065, + 0.17013022303581238, + 0.027720388025045395, + 0.3112988770008087, + 0.0004239678382873535, + -0.19901946187019348, + 0.35572659969329834, + -0.09977003931999207, + -0.07894817739725113, + 0.35504937171936035, + -0.1763714849948883, + -0.05377941578626633, + 0.23651878535747528, + -0.0997595340013504, + -0.25139355659484863, + 0.2593649923801422, + 0.19310155510902405, + 0.1784505844116211, + 0.14192160964012146, + -0.02237403765320778, + 0.09491994231939316, + -0.2859984040260315, + 0.09121128916740417, + -0.12167664617300034, + -0.020334120839834213, + -0.31394022703170776, + 0.1018623560667038, + -0.23500454425811768, + -0.287008672952652, + 0.30209246277809143, + -0.10152151435613632, + -0.12201225757598877, + -0.004989572800695896, + -0.13312369585037231, + 0.07816831767559052, + -0.4034978449344635, + 0.02433887869119644, + 0.3271365463733673, + 0.1338953673839569, + 0.3997375965118408, + -0.003557264804840088, + -0.10331934690475464, + 0.2821424603462219, + -0.3583966791629791, + -0.18959423899650574, + -0.4298092722892761, + -0.24525706470012665, + -0.028561707586050034, + -0.2585803270339966, + 0.02835909090936184, + 0.16634607315063477, + -0.18870027363300323, + 0.034991130232810974, + -0.27091091871261597, + -0.19668790698051453, + -0.0402541346848011, + 0.013429408892989159, + 0.1116127148270607, + 0.005450990982353687, + 0.11936700344085693, + -0.2617207169532776, + -0.26540863513946533, + -0.21895503997802734, + -0.00697906780987978, + 0.43251949548721313, + 0.13050711154937744, + -0.12339681386947632, + 0.09212832152843475, + 0.12126436084508896, + -0.40955519676208496, + -0.4810248017311096, + 0.3085540235042572, + -0.23617903888225555, + 0.18699748814105988, + -0.2609942555427551, + 0.12072405964136124, + 0.3376457989215851, + -0.08947847783565521, + 0.2665684223175049, + 0.4064629077911377, + 0.595430850982666, + 0.1510598510503769, + -0.1242670863866806, + -0.05659446865320206, + -0.1701529175043106, + -0.08453353494405746, + -0.3949616253376007, + 0.12916430830955505, + -0.036906905472278595, + -0.07092710584402084, + 0.013966059312224388, + 0.19560974836349487, + 0.150782972574234, + -0.5805098414421082, + -0.3237167298793793, + 0.49967679381370544, + 0.18696358799934387, + 0.0732409656047821, + 0.12247307598590851, + 0.47614988684654236, + 0.658728301525116, + -0.055910222232341766, + -0.12764811515808105, + -0.09892571717500687, + -0.1056193932890892, + -0.07365167886018753, + 0.031886883080005646, + 0.04897140711545944, + 0.1582757979631424, + -0.11084697395563126, + -0.039983734488487244, + 0.37840741872787476, + -0.13775819540023804, + -0.050096262246370316, + -0.08499650657176971, + 0.06984605640172958, + -0.008826404809951782, + -0.3178556561470032, + 0.3040192127227783, + -0.20485036075115204, + 0.07680967450141907, + 0.29083776473999023, + -0.19122250378131866, + -0.24821750819683075, + 0.23540492355823517, + -0.0535007119178772, + -0.5578641891479492, + 0.3456767797470093, + 0.03510328009724617, + -0.012471387162804604, + 0.3001169264316559, + -0.06599339842796326, + -0.025053720921278, + -0.23139193654060364, + 0.1550685465335846, + -0.024350982159376144, + -0.09205859154462814, + -0.16618546843528748, + -0.016404826194047928, + 0.2525540888309479, + 0.6022517085075378, + 0.08816401660442352, + 0.10629606246948242, + 0.16338548064231873, + -0.2172541618347168, + -0.08184953778982162, + -0.05518527701497078, + 0.16355881094932556, + 0.07710406929254532, + -0.34773483872413635, + -0.3526677191257477, + -0.13999369740486145, + 0.23183484375476837, + 0.1087949126958847, + -0.3482573628425598, + 0.014906858094036579, + 0.08469434082508087, + 0.05313107371330261, + 0.008774049580097198, + 0.47105151414871216, + 0.2699393630027771, + 0.07613404095172882, + 0.5814527273178101, + 0.13844969868659973, + -0.0005095645901747048, + 0.39449113607406616, + -0.12463782727718353, + 0.2951422929763794, + -0.15823331475257874, + -0.35080814361572266, + -0.39777132868766785, + -0.03351239114999771, + -0.13526272773742676, + -0.1285906583070755, + -0.0751277357339859, + -0.14558455348014832, + -0.04340607300400734, + -0.03976156562566757, + 0.2588410973548889, + -0.0009872585069388151, + 0.3498977720737457, + 0.07360564917325974, + 0.5455833673477173, + -0.18349774181842804, + -0.38231438398361206, + 0.13607379794120789, + 0.0570128932595253, + 0.33573341369628906, + -0.21956348419189453, + -0.09788881242275238, + -0.08872657269239426, + 0.4655590057373047, + 0.14583882689476013, + 0.04268839210271835, + -0.005775381810963154, + -0.12465288490056992, + -0.28661924600601196, + -0.4029368758201599, + -0.02991427853703499, + -0.07861411571502686, + -0.10777866840362549, + -0.0660325139760971, + 0.10481926053762436, + -0.17538830637931824, + -0.24541553854942322, + -0.1628335416316986, + 0.3443373441696167, + 0.11073631048202515, + -0.09838424623012543, + 0.14871425926685333, + 0.19977399706840515, + 0.061921097338199615, + 0.1626061350107193, + -0.15568161010742188, + 0.15809091925621033, + 0.049261003732681274, + -0.323628693819046, + -0.17337563633918762, + 0.1320417821407318, + -0.20197324454784393, + 0.07686629146337509, + 0.22195568680763245, + 0.10613276064395905, + 0.07440101355314255, + -0.04423122853040695, + -0.039701320230960846, + 0.13017937541007996, + -0.31522631645202637, + -0.1482960730791092, + 0.354005366563797, + 0.08942903578281403, + 0.5207788944244385, + -0.07138728350400925, + -0.39649564027786255, + -0.1881406307220459, + -0.051238853484392166, + -0.49282771348953247, + 0.1420252025127411, + 0.04195072129368782, + -0.20293235778808594, + -0.0009160101180896163, + -0.06400282680988312, + -0.06789351999759674, + 0.11302666366100311, + 0.1083294004201889, + 0.12636366486549377, + 0.18581880629062653, + -0.04183664172887802, + -0.3641246259212494, + 0.001423469977453351, + -0.16934354603290558, + -0.3309791684150696, + -0.32710108160972595, + 0.5034326314926147, + 0.2902287542819977, + -0.1912984549999237, + -0.1568678319454193, + 0.032605670392513275, + -0.28300338983535767, + -0.39163199067115784, + -0.06383704394102097, + -0.023489903658628464, + 0.4418272376060486, + 0.08311082422733307, + -0.22698771953582764, + 0.1376923769712448, + -0.4899768829345703, + 0.2032603919506073, + 0.2570874094963074, + 0.2502760589122772, + 0.38838991522789, + 0.20617978274822235, + 0.14174334704875946, + 0.35771575570106506, + -0.04101404920220375, + -0.0474872924387455, + 0.3207376003265381, + -0.03652804344892502, + 0.07369537651538849, + -0.08303757011890411, + -0.2517068386077881, + 0.3582306206226349, + -0.24164530634880066, + 0.0818767324090004, + 0.1574096381664276, + 0.42581015825271606, + -0.28995266556739807, + -0.2653692960739136, + 0.08564826846122742, + -0.03156302124261856, + -0.24595478177070618, + -0.2383064329624176, + -0.13157084584236145, + 0.2366458922624588, + -0.20988348126411438, + -0.11875996738672256, + 0.3080471158027649, + 0.2202942818403244, + 0.11700955778360367, + 0.14630641043186188, + -0.1308034211397171, + -0.45798367261886597, + 0.14316794276237488, + 0.3176949918270111, + 0.03274453803896904, + 0.06208207085728645, + -0.02162250317633152, + 0.2123701274394989, + 0.438167005777359, + 0.03665542975068092, + -0.059164345264434814, + -0.030929673463106155, + -0.032955143600702286, + -0.02877996489405632, + 0.0842398852109909, + -0.07172457128763199, + 0.36094698309898376, + -0.4424992501735687, + 0.18416765332221985, + -0.0875607430934906, + -0.17548903822898865, + 0.2712807059288025, + -0.2529817819595337, + -0.5398637652397156, + -0.04372246190905571, + 0.28851327300071716, + -0.18448667228221893, + 0.04821692779660225, + 0.041026897728443146, + 0.590768039226532, + 0.18769490718841553, + -0.18967285752296448, + 0.012890934944152832, + -0.48902541399002075, + 0.0940120592713356, + 0.15024730563163757, + -0.21602514386177063, + 0.08296173065900803, + -0.08159513771533966, + 0.31601592898368835, + 0.26593291759490967, + 0.10108325630426407, + -0.4523289203643799, + -0.008006530813872814, + 0.0958816409111023, + 0.35121482610702515, + -0.24566808342933655, + -10.958778381347656, + 0.1552482694387436, + -0.18667428195476532, + 0.4413946270942688, + -0.18904879689216614, + 0.014782565645873547, + -0.021532554179430008, + -0.2302398681640625, + 0.14519324898719788, + 0.22123464941978455, + -0.18127699196338654, + 0.21586795151233673, + 0.479623943567276, + 0.1667996197938919, + -0.09335207939147949, + -0.2573135197162628, + -0.21420522034168243, + 0.15133711695671082, + 0.10076852887868881, + 0.18418823182582855, + 0.32067394256591797, + 0.5369850993156433, + -0.18111565709114075, + 0.3282756805419922, + 0.19153852760791779, + -0.0699005275964737, + -0.30830711126327515, + 0.47705382108688354, + 0.08514488488435745, + -0.3933911919593811, + 0.3122265636920929, + 0.015570787712931633, + -0.2844651937484741, + -0.08435386419296265, + -0.005672072060406208, + -0.18978936970233917, + -0.13896335661411285, + 0.00787820853292942, + -0.056989885866642, + 0.009688363410532475, + -0.09942108392715454, + -0.19827315211296082, + -0.046481985598802567, + 0.3088589310646057, + -0.08347553014755249, + -0.4935165047645569, + -0.23201560974121094, + -1.3872177600860596, + 0.24801094830036163, + 0.3378968834877014, + 0.42845863103866577, + -0.05316653847694397, + 0.20878544449806213, + 0.028127018362283707, + -0.48170119524002075, + 0.09582778811454773, + -0.3368637263774872, + 0.18246391415596008, + 0.11837492883205414, + -0.025051334872841835, + 0.2739103436470032, + -0.283103883266449, + 0.4177383482456207, + -0.35837915539741516, + -0.3229537606239319, + 0.20335514843463898, + 0.04449812322854996, + -0.0026281073223799467, + -0.1372441202402115, + -0.24562866985797882, + -0.4445008337497711, + -0.11594490706920624, + 0.06675887107849121, + 0.09147355705499649, + 0.37978532910346985, + -0.032876722514629364, + -0.4610574245452881, + 0.008209247142076492, + -0.04638725891709328, + 0.2249755561351776, + 0.05482844263315201, + -0.0340719111263752, + 0.17114558815956116, + -0.19636854529380798, + -0.1131758913397789, + -0.14046898484230042, + 0.09365930408239365, + 0.4669206142425537, + -0.006150448229163885, + 0.15386368334293365, + 0.07898272573947906, + 0.2962016463279724, + 0.006034079007804394, + -0.14803515374660492, + -0.3734908103942871, + 0.0664379820227623, + 0.07693399488925934, + 0.024192025884985924, + 0.13989874720573425, + -0.047955237329006195, + -0.1367001086473465, + -0.26667124032974243, + -0.045901279896497726, + -0.31072068214416504, + -0.35135409235954285, + 0.2985505163669586, + 0.23715749382972717, + 0.19511640071868896, + 0.1346515566110611, + 0.045594412833452225, + 0.19078651070594788, + 0.011736370623111725, + 0.4168233871459961, + 0.46678799390792847, + 0.10142551362514496, + -0.15040293335914612, + -0.29881346225738525, + 0.03443441540002823, + -0.3443596363067627, + 0.09844528138637543, + 0.200627401471138, + -0.15900373458862305, + 0.3771199584007263, + 0.5476076602935791, + -0.1625971645116806, + -0.08211658895015717, + 1.0174540281295776, + -0.1810964047908783, + 0.518316388130188, + -0.243841290473938, + 0.382476270198822, + -0.16473765671253204, + -0.12902195751667023, + 0.008411785587668419, + 0.21668043732643127, + -0.37741798162460327, + 0.3656461238861084, + 0.03293965011835098, + -0.36173003911972046, + 0.132867693901062, + -0.37806540727615356, + 0.43903571367263794, + 0.370775431394577, + 0.23582184314727783, + -0.15002946555614471, + -0.389586865901947, + -0.1460159420967102, + -0.01017976738512516, + -0.36394616961479187, + -0.28960341215133667, + -0.011743366718292236, + -0.026663970202207565, + 0.0770261138677597, + -0.29801955819129944, + 0.340511679649353, + -0.011794021353125572, + -0.03801155835390091, + -0.28990668058395386, + -0.4511684477329254, + -0.06559505313634872, + 0.2513965666294098, + 0.5489107370376587, + 0.19864584505558014, + 0.04395604878664017, + -0.2080826312303543, + 0.2761658728122711, + 0.09557073563337326, + 0.2297014743089676, + 0.15037715435028076, + -0.008760035037994385, + -0.44482526183128357, + 0.016140419989824295, + 0.06326471269130707, + -0.3390626311302185, + -0.23110362887382507, + -0.3911399245262146, + 0.2593574523925781, + -0.09236723184585571, + -0.2182852029800415, + 0.4117717146873474, + 0.31265297532081604, + -0.015294261276721954, + 0.03804130479693413, + -0.2940312325954437, + 0.3178632855415344, + 0.08148939907550812, + 0.06908852607011795, + 0.2116161584854126, + -0.13141874969005585, + -0.41269150376319885, + -0.4795854091644287, + 0.3196330666542053, + -0.1977824866771698, + -0.06255056709051132, + 0.22282274067401886, + 0.26462727785110474, + -0.3254283368587494, + -0.036457810550928116, + -0.205780029296875, + -0.09411490708589554, + -0.2870650887489319, + 0.034763045608997345, + 0.24220585823059082, + -0.3924984931945801, + 0.04178700968623161, + -0.20928111672401428, + 0.21435411274433136, + -0.0046385168097913265, + -0.4735918939113617, + 0.2721315026283264, + -0.15266039967536926 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_082.json b/src/benchmark/output/results/results_graph_082.json new file mode 100644 index 0000000..a0a5a15 --- /dev/null +++ b/src/benchmark/output/results/results_graph_082.json @@ -0,0 +1,792 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is an adult with unknown age, sex, and ethnicity. The patient's demographic information is not provided in the data.\n\n**Initial Presentation:**\nThe patient presented with symptoms of intracranial hypertension, including nausea and vomiting (Step 1). This was the initial presentation that led to further investigation.\n\n**Diagnosis:**\nFurther investigation revealed brain MRI suggesting leptomeningeal metastases (Step 2). Lumbar puncture was performed, and cerebrospinal fluid cytology confirmed leptomeningeal metastases (Step 3).\n\n**Treatment:**\nThe patient received treatment for the diagnosed condition. The treatment sequence included initial monotherapy with Olaparib, followed by combination therapy with intrathecal chemotherapy, and eventually a triple combination of Olaparib, Furmonertinib, and intrathecal chemotherapy (Step 5). Intrathecal pemetrexed was administered since October 2021 (Step 8).\n\n**Progression:**\nSymptoms of leptomeningeal metastases worsened dramatically, including lethargy, unresponsiveness, difficulty in eating and swallowing, necessitating intravenous nutritional support. The patient's ECOG performance status declined to 4 (Step 9). This marked a significant progression of the disease.\n\n**Outcome:**\nThe patient experienced a durable response to Olaparib lasting approximately 21 months (Step 6). However, the worsening of leptomeningeal metastases symptoms and decline in functional status necessitated further treatment adjustments.\n\n**Timeline:**\n\n* Step 1: Initial presentation with intracranial hypertension symptoms\n* Step 2: Diagnosis of leptomeningeal metastases confirmed by brain MRI\n* Step 3: Lumbar puncture performed, and cerebrospinal fluid cytology confirmed leptomeningeal metastases\n* Step 4: Placement of Ommaya reservoir for treatment delivery\n* Step 5: Identification of EGFR and BRCA2 mutations\n* Step 6: Initiation of Olaparib therapy with durable response lasting approximately 21 months\n* Step 7: Treatment escalation to combination therapy with intrathecal chemotherapy\n* Step 8: Administration of intrathecal pemetrexed since October 2021\n* Step 9: Worsening of leptomeningeal metastases symptoms and decline in functional status\n\n**Conclusion:**\nThe patient was diagnosed with leptomeningeal metastases and received treatment with Olaparib, Furmonertinib, and intrathecal chemotherapy. The patient experienced a durable response to Olaparib but ultimately required further treatment adjustments due to worsening of symptoms and decline in functional status.", + "bertscore": { + "precision": 0.6957451701164246, + "recall": 0.6707550287246704, + "f1": 0.683021605014801 + }, + "bleu": 0.0058559256287235755, + "rouge1": 0.27283653846153844, + "rougeL": 0.13701923076923075, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 9, + "edge_count": 8, + "avg_in_degree": 0.8888888888888888, + "density": 0.1111111111111111 + }, + "trajectory_embedding": [ + 0.2321387678384781, + 0.21690434217453003, + -0.13298587501049042, + 0.17195039987564087, + 0.08285973221063614, + 0.15777303278446198, + 0.1095961406826973, + 0.3161073923110962, + 0.6317851543426514, + -0.3226621448993683, + -0.16632980108261108, + -0.09433408826589584, + -0.4814378321170807, + -0.1313047707080841, + -0.1984696239233017, + 0.20387743413448334, + -0.17162606120109558, + 0.3204534351825714, + -0.1586170792579651, + -0.26370200514793396, + -0.2706388831138611, + 0.18940262496471405, + -0.5221731662750244, + 0.04878344386816025, + 0.2266974151134491, + -0.012427234090864658, + 0.4797787666320801, + 0.46920332312583923, + 0.14035525918006897, + 0.3257744312286377, + 0.24380451440811157, + -0.166899636387825, + 0.2893010377883911, + -0.039560362696647644, + -0.2734023630619049, + 0.23752985894680023, + 0.20651304721832275, + 0.3188893496990204, + -0.20043008029460907, + -0.11706345528364182, + -0.18332546949386597, + 0.17445293068885803, + 0.7743752002716064, + 0.08205122500658035, + 0.23915736377239227, + -0.7428591251373291, + -0.04924800619482994, + 0.7199587225914001, + -0.38477906584739685, + -0.21090008318424225, + 0.104608453810215, + 0.6532189249992371, + 0.5980007648468018, + -0.4038098454475403, + 0.37096863985061646, + -0.13066591322422028, + -0.23341801762580872, + -0.27571526169776917, + -0.03005458228290081, + 0.0269158948212862, + 0.10931164771318436, + -0.3425520658493042, + 0.53485506772995, + -0.14938877522945404, + -0.055554598569869995, + -0.19759920239448547, + -0.38475221395492554, + 0.13391579687595367, + 0.03170972689986229, + -0.23532690107822418, + -0.14053985476493835, + -0.17415179312229156, + -0.1328158974647522, + 0.0783407986164093, + 0.06725612282752991, + -0.14941972494125366, + 0.36957287788391113, + -0.09880896657705307, + 0.2859645485877991, + 0.13756534457206726, + -0.07493588328361511, + -0.2673470079898834, + -0.13783973455429077, + 0.3599308133125305, + -0.37491944432258606, + 0.026016056537628174, + -0.09932079166173935, + -0.2914217710494995, + -0.45115673542022705, + 0.1520828902721405, + 0.18869808316230774, + -0.4931562840938568, + -0.010296214371919632, + -0.14578579366207123, + -0.24964986741542816, + 0.3410227596759796, + 0.5356318950653076, + 0.22401346266269684, + 0.8752002120018005, + 0.034442733973264694, + 0.18533559143543243, + -0.011364172212779522, + 0.23873403668403625, + 0.11654799431562424, + 0.3551432490348816, + -0.07367101311683655, + 0.24003073573112488, + -0.39562472701072693, + 0.45079168677330017, + 0.5177969932556152, + 0.05184287205338478, + -0.2172677367925644, + -0.02474474161863327, + -0.24100174009799957, + 0.21692360937595367, + 0.09887711703777313, + -0.005903956014662981, + 0.23158147931098938, + 0.39525362849235535, + -0.4927232563495636, + -0.20930692553520203, + -0.1525554060935974, + 0.2340666949748993, + 0.2894437611103058, + -0.4364595115184784, + -0.15432722866535187, + 0.012784999795258045, + -0.10396796464920044, + 0.14257001876831055, + 0.06437940150499344, + -0.54007488489151, + -0.17571592330932617, + -0.1029973030090332, + -0.0035306746140122414, + -0.022652549669146538, + 0.2993495464324951, + -0.29680120944976807, + -0.07497605681419373, + -1.0333720445632935, + 0.1574767529964447, + -0.3388834595680237, + -0.02164190076291561, + -0.02024262398481369, + -0.5749215483665466, + -0.1911149024963379, + -0.11968222260475159, + -0.047109559178352356, + 0.20656737685203552, + -0.15078364312648773, + 0.07706673443317413, + 0.17380134761333466, + -0.027967853471636772, + 0.17246288061141968, + 0.6322152614593506, + -0.09429371356964111, + -0.09425117820501328, + -0.1005435660481453, + 0.27780574560165405, + -0.02411803789436817, + -0.2806572914123535, + 0.11907589435577393, + 0.5754642486572266, + 0.1282690167427063, + 0.13690246641635895, + -0.045188870280981064, + -0.6606748104095459, + -0.11796616017818451, + -0.13776057958602905, + -0.03081599622964859, + 0.023025982081890106, + -0.16415655612945557, + 0.12419463694095612, + -0.31898191571235657, + 0.5249547958374023, + 0.11519262194633484, + 0.39006736874580383, + -0.028930269181728363, + -0.03873676061630249, + 0.06621502339839935, + 0.14232784509658813, + 0.10392218828201294, + -0.28737324476242065, + 0.5815380811691284, + 0.20524661242961884, + -0.29482993483543396, + 0.08055707067251205, + 0.32685232162475586, + 0.05138382688164711, + -0.16821101307868958, + 0.048467013984918594, + 0.45445358753204346, + -0.33213892579078674, + 0.5481976270675659, + -0.20597487688064575, + -0.05492265522480011, + 0.1342029720544815, + -0.11118301004171371, + -0.008268975652754307, + -0.1078718900680542, + -0.17228849232196808, + 0.2439231276512146, + -0.03028308041393757, + -0.5018696188926697, + 0.08192877471446991, + 0.08865136653184891, + -0.03930472955107689, + 0.1779671311378479, + -0.06625604629516602, + 0.12665000557899475, + 0.05694756284356117, + -0.1731923222541809, + 0.18595761060714722, + -0.07877565920352936, + 0.2311263382434845, + 0.07620473951101303, + -0.3849235773086548, + 0.06372036039829254, + 0.029910210520029068, + -0.13833646476268768, + 0.02667236328125, + 0.0593525692820549, + -0.30689704418182373, + -0.18334664404392242, + 0.026143252849578857, + -0.6388230919837952, + 0.24061448872089386, + 0.1562442034482956, + 0.26038965582847595, + 0.20493437349796295, + -0.009966228157281876, + -0.08852796256542206, + -0.4373973608016968, + 0.4033311605453491, + -0.16011632978916168, + -0.21156269311904907, + -0.3021657466888428, + 0.2776225209236145, + 0.03329296410083771, + 0.18332570791244507, + 0.34908783435821533, + 0.16412930190563202, + -0.07226170599460602, + 0.1213294267654419, + -0.25061866641044617, + -0.08447900414466858, + -0.32366758584976196, + -0.11545757204294205, + 0.3661389648914337, + 0.11831837147474289, + 0.19863973557949066, + 0.001830534776672721, + -0.13246409595012665, + 0.14408306777477264, + -0.18451009690761566, + -0.4749658405780792, + -0.3416128158569336, + -0.06011711061000824, + -0.15638624131679535, + -0.8905529379844666, + 0.22990383207798004, + 0.020609809085726738, + -0.024256084114313126, + 0.14438456296920776, + -0.28529852628707886, + -0.18133389949798584, + 0.0453091524541378, + 0.04394715279340744, + 0.14778703451156616, + -0.32560867071151733, + -0.05184074118733406, + -0.28681889176368713, + -0.16530412435531616, + -0.23358552157878876, + -0.04699363932013512, + -0.04604334756731987, + 0.051691509783267975, + -0.3244750201702118, + 0.05386499688029289, + 0.07786382734775543, + -0.4206526577472687, + -0.031742751598358154, + 0.14321258664131165, + -0.0832904577255249, + 0.23582638800144196, + -0.03683333471417427, + 0.3062823414802551, + 0.31336551904678345, + 0.23778918385505676, + 0.06658102571964264, + 0.3627845048904419, + 0.4264376759529114, + -0.15716463327407837, + 0.11602798849344254, + -0.04199300706386566, + -0.05781729891896248, + 0.012952449731528759, + -0.38692814111709595, + 0.4496104419231415, + 0.04763583466410637, + 0.07640346884727478, + 0.02134767174720764, + 0.2263142466545105, + 0.1556829810142517, + -0.16154444217681885, + 0.0879870355129242, + 0.5677972435951233, + 0.1101783886551857, + 0.30650851130485535, + 0.18602149188518524, + 0.04206172004342079, + 0.34498462080955505, + -0.12158749997615814, + 0.07475732266902924, + 0.31590956449508667, + -0.21387511491775513, + -0.20883548259735107, + 0.04570867121219635, + 0.205436110496521, + 0.5456217527389526, + -0.0827566385269165, + -0.2823386490345001, + 0.010433991439640522, + -0.14818599820137024, + -0.1322748363018036, + -0.47767373919487, + -0.23828785121440887, + 0.14657515287399292, + -0.13094621896743774, + 0.4211950898170471, + 0.1552550494670868, + 0.10307934880256653, + 0.3924437165260315, + -0.45007970929145813, + -0.19524931907653809, + 0.19637852907180786, + -0.047715358436107635, + -0.4149458706378937, + 0.451761931180954, + -0.17692174017429352, + 0.02953188866376877, + 0.3396036624908447, + -0.4550575613975525, + -0.07222536206245422, + 0.02670855075120926, + 0.40141984820365906, + -0.12473922222852707, + 0.07626936584711075, + -0.13415251672267914, + 0.14785300195217133, + 0.06645035743713379, + 0.4957325756549835, + 0.09699738770723343, + 0.1702929139137268, + 0.6872706413269043, + 0.2829357087612152, + -0.37930476665496826, + 0.16456690430641174, + -0.21405503153800964, + 0.45002686977386475, + -0.08109534531831741, + -0.11027415096759796, + -0.15749409794807434, + 0.15757714211940765, + 0.019468694925308228, + -0.48191970586776733, + 0.09577587991952896, + 0.07073184847831726, + 0.06660737842321396, + -0.16472572088241577, + 0.3091772794723511, + 0.14397937059402466, + -0.12026418745517731, + 0.46035417914390564, + 0.054952144622802734, + -0.15828627347946167, + 0.2548198997974396, + -0.13573810458183289, + 0.13682134449481964, + 0.07672722637653351, + -0.17120599746704102, + -0.2893878221511841, + 0.10519368201494217, + -0.1633196324110031, + -0.22734321653842926, + 0.053368985652923584, + -0.23477374017238617, + 0.062383487820625305, + -0.3238946795463562, + 0.09247392416000366, + -0.06669403612613678, + 0.10342297703027725, + 0.13959965109825134, + 0.2993307113647461, + 0.004876384977251291, + -0.18322616815567017, + 0.22953064739704132, + -0.011212851852178574, + -0.01644531637430191, + -0.28216344118118286, + -0.05244489386677742, + -0.058612242341041565, + 0.6431324481964111, + 0.030544890090823174, + 0.010394719429314137, + 0.2178286761045456, + 0.012134628370404243, + -0.08820930868387222, + -0.33631378412246704, + -0.08642658591270447, + -0.11868887394666672, + 0.020618580281734467, + 0.07078506797552109, + -0.0023657067213207483, + -0.3366517722606659, + -0.14392493665218353, + -0.10517843067646027, + -0.060641784220933914, + 0.11253045499324799, + -0.04649192467331886, + -0.19923169910907745, + 0.27346646785736084, + 0.14290545880794525, + 0.3880687952041626, + -0.3179642856121063, + 0.27915796637535095, + 0.10038072615861893, + -0.291927307844162, + 0.05368734523653984, + -0.14396235346794128, + -0.383564829826355, + -0.1171511560678482, + 0.25667038559913635, + 0.2647196054458618, + -0.0411415696144104, + 0.0007586147985421121, + 0.13765031099319458, + 0.1668073982000351, + -0.34136539697647095, + 0.011783978901803493, + 0.33728066086769104, + 0.17744360864162445, + 0.30899062752723694, + 0.12631087005138397, + -0.5341705679893494, + -0.25394147634506226, + -0.13240300118923187, + -0.3269209563732147, + -0.05184200033545494, + 0.27806732058525085, + 0.045400749891996384, + -0.1800965517759323, + 0.11188173294067383, + -0.013657874427735806, + -0.12463458627462387, + 0.32984834909439087, + -0.09468552470207214, + 0.07819320261478424, + 0.0869336947798729, + -0.22058668732643127, + -0.12792256474494934, + -0.20716820657253265, + -0.3093138039112091, + -0.14032422006130219, + 0.08779124170541763, + 0.13037796318531036, + -0.3301854729652405, + 0.0773443803191185, + 0.00472302408888936, + -0.1841503232717514, + -0.09534855931997299, + 0.05773405358195305, + -0.3082595765590668, + 0.34907206892967224, + -0.23738959431648254, + -0.13617658615112305, + 0.07774610072374344, + -0.038083698600530624, + -0.0013292464427649975, + 0.14366605877876282, + 0.03989304602146149, + 0.3381859064102173, + -0.02312176674604416, + -0.03592868521809578, + 0.5784341096878052, + 0.002856857143342495, + 0.09285192936658859, + 0.3872937560081482, + -0.001762257656082511, + -0.011352344416081905, + -0.3454091250896454, + -0.08830562233924866, + 0.2688091993331909, + -0.3937688171863556, + -0.1547664999961853, + 0.2360529899597168, + 0.1644863337278366, + -0.366330087184906, + -0.2524883449077606, + 0.04515808820724487, + 0.15509448945522308, + -0.05118100345134735, + -0.23098145425319672, + -0.22032088041305542, + -0.13884803652763367, + -0.33781468868255615, + -0.04727704077959061, + 0.1854231059551239, + 0.5394228100776672, + 0.26924407482147217, + 0.15057611465454102, + -0.2702326476573944, + -0.31062379479408264, + 0.2722208499908447, + 0.22035004198551178, + -0.0005014737253077328, + -0.09706941992044449, + -0.12292631715536118, + 0.31272122263908386, + 0.4056403934955597, + 0.004784887656569481, + 0.07021554559469223, + -0.00920903030782938, + -0.0025348695926368237, + 0.2611406147480011, + 0.08256866782903671, + -0.13606837391853333, + -0.13522565364837646, + -0.4217262268066406, + 0.10415171831846237, + -0.23307807743549347, + -0.013455821201205254, + 0.2885885536670685, + -0.17584316432476044, + -0.42027533054351807, + -0.23820948600769043, + 0.12738609313964844, + -0.12776951491832733, + -0.22976602613925934, + 0.2175300419330597, + 0.2923091650009155, + -0.027978884056210518, + -0.2355097383260727, + 0.084128737449646, + -0.5166695713996887, + -0.27374500036239624, + 0.14655576646327972, + -0.10041996836662292, + -0.15411797165870667, + 0.16691254079341888, + 0.49046623706817627, + 0.5081236362457275, + 0.3668432831764221, + -0.03867127373814583, + 0.24752452969551086, + 0.47423839569091797, + 0.14317506551742554, + -0.2944289743900299, + -10.631757736206055, + -0.2818010151386261, + -0.3864808678627014, + 0.4553855359554291, + -0.19379466772079468, + 0.2052370011806488, + 0.168780118227005, + 0.0364110991358757, + 0.05919337272644043, + 0.17168232798576355, + -0.23531948029994965, + -0.09358493983745575, + 0.21714836359024048, + 0.2679533362388611, + 0.060544710606336594, + 0.16310544312000275, + -0.25817885994911194, + 0.2215142399072647, + 0.031212469562888145, + 0.19881606101989746, + 0.1721988320350647, + 0.3598853349685669, + -0.34235119819641113, + -0.024493694305419922, + -0.06684365123510361, + -0.47014182806015015, + -0.2812480926513672, + 0.577009379863739, + 0.2917526066303253, + -0.32079169154167175, + 0.14594666659832, + 0.02999969944357872, + -0.11495484411716461, + 0.1479996144771576, + -0.1859096735715866, + -0.1440247893333435, + 0.08844348788261414, + 0.14632636308670044, + 0.3039114773273468, + -0.21414700150489807, + -0.035678111016750336, + -0.1619841307401657, + 0.542740523815155, + 0.11129900813102722, + -0.1361662894487381, + -0.6265772581100464, + -0.10762642323970795, + -1.586214542388916, + 0.22535377740859985, + 0.3370453119277954, + 0.3630971610546112, + 0.017277916893363, + 0.16997119784355164, + 0.2970481812953949, + -0.2863675653934479, + -0.09070087969303131, + -0.3245711326599121, + -0.17036210000514984, + 0.09089178591966629, + 0.034436870366334915, + 0.04545089974999428, + 0.04821470379829407, + 0.6345454454421997, + -0.01801607944071293, + -0.3150767385959625, + 0.0033678512554615736, + 0.050667133182287216, + -0.15084002912044525, + -0.4053443372249603, + -0.8430637121200562, + -0.5011838674545288, + 0.16758982837200165, + -0.22735364735126495, + -0.005851810332387686, + 0.30466359853744507, + -0.040600962936878204, + -0.220428466796875, + 0.2093040645122528, + 0.06979170441627502, + 0.31074777245521545, + 0.30342620611190796, + -0.0910220518708229, + 0.12728898227214813, + -0.23590905964374542, + -0.10734794288873672, + -0.1695782095193863, + 0.10591688752174377, + 0.43223294615745544, + -0.07740572094917297, + -0.03770512714982033, + -0.03582062944769859, + 0.37483203411102295, + 0.04280416667461395, + -0.255462110042572, + -0.4393678605556488, + -0.1026136726140976, + -0.12031462788581848, + 0.076639823615551, + -0.13782864809036255, + -0.10623966157436371, + -0.27569693326950073, + 0.2096911370754242, + -0.09535878896713257, + -0.554919958114624, + -0.5102830529212952, + 0.30822068452835083, + 0.1912926882505417, + 0.15552419424057007, + -0.08358710259199142, + -0.10051129013299942, + -0.3204978108406067, + 0.06001042574644089, + 0.2150786966085434, + 0.5051499009132385, + 0.2972399890422821, + 0.027854375541210175, + 0.08186627924442291, + -0.4291151762008667, + -0.0931725800037384, + -0.007657515350729227, + 0.44667428731918335, + -0.13754865527153015, + 0.2592223882675171, + 0.536423921585083, + 0.0962003767490387, + 0.023301294073462486, + 0.9212788343429565, + -0.39629092812538147, + 0.19233106076717377, + -0.04788224399089813, + 0.18568867444992065, + 0.04461859166622162, + -0.3250897526741028, + 0.11561822891235352, + 0.364041805267334, + -0.22004809975624084, + 0.7561180591583252, + 0.23171043395996094, + -0.2801209092140198, + -0.16614894568920135, + -0.2618262469768524, + 0.46047741174697876, + 0.2417742908000946, + 0.26555320620536804, + -0.13289065659046173, + -0.35023191571235657, + -0.36880290508270264, + 0.19024498760700226, + -0.2407190501689911, + -0.36503836512565613, + -0.1264965534210205, + 0.16437700390815735, + 0.05736566334962845, + -0.1523239016532898, + 0.31289270520210266, + 0.1528562307357788, + -0.03355671837925911, + -0.388112872838974, + -0.33602967858314514, + -0.007928472012281418, + -0.045889709144830704, + 0.8703497052192688, + 0.03483293578028679, + -0.12403137236833572, + 0.07724124193191528, + 0.08030906319618225, + -0.25038960576057434, + 0.1512015461921692, + 0.08295877277851105, + -0.04976833984255791, + -0.35190582275390625, + 0.37512296438217163, + 0.29316821694374084, + -0.3186149597167969, + -0.15285086631774902, + -0.025367949157953262, + -0.16865375638008118, + 0.12750601768493652, + -0.15825150907039642, + 0.08292225748300552, + 0.26774707436561584, + -0.08840743452310562, + 0.18017369508743286, + -0.25282108783721924, + -0.1617632508277893, + 0.2665254771709442, + 0.4379822015762329, + -0.1048988550901413, + -0.3064426779747009, + -0.2075449824333191, + -0.6304585933685303, + 0.21913324296474457, + -0.5015811920166016, + -0.13603900372982025, + 0.2886706590652466, + 0.06571177393198013, + -0.13607226312160492, + 0.2888460159301758, + -0.06789909303188324, + -0.009701043367385864, + -0.15322525799274445, + 0.330121248960495, + 0.5146291255950928, + -0.1813237965106964, + 0.4062785506248474, + -0.07947606593370438, + 0.15124733746051788, + 0.14450810849666595, + -0.1734965592622757, + 0.17997059226036072, + -0.2985161244869232 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_083.json b/src/benchmark/output/results/results_graph_083.json new file mode 100644 index 0000000..b0f3480 --- /dev/null +++ b/src/benchmark/output/results/results_graph_083.json @@ -0,0 +1,792 @@ +{ + "status": "success", + "reconstructed_narrative": "The patient in question is a female who was diagnosed with pulmonary adenocarcinoma, a type of lung cancer. Unfortunately, the patient also had bilateral scattered breast metastases, which made her diagnosis even more complex.\n\nThe patient's journey began when she experienced persistent coughing for one month, which led to a chest CT scan that revealed a 3.1 cm right lower lobe tumor, lymphadenopathy, right pleural effusion, pericardial effusion, and scattered nodules in both breasts. Her CA19-9 level was also elevated at 282 U/mL.\n\nFollowing this initial diagnosis, the patient underwent further testing, including molecular analysis that detected an EML4-ALK fusion gene. This led to a biopsy of her bilateral breast tumors, which revealed adenocarcinoma derived from the lungs or breasts.\n\nThe patient's treatment plan began with oral medication, specifically alectinib (600 mg once daily), which was initiated in response to changes in her lab results and imaging findings. The goal of this treatment was to target the ALK rearrangement present in her cancer cells.\n\nOver time, the patient experienced significant reductions in tumor size, particularly in her breast metastases, which nearly disappeared after a maximum size of 4 mm. Her pleural effusion also resolved, and her CA19-9 level decreased from 282 U/mL to 3.7 U/mL.\n\nSix months after starting treatment with alectinib, the patient underwent another CT scan that showed further tumor shrinkage in her lower right lobe and resolution of her pleural effusion. This marked a significant milestone in her treatment journey, indicating that the medication was effective in controlling her cancer.\n\nThe patient's ongoing treatment with alectinib has been accompanied by regular monitoring of her lab results and imaging findings. Her CA19-9 level remains decreased, and she continues to experience no evidence of recurrence. The resolution of shadows in both breasts on CT scans also suggests that the medication is effective in controlling her breast metastases.\n\nThroughout this journey, the patient's treatment plan has been tailored to address changes in her lab results and imaging findings. Her care team has closely monitored her response to treatment and made adjustments as needed to ensure she receives the most effective therapy possible.\n\nThe patient's story highlights the importance of early detection and targeted therapies in managing complex cancers like pulmonary adenocarcinoma with bilateral breast metastases. With ongoing treatment and close monitoring, this patient is able to manage her disease effectively and maintain a good quality of life.", + "bertscore": { + "precision": 0.7734915018081665, + "recall": 0.758467435836792, + "f1": 0.7659057974815369 + }, + "bleu": 0.09899378728395339, + "rouge1": 0.4374384236453202, + "rougeL": 0.20886699507389164, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 9, + "edge_count": 8, + "avg_in_degree": 0.8888888888888888, + "density": 0.1111111111111111 + }, + "trajectory_embedding": [ + 0.2193172574043274, + 0.17341764271259308, + -0.28511232137680054, + 0.06250262260437012, + -0.2072673738002777, + -0.09170977771282196, + 0.21316777169704437, + 0.09700273722410202, + 0.22861331701278687, + -0.39751580357551575, + -0.20688259601593018, + 0.24647818505764008, + -0.7876354455947876, + -0.08496146649122238, + -0.4245613217353821, + 0.042675264179706573, + 0.13037434220314026, + 0.3195406198501587, + 0.007097967900335789, + -0.06185638904571533, + -0.3291245698928833, + 0.08830224722623825, + -0.28795498609542847, + -0.13097253441810608, + 0.1481899619102478, + -0.051646046340465546, + 0.1770193725824356, + 0.33995765447616577, + 0.21001891791820526, + 0.3241358697414398, + 0.2816936671733856, + 0.1976308822631836, + -0.30170315504074097, + 0.1416916698217392, + -0.1417221873998642, + 0.4162662625312805, + 0.31973186135292053, + 0.2899562120437622, + 0.04972304776310921, + -0.013929390348494053, + -0.05456293746829033, + 0.06672843545675278, + 0.8981493711471558, + 0.2677645683288574, + 0.4808398485183716, + -0.6477398872375488, + 0.009324373677372932, + 0.45919978618621826, + -0.5163214802742004, + -0.03917774558067322, + 0.16357848048210144, + 0.6279237270355225, + 0.7669098377227783, + -0.011995368637144566, + 0.49942874908447266, + 0.029697895050048828, + -0.518153727054596, + -0.10455898195505142, + -0.29109132289886475, + 0.038822609931230545, + 0.042515307664871216, + -0.0003774323267862201, + 0.04209442436695099, + 0.019098063930869102, + -0.29458752274513245, + -0.23534557223320007, + -0.12419717758893967, + 0.06067701056599617, + -0.04285213723778725, + -0.4138307571411133, + -0.3206578493118286, + -0.23422983288764954, + -0.04627592861652374, + 0.17275558412075043, + 0.14260262250900269, + -0.23018357157707214, + 0.24538040161132812, + 0.03944532200694084, + -0.04020833969116211, + 0.01949884742498398, + 0.17680314183235168, + 0.10935810208320618, + 0.16297897696495056, + 0.13017888367176056, + -0.3352700471878052, + 0.2769213616847992, + 0.017931334674358368, + -0.020605795085430145, + -0.2246519774198532, + 0.2702779173851013, + 0.18865284323692322, + -0.15714794397354126, + 0.08521824330091476, + -0.08288058638572693, + 0.18818387389183044, + 0.005460606887936592, + 0.22684799134731293, + 0.33946195244789124, + 1.0049254894256592, + 0.03566885367035866, + 0.1642642319202423, + 0.13746193051338196, + 0.1778484433889389, + -0.038058724254369736, + 0.4669243395328522, + -0.13216114044189453, + 0.2191735804080963, + -0.5107672214508057, + -0.07252109050750732, + 0.5644509792327881, + 0.0356656089425087, + -0.19383975863456726, + 0.15296228229999542, + -0.33836475014686584, + -0.09636162966489792, + -0.08558085560798645, + -0.22046856582164764, + 0.2352834790945053, + 0.06598210334777832, + -0.38275542855262756, + -0.11043596267700195, + -0.056128375232219696, + 0.3649280369281769, + 0.3722330927848816, + -0.4512997269630432, + -0.1124267578125, + -0.1987336277961731, + 0.24901559948921204, + 0.10440297424793243, + 0.15296711027622223, + -0.43688008189201355, + -0.1655939221382141, + -0.10475796461105347, + 0.2664153277873993, + -0.10558024793863297, + 0.3577464520931244, + -0.46729278564453125, + 0.1354590654373169, + -1.1269136667251587, + 0.10281328111886978, + -0.25857341289520264, + -0.039214830845594406, + 0.01985992304980755, + -0.420420378446579, + -0.17317254841327667, + -0.029812991619110107, + -0.1816175878047943, + 0.0835840180516243, + 0.03755830228328705, + -0.030437886714935303, + -0.2541024684906006, + 0.08771301805973053, + 0.14583104848861694, + 0.1727365404367447, + 0.17266422510147095, + 0.21967047452926636, + 0.12396648526191711, + 0.3350101709365845, + 0.20927971601486206, + -0.1707753986120224, + -0.011440124362707138, + 0.23800979554653168, + -0.18223731219768524, + -0.21748945116996765, + 0.13318949937820435, + -0.5990513563156128, + 0.293417364358902, + -0.30620303750038147, + 0.3866226375102997, + 0.12063738703727722, + -0.18473947048187256, + 0.06226066127419472, + -0.113283172249794, + 0.4598020017147064, + 0.274108350276947, + 0.5173359513282776, + -0.015038914047181606, + -0.04920041933655739, + 0.24200187623500824, + 0.02553440071642399, + 0.06932118535041809, + 0.07090914249420166, + 0.4447425603866577, + 0.14036160707473755, + -0.4176277220249176, + 0.19814914464950562, + 0.4169497489929199, + -0.13446280360221863, + -0.16877523064613342, + -0.137624591588974, + 0.4648233950138092, + -0.18935053050518036, + 0.3109728693962097, + -0.3810490667819977, + 0.1150435358285904, + 0.0378216877579689, + -0.46325191855430603, + -0.1722792536020279, + 0.18215717375278473, + -0.18846376240253448, + 0.15793795883655548, + 0.30337655544281006, + -0.2958439886569977, + 0.2588549256324768, + 0.2340385615825653, + -0.1845272332429886, + 0.19256797432899475, + 0.1392907202243805, + -0.08383635431528091, + -0.2555416524410248, + -0.24795784056186676, + 0.2323862463235855, + 0.010455415584146976, + 0.23733070492744446, + 0.07569601386785507, + -0.30559369921684265, + 0.12991249561309814, + -0.02891336940228939, + -0.1760808527469635, + 0.13434618711471558, + -0.003512442111968994, + -0.05959821492433548, + 0.3650680184364319, + 0.040111031383275986, + -0.38967713713645935, + 0.284719854593277, + 0.3171132802963257, + 0.1914340853691101, + 0.0965704619884491, + -0.06057102233171463, + 0.0272719357162714, + -0.2645259499549866, + 0.4147334098815918, + -0.12598779797554016, + -0.24381868541240692, + -0.2145218700170517, + 0.15216833353042603, + -0.14452552795410156, + -0.26827114820480347, + 0.4451773464679718, + -0.2046043574810028, + -0.1618407964706421, + 0.08300843834877014, + -0.26607000827789307, + 0.06625691056251526, + -0.20435793697834015, + 0.08357761800289154, + 0.4022212624549866, + 0.17195101082324982, + 0.3270953595638275, + 0.13476631045341492, + -0.09876170754432678, + 0.21264618635177612, + -0.3267713487148285, + -0.15537048876285553, + -0.42723917961120605, + -0.1938534826040268, + -0.2590172290802002, + -0.34887754917144775, + -0.09919620305299759, + 0.07475627958774567, + -0.24508190155029297, + 0.15362176299095154, + -0.2808030843734741, + -0.22725065052509308, + -0.1753782033920288, + -0.12027212232351303, + 0.19499555230140686, + -0.21417531371116638, + 0.17526914179325104, + -0.2852827310562134, + -0.2413906753063202, + -0.18082237243652344, + 0.02863461524248123, + 0.3581337034702301, + 0.11168178170919418, + -0.1019541397690773, + 0.1990528702735901, + 0.18814653158187866, + -0.42043620347976685, + -0.36710163950920105, + 0.008662023581564426, + -0.41699889302253723, + 0.2919245660305023, + -0.15612418949604034, + 0.23436599969863892, + 0.39810293912887573, + -0.03234267979860306, + 0.26709169149398804, + 0.25214195251464844, + 0.6004104614257812, + 0.13092510402202606, + -0.09322766959667206, + -0.047025978565216064, + -0.08355911821126938, + -0.03889412432909012, + -0.37668052315711975, + 0.2019501030445099, + -0.18000297248363495, + -0.03977978602051735, + 0.12510095536708832, + 0.11070981621742249, + 0.14181947708129883, + -0.3857370615005493, + -0.23421332240104675, + 0.5945428013801575, + 0.2224145233631134, + -0.0033896954264491796, + 0.054173242300748825, + 0.3329193592071533, + 0.6687978506088257, + -0.0961143895983696, + -0.2415502667427063, + 0.053152844309806824, + -0.29762133955955505, + -0.1189197450876236, + -0.16989336907863617, + -0.0532522052526474, + 0.28613898158073425, + -0.03204391151666641, + -0.07334976643323898, + 0.344136506319046, + -0.14214962720870972, + -0.21568407118320465, + -0.10064389556646347, + 0.09626413136720657, + -0.022583233192563057, + -0.18990029394626617, + 0.3080032467842102, + -0.2644185721874237, + -0.09839802235364914, + 0.38935768604278564, + -0.15787369012832642, + -0.32841408252716064, + 0.10613631457090378, + 0.008077857084572315, + -0.42763927578926086, + 0.4291302561759949, + -0.2778439223766327, + 0.0035980110988020897, + 0.2606796324253082, + -0.15766073763370514, + -0.044627558439970016, + -0.10153783857822418, + 0.19454540312290192, + 0.14321058988571167, + -0.06312190741300583, + -0.10101614892482758, + -0.01463906280696392, + 0.08310817182064056, + 0.47688573598861694, + 0.09520652890205383, + -0.01968814805150032, + 0.19235724210739136, + -0.25249382853507996, + -0.2132057398557663, + -0.0346251018345356, + -0.0006832066574133933, + 0.08422276377677917, + -0.32575151324272156, + -0.37651461362838745, + -0.22891412675380707, + 0.19846434891223907, + 0.0693582221865654, + -0.3014621436595917, + 0.09153084456920624, + 0.20894767343997955, + -0.03114289790391922, + 0.05881757289171219, + 0.33253684639930725, + 0.45214182138442993, + 0.05454954877495766, + 0.5569038391113281, + 0.2572433352470398, + 0.0029163227882236242, + 0.29068276286125183, + -0.03416001424193382, + 0.329553484916687, + -0.11418235301971436, + -0.4139120876789093, + -0.44669342041015625, + 0.04100050404667854, + -0.18609608709812164, + -0.14737722277641296, + 0.03590181842446327, + -0.08374395221471786, + -0.00875314511358738, + -0.00038987150765024126, + 0.194504052400589, + -0.025800785049796104, + 0.14752991497516632, + -0.06084603816270828, + 0.5328851342201233, + -0.13646242022514343, + -0.33697450160980225, + 0.17805364727973938, + -0.1184021383523941, + 0.3273739516735077, + -0.09624531865119934, + -0.15553829073905945, + -0.22165575623512268, + 0.3601211905479431, + -0.03713814169168472, + -0.08802226185798645, + -0.08941611647605896, + -0.2371177077293396, + -0.32309114933013916, + -0.4480447769165039, + 0.06338045001029968, + -0.09734238684177399, + -0.11655962467193604, + -0.2299073487520218, + 0.1347639113664627, + -0.06180719658732414, + -0.11930371820926666, + 0.017814069986343384, + 0.36796557903289795, + 0.24071979522705078, + -0.06020180508494377, + 0.15989628434181213, + 0.21498452126979828, + -0.019205722957849503, + 0.19473771750926971, + -0.1573183834552765, + 0.17454540729522705, + 0.0480240173637867, + -0.29649510979652405, + -0.009306641295552254, + 0.026564333587884903, + -0.22561444342136383, + 0.04082561284303665, + 0.1569671630859375, + 0.09007550776004791, + -0.1554345339536667, + 0.05386541783809662, + -0.025090329349040985, + 0.25928977131843567, + -0.1897626519203186, + -0.11514100432395935, + 0.29280927777290344, + -0.1685628592967987, + 0.39249980449676514, + -0.07579108327627182, + -0.34499964118003845, + -0.0906452015042305, + -0.13220995664596558, + -0.4032716751098633, + 0.1244383156299591, + -0.005320352036505938, + -0.11904711276292801, + 0.06075567752122879, + -0.034628719091415405, + 0.08662187308073044, + 0.0579034686088562, + 0.10810863226652145, + 0.13283205032348633, + 0.08877145498991013, + -0.08544637262821198, + -0.4152162969112396, + -0.15314458310604095, + -0.37927737832069397, + -0.23549138009548187, + -0.28755635023117065, + 0.42415034770965576, + 0.2366282194852829, + -0.07058727741241455, + 0.04266219586133957, + 0.08969984203577042, + -0.31461021304130554, + -0.4056779742240906, + -0.052023932337760925, + 0.006153459195047617, + 0.6005771160125732, + 0.05116026848554611, + -0.211973637342453, + 0.2111867070198059, + -0.40281492471694946, + 0.2375519871711731, + 0.13919305801391602, + 0.13387608528137207, + 0.24164053797721863, + 0.10993418097496033, + 0.1383579522371292, + 0.5107021331787109, + 0.18908651173114777, + -0.005101922433823347, + 0.2276669293642044, + -0.006585781928151846, + 0.11505568027496338, + -0.08612365275621414, + -0.09184424579143524, + 0.49637141823768616, + -0.38181594014167786, + 0.21200652420520782, + -0.0086306007578969, + 0.3372485637664795, + -0.2750302255153656, + -0.1616375744342804, + -0.06428969651460648, + -0.18236865103244781, + -0.1330176293849945, + -0.3382335901260376, + -0.1944819837808609, + 0.16238689422607422, + -0.31340643763542175, + -0.09350139647722244, + 0.21686424314975739, + 0.28484460711479187, + 0.1256365180015564, + 0.06789293885231018, + -0.07682295143604279, + -0.48264196515083313, + 0.07015955448150635, + 0.3584667444229126, + 0.015670383349061012, + -0.055093273520469666, + -0.05612373352050781, + 0.17480434477329254, + 0.4795798659324646, + -0.09885634481906891, + -0.10670676827430725, + 0.0005690223770216107, + -0.15262705087661743, + -0.07280559092760086, + 0.09415150433778763, + 0.07672793418169022, + 0.01841641217470169, + -0.37587854266166687, + 0.10392502695322037, + -0.12604573369026184, + -0.3426159620285034, + 0.17293062806129456, + -0.2984272539615631, + -0.3380991518497467, + -0.043000467121601105, + 0.12050655484199524, + -0.08581404387950897, + -0.0330280065536499, + 0.293374240398407, + 0.5442282557487488, + 0.2881724536418915, + -0.05860653892159462, + 0.07944362610578537, + -0.5221250653266907, + -7.950556027935818e-05, + 0.17431673407554626, + -0.16768889129161835, + 0.16578030586242676, + -0.09785863757133484, + 0.350646436214447, + 0.2831515073776245, + 0.16979320347309113, + -0.6071570515632629, + 0.16585946083068848, + 0.31339961290359497, + 0.30937302112579346, + -0.2748020589351654, + -10.835315704345703, + 0.1450963020324707, + -0.1674693375825882, + 0.4004225730895996, + -0.13201706111431122, + 0.11699888110160828, + -0.019389092922210693, + -0.0930941104888916, + 0.12387336790561676, + 0.271442711353302, + -0.3189850449562073, + 0.06446868181228638, + 0.2983386218547821, + 0.28585341572761536, + -0.10301324725151062, + -0.07708390802145004, + -0.2099618911743164, + 0.22569996118545532, + 0.06615176796913147, + 0.2152819037437439, + 0.2079135626554489, + 0.5176010131835938, + -0.05119478330016136, + 0.3538952171802521, + 0.15688493847846985, + -0.07367561757564545, + -0.19168096780776978, + 0.35822421312332153, + 0.1163443848490715, + -0.45033761858940125, + 0.23646476864814758, + 0.041629038751125336, + -0.07124419510364532, + -0.1908162534236908, + 0.006404658313840628, + -0.29830771684646606, + -0.176029771566391, + -0.05445612967014313, + 0.008939877152442932, + -0.10114890336990356, + -0.0031244605779647827, + -0.21497926115989685, + -0.035581573843955994, + 0.3702719211578369, + -0.11195964366197586, + -0.40084898471832275, + -0.24365609884262085, + -1.520867943763733, + 0.20536679029464722, + 0.18569613993167877, + 0.5243217945098877, + -0.006796399597078562, + 0.1194467544555664, + 0.016898535192012787, + -0.4644047021865845, + 0.13571900129318237, + -0.19024205207824707, + 0.10048038512468338, + 0.1664254069328308, + -0.07586662471294403, + 0.26500383019447327, + -0.1763378530740738, + 0.36543580889701843, + -0.5179094076156616, + -0.2334713190793991, + 0.08413635194301605, + -0.16426372528076172, + 0.016112646088004112, + -0.08740004897117615, + -0.253427654504776, + -0.4283546209335327, + -0.15999306738376617, + 0.0018946884665638208, + 0.08875870704650879, + 0.4317275285720825, + -0.09051463752985, + -0.48388671875, + 0.059534862637519836, + -0.01889944076538086, + 0.3949905335903168, + 0.1436769664287567, + -0.06743641942739487, + 0.19788551330566406, + -0.10558650642633438, + -0.1404876857995987, + -0.1541656106710434, + 0.02804230898618698, + 0.5015776753425598, + 0.02276228927075863, + -0.027470383793115616, + -0.08079363405704498, + 0.19784298539161682, + -0.17760327458381653, + -0.16447710990905762, + -0.4329908490180969, + -0.02586336061358452, + 0.06223757937550545, + -0.015838472172617912, + 0.061821289360523224, + -0.10410874336957932, + -0.06058383733034134, + -0.1642945557832718, + 0.06465519219636917, + -0.3878062069416046, + -0.2748548686504364, + 0.37282001972198486, + 0.21104896068572998, + 0.15307235717773438, + 0.22221189737319946, + 0.10820962488651276, + 0.0555231086909771, + -0.01956040970981121, + 0.4224987030029297, + 0.5355233550071716, + 0.1627279669046402, + 0.0468151792883873, + -0.2567165791988373, + 0.10308520495891571, + -0.34747040271759033, + 0.1774068921804428, + 0.3031822741031647, + -0.047012247145175934, + 0.3804830312728882, + 0.5447179079055786, + -0.0007846222724765539, + -0.11665495485067368, + 0.931792676448822, + -0.2769111692905426, + 0.3062618672847748, + -0.20683802664279938, + 0.20042404532432556, + 0.013628307729959488, + -0.21050359308719635, + 0.027445154264569283, + 0.10246915370225906, + -0.34863531589508057, + 0.3111255168914795, + -0.0441516675055027, + -0.34154829382896423, + 0.15575763583183289, + -0.3152710199356079, + 0.4460584819316864, + 0.3244880437850952, + 0.2004447728395462, + -0.16451965272426605, + -0.44509971141815186, + -0.2956368923187256, + 0.1388864815235138, + -0.3295985162258148, + -0.3951743245124817, + -0.16108185052871704, + -0.0418991893529892, + 0.004363154526799917, + -0.26244235038757324, + 0.37535637617111206, + 0.08858559280633926, + -0.11515527218580246, + -0.08039963245391846, + -0.4893845319747925, + -0.02119528315961361, + 0.2900344729423523, + 0.6111987233161926, + 0.18352735042572021, + -0.0899048000574112, + -0.16453909873962402, + 0.2826162278652191, + -0.130192369222641, + 0.21232527494430542, + 0.01915382593870163, + -0.04628973826766014, + -0.45053890347480774, + 0.1371994912624359, + 0.15870504081249237, + -0.3583899438381195, + -0.16406108438968658, + -0.4176751673221588, + 0.23927490413188934, + -0.12442522495985031, + -0.026748567819595337, + 0.406851589679718, + 0.26902031898498535, + -0.08110613375902176, + -0.04298179969191551, + -0.3397372364997864, + 0.2424478530883789, + 0.30089694261550903, + 0.20377211272716522, + 0.13155899941921234, + -0.06857634335756302, + -0.5070254802703857, + -0.3390863239765167, + 0.29813989996910095, + -0.30286094546318054, + -0.12926146388053894, + 0.296322226524353, + 0.1224864199757576, + -0.21622177958488464, + 0.07039714604616165, + -0.2329501509666443, + -0.047157347202301025, + -0.16874808073043823, + -0.004939827602356672, + 0.3687739968299866, + -0.32874760031700134, + 0.06603445112705231, + -0.03867574408650398, + 0.3031683564186096, + 0.24142612516880035, + -0.4516318738460541, + 0.34427037835121155, + -0.22982239723205566 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_084.json b/src/benchmark/output/results/results_graph_084.json new file mode 100644 index 0000000..e369536 --- /dev/null +++ b/src/benchmark/output/results/results_graph_084.json @@ -0,0 +1,792 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is an adult male with a history of respiratory symptoms. Unfortunately, the demographic information is not provided in the given data.\n\n**Initial Presentation (Step 1):**\nThe patient presented with right locus coeruleus, visceral inversion, sinusitis, and bronchial dilatation. These symptoms led to further cardiac evaluation.\n\n**Diagnostic Journey:**\n\n1. **Electrocardiography (ECG) and Initial Diagnosis (Step 2):**\nAn ECG showed a right-sided heart, prompting further imaging with chest CT and 3D reconstruction of the ribs to evaluate lung and organ positioning.\n\n2. **Chest CT Findings (Step 3):**\nThe chest CT revealed chronic inflammation of both lungs, multiple bronchiectasis in both lungs, nodules in the upper lobe of the right lung, a flaky high-density shadow in the right main bronchus, bilateral pleural thickening, localized calcification of the right pleura, and a right-sided heart with transposition of thoracic and abdominal organs.\n\n3. **Paranasal Sinus CT Findings (Step 4):**\nA paranasal sinus CT showed right maxillary sinusitis, ethmoid sinus, nasal soft tissue shadow, polyps, deviated nasal septum, and bilateral middle and lower turbinate hypertrophy.\n\n4. **Bronchoscopy Evaluation (Steps 5-6):**\nNormal bronchial tubes in the right lung led to further bronchoscopic evaluation of the left lung, where a polypoid neoplasm was found in the opening of the upper lobe of the left lung.\n\n5. **Cancer Diagnosis and Treatment Planning (Step 7):**\nBronchoalveolar lavage fluid cytology showed cancer cells, prompting immunohistochemistry to determine the type of cancer. The diagnosis confirmed small cell lung cancer.\n\n6. **Bone Metastasis Evaluation (Step 8):**\nExtrapulmonary auxiliary examination suggested bone metastasis.\n\n7. **Final Diagnosis and Treatment (Step 10):**\nThe patient was diagnosed with extensive stage small cell lung cancer of the left lung, accompanied by Kartagener Syndrome. The ECOG performance status score was 1.\n\n**Outcomes:**\n\n- The patient has been diagnosed with small cell lung cancer.\n- Bone metastasis is suspected but not confirmed.\n- Treatment plans are pending further evaluation and consultation.\n\nThis clinical case report highlights the importance of a comprehensive diagnostic journey, from initial presentation to final diagnosis. Each step in the diagnostic process builds upon previous findings, ultimately leading to an accurate diagnosis and treatment plan for this patient with small cell lung cancer.", + "bertscore": { + "precision": 0.8038591742515564, + "recall": 0.7853204011917114, + "f1": 0.7944816946983337 + }, + "bleu": 0.0515011258904957, + "rouge1": 0.36, + "rougeL": 0.24000000000000002, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 10, + "edge_count": 9, + "avg_in_degree": 0.9, + "density": 0.1 + }, + "trajectory_embedding": [ + 0.3022826015949249, + -0.0002478778478689492, + 0.07108965516090393, + 0.18501682579517365, + 0.12881651520729065, + 0.13057772815227509, + 0.010211390443146229, + 0.27111274003982544, + 0.48087310791015625, + -0.30358201265335083, + -0.15933957695960999, + -0.05752738192677498, + -0.5778652429580688, + -0.08748479187488556, + -0.32486921548843384, + 0.2844110131263733, + 0.11371511220932007, + 0.32671236991882324, + 0.021662577986717224, + -0.30923351645469666, + -0.49680963158607483, + 0.0782569944858551, + -0.44948211312294006, + -0.04323277622461319, + 0.22593548893928528, + -0.01574728451669216, + 0.4235308766365051, + 0.35435113310813904, + 0.27642717957496643, + 0.34516799449920654, + 0.14290973544120789, + -0.1564827263355255, + 0.2897892892360687, + 0.08219972997903824, + -0.3131678104400635, + 0.153154656291008, + 0.04478307440876961, + 0.4251784682273865, + -0.17223894596099854, + 0.06200450658798218, + -0.008131982758641243, + 0.026351476088166237, + 0.7629572153091431, + 0.24166879057884216, + 0.49624738097190857, + -0.8540695905685425, + 0.0735427513718605, + 0.6025377511978149, + -0.4382382333278656, + -0.42543187737464905, + 0.14666084945201874, + 0.8501324653625488, + 0.6023985147476196, + -0.23723092675209045, + 0.49399223923683167, + -0.09967318177223206, + -0.24939200282096863, + -0.36156731843948364, + -0.27796420454978943, + -0.07196014374494553, + -0.03802759572863579, + -0.3508407473564148, + 0.2254219502210617, + 0.006940671242773533, + -0.23701122403144836, + -0.14317883551120758, + -0.2833285927772522, + 0.15163321793079376, + -0.06794106960296631, + -0.3598276972770691, + -0.2114640772342682, + -0.16742625832557678, + -0.25604474544525146, + 0.09791062772274017, + 0.058662235736846924, + -0.06908141076564789, + 0.29694175720214844, + -0.06433207541704178, + 0.24006052315235138, + 0.16372595727443695, + -0.10615365207195282, + -0.13890239596366882, + 0.0628042221069336, + 0.30454668402671814, + -0.48599013686180115, + 0.05434264987707138, + -0.17366516590118408, + -0.21750371158123016, + -0.3870420455932617, + 0.08840364962816238, + 0.23712030053138733, + -0.3720531761646271, + -0.10707030445337296, + -0.13465967774391174, + 0.005096083972603083, + 0.13848185539245605, + 0.45548492670059204, + 0.46938556432724, + 0.8086320757865906, + 0.014741292223334312, + 0.2957764267921448, + 0.15941783785820007, + 0.33580154180526733, + 0.19358238577842712, + 0.4785425662994385, + -0.08414985984563828, + 0.19566580653190613, + -0.46821674704551697, + 0.22834725677967072, + 0.37398818135261536, + 0.11532840877771378, + -0.1693725436925888, + -0.0774139016866684, + -0.1784668266773224, + 0.24414077401161194, + 0.0498858243227005, + -0.09838474541902542, + 0.2163398563861847, + 0.27058297395706177, + -0.5322241187095642, + -0.09721708297729492, + -0.06723294407129288, + 0.21702703833580017, + 0.4134696125984192, + -0.46868330240249634, + -0.06796272844076157, + -0.054749995470047, + 0.0694805309176445, + 0.05295033007860184, + -0.05510329082608223, + -0.416511207818985, + -0.13748756051063538, + 0.02648722007870674, + 0.12776710093021393, + -0.11540375649929047, + 0.16256263852119446, + -0.4000517725944519, + -0.05173369497060776, + -1.1125802993774414, + 0.17043237388134003, + -0.3793953061103821, + -0.008986279368400574, + 0.06805851310491562, + -0.45297354459762573, + -0.302298367023468, + -0.28366243839263916, + -0.18141335248947144, + 0.17342188954353333, + -0.16900277137756348, + -0.06276275217533112, + 0.08167936652898788, + 0.09778048098087311, + 0.07180964946746826, + 0.353459894657135, + 0.11126623302698135, + 0.023528430610895157, + -0.04072052985429764, + 0.29630473256111145, + 0.07592806220054626, + -0.2539720833301544, + -0.07335661351680756, + 0.4713670611381531, + 0.18058033287525177, + 0.05613838508725166, + -0.10637662559747696, + -0.7066742777824402, + 0.015964265912771225, + -0.18404079973697662, + 0.1063329353928566, + 0.1283593773841858, + -0.22283096611499786, + 0.24120625853538513, + -0.29460567235946655, + 0.5675346851348877, + 0.1036454439163208, + 0.3286721110343933, + 0.03387962281703949, + -0.21458497643470764, + -0.05666860193014145, + 0.15959730744361877, + 0.06606514006853104, + -0.1577528566122055, + 0.679175615310669, + 0.07302459329366684, + -0.2440629005432129, + 0.13170525431632996, + 0.4612267017364502, + -0.005884298589080572, + -0.04186207056045532, + -0.03639828413724899, + 0.3915157914161682, + -0.30076083540916443, + 0.4524717926979065, + -0.4438624978065491, + -0.13237246870994568, + 0.18911278247833252, + -0.26135173439979553, + -0.23115570843219757, + 0.08541755378246307, + -0.13695800304412842, + 0.31457677483558655, + -0.058833230286836624, + -0.3288137912750244, + 0.09825369715690613, + 0.0887846052646637, + -0.06854353845119476, + 0.4729226231575012, + -0.05019985884428024, + 0.033078260719776154, + -0.10017581284046173, + -0.18857690691947937, + 0.08798342198133469, + -0.07705532014369965, + 0.18451006710529327, + 0.06940267980098724, + -0.24698373675346375, + 0.3591180741786957, + -0.012563997879624367, + -0.05025869607925415, + 0.13707154989242554, + -0.0844765156507492, + -0.2661805748939514, + 0.0017543137073516846, + -0.013630163855850697, + -0.409559965133667, + 0.12035921961069107, + 0.025147076696157455, + 0.11376921087503433, + 0.27445656061172485, + -0.03277166932821274, + 0.019878875464200974, + -0.2724904417991638, + 0.35789936780929565, + 0.000543452799320221, + -0.2218378335237503, + -0.32600194215774536, + 0.12106867134571075, + -0.3061431646347046, + 0.05570601671934128, + 0.34320375323295593, + -0.08843746781349182, + -0.033211492002010345, + 0.16999739408493042, + -0.2587319016456604, + -0.18342933058738708, + -0.34824565052986145, + -0.07481463253498077, + 0.24462933838367462, + 0.09018868207931519, + 0.33315035700798035, + 0.07320088148117065, + -0.15716397762298584, + 0.19682681560516357, + -0.23980669677257538, + -0.24325260519981384, + -0.37648633122444153, + -0.19036473333835602, + -0.07662941515445709, + -0.6160048246383667, + 0.10395056009292603, + 0.09475217759609222, + -0.018194453790783882, + 0.02839547023177147, + -0.24049648642539978, + -0.10005618631839752, + 0.14590099453926086, + -0.07585057616233826, + 0.10524396598339081, + -0.1955806314945221, + 0.0502573661506176, + -0.14947672188282013, + -0.29537495970726013, + -0.16388416290283203, + -0.003522282000631094, + 0.14366595447063446, + 0.0010257974499836564, + -0.2072487324476242, + -0.029148101806640625, + 0.005960741546005011, + -0.3725356459617615, + -0.19349835813045502, + 0.16478145122528076, + -0.13456828892230988, + 0.049115847796201706, + -0.05138600990176201, + 0.2586899399757385, + 0.4195712208747864, + 0.08038105815649033, + 0.08258511126041412, + 0.4384620785713196, + 0.42306041717529297, + -0.004651406314224005, + 0.036737509071826935, + -0.04221692681312561, + -0.13694453239440918, + -0.0026544772554188967, + -0.38543808460235596, + 0.39184504747390747, + 0.1366136372089386, + 0.009313111193478107, + -0.06164867803454399, + 0.281760573387146, + 0.061717648059129715, + -0.3140893280506134, + -0.018511587753891945, + 0.6115490198135376, + 0.07538636028766632, + 0.17233417928218842, + 0.10848400741815567, + 0.2774800956249237, + 0.5246814489364624, + -0.0018822572892531753, + 0.017238929867744446, + 0.10068394988775253, + -0.12100937217473984, + -0.24151170253753662, + 0.04409749433398247, + 0.08195656538009644, + 0.46116194128990173, + -0.1502642184495926, + -0.11956534534692764, + 0.14542338252067566, + -0.09974714368581772, + -0.06510915607213974, + -0.10443327575922012, + -0.10864098370075226, + 0.01000242866575718, + -0.3809471130371094, + 0.21651367843151093, + 0.06601918488740921, + -0.051966775208711624, + 0.4956601560115814, + -0.28418299555778503, + -0.26878172159194946, + 0.2900657653808594, + -0.13672645390033722, + -0.5506992340087891, + 0.33003562688827515, + -0.12394626438617706, + -0.02254941686987877, + 0.30944404006004333, + -0.2810365557670593, + -0.0393986813724041, + -0.10458073765039444, + 0.3272346556186676, + -0.04930766671895981, + 0.038481853902339935, + -0.1337556540966034, + 0.06520572304725647, + 0.34503740072250366, + 0.6053578853607178, + 0.15144284069538116, + 0.26155441999435425, + 0.7582577466964722, + 0.21862836182117462, + -0.37447184324264526, + 0.03211371973156929, + -0.01634759083390236, + 0.38047587871551514, + -0.16660353541374207, + -0.10187427699565887, + -0.2678399384021759, + 0.0826643854379654, + 0.14766177535057068, + -0.3476739227771759, + -0.05390278249979019, + 0.11977537721395493, + 0.1074601411819458, + -0.07566378265619278, + 0.16910137236118317, + 0.06659577786922455, + -0.06859757006168365, + 0.39101821184158325, + -0.10597479343414307, + -0.15591631829738617, + 0.30569082498550415, + -0.1898820698261261, + 0.2924621105194092, + -0.02036619558930397, + -0.35011228919029236, + -0.3720923066139221, + 0.015457767061889172, + -0.2807143032550812, + -0.19953343272209167, + -0.02051239088177681, + -0.14320431649684906, + 0.01467401348054409, + -0.2528730630874634, + 0.049619849771261215, + -0.015667635947465897, + 0.23355571925640106, + 0.20689544081687927, + 0.30164456367492676, + 0.16636694967746735, + -0.17945553362369537, + 0.1823354810476303, + 0.031307607889175415, + -0.005020329263061285, + -0.040585316717624664, + 0.004251341335475445, + -0.17994220554828644, + 0.5273225903511047, + -0.0031303227879107, + -0.014922475442290306, + 0.16944238543510437, + -0.022807719185948372, + -0.19961638748645782, + -0.3405296504497528, + -0.19840240478515625, + -0.10726951062679291, + 0.003415413200855255, + 0.073027104139328, + 0.0202237069606781, + -0.35132545232772827, + -0.21133241057395935, + -0.07742069661617279, + 0.03155653551220894, + 0.2863825559616089, + -0.17220738530158997, + -0.0730748400092125, + 0.2951551079750061, + 0.01601223647594452, + 0.33708223700523376, + -0.21484443545341492, + 0.0039914436638355255, + 0.09456918388605118, + -0.2565591335296631, + -0.07173477113246918, + 0.004710282199084759, + -0.2562774419784546, + -0.2509877383708954, + 0.20962758362293243, + 0.253984272480011, + 0.10473451763391495, + 0.020660754293203354, + 0.21399109065532684, + 0.2842431664466858, + -0.46710777282714844, + -0.044867366552352905, + 0.3169190287590027, + 0.20084087550640106, + 0.5470558404922485, + 0.014864524826407433, + -0.431762158870697, + -0.2626354396343231, + -0.04742180183529854, + -0.29901912808418274, + 0.08003951609134674, + 0.28881731629371643, + -0.18920665979385376, + -0.24956974387168884, + 0.148453488945961, + -0.1268928498029709, + -0.1388619840145111, + 0.35403257608413696, + -0.1324261873960495, + 0.18792861700057983, + 0.09655649960041046, + -0.20529210567474365, + -0.12591758370399475, + -0.2148256003856659, + -0.27459701895713806, + -0.235565185546875, + 0.28044575452804565, + 0.30219390988349915, + -0.3643375635147095, + 0.0054170191287994385, + 0.049004603177309036, + -0.30093756318092346, + -0.10840094089508057, + 0.06473053991794586, + -0.2832329571247101, + 0.421114981174469, + -0.2014114111661911, + -0.16098937392234802, + 0.06829563528299332, + -0.15668006241321564, + 0.1201416477560997, + 0.16133680939674377, + 0.03854108229279518, + 0.42834705114364624, + 0.2367277890443802, + 0.096320241689682, + 0.46178776025772095, + 0.05761134624481201, + -0.034063152968883514, + 0.22627249360084534, + -0.06268403679132462, + 0.07518596947193146, + -0.21787306666374207, + -0.1047079935669899, + 0.25594455003738403, + -0.31086304783821106, + 0.028466815128922462, + 0.2431807965040207, + 0.10446077585220337, + -0.4962840974330902, + -0.3948891758918762, + 0.020958777517080307, + 0.08071019500494003, + -0.0017918333178386092, + -0.2080884724855423, + -0.2839190661907196, + 0.03133048117160797, + -0.26619964838027954, + -0.18007151782512665, + 0.3414393365383148, + 0.46708735823631287, + 0.19734498858451843, + 0.1692400872707367, + -0.24250900745391846, + -0.40451592206954956, + 0.2133006751537323, + 0.20856276154518127, + 0.11806480586528778, + 0.017719173803925514, + -0.27860382199287415, + 0.3077690899372101, + 0.6379297375679016, + -0.1302676647901535, + 0.04534696787595749, + 0.04443063214421272, + -0.006921547465026379, + 0.1513594686985016, + 0.11139438301324844, + -0.07528958469629288, + -0.11466683447360992, + -0.4220767617225647, + 0.18281389772891998, + -0.4470955729484558, + -0.19759227335453033, + 0.18458296358585358, + 0.024520790204405785, + -0.4396180212497711, + -0.3081614375114441, + 0.3907000720500946, + -0.2393304854631424, + -0.06428395956754684, + 0.2412598580121994, + 0.4235643744468689, + 0.12001093477010727, + -0.22211647033691406, + 0.14540937542915344, + -0.5299925208091736, + -0.21517682075500488, + 0.10898420959711075, + -0.14292536675930023, + -0.10685457289218903, + 0.10852400958538055, + 0.4706238806247711, + 0.49245700240135193, + 0.3022193908691406, + -0.11070270836353302, + -0.040609750896692276, + 0.24962198734283447, + 0.22111499309539795, + -0.18938827514648438, + -10.700393676757812, + -0.06847956031560898, + -0.29483717679977417, + 0.6960679888725281, + -0.2306894063949585, + 0.02135266736149788, + 0.3115006983280182, + 0.019914742559194565, + 0.1280011683702469, + 0.09144191443920135, + -0.20868992805480957, + 0.02801315113902092, + 0.3151918649673462, + 0.32813093066215515, + -0.046479351818561554, + -0.08504917472600937, + -0.2453886717557907, + 0.1739961802959442, + -0.03973426669836044, + 0.21970923244953156, + 0.3042164742946625, + 0.36559635400772095, + -0.2513323426246643, + 0.1999724954366684, + -0.1395547240972519, + -0.537032961845398, + -0.18692578375339508, + 0.5912972688674927, + 0.13540585339069366, + -0.30633142590522766, + 0.31018906831741333, + 0.2532275319099426, + -0.37133023142814636, + 0.26469898223876953, + -0.1417871117591858, + -0.042985375970602036, + 0.026998501271009445, + 0.09103906154632568, + 0.25161898136138916, + -0.08083400875329971, + -0.020653892308473587, + -0.3002742528915405, + 0.37196698784828186, + 0.3077193796634674, + -0.04517807066440582, + -0.549065887928009, + -0.265261173248291, + -1.6271107196807861, + 0.39536115527153015, + 0.41173189878463745, + 0.31902989745140076, + -0.03662886470556259, + 0.23492565751075745, + 0.15171071887016296, + -0.33456432819366455, + 0.003988940268754959, + -0.23838357627391815, + -0.05001875013113022, + 0.08617740124464035, + -0.006772148422896862, + 0.18141750991344452, + -0.13978402316570282, + 0.5921083688735962, + -0.09007574617862701, + -0.27582845091819763, + 0.029221320524811745, + 0.07606247812509537, + -0.057702720165252686, + -0.2906796336174011, + -0.6101187467575073, + -0.5730866193771362, + 0.08737681061029434, + -0.13544762134552002, + -0.05323542281985283, + 0.4730839133262634, + -0.0991457849740982, + -0.3486878275871277, + 0.3036792576313019, + 0.09338647127151489, + 0.4601627290248871, + 0.23891206085681915, + -0.07815234363079071, + 0.06159602850675583, + -0.13137081265449524, + -0.3349774479866028, + -0.0884469747543335, + 0.08090667426586151, + 0.5726484060287476, + -0.08617880940437317, + 0.016780000180006027, + -0.035925962030887604, + 0.3896651268005371, + -0.00013828874216414988, + -0.27181029319763184, + -0.4764103293418884, + 0.16295713186264038, + -0.04064466059207916, + 0.11315704882144928, + 0.06893400847911835, + -0.20206809043884277, + -0.29148006439208984, + 0.0420963354408741, + -0.045636776834726334, + -0.5955685377120972, + -0.3798132836818695, + 0.26711970567703247, + 0.1229136735200882, + 0.3546217679977417, + -0.015912353992462158, + 0.06870289891958237, + -0.24585500359535217, + -0.06851018965244293, + 0.17143447697162628, + 0.5847951173782349, + 0.179721862077713, + -0.07473741471767426, + -0.015889516100287437, + -0.4200037121772766, + -0.1686449944972992, + 0.05881570652127266, + 0.4711637496948242, + -0.29056617617607117, + 0.25276249647140503, + 0.6358609199523926, + 0.001888046390376985, + -0.07153021544218063, + 0.8648948669433594, + -0.2854756712913513, + 0.3171937167644501, + -0.1709827333688736, + 0.2372385561466217, + -0.06195005029439926, + -0.35246509313583374, + 0.051377929747104645, + 0.4381488263607025, + -0.20715150237083435, + 0.7157111167907715, + 0.2102678120136261, + -0.44795599579811096, + 0.022132422775030136, + -0.2781883478164673, + 0.5775606036186218, + 0.3239624500274658, + 0.3607383370399475, + -0.11736442893743515, + -0.28928887844085693, + -0.2729252874851227, + 0.08051704615354538, + -0.43783825635910034, + -0.24398913979530334, + -0.18166127800941467, + 0.2476070672273636, + 0.09892012178897858, + -0.2800079882144928, + 0.4132039546966553, + 0.1669943481683731, + -0.2242717295885086, + -0.3341342508792877, + -0.48304685950279236, + 0.028591791167855263, + 0.2790490984916687, + 0.8138329386711121, + -0.06995245814323425, + -0.019302362576127052, + -0.036117881536483765, + 0.17265042662620544, + -0.22632861137390137, + 0.25830578804016113, + 0.18179041147232056, + 0.045930344611406326, + -0.5035537481307983, + 0.25428977608680725, + 0.1800452023744583, + -0.3236026465892792, + -0.09251801669597626, + -0.1736966073513031, + -0.13242705166339874, + 0.006328442599624395, + -0.30407652258872986, + 0.04553022235631943, + 0.2418498545885086, + -0.10587773472070694, + 0.08230690658092499, + -0.31393855810165405, + 0.05736009404063225, + 0.09567128121852875, + 0.2222079485654831, + 0.12883086502552032, + -0.25283434987068176, + -0.2608579099178314, + -0.6174993515014648, + 0.11740090698003769, + -0.19769859313964844, + -0.20696862041950226, + 0.052053701132535934, + 0.1907263696193695, + -0.31058254837989807, + 0.15869706869125366, + -0.2644699513912201, + -0.02185875177383423, + -0.09033507108688354, + 0.3298027813434601, + 0.3747708201408386, + -0.21409468352794647, + 0.17093904316425323, + -0.14165711402893066, + 0.1333751529455185, + 0.06095562502741814, + -0.2715438902378082, + 0.18049004673957825, + -0.13904044032096863 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_086.json b/src/benchmark/output/results/results_graph_086.json new file mode 100644 index 0000000..da5970f --- /dev/null +++ b/src/benchmark/output/results/results_graph_086.json @@ -0,0 +1,792 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 36-year-old woman who presented to Anhui Chest Hospital with cough and chest pain for 2 months. She had no history of smoking.\n\n**Timeline of Diagnoses:**\n\n1. **March 2022:** The patient initially presented to the hospital with symptoms of cough and chest pain, which led to a chest computed tomography (CT) scan.\n2. **March 21, 2022:** The CT scan revealed left pleural thickening and pleural effusion, prompting further investigation.\n3. **Thoracoscopic left pleural biopsy** was performed on the same day, followed by plasma DNA analysis via next-generation sequencing (NGS), which identified EGFR exon L858R mutation.\n4. **April 2022:** The diagnosis of stage IV lung adenocarcinoma with EGFR exon L858R mutation was confirmed.\n\n**Timeline of Treatments:**\n\n1. **March 2022:** The patient received osimertinib as the first-line treatment for her lung cancer.\n2. **May 22, 2022:** A follow-up chest CT scan revealed a partial response (PR) to osimertinib treatment.\n3. **April 4, 2024:** Due to progressive disease, the patient's treatment regimen was changed to dabrafenib, trametinib, and aumolertinib concurrently.\n4. **June 3, 2024:** A follow-up chest CT scan revealed a complete response (CR) to the new treatment regimen.\n\n**Timeline of Outcomes:**\n\n1. **May 22, 2022:** The patient experienced a partial response to osimertinib treatment.\n2. **April 4, 2024:** The patient's disease progressed, and she was diagnosed with progressive disease (PD).\n3. **June 3, 2024:** The patient achieved a complete response (CR) to the new treatment regimen.\n\n**Notable Events:**\n\n* During treatment with dabrafenib, trametinib, and aumolertinib, the patient experienced a transient fever.\n* The patient's disease was diagnosed as stage IV lung adenocarcinoma with EGFR exon L858R mutation.\n\n**Conclusion:**\nThe patient's clinical course was marked by an initial presentation of cough and chest pain, followed by a diagnosis of stage IV lung adenocarcinoma with EGFR exon L858R mutation. The patient received osimertinib as the first-line treatment and experienced a partial response. Due to progressive disease, the treatment regimen was changed to dabrafenib, trametinib, and aumolertinib concurrently, resulting in a complete response.", + "bertscore": { + "precision": 0.8213422298431396, + "recall": 0.8375495672225952, + "f1": 0.8293667435646057 + }, + "bleu": 0.18712496575902093, + "rouge1": 0.5508365508365508, + "rougeL": 0.31660231660231664, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 9, + "edge_count": 8, + "avg_in_degree": 0.8888888888888888, + "density": 0.1111111111111111 + }, + "trajectory_embedding": [ + 0.2675797641277313, + 0.21791553497314453, + -0.22618961334228516, + 0.11571652442216873, + -0.019790956750512123, + 0.05677139014005661, + 0.042519599199295044, + 0.1792418360710144, + 0.5141865611076355, + -0.34321343898773193, + -0.024482721462845802, + 0.13857966661453247, + -0.6468924880027771, + -0.25428396463394165, + -0.1651427149772644, + 0.1542055606842041, + -0.09829944372177124, + 0.31758415699005127, + -0.2596558928489685, + -0.17077159881591797, + -0.22659580409526825, + 0.13174749910831451, + -0.3829096853733063, + 0.06544387340545654, + 0.1515325903892517, + 0.011543890461325645, + 0.3582412600517273, + 0.4067012071609497, + 0.09520009160041809, + 0.27456986904144287, + 0.28829512000083923, + -0.028053700923919678, + 0.14764872193336487, + -0.009291741997003555, + -0.21470355987548828, + 0.13079030811786652, + 0.17685800790786743, + 0.30124351382255554, + -0.17351296544075012, + -0.07442855834960938, + -0.09024392068386078, + 0.07787038385868073, + 0.8275833129882812, + -0.01726224645972252, + 0.29667434096336365, + -0.7508823871612549, + -0.15030576288700104, + 0.37458446621894836, + -0.3360116481781006, + -0.12845636904239655, + 0.2764851450920105, + 0.6903720498085022, + 0.5166894793510437, + -0.11258387565612793, + 0.3345339894294739, + -0.25607171654701233, + -0.22427433729171753, + -0.32150256633758545, + -0.07975102961063385, + 0.15178383886814117, + -0.038486357778310776, + -0.16007600724697113, + 0.31977906823158264, + -0.05790242180228233, + -0.12432339787483215, + -0.05300411954522133, + -0.16922977566719055, + 0.083812415599823, + -0.02476910874247551, + -0.14517396688461304, + -0.1993541270494461, + -0.24796366691589355, + -0.04371989145874977, + 0.17804883420467377, + 0.04194732382893562, + -0.08429072052240372, + 0.3673376441001892, + -0.01525390800088644, + 0.3300274908542633, + 0.1640128791332245, + -0.12402919679880142, + -0.059453852474689484, + -0.06197202205657959, + 0.21999597549438477, + -0.424887478351593, + 0.038097187876701355, + 0.002002384979277849, + -0.06615735590457916, + -0.3718654215335846, + 0.06783434003591537, + 0.19602659344673157, + -0.5306000113487244, + -0.05569252744317055, + -0.13322684168815613, + -0.23284585773944855, + 0.21489864587783813, + 0.48740243911743164, + 0.253702849149704, + 0.8671553134918213, + -0.014972875826060772, + 0.250682532787323, + 0.062193308025598526, + 0.030714817345142365, + 0.060182519257068634, + 0.27098146080970764, + -0.24173341691493988, + 0.2413242608308792, + -0.466265469789505, + 0.299497127532959, + 0.6055445075035095, + 0.08354074507951736, + -0.09230826050043106, + -0.07517461478710175, + -0.21373216807842255, + 0.13922013342380524, + 0.06306686997413635, + -0.028733743354678154, + 0.2793172597885132, + 0.3121602237224579, + -0.458368718624115, + -0.06705471873283386, + -0.12893062829971313, + 0.2925616502761841, + 0.2881128787994385, + -0.34650853276252747, + -0.13807380199432373, + 0.006900184787809849, + -0.08841875195503235, + 0.03789970651268959, + -0.02705308049917221, + -0.39069539308547974, + -0.21182239055633545, + -0.1264665573835373, + 0.035156622529029846, + -0.13091152906417847, + 0.430871844291687, + -0.26473167538642883, + -0.1021508201956749, + -1.1017342805862427, + 0.16633880138397217, + -0.3318289816379547, + -0.17414580285549164, + -0.08615252375602722, + -0.5279375910758972, + -0.13436564803123474, + -0.192817822098732, + -0.09854746609926224, + 0.2146150767803192, + -0.2139045000076294, + 0.0017431668238714337, + 0.17166346311569214, + -0.16639135777950287, + 0.06580100953578949, + 0.2862292230129242, + 0.028111092746257782, + 0.024222880601882935, + 0.0270144771784544, + 0.19131173193454742, + 0.07220227271318436, + -0.025211412459611893, + 0.0672234371304512, + 0.5253627300262451, + 0.010954342782497406, + 0.07876026630401611, + -0.05776897445321083, + -0.6147654056549072, + -0.01583971455693245, + -0.1751285195350647, + 0.27262476086616516, + -0.03028959035873413, + -0.21819914877414703, + 0.04664154723286629, + -0.4327636957168579, + 0.5608584880828857, + 0.23679791390895844, + 0.4188234210014343, + 0.025396578013896942, + 0.05205552652478218, + -0.03950347378849983, + 0.1640637069940567, + 0.0010691119823604822, + -0.0989135131239891, + 0.5883390307426453, + 0.3345355689525604, + -0.3373023271560669, + 0.19015932083129883, + 0.4581555128097534, + -0.09989826381206512, + -0.19058643281459808, + -0.049839384853839874, + 0.3543897569179535, + -0.2840050458908081, + 0.38008812069892883, + -0.2968634366989136, + 0.007832547649741173, + 0.06712186336517334, + -0.3013204038143158, + -0.04690423607826233, + 0.034774910658597946, + -0.20969244837760925, + 0.08861090987920761, + 0.04288427159190178, + -0.36363527178764343, + 0.1703481674194336, + 0.19508391618728638, + -0.18555587530136108, + 0.19505594670772552, + -0.08424971997737885, + 0.18259921669960022, + -0.031263042241334915, + -0.09574981033802032, + 0.1260751634836197, + 0.09746326506137848, + 0.20210367441177368, + -0.012030691839754581, + -0.36965522170066833, + 0.027662012726068497, + -0.027306361123919487, + -0.09606006741523743, + -0.018500812351703644, + 0.20115645229816437, + -0.19764532148838043, + -0.034216418862342834, + 0.0802338644862175, + -0.468985915184021, + 0.15698426961898804, + 0.2084309458732605, + 0.18777191638946533, + 0.05621640011668205, + -0.09349188953638077, + 0.03274306282401085, + -0.33532342314720154, + 0.21481269598007202, + -0.0438736192882061, + -0.18959608674049377, + -0.2277722954750061, + 0.3069354295730591, + 0.0013648909516632557, + -0.023853406310081482, + 0.2681137025356293, + 0.0701182559132576, + -0.062164969742298126, + 0.07557784020900726, + -0.24579429626464844, + 0.1217319667339325, + -0.12667308747768402, + -0.13737449049949646, + 0.18420392274856567, + 0.13287116587162018, + 0.24347233772277832, + 0.11957449465990067, + -0.1461060643196106, + 0.02622278593480587, + -0.2542453408241272, + -0.32143378257751465, + -0.19987447559833527, + -0.011652318760752678, + -0.17343220114707947, + -0.6779806613922119, + 0.0028940504416823387, + 0.15431708097457886, + -0.056091487407684326, + 0.23827272653579712, + -0.3118246793746948, + -0.09858443588018417, + -0.07769980281591415, + 0.046637970954179764, + 0.06965093314647675, + -0.27772286534309387, + -0.15783047676086426, + -0.2524335980415344, + -0.09011972695589066, + -0.08187244087457657, + -0.040075771510601044, + 0.06555354595184326, + 0.1710655391216278, + -0.2391773909330368, + 0.10016196966171265, + 0.2701658606529236, + -0.36994922161102295, + -0.10961529612541199, + 0.11767908930778503, + -0.16207633912563324, + 0.3104300796985626, + -0.04821685701608658, + 0.31980133056640625, + 0.3396635949611664, + 0.13042733073234558, + 0.26984626054763794, + 0.40108540654182434, + 0.421016126871109, + -0.01897118240594864, + -0.0711553692817688, + 0.004447015002369881, + -0.009514790028333664, + -0.03292545676231384, + -0.3351401090621948, + 0.30814388394355774, + 0.03658140450716019, + -0.0838221088051796, + -0.15198363363742828, + 0.12226520478725433, + 0.251603901386261, + -0.35114556550979614, + -0.0772181898355484, + 0.4936191737651825, + 0.0028090046253055334, + 0.1742151528596878, + 0.012949002906680107, + 0.35043010115623474, + 0.3386462926864624, + 0.03617565333843231, + 0.10146060585975647, + 0.049006178975105286, + -0.1971893012523651, + -0.09709340333938599, + -0.1342477947473526, + 0.1942010223865509, + 0.3152693212032318, + -0.11493706703186035, + -0.15269498527050018, + 0.2268587201833725, + 0.01214324776083231, + -0.23009821772575378, + -0.155603289604187, + -0.06087996065616608, + 0.09755131602287292, + -0.19333770871162415, + 0.2694246470928192, + -0.0846625417470932, + 0.18982940912246704, + 0.4185582399368286, + -0.35981544852256775, + -0.16286872327327728, + 0.20838038623332977, + -0.14458443224430084, + -0.46097177267074585, + 0.3409210741519928, + -0.3162246346473694, + 0.06572356820106506, + 0.24390339851379395, + -0.3540392220020294, + -0.009152021259069443, + -0.12227395176887512, + 0.32338324189186096, + -0.06451371312141418, + 0.10827887058258057, + -0.05624048039317131, + 0.09466668963432312, + 0.04371260106563568, + 0.4064751863479614, + 0.24226683378219604, + 0.011348918080329895, + 0.5285168886184692, + -0.12927690148353577, + -0.3946869969367981, + 0.12618249654769897, + -0.12101396918296814, + 0.145766481757164, + -0.13029056787490845, + -0.03334813937544823, + -0.13049215078353882, + 0.16778814792633057, + -0.04039887338876724, + -0.3145131766796112, + -0.0008918766980059445, + 0.12544317543506622, + 0.07086547464132309, + 0.018956316635012627, + 0.24298708140850067, + 0.29416656494140625, + -0.04556850343942642, + 0.46785247325897217, + -0.023507241159677505, + -0.0648852288722992, + 0.33548006415367126, + -0.1739303022623062, + 0.25953203439712524, + 0.0007529060239903629, + -0.31928586959838867, + -0.2854919135570526, + 0.25406408309936523, + -0.07004518061876297, + -0.1222928911447525, + 0.03389965742826462, + -0.14416199922561646, + -0.03483806923031807, + -0.23828548192977905, + 0.08185575902462006, + -0.051228564232587814, + 0.0856592059135437, + 0.04333440959453583, + 0.2292494773864746, + -0.03100310079753399, + -0.3164939284324646, + 0.21830645203590393, + 0.010374151170253754, + 0.059029605239629745, + -0.08300098031759262, + -0.04106125235557556, + -0.09455796331167221, + 0.5458002686500549, + -0.015634752810001373, + 0.06498002260923386, + -0.011806930415332317, + 0.049957260489463806, + -0.07558928430080414, + -0.3099413216114044, + 0.0796288326382637, + -0.12412599474191666, + -0.19648802280426025, + -0.0016014385037124157, + -0.005923385266214609, + -0.2302844226360321, + -0.12506473064422607, + -0.10013231635093689, + 0.06073233112692833, + 0.20367704331874847, + -0.005633688531816006, + 0.02130473032593727, + 0.3648494780063629, + 0.10440883040428162, + 0.4033468961715698, + -0.4136618375778198, + 0.2156740128993988, + 0.06591546535491943, + -0.19757598638534546, + 0.01265721209347248, + -0.035100582987070084, + -0.33468908071517944, + 0.028996245935559273, + 0.113688625395298, + 0.13757750391960144, + 0.014366712421178818, + -0.0690295621752739, + 0.05987128987908363, + 0.028287015855312347, + -0.3328324854373932, + 0.09067133069038391, + 0.4280276894569397, + -0.07452016323804855, + 0.2302577793598175, + 0.11842165887355804, + -0.4545958936214447, + 0.003355955006554723, + -0.3127082586288452, + -0.3868301212787628, + 0.10086575150489807, + 0.24931637942790985, + -0.1149488314986229, + -0.052657511085271835, + 0.0878535807132721, + 0.08965516090393066, + -0.08856703341007233, + 0.11607938259840012, + -0.17837604880332947, + 0.1455705165863037, + 0.07570227235555649, + -0.19763711094856262, + -0.09228593856096268, + -0.32370150089263916, + -0.41095778346061707, + -0.3149073123931885, + 0.37858378887176514, + 0.138024240732193, + -0.32869431376457214, + -0.1007937490940094, + -0.014905656687915325, + -0.2673555314540863, + -0.07896670699119568, + -0.05353837087750435, + -0.054201241582632065, + 0.4265895187854767, + 0.1650432050228119, + -0.20738719403743744, + 0.07911206781864166, + -0.2185678333044052, + 0.06165989115834236, + 0.08426722884178162, + 0.005898505449295044, + 0.43048107624053955, + 0.12649376690387726, + 0.06133145093917847, + 0.43766364455223083, + 0.21702612936496735, + 0.06302069127559662, + 0.28758326172828674, + -0.09101974964141846, + 0.09018334746360779, + -0.1278192698955536, + -0.19144245982170105, + 0.34891945123672485, + -0.32822710275650024, + 0.023947935551404953, + 0.27158644795417786, + 0.23421043157577515, + -0.4267003536224365, + -0.19622832536697388, + 0.13553808629512787, + -0.015384819358587265, + -0.11969906836748123, + -0.24869349598884583, + -0.25797611474990845, + -0.04804028570652008, + -0.1304754763841629, + -0.02036251313984394, + 0.287232369184494, + 0.42067503929138184, + 0.0923786610364914, + 0.1591286063194275, + -0.25746777653694153, + -0.3296210765838623, + 0.16637377440929413, + 0.1149119958281517, + 0.07350358366966248, + 0.028959717601537704, + -0.1057722270488739, + 0.2150142788887024, + 0.49510255455970764, + -0.06790205836296082, + -0.04843870922923088, + 0.10081073641777039, + -0.08938559889793396, + -0.03886991739273071, + -0.06531605124473572, + -0.30953851342201233, + -0.10920006781816483, + -0.35343578457832336, + 0.08950923383235931, + -0.2554885447025299, + -0.22643905878067017, + 0.224556103348732, + -0.20598560571670532, + -0.4757601320743561, + -0.10610470175743103, + 0.18222831189632416, + -0.2429397702217102, + -0.22256186604499817, + 0.2101941704750061, + 0.6374101042747498, + 0.1069428026676178, + -0.16669423878192902, + 0.03912098705768585, + -0.17981649935245514, + -0.21583609282970428, + 0.24854381382465363, + -0.09823907166719437, + -0.11358392238616943, + 0.0488172322511673, + 0.361810564994812, + 0.39157652854919434, + 0.2950994074344635, + -0.29091474413871765, + 0.34666043519973755, + 0.387980192899704, + 0.15970055758953094, + -0.22950240969657898, + -10.921539306640625, + -0.20960642397403717, + -0.3875959515571594, + 0.3836411237716675, + -0.21490105986595154, + 0.047525253146886826, + 0.12130754441022873, + -0.03822873532772064, + 0.23424261808395386, + 0.23921650648117065, + -0.24955593049526215, + -0.145660400390625, + 0.15750186145305634, + 0.1442815661430359, + 0.14243091642856598, + 0.08079152554273605, + -0.1649549901485443, + 0.13880528509616852, + 0.15555621683597565, + 0.16093039512634277, + 0.14499254524707794, + 0.43600961565971375, + -0.2766640782356262, + 0.2153310775756836, + -0.03444315120577812, + -0.18769434094429016, + -0.21606594324111938, + 0.47343313694000244, + 0.20977237820625305, + -0.2847074568271637, + 0.19107110798358917, + 0.034046586602926254, + -0.07748681306838989, + 0.08209696412086487, + -0.10739025473594666, + -0.2237221598625183, + -0.05031656473875046, + 0.14084486663341522, + 0.004411456175148487, + -0.18355026841163635, + -0.08402005583047867, + -0.23791496455669403, + 0.4711853265762329, + 0.09093591570854187, + -0.07807574421167374, + -0.5195673704147339, + -0.12337107211351395, + -1.4347436428070068, + 0.3206177055835724, + 0.42634284496307373, + 0.39809635281562805, + 0.09555591642856598, + 0.1358017921447754, + 0.24790170788764954, + -0.3791499435901642, + -0.016723722219467163, + -0.17896217107772827, + 0.02849755994975567, + 0.19027669727802277, + 0.07942112535238266, + 0.06598695367574692, + 0.006974825635552406, + 0.5880471467971802, + 0.03816218674182892, + -0.2016848772764206, + 0.06958020478487015, + -0.03524167835712433, + -0.19770929217338562, + -0.10706612467765808, + -0.48784467577934265, + -0.46162864565849304, + 0.03851298615336418, + -0.049994368106126785, + 0.2714660167694092, + 0.22602885961532593, + 0.0933799147605896, + -0.21995322406291962, + 0.1988094449043274, + 0.10701288282871246, + 0.19622613489627838, + 0.2821347713470459, + 0.04901587590575218, + 0.06462813168764114, + -0.12283836305141449, + 0.0006425728206522763, + -0.1449182629585266, + 0.015317704528570175, + 0.35356128215789795, + 0.0036941005382686853, + -0.11636900901794434, + -0.04917679727077484, + 0.2712356448173523, + -0.01761685125529766, + -0.179544135928154, + -0.4086458683013916, + -0.00029557611560449004, + 0.01064060814678669, + 0.16373078525066376, + -0.12480144947767258, + -0.047982390969991684, + -0.250974178314209, + 0.015822669491171837, + 0.02654104121029377, + -0.4800695776939392, + -0.3978598415851593, + 0.22396527230739594, + 0.1891573965549469, + 0.10983213782310486, + -0.022603515535593033, + -0.01746959239244461, + -0.13923032581806183, + 0.029019279405474663, + 0.2955204248428345, + 0.5698025226593018, + 0.32502686977386475, + -0.07378807663917542, + -0.024403221905231476, + -0.09322857111692429, + -0.1694561094045639, + -0.04803727567195892, + 0.4363913834095001, + 0.0013219030806794763, + 0.15317663550376892, + 0.3891148567199707, + 0.11263243108987808, + -0.11643673479557037, + 0.7529957294464111, + -0.29153406620025635, + 0.26043957471847534, + -0.07454895973205566, + 0.33856478333473206, + 0.015002699568867683, + -0.32759442925453186, + -0.06368181109428406, + 0.4137195348739624, + -0.3097810745239258, + 0.5630106329917908, + 0.25552898645401, + -0.2706289291381836, + -0.019491931423544884, + -0.24032476544380188, + 0.3725490868091583, + 0.2269134521484375, + 0.35143667459487915, + -0.23887617886066437, + -0.15470941364765167, + -0.30493372678756714, + 0.06921195983886719, + -0.3510269522666931, + -0.3648751378059387, + -0.0038642564322799444, + 0.06709478795528412, + 0.005897081457078457, + -0.018254932016134262, + 0.2236310839653015, + 0.17854249477386475, + -0.12102644890546799, + -0.30600112676620483, + -0.4415149688720703, + -0.16290120780467987, + 0.13726702332496643, + 0.7014641761779785, + 0.14738792181015015, + -0.06851441413164139, + -0.07616463303565979, + 0.11884336918592453, + -0.10460691154003143, + 0.14004094898700714, + 0.10224667936563492, + -0.10575269907712936, + -0.4455963373184204, + 0.2187933772802353, + 0.11657366156578064, + -0.36225244402885437, + -0.11192493885755539, + -0.18393632769584656, + -0.053965553641319275, + 0.039524998515844345, + -0.18326681852340698, + 0.11368680000305176, + 0.3053017258644104, + -0.07614734768867493, + 0.009059018455445766, + -0.3483671545982361, + 0.022134581580758095, + 0.22603827714920044, + 0.3050978481769562, + -0.011491991579532623, + -0.2535531520843506, + -0.3099564015865326, + -0.5315080285072327, + 0.16372686624526978, + -0.47730153799057007, + -0.11095919460058212, + 0.2272912710905075, + 0.14273248612880707, + -0.2623544931411743, + 0.19839149713516235, + -0.14956943690776825, + 0.04175884649157524, + -0.2752734422683716, + 0.33233675360679626, + 0.49699699878692627, + -0.359591543674469, + 0.19793137907981873, + -0.1863759309053421, + 0.457620769739151, + 0.16683675348758698, + -0.23269420862197876, + 0.1499941349029541, + -0.19909434020519257 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_087.json b/src/benchmark/output/results/results_graph_087.json new file mode 100644 index 0000000..350059a --- /dev/null +++ b/src/benchmark/output/results/results_graph_087.json @@ -0,0 +1,792 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 56-year-old non-smoking male with pulmonary carcinosarcoma.\n\n**Initial Presentation (Step 1):**\nOn January 28, 2023, the patient presented at The Third People\u2019s Hospital of Yunnan Province with a progressively enlarging mass in the right neck. Imaging findings revealed multiple nodular shadows of various sizes within the right cervical region posterior to the sternocleidomastoid muscle and adjacent to the carotid artery sheath, which partially fused.\n\n**Diagnosis (Step 2):**\nCT scans confirmed the presence of a pulmonary malignancy with cervical and mediastinal lymph node metastasis. The largest mass measured approximately 3.8 cm x 2.6 cm with indistinct margins and uneven ring-shaped enhancement.\n\n**Biopsy and Pathological Diagnosis (Step 3):**\nA CT-guided puncture biopsy of the mass in the left inferior lobe of the lung was performed, which led to a pathological diagnosis of lung carcinosarcoma.\n\n**Immunohistochemistry and NGS Testing (Step 4):**\nImmunohistochemistry revealed a Ki-67 index of 80%, while Next-Generation Sequencing (NGS) detected mutations in the TMB gene. These results further supported the presence of pulmonary carcinomas.\n\n**Timeline:**\n\n* January 28, 2023: Patient presents with progressively enlarging neck mass and imaging findings consistent with pulmonary malignancy.\n* January 28, 2023: CT-guided puncture biopsy is performed to confirm diagnosis.\n* (Date not specified): Immunohistochemistry and NGS testing are performed.\n\n**Outcomes:**\nThe patient's condition remains active, with ongoing management of the pulmonary carcinosarcoma. The results of immunohistochemistry and NGS testing have provided valuable information for further treatment planning.\n\nNote: The timeline is incomplete as some dates were not specified in the original data.", + "bertscore": { + "precision": 0.7259600758552551, + "recall": 0.7952317595481873, + "f1": 0.7590186595916748 + }, + "bleu": 0.07920794318479864, + "rouge1": 0.2913165266106443, + "rougeL": 0.20168067226890754, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 4, + "edge_count": 3, + "avg_in_degree": 0.75, + "density": 0.25 + }, + "trajectory_embedding": [ + 0.26591718196868896, + -0.01149221882224083, + -0.05490458011627197, + 0.09002448618412018, + 0.12090761959552765, + -0.02566247433423996, + 0.06007498502731323, + 0.25383898615837097, + 0.2421899437904358, + -0.4905059337615967, + -0.13693289458751678, + 0.12649738788604736, + -0.6974141597747803, + 0.05220205709338188, + -0.4585632383823395, + 0.09128075838088989, + 0.19116288423538208, + 0.33736515045166016, + 0.20399746298789978, + -0.1366174817085266, + -0.5366524457931519, + 0.14325380325317383, + -0.3938520550727844, + -0.22003361582756042, + 0.2763565480709076, + -0.13828757405281067, + 0.26946306228637695, + 0.39065390825271606, + 0.28081679344177246, + 0.20941975712776184, + -0.021269194781780243, + 0.05803205445408821, + -0.10231009125709534, + 0.07641473412513733, + -0.24658477306365967, + 0.31770482659339905, + 0.30015236139297485, + 0.2529020607471466, + -0.06250398606061935, + 0.10478872060775757, + 0.010389182716608047, + 0.013741150498390198, + 0.7951561212539673, + 0.22212618589401245, + 0.6838390827178955, + -0.6326733231544495, + 0.04047217220067978, + 0.5688554048538208, + -0.680841326713562, + -0.19903667271137238, + 0.09129107743501663, + 0.9155005216598511, + 0.5991806983947754, + -0.04953983426094055, + 0.41945120692253113, + -0.05501314252614975, + -0.4265047311782837, + -0.1075306087732315, + -0.3067843019962311, + 0.1665443480014801, + 0.03192378208041191, + -0.15232832729816437, + 0.18626531958580017, + -0.05157607048749924, + -0.35312244296073914, + -0.19599036872386932, + -0.2093559354543686, + 0.045759283006191254, + 0.012155687436461449, + -0.5244204998016357, + -0.327062726020813, + -0.08288201689720154, + -0.23973605036735535, + 0.08109693229198456, + 0.25429925322532654, + -0.25631025433540344, + 0.36183059215545654, + 0.1519981324672699, + -0.009220998734235764, + 0.22719216346740723, + 0.12203388661146164, + -0.18537288904190063, + 0.0468854159116745, + 0.23939333856105804, + -0.45602333545684814, + 0.16125860810279846, + -0.11851396411657333, + -0.055599600076675415, + -0.20591111481189728, + 0.11053580045700073, + 0.3805560767650604, + -0.06711959093809128, + -0.13524317741394043, + -0.20940275490283966, + 0.14989708364009857, + 0.023245546966791153, + 0.24723030626773834, + 0.42048966884613037, + 1.0676428079605103, + 0.00019805505871772766, + 0.258747398853302, + 0.09683284163475037, + 0.3800516128540039, + 0.11968780308961868, + 0.6178033947944641, + -0.01650042086839676, + 0.289710134267807, + -0.17485813796520233, + 0.0017641931772232056, + 0.3595304489135742, + 0.026484228670597076, + -0.10209359973669052, + 0.045070916414260864, + -0.22628095746040344, + 0.14339949190616608, + 0.23919814825057983, + -0.12023219466209412, + 0.166318878531456, + 0.18048357963562012, + -0.4693562984466553, + -0.051912691444158554, + -0.06720668077468872, + 0.3203240633010864, + 0.2555603086948395, + -0.44606807827949524, + -0.054738812148571014, + -0.22941914200782776, + 0.0716901421546936, + -0.04405885562300682, + 0.04440134018659592, + -0.5725164413452148, + -0.2273174226284027, + -0.024061400443315506, + 0.2981811463832855, + -0.17513903975486755, + 0.10784707963466644, + -0.40300437808036804, + -0.0037964098155498505, + -1.1383686065673828, + 0.24880048632621765, + -0.3056936264038086, + -0.11351403594017029, + 0.08574334532022476, + -0.31078672409057617, + -0.18952658772468567, + -0.24361519515514374, + -0.2369977980852127, + 0.02972540259361267, + 0.022009823471307755, + -0.19111812114715576, + -0.06640475988388062, + 0.12249793857336044, + 0.21704275906085968, + 0.3195517361164093, + 0.24677219986915588, + 0.15621249377727509, + 0.12167344242334366, + 0.24541166424751282, + 0.20779050886631012, + -0.13151510059833527, + 0.05605410039424896, + 0.24497650563716888, + 0.0902959331870079, + -0.023603245615959167, + 0.06993058323860168, + -0.6333256363868713, + 0.2476789653301239, + -0.3920873999595642, + 0.25470444560050964, + 0.03923548012971878, + -0.0565347746014595, + 0.1248915046453476, + -0.09725046157836914, + 0.5015400648117065, + 0.10165755450725555, + 0.4146695137023926, + -0.011445775628089905, + -0.2528352737426758, + 0.0030096769332885742, + 0.066905677318573, + -0.00508301705121994, + -0.1207534596323967, + 0.6170395612716675, + 0.16315220296382904, + -0.3064855933189392, + 0.26409727334976196, + 0.3644908666610718, + -0.2143092155456543, + 0.053608015179634094, + -0.1207704246044159, + 0.4798285961151123, + -0.1992984563112259, + 0.39461347460746765, + -0.5000622272491455, + -0.0560191348195076, + 0.14874961972236633, + -0.3289306163787842, + -0.375760555267334, + 0.1787140965461731, + -0.3201039433479309, + 0.1186957061290741, + 0.16628716886043549, + -0.22379128634929657, + 0.09523405134677887, + 0.18171370029449463, + -0.1160835474729538, + 0.3370267152786255, + 0.2980797290802002, + 0.012221883982419968, + -0.08274299651384354, + -0.20160479843616486, + 0.295451819896698, + -0.18905065953731537, + 0.29958099126815796, + 0.08492972701787949, + -0.17765316367149353, + 0.4785178303718567, + -0.05965906381607056, + -0.23587164282798767, + 0.09410808980464935, + -0.13395701348781586, + -0.1269397884607315, + 0.40571528673171997, + -0.09540663659572601, + -0.41550329327583313, + 0.2890357971191406, + 0.16908866167068481, + 0.08185970783233643, + 0.11542554199695587, + -0.07966802269220352, + -0.09897275269031525, + -0.2823992073535919, + 0.4196234941482544, + -0.11659608781337738, + -0.21994364261627197, + -0.17176280915737152, + 0.16924890875816345, + -0.14737264811992645, + -0.1987035572528839, + 0.5666136741638184, + -0.10828898847103119, + -0.13225102424621582, + 0.04008735716342926, + -0.2477116584777832, + -0.2206893265247345, + -0.18860270082950592, + 0.19892898201942444, + 0.4333099126815796, + 0.09945324808359146, + 0.37646690011024475, + 0.361336886882782, + -0.0294048935174942, + 0.3002912998199463, + -0.2910163402557373, + -0.3287873864173889, + -0.4788789749145508, + -0.12203575670719147, + -0.04261428862810135, + -0.3542187511920929, + 0.2015761137008667, + 0.0045067323371768, + -0.16664564609527588, + 0.13444514572620392, + -0.2596954107284546, + -0.038117293268442154, + 0.005160152912139893, + -0.1737871617078781, + 0.06649135053157806, + -0.10083063691854477, + 0.4040520489215851, + -0.11695312708616257, + -0.2353277951478958, + -0.08267872780561447, + -0.00713190995156765, + 0.21696628630161285, + 0.1293734312057495, + -0.02905123680830002, + 0.04111555218696594, + 0.10181955248117447, + -0.37525445222854614, + -0.20752593874931335, + 0.1316320300102234, + -0.21089839935302734, + 0.03408237174153328, + -0.11338970810174942, + 0.25957465171813965, + 0.5802068114280701, + -0.1450602114200592, + 0.09533525258302689, + 0.3792346715927124, + 0.5819066762924194, + 0.08950985968112946, + -0.005518749356269836, + -0.038632676005363464, + -0.08713217079639435, + 0.023707151412963867, + -0.488730788230896, + 0.31880080699920654, + -0.005287747830152512, + 0.05655728280544281, + 0.1678670346736908, + 0.4244734048843384, + -0.09835424274206161, + -0.41979488730430603, + -0.04430293291807175, + 0.5542852878570557, + 0.1576756238937378, + 0.02039998583495617, + 0.17387256026268005, + 0.2976800203323364, + 0.6870920658111572, + 0.011872969567775726, + -0.19080069661140442, + 0.20012670755386353, + -0.16408951580524445, + -0.40396374464035034, + -0.15138515830039978, + -0.05762047693133354, + 0.2482844442129135, + -0.1666419804096222, + -0.14353415369987488, + 0.19852463901042938, + -0.20900958776474, + -0.15274588763713837, + 0.1655704379081726, + 0.006531849503517151, + -0.060847826302051544, + -0.39920273423194885, + 0.37449249625205994, + -0.2445983588695526, + -0.29268303513526917, + 0.5046051740646362, + -0.2005026787519455, + -0.24327029287815094, + 0.45069313049316406, + -0.08288541436195374, + -0.5590108633041382, + 0.09368503838777542, + -0.25426018238067627, + -0.036611057817935944, + 0.34110504388809204, + -0.1377650946378708, + -0.15223625302314758, + -0.046981289982795715, + 0.23493041098117828, + 0.1447373628616333, + -0.05772365629673004, + -0.0792224258184433, + 0.02733166702091694, + 0.42601627111434937, + 0.6781925559043884, + 0.046332478523254395, + 0.13627010583877563, + 0.4873996078968048, + 0.018458889797329903, + -0.20248785614967346, + -0.13266849517822266, + -0.14226825535297394, + 0.30533215403556824, + -0.26482224464416504, + -0.3026427626609802, + -0.3490680754184723, + 0.04511967673897743, + 0.02239813655614853, + -0.27677780389785767, + 0.02303197979927063, + 0.19849182665348053, + -0.03240180015563965, + -0.053297191858291626, + 0.16876381635665894, + 0.4020344614982605, + -0.01429218053817749, + 0.5129151344299316, + -0.005648232996463776, + -0.027565237134695053, + 0.19228635728359222, + -0.05129896104335785, + 0.12830403447151184, + -0.020170796662569046, + -0.3413553833961487, + -0.5766260027885437, + -0.043447211384773254, + -0.3567486107349396, + -0.1587502360343933, + 0.09485404193401337, + -0.04176744818687439, + 0.012421295046806335, + -0.1731674075126648, + 0.10800927877426147, + -0.024834759533405304, + 0.10700815171003342, + 0.2329125702381134, + 0.46435683965682983, + -0.03889356926083565, + -0.3095247149467468, + 0.09760767221450806, + -0.02062283083796501, + 0.032348573207855225, + -0.007493659853935242, + -0.1776742786169052, + -0.36801040172576904, + 0.3908894658088684, + 0.06064484640955925, + -0.12756693363189697, + -0.028092145919799805, + -0.024772927165031433, + -0.22582398355007172, + -0.4634336233139038, + -0.19845548272132874, + -0.08715073019266129, + 0.02406385913491249, + -0.06948179006576538, + 0.06242324039340019, + -0.14848297834396362, + -0.25296202301979065, + 0.17171308398246765, + 0.22391799092292786, + 0.30514830350875854, + -0.37667930126190186, + -0.027840863913297653, + 0.18302534520626068, + 0.21891257166862488, + 0.39045628905296326, + -0.08139669895172119, + -0.0086597241461277, + -0.08750622719526291, + -0.24334120750427246, + -0.026501111686229706, + 0.0005951225757598877, + -0.30615055561065674, + -0.1883881688117981, + 0.22617053985595703, + 0.26457566022872925, + 0.17140856385231018, + -0.12118496000766754, + 0.054427385330200195, + 0.31842583417892456, + -0.5454424023628235, + -0.14622870087623596, + 0.12976783514022827, + 0.031104546040296555, + 0.6127027273178101, + -0.12723027169704437, + -0.23996561765670776, + -0.253092497587204, + 0.08502725511789322, + -0.34096935391426086, + 0.05775678530335426, + 0.2255668044090271, + -0.1474025696516037, + 0.06064894422888756, + 0.16771253943443298, + 0.004278358072042465, + -0.15690697729587555, + 0.249468594789505, + -0.1367252916097641, + 0.26656675338745117, + -0.11687643080949783, + -0.41371849179267883, + -0.038778651505708694, + -0.19421939551830292, + -0.21370583772659302, + -0.2878573536872864, + 0.5318673253059387, + 0.26105859875679016, + -0.12998002767562866, + 0.16083687543869019, + 0.07194200158119202, + -0.283555805683136, + -0.18379998207092285, + 0.05986235290765762, + -0.139956995844841, + 0.5749686360359192, + 0.12438569962978363, + -0.2403881996870041, + 0.26792827248573303, + -0.22201626002788544, + 0.26896047592163086, + 0.024926375597715378, + 0.08658510446548462, + 0.311108261346817, + 0.1341984122991562, + 0.10773409157991409, + 0.5506057143211365, + 0.1009610965847969, + -0.023660510778427124, + 0.26020240783691406, + 0.012888725847005844, + -0.006617873907089233, + -0.09569311887025833, + -0.024446338415145874, + 0.32918620109558105, + -0.3470954895019531, + 0.11918028444051743, + 0.07293424755334854, + 0.15971016883850098, + -0.30646637082099915, + -0.22689127922058105, + -0.19276024401187897, + -0.009271301329135895, + 0.004614017903804779, + -0.4780785143375397, + -0.18569275736808777, + 0.07098226249217987, + -0.3252703547477722, + -0.15340255200862885, + 0.4853735566139221, + 0.4047439694404602, + 0.19766554236412048, + -0.10292147845029831, + -0.20468570291996002, + -0.5575733184814453, + 0.02612924948334694, + 0.33485496044158936, + 0.1289076805114746, + 0.10564354062080383, + -0.28611692786216736, + 0.266088604927063, + 0.4853915572166443, + -0.08865010738372803, + 0.10585655272006989, + -0.12946897745132446, + -0.046843428164720535, + 0.07495781779289246, + 0.08907230943441391, + -0.21560455858707428, + -0.024289876222610474, + -0.3488452434539795, + 0.13025403022766113, + -0.42399168014526367, + -0.31058669090270996, + 0.24732525646686554, + -0.23592974245548248, + -0.4775214195251465, + -0.24607306718826294, + 0.16713762283325195, + -0.23781105875968933, + -0.12339784950017929, + 0.2332262396812439, + 0.5032081604003906, + 0.03691597282886505, + -0.2773243188858032, + 0.06767382472753525, + -0.5706654191017151, + -0.14554531872272491, + 0.160103440284729, + -0.250399112701416, + -0.083070307970047, + 0.023551084101200104, + 0.3957142233848572, + 0.48361897468566895, + 0.24200326204299927, + -0.36797189712524414, + -0.13907794654369354, + 0.20376698672771454, + 0.31269514560699463, + -0.14228084683418274, + -10.52149772644043, + -0.05866193026304245, + -0.16109603643417358, + 0.6146279573440552, + -0.11998244374990463, + -0.014858119189739227, + 0.2665661573410034, + -0.04254704713821411, + 0.03513477370142937, + 0.17537495493888855, + -0.20964136719703674, + 0.06945771723985672, + 0.2073594033718109, + 0.26868435740470886, + -0.045113250613212585, + 0.003371894359588623, + -0.2357906997203827, + 0.23871555924415588, + -0.2517309784889221, + 0.15510480105876923, + 0.20144343376159668, + 0.39073023200035095, + -0.11288298666477203, + 0.4067527651786804, + 0.20809334516525269, + -0.3537984788417816, + -0.11938221007585526, + 0.5208151340484619, + 0.19506025314331055, + -0.4319521188735962, + 0.35102662444114685, + 0.1857553869485855, + -0.21698112785816193, + 0.0016163364052772522, + 0.02739902213215828, + -0.022099897265434265, + -0.0760689526796341, + 0.0017201900482177734, + 0.38413435220718384, + -0.08845692873001099, + 0.21923288702964783, + -0.24620984494686127, + 0.24556981027126312, + 0.33930057287216187, + -0.03816438093781471, + -0.3931369185447693, + -0.3541938066482544, + -1.6729061603546143, + 0.26847031712532043, + 0.31537535786628723, + 0.46853530406951904, + 0.010371536016464233, + 0.21712583303451538, + 0.22484508156776428, + -0.478564977645874, + 0.05307956784963608, + -0.2802310585975647, + 0.056732602417469025, + 0.05494832247495651, + -0.030710265040397644, + 0.04083314165472984, + -0.0768602043390274, + 0.3027883768081665, + -0.019860874861478806, + -0.33289626240730286, + 0.189928337931633, + -0.08270322531461716, + -0.10856139659881592, + -0.3198232650756836, + -0.48349717259407043, + -0.3701348602771759, + -0.05765928328037262, + -0.19510418176651, + -0.20681092143058777, + 0.5627577304840088, + -0.10934240370988846, + -0.4082084000110626, + 0.11687737703323364, + -0.049179695546627045, + 0.35133472084999084, + 0.1414029896259308, + -0.018523618578910828, + 0.08479658514261246, + -0.11731429398059845, + -0.20058873295783997, + -0.11878814548254013, + 0.16168616712093353, + 0.5594614744186401, + 0.04072192311286926, + 0.060697879642248154, + -0.11249900609254837, + 0.4332432150840759, + -0.11470121145248413, + -0.15017317235469818, + -0.3387938439846039, + 0.1224551647901535, + -0.05414446443319321, + 0.04927092790603638, + -0.030652247369289398, + -0.2452256828546524, + -0.16480378806591034, + -0.05154358968138695, + -0.07399900257587433, + -0.39761805534362793, + -0.22886420786380768, + 0.1373678743839264, + 0.08312075585126877, + 0.31552910804748535, + 0.1627362221479416, + -0.005833938717842102, + -0.09991461783647537, + -0.08061906695365906, + 0.27358561754226685, + 0.4853225350379944, + 0.23375366628170013, + -0.2465631514787674, + -0.13442116975784302, + -0.1557799130678177, + -0.3698194622993469, + -0.01287461444735527, + 0.5192468762397766, + -0.09986317157745361, + 0.5092771649360657, + 0.5204302668571472, + -0.11005371809005737, + -0.10742278397083282, + 1.05696702003479, + -0.2626265585422516, + 0.34860870242118835, + -0.12696056067943573, + 0.06609726697206497, + -0.21178631484508514, + -0.35323551297187805, + 0.09751426428556442, + 0.38887614011764526, + -0.26918238401412964, + 0.6355773210525513, + 0.1413058340549469, + -0.45477232336997986, + 0.017410017549991608, + -0.16911086440086365, + 0.5645971298217773, + 0.26760178804397583, + 0.1730930209159851, + 0.08465996384620667, + -0.36421099305152893, + -0.20349252223968506, + 0.07011038064956665, + -0.4777170419692993, + -0.27220118045806885, + -0.3756297826766968, + 0.20535331964492798, + 0.049656882882118225, + -0.4205343723297119, + 0.410489022731781, + 0.030932461842894554, + -0.1767231971025467, + -0.11953237652778625, + -0.608121931552887, + -0.017582669854164124, + 0.1931217461824417, + 0.742199182510376, + 0.0673714429140091, + -0.0336107462644577, + -0.10332627594470978, + 0.0956142395734787, + -0.2115991711616516, + 0.07519575953483582, + -0.042031656950712204, + 0.03006545826792717, + -0.6485006809234619, + 0.2145518958568573, + 0.14180871844291687, + -0.47261613607406616, + -0.187157541513443, + -0.26695480942726135, + 0.09071142226457596, + -0.29147908091545105, + -0.18330153822898865, + 0.06593205034732819, + 0.24934104084968567, + 0.012056462466716766, + 0.01157421711832285, + -0.2594800889492035, + 0.10819008946418762, + 0.1651219129562378, + 0.1837885081768036, + 0.15052182972431183, + -0.16714949905872345, + -0.3954675495624542, + -0.12714192271232605, + 0.053219422698020935, + -0.1976548731327057, + 0.013631141744554043, + 0.03539549186825752, + 0.13934974372386932, + -0.3700181841850281, + -0.0519108846783638, + -0.29956403374671936, + 0.15233705937862396, + -0.29191485047340393, + 0.1371629387140274, + 0.3302500247955322, + -0.13850368559360504, + 0.021549459546804428, + -0.2394016683101654, + 0.2526240050792694, + 0.09480217099189758, + -0.2728283405303955, + 0.20540151000022888, + -0.3860236406326294 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/results_graph_088.json b/src/benchmark/output/results/results_graph_088.json new file mode 100644 index 0000000..31b8f4b --- /dev/null +++ b/src/benchmark/output/results/results_graph_088.json @@ -0,0 +1,792 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is an [age]-year-old female with a history of [relevant medical conditions]. She was diagnosed with [primary diagnosis] in [month/year].\n\n**Timeline of Diagnoses and Treatments:**\n\n1. **Step 1 (N1):** The patient started treatment with osimertinib 160 mg in combination with phenytoin.\n2. **32 months after initiating osimertinib (N2):** A CT scan was performed, showing overall stable visceral and osseous disease. However, the left pleural effusion had completely resolved, while the right pleural effusion remained stable in size.\n3. **Patient developed nail changes with increasing brittleness (grade 1) (N3):** Seizure activity remained well controlled, but persistent dyspnea was noted.\n4. **Echocardiogram, exercise stress testing, cardiopulmonary exercise test, and pulmonary function tests (PFTs) were performed (N4):** These tests showed evidence of chronic obstructive lung disease (COPD) and emphysema.\n5. **Osimertinib dose was reduced to 80 mg daily for one week, then resumed at 160 mg daily due to persistent dyspnea (N5):** Despite the dose reduction, dyspnea did not significantly improve.\n6. **Patient achieved prolonged disease control on osimertinib treatment with continued osimertinib at a dose of 160 mg daily (N6):** Disease progression later stabilized following three cycles of carboplatin/pemetrexed.\n\n**Outcomes:**\n\n* The patient's dyspnea did not significantly improve despite the dose reduction of osimertinib.\n* However, she achieved prolonged disease control on osimertinib treatment with continued osimertinib at a dose of 160 mg daily.\n* The patient's COPD and emphysema were diagnosed and managed effectively.\n\n**Conclusion:**\nThe patient was initially treated with osimertinib 160 mg in combination with phenytoin. After 32 months, a CT scan showed overall stable disease, but persistent dyspnea remained a concern. Despite a dose reduction of osimertinib, the patient's dyspnea did not improve significantly. However, she achieved prolonged disease control on osimertinib treatment with continued dosing at 160 mg daily, and her COPD and emphysema were effectively managed.\n\n**Recommendations:**\n\n* Continue to monitor the patient's dyspnea and adjust the osimertinib dose as needed.\n* Consider adding additional treatments for COPD and emphysema, such as bronchodilators or corticosteroids.\n* Regularly review the patient's disease progression and adjust the treatment plan accordingly.", + "bertscore": { + "precision": 0.7171581387519836, + "recall": 0.7824183702468872, + "f1": 0.7483682036399841 + }, + "bleu": 0.05612083691011624, + "rouge1": 0.2714932126696833, + "rougeL": 0.167420814479638, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 6, + "edge_count": 5, + "avg_in_degree": 0.8333333333333334, + "density": 0.16666666666666666 + }, + "trajectory_embedding": [ + 0.0932932123541832, + 0.22252197563648224, + -0.14526592195034027, + 0.15939070284366608, + -0.20974844694137573, + -0.031670670956373215, + -0.08481299877166748, + 0.16466908156871796, + 0.41577473282814026, + -0.0943373441696167, + -0.1593114733695984, + 0.17494191229343414, + -0.625055193901062, + -0.19611741602420807, + -0.2852177917957306, + 0.02521532028913498, + 0.10379129648208618, + 0.2883397042751312, + 0.039058659225702286, + -0.2755471169948578, + -0.13961149752140045, + 0.07383914291858673, + -0.4290246069431305, + -0.09295108914375305, + 0.057183992117643356, + -0.005033988505601883, + 0.16968488693237305, + 0.550330400466919, + 0.12917135655879974, + 0.348595529794693, + 0.186366006731987, + 0.10570526123046875, + -0.20654137432575226, + 0.1105787456035614, + -0.04829126596450806, + 0.25487256050109863, + 0.1223161593079567, + 0.23927462100982666, + 0.021722251549363136, + -0.08944636583328247, + -0.20376800000667572, + 0.16122068464756012, + 0.7655620574951172, + 0.15032429993152618, + 0.3587258756160736, + -0.7324102520942688, + -0.0013372823596000671, + 0.5411903262138367, + -0.3529610335826874, + -0.07923353463411331, + 0.3170825242996216, + 0.6176950335502625, + 0.6656267046928406, + -0.13577334582805634, + 0.4729914963245392, + -0.1113671138882637, + -0.31638190150260925, + -0.2607385218143463, + -0.055906739085912704, + 0.06923358887434006, + 0.04643925651907921, + -0.07160087674856186, + 0.17371760308742523, + -0.04520362988114357, + -0.254146009683609, + -0.18158002197742462, + -0.14840969443321228, + 0.10518214851617813, + 0.07643141597509384, + -0.20122694969177246, + -0.24227969348430634, + -0.39551496505737305, + -0.21774864196777344, + 0.07412704825401306, + 0.08674605935811996, + -0.10720458626747131, + 0.2739469110965729, + 0.0050252825021743774, + 0.09816431999206543, + -0.10553467273712158, + 0.01047863531857729, + 0.29093900322914124, + 0.003038863418623805, + 0.27632996439933777, + -0.28523632884025574, + 0.2158323973417282, + -0.1680164933204651, + -0.09290950745344162, + -0.2393179088830948, + 0.11390490084886551, + 0.04863245412707329, + -0.1780092716217041, + 0.178677499294281, + -0.20120012760162354, + 0.16101135313510895, + -0.06491848826408386, + 0.3932929039001465, + 0.28297802805900574, + 0.8817350268363953, + 0.07312968373298645, + 0.2281792014837265, + 0.0653696283698082, + 0.04147519916296005, + -0.23874877393245697, + 0.3797897398471832, + -0.16572551429271698, + 0.12646734714508057, + -0.6004130244255066, + -0.005676046013832092, + 0.6325801014900208, + 0.08208435028791428, + -0.3366829454898834, + 0.24977701902389526, + -0.27412232756614685, + 0.059725116938352585, + 0.003313970984891057, + -0.06251013278961182, + 0.32798200845718384, + -0.0054982504807412624, + -0.3421112596988678, + -0.12478604167699814, + -0.2738487422466278, + 0.28364840149879456, + 0.3645917475223541, + -0.4146024286746979, + -0.150970920920372, + -0.06150759756565094, + 0.13552986085414886, + -0.016772761940956116, + 0.13218477368354797, + -0.39912402629852295, + -0.11100881546735764, + -0.07014258950948715, + 0.23228515684604645, + -0.07955313473939896, + 0.42818769812583923, + -0.4482235908508301, + 0.32592740654945374, + -1.121076226234436, + 0.12500505149364471, + -0.2968970835208893, + -0.05828837677836418, + -0.03016706369817257, + -0.5122116208076477, + -0.2014046162366867, + -0.01456458866596222, + -0.10602451115846634, + 0.06830257922410965, + -0.1427515596151352, + -0.10450319200754166, + -0.3104049265384674, + -0.022173697128891945, + 0.17479901015758514, + 0.2948418855667114, + -0.016613267362117767, + 0.13325060904026031, + 0.08553051948547363, + 0.39376235008239746, + 0.11496338248252869, + -0.07676418870687485, + 0.2038629800081253, + 0.3754045069217682, + -0.2587677240371704, + -0.23419640958309174, + 0.15835608541965485, + -0.5833010673522949, + 0.08061450719833374, + -0.15889407694339752, + 0.24345530569553375, + 0.11779540777206421, + -0.2417188137769699, + -0.037906184792518616, + -0.290595144033432, + 0.7134247422218323, + 0.22195668518543243, + 0.6084230542182922, + 0.12171473354101181, + 0.07777171581983566, + 0.4453684091567993, + -0.05838267505168915, + 0.14275552332401276, + -0.09459849447011948, + 0.4691775143146515, + 0.262114554643631, + -0.32795509696006775, + 0.1574448198080063, + 0.23015518486499786, + -0.05550314486026764, + -0.31759971380233765, + -0.052123814821243286, + 0.5047041773796082, + -0.1387498527765274, + 0.21028558909893036, + -0.23435695469379425, + 0.08573295921087265, + -0.03969031944870949, + -0.317074716091156, + -0.11806487292051315, + -0.04810910299420357, + -0.15949302911758423, + 0.2346198558807373, + 0.1542006880044937, + -0.28566974401474, + 0.1743888109922409, + 0.23759739100933075, + -0.11727970838546753, + 0.003042767522856593, + 0.03569648042321205, + -0.04866256192326546, + -0.2084188312292099, + 0.018093740567564964, + 0.1554110050201416, + 0.008794811554253101, + 0.2905615270137787, + 0.03705059736967087, + -0.3256799876689911, + -0.07616572827100754, + 0.012924755923449993, + -0.08372151106595993, + 0.10073862224817276, + 0.05460295453667641, + -0.030389586463570595, + -0.011835361830890179, + -0.011188171803951263, + -0.34309348464012146, + 0.29669561982154846, + 0.2920264005661011, + 0.3743865191936493, + 0.07021404802799225, + 0.022515086457133293, + 0.1665567308664322, + -0.327128142118454, + 0.20053505897521973, + -0.14016716182231903, + -0.09755033254623413, + -0.27957046031951904, + 0.21938996016979218, + 0.011866572313010693, + -0.13002045452594757, + 0.25996074080467224, + -0.13446612656116486, + -0.15759076178073883, + 0.2586289346218109, + -0.28047987818717957, + 0.16253159940242767, + -0.32659289240837097, + -0.2178090363740921, + 0.4286471903324127, + 0.27135494351387024, + 0.333317369222641, + 0.10836542397737503, + -0.02360733412206173, + 0.3055698573589325, + -0.22367429733276367, + -0.330165833234787, + -0.3856450021266937, + -0.11537948995828629, + -0.04488852247595787, + -0.35227322578430176, + -0.05516402795910835, + 0.03070908971130848, + -0.2456774264574051, + 0.20741312205791473, + -0.21256913244724274, + 0.017093835398554802, + -0.1584024876356125, + 0.1802026778459549, + 0.2443542629480362, + -0.12208431959152222, + 0.09206216782331467, + -0.21252624690532684, + -0.12058385461568832, + -0.20938904583454132, + -0.07793682813644409, + 0.17311197519302368, + 0.24984489381313324, + -0.16684909164905548, + 0.09921729564666748, + 0.22069485485553741, + -0.4771226644515991, + -0.20111916959285736, + 0.14713551104068756, + -0.2790726125240326, + 0.29010021686553955, + -0.2607676684856415, + 0.2741756737232208, + 0.14714883267879486, + -0.002378121018409729, + 0.20501069724559784, + 0.21468663215637207, + 0.4607539176940918, + -0.06178804114460945, + -0.08888629823923111, + -0.16321702301502228, + -0.0028973284643143415, + -0.043634116649627686, + -0.47478553652763367, + 0.2961576282978058, + -0.10930630564689636, + -0.008120897226035595, + -0.005853208247572184, + 0.017454298213124275, + 0.10650646686553955, + -0.20742261409759521, + -0.15158820152282715, + 0.45555996894836426, + 0.27598297595977783, + 0.09055165201425552, + 0.07321750372648239, + 0.18118508160114288, + 0.6698780059814453, + -0.03940422832965851, + -0.10483068972826004, + -0.06664181500673294, + -0.336637407541275, + -0.10703068226575851, + -0.07271743565797806, + 0.05023205280303955, + 0.444963663816452, + 0.02759489417076111, + -0.18860264122486115, + 0.4251619875431061, + -0.1526188850402832, + -0.14117762446403503, + -0.3042178452014923, + -0.20446975529193878, + -0.055175911635160446, + 0.02221716195344925, + 0.3359704911708832, + -0.1601865142583847, + -0.05650157853960991, + 0.3063613176345825, + -0.09893735498189926, + -0.05230790376663208, + 0.027952425181865692, + -0.14737868309020996, + -0.5083025693893433, + 0.3623875677585602, + -0.09405184537172318, + 0.11202395707368851, + 0.28499507904052734, + -0.09658050537109375, + -0.12097350507974625, + -0.16174669563770294, + 0.28881990909576416, + 0.08728750795125961, + 0.06457052379846573, + -0.12393930554389954, + 0.21874268352985382, + 0.09890226274728775, + 0.3422815799713135, + 0.19794480502605438, + 0.08238372951745987, + 0.14460323750972748, + -0.26665374636650085, + -0.3410116732120514, + -0.04103467985987663, + 0.04804569482803345, + 0.05400605872273445, + -0.27605491876602173, + -0.27048131823539734, + -0.02550983428955078, + 0.17242081463336945, + 0.2116464525461197, + -0.22502565383911133, + 0.04066767171025276, + 0.05732369422912598, + 0.03799021989107132, + 0.004102384205907583, + 0.49388399720191956, + 0.3559645712375641, + 0.01872328855097294, + 0.513965368270874, + 0.1997574120759964, + -0.09199824184179306, + 0.24667499959468842, + -0.02629281021654606, + 0.18290270864963531, + -0.15190823376178741, + -0.42685770988464355, + -0.3379993438720703, + 0.022679997608065605, + -0.041648443788290024, + -0.09315693378448486, + -0.044397469609975815, + -0.26226165890693665, + -0.08793700486421585, + -0.04223243519663811, + 0.0470975898206234, + 0.04715189337730408, + 0.2794052064418793, + -0.28929653763771057, + 0.4239053726196289, + -0.14235641062259674, + -0.19226020574569702, + 0.06801048666238785, + -0.052950188517570496, + 0.21022284030914307, + -0.21182076632976532, + -0.1057010069489479, + -0.11418718844652176, + 0.5331012606620789, + -0.0440969318151474, + -0.09433523565530777, + -0.1805032640695572, + -0.13420532643795013, + -0.2734861671924591, + -0.3608112037181854, + 0.09881559759378433, + -0.08297424763441086, + -0.0980168804526329, + -0.2254045009613037, + 0.12245756387710571, + -0.03783087059855461, + -0.27766934037208557, + -0.1458224505186081, + 0.048388123512268066, + 0.046347592025995255, + 0.05348365008831024, + 0.11280658096075058, + 0.3525538444519043, + 0.07776307314634323, + 0.4142664968967438, + -0.2357398271560669, + 0.25764039158821106, + 0.09710013121366501, + -0.24616561830043793, + 0.04311452805995941, + 0.08581709861755371, + -0.13949239253997803, + -0.019189268350601196, + 0.18605540692806244, + 0.03937113285064697, + -0.15369702875614166, + -0.09488817304372787, + -0.047470856457948685, + 0.11407341808080673, + -0.1617022305727005, + -0.17794841527938843, + 0.24191980063915253, + -0.10251930356025696, + 0.2323332577943802, + 0.17346979677677155, + -0.4152207374572754, + -0.18064694106578827, + -0.14092983305454254, + -0.3382721245288849, + 0.1548185795545578, + -0.05142590031027794, + -0.21200956404209137, + 0.021805040538311005, + -0.09549779444932938, + 0.17945365607738495, + 0.07128652185201645, + 0.19518804550170898, + 0.12036222219467163, + 0.26546913385391235, + -0.021182088181376457, + -0.33714184165000916, + 0.021989179775118828, + -0.3136853277683258, + -0.2949233651161194, + -0.17822706699371338, + 0.20928116142749786, + 0.23129267990589142, + -0.28014519810676575, + -0.08552839607000351, + 0.08937478065490723, + -0.24043051898479462, + -0.3183756172657013, + -0.16880659759044647, + -0.09631653875112534, + 0.49294087290763855, + 0.06170240417122841, + -0.1932736188173294, + 0.06529556959867477, + -0.36222633719444275, + 0.176583394408226, + 0.235460564494133, + 0.1392861008644104, + 0.27457138895988464, + 0.0989886149764061, + 0.04111700877547264, + 0.3945091962814331, + 0.02350730635225773, + 0.05301901698112488, + 0.2589324116706848, + -0.08525840193033218, + 0.23566363751888275, + -0.0915536880493164, + -0.10780002921819687, + 0.2865571975708008, + -0.34516027569770813, + 0.1579422503709793, + -0.1098853349685669, + 0.43606457114219666, + -0.29280754923820496, + -0.3270603120326996, + 0.013051782734692097, + -0.15463034808635712, + -0.11356935650110245, + -0.2170911282300949, + -0.08925988525152206, + 0.02894536592066288, + 0.11964192241430283, + -0.08322902768850327, + 0.14616519212722778, + 0.35460957884788513, + -0.0551704466342926, + 0.1321456879377365, + -0.2503812611103058, + -0.25734907388687134, + 0.07323399186134338, + 0.348968505859375, + 0.05030667781829834, + -0.20928005874156952, + -0.0066027045249938965, + 0.21576374769210815, + 0.18694205582141876, + -0.025540689006447792, + -0.05406864359974861, + 0.10758241266012192, + -0.10054022073745728, + 0.005688028875738382, + 0.211483433842659, + -0.07317795604467392, + 0.1860990971326828, + -0.28764408826828003, + 0.012710104696452618, + -0.026702264323830605, + -0.16530251502990723, + 0.1826000213623047, + -0.35041406750679016, + -0.6063994765281677, + 0.1740301251411438, + 0.10236053913831711, + 0.1292775422334671, + -0.11260899156332016, + 0.27551329135894775, + 0.46047136187553406, + 0.06269005686044693, + -0.1720420867204666, + 0.009614101611077785, + -0.4017919600009918, + 0.05386490002274513, + 0.13263826072216034, + -0.05590236559510231, + -0.0018665976822376251, + -0.046524304896593094, + 0.34903955459594727, + 0.2790030539035797, + 0.18543492257595062, + -0.38093772530555725, + 0.3401983082294464, + 0.3624304234981537, + 0.40966853499412537, + -0.3600245714187622, + -10.870512962341309, + 0.180294930934906, + -0.03554985299706459, + 0.4312049448490143, + -0.15606854856014252, + 0.14527128636837006, + -0.1766577810049057, + -0.13640731573104858, + 0.1269116997718811, + 0.05801498889923096, + -0.2637585699558258, + -0.10079621523618698, + 0.20725907385349274, + 0.005339592695236206, + 0.05540558695793152, + 0.01509036123752594, + -0.31256261467933655, + 0.17200994491577148, + 0.07886824011802673, + 0.10334396362304688, + 0.17954586446285248, + 0.41762158274650574, + -0.08780259639024734, + 0.09153036028146744, + 0.062205106019973755, + -0.015605275519192219, + -0.08163753896951675, + 0.41811075806617737, + 0.06718413531780243, + -0.2377891093492508, + 0.18298892676830292, + -0.07649048417806625, + -0.1470458060503006, + -0.14336064457893372, + -0.17270831763744354, + -0.29553452134132385, + -0.19606804847717285, + -0.05774223804473877, + -0.08318781852722168, + -0.22394001483917236, + -0.041662830859422684, + -0.11502647399902344, + 0.05314693972468376, + 0.2215041071176529, + -0.11389639973640442, + -0.6934958100318909, + -0.06640445441007614, + -1.475129246711731, + 0.07750623673200607, + 0.29980146884918213, + 0.5974081158638, + 0.08256556838750839, + 0.04333962872624397, + 0.0639515295624733, + -0.4313758313655853, + 0.017804378643631935, + -0.2359410971403122, + 0.0478404276072979, + 0.08634606003761292, + -0.004381199833005667, + 0.08870617300271988, + -0.08074883371591568, + 0.5249351263046265, + -0.4142329692840576, + -0.36986610293388367, + 0.1913277506828308, + -0.029002806171774864, + -0.011400774121284485, + -0.12002703547477722, + -0.4213210642337799, + -0.6017170548439026, + -0.14473982155323029, + -0.03069092333316803, + 0.14155088365077972, + 0.2949472665786743, + 0.07878261804580688, + -0.2586101293563843, + 0.15187357366085052, + -0.1685909479856491, + 0.2053777426481247, + 0.14729730784893036, + -0.07037488371133804, + 0.3162781000137329, + -0.047114331275224686, + -0.0038810856640338898, + -0.20487064123153687, + -0.005768758710473776, + 0.4125922620296478, + 0.14336548745632172, + -0.0019141919910907745, + -0.005232168827205896, + 0.20039354264736176, + -0.10362102836370468, + -0.11880900710821152, + -0.4662646949291229, + -0.10445310920476913, + -0.06667003780603409, + 0.11724800616502762, + 0.05141745135188103, + 0.03158038109540939, + -0.18259549140930176, + 0.06415187567472458, + 0.005868453066796064, + -0.34892940521240234, + -0.25719624757766724, + 0.3763006925582886, + 0.2551797926425934, + -0.04959214851260185, + 0.12653695046901703, + -0.10576946288347244, + 0.0917309820652008, + 0.2781619131565094, + 0.4160991907119751, + 0.5094340443611145, + 0.13598884642124176, + 0.09946203231811523, + -0.13307525217533112, + 0.062275033444166183, + -0.10977735370397568, + 0.15984125435352325, + 0.216755211353302, + 0.07127999514341354, + 0.2069898396730423, + 0.3911607563495636, + 0.08436664193868637, + -0.10696790367364883, + 0.7786993980407715, + -0.22766394913196564, + 0.3023633062839508, + -0.09521976113319397, + 0.2361452579498291, + 0.020686663687229156, + -0.3374462425708771, + -0.016439178958535194, + 0.23164601624011993, + -0.4531600773334503, + 0.352059006690979, + 0.08277871459722519, + -0.23703913390636444, + 0.02336391806602478, + -0.4467061460018158, + 0.4349687993526459, + 0.3632441461086273, + 0.37597575783729553, + -0.07526091486215591, + -0.30344393849372864, + -0.21311922371387482, + 0.19952942430973053, + -0.2564801871776581, + -0.24825572967529297, + 0.05567367747426033, + -0.15804757177829742, + 0.0069679333828389645, + -0.08759383112192154, + 0.326414555311203, + 0.12271643429994583, + -0.03332125023007393, + 0.002784608630463481, + -0.17578673362731934, + -0.18879537284374237, + 0.06531774252653122, + 0.43388092517852783, + 0.13352175056934357, + -0.025218287482857704, + -0.06184760853648186, + 0.3128725588321686, + -0.06870735436677933, + 0.1545356661081314, + 0.057919424027204514, + 0.028333552181720734, + -0.3591172695159912, + 0.09084191173315048, + 0.07145512104034424, + -0.15783746540546417, + -0.12509365379810333, + -0.3401971161365509, + 0.2230803519487381, + 0.13781367242336273, + -0.2879030704498291, + 0.2896013557910919, + 0.5541418194770813, + 0.007132460828870535, + -0.1171417236328125, + -0.3018569052219391, + 0.045847680419683456, + 0.16200213134288788, + 0.16914339363574982, + 0.08683129400014877, + -0.2957318127155304, + -0.29960572719573975, + -0.4268268644809723, + 0.15440618991851807, + -0.43740710616111755, + 0.09787005931138992, + 0.2530539333820343, + 0.021445520222187042, + -0.23829889297485352, + 0.10287903994321823, + 0.007923956029117107, + -0.06521789729595184, + -0.16930167376995087, + 0.07108300179243088, + 0.34331563115119934, + -0.5605292320251465, + 0.2891293466091156, + -0.0832212045788765, + 0.2333129197359085, + 0.1323695331811905, + -0.33683013916015625, + 0.1579608917236328, + -0.08386263996362686 + ] +} \ No newline at end of file diff --git a/src/benchmark/setup_and_run.sh b/src/benchmark/setup_and_run.sh index 31c246c..c015501 100755 --- a/src/benchmark/setup_and_run.sh +++ b/src/benchmark/setup_and_run.sh @@ -18,8 +18,8 @@ else echo "No requirements.txt found. Skipping dependency installation." fi -echo "Running batch run..." -python3 batch_run.py +# echo "Running batch run..." +# python3 batch_run.py echo "Generating plots..." python3 generate_visuals.py \ No newline at end of file From e919fd77c133aa43ba819f6cd2a509ef20b8fc40 Mon Sep 17 00:00:00 2001 From: Vicky Bikia Date: Mon, 12 May 2025 14:39:14 -0700 Subject: [PATCH 07/11] Clean unecessary results --- src/benchmark/batch_run.py | 1 - .../modules/similarity_and_clustering.py | 172 ++++++++++++++++++ src/benchmark/requirements.txt | 3 +- src/benchmark/setup_and_run.sh | 7 +- 4 files changed, 179 insertions(+), 4 deletions(-) create mode 100644 src/benchmark/modules/similarity_and_clustering.py diff --git a/src/benchmark/batch_run.py b/src/benchmark/batch_run.py index 30edd4e..d11bb53 100644 --- a/src/benchmark/batch_run.py +++ b/src/benchmark/batch_run.py @@ -21,7 +21,6 @@ save_results, build_graph_to_text_mapping, extract_case_presentation_from_file, - summarize_metrics_statistics ) logger = setup_logger(__name__) diff --git a/src/benchmark/modules/similarity_and_clustering.py b/src/benchmark/modules/similarity_and_clustering.py new file mode 100644 index 0000000..35e13f0 --- /dev/null +++ b/src/benchmark/modules/similarity_and_clustering.py @@ -0,0 +1,172 @@ +# pylint: disable=broad-exception-caught,too-few-public-methods + +# This source file is part of the Daneshjou Lab projects +# +# SPDX-FileCopyrightText: 2025 Stanford University and the project authors (see AUTHORS.md) +# +# SPDX-License-Identifier: MIT + +""" +This module implements similarity and clustering analysis of trajectory embeddings with dimensionality optimization. +""" + +import json +import numpy as np +from pathlib import Path +from sklearn.cluster import KMeans +from sklearn.metrics.pairwise import cosine_similarity +from sklearn.metrics import silhouette_score, calinski_harabasz_score, davies_bouldin_score +from sklearn.decomposition import PCA +import matplotlib.pyplot as plt +import umap +import seaborn as sns +import pandas as pd +import warnings +warnings.filterwarnings("ignore", category=FutureWarning) +warnings.filterwarnings("ignore", category=UserWarning) + +# Define paths +RESULTS_DIR = Path("output/results") +PLOTS_DIR = Path("output/plots") +PLOTS_DIR.mkdir(parents=True, exist_ok=True) + +EMBEDDINGS = [] +GRAPH_IDS = [] + +def main(method="pca", dim_range=range(2, 11), cluster_range=range(2, 11)): + # Step 1: Extract trajectory embeddings + for file in RESULTS_DIR.glob("*.json"): + with open(file) as f: + data = json.load(f) + emb = data.get("trajectory_embedding") + if emb: + EMBEDDINGS.append(emb) + GRAPH_IDS.append(file.stem) + + if not EMBEDDINGS: + raise ValueError("No valid embeddings found in results directory.") + + embedding_matrix = np.array(EMBEDDINGS) + + best_silhouette = -1 + best_dim = None + best_k = None + best_embedding = None + best_labels = None + silhouette_scores = {} + + if method == "none": + for k in cluster_range: + kmeans = KMeans(n_clusters=k, random_state=4) + kmeans_labels = kmeans.fit_predict(embedding_matrix) + sil_score = silhouette_score(embedding_matrix, kmeans_labels) + ch_score = calinski_harabasz_score(embedding_matrix, kmeans_labels) + db_score = davies_bouldin_score(embedding_matrix, kmeans_labels) + # print(f"[dim=none, k={k}] Silhouette={sil_score:.4f}, CH={ch_score:.1f}, DB={db_score:.3f}") + silhouette_scores[("none", k)] = sil_score + + if sil_score > best_silhouette: + best_silhouette = sil_score + best_dim = "none" + best_k = k + best_embedding = embedding_matrix + best_labels = kmeans_labels + else: + for dim in dim_range: + if method == "umap": + reducer = umap.UMAP(n_components=dim, random_state=4, n_neighbors=5, min_dist=0.1) + elif method == "pca": + reducer = PCA(n_components=dim, random_state=4) + else: + raise ValueError("Invalid reduction method. Choose 'pca', 'umap', or 'none'.") + + reduced_embedding = reducer.fit_transform(embedding_matrix) + + for k in cluster_range: + kmeans = KMeans(n_clusters=k, random_state=4) + kmeans_labels = kmeans.fit_predict(reduced_embedding) + sil_score = silhouette_score(reduced_embedding, kmeans_labels) + ch_score = calinski_harabasz_score(reduced_embedding, kmeans_labels) + db_score = davies_bouldin_score(reduced_embedding, kmeans_labels) + print(f"[dim={dim}, k={k}] Silhouette={sil_score:.4f}, CH={ch_score:.1f}, DB={db_score:.3f}") + silhouette_scores[(dim, k)] = sil_score + + if sil_score > best_silhouette: + best_silhouette = sil_score + best_dim = dim + best_k = k + best_embedding = reduced_embedding + best_labels = kmeans_labels + + + # Compute metrics for best config + ch_score = calinski_harabasz_score(best_embedding, best_labels) + db_score = davies_bouldin_score(best_embedding, best_labels) + print(f"Best silhouette score: {best_silhouette:.4f} at dimension: {best_dim}, clusters: {best_k} using {method.upper()}") + print(f"Calinski-Harabasz score: {ch_score:.1f}") + print(f"Davies-Bouldin score: {db_score:.3f}") + + # Plot best scores bar chart + plt.figure(figsize=(6, 4)) + metrics = [best_silhouette, ch_score, db_score] + names = ["Silhouette", "Calinski-Harabasz", "Davies-Bouldin"] + colors = ["steelblue", "seagreen", "indianred"] + plt.bar(names, metrics, color=colors) + plt.title(f"Best Clustering Metrics (k={best_k}, dim={best_dim})") + plt.ylabel("Score") + plt.tight_layout() + plt.savefig(PLOTS_DIR / f"clustering_metrics_best_{method}.png") + plt.close() + + # Output clustering results + cluster_df = pd.DataFrame({ + "Graph ID": GRAPH_IDS, + "KMeans Label": best_labels, + }) + cluster_df.to_csv(PLOTS_DIR / "cluster_assignments.csv", index=False) + + # Plot silhouette score heatmap (skip for 'none') + if method != "none": + sil_matrix = pd.DataFrame( + {(dim, k): [score] for (dim, k), score in silhouette_scores.items()} + ).T.reset_index() + sil_matrix.columns = ["Dimension", "Clusters", "Silhouette"] + + pivot_table = sil_matrix.pivot(index="Dimension", columns="Clusters", values="Silhouette") + plt.figure(figsize=(10, 6)) + sns.heatmap(pivot_table, annot=True, fmt=".2f", cmap="viridis") + plt.title("Silhouette Score by Dimension and Number of Clusters") + plt.xlabel("Clusters") + plt.ylabel("Dimension") + plt.tight_layout() + plt.savefig(PLOTS_DIR / f"silhouette_heatmap_{method}.png") + plt.close() + + # Visualize projection with cluster labels (only if reduced) + if method != "none" and best_embedding.shape[1] >= 2: + plt.figure(figsize=(10, 8)) + sns.scatterplot(x=best_embedding[:, 0], y=best_embedding[:, 1], hue=best_labels, palette="tab10", legend="full") + plt.title(f"{method.upper()} Projection (KMeans, k={best_k})") + plt.xlabel("Dimension 1") + plt.ylabel("Dimension 2") + plt.tight_layout() + plt.savefig(PLOTS_DIR / f"{method}_kmeans_clusters.png") + plt.close() + + # Heatmap of cosine similarity + similarity_matrix = cosine_similarity(embedding_matrix) + plt.figure(figsize=(10, 8)) + sns.heatmap(similarity_matrix, xticklabels=GRAPH_IDS, yticklabels=GRAPH_IDS, + cmap="coolwarm", square=True) + plt.title("Trajectory Similarity Heatmap") + plt.tight_layout() + plt.savefig(PLOTS_DIR / "similarity_heatmap.png") + plt.close() + + # Save cluster assignments + with open(RESULTS_DIR / "trajectory_clusters_kmeans.json", "w") as f: + json.dump(dict(zip(GRAPH_IDS, best_labels.tolist())), f, indent=2) + + +if __name__ == "__main__": + main(method="umap") # Options: "pca", "umap", or "none" \ No newline at end of file diff --git a/src/benchmark/requirements.txt b/src/benchmark/requirements.txt index b1115e5..74b0774 100644 --- a/src/benchmark/requirements.txt +++ b/src/benchmark/requirements.txt @@ -13,4 +13,5 @@ bs4 evaluate rouge_score absl-py -nltk \ No newline at end of file +nltk +umap-learn \ No newline at end of file diff --git a/src/benchmark/setup_and_run.sh b/src/benchmark/setup_and_run.sh index c015501..8949b9a 100755 --- a/src/benchmark/setup_and_run.sh +++ b/src/benchmark/setup_and_run.sh @@ -21,5 +21,8 @@ fi # echo "Running batch run..." # python3 batch_run.py -echo "Generating plots..." -python3 generate_visuals.py \ No newline at end of file +# echo "Generating plots..." +# python3 generate_visuals.py + +echo "Generating similarity and clustering results..." +python3 modules/similarity_and_clustering.py \ No newline at end of file From 3cf64a90e5e751ea4480ffd39a393436f322a1a0 Mon Sep 17 00:00:00 2001 From: Vicky Bikia Date: Wed, 14 May 2025 18:12:46 -0700 Subject: [PATCH 08/11] Update clustering pipeline --- src/benchmark/bertscore_eval.py | 663 --------------- .../modules/compare_graph_vs_text_clusters.py | 282 +++++++ .../output/plots/cluster_assignments.csv | 77 ++ .../plots/clustering_metrics_best_umap.png | Bin 0 -> 15856 bytes .../plots/clustering_score_comparison.png | Bin 0 -> 20454 bytes .../plots/graph_cancer_type_heatmap.png | Bin 0 -> 58169 bytes .../graph_cluster_metastasis_barplot.png | Bin 0 -> 16692 bytes .../clustering_score_comparison.png | Bin 0 -> 18584 bytes .../output/plots/plots_testset/tsne_graph.png | Bin 0 -> 16323 bytes .../output/plots/plots_testset/tsne_text.png | Bin 0 -> 17169 bytes .../output/plots/silhouette_heatmap_umap.png | Bin 0 -> 70142 bytes .../output/plots/similarity_heatmap.png | Bin 0 -> 107270 bytes .../output/plots/text_cancer_type_heatmap.png | Bin 0 -> 52684 bytes .../plots/text_cluster_metastasis_barplot.png | Bin 0 -> 15749 bytes src/benchmark/output/plots/tsne_graph-pca.png | Bin 0 -> 17549 bytes .../output/plots/tsne_graph-umap.png | Bin 0 -> 19375 bytes src/benchmark/output/plots/tsne_text-pca.png | Bin 0 -> 16637 bytes src/benchmark/output/plots/tsne_text-umap.png | Bin 0 -> 16726 bytes .../output/plots/umap_kmeans_clusters.png | Bin 0 -> 34681 bytes .../results/cluster_labels_with_metadata.csv | 405 +++++++++ .../results/cluster_metadata_summary.csv | 4 + .../output/results/graph_html_metadata.csv | 411 +++++++++ .../results/testset/graph_html_metadata.csv | 411 +++++++++ .../results/testset/results_graph_001.json | 792 ++++++++++++++++++ .../results/testset/results_graph_003.json | 792 ++++++++++++++++++ .../results/testset/results_graph_004.json | 792 ++++++++++++++++++ .../results/testset/results_graph_005.json | 792 ++++++++++++++++++ .../results/trajectory_clusters_kmeans.json | 78 ++ src/benchmark/setup_and_run.sh | 2 +- 29 files changed, 4837 insertions(+), 664 deletions(-) delete mode 100644 src/benchmark/bertscore_eval.py create mode 100644 src/benchmark/modules/compare_graph_vs_text_clusters.py create mode 100644 src/benchmark/output/plots/cluster_assignments.csv create mode 100644 src/benchmark/output/plots/clustering_metrics_best_umap.png create mode 100644 src/benchmark/output/plots/clustering_score_comparison.png create mode 100644 src/benchmark/output/plots/graph_cancer_type_heatmap.png create mode 100644 src/benchmark/output/plots/graph_cluster_metastasis_barplot.png create mode 100644 src/benchmark/output/plots/plots_testset/clustering_score_comparison.png create mode 100644 src/benchmark/output/plots/plots_testset/tsne_graph.png create mode 100644 src/benchmark/output/plots/plots_testset/tsne_text.png create mode 100644 src/benchmark/output/plots/silhouette_heatmap_umap.png create mode 100644 src/benchmark/output/plots/similarity_heatmap.png create mode 100644 src/benchmark/output/plots/text_cancer_type_heatmap.png create mode 100644 src/benchmark/output/plots/text_cluster_metastasis_barplot.png create mode 100644 src/benchmark/output/plots/tsne_graph-pca.png create mode 100644 src/benchmark/output/plots/tsne_graph-umap.png create mode 100644 src/benchmark/output/plots/tsne_text-pca.png create mode 100644 src/benchmark/output/plots/tsne_text-umap.png create mode 100644 src/benchmark/output/plots/umap_kmeans_clusters.png create mode 100644 src/benchmark/output/results/cluster_labels_with_metadata.csv create mode 100644 src/benchmark/output/results/cluster_metadata_summary.csv create mode 100644 src/benchmark/output/results/graph_html_metadata.csv create mode 100644 src/benchmark/output/results/testset/graph_html_metadata.csv create mode 100644 src/benchmark/output/results/testset/results_graph_001.json create mode 100644 src/benchmark/output/results/testset/results_graph_003.json create mode 100644 src/benchmark/output/results/testset/results_graph_004.json create mode 100644 src/benchmark/output/results/testset/results_graph_005.json create mode 100644 src/benchmark/output/results/trajectory_clusters_kmeans.json diff --git a/src/benchmark/bertscore_eval.py b/src/benchmark/bertscore_eval.py deleted file mode 100644 index 49d15ad..0000000 --- a/src/benchmark/bertscore_eval.py +++ /dev/null @@ -1,663 +0,0 @@ -import os -import re -import json -from typing import Any, Dict, List, Optional, Tuple, Union -from transformers import AutoTokenizer, AutoModel - -import logging - -import networkx as nx -from networkx.readwrite import json_graph -from bert_score import score -import dspy - -# ─── Configuration ────────────────────────────────────────────────────────────── - -Graph = nx.DiGraph - - -# Let's change this to GEMINI -# DSPy LLM settings -LM_MODEL = "ollama_chat/llama3.2" -LM_API_BASE = "http://localhost:11434" -LM_API_KEY = "" # or your local key if required - -# BERTScore model settings -#BERTSCORE_MODEL = "emilyalsentzer/Bio_ClinicalBERT" -#Let's get this to work -BERTSCORE_MODEL = "bert-base-uncased" - - -# Setup logging -logging.basicConfig( - level=logging.INFO, - format='%(asctime)s - %(name)s - %(levelname)s - %(message)s' -) -logger = logging.getLogger(__name__) - - - - -# ─── 1. LLM-BASED NARRATIVE RECONSTRUCTION ──────────────────────────────────── - -class LLMReconstructor: - """ - Uses a DSPy-compatible LLM to reconstruct a narrative from selected parts of a graph. - - Usage: - reconstructor = LLMReconstructor( - model_name="ollama_chat/llama3.2", - api_base="http://localhost:11434", - api_key="" - ) - narrative = reconstructor.reconstruct( - graph, - include_nodes=True, - include_edges=False, - node_ids=["n1", "n2"], - node_attrs=["content"], - ) - """ - def __init__( - self, - model_name: str, - api_base: str, - api_key: str, - prompt_tpl: str = ( - "Reconstruct the clinical case report from this data:\n\n{payload}\n\n" - "Write a coherent narrative including patient demographics, timeline of diagnoses, treatments, and outcomes." - ), - max_retries: int = 3 - ): - try: - self.lm = dspy.LM( - model_name, - api_base=api_base, - api_key=api_key - ) - self.prompt_tpl = prompt_tpl - self.max_retries = max_retries - except Exception as e: - logger.error(f"Error initializing LLM: {str(e)}") - raise - - def _build_payload( - self, - graph: Graph, - include_nodes: bool, - include_edges: bool, - node_ids: Optional[List[str]], - node_attrs: Optional[List[str]], - edge_attrs: Optional[List[str]] - ) -> Dict[str, Any]: - """Build a structured payload from the graph.""" - payload: Dict[str, Any] = {} - - if include_nodes: - payload["nodes"] = [] - for nid, attrs in graph.nodes(data=True): - if node_ids and nid not in node_ids: - continue - entry = {"id": nid} - for k in (node_attrs or list(attrs.keys())): - if k in attrs: # Only include existing attributes - entry[k] = attrs[k] - payload["nodes"].append(entry) - - if include_edges: - payload["edges"] = [] - for src, tgt, attrs in graph.edges(data=True): - # Skip edges if we're filtering nodes and either endpoint is filtered out - if node_ids and (src not in node_ids or tgt not in node_ids): - continue - entry = {"source": src, "target": tgt} - for k in (edge_attrs or list(attrs.keys())): - if k in attrs: # Only include existing attributes - entry[k] = attrs[k] - payload["edges"].append(entry) - - return payload - - def reconstruct( - self, - graph: Graph, - *, - include_nodes: bool = True, - include_edges: bool = True, - node_ids: Optional[List[str]] = None, - node_attrs: Optional[List[str]] = None, - edge_attrs: Optional[List[str]] = None - ) -> str: - """ - Build a custom payload from the graph and call the LLM. - - Args: - graph: networkx.DiGraph with node/edge attributes. - include_nodes: include a list of nodes in the payload. - include_edges: include a list of edges in the payload. - node_ids: list of node IDs to include (default: all). - node_attrs: list of node attribute names to include (default: all). - edge_attrs: list of edge attribute names to include (default: all). - - Returns: - A string containing the reconstructed clinical narrative. - """ - if not graph: - logger.warning("Empty graph provided") - return "No data available to reconstruct narrative." - - # Verify graph is a DiGraph - if not isinstance(graph, nx.DiGraph): - logger.warning(f"Expected DiGraph, got {type(graph)}") - if isinstance(graph, nx.Graph): - logger.info("Converting undirected graph to directed") - graph = nx.DiGraph(graph) - else: - raise TypeError("Input must be a networkx Graph or DiGraph") - - payload = self._build_payload( - graph, include_nodes, include_edges, node_ids, node_attrs, edge_attrs - ) - - if not payload.get("nodes") and not payload.get("edges"): - logger.warning("No nodes or edges in payload") - return "Insufficient data to reconstruct narrative." - - payload_json = json.dumps(payload, indent=2) - prompt = self.prompt_tpl.format(payload=payload_json) - - # Retry mechanism - for attempt in range(self.max_retries): - try: - resp_list = self.lm(messages=[{"role": "user", "content": prompt}]) - # dspy returns a list type of responses; by default that list contains exactly one completion, - # so resp_list[0] is the single response you want - return resp_list[0].strip() - except Exception as e: - logger.warning(f"LLM call failed (attempt {attempt+1}/{self.max_retries}): {str(e)}") - if attempt == self.max_retries - 1: - logger.error("All LLM call attempts failed") - raise - - # This should never be reached due to the exception above, but added for completeness - return "Failed to reconstruct narrative due to LLM service errors." - - -# ─── 2. BERTScore-BASED FIDELITY EVALUATION ─────────────────────────────────── - -class BERTScoreEvaluator: - """ - Computes BERTScore (precision, recall, F1) between original and reconstructed texts. - - Usage: - evaluator = BERTScoreEvaluator(model_type="BERTSCORE_MODEL") - results = evaluator.evaluate( - refs=["ground truth text"], - cands=["model generated text"] - ) - # results -> {"precision": [...], "recall": [...], "f1": [...]} - """ - def __init__(self, model_type: str, device: str = None): - self.model_type = model_type - self.device = device # 'cuda', 'cpu', or None for auto-detection - - # ── Ensure the checkpoint is available locally ── - # This will pull the tokenizer & model into ~/.cache/huggingface if missing. - AutoTokenizer.from_pretrained(self.model_type) - AutoModel.from_pretrained(self.model_type) - - def evaluate(self, refs: List[str], cands: List[str]) -> Dict[str, List[float]]: - """ - Args: - refs: list of reference texts. - cands: list of candidate texts. - - Returns: - Dict with keys "precision", "recall", "f1" mapping to lists of scores. - """ - if not refs or not cands: - logger.warning("Empty references or candidates list") - return {"precision": [], "recall": [], "f1": []} - - if len(refs) != len(cands): - logger.warning(f"Mismatched list lengths: refs={len(refs)}, cands={len(cands)}") - - try: - P, R, F1 = score( - cands, - refs, - model_type=self.model_type, - device=self.device, - verbose=False - ) - - return { - "precision": P.tolist(), - "recall": R.tolist(), - "f1": F1.tolist(), - } - except Exception as e: - logger.error(f"BERTScore evaluation failed: {str(e)}") - raise - - -# ─── 3. GRAPH TOPOLOGY VALIDATION ───────────────────────────────────────────── - -class TopologyValidator: - """ - Validates DAG properties: acyclicity, timestamp order, connectivity stats. - - Usage: - validator = TopologyValidator(graph) - stats = validator.run() - # stats -> {"is_acyclic": bool, "timestamps_in_order": bool, ...} - """ - def __init__(self, graph: Graph): - self.G = graph - - def run(self) -> Dict[str, Any]: - """ - Returns: - A dict with structural validation results. - """ - if not self.G or self.G.number_of_nodes() == 0: - logger.warning("Empty graph in topology validator") - return { - "is_acyclic": True, # Empty graphs are technically acyclic - "timestamps_in_order": True, - "weakly_connected_components": 0, - "avg_in_degree": 0.0, - "node_count": 0, - "edge_count": 0, - "density": 0.0, - } - - is_acyclic = nx.is_directed_acyclic_graph(self.G) - - # Check if timestamps exist in all nodes - timestamp_attr = "timestamp" - all_have_timestamps = all(timestamp_attr in data for _, data in self.G.nodes(data=True)) - - timestamps_ok = False - if all_have_timestamps: - try: - topo_nodes = list(nx.topological_sort(self.G)) - timestamps = [self.G.nodes[n][timestamp_attr] for n in topo_nodes] - timestamps_ok = timestamps == sorted(timestamps) - except nx.NetworkXUnfeasible: - # Graph has cycles, can't do topological sort - logger.warning("Cannot check timestamp order: graph has cycles") - timestamps_ok = False - else: - logger.warning("Not all nodes have timestamp attributes") - - components = nx.number_weakly_connected_components(self.G) - node_count = self.G.number_of_nodes() - edge_count = self.G.number_of_edges() - - avg_in_deg = sum(dict(self.G.in_degree()).values()) / max(1, node_count) - density = nx.density(self.G) - - return { - "is_acyclic": is_acyclic, - "timestamps_in_order": timestamps_ok, - "all_nodes_have_timestamps": all_have_timestamps, - "weakly_connected_components": components, - "node_count": node_count, - "edge_count": edge_count, - "avg_in_degree": avg_in_deg, - "density": density, - } - - -# ─── 4. REGEX-BASED SANITY CHECK (OPTIONAL) ─────────────────────────────────── - -class RegexValidator: - """ - Lightweight regex tests on the raw JSON string to catch formatting issues. - - Usage: - json_str = json.dumps(json_graph.node_link_data(graph)) - validator = RegexValidator(json_str) - results = validator.run() - # results -> {"nodes_array": bool, ...} - """ - PATTERNS = { - "nodes_array": r'"nodes"\s*:\s*\[', - "edges_array": r'"edges"\s*:\s*\[', - "no_trailing_commas": r',\s*\]', - "node_entry": r'\{\s*"id".+?\}', - "edge_entry": r'\{\s*"source".+?"label".+?\}', - } - - def __init__(self, json_str: str): - self.s = json_str - - def run(self) -> Dict[str, bool]: - """ - Returns: - A dict mapping each regex check name to True/False. - """ - if not self.s or not isinstance(self.s, str): - logger.warning(f"Invalid input to RegexValidator: {type(self.s)}") - return {name: False for name in self.PATTERNS} - - results: Dict[str, bool] = {} - for name, pat in self.PATTERNS.items(): - try: - found = bool(re.search(pat, self.s)) - results[name] = not found if name == "no_trailing_commas" else found - except Exception as e: - logger.error(f"Regex check '{name}' failed: {str(e)}") - results[name] = False - return results - - -# ─── 5. ORCHESTRATOR ────────────────────────────────────────────────────────── - -def run_pipeline( - graph: Graph, - original_text: str, - config: Dict[str, Any] -) -> Dict[str, Any]: - """ - Executes modular evaluations in order: - 1. LLM reconstruction + BERTScore - 2. Topology checks - 3. Optional regex checks - - Args: - graph: your clinical-case DAG (networkx.DiGraph) - original_text: ground truth case-report text - config: - - "reconstruct_params": dict of args for reconstruct() - - "bertscore": bool - - "topology": bool - - "regex": bool - - Returns: - A dict with results from each enabled module. - - Usage: - cfg = { - "reconstruct_params": {"include_nodes": True, "include_edges": True}, - "bertscore": True, - "topology": True, - "regex": False - } - report = run_pipeline(G, original_text, cfg) - """ - print("\n=============Starting Evaluation=============\n") - results: Dict[str, Any] = { - "status": "success", - "errors": [] - } - - # Validate inputs - if not isinstance(graph, (nx.Graph, nx.DiGraph)): - error = f"Invalid graph type: {type(graph)}" - logger.error(error) - results["status"] = "error" - results["errors"].append(error) - return results - - if not isinstance(original_text, str): - error = f"Invalid original_text type: {type(original_text)}" - logger.error(error) - results["status"] = "error" - results["errors"].append(error) - return results - - # 1. Reconstruct narrative - narrative = None - if "reconstruct_params" in config: - try: - logger.info("Starting narrative reconstruction") - reconstructor = LLMReconstructor( - model_name=LM_MODEL, - api_base=LM_API_BASE, - api_key=LM_API_KEY - ) - narrative = reconstructor.reconstruct(graph, **config["reconstruct_params"]) - results["reconstructed_narrative"] = narrative - logger.info("Narrative reconstruction completed") - except Exception as e: - error = f"Narrative reconstruction failed: {str(e)}" - logger.error(error) - results["status"] = "partial" - results["errors"].append(error) - - # 2. BERTScore - if config.get("bertscore"): - try: - if narrative is None: - error = "`reconstruct_params` must be provided to run `bertscore`" - logger.error(error) - results["status"] = "partial" - results["errors"].append(error) - else: - logger.info("Starting BERTScore evaluation") - # pick model from per-run override or top-level constant - model_name = config.get("bertscore_model", BERTSCORE_MODEL) - evaluator = BERTScoreEvaluator(model_type=model_name) - results["bertscore"] = evaluator.evaluate( - refs=[original_text], - cands=[narrative] - ) - logger.info("BERTScore evaluation completed") - except Exception as e: - error = f"BERTScore evaluation failed: {str(e)}" - logger.error(error) - results["status"] = "partial" - results["errors"].append(error) - - # 3. Topology - if config.get("topology"): - try: - logger.info("Starting topology validation") - results["topology"] = TopologyValidator(graph).run() - logger.info("Topology validation completed") - except Exception as e: - error = f"Topology validation failed: {str(e)}" - logger.error(error) - results["status"] = "partial" - results["errors"].append(error) - - # 4. Regex (optional) - if config.get("regex"): - try: - logger.info("Starting regex validation") - from networkx.readwrite import json_graph - json_str = json.dumps(json_graph.node_link_data(graph)) - results["regex"] = RegexValidator(json_str).run() - logger.info("Regex validation completed") - except Exception as e: - error = f"Regex validation failed: {str(e)}" - logger.error(error) - results["status"] = "partial" - results["errors"].append(error) - - if results["errors"]: - if results["status"] == "success": - results["status"] = "partial" - - if not results["errors"]: - del results["errors"] - - return results - - -# ─── UTILITY FUNCTIONS ─────────────────────────────────────────────────────── - -def load_graph_from_file(filepath: str) -> Tuple[Graph, bool]: - """ - Load a graph from a JSON file. - - Args: - filepath: Path to the JSON file. - - Returns: - Tuple of (graph, success_flag) - """ - try: - with open(filepath, 'r') as f: - data = json.load(f) - - graph = json_graph.node_link_graph(data, directed=True) - return graph, True - except Exception as e: - logger.error(f"Failed to load graph from {filepath}: {str(e)}") - return nx.DiGraph(), False - - -def save_results(results: Dict[str, Any], output_path: str) -> bool: - """ - Save pipeline results to a JSON file. - - Args: - results: The pipeline results dictionary. - output_path: Where to save the results. - - Returns: - True if successful, False otherwise. - """ - try: - os.makedirs(os.path.dirname(output_path), exist_ok=True) - with open(output_path, 'w') as f: - json.dump(results, f, indent=2) - return True - except Exception as e: - logger.error(f"Failed to save results to {output_path}: {str(e)}") - return False - - -def data_display(results: Dict[str, Any]) -> None: - """ - Pretty-print the pipeline results as structured tables for easy terminal viewing. - Narrative is shown first, followed by status and individual metric tables. - - Args: - results: The dict returned by run_pipeline. - """ - # Header - print("\n========== Pipeline Results ==========\n") - - # 1) Reconstructed Narrative first - if "reconstructed_narrative" in results: - print("Reconstructed Narrative:") - print(results["reconstructed_narrative"]) - print() - - # 2) Status - status = results.get("status") - if status: - print(f"Status: {status}\n") - - # 3) BERTScore table - if "bertscore" in results: - bs = results["bertscore"] - print("BERTScore:") - print(f"{'Metric':<12} {'Score':>10}") - print("-" * 22) - for metric, scores in bs.items(): - val = scores[0] if scores else float("nan") - print(f"{metric:<12} {val:>10.4f}") - print() - - # 4) Topology table - if "topology" in results: - topo = results["topology"] - print("Topology Validation:") - print("-" * 22) - key_width = max(len(k) for k in topo) - for key, val in topo.items(): - print(f"{key:<{key_width}} : {val}") - print() - - # 5) Regex checks table - if "regex" in results: - rgx = results["regex"] - print("Regex Checks:") - print("-" * 22) - key_width = max(len(k) for k in rgx) - for key, val in rgx.items(): - print(f"{key:<{key_width}} : {val}") - print() - - # 6) Any other top-level keys - other_keys = { - k: v for k, v in results.items() - if k not in {"status", "bertscore", "topology", "regex", "reconstructed_narrative"} - } - if other_keys: - print("Additional Data:") - for key, val in other_keys.items(): - print(f"{key}: {val}") - print() - - -# ─── USAGE EXAMPLE ─────────────────────────────────────────────────────────── - -if __name__ == "__main__": - - # 1. Call the nodes and edges for the graph object - G = nx.DiGraph() - - # graph.get_nodes() - # graph.get_edges() - - ######################## - - # Hard-coded example - # Build a 5-node example graph - example_nodes = [ - ("n1", {"timestamp": "2025-04-29T08:00:00Z", "content": "Patient presents with chest pain"}), - ("n2", {"timestamp": "2025-04-29T08:10:00Z", "content": "ECG performed"}), - ("n3", {"timestamp": "2025-04-29T08:15:00Z", "content": "ST elevation noted"}), - ("n4", {"timestamp": "2025-04-29T08:20:00Z", "content": "Aspirin administered"}), - ("n5", {"timestamp": "2025-04-29T08:45:00Z", "content": "Transported to cath lab"}), - ] - for nid, attrs in example_nodes: - G.add_node(nid, **attrs) - # Add 4 edges with labels - example_edges = [ - ("n1", "n2", {"label": "led_to"}), - ("n2", "n3", {"label": "revealed"}), - ("n3", "n4", {"label": "treated_with"}), - ("n4", "n5", {"label": "followed_by"}), - ] - for src, tgt, attrs in example_edges: - G.add_edge(src, tgt, **attrs) - - - ######################## - - # 2. Original case report - original = ( - "A patient presents with chest pain. An ECG is performed, which reveals ST elevation. " - "The patient receives aspirin and is then transported to the cath lab." - ) - - # 3. Configure your pipeline to include the required evaluations - cfg = { - "reconstruct_params": {"include_nodes": True, "include_edges": True}, - "bertscore": True, - "topology": True, - "regex": True, - } - - - # 4. Run and print the report - try: - report = run_pipeline(G, original, cfg) - #print(json.dumps(report, indent=2)) - data_display(report) - - # Optionally save the results - save_results(report, "output/pipeline_results.json") - except Exception as e: - logger.critical(f"Pipeline execution failed: {str(e)}") - - - - diff --git a/src/benchmark/modules/compare_graph_vs_text_clusters.py b/src/benchmark/modules/compare_graph_vs_text_clusters.py new file mode 100644 index 0000000..6c23218 --- /dev/null +++ b/src/benchmark/modules/compare_graph_vs_text_clusters.py @@ -0,0 +1,282 @@ +# This source file is part of the Daneshjou Lab projects +# +# SPDX-FileCopyrightText: 2025 Stanford University and the project authors (see AUTHORS.md) +# +# SPDX-License-Identifier: MIT +# +# Standard library imports +import json +import numpy as np +import pandas as pd +import sys +from pathlib import Path + +# Add src/ to sys.path +sys.path.append(str(Path(__file__).resolve().parents[1])) + +# Third-party library imports +from sklearn.cluster import KMeans +from sklearn.decomposition import PCA +from sklearn.metrics import silhouette_score, calinski_harabasz_score, davies_bouldin_score +from sklearn.metrics import adjusted_rand_score +from sklearn.manifold import TSNE +import matplotlib.pyplot as plt +import seaborn as sns +import umap +from sklearn.metrics import adjusted_rand_score +from sklearn.metrics import adjusted_rand_score +from collections import Counter + +# Local application imports +from modules.embedding import TrajectoryEmbedder + +RESULTS_DIR = Path("output/results") +METADATA_CSV = RESULTS_DIR / "graph_html_metadata.csv" +PLOTS_DIR = Path("output/plots") +PLOTS_DIR.mkdir(parents=True, exist_ok=True) + + +def load_graph_embeddings(): + graph_embeddings = {} + for file in RESULTS_DIR.glob("results_graph_*.json"): + graph_id = file.stem.replace("results_graph_", "") + with open(file) as f: + data = json.load(f) + if "trajectory_embedding" in data: + graph_embeddings[graph_id] = data["trajectory_embedding"] + return graph_embeddings + + +def load_text_embeddings(embedder): + df = pd.read_csv(METADATA_CSV) + text_embeddings = {} + for _, row in df.iterrows(): + graph_id_full = row["graph_id"] # e.g., graph_001 + graph_id = graph_id_full.replace("graph_", "") + text = row["timeline_1"] + if pd.isna(text) or not text.strip(): + continue + try: + emb = embedder.embed_text(text).cpu().numpy() + text_embeddings[graph_id] = emb + except Exception as e: + print(f"Failed to embed text for graph {graph_id}: {e}") + return text_embeddings + + +def load_metadata_features(shared_ids): + df = pd.read_csv(METADATA_CSV) + df = df[df["graph_id"].str.startswith("graph_")] + df["graph_id"] = df["graph_id"].str.replace("graph_", "") + df = df[df["graph_id"].isin(shared_ids)].set_index("graph_id") + + # Flatten list-like strings to strings for encoding + def flatten_list_column(col): + return col.apply(lambda x: "|".join(eval(x)) if pd.notna(x) and x.startswith("[") else "unknown") + + df["cancers"] = flatten_list_column(df["cancers"]) + df["specific_cancers"] = flatten_list_column(df["specific_cancers"]) + df["has_metastasis"] = df["has_metastasis"].fillna("unknown").astype(str) + + from sklearn.preprocessing import OneHotEncoder + encoder = OneHotEncoder(sparse_output=False, handle_unknown="ignore") + encoded = encoder.fit_transform(df[["cancers", "specific_cancers", "has_metastasis"]]) + return encoded + + + +def reduce_dimensions(data, method="pca", n_components=10): + if method == "pca": + reducer = PCA(n_components=n_components) + elif method == "umap": + reducer = umap.UMAP(n_components=n_components, random_state=42) + else: + raise ValueError("Unsupported reduction method: choose 'pca' or 'umap'") + return reducer.fit_transform(data) + + +def cluster_and_evaluate(embedding_matrix, method_label): + best_k = None + best_score = -1 + best_labels = None + best_scores = {} + n_samples = embedding_matrix.shape[0] + for k in range(2, min(11, n_samples)): + kmeans = KMeans(n_clusters=k, random_state=4) + labels = kmeans.fit_predict(embedding_matrix) + sil = silhouette_score(embedding_matrix, labels) + ch = calinski_harabasz_score(embedding_matrix, labels) + db = davies_bouldin_score(embedding_matrix, labels) + best_scores[k] = (sil, ch, db) + if sil > best_score: + best_score = sil + best_k = k + best_labels = labels + print(f"[{method_label}] Best k={best_k}, Silhouette={best_score:.4f}") + return best_k, best_labels, best_scores + + +def plot_tsne(embeddings, labels, method_label): + n_samples = embeddings.shape[0] + perplexity = min(5, n_samples - 1) + tsne = TSNE(n_components=2, perplexity=perplexity, random_state=42) + reduced = tsne.fit_transform(embeddings) + plt.figure(figsize=(8, 6)) + sns.scatterplot(x=reduced[:, 0], y=reduced[:, 1], hue=labels, palette="tab10") + plt.title(f"t-SNE of {method_label} Embeddings") + plt.tight_layout() + plt.savefig(PLOTS_DIR / f"tsne_{method_label.lower()}.png") + plt.close() + + +def summarize_cluster_metadata(shared_ids, glabels, label_type="graph"): + meta_df = pd.read_csv(METADATA_CSV) + meta_df["graph_id"] = meta_df["graph_id"].str.replace("graph_", "") + meta_df = meta_df[meta_df["graph_id"].isin(shared_ids)] + cluster_df = pd.DataFrame({ + "graph_id": shared_ids, + "graph_cluster": glabels, + }) + joined = cluster_df.merge(meta_df, on="graph_id") + + summary_rows = [] + for cluster_id, group in joined.groupby("graph_cluster"): + print(f"Cluster {cluster_id} Summary:") + metastasis_dist = group["has_metastasis"].value_counts(normalize=True).to_dict() + cancers = Counter(" | ".join(group["cancers"].dropna().astype(str)).split(" | ")) + specific = Counter(" | ".join(group["specific_cancers"].dropna().astype(str)).split(" | ")) + top_cancers = ", ".join([f"{k} ({v})" for k, v in cancers.most_common(3)]) + top_specific = ", ".join([f"{k} ({v})" for k, v in specific.most_common(3)]) + + print(" has_metastasis:", metastasis_dist) + print(" Top cancers:", top_cancers) + print(" Top specific cancers:", top_specific) + + summary_rows.append({ + "cluster": cluster_id, + "has_metastasis": json.dumps(metastasis_dist), + "top_cancers": top_cancers, + "top_specific_cancers": top_specific, + }) + + summary_df = pd.DataFrame(summary_rows) + summary_path = RESULTS_DIR / "cluster_metadata_summary.csv" + summary_df.to_csv(summary_path, index=False) + print(f"✅ Cluster metadata summary saved to {summary_path}") + + # Optional: Barplot of has_metastasis composition + expanded = [] + for _, row in summary_df.iterrows(): + for status, pct in json.loads(row["has_metastasis"]).items(): + expanded.append({ + "Cluster": f"{label_type}-{row['cluster']}", + "Metastasis": status, + "Proportion": pct + }) + bar_df = pd.DataFrame(expanded) + plt.figure(figsize=(6, 4)) + sns.barplot(data=bar_df, x="Cluster", y="Proportion", hue="Metastasis") + plt.title(f"{label_type.capitalize()} Clusters by Metastasis Status") + plt.tight_layout() + plt.savefig(PLOTS_DIR / f"{label_type}_cluster_metastasis_barplot.png") + plt.close() + print(f"✅ Bar plot saved to {PLOTS_DIR / f'{label_type}_cluster_metastasis_barplot.png'}") + + # Optional: Heatmap of top cancer types + cancer_counts = {} + for cluster_id, group in joined.groupby("graph_cluster"): + cancer_list = [c for c in "|".join(group["cancers"].dropna().astype(str)).split("|") if c.strip()] + counts = Counter(cancer_list) + cancer_counts[cluster_id] = counts + + all_cancers = sorted({cancer for counts in cancer_counts.values() for cancer in counts}) + heatmap_data = pd.DataFrame(index=sorted(cancer_counts.keys()), columns=all_cancers).fillna(0.0) + for cluster_id, counts in cancer_counts.items(): + for cancer, count in counts.items(): + heatmap_data.at[cluster_id, cancer] = count / sum(counts.values()) # normalize to proportion + + plt.figure(figsize=(12, 6)) + sns.heatmap(heatmap_data, annot=True, fmt=".2f", cmap="YlGnBu") + plt.title(f"Top Cancer Types per Cluster ({label_type})") + plt.ylabel("Cluster") + plt.xlabel("Cancer Type") + plt.tight_layout() + plt.savefig(PLOTS_DIR / f"{label_type}_cancer_type_heatmap.png") + plt.close() + print(f"✅ Cancer type heatmap saved to {PLOTS_DIR / f'{label_type}_cancer_type_heatmap.png'}") + + +def plot_score_comparison(score_dicts, shared_ids, glabels, tlabels): + + summarize_cluster_metadata(shared_ids, glabels, label_type="graph") + summarize_cluster_metadata(shared_ids, tlabels, label_type="text") + + # Cluster agreement + ari_pca = adjusted_rand_score(glabels, tlabels) + print(f"✅ Adjusted Rand Index (PCA-reduced Graph vs Text): {ari_pca:.4f}") + + # Cluster label CSV + meta_df = pd.read_csv(METADATA_CSV) + meta_df["graph_id"] = meta_df["graph_id"].str.replace("graph_", "") + meta_df = meta_df[meta_df["graph_id"].isin(shared_ids)] + cluster_df = pd.DataFrame({ + "graph_id": shared_ids, + "graph_cluster": glabels, + "text_cluster": tlabels, + }) + output_df = cluster_df.merge(meta_df, on="graph_id") + output_path = RESULTS_DIR / "cluster_labels_with_metadata.csv" + output_df.to_csv(output_path, index=False) + print(f"✅ Cluster labels with metadata saved to {output_path}") + metrics = ["Silhouette", "Calinski-Harabasz", "Davies-Bouldin"] + data = [] + for label, scores in score_dicts.items(): + for metric, value in zip(metrics, scores): + data.append({"Metric": metric, "Type": label, "Score": value}) + df = pd.DataFrame(data) + plt.figure(figsize=(8, 5)) + sns.barplot(x="Metric", y="Score", hue="Type", data=df) + plt.title("Clustering Score Comparison") + plt.tight_layout() + plt.savefig(PLOTS_DIR / "clustering_score_comparison.png") + plt.close() + + +from sklearn.metrics import adjusted_rand_score + +def main(): + print("Loading graph embeddings...") + graph_embs = load_graph_embeddings() + + print("Loading text embeddings...") + embedder = TrajectoryEmbedder() + text_embs = load_text_embeddings(embedder) + + shared_ids = list(set(graph_embs) & set(text_embs)) + print(f"Found {len(shared_ids)} shared graph/text pairs") + + graph_matrix = np.array([graph_embs[i] for i in shared_ids]) + metadata_features = load_metadata_features(shared_ids) + graph_matrix = np.concatenate([graph_matrix, metadata_features], axis=1) + text_matrix = np.array([text_embs[i] for i in shared_ids]) + + score_dicts = {} + + for method in ["pca", "umap"]: + reduced_graph = reduce_dimensions(graph_matrix, method=method) + reduced_text = reduce_dimensions(text_matrix, method=method) + + gk, glabels, g_scores = cluster_and_evaluate(reduced_graph, f"Graph-{method.upper()}") + tk, tlabels, t_scores = cluster_and_evaluate(reduced_text, f"Text-{method.upper()}") + + plot_tsne(reduced_graph, glabels, f"Graph-{method.upper()}") + plot_tsne(reduced_text, tlabels, f"Text-{method.upper()}") + + score_dicts[f"Graph-{method.upper()}"] = g_scores[gk] + score_dicts[f"Text-{method.upper()}"] = t_scores[tk] + + plot_score_comparison(score_dicts, shared_ids, glabels, tlabels) + + +if __name__ == "__main__": + main() diff --git a/src/benchmark/output/plots/cluster_assignments.csv b/src/benchmark/output/plots/cluster_assignments.csv new file mode 100644 index 0000000..902c36c --- /dev/null +++ b/src/benchmark/output/plots/cluster_assignments.csv @@ -0,0 +1,77 @@ +Graph ID,KMeans Label +results_graph_076,1 +results_graph_037,1 +results_graph_040,0 +results_graph_056,0 +results_graph_001,0 +results_graph_083,1 +results_graph_082,0 +results_graph_057,1 +results_graph_041,0 +results_graph_016,1 +results_graph_061,0 +results_graph_020,0 +results_graph_077,1 +results_graph_011,0 +results_graph_046,1 +results_graph_050,1 +results_graph_007,1 +results_graph_070,1 +results_graph_027,0 +results_graph_031,0 +results_graph_066,1 +results_graph_088,1 +results_graph_067,0 +results_graph_026,1 +results_graph_084,0 +results_graph_006,1 +results_graph_051,0 +results_graph_047,0 +results_graph_010,0 +results_graph_068,1 +results_graph_087,1 +results_graph_029,1 +results_graph_005,0 +results_graph_052,1 +results_graph_044,0 +results_graph_013,0 +results_graph_064,1 +results_graph_033,0 +results_graph_025,0 +results_graph_072,0 +results_graph_009,0 +results_graph_048,0 +results_graph_049,1 +results_graph_008,1 +results_graph_073,0 +results_graph_032,0 +results_graph_065,0 +results_graph_012,0 +results_graph_045,0 +results_graph_053,0 +results_graph_004,0 +results_graph_028,1 +results_graph_069,0 +results_graph_086,1 +results_graph_062,0 +results_graph_035,0 +results_graph_023,0 +results_graph_074,0 +results_graph_058,0 +results_graph_019,0 +results_graph_081,1 +results_graph_039,0 +results_graph_003,0 +results_graph_054,1 +results_graph_042,1 +results_graph_015,0 +results_graph_014,0 +results_graph_043,1 +results_graph_079,1 +results_graph_038,0 +results_graph_080,1 +results_graph_018,0 +results_graph_059,1 +results_graph_075,0 +results_graph_022,1 +results_graph_034,1 diff --git a/src/benchmark/output/plots/clustering_metrics_best_umap.png b/src/benchmark/output/plots/clustering_metrics_best_umap.png new file mode 100644 index 0000000000000000000000000000000000000000..2965b760929f81002eeb966513f8fa751860512c GIT binary patch literal 15856 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 JmVV;<-vH;&W{Lm+ literal 0 HcmV?d00001 diff --git a/src/benchmark/output/plots/clustering_score_comparison.png b/src/benchmark/output/plots/clustering_score_comparison.png new file mode 100644 index 0000000000000000000000000000000000000000..3302dfbeb1412b901e5b1520cdd7f3ed5f463ab9 GIT binary patch literal 20454 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ΝXz=MAL;%t+TM`p%1XA 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 literal 0 HcmV?d00001 diff --git a/src/benchmark/output/plots/graph_cancer_type_heatmap.png b/src/benchmark/output/plots/graph_cancer_type_heatmap.png new file mode 100644 index 0000000000000000000000000000000000000000..b86333a5a7dbaf2ca95fd4f6b53e22b24f7993a8 GIT binary patch literal 58169 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 DQy#n6?LUb=@61%LedGlzlIxvaJ71| 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 z≥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 literal 0 HcmV?d00001 diff --git a/src/benchmark/output/plots/graph_cluster_metastasis_barplot.png b/src/benchmark/output/plots/graph_cluster_metastasis_barplot.png new file mode 100644 index 0000000000000000000000000000000000000000..53ba6f60261147cea60c9ccb9d4079502292a2ea GIT binary patch literal 16692 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%0D9q^gz=$4KxJUfz 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 C-o6X~ literal 0 HcmV?d00001 diff --git a/src/benchmark/output/plots/plots_testset/tsne_graph.png b/src/benchmark/output/plots/plots_testset/tsne_graph.png new file mode 100644 index 0000000000000000000000000000000000000000..4975aef27846d9fe8568337bf1a30bad519ba3dd GIT binary patch literal 16323 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 G{Qm+;Oi+^m literal 0 HcmV?d00001 diff --git a/src/benchmark/output/plots/plots_testset/tsne_text.png b/src/benchmark/output/plots/plots_testset/tsne_text.png new file mode 100644 index 0000000000000000000000000000000000000000..ef4f00d06942e81538152ab3289b09cca6d5c3dd GIT binary patch literal 17169 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 j&e;C{?abhdJy5cGXBl{YjeI0`HDJM~JY_ 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 vzx8gUc}K6C8Yv2%|fsXjk;j1CKY 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≫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 Z7ZEk&Dsb(jDfq`imirEx<`|#3@;^_^bGZNj literal 0 HcmV?d00001 diff --git a/src/benchmark/output/plots/text_cancer_type_heatmap.png b/src/benchmark/output/plots/text_cancer_type_heatmap.png new file mode 100644 index 0000000000000000000000000000000000000000..ebc61fd08b742458501f8dd4e49212c2b827ac11 GIT binary patch literal 52684 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

{K_28vd${z| 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 literal 0 HcmV?d00001 diff --git a/src/benchmark/output/plots/tsne_graph-umap.png b/src/benchmark/output/plots/tsne_graph-umap.png new file mode 100644 index 0000000000000000000000000000000000000000..870bb130a8e7aab01e2c5272e98490ced1656c04 GIT binary patch literal 19375 zcmeIa1yog0+b+5hB}76HP&!3g0qGW`Lr}VuZt2*Rh$0~!(k&n*-C-cz-5_jWv!%Q5 zT=?DZ{OA7nALl>+ckVdjj&T^s7S>vGtvT16@B2Q_`@AzqRapl2CfQ9G42CNwE2Rd5 zq0_)%*R-%Oz+Vzw{a=F*L1$?#XLWlsXSbJ*rZA$qg+S$WUC zX%Q?MYqC8^zZUE)h21D?KXp2LiE{HYOHG+cU~fsDm^f}QEJ1Bd!`+s<6S~}+4`axe z`NQbJbHI!wYCe*pLI0D6K_5oAXxG7q-{b29&>u$$#GwzZC;uxBo|!EE`pETqUR+L2 zF7oTwhaM{_ZVXx}&VzD0NpolS`&+TJ59fTF1>WOP39lZG)y@0kbgM<*z#;j>g;a^Z zP5<BR7Lx9OUuihOC8aOiXr9bfPm|ADk||CGxc3*muKb^ zjc~VEqVmwtTOECUB_l!Q8=Ka(+rP*WQujo?Y6|u1HK;t6ZXX{uU$UF0dYDz7nwy&^ zdAo?=vOjwCXz;TVdF{zs0pbU~Sj>B`Yei{JtZ2r-DW*@hE&87qK|a#8%M53QTrT87{J#b*PiWk<#_BaQ~8$r zUivsi3HY2H>BJ&4LpY+uF1Ev8jG{VLf>c#iX%ynvBAYMvOO{Ql?kDluMoGNI=r~xP z>Ny=MLk8{lrU)Uj!bQ1g*AVfBaj4>YWyv56|1m>f{f)*$gYbP1509OV`pv}kkxFrP z-Ky?@eoaH~7j|{X`)Q}5NAqt7t88_d+1O%AnlC0P6m&LGqean2M@N2C3g4EFSJL8l zc6P)`(Zxk%U}&nF7MeM+teT0@zveD44ymU0u9w!-)O5~SpxVJBu<*@!mH%vQ9XTTN zbUX?aJCis=w7fxIHn+W|X=#~{P3hU{z3}~=W3Rx9yUkc!x{BEO^UluBFWyul%wwaO z@0Z4!FDlRaF3-XX4H|XoTu{pfB@0i&--d8DX*C`F#wqbV?PM*H9r~<d|+b zG4&Z^?JnM6_T*aaTJA~e>FZ?rEnni!#KfejEoM2$;B;-Xpr9uxdqGx3tCC_;exTXc zSG&$RzYRWGtS&!S-!!*&(%O8yoU|-|>U}t~vM<6)sgPNsU5kpqAi>r5%$zARRVY`| zedes+7DlObcPJWJP+a##KBYd@cpy{S@dqy7r}I4#W*z zHa&@t9WRbok~Ct$r0DX!*rhJl7i*hsgeUbWh*kHAT~4EREl8{8&Ntkaod)|9>KUva z9FjD79{jOPRY9#LS{FYmvWyiuoOW{D>0nAa-*Y-&D=2Ab+9=kqUn=Y3;6~F7uN2y- zc@i8P{N<0P$E^pBFjGP>pDjThUc9X${wfH{k2Z!PF|MYjpqkb25qt33EXWB z&Dq%u>ZG}8K6PiiX_tFCuCRT4wCjF``VOtc8?5c&Viz^{a55C4?<;v-d_*njtJqPt z<&U6};TyHf*$$HxmY+}6mG-igRF+vdXLU4L2JMVabUdXmzAVwh6hzppqoU0$3nuaxRZkENIToO=?r+*kZ$G>QyLafJ^>_cEn<4Teg867y|h z&Z>6cnw0+2M(xYNKju3{f{`_sUbUL_e(JMaHwNr^`#KsGn&Sc>4iEFR0Fw zE2Q%rQCiX`+7=%B_E}k3J?5F41yy>qS}Hp#!=>37%0D77a7C2&rS!zI_-5UIoDGkr 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 DQy#n6?LUb=@61%LedGlzlIxvaJ71| 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 z≥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 diff --git a/src/benchmark/output/plots/graph_cluster_metastasis_barplot.png b/src/benchmark/output/plots/graph_cluster_metastasis_barplot.png index 53ba6f60261147cea60c9ccb9d4079502292a2ea..ea7a3369d88758944d100e8ab9122cf4aa36943c 100644 GIT binary patch literal 17219 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 OsyhnGH?Z<1kNy|JA-c!_ literal 16692 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 literal 0 HcmV?d00001 diff --git a/src/benchmark/output/plots/plots_testset/clustering_score_comparison.png b/src/benchmark/output/plots/plots_testset/clustering_score_comparison.png deleted file mode 100644 index d1b0a0f7f837f846404dd56ff9d55aa01c81d109..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 18584 zcmeIacT`hdn>QRl5J5zxDcypF5>%SfMUW<-^cISU)PR)GtBRsXu>dLpQl$o@1ws=G zh}`rNS^!0)gsK!F0`GNr?q_D+S+nMwcg;6{eDC^P>v^~#=bYs1bM0&Y+RlTky6P-U z+)OAGibYdHRUd_-6GWkCmKhn~FQ1e({oseJx0}wIBJl?!S6!rkQ<9LV5K<-H?999<~#vSFSw5l8I7XY8ScRP3}>agzISF zq_KlH)<#3?ySG~pH&2|xrta-7PA~W^N#-UGoP8B({di)?gpmFdd|IxRodzwB)GdLS_R~i zJ(~CultM#>O6;S=OpD*0b7*t*nrtiYQC0F<8}^E&^7h~{LvFPz#v2idHWMj8#MBjqm2tp7c1t;)kBTZJQ!uo z)_nqst{1$1ls!5uLDW8e>Z(zpd2a$5Gh@!AGB;S>LK?fZJaw%lMS<#%os2iJ^7xuz zQe-9V+FxAE^t)S63A<3cmSX?qnRMvBjIYQ$cG5E|=PiAU5+6*vbl-Kh|E=xU4+d!} z^nu?WtGAiH)t#DhSJ@mlDKNDav#9VU;|yugCiqu!57Fj&g#zasI|O~LF)9`+eMQy_ zF=bq*uD-+B=9v_w1aC~g*`qlBXZ_b)+I{|#qiPRLo1X}=i9I#-V|>XIR(kC}T9Ys$ zNh8&~7d-npOe_zG_vcZPD^@zy1*+P^hTJxGwp&I}Rea++uWfO{ zeE8y>su(P4T^EG^CLO%t?OUA?%darVAGCPUg@jKg2mNYw^KX4AMc%Ie^D~O)X}VVK ze9^IvyqpT`P#=!1J6I*RBnP{?Fgj}VyG^xFKJUBF++eS)@4V}HW3(5!&CtUrLT_uW ze%q|{W~*gZvHNJ<{L-lZB%jIYD@^5Qf~j+a)ydRQ29e?i*De@V_4YpuT&N{QL@(5D zkCdmJQjJW|dv(4u-XeYgnnBgoMM_aU5q&ics?ml|*87%S5D`cDAzZ`lo^d8?GHZf6 zw#0Ag`r2?$wDa%9uMZORY_SU?wdlRav*^d*l0K>83OCzR6fpMI_Vv@*Nv<qZNb8i=|oqzWJ{j<{s!*IfuKZ@QE2>?6N%m|JgMpM@lciOTYYamvm&x543)@%4Fj(gF^g9*a^F&9L z*W}m=4IM)z_M=qDA3s7+OM=+^2F%^zm5G+blf=2ut@WnD3~VE=Rf@FBxhLnq`G94| zTLaVGZ|GQfr1u&Yn4TROmv$RIf9vP>W{HI6Kt=NkD50?uOtlYv$<0=7zduV&cUt&E zet%WIa^=cclR)TR^iZjT-fQJ>+NFvYac}LKh%3+(4?6Z0n7y{H4+)2%RJ;XaSG)rK zQI22*LpqMV)NW#2WHr}UwKfv?!7cRLgOkIa*kkj*pahNkiFbCh?)(1N3yDSOsu5xf z-EZ^+?HV72V}~k)HY_hcI`p+7cTMtiz{<=-AL-W$ue{%xt9Z*Q<$)6WJ4Fq{RbJ$P z-h2~QUZoKEO1Jy__=a6Z^NjL~=cFAw-YL{yCDx-wj0+gi)bUs)S~!Qf%!P!moc;Xx z*wU9O_~gE$zN5iwuN3t(*B`aNy3k$t3+BN+vHF!h3$oX6rH5U=SLdXV_rOajm*Jm} zkEx&7IE3mtNwlHS;J9vQN8Xk#2}qlEEDqXQpL82@^PF<5ZhYhDlLa?LY?vX=4wN?G zeAhSEM#-JyS7p0Wd$!iOlRPHkO&E$Oj1}g4da$1}+{9V9C2y%0D9q^gz=$4KxJUfz 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 C-o6X~ diff --git a/src/benchmark/output/plots/plots_testset/tsne_graph.png b/src/benchmark/output/plots/plots_testset/tsne_graph.png deleted file mode 100644 index 4975aef27846d9fe8568337bf1a30bad519ba3dd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 16323 zcmeIZ2UJsQyDl0)VJRx|OOtLz`aM|OK1uN zloklRMiZ$4Vkiln`%V9|_x|^P_c>>ed(XY&jBz$&FksBgd~<$te&72(&+|U-t9$xd zr%!U9gu!5^weQ?AguxgDVK930-x$G>RNv=Mz#m0~ra8jM(-GnK@Tmh#?;+xenlqTBPn{$kuhc|=QBFL$W8n>hu{?x+ z={~9zIKyCSlG?X!8vCcO&M+mzO`7Gt9o@~(>(3KX|J!exQJdjs)sKC>BFJ&9;u+`J zo2+jLCf|#`jYLaho+H>dbLr8p)k0W>mPe57s20GFnSp5(WP+k@5FC{Fqpb5{ckYX zo0$J+hY{B$n|}VW(t31w-_}-uot>RBg+G*4EY_2qxIBAwNYm1y#drqi`lAXAvRe9W zU9&={!igh0J+_C2?}bC$pAO&GVkZl$Yh4Y8WsHWEu1j5 zQyx6cfm=~@42&JIN^4v~S;0^5rb;^_&-Gu>c-is%IP>UYhr%j;biDx^A~D(XR*V0< zf$Gkq^bqO+Pna( z&MNW^mIz;=`w@1y5EfP360%2yuO8|qioI&4%_?OEtu+uXALhmDi_m`^GEn0ivk7t! z-fkC&JuNp~j=|o|P?V8q-o$MaI9uy)JM6|CZO3h6kM^+%qpd_fawN6<$@excIS=dL ztzz4la|X&@HG8ewglH+>m2v;A5wmEbt^;YN(eG}$ywu^(2sO3~%L{5p0l~{gSyBBi z@YaQluL)*0=VM}G<|G(DiJTDp6nM$UBygpoi;(JC_R1i1Jzl(4+_L%_honst4x2an zmRX`+Q1xgBs};wuV!Fq@lt+ua6dUQ|Fj?)48Iw6-t(znv{zun)VIu;V+bb2?bQOj= z{I|^lwFBWqajV+yg%q{0&_T=L`=umW(~ZKiG6_Fcn5izOShkT4Jg;RFDanqH<5j3^ znCcTnHR0y5O`AAf%ow{tNBr7MqZS-KqeH?fZ}bw5sn$F%aTVs}^Z)itQ^8Oa6S}v` zNyCSQMceDc3*I4Cmi)~|@JF3Ip05is14UX6w@`I~z1rNm?`*2Rj+oiPl|4_22_sJP zE6cw;&134OTYAlTCeg~n;?IiVkk#_`GgeC~o`JDJ!rf zX3d)BUTaZdt9aN7W>DI)MnbjnGYJGgVLfJ)ksi2QI5;p+jtdoyrPKC_UnVHwcl0-0 zkrMumYiL*H%>j+lP{-N{$Fv-N+@8;no?MM$*^gZkN-`E@kfn+Vs+jSe!mxz?d|}#i zru?F~pn3t~%Y}%J4Xm2L7~BsYOb)_FKVx9xATgch9-hZaXEYVWPoY9qT`{jFmYeow z$g#8*TC>;T&O#TZOQ3bq^bO+r;+?6H(a<~=>G5Ex1{Z33xSkX(I+0`>8sJ5k zMm$ZARj3Khi^m!S6V6e<0I1(Y+#9w=t)fw$1wMkuV>WH_VTqRN?+|UN=w@X65}OY0 ztNTgE!q?!<-}N$VZ5q}TOOQKWKp}QK1*I+7?|=%^bGdZJbda&z)DWaKD+Fmo?`#Iolh&7dTK! zvwNEX`dI~=sd}YXot5u#bG~o8rPu-%gud+L<6I7`PZysbTUM)a{zktN%AB@Rh3&+H z*mv;_U5V+5?0EFI=gc}wtraKET`d_rWabdN=H4)uh{3uwQ96;iv5G~T@mc$M(hlA4 z6R0YrlB%eKe7!VN^g?D(6d6Rh!Hi$gaB*Etz*n(Iot{T!;O4y~YHsW>zHs;y8Myh)=RT=}POw8aW z%11Uqt0tCc#F7pfAJrMdW43a%k#!V|T;P&%F?Oa9FnuJf+R?t28M|*h5(S!A*RyP~Du)}@ae43|CN$cKPW7?QNz>l|> zAT(jY;ZryrvTio8I3T3xMfKsRm8ZK+9oRhyQ1D1q^7Gh0x9-nL_O(jt>8tMiFoXhC z7E8Dcl9{7?_D(4$i}Fu(@3GQhlWXwrGY?*zj-p#C^>Nn5C6GXVs;hTNFT0KEj!@nF zKsZT>(%s#u&6DDC7Q4M{7mpT@(Vo*W`(Z@Ola3#06+O7?Dt_4+7UVMX*wU1jC7w5E zrD70Fn1ht)d7#a(>(rZkA7QU!wkZ&@Ihc@11QT|Zx_Y5T(8R=q{RKWL3B8{;nsv4C zZXu5`TCw%&=%$JRS<{8`_?^wAgb-3`orGm_s&oi`l9ctN?Swdg0ag!(xZAqZ=NWbL zTjAEFnr>-vjfgWb;{=rPLhF;i3D%&+@H+99p}4yaJ-XNoRpvsId~FwZ z9WpspN1W$icgr<&dNWjx&pwq-qOW9BTKi`FFkHMQQcSYhsnA5MxeMkQAz`kbv;iJ& z4cEO){q!{bW!xCsW!yV7!%Vz`>#xruOInf8@TUU?i7=xb8dQki-tpo_vSC z8gu@}JYK|eIVV1US5K%zR7a?5=}%c7Cd>G>J3YEH5r%gjmj;;(v9-DTV0DNtrtjO# zmQ%e)Ow2Gmo=tBp2h!^LGF5_*2SX=l>$q3$if?VadcQ=nUNYUCKvYhT`oFE)%PcrB zUGYs?4&GVQ*CV|fwF$%6>)4Bkh>E7g3D4wSX_gdS8_N@ZgT&gnVv}km1^!5*>fQ9j zRMt@goO`0kUPfHbikS!lAulPVXIFE8NS1Zn=h1Jf*#5}Fg*38Y>xia{ZGmCq3 z|76o))Ca+47Uvm(qwOx!EI$)_-%%trIBrOAd$R$3K%I&v-qqc;&Kr%-I#_X9y=R$S zd`>-Fzqs_~5B$NJpOtm94P};JRLAVaP{N9|{cus9=^M5`aNmAX-=lev5;D%&)F_;a zE{>hbj>4f{4R^nF6xI1Ga@x(-%DM9++dOWsaUb@x*5g=;B|{>aF=4G?9c)657Yjnno`LZ z^k>2ik9H86wWVqE$eUG5^FhuH}x14PbO*! zgj7od+-*pnZPrx@qKd6Hl3S1bx?EzsZpEQW&4w`l9b_?Yw()}auRpp zF^kiNJ-3%794Fz~&0GxhFgBtOjw@ph**IEIVdT7WPCZD9@fhq{=W(Pq53czkE_+j& z!HWBGmPgLGMSdouA`>0>G(T7WoYMYwmzsn}Y|2&9JLlNa0oQWZmxlfHg$9K^vOo22 z40Y&ASGcsSEQeo=o?KYb$B)=~qKbT;!N>+6kEZptbSr|+(O+o?82{wu;4WdZJJyw5wr* z44>@~rA!ne@FmZDCd8dX6ji|^g?+gVhWq;`jz5gxQu1|!C~h}K zx(Nm=kJU@9`MqVGBt$?--u1Mpqj4}0r#0&0PVZ68olrsF|KjYd=;G%A-$qcjD|;lO zAv{bO$~u(RS3B6e#v~4ehw?MX#8~!rt*2z>A>yX3T1CI*AGnz*2*+{VaJ;*LMx4WJ z`cKz;-Iw?^L5-mWaU0=aF@ZmDRG){tn@boKm6xZ^^p)T;rrW79NW-7V$d) zo2^xdPAqx4H$CD;c6m)lmrYDPxZTmgbTPA8CdZ>al8+_sqX5TXbJ_G226KC#nPRhs zW~@tXE1ZGp4D^C9fE8Po7{o=K;p3jmIS$5ko-bxKk^|!X4Ng2>lMA4pg|#D5ytcaDS^T% z6PF$Hr0F~P;X ze*l@{72J2?3cx(&T+04WR;q{eF*E1W?k4~Kp@zbr9~A?tPawKim?*|182SG zdz~v_Fc_Z!6}G$4iBCJwiOfQe9^V7Oy%Z@<#C(N9_R3~PLRAiq{mBmnv=-Wk*ccS`rV{fh~v$a~o} zCY}fL%%i*9=T_4vJ5_C72k3nlAjGD@YKX-F0twm+EAjkt?pF8R-Q9;rMrzDqum>T2 z^YCi8jcuYI5rvvjBG zVGO^DqMsKXEIULj{k+t{PUM(CZ1Q27ngGgvV*wk-=R1BuqGg+4?&2wd?NW+WK-%j)2>1^`{&4$mz3X1W|3iFO3smf3>J9 zDZfAbgAy{NvOSu1a}f+?qiwXBKT$Ssu(yyLH@qrR6I??4ya4T(6##Jh;tZ5ls|h4X zAT_fM@p=COx`0An`QRn8o7vtTzxPV44AT&i4z zTd~WSti7AO-=t_C%6mv;B5b8Fr;Q;M(epPNF}^$_TFA5XFpH(<$6cN0_c2my$n#!p zHF2G+YN5aP9}vBz9_}`oqf08LHLb{fmgVv-o5fvLf5ttsX~)U$E=Sm{r)xTh^1w<^ z)#0BkldB$UTZiC9DKC_4AKTD+)4U02CZSGLtNS~`Q z7Y}vyZL>A3Ton)o*N3~)FFC&Fer>zbLnxM0u}J@6s0z{@n%#xkc4eZQ9=0D3qj&xO z-OQ>Low;vMSV<-xt1DR!GS$kOtmO%m;~x-p4S>M_Yi(ns6~+uv!?cR0RO{PcN|pQR zQLoc|+U@5$YtG#0HjV0YS2}}=+vOjz=+V#}nGqp=JP+EEgSI^yq>t&a^{@f^U-Mj@3;Y@&)@B#Ms64 zG2L!|=b(8_Tl|vAj5LfvUEw#ua*kaDDmIroe%Tj~P`3`n>Pq=|XiyGV8$Eg3_fp`6 zxgS4%jQrp;(*r*RQ-?jPNkUWd1}YA2Zw;1LO9lFoIYwrtBhSLJWuO)oQcfFt#hoUoaEYCB&I2yM)guOX>g%4PUt{c=$;0SH&o zd*s$ukl=q^OB-Ht2GCasBSvqD{=?dPH4Z{Eq7r4?vDKR~G{i|1> z%-Aj3+RW5y09Iik{UZwHY4egrVAcZ*FgOASdxtjH19;eXHelgnQISZZ^uT_E+WtdI zh|7|BlfPGQs!TBki?k?zd4_LtegmS(nC-XuSB`@)_CSUFyape-hlw{(ov@o3)DnQd z-q`LoYcZ_0Ha0Ws0?E?iZfn|W0X0>SeQLN=0ugCgEAS%*Zm}y-CVX>gNT?RjIu26c z*0Ra;My~ULR2T2Lf(&2FO)_2$FdG6?r)uk3Yb0k@eFWb!put_h21nmSb(&c1xLK2WR#lnj$@O&kIhQOL^xM7_#H(#HAFMQNGc#K8*)g( zIfyoytXVq~?G@D(#wCqQ6>>RYsMPH_CqEE7X~KT2bPt;InK=Np&6qly)jB^o|8ww1 z=?*9(wg%>GpM<@SgV7^|QN8A8nK>j~eWvVDeNidQ0JC2cg03(xCkCIRB73;25{|>n zQ=oILPOZ(%*WL_q$t~0J8C{3L#7_vSCtWZ1bLXwt>n!!y>tvceud$23+FXTwv+aF; z93foz7xBH6RR_q9U2$un7iQCIuGLPIOZ3Y>DIWLD-Thcna_!fRUJZxAE7^b8H=c|1rdvnx`|0Q$J-8+_hM8-c00a(enI^9f+ZG|((1;Y26HsM+D-^{gwrwP_>pJ5KmhIpNImBg zX{_q1Dw_0DwoagBDsmC-`UM0mQXQykgFr0Yh5>~c0l#T4Ef6&?Q}JO($!bTo_Coq9 zTf_AL_!9x=5~F5GI~(#o{c>UOt%j3B2`s*6qQm(i;pMAXOLzW!fe+8{AWj%nLgT zt39g>v_s9}FUeB&sk8}~;!?YgNLE)~^={`EEh>a_jWLl7bv%~UQNy&45`J%iFw}m{ z73S>b_S#5a;RqU}dZEX1h>RS%Hvr3%E?H=@d{^?Ev9of`|-0bkWWtBy;iv8j5Xm-6dL zWsP<~z!R^HI7()6qn-;6q5amx(8Q9`kwe~ z^vQA3=$*O8-lFxl76)^;1AC>qI-CnKOi$f4c=-4DucajregH%rOD4y2pLTPqL+RyaY^F>GP1=SNB(}u|j=iptH$o2{r5{8%*)LDOG#@pOVzNy+ zA7Q;t^IzYZ7)&_<-OT4Eg`oS>JJZ7nqjHHCTS7OCq(W>o5T+1aK>W^f*T1;W9cz%n z>CGt~)2{=`YG?Axf~M@1(I%$1OdK@-Pg>U?IUg_`VFVm4h6R{)o|ui{cdlF0BQcu#5SU;AS`2g{k|U0CasU1$Uc`Qg}NYtCSmG#Tg+0&z|?{d4yHOjD6vGN`9~bY z1qNyrn3FmP$e8+mW6U0g+P<4u>ZU%$ zd4@m8-PAe|0B_gNgmKr6XI`6`m+bwIG6%)sH^U_WEeO{a$*8wpPfD7c4jlB2z>LSGy)Kkmoz^MxSZ;{}gJ~^R ziLs`^9WTzLiO+N_%O%}l=J;8gpo2`7_kK9NKh8r*S}4GLQ>~$-_{F{MW88{uQE}~t zH*NiqiuUeeJs=##2AB={fQXhO|BP~|(Is79CL0@u&G%YTk*qVf#pf!v?6$b)82His zS%%7a-!F(x1_q^DAt5192wh%2^f5X6*j7?MgD1i|(6-m2z8bSTbZ8$f?}B}Me}P5# zla6D*EiYK-JZgtif7utKyNfaNvk(!x0mS-CjMsE`%kjwdMEbzEz@4>f0J+ zScYEQa?wZ9eevM(Syu45gHMQDk}Ue@7_9s{-7$YFT=>@vxwWZzs){U6GB{s-K@eP4 zH`QUuN?=kJZHC&%e<|?A*C(?w!yafdeqivNO4Qix5NP?iwoS1W>Ijk4i=%6HC2ohv zMrXXF$($C04Tyk&r;5-fo%t^UyHW(k^Xpk3>eY3Bre>w|mIKi}>zr3ib?x??f>FOfh& zSk;0?(MY~taKR>75jEm2cVurkC==ap@ZXL*-A|iJlu5J;ZLchudpL7e9U4#eBYAMX zcG-h{uyOR~T$%c>bGfX|c&0pz$Chi`Z=a5S7Sj9Y2s;$-5x+46jdeO`y^fl>P4%=f zvtadF>~AN$mm)`I%2=wS>1%$2sYgha*kUjK*_+&2pS)Gn;^cE`1%9sCwYUc^JqcM1 z)gy2yGrfud8K9W_FZ3J!M*wf=A;T98r!8-qTctK6(?M#g|Ig1%J@Cr_0f;ib;qj=y zpbxY!d0?&~0J;?eiHx0q06}IJzd_g{0eB>vRK0KRFTWjwN)fDP2O)nzLXeonr1@G7 z9pVH#a#PKnDc(}qcgAOI8#uy@l|2Bg02QV#ZJ`Xdf~?S8m$1SlxA z>AwJCXg^WuAO*-R2Wg1-HD0K0_XZ>lzx@KFVM}`0QCZ!*WbDFKthJ&k5;^0qnH+Cx@ifmVDgt=p+YGW_2?YcD~+E&lqy8>O7=? zRS6m&pq<*?8#OgG7$C2 zfTnhHaft#TOOK^23|)I6#D!Q)oJXD3iyywok=Pn~3=!XKX zMLNaiGw0QR`8}(hhX}nluwsmvWZ<^(0xP9d`gcCqq*X}VvOjrL!!F``Nc04%NJP}` z37qznlR3L*@ePg6!fFkwM6MR-;+cTrv51CJyx@N^;eRMJ{s)xzpTXk)re_zeH?tx1 zqmv|}3%z*=fJ5gNS!teHv;Z-=F{u&Ywv2Z$`r_XKB-)-i=h<0z^wUkuys5;z?mnKM zl54QWHsx+C094G2ZLRj5O)t&sA6X!ZKSn+SOnQ=h_EVr1?3sywFrj37(lg7YVlBpk znHX=TdbTcOeQn%d9aWidS}{K0v@Y@Mm=mThl;)>(gfr>1fRgv8eqfp>!EK9$-HJ!{U%`QzaI)Nn&Ifu~M+X1Uf&vXwpFQT+9@X4k4D z=J53adV2SdtET5KG1bmsT=rs?|B5^FfMCT;c%!=(t){G?0CG}J1skQnDZe8^@-XOb zdPDg%CiiiMC5NPer&6z){P)t5IlAnoW8nUdW^24A56O>xtlUi;nmqSTS0=qmH2hW% zR1mxQ=LwD0eHPWyWnn*S%qvSO#2kpWV82Eo#Tf!e9*MKS=B|W)5?QJAYTcf^X~p?0 z_iHx5Y0>t+(Wgm4?`zy{^}?$!uLb++q)i>|ue`St=oUTxnnoT7d|>eT(eTxSs-zR) zTY}+DK$`S|IMtW8mw+9MzXEu3F&0i4?9rT(9u;`t;ASO<(i(GvXlqiy9wL9Vzv0c! zYKp6K(u4F8%EHj>xz?S1eoA9JHOk6h`o?YdY007_<}2^DQrl`k!c3bY1sQ9ZAOl6} zfL2XG9vmrLbqbgf5hdW-{bE0dygq`NXFcNi^AONhO;F9V2ENsbo%ysbpsuoa@dvr} zW~r&QY-Etx_Igup2tiyP(nPI+&5rUT-k=j0xtAb@%L~|kL)1xe1Zs_=eUB!_p_pg` zu9wm*8xxe3HM>kDQfI}M1FQM&eR0YKv2)ViFK(frH>R~!UPX3g>Jl}eE1Qs?x#V{$ zd`nAHSns^iRZifBW)pz=m@n<;?mv-vspN(0Ts38hs2(M}G@adH^Fmt8VfKd1-V5@YS z88$zmzC4x>d(Uz(<_g^;j|5wl0Yx!%&(bgyX@Stzm+Hlvg5ov@ZUm(K<6cIpe{T5{0KON;|vQ@PtQ-0Ws>9}|EAU-PS=frk6& z>${I-hYP(jkb>g|T*Sq^NB93#8FqiZ&!%eF(*?{sQCS)&NaiZM5wd zsBJ-R`iaIqa6d-^Z?L$T6qrKU@4u<%Da!O6 zu$6bFIAt#JL-bqo{g$dADQYhq(Ah5K*8b7s%-}zOC;zLy@-Ggd{{$?6#9(!&>-IJp zy~%a*juO_qAa-?z&&mv7Os5Vw1H zh@`?4<>2Mv9Qjz+NbEt5!}gs+Dq(ZGQ{13yT2r^%R2G)K0i2%+^k0VJEnmi64GVPC zxtmodACv-KIq)}G`n$5zp$L*rzF>aF}@B zM42zo1fUuMlV0t1O5o@faCDPw!h_!%*RQ}PzW60T@HP#-q$DuZM$Ohh0t9TJVM&*+ zEl0X{%{tChaln~ z9)&X#fY(qT6ua%x^#AQLH4Y^`5(-dhd@;Ei?8yJHqpRdEV6?vyt1zF;rSS9-P!uo8 zPPtXt$v(qGbJmTMp+*?L*1eg*<{%m&Hhv*1EOes#?iA#~7=IM67Zo@OY(fO!tN^6I zJjT0UK?tHii$etlr$9r_8P)A?Txy}g(INl65}})e<5oZD3xI03K!rsHWCX4#&-xQ% zP+Pxh^` zTX0`x+H8<#@HYm5Yip*NhXTNR6Ef0l5D-do5kCKoc9$0@L}DPLklOBG z907DxfOY_M<6=&9D(!v}9~Q8tXzygi{TdlpLnmM{-guWDk5gYJ zQN4j_Ckb*m?Qg%+l@Q(nR~#M~7-(7(wcXKi?h&sOGdkhi*EqXXhC3mYKCtf($R-l% ze?x$*_`b$^KL|XEREa*|3SY=1P)aPSbby%y37%&~K$cThNbR^2@bfu{374jTJ`Cq* z@!D%MUR``hs1XYZs-X?$D1N25O`1EZnd;&l1VE4T;=l(a=w!Cns^hwv$x& zzU0-5Gm0NKA(K4@4LwN&SU;Tj;+|N^i#l>M2%`<6OktH%W*$%K@W!^dR#w*N)GmDo}tPf)Ai$^e36@3BhCjboX+n|AxgNfh&0mU5dt9ouU zyB{|OygUc|a@uuOr0BJ{Lgvw^ zVf%$&h;GK$Flls{Phn(%v*qVsIft=eGtBS0tR7kUOjM+Y?k;J{t+P=ZeMqMJ8Op#o z6uqYK3cV716?HQMiCQ9jUN0&tiee60wLn>_Pi`Z18T?FZO8o6o8E5#Oe4@jcWC2rG zt(!x{*3R+{0JA3PUvLeOLl}EjnWoeoaUs5YU|qoN5ZQ^^FoPBo_5Qg`U~s8 zomIJ=(FEF!qN5qqK)+uUbIFouiMY66Db#z(rN!qnEJB+=4C$q{8oanb10MREhNqa% zbD$Fj?wp^P-{s6RC->yrC&IG6>sDT@Vg!Kl6#?1PUWyOYtH(jAoed;yZ=u5A!FXfa!Zlor9*zk1 zzLdAKMS^6=k}l@>L|oWDXm*lLn)uf5JZzH6?wxTr*~4RLA!P>c50q zWcPtp@v)8J5pj4VcPVIVTp>^5ji~-#8J%bIQUv2Sl~VQX5>Y+FeL`E}W=VWKpw-q? zu|S)Xgu{1%@T+=h3|gCr3L!X`%e%vt{6GVH%}Kq+(@wT5&0tX>f!n#M8u%R8@vVTi z^!2P)F`qhrJ#VwnAf#v$)YTHoS`T*(fzeqPYB#j#(bp}s!HJ!PylGMl9Uv~4Ed%=E z40y$y1b6Y1eM(o-GKr)c2D*nW_YcK^PdXqA8?xq&WW99zJ*Z`s;o4c$ths?*qGF&z zT#eZ@hhHfIcm~TsSDA?-Sf{#BuksRTmlZyoKLBgx@$3TNR^o?Y&EWoY4U{RjmNW!* z?@0yyX#0z~2gG|tkOXvj+^g>|L7~#Q?avcP{QkTg5+LHl7SKZ`N6wW{ns<8+Jc{NO zc|-fml1=5?hfvEZQBmnzID-xl9gUVipuPqrCs9YC{SG13!Lm6v_0cxyof><%_N+r) zEOwS{i05gcDMoWc6l=twCgy~`o}QkRI2lxHZPzYVaJwHIBJq7!m()hEpoI>D7+<=z z*e-DRBs%&SA{GWF8V8bIP4#N+6i3)b?W9XF4m6|=+6ASa+$7l^1$uc&tj0?apr!%0 zIiwG8m#rOd0{WG3odZ&iwyXE#?0X#hh)}SEF)cj4u|u6Tt;x+M4>e%Kmup G{Qm+;Oi+^m diff --git a/src/benchmark/output/plots/plots_testset/tsne_text.png b/src/benchmark/output/plots/plots_testset/tsne_text.png deleted file mode 100644 index ef4f00d06942e81538152ab3289b09cca6d5c3dd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 17169 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 j&e;C{?abhdJy5cGXBl{YjeI0`HDJM~JY_ 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 vzx83VbKlJp>!i1 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 aBX6jo*z!M*U9TD=fA{Gjwre#rIQ3u1h5pF^ literal 52684 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 H9{c_T=@Z5^ literal 0 HcmV?d00001 diff --git a/src/benchmark/output/plots/trajectory_tsne.png b/src/benchmark/output/plots/trajectory_tsne.png deleted file mode 100644 index d284bb306ca3759f2bc5474c25911c5be7954349..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 43188 zcmdqJ@-Q5f&F*H0IzrW|aIG^(u zoELnUnZ4)UH|t(`t!ojXtSF6+LV^MX1%)mvBcTcf1rr1X1-*fU0DQtTxv~TN5^$6J zaz{U2CgN=)Y%F4~n$yI=z-Twc%gU!*! zlHG#7;Ty0DvXhLqD-;x_@#_zC38>f_3aW%kRzghOEAx02(M@l5_Wj09^4p^^jYjj4 z4lO5kBcJN9&lEB;usBqANY;gkqR*m1qBtLruwaOAWDdr-d80^AJ3MvkW{X!Ys{PH7 zlZX#v?5}UMZR1k;J@-Cx%^ff9ANzC9yX#|NV`Hm?=QUj+|9f?50wp6MAu-d#0Yyhc zLvv(A1cd|K;m&~u74h}!R{pohhY z8B=fSZ8JaoPJ*wBLV%>+jpl$1JD|z=U4CD_`|;yP^M1B3hu^JJVPPQ^BO_vgbZoz8 z=Oy{^Vtw%%squW3zKVf?!CAol)nVx61gLAyol|6OmvsFWLGe4dx{HEYtLk@k;FGP; z~*H4>qmGPyC{bI1i5Z%SCeKqw-n!{Ib-zDKv+Aug3oWlzsU;Ir$B zQ!o19=%}5WA2&(g)!}rl!>Rzj#HtUtl8H*M!-wbjx;k((L5@w#!NH-@6oZT}Xn?{O z&2!DWxY$)-JBrI`)qQ@pEnuTNm=BwYiK)h@2j=lW8uW{`X$8kKbLDxqI-ueH1@v&t zC3N*i{B{#F@GG@=n7SdzWoK|(Ajh`4gTU~9Dg_G(?hi@!_TF5*rP7M;S;uu%%CVjF z^h`B;e#}>Bs!3!jwI3tNtiAOUB9Y})tz~oedCExfGKFjJ63E+Mo*({JI{Kr^%F0HI zgu(gD>$#$*5BG#3&d&FTP$Ns&q9BAaL460)yW%TpYo`rI`Ir-hwf>~90+;PCk6bPi zAz!6m+&RcCZP^BwG;HH>sE~8A-aefL8v5tt*jP-*Pk8K_Snve?_W_? z)G}Y8T>!IHQNbdgC7`j|Xwrw0;8D(5Mxe7w&5N5@EIM!o&Q?E!^u(RZp-(9)dpLw4(D0}RE;iQ?~1?M z1LXq=^E1;*ApJ8h@3Enl;Y-@IS;MCzEw76qM)2zXR$t_->vX9aBafy5>BSPAO>8PO zUD@`O9J_{N$%OC?8HLvd^tA=mjsjD5*@oCMA71!GUVP;%5m*UJOw)=%U*jAgMkR^%QDmqA_`RB!gYGj=;- z_{=#je4~f|hN4=#-om&$2>N!+F`xhj=kICTnF*kOx5HYU`7jv#U0r}(9F@cUKz}+l z)6bW$9m%*l3%C(%2vdczLS~~MtVGe-MK=tvxYGvC(Zan0?y$P^zD#F*VZoI}ZAD4= z8jr2((S=8nJvdf=ph~}ufE{>S>8jHe&~cyT{{%K1nD2z};BO3_DRvq**d*!T>bL@D zsbxSL9iPiGcgb3v*qS!OT-~m!(Dedo>goghKov~p@v+^t(1@*kfL21*^V&^kF$|Y> zm2%>v;?7OLyuN4Y4`fV{TPj7+lN*a+XZyW7zvVdDHMPk~v$IWQc@>!HYr@0JPNI@J z7K0gjDIU(ynJSDra*=s^g?FVKpc0S!pxN-xLy3ÁrXl2(D+4?OAC}jT6c|S)^xfA$w>_9MU5LmSFPAwl zULutF@B8TUeNMYx0wOe5Ds`KDNDK`OPBBQhWyq)7JRNVsNFAJVyta@%U!I??``272 zgl$#;+g=3@PsaZx9Q2rX@4^4vemP$59u*bg>3!O=Pa@P5$=L?*ctUvJa@4)Q5@ZC;g zLw0CF0uC=1*YwlUe5WRO!T$l$LQG8DP?eG+7tndK+%!)D=2I+~_3H7nQigi`MA?oNpoK{5MZEh#s$wRI!}R}Yjj1Lk0fgt zYAGvkSXf%lw@#!O253LMSmyZ8ZMcfh7&xJ%9>B%1M3_aC72%r?f2_j+j$R9%+PxT~ zT!ula4mSb*J55yBpnA61#F4?yZCIVmS^FghTj#9_kFciXxLh3@r@yA2UQ`iI`G*#Z zqI#xse&;QT>le8cwrF3&i~5g!Rc6aOsb!HB=!qZZ2NplFQ|RvsqVhswCbT-2{wK5`-?^{plBt#M{@p zqoBR^)4Wn^)@?C@p+}`+Jx_gI_uh93HB+}nXqWpmn^9e4AYJ_?_O zJUKfSy8>Ty=11Hb;E-K>O+ls_%Jk4V^06OtU)FrjN_lcrCy&0sMHu9qwFXzUubC<6 z&CYm?fx%S`c$^A`yvoTrT{ixDvu6fH+S~E_iXsPth-s}ij5|D^@ULbcg-1wwTDRNF z9$Zni9er-kH+5oZp^fz2a}4izy%x<=O6QAMP~+%va0WmA896ewi3M^>deOOZ} zuA$jj5FSAwkx9{UXyJIU+!A#`IB@;t$wHc(^bE7gaj-M;@R#1q+TC({PP^ZhtWUQ7%B(F<9T&X5WPYUDIc$4^;)xXTg7_Z21Gqr89eb>lFHUL2^sgic4$p~GxUVp z$IA&*O}pW%#GfCm?R4ada_FGGi;B(lWxc_%lQG{81awg6gpDpWo|m^YJ9;+1s8k&u zb^uYR5H}^QPR1BM@PdSjUFjJDntGA=|XM6TxxnO=^1}A%E71oE5JpI`70ED z)F|?$KS)9`wnkgidAOIo_5t!Wz|a}&&el50j+&0#*~M~MtmATM*Uk*G4ZXAJ7Ao)B zQjV;LN@fB3niA)noc}sTs*`yV+6;zbq7EPnu8_oU^dcm9iw0Zj-~cTg6Ym_*|Rg zh1w(Ucq1hk^tYpN6j60+bxb93Ia>X)q(s`qjL? z81*AgzV@eLe6GS=+UcSXb#1C%)P2MkK8f!+FhP$s0*XtQGiX(X zx%-pSlp3J&pTY6RPVJ*BwFz_57rx&EX;tGiW)Y<3Fh5d#N zO1i!HQDbn#{4;I*dkz)Do-lqgp^?>z7Lu{UqPcmfj0Uhe*VzdADU z>1O?N=FLy*=^1{x$V{MwnfE`)3!m}-NSap`NITW|hMiq0I&r=4Za>HH%w2NE!0I9= z8RJ95*CU^;2*#OK=2BI_TpEvJ10M^@PLt8hD#|o$h^HK+I5#A+~GNm-oFyBt9lzH9QSDzHtjp*@!rY>|l4*l3ucr{ht}7)l(j zGiZ$3M{~;PRljoK*~DH7?I^Kg)QpV*8`;a71Hbs6JWv!owH(jncgzBIV*bbxF52M;)* z|9{v0HAp*rgCfbkkYh0&o%H?aZ2&bWF>k3V_wbE>S}`xq0IIwV=eUh(t!e{Se-dCV zH#CpNzfzY2p|78h8qT81Kq3L?A%CvAx%m^lQ`y>pAPqv$K%UK#RtV@H`d}Y97o6hg zJ{sZp4}ysLe?btNfJ}hz6WBl_{7cM{H{=+fG+T(xE zRq7fOh1p1*+&pA-(4@VtrXsi@W!GJ-g^1(+lB1&qnQ$hXjpX3xZ;>1i{&$_U2&SV3 z798qd0}_U7dINLoeh|uOls!rAbEa+;=J9L33K=0~pqRcX&-C@#c+$Tcjjc#9z6`4v zOUEBw(oR!;{tOaXwK|**C3QDqXA`~3(Sm?Ax>?vD`-x4?C}oEFK1tfRP|hn)szR>d8N}X4Y5`!*0GW zu(7H~PFKrV+FIq>K9oyvbGVb%$)ft1l?3kN-h_cS++=YRH{ZCn+ULOn@Mf3!`8#tM z`sMwF?$#D;yO)&@+1t?*4#tOc?aE4;5uHT$fg9VWuc*a!(Q98wq| z@66FQxN`6O(AUEEGBs zyCU|x9e>JW9W1eZ@MMSoR*>EQ;7E?TuU|9s5j~>^7+@Q;-eS|$EhF41u>mt zbdC~^py~X<^9`P=Bo&bKA|Zq#lY>7lrz$1?^4Z=Vt}xUO!?;{IVKEX9RM z?xYYa`Og2NX#BBs<7^hw6fy9Z$IJ<2#XKqP7vFyp9(-nHUx?HQ$Mhn3SvwtjgQk_c zC`ryYf{H8fTU!f`jt~BruX}tpxwy6p*6xwJYz{>gH)1I%4TM=S4^rLU{s)t}sn68@ ztyW;h5!f@#5Rv|}D~#)z-)zj-153wr9uQ^Pwop5z3Vvx{YUo$}LNmh+PYG%N@s}&m zeKAIdwgg4eWMlf(e$=};YL`qQ)!(8VAs%l?a(^&<8hC4axup&>qF#-Ew?#vD&de&$ zGWe55laRh=Hj*!eM9|LUtE!$TsMW@!{!)$L85RrQvHD;pGMtV z5A7dPXancEnmDbD_xD*UBO|kD4&yx|a-DkUzJplv!-wpccN2qOJh*SwD)m{6W&?W{ zx~d>#j+>f@f`qz*_37fCJzs3+#_V|*=n-m@c0Xs_8CYtW zc{npa`-n=c?`Gx}P01 z(Y2q@j;9MTzm$=nr@KG1={sL{_YlR!BTt(K;(+wfh6j6ax!C%jnD;g>L;M>Y=JSkI z=M9=|uiVTK6O0Hhv}w5R8ZdW!X`>)#CIMAFs9vFI@D)mpq=$|v}iP|Gc)ZT7xr zW#YBvE>d$%xU^@g@lzfs>rN=YRt$YxVO(pQ$R^S49;-r@zftDRza{sd5sLK5B}zsm zB_mMpG>Y7(W^uR_AKp_UA4R<_Fpi>hc4OZ_PnzwN6>He5_F>;Z2m$rH>ctXE+SZfP zgu_akopb26$YL8J=o262jY2vJFYcQjL#x^4H~!azOkXTcbRxcCzJ!c!TAFB1#5+B` z{S$f9odv>tJ~aGN)G*eh+?(T7V}ZZ~E6>l#uP^R$>6jzu&KVqMxAB&-m(SgAw^eiq zq19o9C(ylNOp6^GJH9>QP=MlgMYo{U`vJ0b86r+JUFtfTkKX1*`O)xUcJgkzpaSc| z$P41&4}_*i4%LZv-1L{o;iX2Jf;Nm^%mr-6ZTg|K>6Fb6w(86ak&{P1s4E#g6(l6S z8%=a#-W>mmhx36v*>3wtn1?P4tjNGK?FnlvQuc-Z`NnI5pYfA^YG1(f^G#6IrD$j$ z`3cr5_HUC&(-I zD>7|=-9jT$nw$=G;`1+ZU3^7O;oP&ZI{C;~&I#QPkJn->&z5f-Bx~4_i99v1g1MuY z+Zx2}&otyDBg!4rP)HcY!K;YX_UlJ?sa!sLdB5u7)SD!wsEC)fK(VYN6xHqx_-}hU z6&%atngT417w~TiydXCkSXK~{x0j_><#b4Rt6^zJs@E@7+hucX8ZSyGxbr~cMJ0nS zslC8OAkXq+rn}EOJz*#1j*W@N4-1_ahSwootq}VF(sIxp&lFo5p^ua&96}aK<(CZ6 z93-5BSu{xDDr#s~V^6fyCdKNLlz+68Fy#o^tKZSCD>@_GX51pB9229Ha(7hF!X(1u z`sAjMsGIyaJH0K-P%}}(PJ8l5+3U_?HPHM#(O}FZ5TB8h}{*$z65e(i&$Xv?-1v|ETEWj{pe&{*lw`(@RF9-)J_ zMY$GTzicJS=LkDuSMaXE?u1I9&z<_$tUY1vwG{WJ3Iyx+0O9_D{tG!Q7uVn6#eLJw zXaC#vM%FiI;j`C?tscF7cTYxEIvpEI&h~i6sTqH^$(Q&k!@dtvh|l#Kw7|{1WWx@B zv{|)a&qie}M)lJQgguypO|L$wVl6BxFc8Oi?9eGNSJ7|uzw$uu|DL#Q0Ym)njIS+zbD^j^*-q_ z?bup9936x~R?kqGKQ3_v*nKAlg7BiSG~(?VfoT7se_$wt>)+GH-0h-L?`*Afwx_FL z8P}kvQxa}XzvD5A7?ix8=5=6A&W!omk_#8kV(u)b{Sb$`@DgZXz z!!M+R)IgkD53W~UYG0(7%5%fJ%=l*jnr>H1Jkk|(?}lIJ;N`pfTx=G&JReGwsJGi1 zIUuDkRAG7j_2_88K48l@eX}l$sM`j-tjdz2Q1x%bcw;)~Blm84Go9bl7{H27Bbsi# zjXvFp8^mie{lXjxt*3?GNj5Pd&N^sW#xQ{nffgDTx)tTN zFE{ybk&*H7@xl4|G=;^*O;?9l*ec9>Iw}%5K5*l$_|5}FT;pNh5OefSXJ7Q^j~?uO zbDjYx<@q(w+qY_yu1hCOSTkcqi|)Vc^zn22S_QsI+Ops!X@-#&L8F0fjgH<>x^TMP z%2)Pw1cra0wp(olYUkI~d!Uo>yj?P>(x40iL&2}E@ZhtEnhI@18UPIlc6n>*eWpFB zao`m}<~1|3FYNszhm=y#yKR;R@|C}*P+Om?kRp8Sx|u6FvNIFC>al>94M zDg=aln|*7DM88|xi-!C#p1#xjIZq^Yj0{Nr|3cMhQoT`om^zZow@=%;X?6=z>jqNb zF$pfTgFD!~{cDYfr`AUJF%FG-t3yJs5DGZmwY%D4rY&;HCkk!Yak~&GET9tj;NWd5 zhF2;}61JDYnt*Hvwt@FWwuoLt2m=g{*t)eU1a#e@a#!S^9|9U^bn=?^tr3@8!*H@E zyM6Rtn1mxm+`r3#HDgd->i20>~XeGWe|vM z$Kmf~5B|}zpi!ero{_jj8g?3L4L9>b8TmaIK_4~~4yJXKI|~ezLHz2g^F2P4dACJ1 zqxlkuAk4?~li`jYg$59UqMpnJ&(G*V14aI*F>^aGtrjLuv1%Ot2U_u2$%r}eUXeHv zq=?t=YdkWV`1O$=`!TqUi7H?e@s_&*9)ZgBPlubtt}tO#%1X}+_8++S`WK8W%Xb88 z`gh75%jEOF()G`bS5GmWhdvvcD95U8aG7Ym31=mQR#P*i|C)HNP~`k$@^WTUWCA*u z`%Cie7aV&y@-M=UY{&S_LCWx0@*(eB=%U`L&3c4H!-xDQD(uCz%H?M8#**>z({Y4O zlRN1Pj~%F;$>Lm#7t8N%I%lK27!>W07HXq_D9u9HXG~aK6|>c=Krl>`G{0{N=JPCx zD7|B7-9JcuHy0k8+&}(7^Dwh?^OrR=1WG=r+yg2N6+AW%wuiSoSwsh~dKzWBQbd(b zldPzOah(EccoOAs`{!w=+T=HSb^gd8voV8tFOmh7<$24k)ycZ>YB*dlWwke1GHxmU zwB$;9>;9#%+7sJmYus$drok*VFDbb znhLV{^KnZ~x6esn?F}?RW2Hk1m5MovpbOOP^7^x;zt7!kx5Jh+*%4^N4Gs;7+1N0# zwH>LWD#EluhFS=bk{ z0U&brwU+?gV}laLUV8ta4-Ztsb4ghrzP&F$qgV9xao(|Nk?DmbHGBE`<5g)AZ^)_) z9x^^S&q;t7V$Z4hOG>TRO)I%iYZkliT(>QskLv6fF8BJzU>daYzP3YOo6+wApZ!?$nrkE{(!PFugH1gWeA4_Wuo*4# zhOo5y;)QxKt_fp6wtcw{E_lk&saFiqH?rf#!`n9NOW7|2WSFPUVL8*;&N@(?I>&OJ ziG&=a7bE3Y1C3Mc=E^d@LOIK=Oi+i5qKwo=2c~|=&Eh%fKR`}G z*UzLaEG#O)Z5}6O4v~yx80B(FTU%SWesh4vN4t^{nkPqRtQ&qgq0jSaqC}DW`#XL0 z)<}!`nbVah!G9`KTYMrjeo%g>FTPGVn}V@=ny3)2ZuXQy6)NEkGFgX9C5K1Xt-bm& zz@dSA@aZy((^mx zQ@`t3#|;fFZNdFixmGo<$2zbl1KBqo4+FNQ2!TBIZ>ze=b1KT$EEJf08PVF8F1O{0 z{e<1dl>MLUge)$~2Ge_Hf(DLrOpPZ-Jb$A-+b}IZB11Z^UHLSlFScWT{V)BH(tK|j zm8Xvo#M$S&(G49%E=W*hT^5Pw^GbC&@*TR8q`@ZRcPX56R)v4hUyrYSCvSb7_DTffvh_fR@riS!gt0I17HDn6MVr-~ zB14E#Cx`wcF{t4q*}tM=UGwqz9v4Bl!+{hAj}-z{y?^i26D`?CT_>~zLwtUkKWaA-yLTyaLMtFPCf@&s2lm2JerQvs~A^gDEN(pZbD_N7ni zRo}$QWU#zcU$j#>HbxdaoRA@ui%<&FlU$Z?F7;u*oKJLma^j3mb=4kkyR^jl)aTB9 zy6X|rh*l)Ez!;gq$w-A9BF_cW;?A+ySK2dZ)MZ8#;$(ycex4dwd2Vz`z!LO z(@)^2_|$H`zkdq-cDLo}e2@`C^UU=q8aX{FtxHZ?1~ReySS?ia(_i+pt+aq0rq~#_ zv3xd+>7&=|zEXovyv=$cUBjMIk^ihgH#%G(ITO_5c`v5zQx{(NBS1G&B?LlqBaMyV zpd6}+(juY$Tav^S5{VgSql4OgGx~@5xUb|r;(|>* zUKXA$(FS$H>!nWyqVn3XWV0h3Ssq2$9ybI&lb;a_6S8qi86^AxSVf&^I$3XzVq`8g zEbi$@%Q}6~o(0qq08phwIL_T2x6M3X`Xf}Euo*PHE?<>xYw@*Lt@@?ToF?&y}g?y604SXK;E-PIWS(<;Wi zD^9IdF6AG1;vkPi7EnDa*avq%x~Tt{E04bGp(u#+JefW>-xcHKfAVeTgO>-^m70g~ z_;|5>ns~qUuzm5)bHW(!3#%D|Uut>=viLOC)zsH&>_$`C)s$}`=f)EQX7|$?vo-9& z9OCf7`iRtL>BZP=3;7T@51JnwA;dD29u$6us~Qiu3YG^hH0MpPI}g)<_qMz_U7@>i zY-@JCi`Kf^M&yxZ@C3 zJY*o1!Rk~q(cWWC&8r|K%(jc6BPjcNU&G}EvGgMuh16jQe{b!oO za|a7KQLPI2rOMMP!P)pgzJ_s}6dC-@h3YMF|JOvoS!pjKEzO?`$o}iT%;e@`clULS zt7~_Is{C=pIq#_jaY)PR9kZeGTr)~e7Oy^YrFR_y%=py6a8;HB{k%I!@U{jGkd%>8{NZ4)@x?8UtN6^ ze?`Nxi6(<8e<;=aM@lhs1yT(1nLct;DMAg>U;(Wr8|B|ITSE%fn_$#{$U8*M8J%q{ zhw$^W6H22wM9}Ya+GX`z8HJ=L-!8~cM{zq{bJYKp=`{Jxbh*C16CZ>+HF^%}I$<%!SS@|}47>pH0D6%}p&MSr>G)(jCH!V5d@zj;#xM=WLD z;7DWE{tu-5iu3cQ6RbxH<(1HLwEkr-S3BQdvm@TO{I#ZL?I*w6BPL#1zI|r=1j&R| zN(ZT&%%A=7;T1d-$&gYu_v z9{>~33GKRBM>7TQEvOY;Ja=0B_(B^_p6TmcBN-x^2Ghysi16I9%c`_pedbB=hz6Ar z1?SG$z^st{VtfwrnB`ilG$TSW6#753*D+FNO8NgGtDI!ExF|-{XrLzZMh~%w5aAce>Z+u*g(fJd!N)*JnIU z?`pjTum|i0DDBH8m$VywE;`&2U%i*W{IvAoaK-@4d59pQb?1Ghj8Cy!uVa4zuGVf& zUq?_zJe+U3^@r)J;cALdP|qulr-I6-dayNUe3sO?Yt9Ba_4reeGD%|#{gjTmPUMB$ zDSYcPy4Xe}I1DMJiLd1kHb2P==)scQGY-~!;J;q z`)I~Sd=(&Yv*L&;qK_sJV*g0?uTZow;m2SZ_)==iG5UM{BCYa3KO?Ero-{`o2o(%F zt!y-np(xA0z{?&RMsK1XuedXlmgOoBU2zW5Ryq*t?c7ZMG0JUzMH#l3Z}Q3|Z*L1f z7_}wYKGWTJsw!Guoj4jz`#547O$fmT8;x*(E`o$>yqdH^x3m6tDOSCkHR)TUo3*12 zr9sd7COg2NM2Ee%Ehz$b-wugPv;|@F{Ntjl;F`Y#TpXGlv$Dr}KgeY?nKWrcO|zfN z$~8699SB}NLe;srX++DZ_eFZmk~iuwaD@QZ_9^E6ShH&K#^82ufqF8V7iM$`ek z#xQIh47gyeg-=aO9}W&;Y@eZK-aF9_++(5HaKz?WeO_YJf)Qp$@qMgPW21eRix@1{`NoH%`&1MQ6=u||E^8Y$rUJ4tfh#J2$KX) zGuCm5*x-3>kVqKM6I~V3H63tb1)eG+3;}6gaPUTfgUo#1wzZC zCN^!-+s*8b=DS2CEN45oL~c5I>p$+%J(RN}kBgUvU#{;IM>ukL)f*u2o zPly8LaKa1tKB|bnx-fWT$$I<%-19q2=NjUtjX}1e!+fPi~H=F0A#1}KgbU0)sleB>O+Wt z=~N4cqKNqQof<$}S>jF2pL-noS-ten30*5`!36+s3(S7iJc`sBa~<$M`iJ=k->bcMc00t}1hn9LGrn zSnhe|M;uD%qG#qZEJ$NJ7{n5cB>(QJtuS;`M4Ht4ASyZgOq5iC`Rk7_Dbh*;iW&Hi z9~w-ABHi8s(Ck=jQ6ZevV#4yT$~QRI>RWUu*vd9(4kvH+IDRMLX7_sHD)p{6i(jAF zXKuS)2sc4VWu-8<=Ng8_7Eu+#(eg(1-NqJlji^laz%7CL?fay zpq6)#L^k?8e*NwhoZl;k?rEFKyWt|qX6j@@j(27VsNE4ArFQj5-lQx?!LH*Ymp{q0 zFV|#`_>(ZTrAYh_(zhrc`e_e^^vp*dd{*><(xfa%Np{XC8$0N^%?(e9`)>oL$F^t- z`Aw(6k}{h3HaACuYgNJhBmFO;_qa}`mV^I$$T++lgoiI%gk z7O2b_Xt}DB_Vka8V=rmZEm~Kaw{k%-cRhAqPmbn}lzyls=y%(%uiip4l))*GYhez3p4b+gfq$CX_oKbR-*9f-$P4Oy zH`AeU{|NKLimdAPTIa|7M<@`07T4-o&6zj|9?-(us`tllKoM@GBW-pQMW`bC9{ix$ z9--A3XaK&gq=)zNesIZ57ewkJ@uYrq_7JB!D!FA30shb*L8Ycn9#CBwYv|IyFf_?3 zL>D|JX=lT+vqIi{`|JdM3^cax8E?M%+mn6WJne&wDW3_Sm?oMJ=|VUM*u<{`B2mC7 zi`(H8JfWfAySZvZLtFVbc)yyup6qvacBpuG@Kf|Xh#_a|>n8hvw`@2}N9f8ckgJQB z_ATCQ?>r=0rANjf^Rw)^1h9Gy0*Zxiu{ZW1yH0I<`5u%|0augKOwGE@PSk7uH~JC< zDw*DUX>XXB%PCwRPMWr7wG8`S3IF|Pi}i>p20qr2*}Q5Xc5x>7Clpp}+}2N@kXp<<&SyA2rXfrj@EG zxV+Adc6N7-dqUt}9hZ)CPB)JCc6slN+X}BSK`Ub0)@h4x&7+Zb7IJyn<);@_u4 zm-rlPP#^t&P@jpT!pDfO2fyQ440WP-n_fu0-wQmnZDgFC ziE490e7YLGQ2T9nRC=AytPv$-{icdrBAfq~yH&sVCgT!m!><-Uvwf@5AFT2`xh<3C zjhfJJxVYg!MZT59ZVRndsq9$TpF+$={Z;Gu&xi-z3>{k2?@;;R74^l3VpdBzPoORA9Sx9a`Y4 zJ0K(?w;Qlmz-Zn5y~AoNHBQ9FU_5O@zZ`ze3c<+hv`SGzIh&y8djo$d2?<7n038ej zbGORp7dfBU{zqZS1ucSWH$T~#9^K_{Smx#&4b+?`<(z>O-#cDvh6x&FpgyUn1h=^E zn~bINTstHZuqXk;Hi^QG;8vizyxUEA2Ta`T?C;OF`U5EQ`JJEF%hOGHb>jPXf*!}+ zg|dkzYnD`4qCP%8m8d{55Jefwuch(uZQ3P#^O}_&nf#?|?8~1|r1JJ}A8rb`rqf+4Q>Y$u@!_dp}HJKcwqlkiuxh#wTUiEB~9Ks2+;oZkX#fN8rI;*bHIfbe` zcReH-qDrmS%)9D_d)mB>kwpGIAB&$7`B|q9N&;s7TS?@F)vnfny%FYX)A(b$fE>a3 zWT_T)Z_ejYQLKky+~pUox-S(7MeoJuv9);_^TZ29;nL^Yp*QqBSAU?e0fQvDoVGZh zWwFD|7Sel7V}*-CM%5Jg;eqLp>dyA_U#PRDulQPK;PYJ>^iQ}l&g+Mqmq$caYLm7a za>8JuRk5GY-~g^{75sPW4c>`P{4k5|6eEs(E}};j(tOg_ z;AZ2OX^)jrf#UW2c;^M+zkh%kGWYnfk@fqzCJy^0?j&b9Sy?eP%PA6EG=#qZmswU{ zM|Hua_U>!6;Y4|N%+?ZE#b6ar@Yv6`@31`QVh=)Qz3Uh0F-0DOQ*lb%04 zP5ymdD8u;RrDi5?qZ}uKIeqC4oQf`0bk>g{t{4Ilo{zlD86O6$kyg#1H|SIJLV(dz zwmo|sxPZG6LkPFRa<+C%q>_h(GvCh14OU&y{Ci3DIUvs2T#^a|2<0I%cqrLBt(<4l zt$;ds(FlT+NofWBWB_1SRk5w1N9s@d@?=5HHkDwo3{Ndy2AP~(YTWLYG-a~sq(LnG zD%8E@q1WSzx@HyNd(SuTxAptH0{o#h@zp&7uwXeun@x<~j~^!@Yb%Z&8xCmrWuC1M z$mwj_ueNG5lqC9mHeEvAc?vge`aG$C|45(ZCm9ND6uy8`)sXOmF`S7c`ymOW#OTiJ zY{QP5^_ZmFK{VzO20(tXexliHT;$U}g?TG3$`tN#W=AsDq)wX*daUv@=`zYGZc{99 z(uOnL|2MGLzz_L!h7nNZB%Sq+_4*HTK%Y$e|G@~~Whc#)A-IB03px?Kd`Ct{Q&#Sh zEFm72M_Vw5^9CVs1~Swt(n6=yjxdy1RcUukGuv53>N#epj|Qb1H`)<hI)APk4p#A3`H6TG{!CS#$VZ0Al5e+pWi?F;pprF_B>~G=FMyPU^w#`=E zgeq-tq3cAOh}rs>o`&891G?@NVU^o)|#CQmY&2Lzqn>DNn(PY4wWY3 z@6gekvdGkZUphN@zD2Y!sOlj?F2vVPyWuN5J-csqga170VFLbGqLK>A515ww3rtC> z*&{Ogp3JedrJM=+Kz(ZXbXO%S+w7D}8M7;@Thmnc;Ww@Ckl1Y%#Z2L=E0;KtPDBjq zx}U8+2OGYSybi{xfz&e?G7@4B?7ER*J&gHkLklpJ9iR^*SfS{Fy~dOd!FKnCW10d( z0}4+ZCn07M?h2u-+h?T>x(YMSR*#lox6s3@q?xOmhlBDx?b-oJCx}?dMIu z&s##wsq%STq&$ZBeN85ZOIVl;2l7Z-r+iL*BB`N-#W#j8lC%dqVqEd>Pf@y&L>&t$ zjS{8NfeGIMrGN`upcRNkD-{(qv0v`~VBfSlH>l$f^~=)QnML+D}w=X8K)!l-?|! zjz0`g7Up}5G|;@!7a)}u@hhCubn?Jf{uwCzZBHa-RLwzbshL^VgWYIxpY1f%mZZ^c zF{H7q6oTVM`~LXO7u(-hZ99|;7HQ3u^C#6mH1))r-H4H-3hjAMXyIUCG_8r&{kWnz zt(zg1WCyYEw~Qd6sSVo-E%qnJv#%hI-q>#Pf?0?YAmy3P7R_d$itmZXq?9@;i45X{ zHmaAxNU*cp`fS>kmnJZJdEfog@$Qebd)YCTK7B9dWrzsU8W)9*rfBr5)FJxkDy?oF zmDcN07@|W{i$L|BZoYPYSe(=UIwe8!Au<>iaqD6IMWm_&vb5)Q`(6%mJ9|03+2#E8 z2=yRYN~2Lp?y{UG(C+aS7~L*>2s`-ng+;f)QOD(+10$S9<}!n5o*q?z8%`lWhBhBpf>#~DL^GX`jZ#^0 zp+tbziq~=N!0QORhN0)?7ebST8spo=iGY5nb2z8t5|n#LsB4=AIb7LlKdbn?8=XPRq;Y>3F#dc-Nm>I*=KviK5UEEzvQcThx@(fs2>5D5u3|ohC_f>6**SK$^@pQ#zCEPAxS zyhB=zNM(PF@9c?SeSx;|`VR>7ymymsZ?|L1=b^?kcrk&o$AHo9xc2%=EDyFol=utr zcaHPXP=L@8z&VH&7yV~v-JGcUQfV@0m0DH8bor@`cuB_QVztG!z9ZtdUN_Y8XOj`y zqBH_*>BPzk*}~V*Lf4wzU)PaZhh9kZJr>Pxfkb)|$PL;rhMA9O)`5{Mq!c|DSv8Pf zThSo{q{^TE^d##cE5@ocEZ@GCE3j4us1rjZ@N~bJZ-0pv#1*iB6zQuDDoMEM6_(Z? zpHnMj1C&2^wbiP+Ky*9Ac@}%4{%F$hKp@>3`>Ra;vBWAxXP;2XqnennSvA|lQFl0^ zH^YqU5Z5h4;v|l4pot)b-fgsTi<2Pa|1kBJQBl6{_diT`cMXkncc&oI(%s$NEg>BW zNDI;p64D_p-Cfe%H8B5+_viat_w5rNxfo_pX&c6%n0~wM%D;U% zzJ+1xUekx>S-g@gBUBH=NGzEZ+1cYic2cp{!7KQiuGD1-YjMJUuN}dO+cQ`)UXIw> z$K#m#QgE4vi=89E)Ih(~eYv1<_x2e#6`_c2S3TONL2)oMD`-A=0avl_-@n^UY_wX) zVf|ij65Q~q1j{d>ub;^<=ktT1Dc`OAYr|I);rh11PJ?fc;eS5(EiX4L`V^Q^Wau@j zOeSsyEAJfVp}!7^KBrmDU7<5mLMOP% zPdqk^Zm|jLJ5B>5{7$jHtLvUM`4jTSavZ{8sy~{`HdntCFH?SY*2GIBZG@H%Z|lNy z(uLETM6B{(o;pR&veb2rJ80djK^ z0B zm$HSWnqzDT6*wV zn_B@&=V}H;pp7)x56rDdYj_%77*XfF22pi0!8aI`;^?6FL(7BbPJ(U;5>PXl=q4<``_>L8zR}%1BS%Dj4}f^YPU)b9$(xA^zLM_PUX?2&@%b?*I|ts2Uz;H;34vE zGvJnYu+(4;Jg-*%L2Y>#e2EX{kJpLx}?%Txa){6;*(@P>v< zyM@eb!}pUo7_Za3=aOFzuF14ugcci zYgoeG3Q_!tj&66Wj79-t1cIZ%Dz~>+h7a9-cz=V*a*8*?Dmk_JT1Y z9V?Jwa-w5jC}c$;{-OdCQVWOQ;Av!J22&o@dp4pl`FIWvPD!{1|HeGu*X!=7lMVI& z&=wcK4Rjl*G*hDDoS<&we#&>FOp^Vwz9DlvKFv@ouM#W7K};I+Kkw_=9Y*0o0PxHoO>M&nfK5?xx?#7i<>IOn65Lw0+~u<*p!Ao;B$dD9X@I{oG*wwh zzA>1Qh2_uN4vGB=qLH_^fF&@8=(CzKHnd=RW0J>dM}m`o*wLWjPpHBb#xZbnv5MAO zX@bjy((EIax7{&{#mFw9Pxu99R7=n2t_VfPYxng)M&=R_JMaQ%0gL(Zz~n!*KH#9e z1ZXb^(vfJAR#wGFZR*!jt{D;|j*>iS|0cP3f3D68%}c926Fkh*QZ^(9Y08Vib&CF; z&y+k&)h2J8r6Vbn^jM-QyHir^-*U7;5BN^<3vOQxZ0L!X9(egIsIj>n@7=d)frQQb z;lJ6DjJPHX7#)=}I3%keg?}1C_9Q@M;%L1Gq&v3L&>K3iwp~b43N!h2jc~kF-^LU! zX&%DWO|w_k9q+Ybt0gIxK%s5Qq4R?93Ds0)!i(x!p1>4Y}2OUkdlOH+{W7JcPr12s(g1PoV;?$Dd z*rVUkI(n(hJ05WUs4N8px}@^^uZzn`g^V`kpcoIA8)EV?ayZ9##XvM z9&_*TBB>wdheAJ$9EE>X4p;RWTA^r+%iY;RwJ2yrvaml0d=Ir^9Yu-;(=eDZ^!;C- zd(EHM4l+i!*)&%fnYs^DQUATPTog$U^?2txK92eYP!18(f&F8zT!Ecu!$keSxprPv z0x5Xz23!mhXw=q5oA@Z5=*n-}w*uMU#nzNQn4g3xj^XhfC$poxh^M^kBz!+CTXyiU zeP=?5E|?lPMCQ1?+bkvE!r=9lzU$-t!MTgJJdr&rbMxfi2_!QUD=vqHhz)a7bnHfz z|3+BS6IdUO65{422bzQR4uAezX)HDFm}TtSxg_}E1aw3U7+Fi#XvLTD4gbmOK+(1! z(jY-s+WKcjz})LRP(AUw+--yYIMbQ%pDx z^^nvR^jAcT*5A+#YE42>P$&W}B!QjhPC+c2U4lAg z!46)Xv|Wt%_+2_@@V!1mJRX(JJ9CGHLxHyQ^iBRxmtCxFxXXX6*4L%&X0RR$=iN`x zKb&&mwWW)ENeRqbAW5IPwzwg?*Zk>8I%VetU8XR@TPnH~NHYD2_hjYVe zM@qvCaDyp7A-~0X8iTNf<0Aam`vAI1JPMrsveqy18V9iO zSgGzp13`8O%z^^Ynp{11jSGMkqEKISY;Qxh$m@zd14Lz4mw#dOTxEB@<$_DQ0z%OhIs z2}Sdk{x3$4femL7$eDhFT_FumL3#4*4mZt5u-ur};$=L@J!$K5t1yQjrJdK6)bRc>~^4hNC3 zxR~fle5{X*^RSJAuN40T{6CQVK@dNvtouT_Ov!6qX7-iW7s}^tv<6J`d{RG>GP8_+ z*E5jL^Rt*LGJ`#CEG( z>1F1;8n=-q{q!dw=%w8LNMRlFrF0H4H@SpU~ zo1*{TKa5rfF>=;Bk=Mg-UH$CE;<0T57(Fiv3jdJe1d{BYY;q|Gx<&k%G zs#+h_b8)aep~j{W_5dHf79lc}f`YO361hKpmh~ttR`(}9#>d}9WuxL4j2s>{Oh&1~$&f|krd#onDvKY);(~ggl7T;A@ zqM)sC=M`^7{#dJXF|I3N*}Ro*E!*Y!lq)R*$}*2A3Jg0+*%YcrP2Ty9qvOsDN#Xe( z76vnicoB{%)(tG9HU%2#BT!K7oe4J5@CXTMXlP*Hzkd%Ho1G75sO;*=L-@NqNu;!1 z5c=yx0tW04va?C=y+-TQ@Q}B%uC2`N)~lJ=Ffdv*7gpT$SNx>(38A95{4-r+zB?n zn_KlA+#6wk&s5UKm;LhX^vew!qr_wqFRCJ!YTKTUDL(l0`Cm_qIW2=mvptEM>{v_| zvIDRWyV&e0Exnk>jf>W!@51h$HQF~ZOXR*-ZwfYlJ!`JGhaq2Z6dFJD$4?0?d&_Xe z2pg?8^v4j%Z@+ta>8MrPB31m#Z~B=0U=3i(#o=%PD+6OSK-r({?E zgnpV-=9oA_6lDix*6iS6s|}(;-B0-cnOS^sr;xp?jRnR7Rvaj?r-MR(UKf-<4~;<~ zM%F202>I=mPK7Kgsk1$DM0;0otu?OI zEhv!8TKSajp+S5t{NTEx3kh8A43|9@g{A9`)Tt|NqId=zP0NmV6IGn2D_F$Z7mp4e zB;NlG*N7o+yPCRPfO2S`mvLOK(c!4w6h&Fkl!{)dOUFW3GgA39GZ;^St95FMwq%el zbn>gFp^CxlLff7aE6|no7aQXwqLuV9lmcQY?34$db7tx!)%&cy{2BR$f%d9lScyXj zy>3@903QT0WI`Cz?CeL&<&RMqAjyVPC2XrF+;ih}&ho8o(A1N7*zrO_qL><3Qa z*dN?bKkxo{YUGLA-fnBkLcW(D2C*o;rr!c*Q2!g66<|(6x`BjFtyzDJ9wBuM1^C5h z`1)ZX?Kd!LZ1wi9z8t%}3F?aXl6Kb;mL~=&vYnPRMRE*1# z9G{Z7PgJ0#hyvt9h8qSw7r2xMnsrDs-q4PL9hU>7T>^|t7%}fDWzf&kE?>{S`2R#>8cpbR&K6Ej>J3 z`;@s$R4}g`CTM%Ls!Gw#WLUC}QWe_u19;;`wCH8N5)B)QwC&})J|7{G@(h6Y@u zo~{K6o*Ar)wUa@X+u@EA$pl)PIAM*C_z7NSge%Ml34)U*h3KS@zhQWnG?$rF`Iol} z)ZfW-FaIUcrB>1H=F|qlu)u(*r9dN_`G8s{aeGjpJDEwk5>ZPpm*C=*+go*N*}Z-*K>M z?VM&)MJ{i>q|f?Y9|w4{rTFWzz}iIxNbLWuv^D*qM>EBFl^mW((Ov-=6%5diqTI&? z{Y<#qubFy;mK0zyV2Kz1xUJ$jp|;wUEWpl9n*Xo`?2+&MIU7AGimIP!KY zZIg)GeYQH{koAsmw{u>kaBz01*6nbQ%rQ0o) zNGfGjKYscfVt2(7_)2?RQXl%C9M}LC0$5<`P)b`p4huRHONthtIsr`_AQ%c?0H7&i zfJxd7oMzDt<3gy%3pLvN%Cj0$Y4Q2C-O0g~nUT?_-IJXeS7?0oMS3jI9gZ3>xFCD1 zgEk+mn^hj2bEi=M{JR9M>8t*X?}%~dao%F>jY1E&)%NE5)robGZZ`v$arF;M!x5$z z;fRfayx|=>RYoKQzdyxKNy<-p1IaglImmQB=T3$QI4?eZ8?6sCG`EOK1&GIZ`1r00 z!dJ8aEhJv{5UnHNj*AgB zSF}fuL|xOfQScIV5j!E~?80AhD;INFl}NCCUZT_!53ACj)t0uUTDnygY_WXb);AGe zJi-9Du2&K^8|W~B{g=mDlzeJXn3!+LR*s?bCS(l4)r1VZ4aWo*E?FSXiywV-4CivZs%qP0?}9Y$Q=kH0$8of9JxqcqOM{;}Ie z7~}3+x~aZAHb#_mIcNK>0BfM#Yy!{HAZQpI2#CpVju_XYvXc2$M?h657x?$4HF_=> zMy0(uI*1}e0YP@5)#$YgK=E-VCLfwHl9YXiw!r!jpDdNQ8--Ha_V?MZlaSA`U$DbJ zU;op)SNEs;i=zZOAJgLi2Ufv+rwNRo+uQA_mqkJ9NoELGn_*r@wHE53ixfeTXstM* ze**$M*KZl(2PS@=S1pD+k9R<;?nAb-mc$Lw~rRM_<%8(h6L;I8lCZ zgY;x1ub_(E4gQ=bgA%)6b$=sW>##rIa$ApUye9yXi4L*wAwgXfI|K3R&~}Ld;YUTh)uDtJnG zQB4mLpp8%7n@BL$U-rA>V)Rm-7%pX7$Mg`4ro_J~)U?dLXiu8)&L4hQtP6mPQxgWB{Sop8_JI#clKu31G|3DSJ7US@5{H}fM@yMWSJ8hCbA@~|wa>gX&aQtQuh)CU zjZ?h;Xd0t&4+MHk%K0g$zTk1786@Q`>P-!=EkFnm_t6n6Y9- zYlTMVc3yYhl`^bG&*|8|jlBR!^IKGFjhFd^au4Nz*Lcr#_~rB0Igi`?PJLXbs;eGReA9?Kk;;5+drQ(b0rfd)1yDq@-=|cIu+%E776&ImMlv)l^@2k$yYc+FmYc<~L>MQpv-2DhRN5OOS z!BqZWt&3EM9UER^6`{3?SXZ4jSNcBLQx>3&3ycP~KL|rvuLntZ4|yyN`wW3K(!?>ks?Neg|?i z>a*)q&%9fx9}*w95@oLSAMc1JtL~6|`B4OssU0=B5jx(#u)Yg3MM%QG*r6y<>Ni9s zsEC~KghvC+yC<v*U}ye%00Pm&Y|T8x!Ff$H4Ke3nF)Pa9fZ7qFua$4yl8K} zK7Y6FS*DcC%aj$1xlGOGF=4Zw=zs533)v&Hus4j; z3ChM~sORF%>g|E|?gsYIaMZ>{q53B%mA~0xto?Kk_j{)Ts@P%13v)LY5sw|SPUL8> z(aLDUm4SgnRSzeVC39`Tf4BwA8LE%GJD$9kzxHfgiBfEeSCIcnjv2|#HPdM(Zpl{> zd#$%B+JDZRbIyOFR02g6lh*ddH}jMaqohm3HuRxy*p|wNccH(JXnEXOIED|_MCrwU z=qV8NabB3`Ys}YuVmOLB!{sE*NNAV3lJ~MXbB~?8_ci|E zw*GgkmyCdzc%>b-gb^ zovqLC5kgFLf&3&kfGlAD#;AW9)2K3PA2||NFUK=qAMmEM!)ZD;d3`k$Ai8RL`3~;! zw;d%h;5Lz|z=WZToe*~i1O&bqwMd3 z$Bq2xAglDbYLEJyzS$@4lPByZri=9fYYU3J7DtoU)(hbl&*dE-n-LF@c0c%ea<)od z*?BdU<8@qdB5v|BvEVHB{K7x-RC4Lb+JFhs2u0H3sQEgYIkO8TLx_(N{BZ7dp7-ew zsW9IbbGU59`C2sW7^I&zQ2etgTVL(0w;VTe77(sEX@6@ zfzPU@xQGz({fpA%)c%3Pe9Aj4KuMEnaCKj=7Fv{s*#ClJe8@ zHJoIrhm{oJyChr8`$l;+8^fEOQjQkX*Ytw01$CF8AS*9Mt|d|+1m$eM$;i;_PY7e@cUvp zW%<$FeRCKjwWk<3db!?42qVR0>v_oCr=FBRh!T3Yc2PJwq+9-f4xmq`%;#LLF-`L=MvMH0#P$nv3S>zkK}-o@APW^sMjdWK z8%7r;Z|C^RD8?ovO)Mg+IH1BSIl8!TX0hVv6hlhpRDH4Oaw=E!;W(3bQCF|6d4oc$ zve&o6e`f_ZC=pWmAiC%D?EUwdXw_FlG2GFJA?Ted+y8tp^D36GhWtQ8((iuD7Edkg zXVT6Un5rD7h0`$g69;26VfH>IFA=bf;EOV0XAZUJfB9-RTX(TMuHs6&T_t&(5~j3h z=!Nt>e4?zA&HoSGEw;R3#Xa4 z*ghjso;RCf4m71N5*&K)F2T>p4fl(ZgjvruLiLtt%fguK4a zJ1s9~oE9N&s+@;{N6FRodu+1@sE)9x6T(Xt{Lg~`!`JCS_B8CHu5o~>n0dFSfMYlB zMV0}Vlv1ocRGIvv2kZv17&PH6`R8CKy)S}o&1D0VLOhBm%dpz_6bYS&y3vuisP$h< znf<%?1($MJv9B5qdw6JXg}zi7M+;$%x?T*gcjOLgFY>J~HInZ5<;I`H(=84|wA$N@DlFOF-?1u%QibU|n5xnH6Oop-si1}u2dhM3Ff52MbP%c; zMY=Bcs~Gz5Hx3Nf1I>{MN}uT>vhvy)V?}p-IQ!r)utLUdp;f;(gB_pbj7F8dg`G~# zr6%eDM@bRAhw;F{EZ}BMTir;%vZm!Q>eGBtevhNikHsr!OLQKYU_^b{tYXhLeYdNV zklZ)`K$3rRLjBZ|Jl>AVJ%7Q>_thfUw0{x{DR$btS>+s38o%Uu{dz`|e5m4hbxnOV zv>J_CG9-J`h$EBBph0+iiqlf$6^jsNn39rorr_}8rC6eTQ8&yDqFF)dt1EOdlneX@ zxsOrro)xkQf!MEMJ?&!T7i@`d?)^nO=zwL)I*?^u@@e7H1kiAb=VK+fm;1xb+r_^z zH%&?z&N7m9A0KuXkFiXq5YnXz7+IpgFRFO1XStBA!Y z2lQZljPk^MoOWbYcG~Fa%?;AoR+r;(_DZ|i;{utj3r(&GgT~3`2YXgaR-#tqtut6H5k+_xx4N)(lYVxk{%IZ)J{}4s6hlNHJ$7EK2cTLl`x6p zZ?Nvu-6Q8O^mh$Pe`4}iF}9pZ*L&=R34hE!71;gu|HQ|3E=p{CBn;bX-gg5(2jn?D zwz-41{O|jg2pnCq#b`siK{-FZk5TC0f0k<5&hb_yaeN@_PaH_-|K8y@EX)bxw~Ir3 zM0CCZwEO_qy!SytVgT5s7y=Rw>tHtOPKZeSvxdUvyv=$bb~S?F4QmRu7-=kVnryFW zb)8*Br9*+=BkEArJwcR$=I)1J(D#jywE&Wd`h4wpy8!)!MwE)s>peA0&q8Xmf{k}# z^w}_LT_VxcSjuW#qLOhn%#AsYC721p>b7ScL@I+(4^pTUTvpcVg-(*v;ptyM)z*ls>BjNQcSC|7`oowm^rgjou= z?^o#J4+yJ<@aW_9rXG>9VMdjxlNSF1|Kt(v z#})hXB3c$0_8)p{=~N)m7lt~_DE#Jg=#L#$moq}7Nb4)0%qg%gFEWfmf!Z9ds^81- zy_D3H{95Z)%u3MT$OdMV!sf2`dd9m%2*BNo$cdN}#(#7~ z)#?2dV+I@|hS7Q}&OM7!L|^hU`URxH5q}yCy~^Vw5+-}>=ikIih?B0Rq^_?`nd*!8BEC6RAmipx>2biC{L1>A{)@Kz95-=vuS|56U5f z)cq_-D?cEEdn$MQ9H^hd)J^DvRHrz}+{5&Z1*=g<<2TFDV^xXR24i{yYu6q^PrCS6 z`)*+ep{w3n6DFEM(MJmwo5rO|S0haA4%P>|CsPAHjLn+-l1OW$ndSjS=8F!t7sJJ=m_HM9 zS3$WlvjVJ#MDthhOt858IM9l?NT4b*<&Q8dsF@oZEMxyD3>%;*&ex7y+rxvMbtBks zDT@4xnmp#6pM_9k*JHcO@Ecke>qkDNi-n^r3JF8yNSdV1ct~pk)W#HSE_^anSP45} zdl*y&T=D7_m{M%0^6m)~npPLSY!LGx!)7dRkI@6~K_J*=bi^d^2Kq#W5XRE-TQePfACWlp-i^8jM=9N68#^}6 zA6CH@;UDG%6w6<9Ut|l4xPyiHb#)$;`zWlMs~WaiO%=tWBu&)ai$-NA(ZBo&DHc~! zg16_K{|Rj8`6R1^1=Hr)I@!Yn7ZRwi_F!wp{B_}jc!xdxCbp0ao*^MW(QK@CNyG5m zZpb{S_*ht-qfLDwm^Fz*=`|w1;#tkeK$9s%+IUu=G$;{t@)bP66b}&% zCJ$KHKo_tIRC@k0bfkKTjXn;73f)PjZX1J?I)T4I3 z>k${|y=tSSYZ6v1F+m}lC>zI}s53lSw4uuGK1y$lwIqxw7GdW43)PC=MSb?w$&gDq zQ)-Y23L7|($0ny!@-Yw2eA`_=i9a5rE;O0cyZ~I)ds5K>Ry=<&e$>%PTfF$B9`)=8cruM!Bw24FNUA5>xw*0)A#Es+XMckZ7e0@rK|P>$?po%K|d16*&73I{$yZZcCV5zu$(A z$P3+GEWkBc(65E;U>D+SP@aD<0hz3XIIBX?#AF8GHyf{&Gas4Z&aNIWeNX)K07cqy0Z|nE0 zBNT0%QU=A4gAE%yx0Jb5kXS3m?}ONm5E{Dj%^l$9OT3e8H&oIx-tfWUOBq)Fr&(ZRABg@eBu624RrjX z^=W~g1sFR7|2n-69w05gYKVjog}=H>bx~zmFQr4&s2i_jyzlbHN`ibpH3@23mCKmqos~vKdiKetH$#dZtYs z4<+gPLv{7uD$WPo`ZaxJZxA;-I`z1$yj_aLA{>RR%5}x%Y!e6Uhtu3W)NcOEk2(rQ z5xL(`&1c~!Ked%7ww!G_))GKS0qXg;a8KOV>&}Jg5=EIo$xI>A)ROL{+RpmkX6UDo zP!1rKsmHwJ-^|OYgr4K(Y4CJwF-Pb!YNrp_qB!lF*Abo)c(C0JD_P@AOqwWy&funt zZJgQ(re;gGx6Lg6b8{mBeTb}qLbFh|S4XmjEvBfus0KQSyqdfRqwYxo^~n2^7&04R zP{2%0_|&}xJ`axC3LUF_c63EkuzPIGrjrq>|5iZ$!G~Qa0IUo4$sjaBQz|ECD2_fg z^LNFw$B^axp%29v1Tr1%kL+bITGoi1xQo;jT;-KkcikEK#fSU<8X$TBOMG%(UZM#{ zbXvEzXrq5Q|F@#8A$M#Imb%c)W8FR2es;Meu0s0hF6xzz_dn#tVF6-!b}8!8m%4!P z_>^6~6BLTLpW`1$=irCMMbO8qMP2SsLO8v$naF|fN$qxYxc)k;gzm2`gDLTauLb_) zp$*rm*qa_MS>4)Vjlp~_7ok`M!e%uVUVRdW!UQK$gt`k{*K)II;axFR7WBRI@qqJXBoWlz+Yw z-FK)~q(s!d($OspugUJN(Fq9IQ2No>&i>@Npy&2eZ%&BbAAi7wM@1JwOP=GbvLpmltPu=hT z)!^Ne_#Ka9m4msX##1n+x-ODwS$+Y`95EY5(*zq%pYzSnV|O1 z8yUHS+q61ESW(F=U$gA# z=4M62=xiXD(fRIIRKGgL8ybQkA$Mi^Ujj4K!69gHWoK_ z?*vC1BzGxK#@~^CPe3PM9656hGnu_-U%r;SsHJ0hyKVV;l;Y}7G6e8$etId)@W4gB zYr=Yu3e)KXww9bN7WfkEqP~NhM|q$M6B$_%RXk#Ct1^C^j`rN`B$L;MS)HRJn?^!E z*BR9`E=m1ULS`M+d`lSAXm8bo5Zrm6?tA5f>kzLz+tk9BB*IaL=|2pM=1JC1A1WPG zjM*IL*sgX}$`%BK$+-SD=Y=%5k!Lr?YUtw#x&E(jLu$a@??i(i`0Rkvix;!567AMp zn4dYP;b;3#_ytWeuVYp@N75rMuw^vpw6}AlulzO8x+NDItqUxhbg=3d6}GwusYc>S zA8u_QrZ@3KIA~xWHVR$l+0_>G^V(qq6zg(7;HWB8q{|FF_^1yUKuexx-dtbr9uBo~ zhV(&@U|p@~ZZz^|93>Bi1EeYK>{p}Vx!+4SH&DCKVBA#F3RGjt5iB$4ne?z#iHZfb zBh!3?%y(S%4A5>!DhksR9%E>k=u(*oN=#S~&RnOMo~|K?ykH8DrfX8{IO(H*W}Z#+ z_b>xO$A@ohjrNqwOE0h`6!0Vr7{SEgp1ie|X9yH8e}ZYn|JF>bOOjHO`5|XZ9YT^& zWb-*%FOsw|^a`oqygIbQ29SBH+9hZ5F%KjE5=$ouG9tD?2;TdsSn@GBR)$umKQ5h! zVke*n9=1iZ1!2Mtj{gZ!7Tp94B#5XcT|$IU>#UsV>aF-ilb}w>0xH((OfE1m-U6*EJ8#URzS=;1{ z+Wiz?T=+nr*K1;bs$`zDFLRG^{J1|r+_)8&yve(VnHpK6yXmCKU%TLLZ+gMX_4gQ1|l+%ahzh*5+QEAsK#n8%BVB4}yK7VggMSA!T`T%rQb$^|nw7 zQCR=2V;8=f5UZBR6?dJw&T_hDpG1R=BvDGwRoEUEwcWwI;V z_=Rjn5S=6AMHpK$KkX}w`B8tjc2L5CH|Rezd19k*oejiPXAq}dJ@r4(q+_hcRpP-` zVEe{r&T9SzNRGtxcK@V@NLx_)zIm>0GqaPrnO)F-_#($k;)@*4*=rYbsl0chISF>B zTR107RULaZRLmIoJE{zIjajoE|9hXPPYr&pDrOMI+j&&xZXkCm3`$+Q4?lltDk>G( zGWSX&TZ{anM+SKh@Zz%yAJH|~em$EI#z+Rc`pUmOj z#9}U5Vb&j)IM4F>L_(aQdFD}d?zawPi$aJ~ACLoHc|3;mz8LlW#P+bv>;7MN0Urns zrO?>=AkdA;JCDQT>}d+^YC463ff@f8Gu@9wyiT9sQvjN9Lb|zJt^1gRgWgTF-K)WS zE%P+I%E7dv#6rk}eiHx5$1{Mo>6oQ~A?rw}HX6~#hl3aOE;P@UMMW_do>ZJj$zG%JHt(FvfqU4USrcCjN!v;?Cx&rCNI(PfP?Uiwp~4 zG6Sq+K^pB!o4nS!KFu>vtJZ}aJ*EugFWv##cw(&LGf=M;8y`!qwbbjA5laU&xp4(4 zH0v-OFf&wvPC9;Zgrz=bwFDFxTRrDaF#3@lh#KTCn*!Ql<4!IWpcO-Fj-VfQERU=veFsdr9>-*Oc1|xl(cwhfNFnd)E zwH4hx-V>37m#u9?(e!b)u)`zAmUG$yrkfNz6BtuO&+Z=rTr%fny`M(3GH|DFv zjCqtFcoj%jew;;EH=Odh(B5rOBIsUBj9wO80D{lyG8wPGTGR)CFL0@*E1Ah0#>%zN zcMPNUVKYw->_+?Q|G<+;mzQ_OPU+B_fXBvVMv0$FT$}=^jXYSWp#XY*$z`Y;D@?U2 zbwX`tim8au3V`;wmh;YMy_4)OrJr0QVr9&K!}eF-KS+N#6;Bgk46y7m*!pb5Onfx-WeP>-S{s_TDRtV-ox^YWL!59h<*Oij zOn=r+4f0>*IgVQ4aB=D*B9FerTxn}6@5%Rb{?H1IHM;h1CqYl1P0l$Q{UQ*My8xiZ zJNI3Xz*|q?g$}h90~Od>8wAWy?f2{cmjI`xop?NhfiunATzX0j?0yaN#<_}i{Nc`l zPIyNi9_ybN{=*iDNbFbnW({@NkTiSWT5!wjsXs~xp;$;(+p_O>njlbV|S2q-7lHgdP<}iY-`g7>{@XBQz#B>f+2`n z9q|q8trW2sPHH=PsY8X3cw+F}KZiy5{YSwTuNd9m<24D_gO425dB}OgCluJ8BEZS} zUCb5;RCFK&JF>z0?B{rI1C7@R-QS4prY~nsJuc0I{F6ns}?8FJP-5wFetvAAbe&s#1Iog!1nCQKPjzC1Mk+ZBzNGjG}fN=b^BAiUx%Hm!VK30#92@$0|OiGo{XgacnqkwIq4q|gs5 zyZf5d1?E=zrUG6Xr?@P}yO54;V~qm7k6gaEZ8w8pSW;3DvnbTWp&-o0kv9`K6VvH8 z9X?)&iuQNjF^A5HuuR)-B5|Vm<2)Grct~AJ@uc3wxWkR2j0W=ss`*Oh(qgkCM!^=& z1B~s#y!E>$v~RML-vVJsfttJ0_^U&N>O=9eDX3aGHv)3fU{L+YOSi(aTHOH>R<%KR zi6?5e2p!_yEEztQ-PoLpirGZg#QU2mZRjNww%i+w2WPPw-*JGqhn`fm*;JDg@0ln1 z$)33-=2L!)i6|eNKUug+CwyR}(Hrdxpgrn%5hdFQQcs}>D1%v>OFgG}L51#qJ14m` z+X;twihUdOYtfZOY69XbaL=i|0OYmhxi?y@3-O2ld>?B9Ict+m?njdjYwHK+E;K*L z>JzL7=&7_5DFA{($&0L4$ufL{x=E1UquWXBB!I%oi)4NxA>njSoc%;cEi}^9 z$8^2l-#S4qTN6sypMzorwFoWmLiie1WO^VJgD zOi$@Xm7~ln6BnV#SWNIE1Oh}oc|Pao%q3T#Dsot080HS-s`QsK3EBja=9|=%4RNmj zG1J$t{o^R#qEIe-th*%NmtyTiu0y3tnp6;SD8j{Qtn#=ZI89r8$w3%{UsbYn!ITx* zNW7h*%CPoZaV#kdlLTN^DtFKSn;e2@YJkZBvg*ar1nL(?J^un^CV#o?=BerYB2ISs z^7PMC_lK3BoRF8~OjQ1sI`of;DbpGz`2(L}n1VkmB?`dgESBk1Y6p}z(9liZEdCZl z2mvVy=!H4@@A;8;d7N@1MW9?hadX##Q;qXWO{Ap)BTM0j{|50~?hRM>M~(t`qWI&* z@;L?Sfd88`gt0~wOy-Ky=Xh$hv%ESJfByUbsygeirn@)blL`V35T&~wK{_P{NQ;0$ zHv%FI38hOyX_$zFbgAU%ZUHIj7!A_hu)&D;;Pd?6_j>o|u4~t}bI$iZb>E*)pGw!- zM`Od;pErxVsSU^abcmki#tK=!N#O%zY-yA3(0rVdZ2}{tjv;@yV%~3dB4Ec0jYiq8 zAI1|cKru6~R%GfFH85uqr&LGQQbLXvBzg_ttTLqoX zj-5uI($R8*U&jvgSIANKjX}w<Z4#9cB=}% zEIZ3aIQ`ley>nth^#~S8IS={ zr(8u9!IkF|+ zL$t9$Ze3VhZbZehg7&Bc85wpE8Q5GlPV zPtwhA0Qm+uF433iy3y@bimW&##*(BOCVpwQTc%yM>e0h!%a5*G8j&%_1YKo1UL7P@ zd>($Av1!yccQ41r*f=mQx7AI9vKdNKjd8xq)b0F8-l!+&+PSBB4@)@=Hs=-(3aG^K z&vMMgiycb1L=RYmtoa2?Z_YQI&W@FBN!8Q9P`&{fGe6{!Nj6OqfM{Cqs`v+c^{+G# zf7m3wA{dUWj=EC9zQNLd1<~*7RJn9L-VKbt;OiJ@q|BLjIQ{`?tB0uapf=t!%!N!b zRrDI-IMw03A6&h{wVvo6uVNJcuvW&`5}$g5$SQTWYB#;7*bYNWpdYD8se5XdIfaC&8(0@chTBMpr+vkf z2O8W@gu?_c7sITJkFprWsLsDxA9v(*$!HCCjr399D1fhe(QFhi>Bwca{5DPEfSqNp$P3Y!Dz9!ye;Q9|YQk!@Kc_j_*7sw*X4V@#uO_>LF$wx; zXma3uE4Z=vO{;%+>mO2Lb@?A= zf)6_629~C7JcF4Vnjf1KuHP`a=FDy3s*Esz z_diZU%`-gs;L&nF@9R5tgDT#ETDL;G^DTdui;4cN(J#;DQNVaFRCC!(hRUo%K}l{8bjf?uFd_nvP)gL5XVQNBoP^K21hYvIgVX;sJBXapriE zFahDMWmkQ%6dB9woFAads34D8%$eWKbwm96HN!Y^>oSibcDvIAF(xB~{g^Xn*d&*zYP;O4O|>@<%$XcDLIJw_}YLQBz<4PwSf7GCw3#RG!T3O_;5R!Xi7>_&EAYg4tB)nS^Q-QQty5ZFKez(VO#J#G z+wFa&uNAgh>P)>x&?-M&Bz?M(zAmKWN=a#&+Jsnff7jh@m>KAp5NCi&>Ne z6kryfLP#7XgT`7T8&P%9G-kFR#K-Iq4ZtBRv7W*>T|tGwLwu{#d8br;h;+hBeJpX? zVd1xvTStR&|8DfSDwRaJ{qa;mr>7Jlo$Kxy9t_GQ2B5wDk0cEFqM^hH#L`eRQp5ak~f=%8-ng@qf|mC zq7^TQD>O<|-_Cr$YOCiV=aRL5+tjuLp?MnsYIkjU!4Zc+Lo;T`9(`_O%cU2-kDUUH zn1vrQI2oi=H=}|QR-b5(mPg7|V;}zRvX!W^H#=*=Q~|i(hC$Veeu2qpHWz>Tm@1O^ z%a`p)kEuBN-GzwMhG@3Uhti27K*w0=&ul9?gir-!cb2Mtn^7OV&6il$ZFpp}%gYHY zml~dp8xSh^)^R?nC(vV^n&hVcckDS`-k`XcXS?u7JYNio=foMBuPdD!l`+OW>l$_Q zmd+oQE{$a5l-IqzN$l1?YL58;JLUSk^BSu2Kc30k{>ivp7 zm+!`sks)4~(!22aG4m{e2l@NkCyj!y@q(<~f>P)Egu(a#W_Fu{t@h#=OMQ)V-x84g zG4i<6d2=a4%)IYFMp!~rsDe}Js9|6@QIZg6u#DSVH-!^|gHj3ISpH$9ji4`(+%{B% zitJ2b^dHHzHa4VXUNx)fkq$kMr;4EQCUM>Q%6ND}UnkRI-NV?H^`a?U24N6{bhFdJ zU?WG^?^BDB(1ad(qE>mC6nJDWd3*k20=7>Pf~1RXo3Qu)R;najE>&x$P-fyF}dTA22G= zQ82+zYh{ITY|WW+oZ1s`_gZxwr5zY?iRfDoAT)lbz04OVlNrY_gCpHDw!=DuprLq~Z=MS?D=0Q~8!ZBmy0Fa~CDI?)4|QGV*Q-$>MvzO)fyi6e;00 zu!QEE3i`hV=XSVCM)`ja?yThgOBKn96(EuEbf)=8#6hCtgU!v-ZhOYtl?JvlG;_FU zyy&pmMxTD&c6yUzM)&(qgi0cNb5B*wR)u1m*7Y?lW>&6VE}yMBWxKiLJC!P=T#elo@lV@s#7f(8K0@HtmgS8zJ@&Q0K7 zSB{Jl>b3lxaC)=40Lxy;(&rOiV3%sjr|2=F7TI5en^fmyE_fhT{KNa=OygMk<_l0} zsj6Bs6=-Qi0+?zSB#o^2;s<@ZWDl#U5yoCc`e4g!jD7|Wpy<+2DRjq2uyN5|}KJCww$=s4X9wGe|VOEEfh(^x9_Nu{fDCj#hmX z{6Vz;qwfy5=L4ma5;Rj$X2Z1;dNoVt;x3f|lFzFdV9+aWrHHz_7r{ndh4Ue6=q}+v z+Cr5zD$dX2?x3Z_4>?=rR@0!0!t3g;7#YORF z%mJ|RQ~&130W((oBhs&Dv7-F@t~dTr@RQLCsf%S`Vn#=by{-1Zm~#FvmWDW0Sy4%ZsqtSU zGRub9_5CMMh4X{{3jsrh3V|(kTYIJ=JUra+ObfiznYEC$JGJlHwMIaN#Sr}YbGQ0e zuj7r;p&!5;rqHnmO$9#fs1WRVr_SEqb|4*%j*GjYK0Gieqpr&Ipb36-bQA}rmk8@u z+iYFUc3C(aDoMSAbODl|-NiRwtv+VhNI1{CM9}q<EJ7_OEjODg1r04dnoebU5f8Q&SmI|sUOBw_=rb2T)5<`}(D$(a z-85aPPxRg(c?aA|vfw$0-q(HGn=wLE>SKt5^zxX{ME$*BS6Etkx(fMbVt|7b`%PgV z@^?^0C&@=!kDS6nFL7Ve+q-pue8h+@%g@oQ${U`6KYu<-dUx|S-KYJvRT@&>9W(_3aE~$UiqV8+`oVS0C-utO09Ydkj0ut7E_gPO5OKg zl5`#(9$EobfS}C~TP_0O>M~sW0kDc}m`bes874|Bf|F(5o6Oy`?$7+NBa`a6asTxE zu%8_eg^R9^k)~FYUs4*nkYxUAu8* z5Rk~p$$vs^t*O4IfP2VZ7-TEvdvOD;D;kaZePxr}Vk)MCWuyoWs_ ze1`UYuP)pKl6uFG6F4Y=H=6WBJ#58&c0fZS=)CrH^UCM^*+`w+E{D&DcO%eB`S(G440bYx2!~<XLj!zG=PWUtnsLBIvi1)TnK6|U7Z=yie4x=PdVleALc%}P)YKZgA##*V zD>%P`Gvo3}NhQCC+#cYJi- z&KDZ&g7CtEf)NyPMZ@^G-b44j^xhI+Mb|=}va_?>gmRszO4=xr6Fs}Lyu7Sl>KEO9 zmyXWvcdGQ%KU`dbpx12C7z{0V!g=4otX&q`2rcHD{gv$O3VeMJmQ*);1AG=}+*2;j z&m+{6L~U-&-_evZKiZj@%E`-nd;OfB9B1&a};8BYLw4Aj{g?+o_qEnUyp& zqDlb7+2VJCfM-_JFh5as*-2N8jwN>0-5Y)*JJ?J>C_h(yx{`DpZ`$O05dkpJH3g9= zGXTrd8yh~JX{a}yC0}xycI0)ZUsHaGb zuE04r&{)MnCtVN42(aq@q@B+6l;nX9=@Kf?Y_FH%p9Q&ffg8tUu6 zHO>}b@FkN7fBzfwTXAIGHK;y@SUpy>svJozA~Q`(C8r_hjwTaopX%Ao^k@3(cMOrT zyftozi2W=-#a6_x9xfvmlsS;4#L-DYR+czJ@`3g5dV)dlK-VDdzSrRkI+MV3($$iO zvTgI!x0P{f?ht^-IQk}klDfpfYJ?Adu7vv5ze+zA2=zso*ftCTwg^2#MPfR%lvFOUqkew(1FH^v%I6iaLY-tvT$IYzJFHNu8+)AU=2XNxdHP(x_=x zfHyi0X-){4yuERrF`}l1K09$1x4Ld7qn8IuT{ObiGZ>hP*a3RzQ(K!t4Q8kA8)D}t zqyXx37Lu0s?xVVKI})iowf;KqTVb-amyS{d74zm;Aq=_7%z_GJ>CZVtlH)#lS#mRH z=H2xQnVocm`Sk{}C{008@p_I~D(i<1n>h}DS0CG?iE?JvYrFXU`w6v-Z~f8Qpu7^C zfhQQk7}wy1dhG06j)#Z07V^iT>EhL)H=u|5D<~=1_7;YO5a>7gHXJ7}JIP$4El3nD zE-pj{x_f&oOx|sc3()%z5fgvu;jMcTL`=;xRpsC&j(!7YBxTx1q<4REqBKXx@?T7`ObuP3S}g#S)!i=zo?D;Q`_kn z=g-Unah!TnWi$U#w%{RO!_jA{tMkLpX=!|*h2w8BdOwZhHRb}TM+k3#uXzhXug88n zWg*hq(sJzrK>ySqtEq|Xc>?B?<>5-ND7?=5^sNWz?{CG$Pj5gN9zdk_{9J?up-_`2 z95EWL3{vh-XWbV`NJO{0dU|3&tm?kDZ6FbPC6CgI%*}`hZjqJWqoC*vz$dZstGOG|M=$P}J^>@mR!iX`TY4a8#}vVBW6dE z5CUoXpc@q;QMWU5;T#P4EuP+&mX#t)dTw6+Nz$J*x}(`MHoWi~E!4aE_#N9PKX(2y zx_ktp5|M;CT}>1DCt1uP^_V7NOGIPxHM$yU^e)o3ZIKDfsM;|jYQP6P2ZBxu3M4mZ zP3B0IsCOGsCP@|q8gm}2^kBwY*xsI5I^C1DcsxC1&%)wGI$|CSm&3jK=5qOT1An4X z1>Kw|^91v9siV5mk>_yYI`hh?Gjn0m z_p*QIP9*r2sm`vhL6LV<#xQOw5`~E`S<3Kk0I+;xPe~+9yE)g?1Oo3mO*^|<-0P<{ zkk9G>#(Oi#q8gq%|4WXOZ1CHo;^1f~Md&YO>p+={Ni|;`aH%HyNKsomRwFc3!sT(} zxRHR9)oQCYJ!D57rp#o z*?tDR;7$$S<568JVA@GkuXo)xNcz2~=0EtPK(!oTOOYR9!P=&mg@fhoJ&+jqmJrWd z&pP;l$rl~D69-${JPs>&kBaRjyzdUrCh=9N`lSvd;+$F%`vOu(St%r!s`1l-hi^Mj4Tl!w%T+1t2 zSPqJt`;8nvXO=#B=z0E#d9C=eM36$#&;8U`nADQ|Zxjz^^H1olc&=5c?mL~f;>cZ{ zKt?Di?0v5)04!BmHi%i@w+9QcS2g<*a>+i;S*>%4VGevHPDl9P$Nx78FcQ6RNgOBp zcPGlgf2Qj!KD<+2BwdX_JI48@NdLPB{ohVSnY-*8D06o0zdn6oVR`%RpW^_#xj6om zqQPv^Iyh2k8@vmYLID!*|2ZBa_k~K+|LfyqVIfBa{TqADnM)ROCg-lO6<-mJPy7QB Q#sV)@MGXbSBeQ`21JdCV8UO$Q diff --git a/src/benchmark/output/plots/tsne_graph-pca.png b/src/benchmark/output/plots/tsne_graph-pca.png index 5261a204ee5a6b15979fdcbc2af1609e6eef1f83..daa1a523b26a1389764a7b4b5291c5e8bf07f636 100644 GIT binary patch literal 19789 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 literal 17549 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

{K_28vd${z| zU|JCD0Vjvco?!#uJ@~Ka`u{~6z&|@&|HEWakb4<&xF^2;k+1)!pD$srKz%YvQ2SI%9!B9cDPuP5;MSWs%8Hb0GcP7d?~;6!l;&K6`uSw~_xap$WlkVJT@QjBt-th~+6bEu?EYDOmwuYW zRE$y9WcpP3j`k2^V{&p(}^&3v^gmH zdM&Y$Wp**dl@YjbP@t|IAhKR~l$@C={E?6f7QG3B)~A2XtMSiX(tpAUqGcUW;~*0& zV9ChAf5;ij6suZEJD&c)u=00#Z$?Rx`C1E$kaGzn6RY-P60KIJKbH_9&1W9S`16S` zl-xnuO{VoVg0&lUQ6Zu0?Y_vg%y~5Tk<<)Utd%|CP*;|?YUQ>?A<=Au7U#3y2Qj{H zo5KFCYkNRGsD;dG{oNiO_B9IIZY05I1u{EJk$FaLz2jtfk)KnGmFatau+Cd4BX9QA zS?#I}qVksMS8n-_gDvb_6q?u-ztb#Qz4}w@e8fbu@4Oj1yivfxqMrzVOHNsF199$K z3QN;aVUvpCLEgXLAmfo(+N$CB40R&79yZKk&rGR+Q!+`x?C0|anDCKA; zKZ!H<1W4OEy-yiDMvHLJ*#8w16Ax@DxnaN{75xDEyf+;-6K@sqIwL~*R>hcmE38mw zXvPU{0HLz9Px&Oc6mJlaQ6*D+mvV>TBotfjI4GEi1>P0)R&bGm#1^~96CksiR5+QQ zW0m~Wu_=1o!dEQ1m!KTRXsv%A>=RrZ$TvJMnIp@E0}l5VhHjaW|<0V`z#9kgT^{=Mw#@sV^lZ2LIFvl#B`GyH0Drm(~-r) zhUTg02rHMnv%GROsT4%I0Nm{{Ddn8TN~nx&W`)`d1&AI`;OHdK^3%bi*J1?)QD-RZ zP6GxaOW2E~D#k&xzx9F6Bj=a-HOQSa2-0QdeUur%L1QW_^km{~ttO=cEf}Rn2D<;& zfY(HzkM3E|5O%u8x{%HzT7ov(>iSv35eSZ!{XOCo|-w0-rXZEeEpf$fHALy*K z`z7nv6{!9DpS4i5N{uI-qKbFzKDbC1-pH$GIyaoHgcSA{#5tcFd}FZ~%yL!2YyHQ$qO+?hldp%6$njs}RLZOyuR_@gF?mn_ zKDN4S0j1V%UuNAH&c8ON9TvZDqcj*mCl{i!&8oK)MFC!pZfy1Tz8&)?pwb5T3Am+QX!~m;5DUASsCYb!rE@#Y<-O6qNh&I4>t^Msa zkq${NfW4VPcpEP5)s_)(0W2&3-vtr$Pkf2XR{(gAV3+e1b=;?Tbc#BkD=$Z>cJCnc zln9qNf;0Vij&7VPrur#Fa5670_b8;WSG(nnl}9_wacd`C22W4bu)%>QMNpK9q|Edp3)kwwL}09(8>%6a?OOdFA(UNF!&Ew`V*Ctn zSXyFQ1#9^0iRH!p{F-7MC#h%)aOQ6Eg^u6%HfC`2MoD^jI#B8_c@aV|>Ac5py*Ecf ztu;08-wN71%bEMyKv}s_BZt(UGlAY6-<#z|T=^~NoPTPb1k^WEEe*E>S)WbmfNPM6 zW+yp&19e<=^U1`vtmetCX;Jk{1@Cp_r6OcEzsI=Xx>Z>E5B*xAd0|qnxfyY^QAJwH zCpbyib*28!Al8lhWkpv(@Nc`Bih5A>)U+)g$1^8r#%!K9qKbE6%W!Ots-zDV6FGj_ zG$@c4!Q(ur85HFhg~>}Y{as#f@3NHp(}#fQ=`J!K*N6wCymfL{9KY#BHfiMd zSeX74e$o(n`XCVcb@dd+@kpAtC~&#Zqzvg(=4wnw4heZ1Cg^{lfaOOU;wUO@iR z#x@O2@u=NeXvFxYAf3YK%E_p&%@%<6{`Ts8XUKT6u$9U{afat)1T1ryQf+V7MlxCY z3%dZ)tZKVQb0+h>b_?#KLIfkf1+%g2w(mpo_e_5O>#ea&)8{+2U+dqLW#Z__KPcd| z>ptzmCj2O$A+B=mLdm2QU9xX%x&b7hQsm5{r=_ywostchv;k9NRvJmvH9T+}K7qw? z0d;%;8Rq!6&t2fLTI)1tm5@Kueo0_QlgaVIUiY_GN!WKAsmcUl$>~pL=rERa8`~(l zuz3}yD&vL)4=$3k(NYgZ^ur(6lRd1mRFr0MOgU{4Cj*Ff8H8elL(X19C9!^@Jp7oCON`y0jdL|AyRMs&Jrtm7149*M?2QctIBtN*G0l?SDI88T{7su3;zh>C{fTIl~aM}w)bASrFBPXNm zcryq@bn0^)LU>~~%cJ8XcHEp$uBm*jPF&T-Lb8?jWKp--Z|Yv4t#2vVtq*nl5daP^ zn-0v{A#pffEYPjY2)<|8pS?ChZ|(cTm>=#oByu!SZNXqL^>v$>ZslA?eXwS%vg3{4 z_Yx`4i38-$ZRZzTzdERuJ zj`NjozFrY5H|yE97=>Ez{-`95i^`Xe|NNNe#8GIdd^LQ-&?YZGKf@MCWq!nE0DM(* z!vI!ywBG2k7Pjh`29d}VS>ymT7_T?Pm0M;z?j0@}) z!W&EZ#Z5r%i1)Aub7{n)&=d3kW^w$1eG&uMppq}na4P+sp$a6i17ZW%>tf@1azM(r zW>x?UV_AX7eoHn;(l-QamP=vs4bDN`(M=c*EX^s9$(m8%UEafq zEY9?ndtaHRf$gL1gnD@qyxnEpV&AUN58vthf5FE@CcQ+m%AVBsY!b-$7_Lw+!{;ZF#+kLSY)#BLFMv1 zaF?-yW806&V2-5#YnLQRTF96I?MVUH25##f4!~bzmJiLEr*_`AZwS6 z+R#(DYqxG)t0rP#BH_jfJ2$X}OpIIOl-vBdriEs>j!<53`SeazWqBJxC-*A08VL!! zflfdKhq=tq{M`r>+1-r&8`Rg>>#k47Ae33%{FE?Pvjndygr$K3tsty%i;I1KBk-%L z^BSIcV~raIBaE65MG&gwnNfq|u6X^?=LcM|LhU#uNB}M*2 z2zkvvLxm>jg~?f=^EZ`{%Zw%D$8>P1wWtp=WEl?#AfmymFXa=&Cvy63P}p^gegPZo z|7Q2je?QItbF&Xj+kySx)??jjWw!IxoA7e~e%&K=C-IMd+k^pOU(Z$DrSv=RFDgKg zh7$-P8<bjBtmM?-XbH$P%3|{)ncANh^)zx?$>>kB-Opx&5zSN+EfT z?Jq|I0s96Yi>Md{FhVpOZ7#hvsde&sNeDRVVi87nq>r^ywu5{N@sy~G%!yaKG$kpQ zAU`u-Xn6(ZUiXQN>rhTNitDr|Mmt7un1`do1`4`(Ftk3=jraS;){ftuOjNZ@?&9SF z^QZ8dX0cx?V5{8RDu>2*ke@JEcuSBxO)UAge$4;U{She9f*2ot3mBhH;PQO?VT;k0 z4Ok`-r#;u`S4Iq@tL?fn!D2DHT6TU#>3JTpp zuy>=MDZK(Z-W5nxhJun)2S{NqaqVyrij~@YiVbd@{N0Y_^8q0TP&Ttg+}-bqm|0MxzYfIb z5eVEt$k6;6$#r6nMB~|s6NPkv-$22lC)60rI=No`{DJEB`1Q4m6bh@97lLGI#-*nD z@L>y;i>g~OY+Ul5PaEO_FLk4J0h<7|cYw0pXK6^_$$KdNzQ8I z;zd|O*VmT15i4k(;3W*QhK=qOscP7<3sYa9Vd^*>7VD@P;YO-<(4`V}A4|H$dB6Zy6!@}%%FXe`4j{dnYu4&nRz}Lh z*gS`>o<7gc3L<}CGIJyleVW8ao%8`95w>c2%CXtVWa+eB$0T4D?X2$yB8XYa*ooi$ zKUg>$`yU@nVt`J?M>ttJXyMn`_CW-P0&;gDIDgvTY%m_^ZMM7xk~E-|!4v_ohi*FL zK4PB(Bnwcf!PyaLUn$Oka1xrA-~IgG3Zh}snM*ed^si_m$lC>HKT2w)$oiNgU{39# zOd8gI^9L-A7a#`^oX-3}8M$P-q(@Qcb9sXPT0Lk&Y6f<+n4NC5v>DLE z(lWs2{{8B3CqPZMcV<9e76xuUBJ92+g}r5w(59h+qVumDzp2{q3jM&b!xaAJO=uy4 zLztvWH_qZpK~bjtS)S_psfd=A7XC;4CZ9O{IHz8omybuO=!{glVo}-%Aa9nAL;~|! z6QCt$VE1TBBPFz{M|No_rhWS{WfN0_VbLZM+tX9FUZX4+Wppy*oA?s8?(#nz`nAxTJb~x<#WX z;}Hc^klGnSXPI(A_?R4eV~b0AH)27WGhJhgk4F{6TU}rCg8)$qYn}f$f<(;y5U{_9 zxa#WaK4q|3OZCXdMI~W_V~%`>odZOZC<u0_ZRK-7%OA-@-X?MAjm{2Lnn$2VfBoCXKt@AzptFPg8{}Q8e@NObYM>K! zrU2K`63|m2Npz00n)Hr0ro7@GSBvzdU6c7JPE-?Ce<%BOE97kZ`GXwNF zm4J>Y+YBzag{i|6_;4OBgTC5sz*8@uNdR!}@sE~!z12XCgoDuch!uckFY3r{DCLGJ zU1CNA_%E0BYIoQ9?Oy)#kpe5S>kbT?2Zn8?z6J}sj8!d+R=Oey0|H=UcQ%&U_i7l~ zBsA~OW8qT3ZTdC$0Kdm_>nI$FEcaWCOJ@>~np|=1;v2K?bp{G_tj;6@oG1(%hsiME z1*}hI>aA_n4}b)4_>&6p(Zksb5NbBfHLMYJkltwvpI@rrxU6O9IT%J91#a?{0>%5+O^DfW61C65b8i5!m=KlND$2275Tm4bx=_ z&OPl7Sn{&%@FW=zx_Y{S2(s*|a5lTl0%p}70y1v{?#$cRY!$NIS~Rir9Jc=DwhT=1 z(O3{%K79f$y8~^iFn@8tx)G%boP>ZUuNa*TuDMxUXV?1PobBr)iiCsz5iNLu{5ux>a*TaH4CyRE}N` zD=p~G`wH5u`=wiH<@bJmef)~eh_Ts%M(qRKa0ko?IX1AH7B0qAKnd4g8XcuC5`lab zJisf4(-bqy9V!24UgJ6JFFhB%w&taG$fh%|kjIdVW_JQTgTU(WZ2ry%HL*ujtj`pZ zt&${(zgEr%?kU0=jobIDub#FGd4Yne3iSLs4B$cAs4!}&Pr4ZoHn^$&!)83{08p*$ zaKqFg!Sc9e4hxdD_jb3c6=)|G3bV2_T{_XVZ4pS`DR{FA-mY7FDKaYC^RIFmpi0@8 zuPi+@!|VdbuOqjaY^<`qyjXk2Vdh+HE;-O47PdbO9@6F{QrG$Jm`%y55$wj{CY%Bv zYljzxSS!nkn_3CcV&Bx;o%C@_NLqiwgUObNeGuLqBis}NPqH2l0B5pxYeHuZ%UQUA z`Dg(4?7;P*HQ~WQiSfyvuR8U8!_Tbs$zg4MrYrBUhfh5#X951;H64CFS99qIFwRez zvZC=n-gEzMjh7fl>WhD;bY2Vj)+|pf*_#A7rGPjCAW8dCMUMD!bmipXoW$@N`L~tr zbOR_uvEwG%h}P%Kk&Me=qeg&ENB68zr?PGpv14tv^MEd0D;OyXnBTnf@^s;!w=@8K zn}J#aRiCGAW||eDDi#Y2M)IrGgd%T{!=Hf8X0g`Z67BX4(8zB%uU)m3x}&L8&=YiV z@md+r_!+Hvg{354;8>9+TJwjyl>Lf*Fko8I$oQbaxpF*~T;u(=cSC!WF>8ONa#DW2 zrzcul>R0r#$~N%IG&;$L2M_`EV4HC*d!%?EV7Wi2>=8`A=1mxhGaMj+O&z#s_*5cT zuK@7kJa9g>0_I=?Kj}S~N*7J&0F9@jc!$QG4V`A$@=Jy2X8!gZD{UV&MS<+~jf2T! zdDue2kf5LK!5JQcD&Zb);9%nDl-;`59!;Xmw7J|EC`0_kCstm7 znDtz`6sb~nujiP$2e`gxun8-fbnn31bv`=W=X=Tk+=ptt+NcAO0EB=>1V(4_~+lxgF(MOY-|*whu6_vVB0@yY>qO7!b{~!W2DE5V90VNU4 zjrA}66FAhI(hvLCPw}}ew+_O%>SI9xe-c=C!C=w~pY>`l`6!o3qjxO;e%W4xXZj`he?|Fc~O+6_<8-5H;>j5x*gN6jrw59-j?^?ip z(#x%ISAQ-R7a8+Ze|M*Fl7?B{*vRV z#Fbw0MVs0D;(D{v%^p#}ci|?twkzuZhz$nl^5ZiAP5XS3?mEg785R*)MZtjK899vx p73{zA^B4cDfc^(d#rM|Z^MR4#b`8jmS_u46SJqZ4y8GzG{{hmD_7(sD diff --git a/src/benchmark/output/plots/tsne_graph-umap.png b/src/benchmark/output/plots/tsne_graph-umap.png index 870bb130a8e7aab01e2c5272e98490ced1656c04..ab1c9bc19ef722da4daefae0ae11e25257d1f10a 100644 GIT binary patch literal 20624 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 literal 19375 zcmeIa1yog0+b+5hB}76HP&!3g0qGW`Lr}VuZt2*Rh$0~!(k&n*-C-cz-5_jWv!%Q5 zT=?DZ{OA7nALl>+ckVdjj&T^s7S>vGtvT16@B2Q_`@AzqRapl2CfQ9G42CNwE2Rd5 zq0_)%*R-%Oz+Vzw{a=F*L1$?#XLWlsXSbJ*rZA$qg+S$WUC zX%Q?MYqC8^zZUE)h21D?KXp2LiE{HYOHG+cU~fsDm^f}QEJ1Bd!`+s<6S~}+4`axe z`NQbJbHI!wYCe*pLI0D6K_5oAXxG7q-{b29&>u$$#GwzZC;uxBo|!EE`pETqUR+L2 zF7oTwhaM{_ZVXx}&VzD0NpolS`&+TJ59fTF1>WOP39lZG)y@0kbgM<*z#;j>g;a^Z zP5<BR7Lx9OUuihOC8aOiXr9bfPm|ADk||CGxc3*muKb^ zjc~VEqVmwtTOECUB_l!Q8=Ka(+rP*WQujo?Y6|u1HK;t6ZXX{uU$UF0dYDz7nwy&^ zdAo?=vOjwCXz;TVdF{zs0pbU~Sj>B`Yei{JtZ2r-DW*@hE&87qK|a#8%M53QTrT87{J#b*PiWk<#_BaQ~8$r zUivsi3HY2H>BJ&4LpY+uF1Ev8jG{VLf>c#iX%ynvBAYMvOO{Ql?kDluMoGNI=r~xP z>Ny=MLk8{lrU)Uj!bQ1g*AVfBaj4>YWyv56|1m>f{f)*$gYbP1509OV`pv}kkxFrP z-Ky?@eoaH~7j|{X`)Q}5NAqt7t88_d+1O%AnlC0P6m&LGqean2M@N2C3g4EFSJL8l zc6P)`(Zxk%U}&nF7MeM+teT0@zveD44ymU0u9w!-)O5~SpxVJBu<*@!mH%vQ9XTTN zbUX?aJCis=w7fxIHn+W|X=#~{P3hU{z3}~=W3Rx9yUkc!x{BEO^UluBFWyul%wwaO z@0Z4!FDlRaF3-XX4H|XoTu{pfB@0i&--d8DX*C`F#wqbV?PM*H9r~<d|+b zG4&Z^?JnM6_T*aaTJA~e>FZ?rEnni!#KfejEoM2$;B;-Xpr9uxdqGx3tCC_;exTXc zSG&$RzYRWGtS&!S-!!*&(%O8yoU|-|>U}t~vM<6)sgPNsU5kpqAi>r5%$zARRVY`| zedes+7DlObcPJWJP+a##KBYd@cpy{S@dqy7r}I4#W*z zHa&@t9WRbok~Ct$r0DX!*rhJl7i*hsgeUbWh*kHAT~4EREl8{8&Ntkaod)|9>KUva z9FjD79{jOPRY9#LS{FYmvWyiuoOW{D>0nAa-*Y-&D=2Ab+9=kqUn=Y3;6~F7uN2y- zc@i8P{N<0P$E^pBFjGP>pDjThUc9X${wfH{k2Z!PF|MYjpqkb25qt33EXWB z&Dq%u>ZG}8K6PiiX_tFCuCRT4wCjF``VOtc8?5c&Viz^{a55C4?<;v-d_*njtJqPt z<&U6};TyHf*$$HxmY+}6mG-igRF+vdXLU4L2JMVabUdXmzAVwh6hzppqoU0$3nuaxRZkENIToO=?r+*kZ$G>QyLafJ^>_cEn<4Teg867y|h z&Z>6cnw0+2M(xYNKju3{f{`_sUbUL_e(JMaHwNr^`#KsGn&Sc>4iEFR0Fw zE2Q%rQCiX`+7=%B_E}k3J?5F41yy>qS}Hp#!=>37%0D77a7C2&rS!zI_-5UIoDGkr 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 V(dADH^!xI9t1Um_4#WshhbybZ~Zaur)t}v3lfc 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 KQh5>vFa8ggt=cvK literal 17219 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 OsyhnGH?Z<1kNy|JA-c!_ diff --git a/src/benchmark/output/plots/graph_specific_cancer_type_heatmap.png b/src/benchmark/output/plots/graph_specific_cancer_type_heatmap.png index 8b7bc17ff48bf7ac95929ba66d2689252991a5eb..4177ec0138d51cd64d2ab867893c33621b6cd3b3 100644 GIT binary patch literal 68118 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 literal 65621 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 diff --git a/src/benchmark/output/plots/text_cancer_type_heatmap.png b/src/benchmark/output/plots/text_cancer_type_heatmap.png index 7220bf87b68bc25725ad333ae6e5f5fda86bb4be..e1edd59b82b1c02b7280ecc184331572424702ab 100644 GIT binary patch literal 48150 zcmbTe1yq#n_6Ir$f~bgsiXfdLB`qCFr!Oe=A9TL=XE8S+1rPXg&C5J=T4iN``pPH{_P7*02p2kO=zVb#3V z_S+gy#k+x)g2|y2M*ZpLt?MH6N;gCV1+ObTroDgfQWB}c?vGlEUO4VN=0v zbKx^%G8`}St5{=)PFCG_sG>hma&k_tv_{*u%iO@l#ialj0A7MYk|w)nZy}yvuh(5T z`>i~M=f%@^o*zXaSI#~c@`v0$d-sX}h5qav8v6ycvv-$XAcqP0y54(97v=OF>8Bh2 z{|-nx^zPleAlVPxK0VnQWwPCAGISW%2!nL3r<-rlDt!v7-W_*!zy??72`-5egH|D> zJfk5{0AbwZl$4aD-xx%uQ1D!&DU3EWMJ_?RIh>B>_;5E8dUC89XLy1*<~-)?bPu+J z9&bnTZucrGq=?^;h-Cbr-xMOU(3?Rq`Q1PCJs#6jmbX{%7#k-(zh*dGZ5*S^t0oWR z-FP?ZFk)UX!e+JAM3aDaWR#~}Gki3jE|;(~7*8!jFh5e3ca?-+lToYk=9)Da1xjlB zq>c-aS6}?_S$X*r_}we%wJO=hce+!hFx==}cUQu{``>N({2F8WGX_Z*O@dpuet_9X zsSN+Y97QyzW&F~3jYb@$YOdz`jLX(sm(5%!ne*%i$DhmZQ`F0?61gJ2eEE{{$om@g z9ReaEhAfqw5Ik)sA&-+|$Nh=d*z}mXCb}wP;4hwsGia1H78=$2w?GD>i#)~d9_oO=i^ALkL6{*adq#ICKAnB1H`BHiDZe(#=Z)Dd53)Ip3pVY9HB$B)?4qtz_W z@6A?MeC3Z`9K&YvoaOWBs^WPfdQnb09bK%Hwz3|wigHFaq*fJ9at@d4~%2?EafcfE4S(24P=S48vEig zS?n}Lv!?GK8V9j56NGgZ%)zx=cDEL{EI+Bs6U4n=tXi!Nb=h8s)|H-VjZPJLf18@8 zc?7N?bs?71(qhLHUhDo!?+%wuN*s@4yZ&kgMxLhcEjsEBzFo~%I(ey<2RxKpRTYtT z3(QGSjJ6luT(IMv5xv(el?imNva{XFIGJz(TIiL5j^p|CgcPwr;t(E33tF}OkCcXp zqkWqJEl1}g;^9T9Sru5IDgBE2v!^QqRgSBJC*$_opI!LSW;UW zFfoiplqnV)KiP~)ge4eO(0;(SOwD(MyO%Y+<#FE7Pl929z(gAS@*?EgN4%^Yjk1Va zbSjOwa=c{W_mx9dVJG97Q7`20SwzQb-|UFz(};K9QMX;sN|hu)>lW=M=#+T3`22Xi zfdrOe?Y=)9Nu8Vl_8IlVB>2ggBb+_e@gR-|OUcA4QPiJ+x;&Xm`Dt1@-tfUTFbZ?hS6XsDvo8h+Ir#cz_GM>-1UmxEDN`}>Ja(%K4?(v@J zHTr{MY^9eME=uD^q6gIO{k(!Z)ua1-q}064gW$~_=I3wrwX#(6EL_4&@(p{^WT^M7 zC@xpML3;mKvN9+qD# zh}xpwULzt{omI|x%D%Hn;<5L6X?Llp*9n1~B#95) zB@H|1SOih4oX#6lQ7JFFl0;g~%f@aW?$7t6w-N5F!r^)XM5f>U@b%h1@EGyK%PbT2 zqrqo^Ty}HvOCB)9LDmp5ISiWn6R`Wz>eRZmrbv;gi?s6_{T8gR0 zu08=e(~4iTS_AT7k6u65K*A3e<4)4RliNQL7ToX`%0?A1_EP_*$M@J&_@ z!Mqk{`*SonXBPUhIFH;T7&HubPG({)fAXo8nyK6ReP=ftd|)fRJYF-RSJhrYe29Tf z>^HW9I9!cg6|kLYjY6h@S+Jv)*X=D~$E6LL-?qV?jG2YIEau!r@Pm1LDU3-5d03Yu z@}3e5DRpx5hlramS|z1mqkWmmE&9sk#^?>;noSE!e?}}-^t2K)U{F-0 zuEyV^3^|X%dZb1bGvNp}?3*jqNc7*c|Hg&aCM@}Z+kQ!{_~sL-e!FnqU9LVo*#<&K zSuOaa=$4a$1Xr3xINjpPh$W1jDpDdi4CeLTaB}`=^qmKGI9Q^w#DRuP3(&g<>?=@g zElr_7u3a15k z5b?vW?~xHmcS1tS;7=+rUWB0s+uag@c8)(G$nOpjWl-&95jS^Q&6#3JguRSNr8U>i zg?UE^FHj^FJ|sHnOnfA>CJobW!7CwDf~I91EsOpP5NYWzCJE2N4xxLHMiqcbgtx-B zXP;avx1y6SlqlE}QgyfrgKw2}D{w8-qzZi%BXRFVW5x|dj>t}^q;Gl60!}g*gKgHt zTTElF+O*3|X)o!HxfxLHu<2Lvso?SimzE$LR^>=?zGu;@rw)#YNM(h zG-*0BWz5IHb zp*#bH&XM4{WHigP%*A{*()k?c<2K2ApKv%s<#%IQjRNMw)7;D0M&$37nIrB}1J$(ivU!291b)y{1@W9e7+c&J7)>2Q#k2C}!+Nnaiq)I2T#6TKt| z$|*uY)xsV#k~V$ojxXKHJ(?X=n<_8T{NqZ79E8=0GL^Gb(jLpAvJOAsW_C%;hT9Go zn^3bhO^eb^Qi&Fcv#os;DtJ?vZ%5L0r|W7|Io`(0G!)jhxi0F>;W>3k zzl^n%>3+EL&6P26eGdNUM3j^D_A$?k{f`{^1JaLFueTqw{}7E<&Ml~5;RZ9kB#2E9 zv4UW+8GmnjgNe&qYI-|BJ8t2=>k6CNN4nk$W6^NK)j1K1=h5=mylb9eOgiJ5M~l1f zq)?4>Z}n)x8*11j1^WATEW#r^=XX0<^2;>^#8j1g5^@f|GPHDeXz_Vp5Ruwt(-Tqk z?je1hYc}VPUN(A2J%8CBL}Sw>xa4b*r!%L~jP$YQ(}j7QUB_-S^0rGh24kb|(1S(~ zh38+mRfc>tr6*YHG^1VqFqH!hJ5&piEPBVrDu*im)B-=!FoMdVwfvRoihDvaJO*8M zY#vUzvi>p4{{8@Og^EudB$xYV+&9N`OUd0#5>U zTZ{q=mgM%z7|#wlT;!0_L|! z_>>zK8;km(m$MZ;hUOZ&8GjT-B^`dlN1Li(J-_-1C24)KAvT+Ac{>GfcGy-jVX-eO zaz7g6pUS4|Jr$k&Vlm-q>Xe}5VU@|Tmwu^GVPn7w8#dNpRmlWpfxQ6MgT5S%0XCii zNb_KUo(xyCtNP$qAKW&60=8bkH-;BXg2Z0qd0!(60i|5badQ~0-Ua&MC>_=UwmV7F zHrynf6x`fT3D{rgBjT$ZmRTBJBSt}jik;oIOc!GK;Ck#%?6LPOG$Wm_{Whbfalp&+ z&polJP$oVLkVTDVq>8rf5O&hTc@ncvq-1fEgjBWO2)<@vs$P4AsSPkByMr4eL1#BS z%Y3AC#^^=stRKwoBCd~&klGHO}@ZyXltW>SWe9ZKK z6Z5%zMG&UuksOruoy2dmf4eo!I z9vW&W;)vO#JH>}qyV|K0Bo-pu;{*G^V^HTW8nwrn>|kEG@;*be!lo500*iy$1aABL zhM+`ao^FW@YziWKBwcAY{~TalJXYO0&nQsFG_34`%lpb^G5U~NF-@BJ$B!S(pgw&+ zRB4}uUk^SatkMC6ksga->z&ovs|0NK##fyIvfFe8ari#9`EW6Fh0U~Y#caIma}JBq zxdQlTg{|H~e~xKw9zQ_OHIB=}x2oh`qhmd9j$pWJOZT+c_=fF>d6~1j#Z+Uk;izTx zx@h(6&hm&+d=LB?K(EYRmv6B^Un8+fg%2p~5We#u=SYJxr43#p`0@fXz^H!FtVXg+ z{NO_u>FtF+Jpfs6hw{6-Y*t+(;pe3W^-&jG=mecR0+g4uGXRA9HO2E)?Q4_(SUCe$ z-TKaeUW!Ri8nb$lAv<&v)F9vO001?te~ZO=q%q#OGFH{Le&fcCXNX*Irhp8^blFw_ zpzhkvcc%^>+qG{SmG{8hLAlmCaEnp%pix%50 z$m+{dZBWX2+ULe}?81j0x>06zJPPV9_||H!UQeESg-vS14ux1i)TH#RaKgZ3-!aVb zcr{0@;JIP;0bF%?xI_8T9VyM(zq>qE#py7T|E#`sHI&6b zGSHdF{h)Xs0p_t{9uDvk>2-yc>j%IA?82pDeQ{sxv^BotlL5d3T zB?gqvUhp_xx5pza0=9Q})faG*j=vS#F(=M!I&^v%0bn1js^cC$aSH;;C*lLN&l>8o zP>Q>cO19cFmm4N0%oB!vpPtlj9bcv%zS2??cn1(QACT~U0;3XVEIE+>K42U|BXvBu zN>RAMDIxGK)ZZi%^6bdh|0a~Yq;YrcgRd+T3ya^2n64aqbP3-z>79VaOFaTXh3QLl zCcD>#zcjT}EfHVv)W0XDMrU2Pw@? zcClRqJ&p?`=k#(8=K$SVT;v)g?rc-cm2LiZPkW(ASF^h5vm z4;TLLKR-VOsaN1h)h%2a*|2x-E+NUR-cL^+fgl<=QR_JFoSq^cOg^3rm;wHy{!6#c z4=j$E$P}0o!{=JMwLGEXcy?e5dl{dBaqrM;z&=gW2+)n|T zYOCH7JN*|!=!vRER7b#S=m!9b47cM7y+LzWa8oFa)Z450`hZQ--t7pc@SbXm<=iQ- zn^!0jK%pPKdOjAO;V9X2bH+pE*2%~y<)8s_L)$Enn0+g$7eN^-dOeR ztiS)}bkGDDb!yFsR{-zTN|8I+5ZD6n2&G&+FY(CsCSXy<*NjZ^=o!d*NpD-RHvXDn z=E%J=1QJ#2x5e~LCXQSXLRAHEGZH``jH$zV=kxEOSfmDqSD~PyN2M*TR2%4ItgTt~ zcpd|q3mn~c*)lw8bGD-;TfInst}~I}A1@J^pph@ax&dM}g6!rHs`m{Pi4YYKEmB|f zWfr>aZw#6v0cOHLrZQcZwFlrM(v;Q<8i+R!3F|6;pI1RGE;(uFDG`rD82Gbjg}MU0 zhM1-MTH*5cbDct$Z{E9}clAjN#z?UV1()qiv0b(J_%D{#lhSk`_rqgR(dN3BsM7#B zDr6{7saHE$o9XSo#=wpV#~cH3MoJ~;DPYRz3ru>&a}~aVm-r<$yo$~hvNvy@tLKjJ zy$LFy@x81|XC;j)o=NzO3c14`Iy*;>J%R*XoxWsBC99HubUmRK(P{bmh~su0{LiJQ zh(FuC?&(Q(Mj3me?p0nUyWaZi@+KfEoYolGU;lg02x5}`yRXifW{i&*e|DTK*nWh5 z$#+jj86xC=KHmTADM8;3gZ(BGe2uY2`6SohNDU;o+ivVy*sL5zs-ifGrOde5&zW+WRQE-bPs<;`!N zY8*XMz2a)TdL#O<%drqTK*r@U6;=%0(KgwUM-6n()v03CkvZ1(P%nJa9``O}>4$o% z_9oBNcz~mn?{!(C53GxL`&*$T(^Kn33fYhO=XpNngfZwm{CphAG<2UtT8&-|!AEuR zinmk;KSPQ`O?N>@0-dxpDk3 zH5sYMxO(_0?Le_UzCCsKzs&SkMgG$Mr|Cq+a9g1Z#lvX*a&6ZcaH++l} z!SCUf|;G>eGAOsl0H(_{ODl`)c#@BXGSo`a3S?o)#W zp@n8cPcfAVJNk9wb3XI(h&SJ?H@+M`&)nKrq>J zhJhMc*_Bpv}(uvux=BkzD1g~!Ll zjG&SX^Sve2IMa5rjQipt@)k8-JEI3_qA5d6j}NvLk{)B?3wTt6^rO5mkY`DJP+&m^ zwvpLjzEDVPkx_drf?wU%DMHquDOg>WCMd#{^(ntYWUrZ$`au~~ikp3oCeI$9LWU%h z$v#FYT;A@W*SW%BxpJy8x=GJ9ATE0P>-xPs9owIK>YLTGi0D>_Th^`?O|eX|(gbDV zNlA=RoO}3+&>%gr4$3{g4*_8HpG`%*rp9D%#y!>!E?dLh!FX094la+Quz@`A|Kc~^ zMw^8vP%3YNY8&&aq1Ac2-_z%}Q@1gVf>!YH#ZLqvgd1OD^WO`lkqa0oR__@Ag}F&l zM-00u&M`ld1i^Ofip&!q&S(2c2}9&7t1yjGj$!aoU$pF?05hk`Pb6>xn;F<0eYU$s zNCs|?<>v?4jqe|sQcT8PhTK<{%uq=#@6FU`CJbF837D-zMzc*bq8S3&FXtQ0|DDk1 z&#&%#me?<<>`#TtRp&lT8#&mTrvQX-?T=l2kod3SvwYRl81M)bFT)#oPsC!>c8^vu zl`X5J;yt&sN+DHe=Ye6X%j#W|Ap~QOs`$L5RpplvPSyzTsf*CkCH%J7$tK)cz*cNF z#r;sP_K;~`Yh8~~To_n%h*U7R+`Pqf*j!PBH{Bd=8p0<=?fkRLS|QVn3{wOQ*~G64 z9wrznGGg9z`}xMmFpR?r8+*64*`{lWPPH_A7I9*r3I3SRL1SfU&Si_<9)JLKzL?r%+_EQch7E2HQCm$0;~rC1%Y2f@}w=ckCsBZ1j7xg%P|Ok zMo@G_!Z{JN-pi1|WqvKUje_%Nfve-L#~8)*{qdP? zQ@g4|#EY@vF;KLHan(3a9v=#(EFDb-^;)W_2;Ts){%mD?SCoo^0w=|6=y{=G8%LnC zc9CJ0Qm$tA;($`7l4O7G*g}E%_5y=p)qS-Gftb(dcdfV_S6-QoRchQ_Yu4G=#_BcLh3YFuhy~}A41|ZQl^sE44zWXhaOp!n%ln1}DuV2NzecOvx2U4D*e#ls?%JI1EIbGz?5B zP2u~C0Z?`lSu5z@r z!?ByBP)Xh$$G1e9g)a@UO2)elwRP96R&SSpQEX?+yowBhf0hJ5lEH{$crXCk5?+_7 z^oNV{rhk5uvVpt%w{0@jJ`@G>Oxqy6qydk9tv4)vOt&W}!{VVzLsFWzMf91En0Pd?ndPsnKLzep+a ze)j#?>|^~fKd9?ViTBq!!qsC+GO4xV4_3)Z|4rj;mfCW%@w^n14bT?^`9KnSoFhWWb=!fgKXrKIqM&BH(9J73-i;5u|^y$;4 zLdgsKO}_ds-IAYvp6*+a%7w&}UcF9zhuO{O0)+Trkg#F{**}F-`&;5GEt2CMnCOd3 z7tjxYlDTmZ_mVtFR1{okILIF!gS@|HA z8;}7eBq^A5!&Q}!eQ*kmyOK1H{BKCU;`jxm(egm7kpjxE0a!oOPV7KVc_HIyWup) zVaXQz0{AMr%hyj-A_4uLy6@H&!>$c8{QT-7GV3b}M*#(uRy8-Sdj0!d8-Q3mWiaDj z|H9z1AKkOvoc!)E3xjyGu-<7tPAK3piWbjyeOgvPz-H>*K;BT5V;(J0Z(dKWYF^Dw zj2|)IQ*B`I@RY`g^TH869nZMB2AnTQY!|PxQruMu0~+nv7VH4nB#sBH5HrylEJ+~ULP610pMGZ@{g|536xP#8M=kb3+< zU8rAEC|_NiCI1B@agnJZ*@x$J>i!~1P%zc39-I>hD17;UNRtaLx}VQnA`r*~+Sj}Z zT{dgLl!2F^JjJhlK?ATQfNf{AjVw@OuKh-x@5sQ#BxC&cIGr;yC{%C$oKWa8AY&MR zpC143YthR6p-VV^cDJjxKdB{IpqD(n zbG{*wsQ1s!|8w?rx`%gUM$gCl9OR-rzeo1w&*?9L5jvj=+N|pb8|4@OCufx4w&4Rf zqc4+*Iv9WGn(52%NHLr?;J7&0S*8QLZ-`7RhXfF?Q^7K|0pIig??1*97Mrrw`V(S#o655Uw=-M`-qc$;dUfPe`9 zyPT3BmgtqGN=J9Q)dDjPnzs`un<|z|M^fYyg>8Ty-V79J;-C!A%{PEBT&VCJ;X|v- zqdu}8M6TI+tc}x7$^>*>{l1B9I!b&)M-3tA=pSz z)ljtwbzPoTT)A=u7n-4*72#ZNyq0M<-@O6!^cFzx9_`ppNT2_KXOxDfL?@q`eGy6) z$kP(x_rnR#!cA^Xj)f@jL8aJCHv^+oyaoZ2@D(KWid@|xDKfDtnJPKRdMR+s0mufM z6|ND=&x_I4fsY~7ZQpq0<=x*qApfC=NDCH^!_qxK1&0C#tOYQA(?|Q8hRVWyiH|U7 z+t{;=oYe4BuyVHz10Q8BKGgR#gVdKf}=z6V|gQoWJr%hlpRA~rDT z&A}96DGI5Qg-+`~2fwcX^8gziZe<*|y=0~RqTvo$JylH;PitIC!e|x0cUx09OP<;h z$)1&sp+b%_>*cbAjW4Q@p#>>{H(20}m8s;r(6OEVljePkZ!Z!4|FBP(Zkk@#FB$%i zjZTX4_ufu?bN%;Dr^$D^C0r+YKIj)%Kn(f+I)J!@|KF4_w&O$mbLtg%5aayN9-Zxb zGt6l&2<+)5 z&`?zVgtFaJ4FJQ z%YGqDpqA+LHpIzgPVpTp?3-E(a8H8lvprCTdit3J2%54pWsrWL-!KAb8wxxiDnOc{ zfAZuB@mUoEsq3d+0lS&=q|{<;IN4eg@JIWahx(_t=vhbl{_^Po0MUH3opX9nL7Y@d z&x;tF8jviIdJzXIr@tljLEh-TePS!Xam{*xeAHm0ML-ez4Q8>-dT+CzmNX{_AZ@u2 z$X6j;$A{7I3u?f{7@j5*D+$n_0bsFhKnYTG+#1cg@%^sl-eSY)mpw_Dt$#lD0TxrR z5hZ}sqYvsE&Tac5!#0-VLcp=&t}%bXKdQX^W2z~18kvUKOuD~XYvDRI-h6G(f(Nm>XDz!*mX|7ioZowfUn=o6dD?J*H1WJv>A9c-+-}fgAliV}gjb&bU`b?2RziuC znp%|eSNo$q>(EoXTj25mQV6T@fXZ0y&m{-yw?r`1V%;Qbvcy+os@V$RJ(x@G{`7rVFtP;{e4K| zEmF*-rRpV(=&v(u4r|g8IP)n}PTW4ocfIpK*VCkVrCnnuyqgpN&4JamHClS1Q$r$sQl2RC8@T0s9b?1fVld#5a zGd$H-Ih!!Z=aH{`89*4P0ais8s|i6aP#%Lp`M3BZy>~&4fVmH$dT{Sa(&Oq``$Hfg zyB#wJtj(uinNAL@4QXstRLJaI-WWEO1Gsd3wspE{Ri&xinsqt>8Xy7i)BHeQD4Vf7 z!;Ui+LBRhehd0gqDS&bF2bI)Rb2Mv6qOOpS)6|V7yTfJeUA_vF(4)gKN1ORUW}gZN zneOR!2ItjU4V#M8+ayo(1!c2!n7YzsC474`sPuk(QTQZtw@E4G-5Zua1m)hNTd5k} zFGA>yM28A^6wm`T$woW`LM9N=tX>i@ZTl3H`sX3+rri6xYwGwM3u620k?u452{3oz z%QGDWtBZzi1tRD*`>)^JKPOtOvw$>hKsyj{x{|_Ko`1bLKeTxRIJUE$6`g+iytMiG)gJn@p61&VlR()%fGYl%zKVU_=SRfji8dpJI8ExRR}jvKRNce=`H4s!$VhZK&=yFCsEn4a1JwVx@*6wL>;gF(h-j?e$lS zO>7Q!;d;9gku-srufj>##G9-4lHPcEx3q)w-aJ%HC>CPe}rM0+Lz2~ z(2x+!V*b-Tgw@q0?=W5BgMy)SrOxG<7IHqFBNc+OW%6UKui8Ljv?~-{#h6c+4!j z?x#b$RYVY*g=SB6lON%b7>KpBEfG24^51whCfB-CL#iyaaNjit3BX3jYim-ZV^zqZ z``;E3>XH#*gyD2j2X6a_mf9D+;w(4sks9qT`Haz2i()lBP4i1>32$-h_yUN`0Y6eh~mfGs6UO#d-IOX3ZnHu6RW99m+Om)kijclTw}j?Aqcyrc-9r79tz(;_=dK z^dRrZ_Mv3IIX5NG2`_O~M^g{p^q$X^g21W;yx?PKLWB$CFIoFPOe|q4=KN(8h&=}NH7j^Z%txSy zTT8Uwkqn^sJynyygc<=5PqSI!Q}rG_v-#-c+Z=Grqyj@9 zvifKQWr;Ltiw=h3Cg^!m9 zpSc*DRD6uUtDI}7>I4Qa^8`qY zYeq}sIxQ#P8hB*h+$5K^+f*<)YmUzZ3>7jSEp?KBpU^B{gOAk$)3rn>wM=URGC{Pp zR^o$>1M#gynMq6iukUVvxTzA@@b1Rydo2Jr$U%+^!=>R}FIAM*H47tQ)ud9BtVPfq?sN!F_72+lnBOZ{c z+}8YNMZwD}+MNZDmRy9};ig2mWB^sCYRmlZ>G+-jcFscIB2GNT>jsBo-iFK#mxN&mbc= zfp;k&o){hi|4*tej?17i#a^lTNDQ=w&mxV`y3P~D23V;B8$40ue6&FO2L;l0#BN&p z&7#WVxDqJ-%7D7o+3~5843}&gF45pC&C#y;W~O@a$_%sR)dN1w_77F08f7aH&EY2_ zG`$Zx`o*KUOZ4eA)sh?#c~GI&?ZvdbaP)YKVen?4&wt0K!baqjQ$Les%WbwR&EVEb zFI1Tbt7N2vw>H~GuDKq^_-mX5k6bp`yhl`VT)Je#wh_1Qu|jO7)vj-vqh>!D?=AcN zoJ=nQN_8l*;CS{04e4D6Rj(Kzg()vyzWHDTcDTZ0(w{vf15E&)geKtMG0UwoE+K-jFZ1tMP2yhpgxEqud&N{;)OS4o z(c79)HI@`P+>xRey`6>|!g-YihtPv*m7>c(>hK7fm%WN4>MP4)saIHQ2Y;@+v)644 zE*5U|l|dUzOix<+FaHrO#hPz2^YeKI&An7Ew|cg}Gjb9kW53(Zvr0LC2wY&wz$AAM zIPvoaX1Bk|t1?Sj#Bk=(0Dd%heNup321_cEkz6tDs*g+}pWDN3y^;i=ZMA%Qa;(2J z7!5plc0TVKnQ&=p$*CkqZ&%5cS?tDgM!ZC&5m)MU&Ujklw;%6-vAFb=SA$}f$T2G9 z^P?-bqZEX-X!CnP7sF0wrQ1e|7+&LIBvVUm2Y=|CVmhTk3|k1lr8e!sSKOJy^5!c{ z#9ZXTru|XW>&Obi@5T*WldY-s zHD8Jsurv&``CKp75k0Hpj*wMnt9nhypbcVr?}q;+3%l}6 zrvuxOt1;P8uLTqIpB52Z5{5OTA=AdSP>V-brrL35y*{gQ2d-ihzb zPC_JfrvMVP8u^vwJS}+Z3 z0<{6-Ndq9TDJY7F6Vj!l6+rP%1%3$a%|O-8IOWv^#ifu)HwsQJ1;%V`pzQ3jBpw5k zT5CF_A8=3>E^uJ{I^0M;g&Bh6fE%FMr1k6r=_htr&Q(vV%AqZid=AtMm_}J5aKdK|KPfE*v+0U|+_;$Dd#Pg^~r|ZE$%ie-uO+s&#jL)nN(RBsZp8 zX3sz7H2%5Lf@)<4$#UMD0l+1%3G~|ht98_#J)IC6QMq=Oyf!U%j$%9Yy zsp^F1)gDMnhTS6r3nwImN-AcV$8jah2bZQ9&<#`Js@m%fYNs$=@PhGIFqT}N$Zjun zKw;Ufj%%S`y+g{(e3D9(CLSyt!(sm7m0IN)4RVRF8S+D)A0xjP^bAo0#2Et6JTR-e zN?*?c%wF*9 z*|V7&1Hi;S4RCJ=n44eJ1gL0%a~i2`MJ0p+OS3Z|hNpl_d&hd}(#3Or9#U(l3;M*) zl_f+NC^>;W^?kMuO#3Z1iG_>tF+hVJ$M{y%f2h5(&Ua&Do+zl&f=wUFmgsH~6I-x+ z0*duQftElA=(>C*@TleL`&)E|{Qb(89G3>4z0w~hxgvh`m!?pMmIe08&vo&8p5Ywk zPeF9goY$MSK@zvlAoN%q7%dEZWzayYCi^8@V2Hnc2Q@f!sCf2Kz3~kHAC%=kPTQd772uLTSBfyiqsbrl8$S|1mxoZ1!Sa8|Ll7W}{Px-k z-UpcDw_bAkk;|DZ10nr{>@Ni`Pt+9Y8+!j37?FoQHwL1n6uLqLA-{=OBqQl14Kdva zICj7$qvX}%{sJTgKPHj{Go-D2k>#^Z#T7&~Oh#Ga)!qmSMttW4TvwC zfuNs-rcz)c;CuxJv55HnOPu}>*D+|`oemZw4o3F<0wWPp)j@L9NPYHbZKQtw+}as* z#Z8A;g8g6Wlma-BB7ong5kTmgl@rjkEE!15htwoaS2JJ}fby#q!KAaYxq5B(*F;06 zKq|qxb!!@_EN(narrW^M6Rw znn=PHw2ZC~<|dE;e3kZn1az@AB?!R8u3r_uly&`dW+otI!|%on0Q5*p53kD4e}MUh z6Yi!6^else=O(C56Qbw02`TG-$7hkhV2G*$nmB+b>OPmt)+Zz^vK+4lMAfG!$zVx> zsHKo7d@

UnfX!r)%fhgem4TgVI`rQ#LkhseyXEBVehteeq~Ev*l$zjK4TIY1(JTfm*rd$o zs)}cd;gfyPa_j&SxXCL80zbgZhBRf{usaAit$kFF?lb@sYPkIcgV?EV@(?tih@)c@ zn=MZSFa3H5MIFl0+>Kt)&A+)OdbhX=3?NJ-`4#T@u%iIS^vjECzXO}#(Pi21zZ~MA zci?w)M|yvM4`Z0xUwedB;p-qD8maE@PnEz|8y}o1=zl537$1Fj;?5Q0Ysl05-Y4P` zXn$!;K+FE0yGCa8FDw5~)j!ecv=iXBiUc;Z{(q}b7(mAQ>x9AN-&e>WD334`y-Mj1 z)cF@U#J>v+it$6Ag%J+b2z+*jYHYl3C0+}t9zcj}MzOAqIUPa;EZ$c4%m8ew`e+>V zG9nq?+^YDXjp@};(C()VQ1FL21n9n(jA3^jUV>*TGwsi(V-a^WeEr%82w(7chieLn zUyi#odVm@81ctK^zhG6ibYxH+H_RvFfpCdZ%2H$d><&vfj?v`ZbFOYsC4t?k>cB`& z2-rOu=+Oz0Z#adh+^r>mB0<_q&peT7tYEsd<}65f;4V&47rwL!7XSssad z8pXz`U@MBa?6^IiX}e38Dmlg|$IC1)`!$*~QYO}+akB%)fX&@%v}GCA1jIf?&5c;pp4rWVyJ(CtAc z?gQTjkMxeXNcl5@;y-2|Rs0&5_=(~0ESs%7SgMs*NWq9giZrbkT|`)Y6%HeXog+K< zQ)C>SXEE@L%wVsWgzTp@JW%I%F4gqAJa)wc%i{=fNSvWn_54)jl3X4R*WWbks7nAk z)PK5kC4t#}lTVYysQun8x`?2*SR_Z2A`vQiKN6_%fFX zrmpu&ZDpa4o&tkICL)JUw59xq7NuCJ^j}aJxKMx3=d9K#z)_bcPR3)>4g&>v6AAR_ z#%cus{Y{{~kBY0pX{Y+DCX5lk&^bcYpfN_BG0wL#W3|9$cp!w zCh?sOzux7}VYH$dELS;Xvq0h;@aUfUeOsf)^jzEHhNkw`6}4eAd+R+o#PMw{h?7*Q z#k+Z?BW)gX=~p^}MHJFysTu+jkO^qEZJJAN+&C}WCiQX)O+wzjfmk=f${>>wxQKbL@wi^_WXs`xg+i0sF3!gKV2<6D36kD8O4A#oxXnLI|K$p>z z<};>UsNFXhSWmGLTlrz#5s0cud-h5+(Q3bgP`3oaV| zuI~2`uZNyTZbh@kgnYh|&R3Mf7{^72U+8M-vRwEKVKel=F?y742esV`1Kja{0_&|~OosN-C8GQsS_dxJ`ZVngyTru|eC zIE#-TKx5HE_0Eg=DtX%G7vw?KSIAal-Up9qK=w9*ZOjJ@Z>uuyfk;1_G{de~56uX$ z|E5YXIQ!lXfsI8Z^@Ru@^XfFcLxWiytF}xHFx{3K5gMbiEcn8C#AOtiz%uQNU*w8@ zTUg|emACY?S1A(Eo|4ne0#wHXs<)gtw{KH}_WgCIK`nl@>G8K4Bi(%)huE-Y zA6Q`HMw3osxKw0Y=9?GmgY$(izP}ng9)Ol8^}ChI$85b|Qn#56+e}Ytr8qc=)n0@N zKv{IItq#)|1;huv)^Kck#mOILw*O_i^ty*4VD0_g*1zqtSdQBupFaY4oZYE^Ou3?g z@wcm>-q&&rrkiDuhTNi)s#Oo_k+Rj`24Yiu*Q0sNbuqNjZazjiK{!rmU_ zm3rrP-Thy!29lAC%LVRV-eArkDIzHwr9unk3a6R4?0vUH&4>0XHe=d?!`Bwb@K0a` zheM5uGhX8cBaT^9!+lvB%Z-7&wQ_9^yW%-wF|ptK8+K19pxJxMj0vzko!7gPsVNSJ zw?nwwP7d_FVrJSFo0>w6^pE!BWHuYSQ{Oj+(LQ>v7>-R6uw{H%J5|yIpFK0dkBCR{ zyI(ZpjT`$0KfkJ`JoXuRzB}K)?6HZ?Z#98-+G>;)!3<}mr+3~_+VtjvXS27BV(hpJ zZcH^(k02hB?(!oHL7$uOe*N^p_MN~yT5ZY%&~qsHv=~Y;zT5LXaat0O1Es)Bou&Cl za=QLdvpI`hZzK+pyRz`D-yKn>)d(^{qi-$|l2syZ2tNky$2%Qa(y=D{6QHBo06h0a zJ7Kje*;_iEcPOQV`r8zd)DfF7<;;9HX5`~9ux>nJeI)w(c8dN$SUO63^Kj_L75LuP z_C8DT#)ulEA@cf*lgu}-R2P8pTFPb(`FuGDBwY$rbm^c7dd2wbfomb&{}WQdp(k1^ zuoI6WSZOD+B2U#5+4xwI_g#x)1n*&B_z6D|pBb z& zve}w@0+=5ztl=A%!hS)lOZ_>IqJB{A zPlDwa@=5iFp8!5+Fz{r5mITQY={JW-04I~-{9y3W?`u;?$uDjEg??y(YmUu-1ho55 z{vle5SQ1-cCkQ&grvf8AXx5$S`Y43D4{$F75l;xoFM@3%Vr!wVg}2)0ZkR8i`M{!l zFN&Ui&YV%GX$W8XgMf7HvFZP~+R*;?se1MSXDFSu-5I0shY+9uOvi7-E$Y970N?=5 zIS`7@8G`n2|J}hEM1B!?V}HA0FM!VGKRwUXD}RvA1@qh=nuKF#v-y94v+TcE7YZO{ z{YKa*3gGU zz^sZH4e9Sm{eQ@M?{KX5KYskq%1D$-QD`X{mD#Y;u-j#iGP3uUjHr_`5(*_F8f23l zl_X>pxs8Wg^_WYL@IKZxw736%8|=S( zyw1&n8>)!Gta%%Qm1lov9zcb9X`d$v|5v;Je|72qbsfO3{{cA!Y4M>i8zYMAps>ksb5nD@Q31)HNsv1pxb8>c zY$9(_*3GWN`ckR($WM%llUk8l*4Pq&tOi9A2AJOG0^T^s+KObKa!1K|mtu#k9F0E^ z8*5oS_v3c&16e3oi~HR7(y^Q2OF9Oh2N8~fsyv)tH+iFr*TbO+fdf&}?pXy!uUtm7 zq4fxop80C@tKG4#RYqFT{m*nulELe1q6m8<{DX1LgNAPR(Z=5^D{~~AL?oVpzjv4% zgKVOvY5|FudlOFtWqG;?bdrDc)57|4NDe0#U#g2dTFj(6n~k&-kU#A zw*Uie8vVY4aYZ;g!!5|isv#-|MV{#Z*V@No_erAe>@~iIIGIK`kBe^hGm{`$FFEBnxQUJO@}5Xi?^t}ltt0F4IV;}CI%?&Z-R(F^*JWpHNY7Nl zI6ps>PUxH7cfa!5Z0;d;rmgrO04qOA+Mw-x2OS;rRFWJHb7O8uc#x|Ret)C0|w3jBth{|>7J_%NJowo%3 zkF1+;)Vhx-0qmZlY~-UnwcXS@mTg%Od7+zSuYNUtY1aD%#rFw#$zF-WLP9loK!RsB zHW@~K0^O_ogU+w?+rZ|b{d(w`O)Nx^`Kwmy+XEpx3S*AHFbJpJ~J3mhG$?2LpC5TH-BC<~%n-&8?kC70<|m4!G!M z??&>0E=i=Nt{=%w*fkD`wph!!%+0P z?#_$R>mkkKC7*kJ0B??MtVeIum72xDT9_pcDM3d(%oCf)bz5%Y9f#>e7#P@SHRG0t zP4}x_=NP1S)|{a#p7Jy_r|2%&TX+jm7{xsd>2Cou`G`7~1aA1RYP&f#O1b*W;YDJ> z$+2wtG`f{W8PZ7Irmk}fMdtN`sA2nDNBPwr7>djf-1GT)(jZa7u)i~fskAlY(sglb z>UjuBZAS+MYcCSjvDFOo)u%_k0yK#7E^;2iifSvBUWd>r$&v%P_jwji^MX z)%E(gWR7nUPm#w`v2~lIqqL=EFk*?D68HJ!c&F>XGUFAxsJ7COo<{S?RVn3|y_SJ# zGde56jLc&??=~H-r5;uq`#Qjs6st7ItV!jjqqLh}jL~QGLeOvKPI(VUMWlVH_JhC4 z^ZX|`&M`Hr6T16fZeGok!FVC6pvoTR*=E<2!x_(DfB={Qd+9OwS-(SkjSch=Or={%zH44kt#Zy2^|24; z>HgC0zw9n^$U}Z0;kaeZn(vuxy?9AVdachIx57g~ z`Wwwd){hJ%_xKlDIi+wuN%`LU)YK}A%S(=+ z^`r4j-0}qDtsZ*3Z9{(^DXl0hH%ez^u(Z;p)1)G#8ZYFANv<=cSATz{=bcK9y0&_` z!6=IRAZ7R%$1I;cv_92HA?8fCqFG9BYbgtiO}#Iu@kw`Mg|LCI_i;tVn6K%YY)mwP>Y?`vRHl55^N&bX#E&EH;Fy=_{H<; zdA_6xf5s19JVz2t*GLfY9yczvTim;!Xvv1@bm@p0qxgQ${Dc2|1YpXBecw(^O}~O( zhhO!gnD38LoBDC8Tu!l0NE<{z9#+fnp4Hl?^#qKwJ*tCu;BO|HdR2abG&f?e9(&DfDtS+%R?SavIT??s@vlo2oCY7DJE~#Y zb+r;7%E;>{fBbSIIxfAAnk_Z@hK^!LFPh=E+b7AEvG7gAtJ{fi2DM5`?rNyH z1#eMhtlBm^@ky1Ky(qg>qXjro)R+BXX8ejj^8G=cO>FLC=GtGhyrIr7XFhmd>M|3U z1=IE8C1VkS;)oFCAyS$1G7l;vVYlazYiIm-XCL#PH^7g7y!0scUcM%vllNC&fj<*8 zV1w=z{lJ6q=kV3C4;3p zf$kREBMlrMXbR^$V9tRH;nyvz_WXu+Ul;E(Z?Y8dUL8MDJVK=_LRJ*&*Dbum@jXZh zSS}{c1%A(c#4WjE*)Uhp63!)v_ct1PtS^KCOk4ljZjnK zve?C}KVazs_TG9+Ow%eJ>959b1{Js|hAUMVukWT+J>@X(HOZj1 zT*ZKyi^QJv1d=NJkoBbW8Ho*rK`7NMu+%Xk1m7VL44XBgRE%<*9C+VG(Gi84qtMG=%?xC4~VXM zja=I|P4nW(F$>|V<#Vddj-+!QXsl@ebJIJ6n&`Z=IC<)xR{zMfJ5nF>f~s$A+rHfd zrJ~nJ&u%-E2`+3^_BqFWWsA4eVV20X);*adBh~SZMK9?Ch20Fp^qP@)cu=l}NYPo# zMgiIZ%#7_LxM-^UpezpQbHcg6*b~iE0L1C>5t2{E_TDCW-%klg4@M1@kVzE|x zEGr}VETPY7%OR(IUZ*4sS-!Du5=_vCeT8Ck&!) zpN>8?AHr}RqP|Nfg-RZs4$J*pJnK!%Ag2`LTzY$WBt*H?SKiO9o@ajOmv*k#L zmRD_k83buP-P1;wbM=?&8GfV4g)aSBXp>o|=sEZtAaa(8=%qLQU%6M2YYSMOo7;6C zV3FxK>O?0~NpkkdO5?&-F+t)l8YfXOEDu}!ulK&u!Y6kcubYvxO8{F(TOIt3#ZK350H_f zCIy8sX4O_#j~{8Sf3(iF%V~}@aB(qyzOXV^OO{4atR43Nwv+t7N*CddtLPhQ=3B2m zO_5I1c@-Q}vY|dEge&~Z`s9v*MJX5@jg3~w^PN%HxC6QEyUscEFzXj|hDxNoac)^% z+Vt5}#yrF`GrbLJZfmU9&)|FJ&km(rG{j={1`K)gtq!!pW$O7`~?WpAJbE>^GOUUhn?!isK*;Gp9R*QA#h zCmnu%Sd*S4AH9X{8-6bh$#}tT%$XmJVh!LrasPQ&5fi!*kdrcqw&+SS<2V;Qx@+2o zvLo}$T>%P*p~ply2-ZekpmwWQ8&4mcyJ^bhJzl<&Ureb^_y?wpyk|pWk`a8_GTh)etiD4h_ z2=cg<>G9mV{o29^lkC&VwpUvj8~JB(y2YT^XynzKJ(rv5O7$48Za-LR zYUbVa=&);aUG9YQ!pw-efehclMpeaH7e~2dEYY@!j^~ZJTmC8t2VU;X4mM z-TUrIL5;Kry}z|blLa}>CO{m;UdU*;^$EQ1=ZS?DxZ!=^U{OU%qxnT+-i0u+yl!4A z3bwuPIW{l*px*O4hGc7QPM>;tOoj2BQQCVR)N|8J zFDx}YKex-#A<=abwMx-Dj?&07PkI-qkqvDNDh0g{%L2Xa)O22bj9@s!H2f+^`3@HaI|3Jfm# z-`G3d`?j>b@7+P=HpBKy;vn(%xj|PNhS?BDan7l|?Q$M!t^(0i^U=RBOb5E>VV;ET z_|>-1?yNa#_}9MR_<5Rp6({2ORFuF(*YnRS$Lc>A9#)yRO;RtwERbMLmfhl z25NDwMU2DAcPyvHh{){_B!V})!KtVGX{?6|0%|vTN)Nf;v}tm*kookT_t0Zt1>#bU zl(N;pMjAS{t9#k}w+ra)4|woW0t1qf=*sC&*^;KsibQ1q#>muJdc=~JeCOK%Q-p0- zTwQeYyBpU(&UIf&L^*$wz_lDee!mwd>uM|UcZdYxq5?2P&9s8BZj|a%NFmzECOa3` z@zzdSPxGiPB?WLrbeOHz7V;9eJGY=uFDg}w!K!UNyN}|ZF<1SkY{UEw)weTc+~D1c zk$RJSp2jz6r(fEaaq)l1<%9Q~caztB@Wx=VA7I+K(L}+(t#%~!_+!Ylfmgpp@}WMQ z@`!}~kN^iC9_%-=ddye*%n=ZV5 zxCA^i+jApDVdEyvBMQ|oh@O&zUo9?H+K2R)lcs?ig!d5G5tE*qwD+%{%J}ZZspl#p z-Wz~~xaW}OOU2)~Y)a3UJe)?r&3d;PcLuM5_KE zuSenuT0!_vq;B&Ku!^-zEF$GLdX?~;A}RuhOtO{}vwYkd3>&CsC#Qa+aevLqr1(l# zedbWkTD8J0vE-LiPX=NJ@o`z5EV0{`$WEc~Ig!@Mc$)qs+}SuKwR5KXUH;75mrbi~ zfxPW#|BdOVq|$M|Ao97Hd%XU$AI)}ZZ_Rss0hSYyZKw$y3~vu2nDwxJ6HN?@_Lb6pm>b z=2buTc_jSloDKHj}! z&xnF)C@jn7MoS%FHi0F5PW`7Zp=2^=>?^(&+iu23M+{{?lzD+x$2MK)x^oZYe#pDPNW8PI6p?SuEw7U$n%>+L|={c zQ01-o9ws08?LH=n5GZ^AiCkOpY-rR`!HoUtP!5lQ=WT%zu^VNG5eTW-a%#kcpFW}LOO`SC>?1>1^Dh*B>;|bt&M$=#*Q&rz zYO>&+%+v#6v@$Na?~3fcztMl(GOQpxQF_K)lzo+WwKcfrTRe4zjmaYCDHJ;f(G07f zJmK5qP4v?D3#&JnM0SwtMGoKJ&|kEgq?I|NHvB{J+`MzzcY*^Tv-=;d1igW)mfq`= zQY=d`NJ)mQ&OaEvDaGsh+QP1uzW!7Fa`T7cdn(iJXw8Nh)hZ>oJh074Pd0tS?<76s zXzywNM#_WZ7lz>Ey5~jUUYc@lDfRd6q|C8g5jb)g(H{Dq3!X zv3>_yhX6(;*WwY(cOmYpm*NLV-hyZG$g2*Q828nsp1@?)L-?%MZEk_8Mg28j$I7L0 zj8N#!(Xjz4+=iCT5e%1eD+5K;a4ZhZPE;l%hb?}AhHZWVIFaRsJzWpqdQT;g8&wl| z#J8evtG&%U#~{XZ>(Fc5y9(+^!+1jC3>~^LTq%2qOf|7>A z=KyhX`l{(!3B(U{q!9cajs3|u5{&JC>DWaN2KCa=Nj8cC)=?JGPfpW7lC4Wt#T~*Vg#2E1aS#BFdgDQKvpl8=vLYu{5CbiV`@J;9pfd2#ypY z^k!^{43**!n-i5)B_#F@jUuk!l$%p&DW1jp>iob{ase)+<;usGi@b&n$#Yyv_D{8J zJi0GoiusGOY9FZyH6GKaW)xV2RwcFs};_z@~kMl-p5!t&Lw)azkQy+R}`) z7ltbItT`w&zLbmX4WD(?2VA|6*4GHV?7lfBF1QnwvUhaNu3$TwVDkeNn2FTnFRGI3 z5Zp1hQpInd_AIUt&RpqN62A2OX{;!VtecJ*tx|BM6IOFI7pcC@lwk!7%kD?(Pqa{J zhj5i4$MZn&r{sDm-CBq4AkLFz`>jKO_e7O#U3`jBz8BYf()EfYrEEfn2lh*Y-ry*s zdFY_#sdI^olIr9*y@qj)+fSdpJUZf?Q$!NP4p_g-_7d#I#0pLN9z0!280>0ZSgY(k zDTiB$MK}94YOACN`MQpE{yl?;C!@7{#g1LnN+)phE^M^pF}PxQXI7e$mw-2x#0>WO zd%@n38T4Sy16e^J>-(y;Ewut8Eedgk?uoS#tqnbf4T4U5Y@hmuz7XYe3F$jE%%R%9 z^5Baj%N*uJiIneK4%n52uPaP!*%%fB3|0@cyfs(823~gfdiy69|5DOleRL*BRxVI; z_2yTvj6D8Q3atN93e-Gn%ZtekhZm?m2S>Tz5PNpp*N4aU%G)O2p)Vc6RmqkSk2NoP zG>9D(w_ffiKbHORAnyiGItI|v0`^*L-2)e%tw<#cSf|?4laKH?1)s+3Pu@V7VUD2| z^flDz70kYW^RlVp@{do}?Ja#6hn4YhT5o!MZb$QiN*^_%ifLJh#y+tdL)53dJ9Wxy zJ=N=fH%Bn8;0pyuc#FH_`85=~NTmCXbKzIl;S%>m#}v+ojGOi7ZD9oIy%ELp+5#;n z`E`(f|B(GlsV`H#QJrQKzgC2ZY{xN^``9;j&A92K^$O`1Ym$PB9rGR>jvq)37ey{p z6=$x+5kE@Abk3NjlT%Kmq+aQkrSBip8jac{(uoleo0tkViCX0+k<0^CJqSOvoweKI zYjns?{6itGL2{HiNL~4~`Ccu}G8{EGAj-K(x#+V+?wT$#Tz@bZ_b0o7DCV zoPRDXD#qyT#T8I}moNDCMAW0j?~+g}W3z!ukNp8UU>1Tfvr)s1EP4ZH${W{8)o%N& z&sXR-jPr%osIZry;rm5K)&M5)!@EZ<{5{q%e=`^8#cI$^&n)5g%*%Sp^t$QhPE;rd z#45GDAD|=Wcd+Y!0HxR6VHjr+>TR|Vgy|Z~Z?2G*nDO%b(B8@U__3(*S_nyM4&Hoa z6dk#XLKCzql`p~d7l+5udKRy_QLM}1Fl9YxyoLKQy8I^}n$ZY&+&`(|czwB_z8*&l ze$ZzCmn3n0S09oeUwJ6(23lKmz+V=(DMRu&UO6hK85r3KkvZoW*{5j+uXz^s+XO{kLYCN}JOh24q%p<~*Iu{g7B-+WoewSGEetS&B(FfB|%n$muWW}A5`*WW9%GMU2yK{LuXM7>e zz0L{^59!&VmO3Hf(ZMtEtTFaOs7!dEwE`G7k6fU&ytuXrAkrHLZ?EQvP;?8E$%051 z%Nb^yN2XSTp0TD@7URcMTM3e;e?LaT(iHgBQPoQjblceU=Fd98#&VY^O|Pbcp?Gk$F{rRx|0gwV9!+C&vqH)9=%M+|WtvbDWpezyZ(fv#~Q4d%%+% ztZa&rjt-(^lKi=WFZtRcv_bgFb#Gch^x=4> ziv^L)Ex%hvMCj7MIc=HyU9u_7X!BD15iQ%EDeYkT<$9sGccS9cx^$%m!$rZDYEL%Q zc(57@c*xCbV0x>e^-c2CY>^0@In+_=Rm5cY2-FA+eulH-6o1@$KC%tII{qe=>T6R9 zPJqJCLT%u9NhR#zve~VO&flNKf8E#jPzD2L;&&a$dwi6Ik6BsZ`)c2}`?qLDZ;el{ zj*du3l4BHNrL*9TATVy;Y(!(odYOzx)$4-Pl+z1(1x=Ieb0=-(Et)R?>P^CIY}%tJ zlP7WR;$yr@`%~51O19Ktw|)g2Khg1d&jYR;58#kJh))^Ab;_YFMSp*PSCG0?pb+4&Ecy23;_N40O=;=Ao_{`S1}wlsAs0*Ys@ zg%DzC8eiE*jCSf#?__4%jphpn0?g1BM|h&Qn^PnKQ6+QUo4L>+>t0xxtUnh5G<9n0 z^)bRmI0{)dxwwi~&+hel+$3t#GU)2DdFUbhFYWDy^<4+9K9%yC=D%LLTv3wx-EC%X zN$a(N#+}3kc`%*(po8)7{+EIuEN*O|&>^XXFW#1BzMkhu+67r%TSn@}{lI)(*w!em z9qF6Fh!Z8MDg4OJ7!92-FySxfN|V=q%sa)-1> z-867%=%i|z`1DmUHJCchbCw%%OLRba4WGx6Z?Gde_8lZ)DRqwkTuyy%`f~q+=7bz; z&1xQL&1*})uQXNOIQ(fT(XjwZpnG0PLFp14DcCELT|*;N>y0YBOQOWjom=QFUnWQt z4mgV6js!Z{T%lepb5lnyHaA?qZj5~+7~1qIuFn-o#ao)t3JSIC#c<&!FKCUtSscSQ zrK@Pc$>(>9bVwpwPUrp4V}<^?uY3aahwGxmDkJwF{H-94S;ZKn8FDo%Z-bINYG#yY$oqc?X9U?1zUw}c2ifk?b)-Z+(?_d$nn#PGG?gJfYfbQ z8#tzml>v7yGfdP@J}Eh0oD??1ExK!R>F;^br@?n_mDS%~#Jj$8?keC-wHx$TpO(J> z+1V(R7r(2YdjGU4bMEK=1VVu`r|qY!o8lrwj1#o{Nt6QI{%t_h+=gDh`iZ6_UeYn; zb!M+x2k-bF(^fn%kGdv3uKUKAE=^+Qda%|=c%pf>gut27T}2hQIaSdQ*Iw0syfD*d zE4+onr~VkzrBEn%9zij74i)RiOP{2a7TsdE2GGAFqouLuEe0YEmv9_{p+4K`@M0pO zIg*DJ4K7dRpMUVCvU;3O|>lw*^w-_>}rjNz6V(EXAwriA{Z3=Yg7K0Z1#_(+m-=JV0=J87$P>H6B z?T)|g{x%xgy6^g}AvWTo$T z>$s{mF8}K9EE1~{o-e@4WifN%^796zLPFfj&?#C1-z9`k@}1M!neFDy5ud!VB3W}k zzBkYD=8(ti5_DeTQX9l4YcHJa&vG5pCm=TIf1ZrNb@H(gK>}iK8k!`B2p7uaY>GxC ziR9Vq{S<%j5Z6wTlB#p?D_2+2^G%%w6qk^gSerFW&C$D`cM$~Hk@b4YL^=)ep1nAW z>evQMs8vv!D!afofPAaK0vv1$z>OsFw%m2@h+I!LR;U)&TEkd1VjA38+%S8zmhXBF`1_H0Zjb&h}vf~{*WKTskLue zRhEsdJH2K*8jDR0i z_q4NJei~5lit-ML{^;cDe=DWUb62yD%j4|aDBRb*Kl(90NtMWke{x6GsXF@*p5|Ac z|Hy}7_f*HN#D3>oO}f%6p)BcjrJg+z8Z|UB(OP5LN6v{c0<*tDLy0zLT(0MFA5GIO zxV#~>A?9`AS)rYsOA`=?#KbTjdR;hox73tSG*bth=`C0A)nfF|`%w*T zRRDvYbHx#BhC5{qw@=!p*J($l?wkQzmj&%h7KS}?#@)!^u_{R14gPVT_l%RC!*RO7 zFuwD%uXjIlF@mZBD)+yP^8ZU>nNbwz&_@!EL;$vED<0V6b*^4YUpUFfyT9=Z9<+N9 zyT9xFZjfscF(8-xyn)KX;+tf`0VE@svx~+DIBRqZ1FMtc(Q*&%(&x7y5y=If4_O@H zyH1p|$vHfKp;o_lK=5lG0g&wG(QFWnBMTqa5xi$xj;PZ2{mZysDW)#ns*9IUJWEh&Mv=K$<5f%BUFD^zcR7HCGFb{L+4pi<4 z9Mh<%W^Odn7Q2E2*=ATI0lq-3uyu!3TV8FqBkM*UC^4r@h$Y{;o5rRB>KzPiqpdR( z$`wB78AzN1NJSAWo0DJDdi<$1f1tbmi@~HTqUNXTpfvrYGGt7<2HREi0y&5s@7THy( zSJBpmgNY2;PCKRM>M&JyKQbI-GQs0xCK_z4xOb{VI5j?4jM%+_UHH{zrsDCDbJs#xqN~A zNf`)!$59q0^bXM;O^9%O!I7yI9J`#eZd2)%wSzCL(@fs#i4UoG(#rr9OE%cL__$yo zp-ntLLCW)x^WY9F=XoYqPd**HJs+Kk;C~`&Pdb0mvk>Ak02~yb#}J2YD;%sNB?WSl ze^^rqsh#{>xNBW>CJ3bUDrt+FB6rzK`me-#C8m5IXfuZVN$uh#f)_qkMYx~2II$M! zRQB(f=Q(h7&W>E~d;(35DS@<%@#-aWJ~3Tw&XhG1G>o+2j5i4*s+x)m-Oq8U zRL`O%ZHw&%>ACx9r741A78hfR(9;Yeg|sebML4fNr?<+Fvcb=5E6s?(e5dCaY{n*+ zX*&R&L=an>$5j8N?%lpRwoEH1F574YKZvNz4!3qoWF%Bm-nx=;pTsN?j~9kH9@p?G zqtP1-Jg&#?>P~QNal_9F!=Cw0r~X)v{zHt`z8E<0&jpGhL;nhI_wM=8lM`B!_`P2`snU1xHolm0T8^yAzmp(I1( zC!8b`9$wN5!`TGUbqmV7A^DEnO;;<3JKWK05t&};iEeJqwbgF2bn%xe)VN2BM?z#~ z9t_kTqf|>F9{ZMTx*+fN@yX$np2unA`3S?LErOksg;PY_b;u^Kd9$)3PL;Z2&L82q zk%(>I>y|8R`{vc}*D@354`>Ui+Z_D?CHg;kfl82oXjB0RY!G6q)1BL*FQ%2H-8(Yq zn|tk#2hpDY-6BhIcM%6;d~3Hmo9>MPN~wK_=V?>LC8r~?`6E&6qu9b=9 z(3aV-^ytcLL9glRzu@~ZuPFSTIEW%Lsa$X*aqX+u%!`#JRn7`^uKo4pSrZ2ynZC%e z`0`P=eW=|cIdsOn@$e!sr;uqtKk;R}*UKD(dfa*bnUY>A+C~KWqN{ROMm1Kb+gbLT z7`+5$9pjUlx66*+7}q*9?ztzGYtNma?O>Gd-6X#+e&xl`{GqfWGU0_|RBVL?hZ{r$ z@~lqa*z8tv`nDxB%4+?N%EO5sN1ky0o}YkQsfIbZP@OxJr1fL=r%7+1*x(0T-HO$D zQuC6wt%&qg{ZSV-R*H`?0G`kXQnsL%4SyEC`-}qGxE=u)m~;m|CW{x&u<0k#wi#4>k?J{7a%$4)8=cxln1Ezg?&-sw~P zxqUIFPyrR6Sb35JTH^v|@|BoR*{}2kYs4sDZAaS+enIJ{3J9#${XJ|qTVX5NZ}JVR zB`?NA%;5fMRuK={Y>H~LGW}`vo?C;NJBy87`BC&mJEc-+Q}oQAV=uwghW$+jH4%4{ zye{rRdO4byZ%cn!!_q~lf%m6Z%-df!>kKx0%3?kY<3C$(*VB;nY&- zY}xicyxqKYs5YTxqu(RX(}9%r5BX782=@T|j|7E7dHFB%M8Y$Pc~ez{4X20m>Tag( zNj@S(qq(#nGP)?7O(pZ__Lr~Gw|`*@Xgws^WePFe-yZVuocJTT%(d%*L6$ZZRimN& z4+n6ll_`m`(E|k}-7CIzs_d6Kz8hN)1HG4=OYxPdv7Y&eWuIhab+a6kYA?jHHI_X4 z2WTJ7p~%w-C6dnT)veFOrB{&^v0$JRs&`y)Y#HX^@nI*b>i&QgA&P zq3$x79S@VJJ#?bWJR~}%+%taJELjC(9rC}I?!v$kZB2}M7;LJr9;@@7Y>!6pAGxOS zB!ZdT9>Y(F%G*ptpMBdsUM7qjpzziAqu3I6LS#ux){)uhUxaiFS0h^%+0jcIWaqlB z_o`p)(^A!#x_n-)r2wa}GeN1a`{!((Boa~mkm)zdw3;4AUbKn-s$?Gti7No@MF+4e9tFceDnqS-}31@~}Mu?RC zX!`yGzOfpq;4mcJk^pa+i;g(=sPi2xSqTx`m}!7f$v`Z8#~k@*J?`n*G7=# zR5Q6lZt9(`n9;Q9QA|3drty66C+(yrA9W(f5<+-@#w>dR-S+HT)-QQ>Q0E;_>U^x zH@dNGR>w3V#jr!8FoQNVDZQ2|c#517(9W|GAkLZAb%p!r7O(3Y`5vv~8yXmTNA9@s zdQIIupRV6w)kG=7Hm)uiAJV^UCMAgIbN%^6Lmn_3Uv z>P45`1rL{`YTovJ?F-a0xqb=LEv!$7lDgOVXm+V{r*rA_iPfx8UQcIlPBT#PnAhy_ z$8@%@EjQgf^Ku2gx9!&hh()w=l4WnPq5k7sr+t8H&O*skbo2hOIfKJxDgWH_7j4UE ziLNAT&GbSuZh#*jt|T%rRf_B2XJsh4P4di_Q;1RLnvuMN)!I}R4zr_Oc-ypy%oaNF zbmenP)BZe52i;pb-L7_dM4j$3=D`uLWT_o?<>Wh)Ty8)Y62qp=CO?WIluIMONl z7{3a^z_$4$`R>u^w)DH`o5=c(2=YX!Q_|@$ZxOVteQM)lSuY&aR-2jH*i0WHez-XX z)P9r~URx}E%702FZM|W%s0rjrD+^51P2435VQhvyjxmq}@N&(a667wpB9HqHmzd;V zmb9)V@{Q-c`3^St4C9%z+2ChqlJ=}%+E+}`cHM7eGp7EWvQ@JvYy0Ds0jQL}h`qGQ{c}qn6i}5c zmj{MEU>jEF{m)X>P;pm(9b^kNMhkIAuKxtZ5(zCBl~@NF)w~jeJVgsIdp|$_eCNorS`9 zsYbWGQ*0w%Nk<~!s*D;|pu1tJZ=U2Q(%5}X+A=wwr@NSKo)`g0WZgaUq*fb`Yw>XK z{w4dzf1*&kL{y#oYNcS` z2oPYEZE3Y>0}J2fxa8yeB4nI8ne>0(k1X>T`t1gLY{;q&b0_MCaweRyv(>6Jc?cEB zb@3t?Q-48hptcI|UaKho(}uFosN8BXG%|hlF9I;5f4hpHmVhAITgct z^!qtjE)AqG25tinF16|V__uAMe$`4`mBGF6KQa&SAy0O zzl6T$g)&!&XQdodU8i$}lr&gqD4Js+f=ydJg*iSmbi+Enk8@dj^u(qOVTl;Ui51*5 zc!U5Ko9l4=DaR9bh8;TM_H3fjh2Kzk?=4AtOqms6BsT^v;=)#a#_59MNJLyp-ax?J zMoMII3~f~q!z&5Kl%3asI2(wy^U6C|yj%RRJ>)?|DrE6&0$__EL3|r-WpM(CuhcsT z{QGmi=SE%{aEvaeS+18gB9je4xXEn#+~9R-RT{5^ML0QxHTr$0r`+QB^{6`k;45CN zNFYxVHln4_F#z|8^W_+UEK@GpG#1u=$5%FB{Y@7TU4lG>Et!kyk_FANyoFDG!4gYO z{7HIg=zC3HK*ijY@{~`jQPjxGj89cH$T?SVcI9Fb^QCqIbktgeXzzK#`FxxWhM81B z^|iZbTfKFq-cLzyPa`?Ugplpz{w_zoKTg;d!rD&pG{vxz6NCdrt?+Jh_?N$2$(ZYE zrBFHfUn+8@iB-IU!Q<(N^I%xH#H8*kQlcDj6Mk{ICIF+&r` zwYsv`Y2G9L$S9ofQ9i2B5&T34+Q0KgwD~hFEhVmzsHf@WRKeyLqBBtQ99hG(98m$x zq%-`j#kh)Xr&-mjyzg^>A$t&u{#RHolG{Pc=uE^20vX9fib!xRdaBZ7{P(XegHtDe%cToY`P2^U;VP7fD%(OvsFy_eC`rj zRHY?naZZl^#zo001a1p&xp&XJHI5-q!Y(OAdQe>zgc^7ImlkzeEv_d!eIlH+Z$xR% z6q~+2e&U4oA^xW^VpoC-Hl>#S?&WrzJV6`a@$fY=kCX4pf|7bAe!VL}>HZ?Vmlw!q zISR)uA9(#&o|?glGP`51{!(`Qfz46B0FP^}o*5VI_5#nP-+i@%NjsVtno(QFoR6oF zA-FHxwES*?gC+l|SgWkFxKzJQ?$6Xc_mbwUlzg^1e(;Bg$xowu+`@8(=H}A548tS9 zGy(^#U-Vq}m`E?*GwaC4dbMfKk7l#qd1<9Fp;#r9VPO>7a<6GXA~05wsJ^3K+*rF) zL*U3k6 z-mxu1I-fzZ+w9hqzn(E4`}9b7zBprAojc3tAI%zvz@Fei~8Y$p;n239U(mAl{N5Rtn7ww0OT>1wH6>e0q|2Kjcrj%Jj|xRn>#8;cSPUpz?e zj>XwB@e6txhQ1wd9X7MBwdnQ#l&kMQ7_h6=R%vz4-ul{v%zSSgW51dFS!eG9U6~9x zfo(_SEoVY!Xd4(>seLDGPf*I0Y`e_fzY;M`XpNaq7o1cH`3A_o8d8Vdswc7pwx)sr zV0uW>cDmhSafD@{0UH!Q=BqHu`>gG!r>cvrHyk4kp1#O*f`)5%Z$ z3Lo5JC>FRfY3oCh82C9<7cN!E^q2;yeP#Z=ZDPu|5G}bl&%_)4n#KeJS+9 z8_JFd$)alrrua$9$3Oot7Tu(sv%=0gk!OA*Yvzk(Ti#1yBN}#XoWS%krsiKXD8&)3 z%NI+D7I@eZqql_CQ6Y0yO7j()!Yh_wob=Q5Oa4D`{jev572GEn=f1)5!B6}Yko6GQ zb~Pe#6jT&aRt;8}7CH^oG=8U^{}SQ6f-Z#sFpHkB_!Zq;yVfLH3i-SNKEd?zzp4sp z6lzhsYJjo^trGGN$CLPx$f;gO|J|*j1(A%}1B@UH@N|@6GY&M@g#D1;r;YbOt3ze1 z7wTzqumUD~Uqhu!6k0SM=V&-xv_IW$@Fvd&S0QCpd|a@7neLLpP?q5B?%D#iOD552c+o# z#%4RhBVzY9V&!zVKfC5ciJI8+P4@B*tRD(vyPe;-a38VphVy zxhSq9R{H(1zS=FKCZHvd4NGM)E~)fN&!d-_#zeBhSUrg@liu!RzKhbnM}=|C*{Rw* zH1y>17b2D~r|7altMF4o;q@c=Vy*fR@x>^zw0}j5-bJug>G3jJax*#G8Z#IYY&JWp z0Wc>}r=JL0nwK?nk(WJu%;FXxukC%}h2}-_A_1W72#h__{3*9o5}9QJ4Sz@#Zhi2u z^R_@{x0bDZnOsiY7e!vL9VE>KY{diX!tn-x-s-%qXs!P_7Fo7(e{gtIkL1svH+DtI zXEc8PL!>Yu7u{fD;UA)nE ze`xC|U)Mt4wY4&c$NSMLeTY)-zocRJ0){yitZ&$*tmilXHJtpbzk{+md0^9%+VbCu(S)iEZ)4IaA<=VS*YWMK{-oP9;C-tZ9g0I_x?sF12}P?3*pk zt^ZtR2~xHMGe<+XEz_rol$=FWNn8%!R&;YEA05)nw(k7b{q^SS`+M>ZiraM-%nFXd zgu~>&y|rNS)8Sf+B5L&s&q8yTOTesg?T1I~wn97L6MUoj=EyK18qG@a4J~JFWnv}R z+rXHeyZj9UAB3{IwH4C6BqcQawSQ|a7?}S}KcUfNEV%7ea`cI99u8m();=VwozSs3 zUQ336(!GO{dJ!$omzZ~~#Ol5N2?u4}I4v_=f|?CTZj* z__|=uvSS|k9d9D&LG$>K#NLr50A2TEsJ7@OD|lJD_C{ML3HAuoo^L2U0?5fqNSK}` z>>h^Y_cJApGwdKC?lTz*2nPjtLlUhF3qf!0eXI5_Oe@O1<$pY)vut&U{(fd_Ra*RqREt*r!v(m&FQ%X8=mb*!xG4Ps>faxI{SuO)O z3)xZ@7uhrvSn?O;XFvO|z=QId3pX$Y?$z^;QitA>>_t(xaYGtS*~U%*jPC_iHbdJCClWD@)>zr=XjjloAgVdVw|l5!<2+rpuw9?;D2l`6GD zDY(Rngl^s2&S!U?O^tg^tFJLlVUlcM^ zS=b$X7(u(Y^MWM~HVJ(Nhob^9~gw{0_%}2-6@8IOx=RVuvs?N_&vkTSF0slY7N>GpfpiMzUia~tjYx6jk zS0}iCl5Nj)T8}O=?G3KHc|_;aX0W1aOP36hapgCt7h?o0xUj8M5*-;Mq)#iPnYOfwwDs?yyco_U^-e`e&x6&3IGsbyl#X_Ny3;|8aH)dD@$M0A5uWw#o^u z56}|l2<)74kse}InNtMbs_ty9VHA`a?kUaQJ|nY;NnDWlIf=9#50d53oX?X+ zSxJJ`l$_V?;o$n`OV}#_)(-dA$x9cOy#;m6WxG>4T7TjG3{xXFOJN2B%@s@ry>6Y$ z-Xk4M;XwflWfPS)cOGQ1Y*$U%eIfw7LMs53TU)bs2(+q*eo(To5-`txXpwN-h-r-q ze}F=3HvcWFh(}9(?n|#d>uR=C-zn%W87ui#2V>jlLU7a-8^_L3>9OqLuis^oUso>5 zEB&Tu}wR$yFATqpJF@pX!%3^P)*_&`9ldlbQk|mXIK6Y_5S_e4OuQpk&>n; zd`hS(dnKf@ccT~)gzwB~=lOh|Vb0gc?%~4Qk7vW0?O{)Hd!&17t%`QW3Cf1Hj2V9ZV6iAB z5t!2r1+3Srgg&jO_qW$)#&ue&F)e-?$j7>9O&=9-IOp(N5%TBD^AX4t#^{BNpG;p> znDX;_Oa9ND#b}ONMA4`Qmx37Trww}&oeM3x0LvRp^IIBB$CUCX$y;;RF%}4U62Tef zpgr8p5f0!iDzpFgFCiWi@qKerOP1)rxVr{fuqER+O7COVS#io9(8ra`SxoN}Dt?eB zB85h)^}HL6as=Z%&Y}9GF>-g|$=K_i$>)HYgv<#stD11d{dJ3xPuv!)ZTT6`V#%VHNM>}60LVkw&2*JWB5T6F$?NE(T&beA z(3df(ey8q>lfayEwp<6-dJkst{M^+AB6;ecSufLg{B5(ZzR%4Jy--kAzhL6{{wfzQty>kM4l z)Et`8xypC&{&#eucf+q*1q(-5=mar)hEXDUO1(szlDsCC^Z9KC5oP-ikEv|g!ZG=K z!QHl<;Q>Eiz<@-Va0ZvN8edcQJ26&sK_9QL9#H@GaeT5>R_MfY-8}ytf{^K!jEhd< zW_Zw*Eq(6~8@Ui;GqV7l?VYA3Cf5MHa|YWNP*WKTPEh#y6o? z%t#PzJ=!JeG#!I!+ml08furzX;iMkJ$RZB&kVdd)$11NhX#xoTV|TYmW$S*Ox@vHx zh^WCMhx9@vH#yilIXkC|sk=QdI&4SiCi#_^AjMY;w7vGxpsLdq>?!g4R8E?sB`~3p6PTdre|(2(yWdwq04h7$F}h zaA7sua~3M5$R5Bn{EnYEAmr`(t*%d57_c|Npn)E(7Q70EHx_AHM=$87@0cdJ1$ejc z=0}{KyT7PV4Q2<9EC{~@O8|4DHSdb-eDS4K`C=RI_z){ckCZ`O1>yp=v) z7_Ub-17s-Tz1?k8bIYDsn?uj6Z@C!vd@Mitfilkup zQ$v~vWnXj9YGmKLgpFRtpTgM9$}&_9ap)V@J(NBPF)93!4_brg z)B7|kv8{B>{Sl3i(%Y=#+aKQB+Lmn7EtM~`Ix8!ydL%F}7-QLEvmf6?KbAHFF)ViA z6G*&oQG~?J&IX5Og!z;#2(P`0A4Cc5uQc~Wd#B^v*~?Q;B}_$rWUY}t0S^_^Bf!}z zFYf#8C{jsnu*YzdT^Ix2yPu9Er5`P2Knc+xS;}1`GA$|w;Y3Nh+ydV-D3_Vb7JlEA zzn>G4eD-JT&eK0l#a8Vd=5*3Y*S`HICA2`kgu4F-o6?kstxjYl|HPPZwFpF69;yER z*O!BUI8W5r?Q&G|T*^9auc5Zx3)yTov9+uppo!}kkz=$2Y|Nng(w`$;}=w@a&h`eIy}k)R#5h`AaWo4lBvkPvoN_+hAQHBCEtA(zMl|^6RNa{-*+Gw zcKkRQIXJTy=;ax=hu)+ zqMEtmd!1i019Y$ z&ZHt0my+;I&N19HO|b^_{+ z8iC`8i#D!~lEY8UiZu%yfYOG5WEf>};EX5T!qWdc|1%vNob|^dmmm z&18AUz~EpG-ZA22(ug~9af+A#;o}mr$AEJZ5#I=j)oPU^j42MlHkrf`rYB{<$GiW? zb4?Qaw#(u0UWGkeaLi~q2_WMq6@vr3;!@7Ewa74dfCn&xaCRfwwt+lVaFNVaeo5D(w?! zk;bSEhwx`SI+5Fgpm!ogw1S+RJ|M%Jfb)8l?>I@sLK`;1amu!w=yAlcgvU?Qw5`yH z7zsE}MXchz0#pM}fSraA7kzR4REI*OgV{$1%eNz5l|{ZlimU2;hk$7ea%N$5D8zwy zZuTAOgH4-i<4EEjMB+BWl)n5NRlb&YgL=V4-{RY^7y3zva#u%^lSWn{^yAg2!M||s z`Z&6G7NxgeU-+Ub6C}GHjR!-YZ|p+La|l&i^dkW(T!u{m&KM?XW#&!*xa{jUYaS-~ zRJ@g{cfx562q&|5&r=y?a`}iPFH46|pHG6&y^ZelYpYZ~5KXR5(QRQ!%03vG-G6I@ zj7xYK==3D46)s9;&BN!mr(7F7%LxGsszI5TKk%$iOropQ1ed<5`a75ZlKViZYSe`_ zu;es?wY9whFI~A(`c}N59GTgEU|_%njF;bgyzYhwR-!{@g?r$0`ZJ%mFL(?@2s%Dv zjoV`ZzDYJ{(;WtRFVcXrN=F4Lm;c_c$~F_n?bD;36IHujty{N_erb{35sr!zXiNS# z&op&gFwtw0lri`FN&HgR=zh8pvf(bj4Q_=Ow>FsqQPC;H|d zMS=Mh=rkcRp7JAp*v7-x8#fj{nJkCDwU>+><)Xn02?+gITiw9|@6EMaw+n&wE9$lC zttB--rtJtNRH3YY4I++36g7KRvG`6YbEFbgj0xE@)43!D+}Ld|MDd1;@&YvhqkM^h ztIwAGoUIA>Z2S8xxproYw|@*TV6qK}{W#F(9p~ ztkp!^3UAN`coUDOT*YqAo@_1~e$-?RoW-CCEg}hRc~gq|=)x989i2+c>UkOPuGG4e zE1>CU|JNI-%5>76)0k2MW+?k8r=!yyS_6VRZv!U0ezW{&LZ|Rt@z^5JrD)nVEk~-LnXw4 zRTSazD!}9cp+r_M4DI0M+Y{sBYdH`A~ZA8;~l2 z2E?=*?~st*$!Ec1?0V18f67FE;?8O$X#-<(TO;-$!W@G)<22jbw_TcfNFhJf85Gn} zAbYA@Y-P@h^516l)iYqUdQf<9SDQ%oadK7@TAhj7VA->N0C2bp;)k^*%vPY zD*9cgfK}o@VqptiM(HV!x5^Y{v<636oF4(%eHl|&Sa|8`)v7qM8p}rk_hRLCooj%+ z$z6rt;1wdAr|?EE%?|m5GVurV0nuF$Zp$+mZQkB$VXw=(bO@1&=$s$G9#+=hyMK+fCMpbYgKQUu7kPHxRHm+*7E54r zQN_@RyX7kBd#W>Vb5A&)hbrC#e3Q5EjoIL>iY*PF<*<}g-$+n!@9y1=s6f)i7E%T# zQ0KUy__YKUonX-Wit0%Mar4A`E`9e5@8q`yd6_d65@Co%9ITxg3n+2XTifX5YvRgx zD)f8QOP4kcqFu#-8qn_6n|})!6vZJ&f};BWGm@$~3xB`-&+Y zsnU{pn^I-h|B63V;|QwDz^a)a%PygKqo^$sC>41RAvaGH9OR*=w~qHccuC=VfRA~P z1y^{#4}YhvL}KGT_|@R19s{8EX{He>~= zv(~Uw%-w}wrgy$^5-NfpBLVPWDu0Q@kd4xR>5?UKbOp09F4~~$7#oPwlmNa~{b~?-JDoV1KMp|`6$kO1@nong z)(OPvhRroVB;e7q7x#`>R7ro|ghL#DWH&yda8WIgq@Sj0?jwSX3o9H`Wj;)!OaPQqRa&i=t;P&G-1%8+%^bP4WF)=_ZYGjAh80n=HMgj znaE}D|pembAf(HqM^fVQ)=`0XtB8~U1|wfg|WhOl|1WEM|0eCSqgFwQVXVaLoF z$o1BPQC*VEgyT>=vT6g|dJ0Z%0DE&;5t8|qbR zX3_IYm@~PENA3PkUy^u zyykXJ%Qs@etU9+tEhI;{cz6Q>h5r*tMv>=p%1$DML;ZByFd^`GYn`sPkw#R6?MS{E37Vn)66 zxV2Bhn#{iNiLW=^H$bA$^-DmElnYC-SWPZ#Dm6f>Qf%#O==&CVc6MmDtWxUj&;;Tn z3(pt1|Ak7WvNo}~gd?AH%Ik+NMi^zq++?|&*ZX2kMWmEVZf+`Mt<>_(EU>TO6z{xU zw&ZK)x>60q|8bv0a}eeS(Mm{2*Ib8tVn#fex0-aVrP(@DqEuI35u_x=_O z*r$t)K&MsHt8E7cw7yrN8y2@Dip6#QwQI!HJyiius{ax|DJ9z*5FPJr z_}uUS`T!i6P||6`^g-y+^hegk>PX7c(O_}l+G f_3(bonX!3laIE&swfR}zvohXoVOV5vB;tPnXoM-t literal 45212 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 aBX6jo*z!M*U9TD=fA{Gjwre#rIQ3u1h5pF^ diff --git a/src/benchmark/output/plots/text_cluster_metastasis_barplot.png b/src/benchmark/output/plots/text_cluster_metastasis_barplot.png index 3052e987e1a68cb4d9062b0e1a9817a4941b77b3..451156aef81581afef36fb7163b601d12549ab98 100644 GIT binary patch literal 15752 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 IE?Nfv4@{u0O8@`> literal 17403 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

7|3_M2qLQqcZqF@5oa- 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 literal 16726 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 diff --git a/src/benchmark/output/plots/umap_kmeans_clusters.png b/src/benchmark/output/plots/umap_kmeans_clusters.png deleted file mode 100644 index 18a7c63d4a066390749749b06669e5f883e281da..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 34681 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 cancer (stage IV) diagnosedRadiation therapy for pelvic lesion (45 Gy/15 Fr)Chemotherapy (carboplatin + paclitaxel + bevacizumab for four courses)Bevacizumab maintenance therapyRight adrenal metastasis largerNew left adrenal metastasis observedRe-enlargement of the right adrenal metastasis detectedRadiation therapy for the right adrenal lesion (50 Gy/25 Fr)Chemotherapy (two courses of docetaxel monotherapy) administeredEnlargement of the left adrenal metastasis detectedNivolumab monotherapy as fifth-line therapy initiatedDiabetes mellitus (DM) diagnosed: Blood glucose level increased to 468 mg/dl, Urinary ketones negative, pancreatic amylase not elevated, and autoantibodies including anti-glutamic acid decarboxylase (GAD) antibodies negativePolymyalgia rheumatica (PMR) diagnosed: Muscle pain in the femoral area and neck appeared, which did not improve with nonsteroidal anti-inflammatory drugs. CT and magnetic resonance imaging showed no obvious cancer progressionNivolumab treatment continued","Lung cancer (stage IV) diagnosedRadiation therapy for pelvic lesion (45 Gy/15 Fr)Chemotherapy (carboplatin + paclitaxel + bevacizumab for four courses)Bevacizumab maintenance therapyRight adrenal metastasis largerNew left adrenal metastasis observedRe-enlargement of the right adrenal metastasis detectedRadiation therapy for the right adrenal lesion (50 Gy/25 Fr)Chemotherapy (two courses of docetaxel monotherapy) administeredEnlargement of the left adrenal metastasis detectedNivolumab monotherapy as fifth-line therapy initiatedDiabetes mellitus (DM) diagnosed: Blood glucose level increased to 468 mg/dl, Urinary ketones negative, pancreatic amylase not elevated, and autoantibodies including anti-glutamic acid decarboxylase (GAD) antibodies negativePolymyalgia rheumatica (PMR) diagnosed: Muscle pain in the femoral area and neck appeared, which did not improve with nonsteroidal anti-inflammatory drugs. CT and magnetic resonance imaging showed no obvious cancer progressionNivolumab treatment continued","[ - { - ""date"": ""June 2014"", - ""text"": ""Lung cancer (stage IV) diagnosed"" - }, - { - ""date"": ""July 2014"", - ""text"": ""Radiation therapy for pelvic lesion (45 Gy/15 Fr)"" - }, - { - ""date"": ""July 2014"", - ""text"": ""Chemotherapy (carboplatin + paclitaxel + bevacizumab for four courses)"" - }, - { - ""date"": ""July 2014"", - ""text"": ""Bevacizumab maintenance therapy"" - }, - { - ""date"": ""after 15 cycles of maintenance therapy"", - ""text"": ""Right adrenal metastasis larger"" - }, - { - ""date"": ""after 15 cycles of maintenance therapy"", - ""text"": ""New left adrenal metastasis observed"" - }, - { - ""date"": ""January 2018"", - ""text"": ""Re-enlargement of the right adrenal metastasis detected"" - }, - { - ""date"": ""January 2018"", - ""text"": ""Radiation therapy for the right adrenal lesion (50 Gy/25 Fr)"" - }, - { - ""date"": ""January 2018"", - ""text"": ""Chemotherapy (two courses of docetaxel monotherapy) administered"" - }, - { - ""date"": ""February 2019"", - ""text"": ""Enlargement of the left adrenal metastasis detected"" - }, - { - ""date"": ""February 2019"", - ""text"": ""Nivolumab monotherapy as fifth-line therapy initiated"" - }, - { - ""date"": ""May 2022"", - ""text"": ""Diabetes mellitus (DM) diagnosed: Blood glucose level increased to 468 mg/dl, Urinary ketones negative, pancreatic amylase not elevated, and autoantibodies including anti-glutamic acid decarboxylase (GAD) antibodies negative"" - }, - { - ""date"": ""four years and 5 months after starting nivolumab treatment"", - ""text"": ""Polymyalgia rheumatica (PMR) diagnosed: Muscle pain in the femoral area and neck appeared, which did not improve with nonsteroidal anti-inflammatory drugs. CT and magnetic resonance imaging showed no obvious cancer progression"" - }, - { - ""date"": ""four years and 5 months after starting nivolumab treatment"", - ""text"": ""Nivolumab treatment continued"" - } -]","[""Lung cancer""]","[""stage IV lung cancer""]",True,"[[""right adrenal"", ""re-enlargement""], [""left adrenal"", ""enlargement""]]" -005,2,0,Neoadjuvant_Targeted_Therapy_with_Dacomitinib_in_a_Stage_IIIA_Non_Small_Cell_Lun_PMC11980937.html,"A 54-year-old Chinese male with 30 years of smoking history presented with a worsening cough for 3 months, with a performance status score of 1. Enhanced computed tomography (CT) revealed a 22 mm × 12 mm × 16 mm mass in the right upper lobe with invasion in the right hilum and mediastinal (Figure 1AandB), which were confirmed by positron emission tomography-CT (PET-CT) scan. Immunohistochemistry (IHC) analysis of the biopsy from the lesion in the upper right lobe of the lung was positive for TTF-1, NpA, CK7, CD5/6 and Ki67 (60%); and negative for p40, p63 and CD56. The patient was diagnosed with stage IIIA lung adenocarcinoma (cT1cN2M0). Follow-up targeted NGS analysis of his lung lesion biopsy identified an EGFRG719X with a mutant allele frequency (MAF) of 3.8%. Two cycles of PC chemotherapy (pemetrexed with 0.9g d1 and carboplatin with 600mg d1) and dacomitinib (30mg) were given. - -The patient underwent video-assisted thoracic surgery (VATS) with right upper lobectomy in July 2023. The tumor was located in the right upper lobe, measuring approximately 1.5*1.5 cm with unclear boundaries. Postoperative pathology results indicated that 10% of the tumor cells remained alive, surrounded by significant fibrosis, necrosis, as well as inflammatory and immune cells. After chemotherapy and dacomitinib induction, there were no lymph node metastases, and the pathological stage was ypT1bN0M0. Two cycles of PC chemotherapy were administered, followed by targeted therapy with dacomitinib as adjuvant treatment for 2 more years in accordance with the diagnosis and treatment guidelines. At the final follow-up in September 2024, no adverse events or disease progression had occurred. A progression-free survival (PFS) of more than 14 months was achieved.","A 54-year-old Chinese male with 30 years of smoking history presented with a worsening cough for 3 months, with a performance status score of 1. Enhanced computed tomography (CT) revealed a 22 mm × 12 mm × 16 mm mass in the right upper lobe with invasion in the right hilum and mediastinal (Figure 1AandB), which were confirmed by positron emission tomography-CT (PET-CT) scan. Immunohistochemistry (IHC) analysis of the biopsy from the lesion in the upper right lobe of the lung was positive for TTF-1, NpA, CK7, CD5/6 and Ki67 (60%); and negative for p40, p63 and CD56. The patient was diagnosed with stage IIIA lung adenocarcinoma (cT1cN2M0). Follow-up targeted NGS analysis of his lung lesion biopsy identified an EGFRG719X with a mutant allele frequency (MAF) of 3.8%. Two cycles of PC chemotherapy (pemetrexed with 0.9g d1 and carboplatin with 600mg d1) and dacomitinib (30mg) were given. - -The patient underwent video-assisted thoracic surgery (VATS) with right upper lobectomy in July 2023. The tumor was located in the right upper lobe, measuring approximately 1.5*1.5 cm with unclear boundaries. Postoperative pathology results indicated that 10% of the tumor cells remained alive, surrounded by significant fibrosis, necrosis, as well as inflammatory and immune cells. After chemotherapy and dacomitinib induction, there were no lymph node metastases, and the pathological stage was ypT1bN0M0. Two cycles of PC chemotherapy were administered, followed by targeted therapy with dacomitinib as adjuvant treatment for 2 more years in accordance with the diagnosis and treatment guidelines. At the final follow-up in September 2024, no adverse events or disease progression had occurred. A progression-free survival (PFS) of more than 14 months was achieved. - -The patient received two cycles of PC chemotherapy (pemetrexed with 0.9g d1 and carboplatin with 600mg d1) and dacomitinib (30mg). The patient underwent video-assisted thoracic surgery (VATS) with right upper lobectomy in July 2023.","A 54-year-old Chinese male with 30 years of smoking history presented with a worsening cough for 3 months, with a performance status score of 1. Enhanced computed tomography (CT) revealed a 22 mm × 12 mm × 16 mm mass in the right upper lobe with invasion in the right hilum and mediastinal (Figure 1AandB), which were confirmed by positron emission tomography-CT (PET-CT) scan. Immunohistochemistry (IHC) analysis of the biopsy from the lesion in the upper right lobe of the lung was positive for TTF-1, NpA, CK7, CD5/6 and Ki67 (60%); and negative for p40, p63 and CD56. The patient was diagnosed with stage IIIA lung adenocarcinoma (cT1cN2M0). Follow-up targeted NGS analysis of his lung lesion biopsy identified an EGFRG719X with a mutant allele frequency (MAF) of 3.8%. Two cycles of PC chemotherapy (pemetrexed with 0.9g d1 and carboplatin with 600mg d1) and dacomitinib (30mg) were given. - -The patient underwent video-assisted thoracic surgery (VATS) with right upper lobectomy in July 2023. The tumor was located in the right upper lobe, measuring approximately 1.5*1.5 cm with unclear boundaries. Postoperative pathology results indicated that 10% of the tumor cells remained alive, surrounded by significant fibrosis, necrosis, as well as inflammatory and immune cells. After chemotherapy and dacomitinib induction, there were no lymph node metastases, and the pathological stage was ypT1bN0M0. Two cycles of PC chemotherapy were administered, followed by targeted therapy with dacomitinib as adjuvant treatment for 2 more years in accordance with the diagnosis and treatment guidelines. At the final follow-up in September 2024, no adverse events or disease progression had occurred. A progression-free survival (PFS) of more than 14 months was achieved. - -The patient received two cycles of PC chemotherapy (pemetrexed with 0.9g d1 and carboplatin with 600mg d1) and dacomitinib (30mg). The patient underwent video-assisted thoracic surgery (VATS) with right upper lobectomy in July 2023.","[""Lung Cancer""]","[""Lung Adenocarcinoma""]",False,[] -003,0,0,Management_of_malignant_inferior_vena_cava_syndrome__IVCS__by_endovascular_bridg_PMC12019825.html,"A 73-year-old male patient underwent a procedure to relieve significant stenosis of the suprahepatic IVC due to compression. Under local anesthesia, a 5F sheath was inserted into the right basilic vein and a 10F sheath into the right common femoral vein. Venography showed a significant compression of the suprahepatic IVC. The IVC stenosis was passed using a 0,035-inch hydrophilic guidewire and a multipurpose catheter. Initially, mechanical thrombectomy was performed to exclude possible thrombosis; however, no thrombotic material was extracted. After placing a stiffer exchange guidewire with its distal tip positioned in the right subclavian vein, 3 uncovered self-expanding nitinol sinus-XL stents (OptiMed, Ettlingen, Germany) were deployed in tandem from the SVC to the IVC with an overlap between the stents. Using venography measurements, stents measuring 18 × 80 mm, 18 × 60 mm, and 16 × 80 mm were placed in a cephalic-to-caudal orientation. The final venography revealed adequate flow through the vena cava and bridging stents.","A 73-year-old male patient underwent a procedure to relieve significant stenosis of the suprahepatic IVC due to compression. Under local anesthesia, a 5F sheath was inserted into the right basilic vein and a 10F sheath into the right common femoral vein. Venography showed a significant compression of the suprahepatic IVC. The IVC stenosis was passed using a 0,035-inch hydrophilic guidewire and a multipurpose catheter. Initially, mechanical thrombectomy was performed to exclude possible thrombosis; however, no thrombotic material was extracted. After placing a stiffer exchange guidewire with its distal tip positioned in the right subclavian vein, 3 uncovered self-expanding nitinol sinus-XL stents (OptiMed, Ettlingen, Germany) were deployed in tandem from the SVC to the IVC with an overlap between the stents. Using venography measurements, stents measuring 18 × 80 mm, 18 × 60 mm, and 16 × 80 mm were placed in a cephalic-to-caudal orientation. The final venography revealed adequate flow through the vena cava and bridging stents. - -Diagnosed with SCLC 15 months previously. Received 6 cycles of carboplatin/etoposide chemotherapy, followed by thoracic radiotherapy and prophylactic cranial irradiation. Lost 20 kg of body weight within 12 months. Performance status was recorded (4) on the Eastern Cooperative Oncology Group scale on the day of admission. Vital signs: systolic/diastolic blood pressure 100/70 mmHg, heart rate 90 bpm, oxygen saturation 89%, body temperature 36,9°C/98° F. Laboratory results: hemoglobin 12,6 g/dl (normal range 14-18 g/dl), platelets 260 × 103/μl (150-450 × 103/μl), alkaline phosphatase 94 U/L (26-112 U/L), alanine aminotransferase 40 U/L (5-35 U/L), aspartate aminotransferase 34 U/L (<40 U/L), total bilirubin 1.2 mg/dl, and creatinine 0.9 mg/dl. A large tumor involving the right lower and middle lung lobe measured (17,6 × 19,3 × 18,6) mm (maximal axial x coronal x sagittal dimension), which causes significant compression of the IVC (yellow arrows) mainly at the level of its entry into the right heart atrium. Multiple enlarged mediastinal lymph nodes, infiltration of the visceral pleura and right hemidiaphragm, ascites, and peritoneal metastases were other salient findings underlining disease progression. - -Three self-expanding stents (yellow arrows) were positioned in tandem from the superior vena cava (SVC) (red arrow shows the most cephalic part of the stents) to the IVC to restore venous patency. Fig. 3. The final venography revealed adequate flow through the bridging stents (yellow arrows). The patient's IVCS symptoms, mainly trunk and lower limb edema, were significantly alleviated within 48 h. Low-molecular-weight heparin was administered for anticoagulation. - -The patient died with a large tumor involving the right lower and middle lung lobe measured (17,6 × 19,3 × 18,6) mm (maximal axial x coronal x sagittal dimension), which causes significant compression of the IVC (yellow arrows) mainly at the level of its entry into the right heart atrium.","- Diagnosed with SCLC 15 months previously -- Received 6 cycles of carboplatin/etoposide chemotherapy, followed by thoracic radiotherapy and prophylactic cranial irradiation -- Lost 20 kg of body weight within 12 months -- Performance status was recorded (4) on the Eastern Cooperative Oncology Group scale on the day of admission -- Underwent a procedure to relieve significant stenosis of the suprahepatic IVC due to compression -- Three self-expanding stents were positioned in tandem from the superior vena cava (SVC) to the IVC to restore venous patency -- The patient's IVCS symptoms, mainly trunk and lower limb edema, were significantly alleviated within 48 h -- Low-molecular-weight heparin was administered for anticoagulation -- The patient died with a large tumor involving the right lower and middle lung lobe measured (17,6 × 19,3 × 18,6) mm (maximal axial x coronal x sagittal dimension), which causes significant compression of the IVC (yellow arrows) mainly at the level of its entry into the right heart atrium","[""SCLC""]","[""Small Cell Lung Cancer""]",True,"[[""mediastinal lymph nodes"", ""enlarged""], [""visceral pleura"", ""infiltration""], [""right hemidiaphragm"", ""infiltration""], [""peritoneum"", ""metastases""]]" -015,2,2,A_case_of_obstructive_shock_and_transient_ischemic_attack_from_intracardiac_meta_PMC11981378.html,"- Patient presented to ER 8 days after initial diagnosis of intracardiac metastasis of NSCLC. +015,1,0,A_case_of_obstructive_shock_and_transient_ischemic_attack_from_intracardiac_meta_PMC11981378.html,"- Patient presented to ER 8 days after initial diagnosis of intracardiac metastasis of NSCLC. - On admission, patient appeared lethargic, tachycardic with irregular rhythm, decreased breath sounds on the right, and tender right upper quadrant due to rib fractures. Heart rate was 110 bpm, blood pressure 96/60 mmHg, respiratory rate 22, and saturation of 100%. Patient treated for hypotension with IV fluids. - CT of head negative for acute intracranial processes. CT of abdomen and pelvis showed mildly displaced rib fractures, right kidney interpolar cyst with new areas of internal hyperdensity (suspected benign cysts). No other new presentations appreciated. - Laboratory values during the admission: @@ -138,178 +64,8 @@ Patient underwent palliative care for symptom management. CT-Angiography: no large vessel occlusion or acute intracranial process Discharged to hospice care","Patient presented to ER with intracardiac metastasis of NSCLCTransient ischemic attack (TIA) with right facial droop and left pronator driftCT-Angiography showed no large vessel occlusion or acute intracranial process; patient discharged to hospice care","Patient presented to ER with intracardiac metastasis of NSCLC (initial diagnosis) 2 days post-ER admission: Transient ischemic attack (TIA) with right facial droop and left pronator drift -after TIA: CT-Angiography showed no large vessel occlusion or acute intracranial process; patient discharged to hospice care","[""non-small cell lung cancer""]","[""squamous cell histology""]",True,"[[""left atrium"", ""tumor thrombus""], [""right lower lobe"", ""large hypermetabolic mass""], [""mediastinum"", ""enlarged hypermetabolic subcarinal nodes""]]" -010,3,0,Re_do_robot_assisted_salvage_lobectomy_after_esophagectomy_with_gastric_pull_up__PMC11980297.html,"55-year-old female underwent esophagectomy with gastric pull-up reconstruction for squamous cell carcinoma (SCC) of the esophagus (cT3N2M0, stage IIIB) -Six years later, computed tomography (CT) scan showed stage IA Thyroid Transcription Factor-1 (TTF-1) positive adenocarcinoma in the left upper lobe treated by stereotactic radiotherapy -Two years later, a SCC of the right upper lobe (RUL) was found with tumor diameter of 54 mm and high Programmed Death-Ligand 1 (PD-L1) expression -Pembrolizumab initiated with curative intent but showed no biological response -Salvage lobectomy including complete mediastinal lymph node dissection performed -Positioned in left lateral decubitus position, adhesions in closure-line of the previous thoracotomy and thus RATS was deemed feasible. -After standard port placement (Fig.2A), docking and instrument placement (Tip-up fenestrated grasper™, Cadière forceps™, Maryland bipolar dissector™ and the Monopolar spatula™) adhesiolysis between the lung and the chest wall and taking down dense adhesions between the lung and the intrathoracic gastric pull-up the nasogastric tube was exposed (Fig.2B). -The nasogastric tube was placed in the gastric pull-up as a safety measure. -Meticulous dissection of its vascularization enabled subsequent standard lobectomy of the RUL with complete lymph node dissection (R4, 7, 10 and 11). -After removal of the specimen and chest tube placement, a Ropivacaine® intercostal nerve block levels T4 to T9 was installed. -Total operative time was 3 h 44 min with 50 ml blood loss.","55-year-old female underwent esophagectomy with gastric pull-up reconstruction for squamous cell carcinoma (SCC) of the esophagus (cT3N2M0, stage IIIB) -Six years later, computed tomography (CT) scan showed stage IA Thyroid Transcription Factor-1 (TTF-1) positive adenocarcinoma in the left upper lobe treated by stereotactic radiotherapy -Two years later, a SCC of the right upper lobe (RUL) was found with tumor diameter of 54 mm and high Programmed Death-Ligand 1 (PD-L1) expression -Pembrolizumab initiated with curative intent but showed no biological response -Salvage lobectomy including complete mediastinal lymph node dissection performed -Positioned in left lateral decubitus position, adhesions in closure-line of the previous thoracotomy and thus RATS was deemed feasible. -After standard port placement (Fig.2A), docking and instrument placement (Tip-up fenestrated grasper™, Cadière forceps™, Maryland bipolar dissector™ and the Monopolar spatula™) adhesiolysis between the lung and the chest wall and taking down dense adhesions between the lung and the intrathoracic gastric pull-up the nasogastric tube was exposed (Fig.2B). -The nasogastric tube was placed in the gastric pull-up as a safety measure. -Meticulous dissection of its vascularization enabled subsequent standard lobectomy of the RUL with complete lymph node dissection (R4, 7, 10 and 11). -After removal of the specimen and chest tube placement, a Ropivacaine® intercostal nerve block levels T4 to T9 was installed. -Total operative time was 3 h 44 min with 50 ml blood loss.","55-year-old female underwent esophagectomy with gastric pull-up reconstruction for squamous cell carcinoma (SCC) of the esophagus (cT3N2M0, stage IIIB) -Six years later, computed tomography (CT) scan showed stage IA Thyroid Transcription Factor-1 (TTF-1) positive adenocarcinoma in the left upper lobe treated by stereotactic radiotherapy -Two years later, a SCC of the right upper lobe (RUL) was found with tumor diameter of 54 mm and high Programmed Death-Ligand 1 (PD-L1) expression -Pembrolizumab initiated with curative intent but showed no biological response -Salvage lobectomy including complete mediastinal lymph node dissection performed -Positioned in left lateral decubitus position, adhesions in closure-line of the previous thoracotomy and thus RATS was deemed feasible. -After standard port placement (Fig.2A), docking and instrument placement (Tip-up fenestrated grasper™, Cadière forceps™, Maryland bipolar dissector™ and the Monopolar spatula™) adhesiolysis between the lung and the chest wall and taking down dense adhesions between the lung and the intrathoracic gastric pull-up the nasogastric tube was exposed (Fig.2B). -The nasogastric tube was placed in the gastric pull-up as a safety measure. -Meticulous dissection of its vascularization enabled subsequent standard lobectomy of the RUL with complete lymph node dissection (R4, 7, 10 and 11). -After removal of the specimen and chest tube placement, a Ropivacaine® intercostal nerve block levels T4 to T9 was installed. -Total operative time was 3 h 44 min with 50 ml blood loss.","[""Squamous cell carcinoma"", ""Adenocarcinoma""]","[""Esophageal squamous cell carcinoma"", ""Thyroid Transcription Factor-1 positive adenocarcinoma"", ""Squamous cell carcinoma of the right upper lobe""]",False,[] -013,3,2,Brain_Metastasis_From_Advanced_Stage_Lung_Carcinoma__Differentiating_From_Stroke_PMC11955559.html,"Patient's medical history: -- Diagnosed with stage III NSCLC in the right upper lobe bronchus that had spread throughout the middle and lower lobes (15 months ago) -- PET/CT scans revealed a right supraclavicular node, right upper paratracheal node, multiple additional paratracheal nodes, and enlarged para-aortic nodes -- Upper esophageal stricture treated with dilatation during an esophagogastroduodenoscopy (1 year ago) -- Initiated docetaxel for refractory complications with stage III NSCLC (2 days ago) - -Recent medical events: -- Diagnosed with hypokalemia, given potassium supplement and ondansetron for nausea -- Marked unilateral weakness in left upper extremity, grip strength of 2/5 versus 5/5 strength in the right upper extremity -- Leukopenia, WBC of 1.12 K/μL -- Potassium level still low but increased since previous ED visit -- COVID-19 and flu tests all negative -- Urine testing revealed trace blood and bacteria and was positive for cannabis -- Non-contrast CT results revealed multifocal intracranial lesions with associated vasogenic edema with mild mass effect, consistent with metastatic disease -- CT angiography (CTA) performed, revealing no flow-limiting stenosis or occlusion of major intracranial or cervical arteries -- Multiple bilateral pulmonary nodules and a partially imaged right upper lobe mass were seen, along with asymmetrically enlarged right level IIb nodes, suspicious for metastasis in this clinical setting - -Current medications: -- Docetaxel for refractory complications with stage III NSCLC -- Potassium supplement for hypokalemia -- Ondansetron for nausea","15 months ago: Diagnosed with stage III NSCLC in the right upper lobe bronchus that had spread throughout the middle and lower lobes. PET/CT scans revealed a right supraclavicular node, right upper paratracheal node, multiple additional paratracheal nodes, and enlarged para-aortic nodes. -1 year ago: Upper esophageal stricture treated with dilatation during an esophagogastroduodenoscopy. -2 days ago: Initiated docetaxel for refractory complications with stage III NSCLC. -Current visit: Diagnosed with hypokalemia, given potassium supplement and ondansetron for nausea. Marked unilateral weakness in left upper extremity, grip strength of 2/5 versus 5/5 strength in the right upper extremity. -Current visit: Leukopenia, WBC of 1.12 K/μL. Potassium level still low but increased since previous ED visit. -Current visit: COVID-19 and flu tests all negative. -Current visit: Urine testing revealed trace blood and bacteria and was positive for cannabis. -Current visit: Non-contrast CT results revealed multifocal intracranial lesions with associated vasogenic edema with mild mass effect, consistent with metastatic disease. -Current visit: CT angiography (CTA) performed, revealing no flow-limiting stenosis or occlusion of major intracranial or cervical arteries. -Current visit: Multiple bilateral pulmonary nodules and a partially imaged right upper lobe mass were seen, along with asymmetrically enlarged right level IIb nodes, suspicious for metastasis in this clinical setting.","15 months ago: Diagnosed with stage III NSCLC in the right upper lobe bronchus that had spread throughout the middle and lower lobes. PET/CT scans revealed a right supraclavicular node, right upper paratracheal node, multiple additional paratracheal nodes, and enlarged para-aortic nodes. -1 year ago: Upper esophageal stricture treated with dilatation during an esophagogastroduodenoscopy. -2 days ago: Initiated docetaxel for refractory complications with stage III NSCLC. -Current visit: Diagnosed with hypokalemia, given potassium supplement and ondansetron for nausea. Marked unilateral weakness in left upper extremity, grip strength of 2/5 versus 5/5 strength in the right upper extremity. -Current visit: Leukopenia, WBC of 1.12 K/μL. Potassium level still low but increased since previous ED visit. -Current visit: COVID-19 and flu tests all negative. -Current visit: Urine testing revealed trace blood and bacteria and was positive for cannabis. -Current visit: Non-contrast CT results revealed multifocal intracranial lesions with associated vasogenic edema with mild mass effect, consistent with metastatic disease. -Current visit: CT angiography (CTA) performed, revealing no flow-limiting stenosis or occlusion of major intracranial or cervical arteries. -Current visit: Multiple bilateral pulmonary nodules and a partially imaged right upper lobe mass were seen, along with asymmetrically enlarged right level IIb nodes, suspicious for metastasis in this clinical setting.","[""NSCLC""]","[""stage III NSCLC""]",True,"[[""brain"", ""multifocal intracranial lesions""], [""lung"", ""bilateral pulmonary nodules""], [""lymph nodes"", ""asymmetrically enlarged right level IIb nodes""]]" -004,1,1,Metastatic_INI_1_deficient_undifferentiated_lung_cancer_with_EGFR_19del_mutation_PMC12021797.html,"81-year-old female patient with a 10-day history of progressive chest tightness and dyspnea worsened with physical activity -Chest computed tomography (CT) imaging revealed a large left-sided pleural effusion -Thoracentesis was performed, and the drained pleural fluid was sent to the Department of Pathology for further evaluation -Following thoracic drainage, a subsequent chest CT scan revealed a heterogeneous mass in the left inferior lobe, measuring approximately 6.7 cm × 2.8 cm in its largest cross-section -Contrast-enhanced imaging demonstrated irregular enhancement patterns suggestive of a left lung tumor -Pulmonary window analysis identified multiple nodular high-density foci scattered across both lungs, raising suspicion for bilateral pulmonary metastases -Mediastinal window assessment further revealed bilateral mediastinal lymphadenopathy and enlarged lymph nodes at the left pulmonary hilum, consistent with lymph node metastasis -An abdominal CT scan detected multiple low-density hepatic nodules of varying sizes, with the largest lesion (2.9 cm × 2.6 cm) located in the right hepatic lobe -Annular enhancement was noted in the arterial phase, while marked hypodensity was observed in the portal venous phase, demonstrating a “bull’s eye sign” characteristic of multiple hepatic metastases -Additionally, an enhanced brain CT identified an irregular heterogeneously enhancing mass within the right frontal lobe, with a maximum cross-sectional area of 2.1 cm × 1.6 cm, consistent with brain metastasis -Genetic testing revealed a mutation in the EGFR gene -Next-generation sequencing (NGS) analysis showed that the patient's tumor had a high level of PD-L1 expression -The patient underwent treatment with osimertinib, an EGFR tyrosine kinase inhibitor","81-year-old female patient with a 10-day history of progressive chest tightness and dyspnea worsened with physical activity -Chest computed tomography (CT) imaging revealed a large left-sided pleural effusion -Thoracentesis was performed, and the drained pleural fluid was sent to the Department of Pathology for further evaluation -Following thoracic drainage, a subsequent chest CT scan revealed a heterogeneous mass in the left inferior lobe, measuring approximately 6.7 cm × 2.8 cm in its largest cross-section -Contrast-enhanced imaging demonstrated irregular enhancement patterns suggestive of a left lung tumor -Pulmonary window analysis identified multiple nodular high-density foci scattered across both lungs, raising suspicion for bilateral pulmonary metastases -Mediastinal window assessment further revealed bilateral mediastinal lymphadenopathy and enlarged lymph nodes at the left pulmonary hilum, consistent with lymph node metastasis -An abdominal CT scan detected multiple low-density hepatic nodules of varying sizes, with the largest lesion (2.9 cm × 2.6 cm) located in the right hepatic lobe -Annular enhancement was noted in the arterial phase, while marked hypodensity was observed in the portal venous phase, demonstrating a “bull’s eye sign” characteristic of multiple hepatic metastases -Additionally, an enhanced brain CT identified an irregular heterogeneously enhancing mass within the right frontal lobe, with a maximum cross-sectional area of 2.1 cm × 1.6 cm, consistent with brain metastasis -Genetic testing revealed a mutation in the EGFR gene -Next-generation sequencing (NGS) analysis showed that the patient's tumor had a high level of PD-L1 expression -The patient underwent treatment with osimertinib, an EGFR tyrosine kinase inhibitor","81-year-old female patient with a 10-day history of progressive chest tightness and dyspnea worsened with physical activity -Chest computed tomography (CT) imaging revealed a large left-sided pleural effusion -Thoracentesis was performed, and the drained pleural fluid was sent to the Department of Pathology for further evaluation -Following thoracic drainage, a subsequent chest CT scan revealed a heterogeneous mass in the left inferior lobe, measuring approximately 6.7 cm × 2.8 cm in its largest cross-section -Contrast-enhanced imaging demonstrated irregular enhancement patterns suggestive of a left lung tumor -Pulmonary window analysis identified multiple nodular high-density foci scattered across both lungs, raising suspicion for bilateral pulmonary metastases -Mediastinal window assessment further revealed bilateral mediastinal lymphadenopathy and enlarged lymph nodes at the left pulmonary hilum, consistent with lymph node metastasis -An abdominal CT scan detected multiple low-density hepatic nodules of varying sizes, with the largest lesion (2.9 cm × 2.6 cm) located in the right hepatic lobe -Annular enhancement was noted in the arterial phase, while marked hypodensity was observed in the portal venous phase, demonstrating a “bull’s eye sign” characteristic of multiple hepatic metastases -Additionally, an enhanced brain CT identified an irregular heterogeneously enhancing mass within the right frontal lobe, with a maximum cross-sectional area of 2.1 cm × 1.6 cm, consistent with brain metastasis -Genetic testing revealed a mutation in the EGFR gene -Next-generation sequencing (NGS) analysis showed that the patient's tumor had a high level of PD-L1 expression -The patient underwent treatment with osimertinib, an EGFR tyrosine kinase inhibitor","[""lung cancer""]","[""non-small cell lung cancer""]",True,"[[""liver"", ""multiple low-density hepatic nodules""], [""lymph nodes"", ""bilateral mediastinal lymphadenopathy""], [""brain"", ""irregular heterogeneously enhancing mass""]]" -014,1,1,Successful_treatment_of_an_elderly_patient_with_lung_squamous_cell_carcinoma_by__PMC11973309.html,"A 73-year-old man presenting with paroxysmal cough and sputum accompanied by chest pain, weight loss, and exertional asthma was admitted to a local hospital on February 13, 2023. A chest computed tomography (CT) scan revealed a mass in the right upper lobe of the lung, raising the suspicion of a malignant tumor (MT). Subsequent positron electron tomography (PET)-CT indicated an irregular lobulated soft tissue mass in the apical segment of the right lung upper lobe, measuring approximately 4.1×3.5 cm and showing increased fluorodeoxyglucose (FDG) uptake (SUV value) and spiculated margins, suggestive of lung cancer (likely squamous cell carcinoma). There were tiny nodular shadows about 0.3 cm in diameter surrounding the mass, and the possibility of metastasis was not ruled out. Several enlarged lymph nodes were visible in regions 10R, 4R, and 2R, the largest measuring approximately 1.7 cm in diameter. that showed varying degrees of increased FDG uptake, suggesting possible metastasis in some lymph nodes. On March 3, 2023, a CT-guided biopsy of the right upper lobe lung mass was performed at our hospital. According to the pathology report (Figure 1), combined with the patient’s medical history and immunohistochemical markers, squamous cell carcinoma was considered (Note: CK7-, CK20-, CK5/6-, NapsinA-, CD56-, P40+, Syn-, CgA-, CD56-, TTF-1-, Ki-67 75%). As shown in the microscopic cellular morphology and tissue architecture ofFigure 1, the entire field demonstrates complete loss of normal pulmonary tissue structure.","Diagnosed with stage cT2bN2M0 right lung squamous cell carcinoma on March 14, 2023. Immunotherapy combined with chemotherapy was started: paclitaxel liposome 240 mg on d1, carboplatin 500 mg on d1, and tislelizumab 200 mg on d2, every 3 weeks (q3w). Grade III thrombocytopenia occurred post-treatment, with a nadir of 30 × 10^9/L. Immunotherapy regimen was adjusted for the first cycle: tislelizumab 200 mg on d0 + paclitaxel liposome 120 mg on d1, 90 mg on d8 + carboplatin 150 mg on d2, 100 mg on d3-5, every 3 weeks (q3w). However, on May 16, 2023, bacteremia and herpes zoster infection were observed, so antitumor treatment was halted.","Vancomycin was given for anti-infection and anti-viral treatment. After active treatment, the first reexamination on May 29, 2023, with a repeat enhanced chest CT showed an irregular thin-walled cystic lesion in the right upper lobe with fine line compartments, measuring approximately 32×25×27 mm, with enlarged and moderately enhanced lymph nodes in the 10R, 4R, and 2R regions. Compared to the March 3, 2023 CT, the solid component of the right upper lobe mass had essentially disappeared, and the mediastinal lymph nodes were similar in size. Response assessment indicated partial remission, and the second cycle of immunotherapy combined with chemotherapy was administered on June 27, 2023.","[""malignant tumor"", ""lung cancer""]","[""squamous cell carcinoma""]",True,"[[""squamous cell carcinoma"", ""lymph nodes""]]" -001,4,1,Intriguing_Encounter__Unveiling_Squamous_Cell_Carcinoma_Lung_with_Rare_Bilateral_PMC12020972.html,"44-year-old male diagnosed as squamous cell carcinoma of the lung -Pituitary metastasis identified on 18F-FDG PET/CT -Renal metastasis identified on 18F-FDG PET/CT -Right-sided chest pain for 2 months -Dry cough for 2 months -Fever (on-off) for 2 months -Hematuria for 2 months -No history of Antitubercular treatment (ATT) intake -Tobacco chewer for >20 years -Decreased air entry on the right side of the lung -Contrast-enhanced computed tomography (CECT) thorax revealed a heterogeneous lesion in the mediastinal region abutting the horizontal fissure and cavitation within -Lesion associated with multiple centrilobular nodules arranged in a linear branching pattern -Bronchoscopy done with bronchoscopic-guided biopsy -Bronchoalveolar lavage (BAL) fluid samples taken -BAL sample sent for cytopathological examination was negative for malignant cells -18F-FDG PET/CT scan revealed FDG-avid well-defined soft tissue primary mass measuring 5.6 cm x 7.7 cm x 8.3 cm in size with spiculated margins in the upper lobe of the right lung with collapse and consolidation of right lung -FDG avid metastases to mediastinal, abdominopelvic lymph nodes and right-sided pleural deposits -Multiple sub-centimetric to centimetric-sized bilateral lung nodules were noted -It was associated with multiple FDG avid brain lesions involving the bilateral cerebral cortex, cerebellum and pituitary -FDG avid bilateral hypodense few (3 in number) soft tissue density bilateral renal masses (Figure 1b, largest measuring 2.8 cm x 2.6 cm) -Multiple lytic skeletal lesions [Figure 1d], few of them with soft tissue component involvement were noted","44-year-old male diagnosed as squamous cell carcinoma of the lung -Pituitary metastasis identified on 18F-FDG PET/CT -Renal metastasis identified on 18F-FDG PET/CT -Right-sided chest pain for 2 months -Dry cough for 2 months -Fever (on-off) for 2 months -Hematuria for 2 months -No history of Antitubercular treatment (ATT) intake -Tobacco chewer for >20 years -Decreased air entry on the right side of the lung -Contrast-enhanced computed tomography (CECT) thorax revealed a heterogeneous lesion in the mediastinal region abutting the horizontal fissure and cavitation within -Lesion associated with multiple centrilobular nodules arranged in a linear branching pattern -Bronchoscopy done with bronchoscopic-guided biopsy -Bronchoalveolar lavage (BAL) fluid samples taken -BAL sample sent for cytopathological examination was negative for malignant cells -18F-FDG PET/CT scan revealed FDG-avid well-defined soft tissue primary mass measuring 5.6 cm x 7.7 cm x 8.3 cm in size with spiculated margins in the upper lobe of the right lung with collapse and consolidation of right lung -FDG avid metastases to mediastinal, abdominopelvic lymph nodes and right-sided pleural deposits -Multiple sub-centimetric to centimetric-sized bilateral lung nodules were noted -It was associated with multiple FDG avid brain lesions involving the bilateral cerebral cortex, cerebellum and pituitary -FDG avid bilateral hypodense few (3 in number) soft tissue density bilateral renal masses (Figure 1b, largest measuring 2.8 cm x 2.6 cm) -Multiple lytic skeletal lesions [Figure 1d], few of them with soft tissue component involvement were noted","44-year-old male diagnosed as squamous cell carcinoma of the lung -Pituitary metastasis identified on 18F-FDG PET/CT -Renal metastasis identified on 18F-FDG PET/CT -Right-sided chest pain for 2 months -Dry cough for 2 months -Fever (on-off) for 2 months -Hematuria for 2 months -No history of Antitubercular treatment (ATT) intake -Tobacco chewer for >20 years -Decreased air entry on the right side of the lung -Contrast-enhanced computed tomography (CECT) thorax revealed a heterogeneous lesion in the mediastinal region abutting the horizontal fissure and cavitation within -Lesion associated with multiple centrilobular nodules arranged in a linear branching pattern -Bronchoscopy done with bronchoscopic-guided biopsy -Bronchoalveolar lavage (BAL) fluid samples taken -BAL sample sent for cytopathological examination was negative for malignant cells -18F-FDG PET/CT scan revealed FDG-avid well-defined soft tissue primary mass measuring 5.6 cm x 7.7 cm x 8.3 cm in size with spiculated margins in the upper lobe of the right lung with collapse and consolidation of right lung -FDG avid metastases to mediastinal, abdominopelvic lymph nodes and right-sided pleural deposits -Multiple sub-centimetric to centimetric-sized bilateral lung nodules were noted -It was associated with multiple FDG avid brain lesions involving the bilateral cerebral cortex, cerebellum and pituitary -FDG avid bilateral hypodense few (3 in number) soft tissue density bilateral renal masses (Figure 1b, largest measuring 2.8 cm x 2.6 cm) -Multiple lytic skeletal lesions [Figure 1d], few of them with soft tissue component involvement were noted","[""lung cancer""]","[""squamous cell carcinoma""]",True,"[[""brain"", ""bilateral cerebral cortex""], [""brain"", ""cerebellum""], [""brain"", ""pituitary""], [""kidneys"", ""bilateral renal masses""], [""skeleton"", ""lytic skeletal lesions""], [""lymph nodes"", ""mediastinal lymph nodes""], [""lymph nodes"", ""abdominopelvic lymph nodes""], [""pleura"", ""right-sided pleural deposits""]]" -009,1,0,Radiotherapy_for_Lung_Cancer__An_Unrecognized_Cause_of_Lung_Torsion__PMC11962223.html,"A 73-year-old lady presented with a long history of bilateral chest wall discomfort, exertional breathlessness, and chronic fatigue. She was found to have a left lung opacification on chest radiograph, which prompted a computed tomography scan and positron emission tomography-computed tomography (PET-CT) scan, which confirmed an avid 53 mm left upper lobe mass with associated hilar and mediastinal lymphadenopathy staging the disease as T3N2M0. An endobronchial ultrasound scan and biopsy (EBUS) sampling of station 11L confirmed lung adenocarcinoma metastasis. It appeared positive on the PD-L1 staining. Other immunohistochemistry (ALK/ROS/NTRK) was negative. Her lung function at this point was 51% forced expiratory volume (FEV1) (1.21) and 73% diffusing capacity of the lungs for carbon monoxide (DLCO). She consented to radical treatment with four weeks of radiotherapy dosed at 55 Gy/20 with concurrent chemotherapy. Her initial scan post radiotherapy showed a limited response to treatment, but her subsequent CT scan in a year showed that there was no tumor visible on axial images but there was apparent collapse of the left lung base. Post radiotherapy imaging showed complete response to treatment. It also showed two small bullae seen in the post aspect of the lower lobe. Five months later, she had a follow-up scan (Figures 4,5). Coronal views showed upward curving of the lower segmental bronchi and pulmonary vessels. The two small bullae initially seen in the post aspect of the lower lobe seemed to have relocated to the upper zone anteriorly. Lung torsion with 180-degree rotation was diagnosed. The patient was clinically well; hence, it did not warrant surgical referral.","A 73-year-old lady presented with a long history of bilateral chest wall discomfort, exertional breathlessness, and chronic fatigue. She was found to have a left lung opacification on chest radiograph, which prompted a computed tomography scan and positron emission tomography-computed tomography (PET-CT) scan, which confirmed an avid 53 mm left upper lobe mass with associated hilar and mediastinal lymphadenopathy staging the disease as T3N2M0. An endobronchial ultrasound scan and biopsy (EBUS) sampling of station 11L confirmed lung adenocarcinoma metastasis. It appeared positive on the PD-L1 staining. Other immunohistochemistry (ALK/ROS/NTRK) was negative. Her lung function at this point was 51% forced expiratory volume (FEV1) (1.21) and 73% diffusing capacity of the lungs for carbon monoxide (DLCO). She consented to radical treatment with four weeks of radiotherapy dosed at 55 Gy/20 with concurrent chemotherapy. Her initial scan post radiotherapy showed a limited response to treatment, but her subsequent CT scan in a year showed that there was no tumor visible on axial images but there was apparent collapse of the left lung base. Post radiotherapy imaging showed complete response to treatment. It also showed two small bullae seen in the post aspect of the lower lobe. Five months later, she had a follow-up scan (Figures 4,5). Coronal views showed upward curving of the lower segmental bronchi and pulmonary vessels. The two small bullae initially seen in the post aspect of the lower lobe seemed to have relocated to the upper zone anteriorly. Lung torsion with 180-degree rotation was diagnosed. The patient was clinically well; hence, it did not warrant surgical referral.","A 73-year-old lady presented with a long history of bilateral chest wall discomfort, exertional breathlessness, and chronic fatigue. She was found to have a left lung opacification on chest radiograph, which prompted a computed tomography scan and positron emission tomography-computed tomography (PET-CT) scan, which confirmed an avid 53 mm left upper lobe mass with associated hilar and mediastinal lymphadenopathy staging the disease as T3N2M0. An endobronchial ultrasound scan and biopsy (EBUS) sampling of station 11L confirmed lung adenocarcinoma metastasis. It appeared positive on the PD-L1 staining. Other immunohistochemistry (ALK/ROS/NTRK) was negative. Her lung function at this point was 51% forced expiratory volume (FEV1) (1.21) and 73% diffusing capacity of the lungs for carbon monoxide (DLCO). She consented to radical treatment with four weeks of radiotherapy dosed at 55 Gy/20 with concurrent chemotherapy. Her initial scan post radiotherapy showed a limited response to treatment, but her subsequent CT scan in a year showed that there was no tumor visible on axial images but there was apparent collapse of the left lung base. Post radiotherapy imaging showed complete response to treatment. It also showed two small bullae seen in the post aspect of the lower lobe. Five months later, she had a follow-up scan (Figures 4,5). Coronal views showed upward curving of the lower segmental bronchi and pulmonary vessels. The two small bullae initially seen in the post aspect of the lower lobe seemed to have relocated to the upper zone anteriorly. Lung torsion with 180-degree rotation was diagnosed. The patient was clinically well; hence, it did not warrant surgical referral.","[""lung adenocarcinoma""]","[""lung adenocarcinoma""]",True,"[[""hilar"", ""lymphadenopathy""], [""mediastinal"", ""lymphadenopathy""]]" -011,3,1,Efficacy_of_Selpercatinib_in_Non_small_Cell_Lung_Cancer_With_Bilateral_Internal__PMC12021377.html,"Three new intracranial lesions were identified, accompanied by clinical manifestations of paresthesia and reduced muscular strength in the lower limbs.Near-complete resolution of multiple supratentorial and infratentorial nodular lesions, with the absence of gadolinium enhancement, except for a faint residual signal at the cisternal segment of the right eighth cranial nerveSignificant symptomatic improvement within one week of treatment, including complete hearing recovery and a substantial reduction of dizziness and headache complaints.Fourth-line treatment with selpercatinib (160 mg twice daily) was initiatedDisease progression was identified with the emergence of a new growing nodule measuring 11 mm in its longest diameter.First-line systemic therapy with a platinum-based doublet, completing six cycles with a partial tumor response according to Response Evaluation Criteria in Solid Tumors (RECIST) criteria","Three new intracranial lesions were identified, accompanied by clinical manifestations of paresthesia and reduced muscular strength in the lower limbs.Near-complete resolution of multiple supratentorial and infratentorial nodular lesions, with the absence of gadolinium enhancement, except for a faint residual signal at the cisternal segment of the right eighth cranial nerveSignificant symptomatic improvement within one week of treatment, including complete hearing recovery and a substantial reduction of dizziness and headache complaints.Fourth-line treatment with selpercatinib (160 mg twice daily) was initiatedDisease progression was identified with the emergence of a new growing nodule measuring 11 mm in its longest diameter.First-line systemic therapy with a platinum-based doublet, completing six cycles with a partial tumor response according to Response Evaluation Criteria in Solid Tumors (RECIST) criteria"," +after TIA: CT-Angiography showed no large vessel occlusion or acute intracranial process; patient discharged to hospice care","[""Non-small Cell Lung Cancer""]","[""squamous cell histology""]",True,"[[""left atrium"", ""tumor thrombus""], [""right lower lobe"", ""large hypermetabolic mass""], [""mediastinum"", ""enlarged hypermetabolic subcarinal nodes""]]" +011,0,0,Efficacy_of_Selpercatinib_in_Non_small_Cell_Lung_Cancer_With_Bilateral_Internal__PMC12021377.html,"Three new intracranial lesions were identified, accompanied by clinical manifestations of paresthesia and reduced muscular strength in the lower limbs.Near-complete resolution of multiple supratentorial and infratentorial nodular lesions, with the absence of gadolinium enhancement, except for a faint residual signal at the cisternal segment of the right eighth cranial nerveSignificant symptomatic improvement within one week of treatment, including complete hearing recovery and a substantial reduction of dizziness and headache complaints.Fourth-line treatment with selpercatinib (160 mg twice daily) was initiatedDisease progression was identified with the emergence of a new growing nodule measuring 11 mm in its longest diameter.First-line systemic therapy with a platinum-based doublet, completing six cycles with a partial tumor response according to Response Evaluation Criteria in Solid Tumors (RECIST) criteria","Three new intracranial lesions were identified, accompanied by clinical manifestations of paresthesia and reduced muscular strength in the lower limbs.Near-complete resolution of multiple supratentorial and infratentorial nodular lesions, with the absence of gadolinium enhancement, except for a faint residual signal at the cisternal segment of the right eighth cranial nerveSignificant symptomatic improvement within one week of treatment, including complete hearing recovery and a substantial reduction of dizziness and headache complaints.Fourth-line treatment with selpercatinib (160 mg twice daily) was initiatedDisease progression was identified with the emergence of a new growing nodule measuring 11 mm in its longest diameter.First-line systemic therapy with a platinum-based doublet, completing six cycles with a partial tumor response according to Response Evaluation Criteria in Solid Tumors (RECIST) criteria"," Three new intracranial lesions were identified, accompanied by clinical manifestations of paresthesia and reduced muscular strength in the lower limbs. @@ -328,8 +84,9 @@ Multiple lytic skeletal lesions [Figure 1d], few of them with soft tissue compon First-line systemic therapy with a platinum-based doublet, completing six cycles with a partial tumor response according to Response Evaluation Criteria in Solid Tumors (RECIST) criteria -","[""adenocarcinoma""]","[""lung cancer""]",True,"[[""brain"", ""intracranial""], [""bone"", ""osseous""], [""liver"", ""hepatic""], [""lymph nodes"", ""lymphatic""], [""lung"", ""pulmonary""]]" -012,4,2,Multiple_Lung_Metastases_of_Papillary_Thyroid_Carcinoma_Detected_by_Detailed_Pat_PMC11971052.html,"79-year-old male patient with: +","[""Adenocarcinoma""]","[""lung cancer""]",True,"[[""brain"", ""intracranial""], [""bone"", ""osseous""], [""liver"", ""hepatic""], [""lymph nodes"", ""lymphatic""], [""lung"", ""pulmonary""]]" +008,1,1,Case_report__pulmonary_lymphoepithelial_carcinoma_mimicking_tuberculosis__PMC11987468.html,"The patient was a 37-year-old woman who presented with intermittent cough and slight chest discomfort for 3 months. She also had a painless cervical mass for 1 month. The pathological tissue showed granulomatous inflammation, caseous necrosis, and Langhans' giant cells observed on left cervical lymph node puncture.","37-year-old woman with intermittent cough and slight chest discomfort for 3 months; painless cervical mass for 1 month; pathological tissue showed granulomatous inflammation, caseous necrosis, and Langhans’ giant cells observed on left cervical lymph node puncture; untreated congenital heart disease (patent ductus arteriosus) for 20 years; hypertension for half a year with irregular use of valsartan; mass measuring approximately 4*3 cm on the left clavicle, well-defined, poorly mobile, non-tender, and without surface ulceration or redness; Physical examination of the lungs was unremarkable. A continuous murmur was auscultated at the left sternal border; Laboratory tests of blood carcinoembryonic antigen (CEA), squamous cell carcinoma antigen, cytokeratin 19 fragment and neuron-specific enolase (NSE) were all normal; Blood routine test, liver and kidney function, electrolytes, procalcitonin (PCT), C-reactive protein (CRP) and T-lymphocyte subsets were all normal; Sputum for acid-fast bacilli (AFB) and GeneXpert MTB/RIF were negative; Blood test of EB virus showed increased antibody title of capsid antigen IgG antibody 750U/mL (Reference:0–20 U/mL), EB virus early antigen IgM antibody 2.57 COI (Cut off index reference:0-1.1) and EB virus core antigen IgG antibody 600U/mL(Reference:0–20 U/mL); Repeated ultrasound-guided left supraclavicular lymph node puncture was performed; Histopathology showed focal distribution of epithelioid cells and a few multinucleated giant cells, which suggested granulomatous inflammation (Fig.1); Staining of Acid-fast and methenamine silver were all negative; Lymph node tissue for GeneXpert MTB/RIF and TB culture were all negative; Chest CT scan showed mass(34 × 43 mm) in the middle lobe of the right lung (A,D; blue arrows) and multiple enlarged lymph nodes in mediastinum (B,C; red arrows); Lung biopsy shows lymphoepithelial carcinoma. The tumor cells are densely nestled, the tumor cells have a blurred boundary, large alveoli, eosinophilic nuclei, and the mesenchymal is accompanied by lymphocyte infiltration. (HE staining, 400×)); Immunohistochemical staining shows CK positive in tumor cells (200×); Immunohistochemical staining showed P40 positive in tumor cells (200×); In situ hybridization showed EBER positive in tumor cells (200×); Chest CT scan showed a significant improvement of the lung mass(26 × 17 mm)and reduced lymph nodes after chemotherapy and immunotherapy; Biopsy of left neck lymph node showed granulomatous inflammation. Enhanced CT scan showed mass in the middle lobe of the right lung and multiple enlarged lymph nodes in left neck, mediastinum and right hilum. Percutaneous lung biopsy was performed, showing EBV-positive poorly differentiated carcinoma consistent with lymphoepithelioma. Nasopharyngoscopy excluded nasopharyngeal carcinoma. Repeated CT 1.5 months later showed significant reduction of lung lesions and cervical enlarged lymph nodes.","37-year-old woman with intermittent cough and slight chest discomfort for 3 months; painless cervical mass for 1 month; pathological tissue showed granulomatous inflammation, caseous necrosis, and Langhans’ giant cells observed on left cervical lymph node puncture; untreated congenital heart disease (patent ductus arteriosus) for 20 years; hypertension for half a year with irregular use of valsartan; mass measuring approximately 4*3 cm on the left clavicle, well-defined, poorly mobile, non-tender, and without surface ulceration or redness; Physical examination of the lungs was unremarkable. A continuous murmur was auscultated at the left sternal border; Laboratory tests of blood carcinoembryonic antigen (CEA), squamous cell carcinoma antigen, cytokeratin 19 fragment and neuron-specific enolase (NSE) were all normal; Blood routine test, liver and kidney function, electrolytes, procalcitonin (PCT), C-reactive protein (CRP) and T-lymphocyte subsets were all normal; Sputum for acid-fast bacilli (AFB) and GeneXpert MTB/RIF were negative; Blood test of EB virus showed increased antibody title of capsid antigen IgG antibody 750U/mL (Reference:0–20 U/mL), EB virus early antigen IgM antibody 2.57 COI (Cut off index reference:0-1.1) and EB virus core antigen IgG antibody 600U/mL(Reference:0–20 U/mL); Repeated ultrasound-guided left supraclavicular lymph node puncture was performed; Histopathology showed focal distribution of epithelioid cells and a few multinucleated giant cells, which suggested granulomatous inflammation (Fig.1); Staining of Acid-fast and methenamine silver were all negative; Lymph node tissue for GeneXpert MTB/RIF and TB culture were all negative; Chest CT scan showed mass(34 × 43 mm) in the middle lobe of the right lung (A,D; blue arrows) and multiple enlarged lymph nodes in mediastinum (B,C; red arrows); Lung biopsy shows lymphoepithelial carcinoma. The tumor cells are densely nestled, the tumor cells have a blurred boundary, large alveoli, eosinophilic nuclei, and the mesenchymal is accompanied by lymphocyte infiltration. (HE staining, 400×)); Immunohistochemical staining shows CK positive in tumor cells (200×); Immunohistochemical staining showed P40 positive in tumor cells (200×); In situ hybridization showed EBER positive in tumor cells (200×); Chest CT scan showed a significant improvement of the lung mass(26 × 17 mm)and reduced lymph nodes after chemotherapy and immunotherapy; Biopsy of left neck lymph node showed granulomatous inflammation. Enhanced CT scan showed mass in the middle lobe of the right lung and multiple enlarged lymph nodes in left neck, mediastinum and right hilum. Percutaneous lung biopsy was performed, showing EBV-positive poorly differentiated carcinoma consistent with lymphoepithelioma. Nasopharyngoscopy excluded nasopharyngeal carcinoma. Repeated CT 1.5 months later showed significant reduction of lung lesions and cervical enlarged lymph nodes.","[""Lymphoepithelial Carcinoma""]","[""EBV-positive poorly differentiated carcinoma"", ""nasopharyngeal carcinoma""]",True,"[[""lung"", ""middle lobe""], [""lymph nodes"", ""mediastinum""], [""lymph nodes"", ""left neck""], [""lymph nodes"", ""right hilum""]]" +012,0,1,Multiple_Lung_Metastases_of_Papillary_Thyroid_Carcinoma_Detected_by_Detailed_Pat_PMC11971052.html,"79-year-old male patient with: - Height: 174 cm - Weight: 65 kg - BMI: 21.5 kg/m² @@ -383,8 +140,143 @@ Immunohistochemistry showed positive staining for TTF-1, indicating lung origin The patient's postoperative course was uneventful, with no complications noted. 5 years ago: Total thyroidectomy performed for papillary thyroid carcinoma (PTC) with comorbidities of chronic obstructive pulmonary disease and hypertension. 2 years ago: A nodule in the right upper lobe of the lung was identified, which was followed up with chest CT scans. Compared to two years prior, an increase in nodule density was observed, prompting a transbronchial biopsy; however, no definitive diagnosis was made. -6 months post-surgery: No evidence of recurrence.","[""papillary thyroid carcinoma"", ""adenocarcinoma""]","[""pT1a [m] papillary thyroid microcarcinomas"", ""lung adenocarcinoma""]",True,"[[""cervical lymph nodes"", ""papillary thyroid carcinoma""]]" -016,0,0,Precise_Localization_of_the_Subsolid_Lesion_by_Colour_Marking_under_CT_Guided_Co_PMC12040305.html,"51-year-old female patient with a subsolid pulmonary lesion. The lesion was followed up for 4 years and subsequently resected videothoracoscopically after preoperative labeling with a mixture of blue dye and contrast agent. +6 months post-surgery: No evidence of recurrence.","[""Papillary Thyroid Carcinoma"", ""Adenocarcinoma""]","[""pT1a [m] papillary thyroid microcarcinomas"", ""lung adenocarcinoma""]",True,"[[""cervical lymph nodes"", ""papillary thyroid carcinoma""]]" +001,1,0,Intriguing_Encounter__Unveiling_Squamous_Cell_Carcinoma_Lung_with_Rare_Bilateral_PMC12020972.html,"44-year-old male diagnosed as squamous cell carcinoma of the lung +Pituitary metastasis identified on 18F-FDG PET/CT +Renal metastasis identified on 18F-FDG PET/CT +Right-sided chest pain for 2 months +Dry cough for 2 months +Fever (on-off) for 2 months +Hematuria for 2 months +No history of Antitubercular treatment (ATT) intake +Tobacco chewer for >20 years +Decreased air entry on the right side of the lung +Contrast-enhanced computed tomography (CECT) thorax revealed a heterogeneous lesion in the mediastinal region abutting the horizontal fissure and cavitation within +Lesion associated with multiple centrilobular nodules arranged in a linear branching pattern +Bronchoscopy done with bronchoscopic-guided biopsy +Bronchoalveolar lavage (BAL) fluid samples taken +BAL sample sent for cytopathological examination was negative for malignant cells +18F-FDG PET/CT scan revealed FDG-avid well-defined soft tissue primary mass measuring 5.6 cm x 7.7 cm x 8.3 cm in size with spiculated margins in the upper lobe of the right lung with collapse and consolidation of right lung +FDG avid metastases to mediastinal, abdominopelvic lymph nodes and right-sided pleural deposits +Multiple sub-centimetric to centimetric-sized bilateral lung nodules were noted +It was associated with multiple FDG avid brain lesions involving the bilateral cerebral cortex, cerebellum and pituitary +FDG avid bilateral hypodense few (3 in number) soft tissue density bilateral renal masses (Figure 1b, largest measuring 2.8 cm x 2.6 cm) +Multiple lytic skeletal lesions [Figure 1d], few of them with soft tissue component involvement were noted","44-year-old male diagnosed as squamous cell carcinoma of the lung +Pituitary metastasis identified on 18F-FDG PET/CT +Renal metastasis identified on 18F-FDG PET/CT +Right-sided chest pain for 2 months +Dry cough for 2 months +Fever (on-off) for 2 months +Hematuria for 2 months +No history of Antitubercular treatment (ATT) intake +Tobacco chewer for >20 years +Decreased air entry on the right side of the lung +Contrast-enhanced computed tomography (CECT) thorax revealed a heterogeneous lesion in the mediastinal region abutting the horizontal fissure and cavitation within +Lesion associated with multiple centrilobular nodules arranged in a linear branching pattern +Bronchoscopy done with bronchoscopic-guided biopsy +Bronchoalveolar lavage (BAL) fluid samples taken +BAL sample sent for cytopathological examination was negative for malignant cells +18F-FDG PET/CT scan revealed FDG-avid well-defined soft tissue primary mass measuring 5.6 cm x 7.7 cm x 8.3 cm in size with spiculated margins in the upper lobe of the right lung with collapse and consolidation of right lung +FDG avid metastases to mediastinal, abdominopelvic lymph nodes and right-sided pleural deposits +Multiple sub-centimetric to centimetric-sized bilateral lung nodules were noted +It was associated with multiple FDG avid brain lesions involving the bilateral cerebral cortex, cerebellum and pituitary +FDG avid bilateral hypodense few (3 in number) soft tissue density bilateral renal masses (Figure 1b, largest measuring 2.8 cm x 2.6 cm) +Multiple lytic skeletal lesions [Figure 1d], few of them with soft tissue component involvement were noted","44-year-old male diagnosed as squamous cell carcinoma of the lung +Pituitary metastasis identified on 18F-FDG PET/CT +Renal metastasis identified on 18F-FDG PET/CT +Right-sided chest pain for 2 months +Dry cough for 2 months +Fever (on-off) for 2 months +Hematuria for 2 months +No history of Antitubercular treatment (ATT) intake +Tobacco chewer for >20 years +Decreased air entry on the right side of the lung +Contrast-enhanced computed tomography (CECT) thorax revealed a heterogeneous lesion in the mediastinal region abutting the horizontal fissure and cavitation within +Lesion associated with multiple centrilobular nodules arranged in a linear branching pattern +Bronchoscopy done with bronchoscopic-guided biopsy +Bronchoalveolar lavage (BAL) fluid samples taken +BAL sample sent for cytopathological examination was negative for malignant cells +18F-FDG PET/CT scan revealed FDG-avid well-defined soft tissue primary mass measuring 5.6 cm x 7.7 cm x 8.3 cm in size with spiculated margins in the upper lobe of the right lung with collapse and consolidation of right lung +FDG avid metastases to mediastinal, abdominopelvic lymph nodes and right-sided pleural deposits +Multiple sub-centimetric to centimetric-sized bilateral lung nodules were noted +It was associated with multiple FDG avid brain lesions involving the bilateral cerebral cortex, cerebellum and pituitary +FDG avid bilateral hypodense few (3 in number) soft tissue density bilateral renal masses (Figure 1b, largest measuring 2.8 cm x 2.6 cm) +Multiple lytic skeletal lesions [Figure 1d], few of them with soft tissue component involvement were noted","[""Lung Cancer""]","[""squamous cell carcinoma""]",True,"[[""brain"", ""bilateral cerebral cortex""], [""brain"", ""cerebellum""], [""brain"", ""pituitary""], [""kidneys"", ""bilateral renal masses""], [""skeleton"", ""lytic skeletal lesions""], [""lymph nodes"", ""mediastinal lymph nodes""], [""lymph nodes"", ""abdominopelvic lymph nodes""], [""pleura"", ""right-sided pleural deposits""]]" +003,1,1,Management_of_malignant_inferior_vena_cava_syndrome__IVCS__by_endovascular_bridg_PMC12019825.html,"A 73-year-old male patient underwent a procedure to relieve significant stenosis of the suprahepatic IVC due to compression. Under local anesthesia, a 5F sheath was inserted into the right basilic vein and a 10F sheath into the right common femoral vein. Venography showed a significant compression of the suprahepatic IVC. The IVC stenosis was passed using a 0,035-inch hydrophilic guidewire and a multipurpose catheter. Initially, mechanical thrombectomy was performed to exclude possible thrombosis; however, no thrombotic material was extracted. After placing a stiffer exchange guidewire with its distal tip positioned in the right subclavian vein, 3 uncovered self-expanding nitinol sinus-XL stents (OptiMed, Ettlingen, Germany) were deployed in tandem from the SVC to the IVC with an overlap between the stents. Using venography measurements, stents measuring 18 × 80 mm, 18 × 60 mm, and 16 × 80 mm were placed in a cephalic-to-caudal orientation. The final venography revealed adequate flow through the vena cava and bridging stents.","A 73-year-old male patient underwent a procedure to relieve significant stenosis of the suprahepatic IVC due to compression. Under local anesthesia, a 5F sheath was inserted into the right basilic vein and a 10F sheath into the right common femoral vein. Venography showed a significant compression of the suprahepatic IVC. The IVC stenosis was passed using a 0,035-inch hydrophilic guidewire and a multipurpose catheter. Initially, mechanical thrombectomy was performed to exclude possible thrombosis; however, no thrombotic material was extracted. After placing a stiffer exchange guidewire with its distal tip positioned in the right subclavian vein, 3 uncovered self-expanding nitinol sinus-XL stents (OptiMed, Ettlingen, Germany) were deployed in tandem from the SVC to the IVC with an overlap between the stents. Using venography measurements, stents measuring 18 × 80 mm, 18 × 60 mm, and 16 × 80 mm were placed in a cephalic-to-caudal orientation. The final venography revealed adequate flow through the vena cava and bridging stents. + +Diagnosed with SCLC 15 months previously. Received 6 cycles of carboplatin/etoposide chemotherapy, followed by thoracic radiotherapy and prophylactic cranial irradiation. Lost 20 kg of body weight within 12 months. Performance status was recorded (4) on the Eastern Cooperative Oncology Group scale on the day of admission. Vital signs: systolic/diastolic blood pressure 100/70 mmHg, heart rate 90 bpm, oxygen saturation 89%, body temperature 36,9°C/98° F. Laboratory results: hemoglobin 12,6 g/dl (normal range 14-18 g/dl), platelets 260 × 103/μl (150-450 × 103/μl), alkaline phosphatase 94 U/L (26-112 U/L), alanine aminotransferase 40 U/L (5-35 U/L), aspartate aminotransferase 34 U/L (<40 U/L), total bilirubin 1.2 mg/dl, and creatinine 0.9 mg/dl. A large tumor involving the right lower and middle lung lobe measured (17,6 × 19,3 × 18,6) mm (maximal axial x coronal x sagittal dimension), which causes significant compression of the IVC (yellow arrows) mainly at the level of its entry into the right heart atrium. Multiple enlarged mediastinal lymph nodes, infiltration of the visceral pleura and right hemidiaphragm, ascites, and peritoneal metastases were other salient findings underlining disease progression. + +Three self-expanding stents (yellow arrows) were positioned in tandem from the superior vena cava (SVC) (red arrow shows the most cephalic part of the stents) to the IVC to restore venous patency. Fig. 3. The final venography revealed adequate flow through the bridging stents (yellow arrows). The patient's IVCS symptoms, mainly trunk and lower limb edema, were significantly alleviated within 48 h. Low-molecular-weight heparin was administered for anticoagulation. + +The patient died with a large tumor involving the right lower and middle lung lobe measured (17,6 × 19,3 × 18,6) mm (maximal axial x coronal x sagittal dimension), which causes significant compression of the IVC (yellow arrows) mainly at the level of its entry into the right heart atrium.","- Diagnosed with SCLC 15 months previously +- Received 6 cycles of carboplatin/etoposide chemotherapy, followed by thoracic radiotherapy and prophylactic cranial irradiation +- Lost 20 kg of body weight within 12 months +- Performance status was recorded (4) on the Eastern Cooperative Oncology Group scale on the day of admission +- Underwent a procedure to relieve significant stenosis of the suprahepatic IVC due to compression +- Three self-expanding stents were positioned in tandem from the superior vena cava (SVC) to the IVC to restore venous patency +- The patient's IVCS symptoms, mainly trunk and lower limb edema, were significantly alleviated within 48 h +- Low-molecular-weight heparin was administered for anticoagulation +- The patient died with a large tumor involving the right lower and middle lung lobe measured (17,6 × 19,3 × 18,6) mm (maximal axial x coronal x sagittal dimension), which causes significant compression of the IVC (yellow arrows) mainly at the level of its entry into the right heart atrium","[""Small Cell Lung Cancer""]","[""Small Cell Lung Cancer""]",True,"[[""mediastinal lymph nodes"", ""enlarged""], [""visceral pleura"", ""infiltration""], [""right hemidiaphragm"", ""infiltration""], [""peritoneum"", ""metastases""]]" +006,1,0,Lung_cancer_with_diabetes_mellitus_and_polymyalgia_rheumatica_during_long_term_n_PMC12001326.html,"Lung cancer (stage IV) diagnosedRadiation therapy for pelvic lesion (45 Gy/15 Fr)Chemotherapy (carboplatin + paclitaxel + bevacizumab for four courses)Bevacizumab maintenance therapyRight adrenal metastasis largerNew left adrenal metastasis observedRe-enlargement of the right adrenal metastasis detectedRadiation therapy for the right adrenal lesion (50 Gy/25 Fr)Chemotherapy (two courses of docetaxel monotherapy) administeredEnlargement of the left adrenal metastasis detectedNivolumab monotherapy as fifth-line therapy initiatedDiabetes mellitus (DM) diagnosed: Blood glucose level increased to 468 mg/dl, Urinary ketones negative, pancreatic amylase not elevated, and autoantibodies including anti-glutamic acid decarboxylase (GAD) antibodies negativePolymyalgia rheumatica (PMR) diagnosed: Muscle pain in the femoral area and neck appeared, which did not improve with nonsteroidal anti-inflammatory drugs. CT and magnetic resonance imaging showed no obvious cancer progressionNivolumab treatment continued","Lung cancer (stage IV) diagnosedRadiation therapy for pelvic lesion (45 Gy/15 Fr)Chemotherapy (carboplatin + paclitaxel + bevacizumab for four courses)Bevacizumab maintenance therapyRight adrenal metastasis largerNew left adrenal metastasis observedRe-enlargement of the right adrenal metastasis detectedRadiation therapy for the right adrenal lesion (50 Gy/25 Fr)Chemotherapy (two courses of docetaxel monotherapy) administeredEnlargement of the left adrenal metastasis detectedNivolumab monotherapy as fifth-line therapy initiatedDiabetes mellitus (DM) diagnosed: Blood glucose level increased to 468 mg/dl, Urinary ketones negative, pancreatic amylase not elevated, and autoantibodies including anti-glutamic acid decarboxylase (GAD) antibodies negativePolymyalgia rheumatica (PMR) diagnosed: Muscle pain in the femoral area and neck appeared, which did not improve with nonsteroidal anti-inflammatory drugs. CT and magnetic resonance imaging showed no obvious cancer progressionNivolumab treatment continued","[ + { + ""date"": ""June 2014"", + ""text"": ""Lung cancer (stage IV) diagnosed"" + }, + { + ""date"": ""July 2014"", + ""text"": ""Radiation therapy for pelvic lesion (45 Gy/15 Fr)"" + }, + { + ""date"": ""July 2014"", + ""text"": ""Chemotherapy (carboplatin + paclitaxel + bevacizumab for four courses)"" + }, + { + ""date"": ""July 2014"", + ""text"": ""Bevacizumab maintenance therapy"" + }, + { + ""date"": ""after 15 cycles of maintenance therapy"", + ""text"": ""Right adrenal metastasis larger"" + }, + { + ""date"": ""after 15 cycles of maintenance therapy"", + ""text"": ""New left adrenal metastasis observed"" + }, + { + ""date"": ""January 2018"", + ""text"": ""Re-enlargement of the right adrenal metastasis detected"" + }, + { + ""date"": ""January 2018"", + ""text"": ""Radiation therapy for the right adrenal lesion (50 Gy/25 Fr)"" + }, + { + ""date"": ""January 2018"", + ""text"": ""Chemotherapy (two courses of docetaxel monotherapy) administered"" + }, + { + ""date"": ""February 2019"", + ""text"": ""Enlargement of the left adrenal metastasis detected"" + }, + { + ""date"": ""February 2019"", + ""text"": ""Nivolumab monotherapy as fifth-line therapy initiated"" + }, + { + ""date"": ""May 2022"", + ""text"": ""Diabetes mellitus (DM) diagnosed: Blood glucose level increased to 468 mg/dl, Urinary ketones negative, pancreatic amylase not elevated, and autoantibodies including anti-glutamic acid decarboxylase (GAD) antibodies negative"" + }, + { + ""date"": ""four years and 5 months after starting nivolumab treatment"", + ""text"": ""Polymyalgia rheumatica (PMR) diagnosed: Muscle pain in the femoral area and neck appeared, which did not improve with nonsteroidal anti-inflammatory drugs. CT and magnetic resonance imaging showed no obvious cancer progression"" + }, + { + ""date"": ""four years and 5 months after starting nivolumab treatment"", + ""text"": ""Nivolumab treatment continued"" + } +]","[""Lung Cancer""]","[""stage IV lung cancer""]",True,"[[""right adrenal"", ""re-enlargement""], [""left adrenal"", ""enlargement""]]" +009,1,1,Radiotherapy_for_Lung_Cancer__An_Unrecognized_Cause_of_Lung_Torsion__PMC11962223.html,"A 73-year-old lady presented with a long history of bilateral chest wall discomfort, exertional breathlessness, and chronic fatigue. She was found to have a left lung opacification on chest radiograph, which prompted a computed tomography scan and positron emission tomography-computed tomography (PET-CT) scan, which confirmed an avid 53 mm left upper lobe mass with associated hilar and mediastinal lymphadenopathy staging the disease as T3N2M0. An endobronchial ultrasound scan and biopsy (EBUS) sampling of station 11L confirmed lung adenocarcinoma metastasis. It appeared positive on the PD-L1 staining. Other immunohistochemistry (ALK/ROS/NTRK) was negative. Her lung function at this point was 51% forced expiratory volume (FEV1) (1.21) and 73% diffusing capacity of the lungs for carbon monoxide (DLCO). She consented to radical treatment with four weeks of radiotherapy dosed at 55 Gy/20 with concurrent chemotherapy. Her initial scan post radiotherapy showed a limited response to treatment, but her subsequent CT scan in a year showed that there was no tumor visible on axial images but there was apparent collapse of the left lung base. Post radiotherapy imaging showed complete response to treatment. It also showed two small bullae seen in the post aspect of the lower lobe. Five months later, she had a follow-up scan (Figures 4,5). Coronal views showed upward curving of the lower segmental bronchi and pulmonary vessels. The two small bullae initially seen in the post aspect of the lower lobe seemed to have relocated to the upper zone anteriorly. Lung torsion with 180-degree rotation was diagnosed. The patient was clinically well; hence, it did not warrant surgical referral.","A 73-year-old lady presented with a long history of bilateral chest wall discomfort, exertional breathlessness, and chronic fatigue. She was found to have a left lung opacification on chest radiograph, which prompted a computed tomography scan and positron emission tomography-computed tomography (PET-CT) scan, which confirmed an avid 53 mm left upper lobe mass with associated hilar and mediastinal lymphadenopathy staging the disease as T3N2M0. An endobronchial ultrasound scan and biopsy (EBUS) sampling of station 11L confirmed lung adenocarcinoma metastasis. It appeared positive on the PD-L1 staining. Other immunohistochemistry (ALK/ROS/NTRK) was negative. Her lung function at this point was 51% forced expiratory volume (FEV1) (1.21) and 73% diffusing capacity of the lungs for carbon monoxide (DLCO). She consented to radical treatment with four weeks of radiotherapy dosed at 55 Gy/20 with concurrent chemotherapy. Her initial scan post radiotherapy showed a limited response to treatment, but her subsequent CT scan in a year showed that there was no tumor visible on axial images but there was apparent collapse of the left lung base. Post radiotherapy imaging showed complete response to treatment. It also showed two small bullae seen in the post aspect of the lower lobe. Five months later, she had a follow-up scan (Figures 4,5). Coronal views showed upward curving of the lower segmental bronchi and pulmonary vessels. The two small bullae initially seen in the post aspect of the lower lobe seemed to have relocated to the upper zone anteriorly. Lung torsion with 180-degree rotation was diagnosed. The patient was clinically well; hence, it did not warrant surgical referral.","A 73-year-old lady presented with a long history of bilateral chest wall discomfort, exertional breathlessness, and chronic fatigue. She was found to have a left lung opacification on chest radiograph, which prompted a computed tomography scan and positron emission tomography-computed tomography (PET-CT) scan, which confirmed an avid 53 mm left upper lobe mass with associated hilar and mediastinal lymphadenopathy staging the disease as T3N2M0. An endobronchial ultrasound scan and biopsy (EBUS) sampling of station 11L confirmed lung adenocarcinoma metastasis. It appeared positive on the PD-L1 staining. Other immunohistochemistry (ALK/ROS/NTRK) was negative. Her lung function at this point was 51% forced expiratory volume (FEV1) (1.21) and 73% diffusing capacity of the lungs for carbon monoxide (DLCO). She consented to radical treatment with four weeks of radiotherapy dosed at 55 Gy/20 with concurrent chemotherapy. Her initial scan post radiotherapy showed a limited response to treatment, but her subsequent CT scan in a year showed that there was no tumor visible on axial images but there was apparent collapse of the left lung base. Post radiotherapy imaging showed complete response to treatment. It also showed two small bullae seen in the post aspect of the lower lobe. Five months later, she had a follow-up scan (Figures 4,5). Coronal views showed upward curving of the lower segmental bronchi and pulmonary vessels. The two small bullae initially seen in the post aspect of the lower lobe seemed to have relocated to the upper zone anteriorly. Lung torsion with 180-degree rotation was diagnosed. The patient was clinically well; hence, it did not warrant surgical referral.","[""Lung Adenocarcinoma""]","[""lung adenocarcinoma""]",True,"[[""hilar"", ""lymphadenopathy""], [""mediastinal"", ""lymphadenopathy""]]" +016,1,1,Precise_Localization_of_the_Subsolid_Lesion_by_Colour_Marking_under_CT_Guided_Co_PMC12040305.html,"51-year-old female patient with a subsolid pulmonary lesion. The lesion was followed up for 4 years and subsequently resected videothoracoscopically after preoperative labeling with a mixture of blue dye and contrast agent. Born in 1970, underwent resection of malignant melanoma in April 2013. Suspicious lymph node (LU) in the left axilla detected on ultrasound, biopsy confirmed metastasis of malignant melanoma. PET/CT showed solitary finding in the left axilla. Dissection of the left axilla performed, only one of 19 LNs affected by metastasis. Molecular genetic testing revealed BRAF mutation at codon 600, targeted therapy with BRAF inhibitors deployed. Routine CT scan of lungs in November 2017 detected new asymptomatic lesion in segment S10 of right lower lobe, measuring 7 mm in size. Follow-up CT scan in June 2020 showed lesion changed character to subsolid lesion with solid component. PET/CT scan in July 2020 confirmed persistence of the lesion without increased metabolic activity. @@ -402,4 +294,112 @@ Suspicious lymph node (LU) in the left axilla detected on ultrasound, biopsy con Routine CT scan of lungs in November 2017 detected new asymptomatic lesion in segment S10 of right lower lobe, measuring 7 mm in size. Follow-up CT scan in June 2020 showed lesion changed character to subsolid lesion with solid component. PET/CT scan in July 2020 confirmed persistence of the lesion without increased metabolic activity. A further follow-up in April 2021 confirmed persistence and additionally showed a slight size progression of the solid component of the lesion. The resection lines from the tumor margin to the resection margins were adequate, with the smallest measured dimension of 13 mm. No metastatic process was found in the examined mediastinal lymphatic nodes. The postoperative course was uneventful, and the patient was discharged to home care on the fourth day after surgery. -She continues to be followed up regularly and remains free of signs of disease recurrence.","[""malignant melanoma""]","[""melanoma"", ""lung cancer""]",True,"[[""left axilla"", ""lymph node""], [""right lower lobe"", ""lung""]]" +She continues to be followed up regularly and remains free of signs of disease recurrence.","[""Malignant Melanoma""]","[""melanoma"", ""lung cancer""]",True,"[[""left axilla"", ""lymph node""], [""right lower lobe"", ""lung""]]" +014,0,1,Successful_treatment_of_an_elderly_patient_with_lung_squamous_cell_carcinoma_by__PMC11973309.html,"A 73-year-old man presenting with paroxysmal cough and sputum accompanied by chest pain, weight loss, and exertional asthma was admitted to a local hospital on February 13, 2023. A chest computed tomography (CT) scan revealed a mass in the right upper lobe of the lung, raising the suspicion of a malignant tumor (MT). Subsequent positron electron tomography (PET)-CT indicated an irregular lobulated soft tissue mass in the apical segment of the right lung upper lobe, measuring approximately 4.1×3.5 cm and showing increased fluorodeoxyglucose (FDG) uptake (SUV value) and spiculated margins, suggestive of lung cancer (likely squamous cell carcinoma). There were tiny nodular shadows about 0.3 cm in diameter surrounding the mass, and the possibility of metastasis was not ruled out. Several enlarged lymph nodes were visible in regions 10R, 4R, and 2R, the largest measuring approximately 1.7 cm in diameter. that showed varying degrees of increased FDG uptake, suggesting possible metastasis in some lymph nodes. On March 3, 2023, a CT-guided biopsy of the right upper lobe lung mass was performed at our hospital. According to the pathology report (Figure 1), combined with the patient’s medical history and immunohistochemical markers, squamous cell carcinoma was considered (Note: CK7-, CK20-, CK5/6-, NapsinA-, CD56-, P40+, Syn-, CgA-, CD56-, TTF-1-, Ki-67 75%). As shown in the microscopic cellular morphology and tissue architecture ofFigure 1, the entire field demonstrates complete loss of normal pulmonary tissue structure.","Diagnosed with stage cT2bN2M0 right lung squamous cell carcinoma on March 14, 2023. Immunotherapy combined with chemotherapy was started: paclitaxel liposome 240 mg on d1, carboplatin 500 mg on d1, and tislelizumab 200 mg on d2, every 3 weeks (q3w). Grade III thrombocytopenia occurred post-treatment, with a nadir of 30 × 10^9/L. Immunotherapy regimen was adjusted for the first cycle: tislelizumab 200 mg on d0 + paclitaxel liposome 120 mg on d1, 90 mg on d8 + carboplatin 150 mg on d2, 100 mg on d3-5, every 3 weeks (q3w). However, on May 16, 2023, bacteremia and herpes zoster infection were observed, so antitumor treatment was halted.","Vancomycin was given for anti-infection and anti-viral treatment. After active treatment, the first reexamination on May 29, 2023, with a repeat enhanced chest CT showed an irregular thin-walled cystic lesion in the right upper lobe with fine line compartments, measuring approximately 32×25×27 mm, with enlarged and moderately enhanced lymph nodes in the 10R, 4R, and 2R regions. Compared to the March 3, 2023 CT, the solid component of the right upper lobe mass had essentially disappeared, and the mediastinal lymph nodes were similar in size. Response assessment indicated partial remission, and the second cycle of immunotherapy combined with chemotherapy was administered on June 27, 2023.","[""Malignant tumor"", ""Lung Cancer""]","[""squamous cell carcinoma""]",True,"[[""squamous cell carcinoma"", ""lymph nodes""]]" +004,1,0,Metastatic_INI_1_deficient_undifferentiated_lung_cancer_with_EGFR_19del_mutation_PMC12021797.html,"81-year-old female patient with a 10-day history of progressive chest tightness and dyspnea worsened with physical activity +Chest computed tomography (CT) imaging revealed a large left-sided pleural effusion +Thoracentesis was performed, and the drained pleural fluid was sent to the Department of Pathology for further evaluation +Following thoracic drainage, a subsequent chest CT scan revealed a heterogeneous mass in the left inferior lobe, measuring approximately 6.7 cm × 2.8 cm in its largest cross-section +Contrast-enhanced imaging demonstrated irregular enhancement patterns suggestive of a left lung tumor +Pulmonary window analysis identified multiple nodular high-density foci scattered across both lungs, raising suspicion for bilateral pulmonary metastases +Mediastinal window assessment further revealed bilateral mediastinal lymphadenopathy and enlarged lymph nodes at the left pulmonary hilum, consistent with lymph node metastasis +An abdominal CT scan detected multiple low-density hepatic nodules of varying sizes, with the largest lesion (2.9 cm × 2.6 cm) located in the right hepatic lobe +Annular enhancement was noted in the arterial phase, while marked hypodensity was observed in the portal venous phase, demonstrating a “bull’s eye sign” characteristic of multiple hepatic metastases +Additionally, an enhanced brain CT identified an irregular heterogeneously enhancing mass within the right frontal lobe, with a maximum cross-sectional area of 2.1 cm × 1.6 cm, consistent with brain metastasis +Genetic testing revealed a mutation in the EGFR gene +Next-generation sequencing (NGS) analysis showed that the patient's tumor had a high level of PD-L1 expression +The patient underwent treatment with osimertinib, an EGFR tyrosine kinase inhibitor","81-year-old female patient with a 10-day history of progressive chest tightness and dyspnea worsened with physical activity +Chest computed tomography (CT) imaging revealed a large left-sided pleural effusion +Thoracentesis was performed, and the drained pleural fluid was sent to the Department of Pathology for further evaluation +Following thoracic drainage, a subsequent chest CT scan revealed a heterogeneous mass in the left inferior lobe, measuring approximately 6.7 cm × 2.8 cm in its largest cross-section +Contrast-enhanced imaging demonstrated irregular enhancement patterns suggestive of a left lung tumor +Pulmonary window analysis identified multiple nodular high-density foci scattered across both lungs, raising suspicion for bilateral pulmonary metastases +Mediastinal window assessment further revealed bilateral mediastinal lymphadenopathy and enlarged lymph nodes at the left pulmonary hilum, consistent with lymph node metastasis +An abdominal CT scan detected multiple low-density hepatic nodules of varying sizes, with the largest lesion (2.9 cm × 2.6 cm) located in the right hepatic lobe +Annular enhancement was noted in the arterial phase, while marked hypodensity was observed in the portal venous phase, demonstrating a “bull’s eye sign” characteristic of multiple hepatic metastases +Additionally, an enhanced brain CT identified an irregular heterogeneously enhancing mass within the right frontal lobe, with a maximum cross-sectional area of 2.1 cm × 1.6 cm, consistent with brain metastasis +Genetic testing revealed a mutation in the EGFR gene +Next-generation sequencing (NGS) analysis showed that the patient's tumor had a high level of PD-L1 expression +The patient underwent treatment with osimertinib, an EGFR tyrosine kinase inhibitor","81-year-old female patient with a 10-day history of progressive chest tightness and dyspnea worsened with physical activity +Chest computed tomography (CT) imaging revealed a large left-sided pleural effusion +Thoracentesis was performed, and the drained pleural fluid was sent to the Department of Pathology for further evaluation +Following thoracic drainage, a subsequent chest CT scan revealed a heterogeneous mass in the left inferior lobe, measuring approximately 6.7 cm × 2.8 cm in its largest cross-section +Contrast-enhanced imaging demonstrated irregular enhancement patterns suggestive of a left lung tumor +Pulmonary window analysis identified multiple nodular high-density foci scattered across both lungs, raising suspicion for bilateral pulmonary metastases +Mediastinal window assessment further revealed bilateral mediastinal lymphadenopathy and enlarged lymph nodes at the left pulmonary hilum, consistent with lymph node metastasis +An abdominal CT scan detected multiple low-density hepatic nodules of varying sizes, with the largest lesion (2.9 cm × 2.6 cm) located in the right hepatic lobe +Annular enhancement was noted in the arterial phase, while marked hypodensity was observed in the portal venous phase, demonstrating a “bull’s eye sign” characteristic of multiple hepatic metastases +Additionally, an enhanced brain CT identified an irregular heterogeneously enhancing mass within the right frontal lobe, with a maximum cross-sectional area of 2.1 cm × 1.6 cm, consistent with brain metastasis +Genetic testing revealed a mutation in the EGFR gene +Next-generation sequencing (NGS) analysis showed that the patient's tumor had a high level of PD-L1 expression +The patient underwent treatment with osimertinib, an EGFR tyrosine kinase inhibitor","[""Lung Cancer""]","[""non-small cell lung cancer""]",True,"[[""liver"", ""multiple low-density hepatic nodules""], [""lymph nodes"", ""bilateral mediastinal lymphadenopathy""], [""brain"", ""irregular heterogeneously enhancing mass""]]" +010,0,1,Re_do_robot_assisted_salvage_lobectomy_after_esophagectomy_with_gastric_pull_up__PMC11980297.html,"55-year-old female underwent esophagectomy with gastric pull-up reconstruction for squamous cell carcinoma (SCC) of the esophagus (cT3N2M0, stage IIIB) +Six years later, computed tomography (CT) scan showed stage IA Thyroid Transcription Factor-1 (TTF-1) positive adenocarcinoma in the left upper lobe treated by stereotactic radiotherapy +Two years later, a SCC of the right upper lobe (RUL) was found with tumor diameter of 54 mm and high Programmed Death-Ligand 1 (PD-L1) expression +Pembrolizumab initiated with curative intent but showed no biological response +Salvage lobectomy including complete mediastinal lymph node dissection performed +Positioned in left lateral decubitus position, adhesions in closure-line of the previous thoracotomy and thus RATS was deemed feasible. +After standard port placement (Fig.2A), docking and instrument placement (Tip-up fenestrated grasper™, Cadière forceps™, Maryland bipolar dissector™ and the Monopolar spatula™) adhesiolysis between the lung and the chest wall and taking down dense adhesions between the lung and the intrathoracic gastric pull-up the nasogastric tube was exposed (Fig.2B). +The nasogastric tube was placed in the gastric pull-up as a safety measure. +Meticulous dissection of its vascularization enabled subsequent standard lobectomy of the RUL with complete lymph node dissection (R4, 7, 10 and 11). +After removal of the specimen and chest tube placement, a Ropivacaine® intercostal nerve block levels T4 to T9 was installed. +Total operative time was 3 h 44 min with 50 ml blood loss.","55-year-old female underwent esophagectomy with gastric pull-up reconstruction for squamous cell carcinoma (SCC) of the esophagus (cT3N2M0, stage IIIB) +Six years later, computed tomography (CT) scan showed stage IA Thyroid Transcription Factor-1 (TTF-1) positive adenocarcinoma in the left upper lobe treated by stereotactic radiotherapy +Two years later, a SCC of the right upper lobe (RUL) was found with tumor diameter of 54 mm and high Programmed Death-Ligand 1 (PD-L1) expression +Pembrolizumab initiated with curative intent but showed no biological response +Salvage lobectomy including complete mediastinal lymph node dissection performed +Positioned in left lateral decubitus position, adhesions in closure-line of the previous thoracotomy and thus RATS was deemed feasible. +After standard port placement (Fig.2A), docking and instrument placement (Tip-up fenestrated grasper™, Cadière forceps™, Maryland bipolar dissector™ and the Monopolar spatula™) adhesiolysis between the lung and the chest wall and taking down dense adhesions between the lung and the intrathoracic gastric pull-up the nasogastric tube was exposed (Fig.2B). +The nasogastric tube was placed in the gastric pull-up as a safety measure. +Meticulous dissection of its vascularization enabled subsequent standard lobectomy of the RUL with complete lymph node dissection (R4, 7, 10 and 11). +After removal of the specimen and chest tube placement, a Ropivacaine® intercostal nerve block levels T4 to T9 was installed. +Total operative time was 3 h 44 min with 50 ml blood loss.","55-year-old female underwent esophagectomy with gastric pull-up reconstruction for squamous cell carcinoma (SCC) of the esophagus (cT3N2M0, stage IIIB) +Six years later, computed tomography (CT) scan showed stage IA Thyroid Transcription Factor-1 (TTF-1) positive adenocarcinoma in the left upper lobe treated by stereotactic radiotherapy +Two years later, a SCC of the right upper lobe (RUL) was found with tumor diameter of 54 mm and high Programmed Death-Ligand 1 (PD-L1) expression +Pembrolizumab initiated with curative intent but showed no biological response +Salvage lobectomy including complete mediastinal lymph node dissection performed +Positioned in left lateral decubitus position, adhesions in closure-line of the previous thoracotomy and thus RATS was deemed feasible. +After standard port placement (Fig.2A), docking and instrument placement (Tip-up fenestrated grasper™, Cadière forceps™, Maryland bipolar dissector™ and the Monopolar spatula™) adhesiolysis between the lung and the chest wall and taking down dense adhesions between the lung and the intrathoracic gastric pull-up the nasogastric tube was exposed (Fig.2B). +The nasogastric tube was placed in the gastric pull-up as a safety measure. +Meticulous dissection of its vascularization enabled subsequent standard lobectomy of the RUL with complete lymph node dissection (R4, 7, 10 and 11). +After removal of the specimen and chest tube placement, a Ropivacaine® intercostal nerve block levels T4 to T9 was installed. +Total operative time was 3 h 44 min with 50 ml blood loss.","[""Squamous Cell Carcinoma"", ""Adenocarcinoma""]","[""Esophageal squamous cell carcinoma"", ""Thyroid Transcription Factor-1 positive adenocarcinoma"", ""Squamous cell carcinoma of the right upper lobe""]",False,[] +013,0,0,Brain_Metastasis_From_Advanced_Stage_Lung_Carcinoma__Differentiating_From_Stroke_PMC11955559.html,"Patient's medical history: +- Diagnosed with stage III NSCLC in the right upper lobe bronchus that had spread throughout the middle and lower lobes (15 months ago) +- PET/CT scans revealed a right supraclavicular node, right upper paratracheal node, multiple additional paratracheal nodes, and enlarged para-aortic nodes +- Upper esophageal stricture treated with dilatation during an esophagogastroduodenoscopy (1 year ago) +- Initiated docetaxel for refractory complications with stage III NSCLC (2 days ago) + +Recent medical events: +- Diagnosed with hypokalemia, given potassium supplement and ondansetron for nausea +- Marked unilateral weakness in left upper extremity, grip strength of 2/5 versus 5/5 strength in the right upper extremity +- Leukopenia, WBC of 1.12 K/μL +- Potassium level still low but increased since previous ED visit +- COVID-19 and flu tests all negative +- Urine testing revealed trace blood and bacteria and was positive for cannabis +- Non-contrast CT results revealed multifocal intracranial lesions with associated vasogenic edema with mild mass effect, consistent with metastatic disease +- CT angiography (CTA) performed, revealing no flow-limiting stenosis or occlusion of major intracranial or cervical arteries +- Multiple bilateral pulmonary nodules and a partially imaged right upper lobe mass were seen, along with asymmetrically enlarged right level IIb nodes, suspicious for metastasis in this clinical setting + +Current medications: +- Docetaxel for refractory complications with stage III NSCLC +- Potassium supplement for hypokalemia +- Ondansetron for nausea","15 months ago: Diagnosed with stage III NSCLC in the right upper lobe bronchus that had spread throughout the middle and lower lobes. PET/CT scans revealed a right supraclavicular node, right upper paratracheal node, multiple additional paratracheal nodes, and enlarged para-aortic nodes. +1 year ago: Upper esophageal stricture treated with dilatation during an esophagogastroduodenoscopy. +2 days ago: Initiated docetaxel for refractory complications with stage III NSCLC. +Current visit: Diagnosed with hypokalemia, given potassium supplement and ondansetron for nausea. Marked unilateral weakness in left upper extremity, grip strength of 2/5 versus 5/5 strength in the right upper extremity. +Current visit: Leukopenia, WBC of 1.12 K/μL. Potassium level still low but increased since previous ED visit. +Current visit: COVID-19 and flu tests all negative. +Current visit: Urine testing revealed trace blood and bacteria and was positive for cannabis. +Current visit: Non-contrast CT results revealed multifocal intracranial lesions with associated vasogenic edema with mild mass effect, consistent with metastatic disease. +Current visit: CT angiography (CTA) performed, revealing no flow-limiting stenosis or occlusion of major intracranial or cervical arteries. +Current visit: Multiple bilateral pulmonary nodules and a partially imaged right upper lobe mass were seen, along with asymmetrically enlarged right level IIb nodes, suspicious for metastasis in this clinical setting.","15 months ago: Diagnosed with stage III NSCLC in the right upper lobe bronchus that had spread throughout the middle and lower lobes. PET/CT scans revealed a right supraclavicular node, right upper paratracheal node, multiple additional paratracheal nodes, and enlarged para-aortic nodes. +1 year ago: Upper esophageal stricture treated with dilatation during an esophagogastroduodenoscopy. +2 days ago: Initiated docetaxel for refractory complications with stage III NSCLC. +Current visit: Diagnosed with hypokalemia, given potassium supplement and ondansetron for nausea. Marked unilateral weakness in left upper extremity, grip strength of 2/5 versus 5/5 strength in the right upper extremity. +Current visit: Leukopenia, WBC of 1.12 K/μL. Potassium level still low but increased since previous ED visit. +Current visit: COVID-19 and flu tests all negative. +Current visit: Urine testing revealed trace blood and bacteria and was positive for cannabis. +Current visit: Non-contrast CT results revealed multifocal intracranial lesions with associated vasogenic edema with mild mass effect, consistent with metastatic disease. +Current visit: CT angiography (CTA) performed, revealing no flow-limiting stenosis or occlusion of major intracranial or cervical arteries. +Current visit: Multiple bilateral pulmonary nodules and a partially imaged right upper lobe mass were seen, along with asymmetrically enlarged right level IIb nodes, suspicious for metastasis in this clinical setting.","[""Non-small Cell Lung Cancer""]","[""stage III NSCLC""]",True,"[[""brain"", ""multifocal intracranial lesions""], [""lung"", ""bilateral pulmonary nodules""], [""lymph nodes"", ""asymmetrically enlarged right level IIb nodes""]]" diff --git a/src/benchmark/output/results/cluster_metadata_summary.csv b/src/benchmark/output/results/cluster_metadata_summary.csv index 11440bd..b258ea6 100644 --- a/src/benchmark/output/results/cluster_metadata_summary.csv +++ b/src/benchmark/output/results/cluster_metadata_summary.csv @@ -1,4 +1,3 @@ cluster,has_metastasis,top_cancers,top_specific_cancers -0,"{""true"": 0.6666666666666666, ""false"": 0.3333333333333333}","[""lymphoepithelial carcinoma""] (1), [""Lung Cancer""] (1), [""SCLC""] (1)","[""EBV-positive poorly differentiated carcinoma"", ""nasopharyngeal carcinoma""] (1), [""Lung Adenocarcinoma""] (1), [""Small Cell Lung Cancer""] (1)" -1,"{""true"": 1.0}","[""lung cancer""] (2), [""Lung cancer""] (1), [""malignant tumor"", ""lung cancer""] (1)","[""squamous cell carcinoma""] (2), [""stage IV lung cancer""] (1), [""non-small cell lung cancer""] (1)" -2,"{""true"": 0.75, ""false"": 0.25}","[""Lung Cancer""] (1), [""non-small cell lung cancer""] (1), [""NSCLC""] (1)","[""Lung Adenocarcinoma""] (1), [""squamous cell histology""] (1), [""stage III NSCLC""] (1)" +0,"{""true"": 0.8571428571428571, ""false"": 0.14285714285714285}","[""Lung Cancer""] (4), [""Non-small Cell Lung Cancer""] (2), [""Adenocarcinoma""] (1)","[""Lung Adenocarcinoma""] (1), [""squamous cell histology""] (1), [""lung cancer""] (1)" +1,"{""true"": 0.75, ""false"": 0.25}","[""Lung Cancer""] (1), [""Lymphoepithelial Carcinoma""] (1), [""Papillary Thyroid Carcinoma"", ""Adenocarcinoma""] (1)","[""Lung Adenocarcinoma""] (1), [""EBV-positive poorly differentiated carcinoma"", ""nasopharyngeal carcinoma""] (1), [""pT1a [m] papillary thyroid microcarcinomas"", ""lung adenocarcinoma""] (1)" diff --git a/src/benchmark/output/results/graph_html_metadata.csv b/src/benchmark/output/results/graph_html_metadata.csv index 7e8bd19..cd2633d 100644 --- a/src/benchmark/output/results/graph_html_metadata.csv +++ b/src/benchmark/output/results/graph_html_metadata.csv @@ -59,13 +59,13 @@ FDG avid metastases to mediastinal, abdominopelvic lymph nodes and right-sided p Multiple sub-centimetric to centimetric-sized bilateral lung nodules were noted It was associated with multiple FDG avid brain lesions involving the bilateral cerebral cortex, cerebellum and pituitary FDG avid bilateral hypodense few (3 in number) soft tissue density bilateral renal masses (Figure 1b, largest measuring 2.8 cm x 2.6 cm) -Multiple lytic skeletal lesions [Figure 1d], few of them with soft tissue component involvement were noted","[""lung cancer""]","[""squamous cell carcinoma""]",True,"[[""brain"", ""bilateral cerebral cortex""], [""brain"", ""cerebellum""], [""brain"", ""pituitary""], [""kidneys"", ""bilateral renal masses""], [""skeleton"", ""lytic skeletal lesions""], [""lymph nodes"", ""mediastinal lymph nodes""], [""lymph nodes"", ""abdominopelvic lymph nodes""], [""pleura"", ""right-sided pleural deposits""]]" +Multiple lytic skeletal lesions [Figure 1d], few of them with soft tissue component involvement were noted","[""Lung Cancer""]","[""squamous cell carcinoma""]",TRUE,"[[""brain"", ""bilateral cerebral cortex""], [""brain"", ""cerebellum""], [""brain"", ""pituitary""], [""kidneys"", ""bilateral renal masses""], [""skeleton"", ""lytic skeletal lesions""], [""lymph nodes"", ""mediastinal lymph nodes""], [""lymph nodes"", ""abdominopelvic lymph nodes""], [""pleura"", ""right-sided pleural deposits""]]" graph_002,_A_Case_of_Multiple_Primary_Pulmonary_Neuroendocrine_Carcinoma_with_EML4_ALK_Fus_PMC11986677.html,"* 2019-03-19: 大细胞神经内分泌癌(大肿瘤)在右肺下叶发现,患者接受手术切除 * 2022-04-27: 病灶稳定,无肿瘤复发或转移 * 2023-08-01: 左主支气管略狭窄 * 2023-10-14: 支气管镜检查发现左主支气管新生物阻塞管腔约50%,病理提示为小细胞肺癌(SCLC) * 2024-05-01: 开始服用阿来替尼600 mg bid,化疗3个周期后停止 -* 2024-10-01: 复查胸腹部CT、单光子发射计算机断层扫描全身骨显象均未发现疾病新进展","[""* 2019-03-19: 大细胞神经内分泌癌(大肿瘤)在右肺下叶发现,患者接受手术切除\n* 2022-04-27: 病灶稳定,无肿瘤复发或转移\n* 2023-08-01: 左主支气管略狭窄\n* 2023-10-14: 支气管镜检查发现左主支气管新生物阻塞管腔约50%,病理提示为小细胞肺癌(SCLC)\n* 2024-05-01: 开始服用阿来替尼600 mg bid,化疗3个周期后停止\n* 2024-10-01: 复查胸腹部CT、单光子发射计算机断层扫描全身骨显象均未发现疾病新进展""]",,"[""\u764c"", ""\u80bf\u7624"", ""\u6076\u6027\u80bf\u7624""]","[""\u5927\u7ec6\u80de\u795e\u7ecf\u5185\u5206\u6ccc\u764c"", ""\u5c0f\u7ec6\u80de\u80ba\u764c""]",False,[] +* 2024-10-01: 复查胸腹部CT、单光子发射计算机断层扫描全身骨显象均未发现疾病新进展","[""* 2019-03-19: 大细胞神经内分泌癌(大肿瘤)在右肺下叶发现,患者接受手术切除\n* 2022-04-27: 病灶稳定,无肿瘤复发或转移\n* 2023-08-01: 左主支气管略狭窄\n* 2023-10-14: 支气管镜检查发现左主支气管新生物阻塞管腔约50%,病理提示为小细胞肺癌(SCLC)\n* 2024-05-01: 开始服用阿来替尼600 mg bid,化疗3个周期后停止\n* 2024-10-01: 复查胸腹部CT、单光子发射计算机断层扫描全身骨显象均未发现疾病新进展""]",,"[""\u764c"", ""\u80bf\u7624"", ""\u6076\u6027\u80bf\u7624""]","[""\u5927\u7ec6\u80de\u795e\u7ecf\u5185\u5206\u6ccc\u764c"", ""\u5c0f\u7ec6\u80de\u80ba\u764c""]",FALSE,[] graph_003,Management_of_malignant_inferior_vena_cava_syndrome__IVCS__by_endovascular_bridg_PMC12019825.html,"A 73-year-old male patient underwent a procedure to relieve significant stenosis of the suprahepatic IVC due to compression. Under local anesthesia, a 5F sheath was inserted into the right basilic vein and a 10F sheath into the right common femoral vein. Venography showed a significant compression of the suprahepatic IVC. The IVC stenosis was passed using a 0,035-inch hydrophilic guidewire and a multipurpose catheter. Initially, mechanical thrombectomy was performed to exclude possible thrombosis; however, no thrombotic material was extracted. After placing a stiffer exchange guidewire with its distal tip positioned in the right subclavian vein, 3 uncovered self-expanding nitinol sinus-XL stents (OptiMed, Ettlingen, Germany) were deployed in tandem from the SVC to the IVC with an overlap between the stents. Using venography measurements, stents measuring 18 × 80 mm, 18 × 60 mm, and 16 × 80 mm were placed in a cephalic-to-caudal orientation. The final venography revealed adequate flow through the vena cava and bridging stents.","A 73-year-old male patient underwent a procedure to relieve significant stenosis of the suprahepatic IVC due to compression. Under local anesthesia, a 5F sheath was inserted into the right basilic vein and a 10F sheath into the right common femoral vein. Venography showed a significant compression of the suprahepatic IVC. The IVC stenosis was passed using a 0,035-inch hydrophilic guidewire and a multipurpose catheter. Initially, mechanical thrombectomy was performed to exclude possible thrombosis; however, no thrombotic material was extracted. After placing a stiffer exchange guidewire with its distal tip positioned in the right subclavian vein, 3 uncovered self-expanding nitinol sinus-XL stents (OptiMed, Ettlingen, Germany) were deployed in tandem from the SVC to the IVC with an overlap between the stents. Using venography measurements, stents measuring 18 × 80 mm, 18 × 60 mm, and 16 × 80 mm were placed in a cephalic-to-caudal orientation. The final venography revealed adequate flow through the vena cava and bridging stents. Diagnosed with SCLC 15 months previously. Received 6 cycles of carboplatin/etoposide chemotherapy, followed by thoracic radiotherapy and prophylactic cranial irradiation. Lost 20 kg of body weight within 12 months. Performance status was recorded (4) on the Eastern Cooperative Oncology Group scale on the day of admission. Vital signs: systolic/diastolic blood pressure 100/70 mmHg, heart rate 90 bpm, oxygen saturation 89%, body temperature 36,9°C/98° F. Laboratory results: hemoglobin 12,6 g/dl (normal range 14-18 g/dl), platelets 260 × 103/μl (150-450 × 103/μl), alkaline phosphatase 94 U/L (26-112 U/L), alanine aminotransferase 40 U/L (5-35 U/L), aspartate aminotransferase 34 U/L (<40 U/L), total bilirubin 1.2 mg/dl, and creatinine 0.9 mg/dl. A large tumor involving the right lower and middle lung lobe measured (17,6 × 19,3 × 18,6) mm (maximal axial x coronal x sagittal dimension), which causes significant compression of the IVC (yellow arrows) mainly at the level of its entry into the right heart atrium. Multiple enlarged mediastinal lymph nodes, infiltration of the visceral pleura and right hemidiaphragm, ascites, and peritoneal metastases were other salient findings underlining disease progression. @@ -80,7 +80,7 @@ The patient died with a large tumor involving the right lower and middle lung lo - Three self-expanding stents were positioned in tandem from the superior vena cava (SVC) to the IVC to restore venous patency - The patient's IVCS symptoms, mainly trunk and lower limb edema, were significantly alleviated within 48 h - Low-molecular-weight heparin was administered for anticoagulation -- The patient died with a large tumor involving the right lower and middle lung lobe measured (17,6 × 19,3 × 18,6) mm (maximal axial x coronal x sagittal dimension), which causes significant compression of the IVC (yellow arrows) mainly at the level of its entry into the right heart atrium","[""SCLC""]","[""Small Cell Lung Cancer""]",True,"[[""mediastinal lymph nodes"", ""enlarged""], [""visceral pleura"", ""infiltration""], [""right hemidiaphragm"", ""infiltration""], [""peritoneum"", ""metastases""]]" +- The patient died with a large tumor involving the right lower and middle lung lobe measured (17,6 × 19,3 × 18,6) mm (maximal axial x coronal x sagittal dimension), which causes significant compression of the IVC (yellow arrows) mainly at the level of its entry into the right heart atrium","[""Small Cell Lung Cancer""]","[""Small Cell Lung Cancer""]",TRUE,"[[""mediastinal lymph nodes"", ""enlarged""], [""visceral pleura"", ""infiltration""], [""right hemidiaphragm"", ""infiltration""], [""peritoneum"", ""metastases""]]" graph_004,Metastatic_INI_1_deficient_undifferentiated_lung_cancer_with_EGFR_19del_mutation_PMC12021797.html,"81-year-old female patient with a 10-day history of progressive chest tightness and dyspnea worsened with physical activity Chest computed tomography (CT) imaging revealed a large left-sided pleural effusion Thoracentesis was performed, and the drained pleural fluid was sent to the Department of Pathology for further evaluation @@ -117,7 +117,7 @@ Annular enhancement was noted in the arterial phase, while marked hypodensity wa Additionally, an enhanced brain CT identified an irregular heterogeneously enhancing mass within the right frontal lobe, with a maximum cross-sectional area of 2.1 cm × 1.6 cm, consistent with brain metastasis Genetic testing revealed a mutation in the EGFR gene Next-generation sequencing (NGS) analysis showed that the patient's tumor had a high level of PD-L1 expression -The patient underwent treatment with osimertinib, an EGFR tyrosine kinase inhibitor","[""lung cancer""]","[""non-small cell lung cancer""]",True,"[[""liver"", ""multiple low-density hepatic nodules""], [""lymph nodes"", ""bilateral mediastinal lymphadenopathy""], [""brain"", ""irregular heterogeneously enhancing mass""]]" +The patient underwent treatment with osimertinib, an EGFR tyrosine kinase inhibitor","[""Lung Cancer""]","[""non-small cell lung cancer""]",TRUE,"[[""liver"", ""multiple low-density hepatic nodules""], [""lymph nodes"", ""bilateral mediastinal lymphadenopathy""], [""brain"", ""irregular heterogeneously enhancing mass""]]" graph_005,Neoadjuvant_Targeted_Therapy_with_Dacomitinib_in_a_Stage_IIIA_Non_Small_Cell_Lun_PMC11980937.html,"A 54-year-old Chinese male with 30 years of smoking history presented with a worsening cough for 3 months, with a performance status score of 1. Enhanced computed tomography (CT) revealed a 22 mm × 12 mm × 16 mm mass in the right upper lobe with invasion in the right hilum and mediastinal (Figure 1AandB), which were confirmed by positron emission tomography-CT (PET-CT) scan. Immunohistochemistry (IHC) analysis of the biopsy from the lesion in the upper right lobe of the lung was positive for TTF-1, NpA, CK7, CD5/6 and Ki67 (60%); and negative for p40, p63 and CD56. The patient was diagnosed with stage IIIA lung adenocarcinoma (cT1cN2M0). Follow-up targeted NGS analysis of his lung lesion biopsy identified an EGFRG719X with a mutant allele frequency (MAF) of 3.8%. Two cycles of PC chemotherapy (pemetrexed with 0.9g d1 and carboplatin with 600mg d1) and dacomitinib (30mg) were given. The patient underwent video-assisted thoracic surgery (VATS) with right upper lobectomy in July 2023. The tumor was located in the right upper lobe, measuring approximately 1.5*1.5 cm with unclear boundaries. Postoperative pathology results indicated that 10% of the tumor cells remained alive, surrounded by significant fibrosis, necrosis, as well as inflammatory and immune cells. After chemotherapy and dacomitinib induction, there were no lymph node metastases, and the pathological stage was ypT1bN0M0. Two cycles of PC chemotherapy were administered, followed by targeted therapy with dacomitinib as adjuvant treatment for 2 more years in accordance with the diagnosis and treatment guidelines. At the final follow-up in September 2024, no adverse events or disease progression had occurred. A progression-free survival (PFS) of more than 14 months was achieved.","A 54-year-old Chinese male with 30 years of smoking history presented with a worsening cough for 3 months, with a performance status score of 1. Enhanced computed tomography (CT) revealed a 22 mm × 12 mm × 16 mm mass in the right upper lobe with invasion in the right hilum and mediastinal (Figure 1AandB), which were confirmed by positron emission tomography-CT (PET-CT) scan. Immunohistochemistry (IHC) analysis of the biopsy from the lesion in the upper right lobe of the lung was positive for TTF-1, NpA, CK7, CD5/6 and Ki67 (60%); and negative for p40, p63 and CD56. The patient was diagnosed with stage IIIA lung adenocarcinoma (cT1cN2M0). Follow-up targeted NGS analysis of his lung lesion biopsy identified an EGFRG719X with a mutant allele frequency (MAF) of 3.8%. Two cycles of PC chemotherapy (pemetrexed with 0.9g d1 and carboplatin with 600mg d1) and dacomitinib (30mg) were given. @@ -128,7 +128,7 @@ The patient received two cycles of PC chemotherapy (pemetrexed with 0.9g d1 and The patient underwent video-assisted thoracic surgery (VATS) with right upper lobectomy in July 2023. The tumor was located in the right upper lobe, measuring approximately 1.5*1.5 cm with unclear boundaries. Postoperative pathology results indicated that 10% of the tumor cells remained alive, surrounded by significant fibrosis, necrosis, as well as inflammatory and immune cells. After chemotherapy and dacomitinib induction, there were no lymph node metastases, and the pathological stage was ypT1bN0M0. Two cycles of PC chemotherapy were administered, followed by targeted therapy with dacomitinib as adjuvant treatment for 2 more years in accordance with the diagnosis and treatment guidelines. At the final follow-up in September 2024, no adverse events or disease progression had occurred. A progression-free survival (PFS) of more than 14 months was achieved. -The patient received two cycles of PC chemotherapy (pemetrexed with 0.9g d1 and carboplatin with 600mg d1) and dacomitinib (30mg). The patient underwent video-assisted thoracic surgery (VATS) with right upper lobectomy in July 2023.","[""Lung Cancer""]","[""Lung Adenocarcinoma""]",False,[] +The patient received two cycles of PC chemotherapy (pemetrexed with 0.9g d1 and carboplatin with 600mg d1) and dacomitinib (30mg). The patient underwent video-assisted thoracic surgery (VATS) with right upper lobectomy in July 2023.","[""Lung Cancer""]","[""Lung Adenocarcinoma""]",FALSE,[] graph_006,Lung_cancer_with_diabetes_mellitus_and_polymyalgia_rheumatica_during_long_term_n_PMC12001326.html,"Lung cancer (stage IV) diagnosedRadiation therapy for pelvic lesion (45 Gy/15 Fr)Chemotherapy (carboplatin + paclitaxel + bevacizumab for four courses)Bevacizumab maintenance therapyRight adrenal metastasis largerNew left adrenal metastasis observedRe-enlargement of the right adrenal metastasis detectedRadiation therapy for the right adrenal lesion (50 Gy/25 Fr)Chemotherapy (two courses of docetaxel monotherapy) administeredEnlargement of the left adrenal metastasis detectedNivolumab monotherapy as fifth-line therapy initiatedDiabetes mellitus (DM) diagnosed: Blood glucose level increased to 468 mg/dl, Urinary ketones negative, pancreatic amylase not elevated, and autoantibodies including anti-glutamic acid decarboxylase (GAD) antibodies negativePolymyalgia rheumatica (PMR) diagnosed: Muscle pain in the femoral area and neck appeared, which did not improve with nonsteroidal anti-inflammatory drugs. CT and magnetic resonance imaging showed no obvious cancer progressionNivolumab treatment continued","Lung cancer (stage IV) diagnosedRadiation therapy for pelvic lesion (45 Gy/15 Fr)Chemotherapy (carboplatin + paclitaxel + bevacizumab for four courses)Bevacizumab maintenance therapyRight adrenal metastasis largerNew left adrenal metastasis observedRe-enlargement of the right adrenal metastasis detectedRadiation therapy for the right adrenal lesion (50 Gy/25 Fr)Chemotherapy (two courses of docetaxel monotherapy) administeredEnlargement of the left adrenal metastasis detectedNivolumab monotherapy as fifth-line therapy initiatedDiabetes mellitus (DM) diagnosed: Blood glucose level increased to 468 mg/dl, Urinary ketones negative, pancreatic amylase not elevated, and autoantibodies including anti-glutamic acid decarboxylase (GAD) antibodies negativePolymyalgia rheumatica (PMR) diagnosed: Muscle pain in the femoral area and neck appeared, which did not improve with nonsteroidal anti-inflammatory drugs. CT and magnetic resonance imaging showed no obvious cancer progressionNivolumab treatment continued","[ { ""date"": ""June 2014"", @@ -186,7 +186,7 @@ graph_006,Lung_cancer_with_diabetes_mellitus_and_polymyalgia_rheumatica_during_l ""date"": ""four years and 5 months after starting nivolumab treatment"", ""text"": ""Nivolumab treatment continued"" } -]","[""Lung cancer""]","[""stage IV lung cancer""]",True,"[[""right adrenal"", ""re-enlargement""], [""left adrenal"", ""enlargement""]]" +]","[""Lung Cancer""]","[""stage IV lung cancer""]",TRUE,"[[""right adrenal"", ""re-enlargement""], [""left adrenal"", ""enlargement""]]" graph_007,Case_Report__A_novel_ELMOD3_ALK_and_EML4_ALK_double_fusion_responses_to_neoadjuv_PMC12034634.html,"2020-04-20: Patient comes to hospital for physical examination 2020-05-02: Diagnosis of stage IIIA (T2aN2M0) lung adenocarcinoma confirmed 2020: NGS analysis identifies ELMOD3-ALK and EML4-ALK double fusion in tumor tissue @@ -199,9 +199,9 @@ graph_007,Case_Report__A_novel_ELMOD3_ALK_and_EML4_ALK_double_fusion_responses_t 2020-05-02: Diagnosis of stage IIIA (T2aN2M0) lung adenocarcinoma confirmed 2020: NGS analysis identifies ELMOD3-ALK and EML4-ALK double fusion in tumor tissue 2020: Patient starts treatment with targeted therapy for ALK fusion -2023-01-15: Patient receives new treatment plan, including combination of chemotherapy and immunotherapy","[""Lung Cancer""]","[""Lung Adenocarcinoma""]",False,[] -graph_008,Case_report__pulmonary_lymphoepithelial_carcinoma_mimicking_tuberculosis__PMC11987468.html,"The patient was a 37-year-old woman who presented with intermittent cough and slight chest discomfort for 3 months. She also had a painless cervical mass for 1 month. The pathological tissue showed granulomatous inflammation, caseous necrosis, and Langhans' giant cells observed on left cervical lymph node puncture.","37-year-old woman with intermittent cough and slight chest discomfort for 3 months; painless cervical mass for 1 month; pathological tissue showed granulomatous inflammation, caseous necrosis, and Langhans’ giant cells observed on left cervical lymph node puncture; untreated congenital heart disease (patent ductus arteriosus) for 20 years; hypertension for half a year with irregular use of valsartan; mass measuring approximately 4*3 cm on the left clavicle, well-defined, poorly mobile, non-tender, and without surface ulceration or redness; Physical examination of the lungs was unremarkable. A continuous murmur was auscultated at the left sternal border; Laboratory tests of blood carcinoembryonic antigen (CEA), squamous cell carcinoma antigen, cytokeratin 19 fragment and neuron-specific enolase (NSE) were all normal; Blood routine test, liver and kidney function, electrolytes, procalcitonin (PCT), C-reactive protein (CRP) and T-lymphocyte subsets were all normal; Sputum for acid-fast bacilli (AFB) and GeneXpert MTB/RIF were negative; Blood test of EB virus showed increased antibody title of capsid antigen IgG antibody 750U/mL (Reference:0–20 U/mL), EB virus early antigen IgM antibody 2.57 COI (Cut off index reference:0-1.1) and EB virus core antigen IgG antibody 600U/mL(Reference:0–20 U/mL); Repeated ultrasound-guided left supraclavicular lymph node puncture was performed; Histopathology showed focal distribution of epithelioid cells and a few multinucleated giant cells, which suggested granulomatous inflammation (Fig.1); Staining of Acid-fast and methenamine silver were all negative; Lymph node tissue for GeneXpert MTB/RIF and TB culture were all negative; Chest CT scan showed mass(34 × 43 mm) in the middle lobe of the right lung (A,D; blue arrows) and multiple enlarged lymph nodes in mediastinum (B,C; red arrows); Lung biopsy shows lymphoepithelial carcinoma. The tumor cells are densely nestled, the tumor cells have a blurred boundary, large alveoli, eosinophilic nuclei, and the mesenchymal is accompanied by lymphocyte infiltration. (HE staining, 400×)); Immunohistochemical staining shows CK positive in tumor cells (200×); Immunohistochemical staining showed P40 positive in tumor cells (200×); In situ hybridization showed EBER positive in tumor cells (200×); Chest CT scan showed a significant improvement of the lung mass(26 × 17 mm)and reduced lymph nodes after chemotherapy and immunotherapy; Biopsy of left neck lymph node showed granulomatous inflammation. Enhanced CT scan showed mass in the middle lobe of the right lung and multiple enlarged lymph nodes in left neck, mediastinum and right hilum. Percutaneous lung biopsy was performed, showing EBV-positive poorly differentiated carcinoma consistent with lymphoepithelioma. Nasopharyngoscopy excluded nasopharyngeal carcinoma. Repeated CT 1.5 months later showed significant reduction of lung lesions and cervical enlarged lymph nodes.","37-year-old woman with intermittent cough and slight chest discomfort for 3 months; painless cervical mass for 1 month; pathological tissue showed granulomatous inflammation, caseous necrosis, and Langhans’ giant cells observed on left cervical lymph node puncture; untreated congenital heart disease (patent ductus arteriosus) for 20 years; hypertension for half a year with irregular use of valsartan; mass measuring approximately 4*3 cm on the left clavicle, well-defined, poorly mobile, non-tender, and without surface ulceration or redness; Physical examination of the lungs was unremarkable. A continuous murmur was auscultated at the left sternal border; Laboratory tests of blood carcinoembryonic antigen (CEA), squamous cell carcinoma antigen, cytokeratin 19 fragment and neuron-specific enolase (NSE) were all normal; Blood routine test, liver and kidney function, electrolytes, procalcitonin (PCT), C-reactive protein (CRP) and T-lymphocyte subsets were all normal; Sputum for acid-fast bacilli (AFB) and GeneXpert MTB/RIF were negative; Blood test of EB virus showed increased antibody title of capsid antigen IgG antibody 750U/mL (Reference:0–20 U/mL), EB virus early antigen IgM antibody 2.57 COI (Cut off index reference:0-1.1) and EB virus core antigen IgG antibody 600U/mL(Reference:0–20 U/mL); Repeated ultrasound-guided left supraclavicular lymph node puncture was performed; Histopathology showed focal distribution of epithelioid cells and a few multinucleated giant cells, which suggested granulomatous inflammation (Fig.1); Staining of Acid-fast and methenamine silver were all negative; Lymph node tissue for GeneXpert MTB/RIF and TB culture were all negative; Chest CT scan showed mass(34 × 43 mm) in the middle lobe of the right lung (A,D; blue arrows) and multiple enlarged lymph nodes in mediastinum (B,C; red arrows); Lung biopsy shows lymphoepithelial carcinoma. The tumor cells are densely nestled, the tumor cells have a blurred boundary, large alveoli, eosinophilic nuclei, and the mesenchymal is accompanied by lymphocyte infiltration. (HE staining, 400×)); Immunohistochemical staining shows CK positive in tumor cells (200×); Immunohistochemical staining showed P40 positive in tumor cells (200×); In situ hybridization showed EBER positive in tumor cells (200×); Chest CT scan showed a significant improvement of the lung mass(26 × 17 mm)and reduced lymph nodes after chemotherapy and immunotherapy; Biopsy of left neck lymph node showed granulomatous inflammation. Enhanced CT scan showed mass in the middle lobe of the right lung and multiple enlarged lymph nodes in left neck, mediastinum and right hilum. Percutaneous lung biopsy was performed, showing EBV-positive poorly differentiated carcinoma consistent with lymphoepithelioma. Nasopharyngoscopy excluded nasopharyngeal carcinoma. Repeated CT 1.5 months later showed significant reduction of lung lesions and cervical enlarged lymph nodes.","[""lymphoepithelial carcinoma""]","[""EBV-positive poorly differentiated carcinoma"", ""nasopharyngeal carcinoma""]",True,"[[""lung"", ""middle lobe""], [""lymph nodes"", ""mediastinum""], [""lymph nodes"", ""left neck""], [""lymph nodes"", ""right hilum""]]" -graph_009,Radiotherapy_for_Lung_Cancer__An_Unrecognized_Cause_of_Lung_Torsion__PMC11962223.html,"A 73-year-old lady presented with a long history of bilateral chest wall discomfort, exertional breathlessness, and chronic fatigue. She was found to have a left lung opacification on chest radiograph, which prompted a computed tomography scan and positron emission tomography-computed tomography (PET-CT) scan, which confirmed an avid 53 mm left upper lobe mass with associated hilar and mediastinal lymphadenopathy staging the disease as T3N2M0. An endobronchial ultrasound scan and biopsy (EBUS) sampling of station 11L confirmed lung adenocarcinoma metastasis. It appeared positive on the PD-L1 staining. Other immunohistochemistry (ALK/ROS/NTRK) was negative. Her lung function at this point was 51% forced expiratory volume (FEV1) (1.21) and 73% diffusing capacity of the lungs for carbon monoxide (DLCO). She consented to radical treatment with four weeks of radiotherapy dosed at 55 Gy/20 with concurrent chemotherapy. Her initial scan post radiotherapy showed a limited response to treatment, but her subsequent CT scan in a year showed that there was no tumor visible on axial images but there was apparent collapse of the left lung base. Post radiotherapy imaging showed complete response to treatment. It also showed two small bullae seen in the post aspect of the lower lobe. Five months later, she had a follow-up scan (Figures 4,5). Coronal views showed upward curving of the lower segmental bronchi and pulmonary vessels. The two small bullae initially seen in the post aspect of the lower lobe seemed to have relocated to the upper zone anteriorly. Lung torsion with 180-degree rotation was diagnosed. The patient was clinically well; hence, it did not warrant surgical referral.","A 73-year-old lady presented with a long history of bilateral chest wall discomfort, exertional breathlessness, and chronic fatigue. She was found to have a left lung opacification on chest radiograph, which prompted a computed tomography scan and positron emission tomography-computed tomography (PET-CT) scan, which confirmed an avid 53 mm left upper lobe mass with associated hilar and mediastinal lymphadenopathy staging the disease as T3N2M0. An endobronchial ultrasound scan and biopsy (EBUS) sampling of station 11L confirmed lung adenocarcinoma metastasis. It appeared positive on the PD-L1 staining. Other immunohistochemistry (ALK/ROS/NTRK) was negative. Her lung function at this point was 51% forced expiratory volume (FEV1) (1.21) and 73% diffusing capacity of the lungs for carbon monoxide (DLCO). She consented to radical treatment with four weeks of radiotherapy dosed at 55 Gy/20 with concurrent chemotherapy. Her initial scan post radiotherapy showed a limited response to treatment, but her subsequent CT scan in a year showed that there was no tumor visible on axial images but there was apparent collapse of the left lung base. Post radiotherapy imaging showed complete response to treatment. It also showed two small bullae seen in the post aspect of the lower lobe. Five months later, she had a follow-up scan (Figures 4,5). Coronal views showed upward curving of the lower segmental bronchi and pulmonary vessels. The two small bullae initially seen in the post aspect of the lower lobe seemed to have relocated to the upper zone anteriorly. Lung torsion with 180-degree rotation was diagnosed. The patient was clinically well; hence, it did not warrant surgical referral.","A 73-year-old lady presented with a long history of bilateral chest wall discomfort, exertional breathlessness, and chronic fatigue. She was found to have a left lung opacification on chest radiograph, which prompted a computed tomography scan and positron emission tomography-computed tomography (PET-CT) scan, which confirmed an avid 53 mm left upper lobe mass with associated hilar and mediastinal lymphadenopathy staging the disease as T3N2M0. An endobronchial ultrasound scan and biopsy (EBUS) sampling of station 11L confirmed lung adenocarcinoma metastasis. It appeared positive on the PD-L1 staining. Other immunohistochemistry (ALK/ROS/NTRK) was negative. Her lung function at this point was 51% forced expiratory volume (FEV1) (1.21) and 73% diffusing capacity of the lungs for carbon monoxide (DLCO). She consented to radical treatment with four weeks of radiotherapy dosed at 55 Gy/20 with concurrent chemotherapy. Her initial scan post radiotherapy showed a limited response to treatment, but her subsequent CT scan in a year showed that there was no tumor visible on axial images but there was apparent collapse of the left lung base. Post radiotherapy imaging showed complete response to treatment. It also showed two small bullae seen in the post aspect of the lower lobe. Five months later, she had a follow-up scan (Figures 4,5). Coronal views showed upward curving of the lower segmental bronchi and pulmonary vessels. The two small bullae initially seen in the post aspect of the lower lobe seemed to have relocated to the upper zone anteriorly. Lung torsion with 180-degree rotation was diagnosed. The patient was clinically well; hence, it did not warrant surgical referral.","[""lung adenocarcinoma""]","[""lung adenocarcinoma""]",True,"[[""hilar"", ""lymphadenopathy""], [""mediastinal"", ""lymphadenopathy""]]" +2023-01-15: Patient receives new treatment plan, including combination of chemotherapy and immunotherapy","[""Lung Cancer""]","[""Lung Adenocarcinoma""]",FALSE,[] +graph_008,Case_report__pulmonary_lymphoepithelial_carcinoma_mimicking_tuberculosis__PMC11987468.html,"The patient was a 37-year-old woman who presented with intermittent cough and slight chest discomfort for 3 months. She also had a painless cervical mass for 1 month. The pathological tissue showed granulomatous inflammation, caseous necrosis, and Langhans' giant cells observed on left cervical lymph node puncture.","37-year-old woman with intermittent cough and slight chest discomfort for 3 months; painless cervical mass for 1 month; pathological tissue showed granulomatous inflammation, caseous necrosis, and Langhans’ giant cells observed on left cervical lymph node puncture; untreated congenital heart disease (patent ductus arteriosus) for 20 years; hypertension for half a year with irregular use of valsartan; mass measuring approximately 4*3 cm on the left clavicle, well-defined, poorly mobile, non-tender, and without surface ulceration or redness; Physical examination of the lungs was unremarkable. A continuous murmur was auscultated at the left sternal border; Laboratory tests of blood carcinoembryonic antigen (CEA), squamous cell carcinoma antigen, cytokeratin 19 fragment and neuron-specific enolase (NSE) were all normal; Blood routine test, liver and kidney function, electrolytes, procalcitonin (PCT), C-reactive protein (CRP) and T-lymphocyte subsets were all normal; Sputum for acid-fast bacilli (AFB) and GeneXpert MTB/RIF were negative; Blood test of EB virus showed increased antibody title of capsid antigen IgG antibody 750U/mL (Reference:0–20 U/mL), EB virus early antigen IgM antibody 2.57 COI (Cut off index reference:0-1.1) and EB virus core antigen IgG antibody 600U/mL(Reference:0–20 U/mL); Repeated ultrasound-guided left supraclavicular lymph node puncture was performed; Histopathology showed focal distribution of epithelioid cells and a few multinucleated giant cells, which suggested granulomatous inflammation (Fig.1); Staining of Acid-fast and methenamine silver were all negative; Lymph node tissue for GeneXpert MTB/RIF and TB culture were all negative; Chest CT scan showed mass(34 × 43 mm) in the middle lobe of the right lung (A,D; blue arrows) and multiple enlarged lymph nodes in mediastinum (B,C; red arrows); Lung biopsy shows lymphoepithelial carcinoma. The tumor cells are densely nestled, the tumor cells have a blurred boundary, large alveoli, eosinophilic nuclei, and the mesenchymal is accompanied by lymphocyte infiltration. (HE staining, 400×)); Immunohistochemical staining shows CK positive in tumor cells (200×); Immunohistochemical staining showed P40 positive in tumor cells (200×); In situ hybridization showed EBER positive in tumor cells (200×); Chest CT scan showed a significant improvement of the lung mass(26 × 17 mm)and reduced lymph nodes after chemotherapy and immunotherapy; Biopsy of left neck lymph node showed granulomatous inflammation. Enhanced CT scan showed mass in the middle lobe of the right lung and multiple enlarged lymph nodes in left neck, mediastinum and right hilum. Percutaneous lung biopsy was performed, showing EBV-positive poorly differentiated carcinoma consistent with lymphoepithelioma. Nasopharyngoscopy excluded nasopharyngeal carcinoma. Repeated CT 1.5 months later showed significant reduction of lung lesions and cervical enlarged lymph nodes.","37-year-old woman with intermittent cough and slight chest discomfort for 3 months; painless cervical mass for 1 month; pathological tissue showed granulomatous inflammation, caseous necrosis, and Langhans’ giant cells observed on left cervical lymph node puncture; untreated congenital heart disease (patent ductus arteriosus) for 20 years; hypertension for half a year with irregular use of valsartan; mass measuring approximately 4*3 cm on the left clavicle, well-defined, poorly mobile, non-tender, and without surface ulceration or redness; Physical examination of the lungs was unremarkable. A continuous murmur was auscultated at the left sternal border; Laboratory tests of blood carcinoembryonic antigen (CEA), squamous cell carcinoma antigen, cytokeratin 19 fragment and neuron-specific enolase (NSE) were all normal; Blood routine test, liver and kidney function, electrolytes, procalcitonin (PCT), C-reactive protein (CRP) and T-lymphocyte subsets were all normal; Sputum for acid-fast bacilli (AFB) and GeneXpert MTB/RIF were negative; Blood test of EB virus showed increased antibody title of capsid antigen IgG antibody 750U/mL (Reference:0–20 U/mL), EB virus early antigen IgM antibody 2.57 COI (Cut off index reference:0-1.1) and EB virus core antigen IgG antibody 600U/mL(Reference:0–20 U/mL); Repeated ultrasound-guided left supraclavicular lymph node puncture was performed; Histopathology showed focal distribution of epithelioid cells and a few multinucleated giant cells, which suggested granulomatous inflammation (Fig.1); Staining of Acid-fast and methenamine silver were all negative; Lymph node tissue for GeneXpert MTB/RIF and TB culture were all negative; Chest CT scan showed mass(34 × 43 mm) in the middle lobe of the right lung (A,D; blue arrows) and multiple enlarged lymph nodes in mediastinum (B,C; red arrows); Lung biopsy shows lymphoepithelial carcinoma. The tumor cells are densely nestled, the tumor cells have a blurred boundary, large alveoli, eosinophilic nuclei, and the mesenchymal is accompanied by lymphocyte infiltration. (HE staining, 400×)); Immunohistochemical staining shows CK positive in tumor cells (200×); Immunohistochemical staining showed P40 positive in tumor cells (200×); In situ hybridization showed EBER positive in tumor cells (200×); Chest CT scan showed a significant improvement of the lung mass(26 × 17 mm)and reduced lymph nodes after chemotherapy and immunotherapy; Biopsy of left neck lymph node showed granulomatous inflammation. Enhanced CT scan showed mass in the middle lobe of the right lung and multiple enlarged lymph nodes in left neck, mediastinum and right hilum. Percutaneous lung biopsy was performed, showing EBV-positive poorly differentiated carcinoma consistent with lymphoepithelioma. Nasopharyngoscopy excluded nasopharyngeal carcinoma. Repeated CT 1.5 months later showed significant reduction of lung lesions and cervical enlarged lymph nodes.","[""Lymphoepithelial Carcinoma""]","[""EBV-positive poorly differentiated carcinoma"", ""nasopharyngeal carcinoma""]",TRUE,"[[""lung"", ""middle lobe""], [""lymph nodes"", ""mediastinum""], [""lymph nodes"", ""left neck""], [""lymph nodes"", ""right hilum""]]" +graph_009,Radiotherapy_for_Lung_Cancer__An_Unrecognized_Cause_of_Lung_Torsion__PMC11962223.html,"A 73-year-old lady presented with a long history of bilateral chest wall discomfort, exertional breathlessness, and chronic fatigue. She was found to have a left lung opacification on chest radiograph, which prompted a computed tomography scan and positron emission tomography-computed tomography (PET-CT) scan, which confirmed an avid 53 mm left upper lobe mass with associated hilar and mediastinal lymphadenopathy staging the disease as T3N2M0. An endobronchial ultrasound scan and biopsy (EBUS) sampling of station 11L confirmed lung adenocarcinoma metastasis. It appeared positive on the PD-L1 staining. Other immunohistochemistry (ALK/ROS/NTRK) was negative. Her lung function at this point was 51% forced expiratory volume (FEV1) (1.21) and 73% diffusing capacity of the lungs for carbon monoxide (DLCO). She consented to radical treatment with four weeks of radiotherapy dosed at 55 Gy/20 with concurrent chemotherapy. Her initial scan post radiotherapy showed a limited response to treatment, but her subsequent CT scan in a year showed that there was no tumor visible on axial images but there was apparent collapse of the left lung base. Post radiotherapy imaging showed complete response to treatment. It also showed two small bullae seen in the post aspect of the lower lobe. Five months later, she had a follow-up scan (Figures 4,5). Coronal views showed upward curving of the lower segmental bronchi and pulmonary vessels. The two small bullae initially seen in the post aspect of the lower lobe seemed to have relocated to the upper zone anteriorly. Lung torsion with 180-degree rotation was diagnosed. The patient was clinically well; hence, it did not warrant surgical referral.","A 73-year-old lady presented with a long history of bilateral chest wall discomfort, exertional breathlessness, and chronic fatigue. She was found to have a left lung opacification on chest radiograph, which prompted a computed tomography scan and positron emission tomography-computed tomography (PET-CT) scan, which confirmed an avid 53 mm left upper lobe mass with associated hilar and mediastinal lymphadenopathy staging the disease as T3N2M0. An endobronchial ultrasound scan and biopsy (EBUS) sampling of station 11L confirmed lung adenocarcinoma metastasis. It appeared positive on the PD-L1 staining. Other immunohistochemistry (ALK/ROS/NTRK) was negative. Her lung function at this point was 51% forced expiratory volume (FEV1) (1.21) and 73% diffusing capacity of the lungs for carbon monoxide (DLCO). She consented to radical treatment with four weeks of radiotherapy dosed at 55 Gy/20 with concurrent chemotherapy. Her initial scan post radiotherapy showed a limited response to treatment, but her subsequent CT scan in a year showed that there was no tumor visible on axial images but there was apparent collapse of the left lung base. Post radiotherapy imaging showed complete response to treatment. It also showed two small bullae seen in the post aspect of the lower lobe. Five months later, she had a follow-up scan (Figures 4,5). Coronal views showed upward curving of the lower segmental bronchi and pulmonary vessels. The two small bullae initially seen in the post aspect of the lower lobe seemed to have relocated to the upper zone anteriorly. Lung torsion with 180-degree rotation was diagnosed. The patient was clinically well; hence, it did not warrant surgical referral.","A 73-year-old lady presented with a long history of bilateral chest wall discomfort, exertional breathlessness, and chronic fatigue. She was found to have a left lung opacification on chest radiograph, which prompted a computed tomography scan and positron emission tomography-computed tomography (PET-CT) scan, which confirmed an avid 53 mm left upper lobe mass with associated hilar and mediastinal lymphadenopathy staging the disease as T3N2M0. An endobronchial ultrasound scan and biopsy (EBUS) sampling of station 11L confirmed lung adenocarcinoma metastasis. It appeared positive on the PD-L1 staining. Other immunohistochemistry (ALK/ROS/NTRK) was negative. Her lung function at this point was 51% forced expiratory volume (FEV1) (1.21) and 73% diffusing capacity of the lungs for carbon monoxide (DLCO). She consented to radical treatment with four weeks of radiotherapy dosed at 55 Gy/20 with concurrent chemotherapy. Her initial scan post radiotherapy showed a limited response to treatment, but her subsequent CT scan in a year showed that there was no tumor visible on axial images but there was apparent collapse of the left lung base. Post radiotherapy imaging showed complete response to treatment. It also showed two small bullae seen in the post aspect of the lower lobe. Five months later, she had a follow-up scan (Figures 4,5). Coronal views showed upward curving of the lower segmental bronchi and pulmonary vessels. The two small bullae initially seen in the post aspect of the lower lobe seemed to have relocated to the upper zone anteriorly. Lung torsion with 180-degree rotation was diagnosed. The patient was clinically well; hence, it did not warrant surgical referral.","[""Lung Adenocarcinoma""]","[""lung adenocarcinoma""]",TRUE,"[[""hilar"", ""lymphadenopathy""], [""mediastinal"", ""lymphadenopathy""]]" graph_010,Re_do_robot_assisted_salvage_lobectomy_after_esophagectomy_with_gastric_pull_up__PMC11980297.html,"55-year-old female underwent esophagectomy with gastric pull-up reconstruction for squamous cell carcinoma (SCC) of the esophagus (cT3N2M0, stage IIIB) Six years later, computed tomography (CT) scan showed stage IA Thyroid Transcription Factor-1 (TTF-1) positive adenocarcinoma in the left upper lobe treated by stereotactic radiotherapy Two years later, a SCC of the right upper lobe (RUL) was found with tumor diameter of 54 mm and high Programmed Death-Ligand 1 (PD-L1) expression @@ -232,7 +232,7 @@ After standard port placement (Fig.2A), docking and instrument placement (Tip-up The nasogastric tube was placed in the gastric pull-up as a safety measure. Meticulous dissection of its vascularization enabled subsequent standard lobectomy of the RUL with complete lymph node dissection (R4, 7, 10 and 11). After removal of the specimen and chest tube placement, a Ropivacaine® intercostal nerve block levels T4 to T9 was installed. -Total operative time was 3 h 44 min with 50 ml blood loss.","[""Squamous cell carcinoma"", ""Adenocarcinoma""]","[""Esophageal squamous cell carcinoma"", ""Thyroid Transcription Factor-1 positive adenocarcinoma"", ""Squamous cell carcinoma of the right upper lobe""]",False,[] +Total operative time was 3 h 44 min with 50 ml blood loss.","[""Squamous Cell Carcinoma"", ""Adenocarcinoma""]","[""Esophageal squamous cell carcinoma"", ""Thyroid Transcription Factor-1 positive adenocarcinoma"", ""Squamous cell carcinoma of the right upper lobe""]",FALSE,[] graph_011,Efficacy_of_Selpercatinib_in_Non_small_Cell_Lung_Cancer_With_Bilateral_Internal__PMC12021377.html,"Three new intracranial lesions were identified, accompanied by clinical manifestations of paresthesia and reduced muscular strength in the lower limbs.Near-complete resolution of multiple supratentorial and infratentorial nodular lesions, with the absence of gadolinium enhancement, except for a faint residual signal at the cisternal segment of the right eighth cranial nerveSignificant symptomatic improvement within one week of treatment, including complete hearing recovery and a substantial reduction of dizziness and headache complaints.Fourth-line treatment with selpercatinib (160 mg twice daily) was initiatedDisease progression was identified with the emergence of a new growing nodule measuring 11 mm in its longest diameter.First-line systemic therapy with a platinum-based doublet, completing six cycles with a partial tumor response according to Response Evaluation Criteria in Solid Tumors (RECIST) criteria","Three new intracranial lesions were identified, accompanied by clinical manifestations of paresthesia and reduced muscular strength in the lower limbs.Near-complete resolution of multiple supratentorial and infratentorial nodular lesions, with the absence of gadolinium enhancement, except for a faint residual signal at the cisternal segment of the right eighth cranial nerveSignificant symptomatic improvement within one week of treatment, including complete hearing recovery and a substantial reduction of dizziness and headache complaints.Fourth-line treatment with selpercatinib (160 mg twice daily) was initiatedDisease progression was identified with the emergence of a new growing nodule measuring 11 mm in its longest diameter.First-line systemic therapy with a platinum-based doublet, completing six cycles with a partial tumor response according to Response Evaluation Criteria in Solid Tumors (RECIST) criteria"," Three new intracranial lesions were identified, accompanied by clinical manifestations of paresthesia and reduced muscular strength in the lower limbs. @@ -252,7 +252,7 @@ graph_011,Efficacy_of_Selpercatinib_in_Non_small_Cell_Lung_Cancer_With_Bilateral First-line systemic therapy with a platinum-based doublet, completing six cycles with a partial tumor response according to Response Evaluation Criteria in Solid Tumors (RECIST) criteria -","[""adenocarcinoma""]","[""lung cancer""]",True,"[[""brain"", ""intracranial""], [""bone"", ""osseous""], [""liver"", ""hepatic""], [""lymph nodes"", ""lymphatic""], [""lung"", ""pulmonary""]]" +","[""Adenocarcinoma""]","[""lung cancer""]",TRUE,"[[""brain"", ""intracranial""], [""bone"", ""osseous""], [""liver"", ""hepatic""], [""lymph nodes"", ""lymphatic""], [""lung"", ""pulmonary""]]" graph_012,Multiple_Lung_Metastases_of_Papillary_Thyroid_Carcinoma_Detected_by_Detailed_Pat_PMC11971052.html,"79-year-old male patient with: - Height: 174 cm - Weight: 65 kg @@ -307,7 +307,7 @@ Immunohistochemistry showed positive staining for TTF-1, indicating lung origin The patient's postoperative course was uneventful, with no complications noted. 5 years ago: Total thyroidectomy performed for papillary thyroid carcinoma (PTC) with comorbidities of chronic obstructive pulmonary disease and hypertension. 2 years ago: A nodule in the right upper lobe of the lung was identified, which was followed up with chest CT scans. Compared to two years prior, an increase in nodule density was observed, prompting a transbronchial biopsy; however, no definitive diagnosis was made. -6 months post-surgery: No evidence of recurrence.","[""papillary thyroid carcinoma"", ""adenocarcinoma""]","[""pT1a [m] papillary thyroid microcarcinomas"", ""lung adenocarcinoma""]",True,"[[""cervical lymph nodes"", ""papillary thyroid carcinoma""]]" +6 months post-surgery: No evidence of recurrence.","[""Papillary Thyroid Carcinoma"", ""Adenocarcinoma""]","[""pT1a [m] papillary thyroid microcarcinomas"", ""lung adenocarcinoma""]",TRUE,"[[""cervical lymph nodes"", ""papillary thyroid carcinoma""]]" graph_013,Brain_Metastasis_From_Advanced_Stage_Lung_Carcinoma__Differentiating_From_Stroke_PMC11955559.html,"Patient's medical history: - Diagnosed with stage III NSCLC in the right upper lobe bronchus that had spread throughout the middle and lower lobes (15 months ago) - PET/CT scans revealed a right supraclavicular node, right upper paratracheal node, multiple additional paratracheal nodes, and enlarged para-aortic nodes @@ -346,8 +346,8 @@ Current visit: COVID-19 and flu tests all negative. Current visit: Urine testing revealed trace blood and bacteria and was positive for cannabis. Current visit: Non-contrast CT results revealed multifocal intracranial lesions with associated vasogenic edema with mild mass effect, consistent with metastatic disease. Current visit: CT angiography (CTA) performed, revealing no flow-limiting stenosis or occlusion of major intracranial or cervical arteries. -Current visit: Multiple bilateral pulmonary nodules and a partially imaged right upper lobe mass were seen, along with asymmetrically enlarged right level IIb nodes, suspicious for metastasis in this clinical setting.","[""NSCLC""]","[""stage III NSCLC""]",True,"[[""brain"", ""multifocal intracranial lesions""], [""lung"", ""bilateral pulmonary nodules""], [""lymph nodes"", ""asymmetrically enlarged right level IIb nodes""]]" -graph_014,Successful_treatment_of_an_elderly_patient_with_lung_squamous_cell_carcinoma_by__PMC11973309.html,"A 73-year-old man presenting with paroxysmal cough and sputum accompanied by chest pain, weight loss, and exertional asthma was admitted to a local hospital on February 13, 2023. A chest computed tomography (CT) scan revealed a mass in the right upper lobe of the lung, raising the suspicion of a malignant tumor (MT). Subsequent positron electron tomography (PET)-CT indicated an irregular lobulated soft tissue mass in the apical segment of the right lung upper lobe, measuring approximately 4.1×3.5 cm and showing increased fluorodeoxyglucose (FDG) uptake (SUV value) and spiculated margins, suggestive of lung cancer (likely squamous cell carcinoma). There were tiny nodular shadows about 0.3 cm in diameter surrounding the mass, and the possibility of metastasis was not ruled out. Several enlarged lymph nodes were visible in regions 10R, 4R, and 2R, the largest measuring approximately 1.7 cm in diameter. that showed varying degrees of increased FDG uptake, suggesting possible metastasis in some lymph nodes. On March 3, 2023, a CT-guided biopsy of the right upper lobe lung mass was performed at our hospital. According to the pathology report (Figure 1), combined with the patient’s medical history and immunohistochemical markers, squamous cell carcinoma was considered (Note: CK7-, CK20-, CK5/6-, NapsinA-, CD56-, P40+, Syn-, CgA-, CD56-, TTF-1-, Ki-67 75%). As shown in the microscopic cellular morphology and tissue architecture ofFigure 1, the entire field demonstrates complete loss of normal pulmonary tissue structure.","Diagnosed with stage cT2bN2M0 right lung squamous cell carcinoma on March 14, 2023. Immunotherapy combined with chemotherapy was started: paclitaxel liposome 240 mg on d1, carboplatin 500 mg on d1, and tislelizumab 200 mg on d2, every 3 weeks (q3w). Grade III thrombocytopenia occurred post-treatment, with a nadir of 30 × 10^9/L. Immunotherapy regimen was adjusted for the first cycle: tislelizumab 200 mg on d0 + paclitaxel liposome 120 mg on d1, 90 mg on d8 + carboplatin 150 mg on d2, 100 mg on d3-5, every 3 weeks (q3w). However, on May 16, 2023, bacteremia and herpes zoster infection were observed, so antitumor treatment was halted.","Vancomycin was given for anti-infection and anti-viral treatment. After active treatment, the first reexamination on May 29, 2023, with a repeat enhanced chest CT showed an irregular thin-walled cystic lesion in the right upper lobe with fine line compartments, measuring approximately 32×25×27 mm, with enlarged and moderately enhanced lymph nodes in the 10R, 4R, and 2R regions. Compared to the March 3, 2023 CT, the solid component of the right upper lobe mass had essentially disappeared, and the mediastinal lymph nodes were similar in size. Response assessment indicated partial remission, and the second cycle of immunotherapy combined with chemotherapy was administered on June 27, 2023.","[""malignant tumor"", ""lung cancer""]","[""squamous cell carcinoma""]",True,"[[""squamous cell carcinoma"", ""lymph nodes""]]" +Current visit: Multiple bilateral pulmonary nodules and a partially imaged right upper lobe mass were seen, along with asymmetrically enlarged right level IIb nodes, suspicious for metastasis in this clinical setting.","[""Non-small Cell Lung Cancer""]","[""stage III NSCLC""]",TRUE,"[[""brain"", ""multifocal intracranial lesions""], [""lung"", ""bilateral pulmonary nodules""], [""lymph nodes"", ""asymmetrically enlarged right level IIb nodes""]]" +graph_014,Successful_treatment_of_an_elderly_patient_with_lung_squamous_cell_carcinoma_by__PMC11973309.html,"A 73-year-old man presenting with paroxysmal cough and sputum accompanied by chest pain, weight loss, and exertional asthma was admitted to a local hospital on February 13, 2023. A chest computed tomography (CT) scan revealed a mass in the right upper lobe of the lung, raising the suspicion of a malignant tumor (MT). Subsequent positron electron tomography (PET)-CT indicated an irregular lobulated soft tissue mass in the apical segment of the right lung upper lobe, measuring approximately 4.1×3.5 cm and showing increased fluorodeoxyglucose (FDG) uptake (SUV value) and spiculated margins, suggestive of lung cancer (likely squamous cell carcinoma). There were tiny nodular shadows about 0.3 cm in diameter surrounding the mass, and the possibility of metastasis was not ruled out. Several enlarged lymph nodes were visible in regions 10R, 4R, and 2R, the largest measuring approximately 1.7 cm in diameter. that showed varying degrees of increased FDG uptake, suggesting possible metastasis in some lymph nodes. On March 3, 2023, a CT-guided biopsy of the right upper lobe lung mass was performed at our hospital. According to the pathology report (Figure 1), combined with the patient’s medical history and immunohistochemical markers, squamous cell carcinoma was considered (Note: CK7-, CK20-, CK5/6-, NapsinA-, CD56-, P40+, Syn-, CgA-, CD56-, TTF-1-, Ki-67 75%). As shown in the microscopic cellular morphology and tissue architecture ofFigure 1, the entire field demonstrates complete loss of normal pulmonary tissue structure.","Diagnosed with stage cT2bN2M0 right lung squamous cell carcinoma on March 14, 2023. Immunotherapy combined with chemotherapy was started: paclitaxel liposome 240 mg on d1, carboplatin 500 mg on d1, and tislelizumab 200 mg on d2, every 3 weeks (q3w). Grade III thrombocytopenia occurred post-treatment, with a nadir of 30 × 10^9/L. Immunotherapy regimen was adjusted for the first cycle: tislelizumab 200 mg on d0 + paclitaxel liposome 120 mg on d1, 90 mg on d8 + carboplatin 150 mg on d2, 100 mg on d3-5, every 3 weeks (q3w). However, on May 16, 2023, bacteremia and herpes zoster infection were observed, so antitumor treatment was halted.","Vancomycin was given for anti-infection and anti-viral treatment. After active treatment, the first reexamination on May 29, 2023, with a repeat enhanced chest CT showed an irregular thin-walled cystic lesion in the right upper lobe with fine line compartments, measuring approximately 32×25×27 mm, with enlarged and moderately enhanced lymph nodes in the 10R, 4R, and 2R regions. Compared to the March 3, 2023 CT, the solid component of the right upper lobe mass had essentially disappeared, and the mediastinal lymph nodes were similar in size. Response assessment indicated partial remission, and the second cycle of immunotherapy combined with chemotherapy was administered on June 27, 2023.","[""Malignant tumor"", ""Lung Cancer""]","[""squamous cell carcinoma""]",TRUE,"[[""squamous cell carcinoma"", ""lymph nodes""]]" graph_015,A_case_of_obstructive_shock_and_transient_ischemic_attack_from_intracardiac_meta_PMC11981378.html,"- Patient presented to ER 8 days after initial diagnosis of intracardiac metastasis of NSCLC. - On admission, patient appeared lethargic, tachycardic with irregular rhythm, decreased breath sounds on the right, and tender right upper quadrant due to rib fractures. Heart rate was 110 bpm, blood pressure 96/60 mmHg, respiratory rate 22, and saturation of 100%. Patient treated for hypotension with IV fluids. - CT of head negative for acute intracranial processes. CT of abdomen and pelvis showed mildly displaced rib fractures, right kidney interpolar cyst with new areas of internal hyperdensity (suspected benign cysts). No other new presentations appreciated. @@ -389,7 +389,7 @@ Patient underwent palliative care for symptom management. CT-Angiography: no large vessel occlusion or acute intracranial process Discharged to hospice care","Patient presented to ER with intracardiac metastasis of NSCLCTransient ischemic attack (TIA) with right facial droop and left pronator driftCT-Angiography showed no large vessel occlusion or acute intracranial process; patient discharged to hospice care","Patient presented to ER with intracardiac metastasis of NSCLC (initial diagnosis) 2 days post-ER admission: Transient ischemic attack (TIA) with right facial droop and left pronator drift -after TIA: CT-Angiography showed no large vessel occlusion or acute intracranial process; patient discharged to hospice care","[""non-small cell lung cancer""]","[""squamous cell histology""]",True,"[[""left atrium"", ""tumor thrombus""], [""right lower lobe"", ""large hypermetabolic mass""], [""mediastinum"", ""enlarged hypermetabolic subcarinal nodes""]]" +after TIA: CT-Angiography showed no large vessel occlusion or acute intracranial process; patient discharged to hospice care","[""Non-small Cell Lung Cancer""]","[""squamous cell histology""]",TRUE,"[[""left atrium"", ""tumor thrombus""], [""right lower lobe"", ""large hypermetabolic mass""], [""mediastinum"", ""enlarged hypermetabolic subcarinal nodes""]]" graph_016,Precise_Localization_of_the_Subsolid_Lesion_by_Colour_Marking_under_CT_Guided_Co_PMC12040305.html,"51-year-old female patient with a subsolid pulmonary lesion. The lesion was followed up for 4 years and subsequently resected videothoracoscopically after preoperative labeling with a mixture of blue dye and contrast agent. Born in 1970, underwent resection of malignant melanoma in April 2013. Suspicious lymph node (LU) in the left axilla detected on ultrasound, biopsy confirmed metastasis of malignant melanoma. PET/CT showed solitary finding in the left axilla. Dissection of the left axilla performed, only one of 19 LNs affected by metastasis. Molecular genetic testing revealed BRAF mutation at codon 600, targeted therapy with BRAF inhibitors deployed. @@ -408,4 +408,4 @@ Suspicious lymph node (LU) in the left axilla detected on ultrasound, biopsy con Routine CT scan of lungs in November 2017 detected new asymptomatic lesion in segment S10 of right lower lobe, measuring 7 mm in size. Follow-up CT scan in June 2020 showed lesion changed character to subsolid lesion with solid component. PET/CT scan in July 2020 confirmed persistence of the lesion without increased metabolic activity. A further follow-up in April 2021 confirmed persistence and additionally showed a slight size progression of the solid component of the lesion. The resection lines from the tumor margin to the resection margins were adequate, with the smallest measured dimension of 13 mm. No metastatic process was found in the examined mediastinal lymphatic nodes. The postoperative course was uneventful, and the patient was discharged to home care on the fourth day after surgery. -She continues to be followed up regularly and remains free of signs of disease recurrence.","[""malignant melanoma""]","[""melanoma"", ""lung cancer""]",True,"[[""left axilla"", ""lymph node""], [""right lower lobe"", ""lung""]]" +She continues to be followed up regularly and remains free of signs of disease recurrence.","[""Malignant Melanoma""]","[""melanoma"", ""lung cancer""]",TRUE,"[[""left axilla"", ""lymph node""], [""right lower lobe"", ""lung""]]" \ No newline at end of file diff --git a/src/benchmark/output/results/testset/graph_html_metadata.csv b/src/benchmark/output/results/testset/graph_html_metadata.csv deleted file mode 100644 index 7e8bd19..0000000 --- a/src/benchmark/output/results/testset/graph_html_metadata.csv +++ /dev/null @@ -1,411 +0,0 @@ -graph_id,source_file,timeline_1,timeline_2,timeline_3,cancers,specific_cancers,has_metastasis,metastasis_locations -graph_001,Intriguing_Encounter__Unveiling_Squamous_Cell_Carcinoma_Lung_with_Rare_Bilateral_PMC12020972.html,"44-year-old male diagnosed as squamous cell carcinoma of the lung -Pituitary metastasis identified on 18F-FDG PET/CT -Renal metastasis identified on 18F-FDG PET/CT -Right-sided chest pain for 2 months -Dry cough for 2 months -Fever (on-off) for 2 months -Hematuria for 2 months -No history of Antitubercular treatment (ATT) intake -Tobacco chewer for >20 years -Decreased air entry on the right side of the lung -Contrast-enhanced computed tomography (CECT) thorax revealed a heterogeneous lesion in the mediastinal region abutting the horizontal fissure and cavitation within -Lesion associated with multiple centrilobular nodules arranged in a linear branching pattern -Bronchoscopy done with bronchoscopic-guided biopsy -Bronchoalveolar lavage (BAL) fluid samples taken -BAL sample sent for cytopathological examination was negative for malignant cells -18F-FDG PET/CT scan revealed FDG-avid well-defined soft tissue primary mass measuring 5.6 cm x 7.7 cm x 8.3 cm in size with spiculated margins in the upper lobe of the right lung with collapse and consolidation of right lung -FDG avid metastases to mediastinal, abdominopelvic lymph nodes and right-sided pleural deposits -Multiple sub-centimetric to centimetric-sized bilateral lung nodules were noted -It was associated with multiple FDG avid brain lesions involving the bilateral cerebral cortex, cerebellum and pituitary -FDG avid bilateral hypodense few (3 in number) soft tissue density bilateral renal masses (Figure 1b, largest measuring 2.8 cm x 2.6 cm) -Multiple lytic skeletal lesions [Figure 1d], few of them with soft tissue component involvement were noted","44-year-old male diagnosed as squamous cell carcinoma of the lung -Pituitary metastasis identified on 18F-FDG PET/CT -Renal metastasis identified on 18F-FDG PET/CT -Right-sided chest pain for 2 months -Dry cough for 2 months -Fever (on-off) for 2 months -Hematuria for 2 months -No history of Antitubercular treatment (ATT) intake -Tobacco chewer for >20 years -Decreased air entry on the right side of the lung -Contrast-enhanced computed tomography (CECT) thorax revealed a heterogeneous lesion in the mediastinal region abutting the horizontal fissure and cavitation within -Lesion associated with multiple centrilobular nodules arranged in a linear branching pattern -Bronchoscopy done with bronchoscopic-guided biopsy -Bronchoalveolar lavage (BAL) fluid samples taken -BAL sample sent for cytopathological examination was negative for malignant cells -18F-FDG PET/CT scan revealed FDG-avid well-defined soft tissue primary mass measuring 5.6 cm x 7.7 cm x 8.3 cm in size with spiculated margins in the upper lobe of the right lung with collapse and consolidation of right lung -FDG avid metastases to mediastinal, abdominopelvic lymph nodes and right-sided pleural deposits -Multiple sub-centimetric to centimetric-sized bilateral lung nodules were noted -It was associated with multiple FDG avid brain lesions involving the bilateral cerebral cortex, cerebellum and pituitary -FDG avid bilateral hypodense few (3 in number) soft tissue density bilateral renal masses (Figure 1b, largest measuring 2.8 cm x 2.6 cm) -Multiple lytic skeletal lesions [Figure 1d], few of them with soft tissue component involvement were noted","44-year-old male diagnosed as squamous cell carcinoma of the lung -Pituitary metastasis identified on 18F-FDG PET/CT -Renal metastasis identified on 18F-FDG PET/CT -Right-sided chest pain for 2 months -Dry cough for 2 months -Fever (on-off) for 2 months -Hematuria for 2 months -No history of Antitubercular treatment (ATT) intake -Tobacco chewer for >20 years -Decreased air entry on the right side of the lung -Contrast-enhanced computed tomography (CECT) thorax revealed a heterogeneous lesion in the mediastinal region abutting the horizontal fissure and cavitation within -Lesion associated with multiple centrilobular nodules arranged in a linear branching pattern -Bronchoscopy done with bronchoscopic-guided biopsy -Bronchoalveolar lavage (BAL) fluid samples taken -BAL sample sent for cytopathological examination was negative for malignant cells -18F-FDG PET/CT scan revealed FDG-avid well-defined soft tissue primary mass measuring 5.6 cm x 7.7 cm x 8.3 cm in size with spiculated margins in the upper lobe of the right lung with collapse and consolidation of right lung -FDG avid metastases to mediastinal, abdominopelvic lymph nodes and right-sided pleural deposits -Multiple sub-centimetric to centimetric-sized bilateral lung nodules were noted -It was associated with multiple FDG avid brain lesions involving the bilateral cerebral cortex, cerebellum and pituitary -FDG avid bilateral hypodense few (3 in number) soft tissue density bilateral renal masses (Figure 1b, largest measuring 2.8 cm x 2.6 cm) -Multiple lytic skeletal lesions [Figure 1d], few of them with soft tissue component involvement were noted","[""lung cancer""]","[""squamous cell carcinoma""]",True,"[[""brain"", ""bilateral cerebral cortex""], [""brain"", ""cerebellum""], [""brain"", ""pituitary""], [""kidneys"", ""bilateral renal masses""], [""skeleton"", ""lytic skeletal lesions""], [""lymph nodes"", ""mediastinal lymph nodes""], [""lymph nodes"", ""abdominopelvic lymph nodes""], [""pleura"", ""right-sided pleural deposits""]]" -graph_002,_A_Case_of_Multiple_Primary_Pulmonary_Neuroendocrine_Carcinoma_with_EML4_ALK_Fus_PMC11986677.html,"* 2019-03-19: 大细胞神经内分泌癌(大肿瘤)在右肺下叶发现,患者接受手术切除 -* 2022-04-27: 病灶稳定,无肿瘤复发或转移 -* 2023-08-01: 左主支气管略狭窄 -* 2023-10-14: 支气管镜检查发现左主支气管新生物阻塞管腔约50%,病理提示为小细胞肺癌(SCLC) -* 2024-05-01: 开始服用阿来替尼600 mg bid,化疗3个周期后停止 -* 2024-10-01: 复查胸腹部CT、单光子发射计算机断层扫描全身骨显象均未发现疾病新进展","[""* 2019-03-19: 大细胞神经内分泌癌(大肿瘤)在右肺下叶发现,患者接受手术切除\n* 2022-04-27: 病灶稳定,无肿瘤复发或转移\n* 2023-08-01: 左主支气管略狭窄\n* 2023-10-14: 支气管镜检查发现左主支气管新生物阻塞管腔约50%,病理提示为小细胞肺癌(SCLC)\n* 2024-05-01: 开始服用阿来替尼600 mg bid,化疗3个周期后停止\n* 2024-10-01: 复查胸腹部CT、单光子发射计算机断层扫描全身骨显象均未发现疾病新进展""]",,"[""\u764c"", ""\u80bf\u7624"", ""\u6076\u6027\u80bf\u7624""]","[""\u5927\u7ec6\u80de\u795e\u7ecf\u5185\u5206\u6ccc\u764c"", ""\u5c0f\u7ec6\u80de\u80ba\u764c""]",False,[] -graph_003,Management_of_malignant_inferior_vena_cava_syndrome__IVCS__by_endovascular_bridg_PMC12019825.html,"A 73-year-old male patient underwent a procedure to relieve significant stenosis of the suprahepatic IVC due to compression. Under local anesthesia, a 5F sheath was inserted into the right basilic vein and a 10F sheath into the right common femoral vein. Venography showed a significant compression of the suprahepatic IVC. The IVC stenosis was passed using a 0,035-inch hydrophilic guidewire and a multipurpose catheter. Initially, mechanical thrombectomy was performed to exclude possible thrombosis; however, no thrombotic material was extracted. After placing a stiffer exchange guidewire with its distal tip positioned in the right subclavian vein, 3 uncovered self-expanding nitinol sinus-XL stents (OptiMed, Ettlingen, Germany) were deployed in tandem from the SVC to the IVC with an overlap between the stents. Using venography measurements, stents measuring 18 × 80 mm, 18 × 60 mm, and 16 × 80 mm were placed in a cephalic-to-caudal orientation. The final venography revealed adequate flow through the vena cava and bridging stents.","A 73-year-old male patient underwent a procedure to relieve significant stenosis of the suprahepatic IVC due to compression. Under local anesthesia, a 5F sheath was inserted into the right basilic vein and a 10F sheath into the right common femoral vein. Venography showed a significant compression of the suprahepatic IVC. The IVC stenosis was passed using a 0,035-inch hydrophilic guidewire and a multipurpose catheter. Initially, mechanical thrombectomy was performed to exclude possible thrombosis; however, no thrombotic material was extracted. After placing a stiffer exchange guidewire with its distal tip positioned in the right subclavian vein, 3 uncovered self-expanding nitinol sinus-XL stents (OptiMed, Ettlingen, Germany) were deployed in tandem from the SVC to the IVC with an overlap between the stents. Using venography measurements, stents measuring 18 × 80 mm, 18 × 60 mm, and 16 × 80 mm were placed in a cephalic-to-caudal orientation. The final venography revealed adequate flow through the vena cava and bridging stents. - -Diagnosed with SCLC 15 months previously. Received 6 cycles of carboplatin/etoposide chemotherapy, followed by thoracic radiotherapy and prophylactic cranial irradiation. Lost 20 kg of body weight within 12 months. Performance status was recorded (4) on the Eastern Cooperative Oncology Group scale on the day of admission. Vital signs: systolic/diastolic blood pressure 100/70 mmHg, heart rate 90 bpm, oxygen saturation 89%, body temperature 36,9°C/98° F. Laboratory results: hemoglobin 12,6 g/dl (normal range 14-18 g/dl), platelets 260 × 103/μl (150-450 × 103/μl), alkaline phosphatase 94 U/L (26-112 U/L), alanine aminotransferase 40 U/L (5-35 U/L), aspartate aminotransferase 34 U/L (<40 U/L), total bilirubin 1.2 mg/dl, and creatinine 0.9 mg/dl. A large tumor involving the right lower and middle lung lobe measured (17,6 × 19,3 × 18,6) mm (maximal axial x coronal x sagittal dimension), which causes significant compression of the IVC (yellow arrows) mainly at the level of its entry into the right heart atrium. Multiple enlarged mediastinal lymph nodes, infiltration of the visceral pleura and right hemidiaphragm, ascites, and peritoneal metastases were other salient findings underlining disease progression. - -Three self-expanding stents (yellow arrows) were positioned in tandem from the superior vena cava (SVC) (red arrow shows the most cephalic part of the stents) to the IVC to restore venous patency. Fig. 3. The final venography revealed adequate flow through the bridging stents (yellow arrows). The patient's IVCS symptoms, mainly trunk and lower limb edema, were significantly alleviated within 48 h. Low-molecular-weight heparin was administered for anticoagulation. - -The patient died with a large tumor involving the right lower and middle lung lobe measured (17,6 × 19,3 × 18,6) mm (maximal axial x coronal x sagittal dimension), which causes significant compression of the IVC (yellow arrows) mainly at the level of its entry into the right heart atrium.","- Diagnosed with SCLC 15 months previously -- Received 6 cycles of carboplatin/etoposide chemotherapy, followed by thoracic radiotherapy and prophylactic cranial irradiation -- Lost 20 kg of body weight within 12 months -- Performance status was recorded (4) on the Eastern Cooperative Oncology Group scale on the day of admission -- Underwent a procedure to relieve significant stenosis of the suprahepatic IVC due to compression -- Three self-expanding stents were positioned in tandem from the superior vena cava (SVC) to the IVC to restore venous patency -- The patient's IVCS symptoms, mainly trunk and lower limb edema, were significantly alleviated within 48 h -- Low-molecular-weight heparin was administered for anticoagulation -- The patient died with a large tumor involving the right lower and middle lung lobe measured (17,6 × 19,3 × 18,6) mm (maximal axial x coronal x sagittal dimension), which causes significant compression of the IVC (yellow arrows) mainly at the level of its entry into the right heart atrium","[""SCLC""]","[""Small Cell Lung Cancer""]",True,"[[""mediastinal lymph nodes"", ""enlarged""], [""visceral pleura"", ""infiltration""], [""right hemidiaphragm"", ""infiltration""], [""peritoneum"", ""metastases""]]" -graph_004,Metastatic_INI_1_deficient_undifferentiated_lung_cancer_with_EGFR_19del_mutation_PMC12021797.html,"81-year-old female patient with a 10-day history of progressive chest tightness and dyspnea worsened with physical activity -Chest computed tomography (CT) imaging revealed a large left-sided pleural effusion -Thoracentesis was performed, and the drained pleural fluid was sent to the Department of Pathology for further evaluation -Following thoracic drainage, a subsequent chest CT scan revealed a heterogeneous mass in the left inferior lobe, measuring approximately 6.7 cm × 2.8 cm in its largest cross-section -Contrast-enhanced imaging demonstrated irregular enhancement patterns suggestive of a left lung tumor -Pulmonary window analysis identified multiple nodular high-density foci scattered across both lungs, raising suspicion for bilateral pulmonary metastases -Mediastinal window assessment further revealed bilateral mediastinal lymphadenopathy and enlarged lymph nodes at the left pulmonary hilum, consistent with lymph node metastasis -An abdominal CT scan detected multiple low-density hepatic nodules of varying sizes, with the largest lesion (2.9 cm × 2.6 cm) located in the right hepatic lobe -Annular enhancement was noted in the arterial phase, while marked hypodensity was observed in the portal venous phase, demonstrating a “bull’s eye sign” characteristic of multiple hepatic metastases -Additionally, an enhanced brain CT identified an irregular heterogeneously enhancing mass within the right frontal lobe, with a maximum cross-sectional area of 2.1 cm × 1.6 cm, consistent with brain metastasis -Genetic testing revealed a mutation in the EGFR gene -Next-generation sequencing (NGS) analysis showed that the patient's tumor had a high level of PD-L1 expression -The patient underwent treatment with osimertinib, an EGFR tyrosine kinase inhibitor","81-year-old female patient with a 10-day history of progressive chest tightness and dyspnea worsened with physical activity -Chest computed tomography (CT) imaging revealed a large left-sided pleural effusion -Thoracentesis was performed, and the drained pleural fluid was sent to the Department of Pathology for further evaluation -Following thoracic drainage, a subsequent chest CT scan revealed a heterogeneous mass in the left inferior lobe, measuring approximately 6.7 cm × 2.8 cm in its largest cross-section -Contrast-enhanced imaging demonstrated irregular enhancement patterns suggestive of a left lung tumor -Pulmonary window analysis identified multiple nodular high-density foci scattered across both lungs, raising suspicion for bilateral pulmonary metastases -Mediastinal window assessment further revealed bilateral mediastinal lymphadenopathy and enlarged lymph nodes at the left pulmonary hilum, consistent with lymph node metastasis -An abdominal CT scan detected multiple low-density hepatic nodules of varying sizes, with the largest lesion (2.9 cm × 2.6 cm) located in the right hepatic lobe -Annular enhancement was noted in the arterial phase, while marked hypodensity was observed in the portal venous phase, demonstrating a “bull’s eye sign” characteristic of multiple hepatic metastases -Additionally, an enhanced brain CT identified an irregular heterogeneously enhancing mass within the right frontal lobe, with a maximum cross-sectional area of 2.1 cm × 1.6 cm, consistent with brain metastasis -Genetic testing revealed a mutation in the EGFR gene -Next-generation sequencing (NGS) analysis showed that the patient's tumor had a high level of PD-L1 expression -The patient underwent treatment with osimertinib, an EGFR tyrosine kinase inhibitor","81-year-old female patient with a 10-day history of progressive chest tightness and dyspnea worsened with physical activity -Chest computed tomography (CT) imaging revealed a large left-sided pleural effusion -Thoracentesis was performed, and the drained pleural fluid was sent to the Department of Pathology for further evaluation -Following thoracic drainage, a subsequent chest CT scan revealed a heterogeneous mass in the left inferior lobe, measuring approximately 6.7 cm × 2.8 cm in its largest cross-section -Contrast-enhanced imaging demonstrated irregular enhancement patterns suggestive of a left lung tumor -Pulmonary window analysis identified multiple nodular high-density foci scattered across both lungs, raising suspicion for bilateral pulmonary metastases -Mediastinal window assessment further revealed bilateral mediastinal lymphadenopathy and enlarged lymph nodes at the left pulmonary hilum, consistent with lymph node metastasis -An abdominal CT scan detected multiple low-density hepatic nodules of varying sizes, with the largest lesion (2.9 cm × 2.6 cm) located in the right hepatic lobe -Annular enhancement was noted in the arterial phase, while marked hypodensity was observed in the portal venous phase, demonstrating a “bull’s eye sign” characteristic of multiple hepatic metastases -Additionally, an enhanced brain CT identified an irregular heterogeneously enhancing mass within the right frontal lobe, with a maximum cross-sectional area of 2.1 cm × 1.6 cm, consistent with brain metastasis -Genetic testing revealed a mutation in the EGFR gene -Next-generation sequencing (NGS) analysis showed that the patient's tumor had a high level of PD-L1 expression -The patient underwent treatment with osimertinib, an EGFR tyrosine kinase inhibitor","[""lung cancer""]","[""non-small cell lung cancer""]",True,"[[""liver"", ""multiple low-density hepatic nodules""], [""lymph nodes"", ""bilateral mediastinal lymphadenopathy""], [""brain"", ""irregular heterogeneously enhancing mass""]]" -graph_005,Neoadjuvant_Targeted_Therapy_with_Dacomitinib_in_a_Stage_IIIA_Non_Small_Cell_Lun_PMC11980937.html,"A 54-year-old Chinese male with 30 years of smoking history presented with a worsening cough for 3 months, with a performance status score of 1. Enhanced computed tomography (CT) revealed a 22 mm × 12 mm × 16 mm mass in the right upper lobe with invasion in the right hilum and mediastinal (Figure 1AandB), which were confirmed by positron emission tomography-CT (PET-CT) scan. Immunohistochemistry (IHC) analysis of the biopsy from the lesion in the upper right lobe of the lung was positive for TTF-1, NpA, CK7, CD5/6 and Ki67 (60%); and negative for p40, p63 and CD56. The patient was diagnosed with stage IIIA lung adenocarcinoma (cT1cN2M0). Follow-up targeted NGS analysis of his lung lesion biopsy identified an EGFRG719X with a mutant allele frequency (MAF) of 3.8%. Two cycles of PC chemotherapy (pemetrexed with 0.9g d1 and carboplatin with 600mg d1) and dacomitinib (30mg) were given. - -The patient underwent video-assisted thoracic surgery (VATS) with right upper lobectomy in July 2023. The tumor was located in the right upper lobe, measuring approximately 1.5*1.5 cm with unclear boundaries. Postoperative pathology results indicated that 10% of the tumor cells remained alive, surrounded by significant fibrosis, necrosis, as well as inflammatory and immune cells. After chemotherapy and dacomitinib induction, there were no lymph node metastases, and the pathological stage was ypT1bN0M0. Two cycles of PC chemotherapy were administered, followed by targeted therapy with dacomitinib as adjuvant treatment for 2 more years in accordance with the diagnosis and treatment guidelines. At the final follow-up in September 2024, no adverse events or disease progression had occurred. A progression-free survival (PFS) of more than 14 months was achieved.","A 54-year-old Chinese male with 30 years of smoking history presented with a worsening cough for 3 months, with a performance status score of 1. Enhanced computed tomography (CT) revealed a 22 mm × 12 mm × 16 mm mass in the right upper lobe with invasion in the right hilum and mediastinal (Figure 1AandB), which were confirmed by positron emission tomography-CT (PET-CT) scan. Immunohistochemistry (IHC) analysis of the biopsy from the lesion in the upper right lobe of the lung was positive for TTF-1, NpA, CK7, CD5/6 and Ki67 (60%); and negative for p40, p63 and CD56. The patient was diagnosed with stage IIIA lung adenocarcinoma (cT1cN2M0). Follow-up targeted NGS analysis of his lung lesion biopsy identified an EGFRG719X with a mutant allele frequency (MAF) of 3.8%. Two cycles of PC chemotherapy (pemetrexed with 0.9g d1 and carboplatin with 600mg d1) and dacomitinib (30mg) were given. - -The patient underwent video-assisted thoracic surgery (VATS) with right upper lobectomy in July 2023. The tumor was located in the right upper lobe, measuring approximately 1.5*1.5 cm with unclear boundaries. Postoperative pathology results indicated that 10% of the tumor cells remained alive, surrounded by significant fibrosis, necrosis, as well as inflammatory and immune cells. After chemotherapy and dacomitinib induction, there were no lymph node metastases, and the pathological stage was ypT1bN0M0. Two cycles of PC chemotherapy were administered, followed by targeted therapy with dacomitinib as adjuvant treatment for 2 more years in accordance with the diagnosis and treatment guidelines. At the final follow-up in September 2024, no adverse events or disease progression had occurred. A progression-free survival (PFS) of more than 14 months was achieved. - -The patient received two cycles of PC chemotherapy (pemetrexed with 0.9g d1 and carboplatin with 600mg d1) and dacomitinib (30mg). The patient underwent video-assisted thoracic surgery (VATS) with right upper lobectomy in July 2023.","A 54-year-old Chinese male with 30 years of smoking history presented with a worsening cough for 3 months, with a performance status score of 1. Enhanced computed tomography (CT) revealed a 22 mm × 12 mm × 16 mm mass in the right upper lobe with invasion in the right hilum and mediastinal (Figure 1AandB), which were confirmed by positron emission tomography-CT (PET-CT) scan. Immunohistochemistry (IHC) analysis of the biopsy from the lesion in the upper right lobe of the lung was positive for TTF-1, NpA, CK7, CD5/6 and Ki67 (60%); and negative for p40, p63 and CD56. The patient was diagnosed with stage IIIA lung adenocarcinoma (cT1cN2M0). Follow-up targeted NGS analysis of his lung lesion biopsy identified an EGFRG719X with a mutant allele frequency (MAF) of 3.8%. Two cycles of PC chemotherapy (pemetrexed with 0.9g d1 and carboplatin with 600mg d1) and dacomitinib (30mg) were given. - -The patient underwent video-assisted thoracic surgery (VATS) with right upper lobectomy in July 2023. The tumor was located in the right upper lobe, measuring approximately 1.5*1.5 cm with unclear boundaries. Postoperative pathology results indicated that 10% of the tumor cells remained alive, surrounded by significant fibrosis, necrosis, as well as inflammatory and immune cells. After chemotherapy and dacomitinib induction, there were no lymph node metastases, and the pathological stage was ypT1bN0M0. Two cycles of PC chemotherapy were administered, followed by targeted therapy with dacomitinib as adjuvant treatment for 2 more years in accordance with the diagnosis and treatment guidelines. At the final follow-up in September 2024, no adverse events or disease progression had occurred. A progression-free survival (PFS) of more than 14 months was achieved. - -The patient received two cycles of PC chemotherapy (pemetrexed with 0.9g d1 and carboplatin with 600mg d1) and dacomitinib (30mg). The patient underwent video-assisted thoracic surgery (VATS) with right upper lobectomy in July 2023.","[""Lung Cancer""]","[""Lung Adenocarcinoma""]",False,[] -graph_006,Lung_cancer_with_diabetes_mellitus_and_polymyalgia_rheumatica_during_long_term_n_PMC12001326.html,"Lung cancer (stage IV) diagnosedRadiation therapy for pelvic lesion (45 Gy/15 Fr)Chemotherapy (carboplatin + paclitaxel + bevacizumab for four courses)Bevacizumab maintenance therapyRight adrenal metastasis largerNew left adrenal metastasis observedRe-enlargement of the right adrenal metastasis detectedRadiation therapy for the right adrenal lesion (50 Gy/25 Fr)Chemotherapy (two courses of docetaxel monotherapy) administeredEnlargement of the left adrenal metastasis detectedNivolumab monotherapy as fifth-line therapy initiatedDiabetes mellitus (DM) diagnosed: Blood glucose level increased to 468 mg/dl, Urinary ketones negative, pancreatic amylase not elevated, and autoantibodies including anti-glutamic acid decarboxylase (GAD) antibodies negativePolymyalgia rheumatica (PMR) diagnosed: Muscle pain in the femoral area and neck appeared, which did not improve with nonsteroidal anti-inflammatory drugs. CT and magnetic resonance imaging showed no obvious cancer progressionNivolumab treatment continued","Lung cancer (stage IV) diagnosedRadiation therapy for pelvic lesion (45 Gy/15 Fr)Chemotherapy (carboplatin + paclitaxel + bevacizumab for four courses)Bevacizumab maintenance therapyRight adrenal metastasis largerNew left adrenal metastasis observedRe-enlargement of the right adrenal metastasis detectedRadiation therapy for the right adrenal lesion (50 Gy/25 Fr)Chemotherapy (two courses of docetaxel monotherapy) administeredEnlargement of the left adrenal metastasis detectedNivolumab monotherapy as fifth-line therapy initiatedDiabetes mellitus (DM) diagnosed: Blood glucose level increased to 468 mg/dl, Urinary ketones negative, pancreatic amylase not elevated, and autoantibodies including anti-glutamic acid decarboxylase (GAD) antibodies negativePolymyalgia rheumatica (PMR) diagnosed: Muscle pain in the femoral area and neck appeared, which did not improve with nonsteroidal anti-inflammatory drugs. CT and magnetic resonance imaging showed no obvious cancer progressionNivolumab treatment continued","[ - { - ""date"": ""June 2014"", - ""text"": ""Lung cancer (stage IV) diagnosed"" - }, - { - ""date"": ""July 2014"", - ""text"": ""Radiation therapy for pelvic lesion (45 Gy/15 Fr)"" - }, - { - ""date"": ""July 2014"", - ""text"": ""Chemotherapy (carboplatin + paclitaxel + bevacizumab for four courses)"" - }, - { - ""date"": ""July 2014"", - ""text"": ""Bevacizumab maintenance therapy"" - }, - { - ""date"": ""after 15 cycles of maintenance therapy"", - ""text"": ""Right adrenal metastasis larger"" - }, - { - ""date"": ""after 15 cycles of maintenance therapy"", - ""text"": ""New left adrenal metastasis observed"" - }, - { - ""date"": ""January 2018"", - ""text"": ""Re-enlargement of the right adrenal metastasis detected"" - }, - { - ""date"": ""January 2018"", - ""text"": ""Radiation therapy for the right adrenal lesion (50 Gy/25 Fr)"" - }, - { - ""date"": ""January 2018"", - ""text"": ""Chemotherapy (two courses of docetaxel monotherapy) administered"" - }, - { - ""date"": ""February 2019"", - ""text"": ""Enlargement of the left adrenal metastasis detected"" - }, - { - ""date"": ""February 2019"", - ""text"": ""Nivolumab monotherapy as fifth-line therapy initiated"" - }, - { - ""date"": ""May 2022"", - ""text"": ""Diabetes mellitus (DM) diagnosed: Blood glucose level increased to 468 mg/dl, Urinary ketones negative, pancreatic amylase not elevated, and autoantibodies including anti-glutamic acid decarboxylase (GAD) antibodies negative"" - }, - { - ""date"": ""four years and 5 months after starting nivolumab treatment"", - ""text"": ""Polymyalgia rheumatica (PMR) diagnosed: Muscle pain in the femoral area and neck appeared, which did not improve with nonsteroidal anti-inflammatory drugs. CT and magnetic resonance imaging showed no obvious cancer progression"" - }, - { - ""date"": ""four years and 5 months after starting nivolumab treatment"", - ""text"": ""Nivolumab treatment continued"" - } -]","[""Lung cancer""]","[""stage IV lung cancer""]",True,"[[""right adrenal"", ""re-enlargement""], [""left adrenal"", ""enlargement""]]" -graph_007,Case_Report__A_novel_ELMOD3_ALK_and_EML4_ALK_double_fusion_responses_to_neoadjuv_PMC12034634.html,"2020-04-20: Patient comes to hospital for physical examination -2020-05-02: Diagnosis of stage IIIA (T2aN2M0) lung adenocarcinoma confirmed -2020: NGS analysis identifies ELMOD3-ALK and EML4-ALK double fusion in tumor tissue -2020: Patient starts treatment with targeted therapy for ALK fusion -2023-01-15: Patient receives new treatment plan, including combination of chemotherapy and immunotherapy","2020-04-20: Patient comes to hospital for physical examination -2020-05-02: Diagnosis of stage IIIA (T2aN2M0) lung adenocarcinoma confirmed -2020: NGS analysis identifies ELMOD3-ALK and EML4-ALK double fusion in tumor tissue -2020: Patient starts treatment with targeted therapy for ALK fusion -2023-01-15: Patient receives new treatment plan, including combination of chemotherapy and immunotherapy","2020-04-20: Patient comes to hospital for physical examination -2020-05-02: Diagnosis of stage IIIA (T2aN2M0) lung adenocarcinoma confirmed -2020: NGS analysis identifies ELMOD3-ALK and EML4-ALK double fusion in tumor tissue -2020: Patient starts treatment with targeted therapy for ALK fusion -2023-01-15: Patient receives new treatment plan, including combination of chemotherapy and immunotherapy","[""Lung Cancer""]","[""Lung Adenocarcinoma""]",False,[] -graph_008,Case_report__pulmonary_lymphoepithelial_carcinoma_mimicking_tuberculosis__PMC11987468.html,"The patient was a 37-year-old woman who presented with intermittent cough and slight chest discomfort for 3 months. She also had a painless cervical mass for 1 month. The pathological tissue showed granulomatous inflammation, caseous necrosis, and Langhans' giant cells observed on left cervical lymph node puncture.","37-year-old woman with intermittent cough and slight chest discomfort for 3 months; painless cervical mass for 1 month; pathological tissue showed granulomatous inflammation, caseous necrosis, and Langhans’ giant cells observed on left cervical lymph node puncture; untreated congenital heart disease (patent ductus arteriosus) for 20 years; hypertension for half a year with irregular use of valsartan; mass measuring approximately 4*3 cm on the left clavicle, well-defined, poorly mobile, non-tender, and without surface ulceration or redness; Physical examination of the lungs was unremarkable. A continuous murmur was auscultated at the left sternal border; Laboratory tests of blood carcinoembryonic antigen (CEA), squamous cell carcinoma antigen, cytokeratin 19 fragment and neuron-specific enolase (NSE) were all normal; Blood routine test, liver and kidney function, electrolytes, procalcitonin (PCT), C-reactive protein (CRP) and T-lymphocyte subsets were all normal; Sputum for acid-fast bacilli (AFB) and GeneXpert MTB/RIF were negative; Blood test of EB virus showed increased antibody title of capsid antigen IgG antibody 750U/mL (Reference:0–20 U/mL), EB virus early antigen IgM antibody 2.57 COI (Cut off index reference:0-1.1) and EB virus core antigen IgG antibody 600U/mL(Reference:0–20 U/mL); Repeated ultrasound-guided left supraclavicular lymph node puncture was performed; Histopathology showed focal distribution of epithelioid cells and a few multinucleated giant cells, which suggested granulomatous inflammation (Fig.1); Staining of Acid-fast and methenamine silver were all negative; Lymph node tissue for GeneXpert MTB/RIF and TB culture were all negative; Chest CT scan showed mass(34 × 43 mm) in the middle lobe of the right lung (A,D; blue arrows) and multiple enlarged lymph nodes in mediastinum (B,C; red arrows); Lung biopsy shows lymphoepithelial carcinoma. The tumor cells are densely nestled, the tumor cells have a blurred boundary, large alveoli, eosinophilic nuclei, and the mesenchymal is accompanied by lymphocyte infiltration. (HE staining, 400×)); Immunohistochemical staining shows CK positive in tumor cells (200×); Immunohistochemical staining showed P40 positive in tumor cells (200×); In situ hybridization showed EBER positive in tumor cells (200×); Chest CT scan showed a significant improvement of the lung mass(26 × 17 mm)and reduced lymph nodes after chemotherapy and immunotherapy; Biopsy of left neck lymph node showed granulomatous inflammation. Enhanced CT scan showed mass in the middle lobe of the right lung and multiple enlarged lymph nodes in left neck, mediastinum and right hilum. Percutaneous lung biopsy was performed, showing EBV-positive poorly differentiated carcinoma consistent with lymphoepithelioma. Nasopharyngoscopy excluded nasopharyngeal carcinoma. Repeated CT 1.5 months later showed significant reduction of lung lesions and cervical enlarged lymph nodes.","37-year-old woman with intermittent cough and slight chest discomfort for 3 months; painless cervical mass for 1 month; pathological tissue showed granulomatous inflammation, caseous necrosis, and Langhans’ giant cells observed on left cervical lymph node puncture; untreated congenital heart disease (patent ductus arteriosus) for 20 years; hypertension for half a year with irregular use of valsartan; mass measuring approximately 4*3 cm on the left clavicle, well-defined, poorly mobile, non-tender, and without surface ulceration or redness; Physical examination of the lungs was unremarkable. A continuous murmur was auscultated at the left sternal border; Laboratory tests of blood carcinoembryonic antigen (CEA), squamous cell carcinoma antigen, cytokeratin 19 fragment and neuron-specific enolase (NSE) were all normal; Blood routine test, liver and kidney function, electrolytes, procalcitonin (PCT), C-reactive protein (CRP) and T-lymphocyte subsets were all normal; Sputum for acid-fast bacilli (AFB) and GeneXpert MTB/RIF were negative; Blood test of EB virus showed increased antibody title of capsid antigen IgG antibody 750U/mL (Reference:0–20 U/mL), EB virus early antigen IgM antibody 2.57 COI (Cut off index reference:0-1.1) and EB virus core antigen IgG antibody 600U/mL(Reference:0–20 U/mL); Repeated ultrasound-guided left supraclavicular lymph node puncture was performed; Histopathology showed focal distribution of epithelioid cells and a few multinucleated giant cells, which suggested granulomatous inflammation (Fig.1); Staining of Acid-fast and methenamine silver were all negative; Lymph node tissue for GeneXpert MTB/RIF and TB culture were all negative; Chest CT scan showed mass(34 × 43 mm) in the middle lobe of the right lung (A,D; blue arrows) and multiple enlarged lymph nodes in mediastinum (B,C; red arrows); Lung biopsy shows lymphoepithelial carcinoma. The tumor cells are densely nestled, the tumor cells have a blurred boundary, large alveoli, eosinophilic nuclei, and the mesenchymal is accompanied by lymphocyte infiltration. (HE staining, 400×)); Immunohistochemical staining shows CK positive in tumor cells (200×); Immunohistochemical staining showed P40 positive in tumor cells (200×); In situ hybridization showed EBER positive in tumor cells (200×); Chest CT scan showed a significant improvement of the lung mass(26 × 17 mm)and reduced lymph nodes after chemotherapy and immunotherapy; Biopsy of left neck lymph node showed granulomatous inflammation. Enhanced CT scan showed mass in the middle lobe of the right lung and multiple enlarged lymph nodes in left neck, mediastinum and right hilum. Percutaneous lung biopsy was performed, showing EBV-positive poorly differentiated carcinoma consistent with lymphoepithelioma. Nasopharyngoscopy excluded nasopharyngeal carcinoma. Repeated CT 1.5 months later showed significant reduction of lung lesions and cervical enlarged lymph nodes.","[""lymphoepithelial carcinoma""]","[""EBV-positive poorly differentiated carcinoma"", ""nasopharyngeal carcinoma""]",True,"[[""lung"", ""middle lobe""], [""lymph nodes"", ""mediastinum""], [""lymph nodes"", ""left neck""], [""lymph nodes"", ""right hilum""]]" -graph_009,Radiotherapy_for_Lung_Cancer__An_Unrecognized_Cause_of_Lung_Torsion__PMC11962223.html,"A 73-year-old lady presented with a long history of bilateral chest wall discomfort, exertional breathlessness, and chronic fatigue. She was found to have a left lung opacification on chest radiograph, which prompted a computed tomography scan and positron emission tomography-computed tomography (PET-CT) scan, which confirmed an avid 53 mm left upper lobe mass with associated hilar and mediastinal lymphadenopathy staging the disease as T3N2M0. An endobronchial ultrasound scan and biopsy (EBUS) sampling of station 11L confirmed lung adenocarcinoma metastasis. It appeared positive on the PD-L1 staining. Other immunohistochemistry (ALK/ROS/NTRK) was negative. Her lung function at this point was 51% forced expiratory volume (FEV1) (1.21) and 73% diffusing capacity of the lungs for carbon monoxide (DLCO). She consented to radical treatment with four weeks of radiotherapy dosed at 55 Gy/20 with concurrent chemotherapy. Her initial scan post radiotherapy showed a limited response to treatment, but her subsequent CT scan in a year showed that there was no tumor visible on axial images but there was apparent collapse of the left lung base. Post radiotherapy imaging showed complete response to treatment. It also showed two small bullae seen in the post aspect of the lower lobe. Five months later, she had a follow-up scan (Figures 4,5). Coronal views showed upward curving of the lower segmental bronchi and pulmonary vessels. The two small bullae initially seen in the post aspect of the lower lobe seemed to have relocated to the upper zone anteriorly. Lung torsion with 180-degree rotation was diagnosed. The patient was clinically well; hence, it did not warrant surgical referral.","A 73-year-old lady presented with a long history of bilateral chest wall discomfort, exertional breathlessness, and chronic fatigue. She was found to have a left lung opacification on chest radiograph, which prompted a computed tomography scan and positron emission tomography-computed tomography (PET-CT) scan, which confirmed an avid 53 mm left upper lobe mass with associated hilar and mediastinal lymphadenopathy staging the disease as T3N2M0. An endobronchial ultrasound scan and biopsy (EBUS) sampling of station 11L confirmed lung adenocarcinoma metastasis. It appeared positive on the PD-L1 staining. Other immunohistochemistry (ALK/ROS/NTRK) was negative. Her lung function at this point was 51% forced expiratory volume (FEV1) (1.21) and 73% diffusing capacity of the lungs for carbon monoxide (DLCO). She consented to radical treatment with four weeks of radiotherapy dosed at 55 Gy/20 with concurrent chemotherapy. Her initial scan post radiotherapy showed a limited response to treatment, but her subsequent CT scan in a year showed that there was no tumor visible on axial images but there was apparent collapse of the left lung base. Post radiotherapy imaging showed complete response to treatment. It also showed two small bullae seen in the post aspect of the lower lobe. Five months later, she had a follow-up scan (Figures 4,5). Coronal views showed upward curving of the lower segmental bronchi and pulmonary vessels. The two small bullae initially seen in the post aspect of the lower lobe seemed to have relocated to the upper zone anteriorly. Lung torsion with 180-degree rotation was diagnosed. The patient was clinically well; hence, it did not warrant surgical referral.","A 73-year-old lady presented with a long history of bilateral chest wall discomfort, exertional breathlessness, and chronic fatigue. She was found to have a left lung opacification on chest radiograph, which prompted a computed tomography scan and positron emission tomography-computed tomography (PET-CT) scan, which confirmed an avid 53 mm left upper lobe mass with associated hilar and mediastinal lymphadenopathy staging the disease as T3N2M0. An endobronchial ultrasound scan and biopsy (EBUS) sampling of station 11L confirmed lung adenocarcinoma metastasis. It appeared positive on the PD-L1 staining. Other immunohistochemistry (ALK/ROS/NTRK) was negative. Her lung function at this point was 51% forced expiratory volume (FEV1) (1.21) and 73% diffusing capacity of the lungs for carbon monoxide (DLCO). She consented to radical treatment with four weeks of radiotherapy dosed at 55 Gy/20 with concurrent chemotherapy. Her initial scan post radiotherapy showed a limited response to treatment, but her subsequent CT scan in a year showed that there was no tumor visible on axial images but there was apparent collapse of the left lung base. Post radiotherapy imaging showed complete response to treatment. It also showed two small bullae seen in the post aspect of the lower lobe. Five months later, she had a follow-up scan (Figures 4,5). Coronal views showed upward curving of the lower segmental bronchi and pulmonary vessels. The two small bullae initially seen in the post aspect of the lower lobe seemed to have relocated to the upper zone anteriorly. Lung torsion with 180-degree rotation was diagnosed. The patient was clinically well; hence, it did not warrant surgical referral.","[""lung adenocarcinoma""]","[""lung adenocarcinoma""]",True,"[[""hilar"", ""lymphadenopathy""], [""mediastinal"", ""lymphadenopathy""]]" -graph_010,Re_do_robot_assisted_salvage_lobectomy_after_esophagectomy_with_gastric_pull_up__PMC11980297.html,"55-year-old female underwent esophagectomy with gastric pull-up reconstruction for squamous cell carcinoma (SCC) of the esophagus (cT3N2M0, stage IIIB) -Six years later, computed tomography (CT) scan showed stage IA Thyroid Transcription Factor-1 (TTF-1) positive adenocarcinoma in the left upper lobe treated by stereotactic radiotherapy -Two years later, a SCC of the right upper lobe (RUL) was found with tumor diameter of 54 mm and high Programmed Death-Ligand 1 (PD-L1) expression -Pembrolizumab initiated with curative intent but showed no biological response -Salvage lobectomy including complete mediastinal lymph node dissection performed -Positioned in left lateral decubitus position, adhesions in closure-line of the previous thoracotomy and thus RATS was deemed feasible. -After standard port placement (Fig.2A), docking and instrument placement (Tip-up fenestrated grasper™, Cadière forceps™, Maryland bipolar dissector™ and the Monopolar spatula™) adhesiolysis between the lung and the chest wall and taking down dense adhesions between the lung and the intrathoracic gastric pull-up the nasogastric tube was exposed (Fig.2B). -The nasogastric tube was placed in the gastric pull-up as a safety measure. -Meticulous dissection of its vascularization enabled subsequent standard lobectomy of the RUL with complete lymph node dissection (R4, 7, 10 and 11). -After removal of the specimen and chest tube placement, a Ropivacaine® intercostal nerve block levels T4 to T9 was installed. -Total operative time was 3 h 44 min with 50 ml blood loss.","55-year-old female underwent esophagectomy with gastric pull-up reconstruction for squamous cell carcinoma (SCC) of the esophagus (cT3N2M0, stage IIIB) -Six years later, computed tomography (CT) scan showed stage IA Thyroid Transcription Factor-1 (TTF-1) positive adenocarcinoma in the left upper lobe treated by stereotactic radiotherapy -Two years later, a SCC of the right upper lobe (RUL) was found with tumor diameter of 54 mm and high Programmed Death-Ligand 1 (PD-L1) expression -Pembrolizumab initiated with curative intent but showed no biological response -Salvage lobectomy including complete mediastinal lymph node dissection performed -Positioned in left lateral decubitus position, adhesions in closure-line of the previous thoracotomy and thus RATS was deemed feasible. -After standard port placement (Fig.2A), docking and instrument placement (Tip-up fenestrated grasper™, Cadière forceps™, Maryland bipolar dissector™ and the Monopolar spatula™) adhesiolysis between the lung and the chest wall and taking down dense adhesions between the lung and the intrathoracic gastric pull-up the nasogastric tube was exposed (Fig.2B). -The nasogastric tube was placed in the gastric pull-up as a safety measure. -Meticulous dissection of its vascularization enabled subsequent standard lobectomy of the RUL with complete lymph node dissection (R4, 7, 10 and 11). -After removal of the specimen and chest tube placement, a Ropivacaine® intercostal nerve block levels T4 to T9 was installed. -Total operative time was 3 h 44 min with 50 ml blood loss.","55-year-old female underwent esophagectomy with gastric pull-up reconstruction for squamous cell carcinoma (SCC) of the esophagus (cT3N2M0, stage IIIB) -Six years later, computed tomography (CT) scan showed stage IA Thyroid Transcription Factor-1 (TTF-1) positive adenocarcinoma in the left upper lobe treated by stereotactic radiotherapy -Two years later, a SCC of the right upper lobe (RUL) was found with tumor diameter of 54 mm and high Programmed Death-Ligand 1 (PD-L1) expression -Pembrolizumab initiated with curative intent but showed no biological response -Salvage lobectomy including complete mediastinal lymph node dissection performed -Positioned in left lateral decubitus position, adhesions in closure-line of the previous thoracotomy and thus RATS was deemed feasible. -After standard port placement (Fig.2A), docking and instrument placement (Tip-up fenestrated grasper™, Cadière forceps™, Maryland bipolar dissector™ and the Monopolar spatula™) adhesiolysis between the lung and the chest wall and taking down dense adhesions between the lung and the intrathoracic gastric pull-up the nasogastric tube was exposed (Fig.2B). -The nasogastric tube was placed in the gastric pull-up as a safety measure. -Meticulous dissection of its vascularization enabled subsequent standard lobectomy of the RUL with complete lymph node dissection (R4, 7, 10 and 11). -After removal of the specimen and chest tube placement, a Ropivacaine® intercostal nerve block levels T4 to T9 was installed. -Total operative time was 3 h 44 min with 50 ml blood loss.","[""Squamous cell carcinoma"", ""Adenocarcinoma""]","[""Esophageal squamous cell carcinoma"", ""Thyroid Transcription Factor-1 positive adenocarcinoma"", ""Squamous cell carcinoma of the right upper lobe""]",False,[] -graph_011,Efficacy_of_Selpercatinib_in_Non_small_Cell_Lung_Cancer_With_Bilateral_Internal__PMC12021377.html,"Three new intracranial lesions were identified, accompanied by clinical manifestations of paresthesia and reduced muscular strength in the lower limbs.Near-complete resolution of multiple supratentorial and infratentorial nodular lesions, with the absence of gadolinium enhancement, except for a faint residual signal at the cisternal segment of the right eighth cranial nerveSignificant symptomatic improvement within one week of treatment, including complete hearing recovery and a substantial reduction of dizziness and headache complaints.Fourth-line treatment with selpercatinib (160 mg twice daily) was initiatedDisease progression was identified with the emergence of a new growing nodule measuring 11 mm in its longest diameter.First-line systemic therapy with a platinum-based doublet, completing six cycles with a partial tumor response according to Response Evaluation Criteria in Solid Tumors (RECIST) criteria","Three new intracranial lesions were identified, accompanied by clinical manifestations of paresthesia and reduced muscular strength in the lower limbs.Near-complete resolution of multiple supratentorial and infratentorial nodular lesions, with the absence of gadolinium enhancement, except for a faint residual signal at the cisternal segment of the right eighth cranial nerveSignificant symptomatic improvement within one week of treatment, including complete hearing recovery and a substantial reduction of dizziness and headache complaints.Fourth-line treatment with selpercatinib (160 mg twice daily) was initiatedDisease progression was identified with the emergence of a new growing nodule measuring 11 mm in its longest diameter.First-line systemic therapy with a platinum-based doublet, completing six cycles with a partial tumor response according to Response Evaluation Criteria in Solid Tumors (RECIST) criteria"," - - Three new intracranial lesions were identified, accompanied by clinical manifestations of paresthesia and reduced muscular strength in the lower limbs. - - - Near-complete resolution of multiple supratentorial and infratentorial nodular lesions, with the absence of gadolinium enhancement, except for a faint residual signal at the cisternal segment of the right eighth cranial nerve - - - Significant symptomatic improvement within one week of treatment, including complete hearing recovery and a substantial reduction of dizziness and headache complaints. - - - Fourth-line treatment with selpercatinib (160 mg twice daily) was initiated - - - Disease progression was identified with the emergence of a new growing nodule measuring 11 mm in its longest diameter. - - - First-line systemic therapy with a platinum-based doublet, completing six cycles with a partial tumor response according to Response Evaluation Criteria in Solid Tumors (RECIST) criteria - -","[""adenocarcinoma""]","[""lung cancer""]",True,"[[""brain"", ""intracranial""], [""bone"", ""osseous""], [""liver"", ""hepatic""], [""lymph nodes"", ""lymphatic""], [""lung"", ""pulmonary""]]" -graph_012,Multiple_Lung_Metastases_of_Papillary_Thyroid_Carcinoma_Detected_by_Detailed_Pat_PMC11971052.html,"79-year-old male patient with: -- Height: 174 cm -- Weight: 65 kg -- BMI: 21.5 kg/m² -- Smoking history: two packs per day for 55 years (Brinkman Index of 1100) -- Medical history: - - Total thyroidectomy performed five years earlier for papillary thyroid carcinoma (PTC) with comorbidities of chronic obstructive pulmonary disease and hypertension - - Left cervical lymphadenopathy of unknown origin six years ago - - Subsequent investigations revealed suspected cervical lymph node metastasis of PTC. - - Five years ago, the patient underwent total thyroidectomy and left cervical lymph node dissection. Histopathological findings revealed multiple papillary thyroid microcarcinomas (pT1a [m], pEx0, pN1b 4/10, pStage IVA) with negative surgical margins. - - The patient was treated with radioiodine therapy (Iodine-131). - - Two years ago, a nodule in the right upper lobe of the lung was identified, which was followed up with chest CT scans. Compared to two years prior, an increase in nodule density was observed, prompting a transbronchial biopsy; however, no definitive diagnosis was made. - - Tumor markers (CYFRA, CEA, SLX, ProGRP, NSE) were within normal limits. - - Serum thyroglobulin levels showed a gradual increase over time, with a preoperative value of 47.7 ng/mL. - - Chest X-rays showed no abnormalities, while chest CT scans revealed an irregular nodule measuring 15×14 mm in the S1 segment of the right upper lobe (Figure1). - - No hilar lymphadenopathy was detected. - - FDG-PET was not performed. - - Pulmonary function and electrocardiogram tests showed no abnormalities. - -An irregular nodule 15 x 14 mm in size was seen in the S1 upper lobe of the right lung (arrow). The surgery was performed under general anesthesia in the left lateral decubitus position with video-assisted thoracoscopy. The tumor was partially resected using an automatic stapler and submitted for rapid diagnosis. The diagnosis of adenocarcinoma was confirmed, and a right upper lobectomy with mediastinal lymph node dissection (ND-1b) was performed. The operation lasted 2 hours and 30 minutes. - -Histopathological examination revealed adenocarcinoma. -Adenocarcinoma cells were found in the resected tissue. -Immunohistochemistry showed positive staining for TTF-1, indicating lung origin of the tumor. -The patient's postoperative course was uneventful, with no complications noted. -5 years ago: Total thyroidectomy performed for papillary thyroid carcinoma (PTC) with comorbidities of chronic obstructive pulmonary disease and hypertension. -2 years ago: A nodule in the right upper lobe of the lung was identified, which was followed up with chest CT scans. Compared to two years prior, an increase in nodule density was observed, prompting a transbronchial biopsy; however, no definitive diagnosis was made. -6 months post-surgery: No evidence of recurrence.","Total thyroidectomy performed for papillary thyroid carcinoma (PTC) with comorbidities of chronic obstructive pulmonary disease and hypertension.A nodule in the right upper lobe of the lung was identified, which was followed up with chest CT scans. Compared to two years prior, an increase in nodule density was observed, prompting a transbronchial biopsy; however, no definitive diagnosis was made.No evidence of recurrence.","79-year-old male patient with: -- Height: 174 cm -- Weight: 65 kg -- BMI: 21.5 kg/m² -- Smoking history: two packs per day for 55 years (Brinkman Index of 1100) -- Medical history: - - Total thyroidectomy performed five years earlier for papillary thyroid carcinoma (PTC) with comorbidities of chronic obstructive pulmonary disease and hypertension - - Left cervical lymphadenopathy of unknown origin six years ago - - Subsequent investigations revealed suspected cervical lymph node metastasis of PTC - - Five years ago, the patient underwent total thyroidectomy and left cervical lymph node dissection. Histopathological findings revealed multiple papillary thyroid microcarcinomas (pT1a [m], pEx0, pN1b 4/10, pStage IVA) with negative surgical margins. - - The patient was treated with radioiodine therapy (Iodine-131) - - Two years ago, a nodule in the right upper lobe of the lung was identified, which was followed up with chest CT scans. Compared to two years prior, an increase in nodule density was observed, prompting a transbronchial biopsy; however, no definitive diagnosis was made. - - Tumor markers (CYFRA, CEA, SLX, ProGRP, NSE) were within normal limits - - Serum thyroglobulin levels showed a gradual increase over time, with a preoperative value of 47.7 ng/mL - - Chest X-rays showed no abnormalities, while chest CT scans revealed an irregular nodule measuring 15×14 mm in the S1 segment of the right upper lobe (Figure1) - - No hilar lymphadenopathy was detected - - FDG-PET was not performed - - Pulmonary function and electrocardiogram tests showed no abnormalities - -An irregular nodule 15 x 14 mm in size was seen in the S1 upper lobe of the right lung (arrow). The surgery was performed under general anesthesia in the left lateral decubitus position with video-assisted thoracoscopy. The tumor was partially resected using an automatic stapler and submitted for rapid diagnosis. The diagnosis of adenocarcinoma was confirmed, and a right upper lobectomy with mediastinal lymph node dissection (ND-1b) was performed. The operation lasted 2 hours and 30 minutes. - -Histopathological examination revealed adenocarcinoma. -Adenocarcinoma cells were found in the resected tissue. -Immunohistochemistry showed positive staining for TTF-1, indicating lung origin of the tumor. -The patient's postoperative course was uneventful, with no complications noted. -5 years ago: Total thyroidectomy performed for papillary thyroid carcinoma (PTC) with comorbidities of chronic obstructive pulmonary disease and hypertension. -2 years ago: A nodule in the right upper lobe of the lung was identified, which was followed up with chest CT scans. Compared to two years prior, an increase in nodule density was observed, prompting a transbronchial biopsy; however, no definitive diagnosis was made. -6 months post-surgery: No evidence of recurrence.","[""papillary thyroid carcinoma"", ""adenocarcinoma""]","[""pT1a [m] papillary thyroid microcarcinomas"", ""lung adenocarcinoma""]",True,"[[""cervical lymph nodes"", ""papillary thyroid carcinoma""]]" -graph_013,Brain_Metastasis_From_Advanced_Stage_Lung_Carcinoma__Differentiating_From_Stroke_PMC11955559.html,"Patient's medical history: -- Diagnosed with stage III NSCLC in the right upper lobe bronchus that had spread throughout the middle and lower lobes (15 months ago) -- PET/CT scans revealed a right supraclavicular node, right upper paratracheal node, multiple additional paratracheal nodes, and enlarged para-aortic nodes -- Upper esophageal stricture treated with dilatation during an esophagogastroduodenoscopy (1 year ago) -- Initiated docetaxel for refractory complications with stage III NSCLC (2 days ago) - -Recent medical events: -- Diagnosed with hypokalemia, given potassium supplement and ondansetron for nausea -- Marked unilateral weakness in left upper extremity, grip strength of 2/5 versus 5/5 strength in the right upper extremity -- Leukopenia, WBC of 1.12 K/μL -- Potassium level still low but increased since previous ED visit -- COVID-19 and flu tests all negative -- Urine testing revealed trace blood and bacteria and was positive for cannabis -- Non-contrast CT results revealed multifocal intracranial lesions with associated vasogenic edema with mild mass effect, consistent with metastatic disease -- CT angiography (CTA) performed, revealing no flow-limiting stenosis or occlusion of major intracranial or cervical arteries -- Multiple bilateral pulmonary nodules and a partially imaged right upper lobe mass were seen, along with asymmetrically enlarged right level IIb nodes, suspicious for metastasis in this clinical setting - -Current medications: -- Docetaxel for refractory complications with stage III NSCLC -- Potassium supplement for hypokalemia -- Ondansetron for nausea","15 months ago: Diagnosed with stage III NSCLC in the right upper lobe bronchus that had spread throughout the middle and lower lobes. PET/CT scans revealed a right supraclavicular node, right upper paratracheal node, multiple additional paratracheal nodes, and enlarged para-aortic nodes. -1 year ago: Upper esophageal stricture treated with dilatation during an esophagogastroduodenoscopy. -2 days ago: Initiated docetaxel for refractory complications with stage III NSCLC. -Current visit: Diagnosed with hypokalemia, given potassium supplement and ondansetron for nausea. Marked unilateral weakness in left upper extremity, grip strength of 2/5 versus 5/5 strength in the right upper extremity. -Current visit: Leukopenia, WBC of 1.12 K/μL. Potassium level still low but increased since previous ED visit. -Current visit: COVID-19 and flu tests all negative. -Current visit: Urine testing revealed trace blood and bacteria and was positive for cannabis. -Current visit: Non-contrast CT results revealed multifocal intracranial lesions with associated vasogenic edema with mild mass effect, consistent with metastatic disease. -Current visit: CT angiography (CTA) performed, revealing no flow-limiting stenosis or occlusion of major intracranial or cervical arteries. -Current visit: Multiple bilateral pulmonary nodules and a partially imaged right upper lobe mass were seen, along with asymmetrically enlarged right level IIb nodes, suspicious for metastasis in this clinical setting.","15 months ago: Diagnosed with stage III NSCLC in the right upper lobe bronchus that had spread throughout the middle and lower lobes. PET/CT scans revealed a right supraclavicular node, right upper paratracheal node, multiple additional paratracheal nodes, and enlarged para-aortic nodes. -1 year ago: Upper esophageal stricture treated with dilatation during an esophagogastroduodenoscopy. -2 days ago: Initiated docetaxel for refractory complications with stage III NSCLC. -Current visit: Diagnosed with hypokalemia, given potassium supplement and ondansetron for nausea. Marked unilateral weakness in left upper extremity, grip strength of 2/5 versus 5/5 strength in the right upper extremity. -Current visit: Leukopenia, WBC of 1.12 K/μL. Potassium level still low but increased since previous ED visit. -Current visit: COVID-19 and flu tests all negative. -Current visit: Urine testing revealed trace blood and bacteria and was positive for cannabis. -Current visit: Non-contrast CT results revealed multifocal intracranial lesions with associated vasogenic edema with mild mass effect, consistent with metastatic disease. -Current visit: CT angiography (CTA) performed, revealing no flow-limiting stenosis or occlusion of major intracranial or cervical arteries. -Current visit: Multiple bilateral pulmonary nodules and a partially imaged right upper lobe mass were seen, along with asymmetrically enlarged right level IIb nodes, suspicious for metastasis in this clinical setting.","[""NSCLC""]","[""stage III NSCLC""]",True,"[[""brain"", ""multifocal intracranial lesions""], [""lung"", ""bilateral pulmonary nodules""], [""lymph nodes"", ""asymmetrically enlarged right level IIb nodes""]]" -graph_014,Successful_treatment_of_an_elderly_patient_with_lung_squamous_cell_carcinoma_by__PMC11973309.html,"A 73-year-old man presenting with paroxysmal cough and sputum accompanied by chest pain, weight loss, and exertional asthma was admitted to a local hospital on February 13, 2023. A chest computed tomography (CT) scan revealed a mass in the right upper lobe of the lung, raising the suspicion of a malignant tumor (MT). Subsequent positron electron tomography (PET)-CT indicated an irregular lobulated soft tissue mass in the apical segment of the right lung upper lobe, measuring approximately 4.1×3.5 cm and showing increased fluorodeoxyglucose (FDG) uptake (SUV value) and spiculated margins, suggestive of lung cancer (likely squamous cell carcinoma). There were tiny nodular shadows about 0.3 cm in diameter surrounding the mass, and the possibility of metastasis was not ruled out. Several enlarged lymph nodes were visible in regions 10R, 4R, and 2R, the largest measuring approximately 1.7 cm in diameter. that showed varying degrees of increased FDG uptake, suggesting possible metastasis in some lymph nodes. On March 3, 2023, a CT-guided biopsy of the right upper lobe lung mass was performed at our hospital. According to the pathology report (Figure 1), combined with the patient’s medical history and immunohistochemical markers, squamous cell carcinoma was considered (Note: CK7-, CK20-, CK5/6-, NapsinA-, CD56-, P40+, Syn-, CgA-, CD56-, TTF-1-, Ki-67 75%). As shown in the microscopic cellular morphology and tissue architecture ofFigure 1, the entire field demonstrates complete loss of normal pulmonary tissue structure.","Diagnosed with stage cT2bN2M0 right lung squamous cell carcinoma on March 14, 2023. Immunotherapy combined with chemotherapy was started: paclitaxel liposome 240 mg on d1, carboplatin 500 mg on d1, and tislelizumab 200 mg on d2, every 3 weeks (q3w). Grade III thrombocytopenia occurred post-treatment, with a nadir of 30 × 10^9/L. Immunotherapy regimen was adjusted for the first cycle: tislelizumab 200 mg on d0 + paclitaxel liposome 120 mg on d1, 90 mg on d8 + carboplatin 150 mg on d2, 100 mg on d3-5, every 3 weeks (q3w). However, on May 16, 2023, bacteremia and herpes zoster infection were observed, so antitumor treatment was halted.","Vancomycin was given for anti-infection and anti-viral treatment. After active treatment, the first reexamination on May 29, 2023, with a repeat enhanced chest CT showed an irregular thin-walled cystic lesion in the right upper lobe with fine line compartments, measuring approximately 32×25×27 mm, with enlarged and moderately enhanced lymph nodes in the 10R, 4R, and 2R regions. Compared to the March 3, 2023 CT, the solid component of the right upper lobe mass had essentially disappeared, and the mediastinal lymph nodes were similar in size. Response assessment indicated partial remission, and the second cycle of immunotherapy combined with chemotherapy was administered on June 27, 2023.","[""malignant tumor"", ""lung cancer""]","[""squamous cell carcinoma""]",True,"[[""squamous cell carcinoma"", ""lymph nodes""]]" -graph_015,A_case_of_obstructive_shock_and_transient_ischemic_attack_from_intracardiac_meta_PMC11981378.html,"- Patient presented to ER 8 days after initial diagnosis of intracardiac metastasis of NSCLC. -- On admission, patient appeared lethargic, tachycardic with irregular rhythm, decreased breath sounds on the right, and tender right upper quadrant due to rib fractures. Heart rate was 110 bpm, blood pressure 96/60 mmHg, respiratory rate 22, and saturation of 100%. Patient treated for hypotension with IV fluids. -- CT of head negative for acute intracranial processes. CT of abdomen and pelvis showed mildly displaced rib fractures, right kidney interpolar cyst with new areas of internal hyperdensity (suspected benign cysts). No other new presentations appreciated. -- Laboratory values during the admission: - - Hemoglobin (g/dL): 9.6, 9.9, 10.4 - - Hematocrit (%): 28.3, 30.2, 31.4 - - Platelets (K/uL): 146, 128, 170 - - WBC (K/uL): 19.5, 16.29, 20.71 - - Sodium (mEq/L): 129, 128, 127 - - Potassium (mEq/L): 3.7, 4, 4.7 - - Chloride (mEq/L): 102, 100, 101 - - Bicarbonate (mmol/L): 24, 23, 25 - - Glucose (mg/dL): 120, 130, 110 - - Creatinine (mg/dL): 1.2, 1.3, 1.1 - - Urea nitrogen (mg/dL): 20, 22, 18 - - Calcium (mg/dL): 9.5, 10.2, 9.8 - - Phosphate (mg/dL): 4.2, 4.5, 4.0 - - Lactate dehydrogenase (LDH) (U/L): 250, 280, 220 - - Aspartate aminotransferase (AST) (U/L): 40, 45, 35 - - Alanine aminotransferase (ALT) (U/L): 30, 35, 25 - - Total bilirubin (mg/dL): 1.2, 1.5, 1.0 - - Direct bilirubin (mg/dL): 0.8, 1.0, 0.7 - - Alkaline phosphatase (ALP) (U/L): 120, 140, 100 - - Gamma-glutamyl transferase (GGT) (U/L): 50, 60, 40 - -2 days post-ER admission: Patient developed symptoms suggestive of a transient ischemic attack (TIA) with right facial droop and left pronator drift. -CT-Angiography did not show any large vessel occlusion or acute intracranial process. -The deficits resolved in 6 hours; however, the patient still had ongoing tachycardia and uncontrolled atrial fibrillation. - -Patient was diagnosed with locally advanced non-small cell lung cancer (NSCLC) stage IIIB (T4N2Mx) metastatic non-small cell lung carcinoma of squamous cell histology. -Endobronchial ultrasound-guided fine-needle aspiration confirmed the diagnosis. -CT angiogram revealed a large hypermetabolic mass in the right lower lobe extending into the mediastinum with enlarged hypermetabolic subcarinal nodes, irregular mass measuring approximately 8.7 × 4.6 cm, partial atelectasis of the right middle and lower lobes, small to moderate low-density right pleural effusion. -Tumor thrombus in the left atrium measuring 3.4 × 6.3 cm, interfering with the mitral valve function. -Echocardiogram showed that the mass was invading into the left atrium. - -Patient underwent palliative care for symptom management. - -2 days post-ER admission: TIA with right facial droop and left pronator drift -CT-Angiography: no large vessel occlusion or acute intracranial process -Discharged to hospice care","Patient presented to ER with intracardiac metastasis of NSCLCTransient ischemic attack (TIA) with right facial droop and left pronator driftCT-Angiography showed no large vessel occlusion or acute intracranial process; patient discharged to hospice care","Patient presented to ER with intracardiac metastasis of NSCLC (initial diagnosis) -2 days post-ER admission: Transient ischemic attack (TIA) with right facial droop and left pronator drift -after TIA: CT-Angiography showed no large vessel occlusion or acute intracranial process; patient discharged to hospice care","[""non-small cell lung cancer""]","[""squamous cell histology""]",True,"[[""left atrium"", ""tumor thrombus""], [""right lower lobe"", ""large hypermetabolic mass""], [""mediastinum"", ""enlarged hypermetabolic subcarinal nodes""]]" -graph_016,Precise_Localization_of_the_Subsolid_Lesion_by_Colour_Marking_under_CT_Guided_Co_PMC12040305.html,"51-year-old female patient with a subsolid pulmonary lesion. The lesion was followed up for 4 years and subsequently resected videothoracoscopically after preoperative labeling with a mixture of blue dye and contrast agent. -Born in 1970, underwent resection of malignant melanoma in April 2013. -Suspicious lymph node (LU) in the left axilla detected on ultrasound, biopsy confirmed metastasis of malignant melanoma. PET/CT showed solitary finding in the left axilla. Dissection of the left axilla performed, only one of 19 LNs affected by metastasis. Molecular genetic testing revealed BRAF mutation at codon 600, targeted therapy with BRAF inhibitors deployed. -Routine CT scan of lungs in November 2017 detected new asymptomatic lesion in segment S10 of right lower lobe, measuring 7 mm in size. Follow-up CT scan in June 2020 showed lesion changed character to subsolid lesion with solid component. PET/CT scan in July 2020 confirmed persistence of the lesion without increased metabolic activity. -A further follow-up in April 2021 confirmed persistence and additionally showed a slight size progression of the solid component of the lesion. -The resection lines from the tumor margin to the resection margins were adequate, with the smallest measured dimension of 13 mm. No metastatic process was found in the examined mediastinal lymphatic nodes. The postoperative course was uneventful, and the patient was discharged to home care on the fourth day after surgery. -She continues to be followed up regularly and remains free of signs of disease recurrence.","51-year-old female patient with a subsolid pulmonary lesion. The lesion was followed up for 4 years and subsequently resected videothoracoscopically after preoperative labeling with a mixture of blue dye and contrast agent. -Born in 1970, underwent resection of malignant melanoma in April 2013. -Suspicious lymph node (LU) in the left axilla detected on ultrasound, biopsy confirmed metastasis of malignant melanoma. PET/CT showed solitary finding in the left axilla. Dissection of the left axilla performed, only one of 19 LNs affected by metastasis. Molecular genetic testing revealed BRAF mutation at codon 600, targeted therapy with BRAF inhibitors deployed. -Routine CT scan of lungs in November 2017 detected new asymptomatic lesion in segment S10 of right lower lobe, measuring 7 mm in size. Follow-up CT scan in June 2020 showed lesion changed character to subsolid lesion with solid component. PET/CT scan in July 2020 confirmed persistence of the lesion without increased metabolic activity. -A further follow-up in April 2021 confirmed persistence and additionally showed a slight size progression of the solid component of the lesion. -The resection lines from the tumor margin to the resection margins were adequate, with the smallest measured dimension of 13 mm. No metastatic process was found in the examined mediastinal lymphatic nodes. The postoperative course was uneventful, and the patient was discharged to home care on the fourth day after surgery. -She continues to be followed up regularly and remains free of signs of disease recurrence.","51-year-old female patient with a subsolid pulmonary lesion. The lesion was followed up for 4 years and subsequently resected videothoracoscopically after preoperative labeling with a mixture of blue dye and contrast agent. -Born in 1970, underwent resection of malignant melanoma in April 2013. -Suspicious lymph node (LU) in the left axilla detected on ultrasound, biopsy confirmed metastasis of malignant melanoma. PET/CT showed solitary finding in the left axilla. Dissection of the left axilla performed, only one of 19 LNs affected by metastasis. Molecular genetic testing revealed BRAF mutation at codon 600, targeted therapy with BRAF inhibitors deployed. -Routine CT scan of lungs in November 2017 detected new asymptomatic lesion in segment S10 of right lower lobe, measuring 7 mm in size. Follow-up CT scan in June 2020 showed lesion changed character to subsolid lesion with solid component. PET/CT scan in July 2020 confirmed persistence of the lesion without increased metabolic activity. -A further follow-up in April 2021 confirmed persistence and additionally showed a slight size progression of the solid component of the lesion. -The resection lines from the tumor margin to the resection margins were adequate, with the smallest measured dimension of 13 mm. No metastatic process was found in the examined mediastinal lymphatic nodes. The postoperative course was uneventful, and the patient was discharged to home care on the fourth day after surgery. -She continues to be followed up regularly and remains free of signs of disease recurrence.","[""malignant melanoma""]","[""melanoma"", ""lung cancer""]",True,"[[""left axilla"", ""lymph node""], [""right lower lobe"", ""lung""]]" diff --git a/src/benchmark/output/results/testset/results_graph_001.json b/src/benchmark/output/results/testset/results_graph_001.json deleted file mode 100644 index 339d9ad..0000000 --- a/src/benchmark/output/results/testset/results_graph_001.json +++ /dev/null @@ -1,792 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 44-year-old male with no history of antitubercular treatment (ATT) intake. He has been a tobacco chewer for over 20 years.\n\n**Initial Presentation:**\nThe patient presented to the clinic with right-sided chest pain, dry cough, on-off fever, and hematuria for 2 months. Physical examination revealed decreased air entry on the right side of the lung.\n\n**Imaging and Diagnosis (Step 1-3):**\n\n* Contrast-enhanced computed tomography (CECT) thorax revealed a heterogeneous lesion in the mediastinal region abutting the horizontal fissure and cavitation within.\n* Bronchoscopy with bronchoscopic-guided biopsy and BAL was performed, which showed negative results for malignant cells. Biopsy results were suggestive of squamous cell carcinoma.\n\n**Symptoms and Imaging (Step 4-5):**\n\n* The patient reported decreased and blurring of vision.\n* An 18F-FDG PET/CT scan revealed a FDG-avid well-defined soft tissue primary mass measuring 5.6 cm x 7.7 cm x 8.3 cm with spiculated margins in the upper lobe of the right lung, along with multiple sub-centimetric to centimetric-sized bilateral lung nodules and metastases to mediastinal, abdominopelvic lymph nodes.\n\n**Progression and Diagnosis (Step 6-7):**\n\n* The patient presented with severe headaches and blurring of vision for 15 days.\n* Biopsy results confirmed metastatic involvement.\n\n**Treatment Plan:**\nUnfortunately, the provided data does not include a treatment plan or outcomes. However, based on the diagnosis of squamous cell carcinoma and metastases, further treatment options would likely involve chemotherapy, radiation therapy, or a combination of both, depending on the patient's overall health and specific tumor characteristics.\n\n**Outcomes:**\nThe patient's current status is unknown, as the provided data only includes the timeline of diagnoses and treatments. Further follow-up and monitoring are necessary to assess the patient's response to treatment and any potential complications or side effects.\n\nIn conclusion, this patient presented with a complex clinical scenario involving a heterogeneous lesion in the mediastinal region, squamous cell carcinoma, and metastases. The patient's symptoms and imaging results suggest an aggressive disease course, and further treatment options would be necessary to manage the patient's condition effectively.", - "bertscore": { - "precision": 0.8387337327003479, - "recall": 0.8516782522201538, - "f1": 0.8451563715934753 - }, - "bleu": 0.2054908255580929, - "rouge1": 0.4711211778029445, - "rougeL": 0.34428086070215175, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 7, - "edge_count": 6, - "avg_in_degree": 0.8571428571428571, - "density": 0.14285714285714285 - }, - "trajectory_embedding": [ - 0.22544555366039276, - -0.021888595074415207, - -0.0058143287897109985, - 0.03279201313853264, - 0.012158679775893688, - 0.124949149787426, - 0.055165503174066544, - 0.12983736395835876, - 0.3739190995693207, - -0.2663968503475189, - -0.19686637818813324, - 0.07701147347688675, - -0.5400644540786743, - -0.07584770768880844, - -0.26406726241111755, - -0.02046271786093712, - 0.05793926864862442, - 0.16207827627658844, - -0.044735949486494064, - -0.22757861018180847, - -0.4952402710914612, - 0.1144150123000145, - -0.46950480341911316, - -0.09778637439012527, - 0.12845461070537567, - 0.02734825387597084, - 0.24913842976093292, - 0.45427513122558594, - 0.24786631762981415, - 0.3967547118663788, - 0.1909862756729126, - -0.04420628026127815, - 0.09980465471744537, - 0.03809976577758789, - -0.17042012512683868, - 0.2900741398334503, - 0.09212499111890793, - 0.4332437217235565, - -0.043802354484796524, - 0.15672074258327484, - 0.03645145520567894, - 0.00679835444316268, - 0.9039347767829895, - 0.3591509461402893, - 0.4914460778236389, - -0.8356738090515137, - -0.02241605333983898, - 0.40659505128860474, - -0.4799618124961853, - -0.3205719292163849, - 0.17016637325286865, - 0.6543622612953186, - 0.707870602607727, - -0.22005608677864075, - 0.4748179614543915, - -0.19794167578220367, - -0.3964519798755646, - -0.3612939417362213, - -0.33315572142601013, - -0.027029957622289658, - -0.1691950559616089, - -0.22332099080085754, - 0.17457075417041779, - 0.05207694321870804, - -0.2161528766155243, - -0.14274190366268158, - -0.14343063533306122, - 0.020381653681397438, - 0.007025190629065037, - -0.45137161016464233, - -0.09364870935678482, - -0.2778642773628235, - -0.10508210957050323, - 0.10854269564151764, - 0.02177494578063488, - -0.16299407184123993, - 0.30219197273254395, - -0.011338986456394196, - 0.1187564879655838, - 0.08193399012088776, - 0.06593690067529678, - -0.0405060350894928, - 0.061940502375364304, - 0.32849979400634766, - -0.407819926738739, - 0.09965406358242035, - -0.03934013098478317, - -0.15914258360862732, - -0.36487436294555664, - 0.1943393051624298, - 0.13243208825588226, - -0.2800927460193634, - 0.07946847379207611, - -0.17683902382850647, - 0.044621050357818604, - -0.02490183711051941, - 0.26153841614723206, - 0.28627023100852966, - 1.0003652572631836, - -0.05762153118848801, - 0.27924007177352905, - 0.09756126254796982, - 0.35095784068107605, - -0.03296113386750221, - 0.46251726150512695, - -0.11398440599441528, - 0.05645623430609703, - -0.6150220632553101, - 0.1058567613363266, - 0.33834224939346313, - -0.004669502377510071, - -0.10170869529247284, - -0.03272068500518799, - -0.3261508643627167, - 0.15492412447929382, - 0.04078936576843262, - -0.0925842747092247, - 0.14039553701877594, - 0.06129738315939903, - -0.3435817062854767, - -0.11495153605937958, - -0.09836633503437042, - 0.31900739669799805, - 0.31890103220939636, - -0.46349194645881653, - -0.02682717703282833, - -0.158163920044899, - 0.20861409604549408, - 0.03139486908912659, - 0.06004612520337105, - -0.48260262608528137, - -0.053569622337818146, - 0.05698048323392868, - 0.3057520091533661, - -0.11534462124109268, - 0.20605342090129852, - -0.4229469895362854, - 0.017016496509313583, - -1.0992628335952759, - 0.2045792043209076, - -0.46470141410827637, - 0.015281583182513714, - 0.004531429149210453, - -0.5357871055603027, - -0.17412035167217255, - -0.2732934057712555, - -0.06343386322259903, - 0.17450697720050812, - 0.03306545689702034, - -0.08195621520280838, - -0.11672161519527435, - 0.062159765511751175, - 0.21550604701042175, - 0.15805819630622864, - 0.24410788714885712, - 0.08759433776140213, - 0.129988431930542, - 0.37439388036727905, - 0.12952840328216553, - -0.18701855838298798, - 0.02977474220097065, - 0.3657865822315216, - 0.04062526673078537, - -0.08284519612789154, - 0.026021718978881836, - -0.7181465029716492, - 0.01755519025027752, - -0.05736885219812393, - 0.2734042704105377, - 0.0789877325296402, - -0.19181092083454132, - 0.26249173283576965, - -0.2620965242385864, - 0.5923798680305481, - 0.2575666606426239, - 0.4657774865627289, - 0.09522327035665512, - 0.07420903444290161, - 0.1885097473859787, - 0.12079930305480957, - 0.13842181861400604, - -0.10693365335464478, - 0.7564568519592285, - 0.04216546565294266, - -0.21592746675014496, - 0.2977727949619293, - 0.3015422224998474, - 0.009352700784802437, - -0.19835695624351501, - -0.06918928027153015, - 0.5178477168083191, - -0.25443926453590393, - 0.42754751443862915, - -0.4473267197608948, - -0.12708410620689392, - 0.11682230979204178, - -0.2884996831417084, - -0.24416060745716095, - 0.09769809246063232, - -0.1493919938802719, - 0.37399861216545105, - 0.06427767127752304, - -0.1964985877275467, - 0.0752095952630043, - -0.0790180116891861, - -0.08227288722991943, - 0.24765221774578094, - -0.07260660082101822, - 0.07031866163015366, - -0.0743103176355362, - -0.0978149026632309, - 0.21969662606716156, - -0.016957776620984077, - 0.24308113753795624, - 0.06017247214913368, - -0.18987281620502472, - 0.24078567326068878, - -0.17431029677391052, - -0.04737759754061699, - 0.14145603775978088, - -0.15732832252979279, - -0.1829451024532318, - 0.10296981781721115, - 0.007423954550176859, - -0.47174447774887085, - 0.25813135504722595, - 0.252968966960907, - 0.16565148532390594, - 0.25011056661605835, - -0.02016758732497692, - 0.02959112823009491, - -0.2907402813434601, - 0.2594955265522003, - -0.1877007782459259, - -0.10937656462192535, - -0.3665615916252136, - 0.12820060551166534, - -0.47392144799232483, - -0.057138632982969284, - 0.2564590275287628, - -0.0499889962375164, - -0.08179569244384766, - 0.09306243807077408, - -0.2558267116546631, - -0.15989051759243011, - -0.39697542786598206, - 0.05126449838280678, - 0.3919696509838104, - 0.11617664992809296, - 0.3501388728618622, - -0.017326783388853073, - -0.07741450518369675, - 0.16762030124664307, - -0.26987797021865845, - -0.19983291625976562, - -0.36132165789604187, - -0.08088219910860062, - 0.009544121101498604, - -0.5022962093353271, - 0.14079812169075012, - 0.016228536143898964, - -0.13470712304115295, - 0.06883032619953156, - -0.3019104301929474, - -0.13484728336334229, - 0.08926153182983398, - -0.12665589153766632, - 0.1574120968580246, - -0.12602175772190094, - 0.015751618891954422, - -0.3463286757469177, - -0.23398295044898987, - -0.06359321624040604, - -0.19244582951068878, - 0.17758941650390625, - -0.04190870746970177, - -0.1823682337999344, - -0.05759647116065025, - 0.08258525282144547, - -0.4468781650066376, - -0.35065320134162903, - 0.21665219962596893, - -0.21870115399360657, - 0.2026483118534088, - -0.03873903304338455, - 0.22365395724773407, - 0.28230923414230347, - -0.05201395973563194, - 0.0527680329978466, - 0.49252477288246155, - 0.5546950697898865, - 0.07907216995954514, - -0.023886768147349358, - -0.1262141615152359, - 0.016182275488972664, - -0.03704068809747696, - -0.45202186703681946, - 0.4243611991405487, - -0.030097153037786484, - -0.034437667578458786, - -0.071632981300354, - 0.24896812438964844, - -0.00019594175682868809, - -0.504425585269928, - -0.09104608744382858, - 0.5184188485145569, - 0.13584373891353607, - 0.14065544307231903, - 0.027307460084557533, - 0.3466333746910095, - 0.5807201266288757, - -0.11237335205078125, - -0.03695932403206825, - 0.011270170100033283, - -0.0024232694413512945, - -0.10592483729124069, - 0.01008819043636322, - 0.11385848373174667, - 0.30241236090660095, - -0.09672290086746216, - -0.08970701694488525, - 0.23306843638420105, - -0.11035939306020737, - -0.06347585469484329, - -0.2140498161315918, - -0.0835152342915535, - 0.05474512651562691, - -0.2547414302825928, - 0.21516333520412445, - -0.11938325315713882, - -0.03892297297716141, - 0.37758371233940125, - -0.14395751059055328, - -0.1572096198797226, - 0.11680327355861664, - 0.020167753100395203, - -0.41035670042037964, - 0.39604201912879944, - -0.08431784808635712, - -0.06409355252981186, - 0.45997482538223267, - -0.0070531792007386684, - -0.07865508645772934, - -0.329233318567276, - 0.19452223181724548, - 0.04206732660531998, - -0.059629857540130615, - -0.05272732302546501, - 0.04650396108627319, - 0.12813898921012878, - 0.5837918519973755, - 0.1471565067768097, - 0.16569076478481293, - 0.5125689506530762, - -0.06692972779273987, - -0.26555219292640686, - 0.00983025785535574, - 0.19899828732013702, - 0.3342770040035248, - -0.31491395831108093, - -0.23268620669841766, - -0.30234023928642273, - 0.10153920203447342, - 0.17339272797107697, - -0.27579358220100403, - -0.05001077428460121, - -0.019663481041789055, - 0.14585120975971222, - 0.10834995657205582, - 0.26768848299980164, - 0.20414087176322937, - -0.06213387846946716, - 0.46090492606163025, - 0.017025070264935493, - -0.059339266270399094, - 0.2710186839103699, - -0.14449605345726013, - 0.23969683051109314, - -0.10268567502498627, - -0.3920949399471283, - -0.40806737542152405, - 0.00474292878061533, - -0.12494343519210815, - -0.2019561529159546, - -0.007249661721289158, - -0.14330996572971344, - -0.010338188149034977, - -0.21282240748405457, - 0.23347382247447968, - 0.046171098947525024, - 0.2541406452655792, - 0.23251627385616302, - 0.3425624668598175, - 0.11240644007921219, - -0.27347710728645325, - 0.16533224284648895, - -0.02230760268867016, - 0.14282743632793427, - -0.2403469979763031, - -0.04443306848406792, - -0.09282033145427704, - 0.4610767066478729, - -0.08442071825265884, - -0.0038480982184410095, - -0.00898510031402111, - 0.028758777305483818, - -0.18674644827842712, - -0.3901597559452057, - -0.21183086931705475, - -0.12444917112588882, - -0.005519687198102474, - -0.022225946187973022, - 0.1936742514371872, - -0.2562611699104309, - -0.21937783062458038, - -0.14190775156021118, - 0.23681838810443878, - 0.024996627122163773, - -0.14047639071941376, - 0.16197021305561066, - 0.2152271270751953, - 0.03847484663128853, - 0.4040525257587433, - -0.11127112060785294, - 0.12019022554159164, - 0.01380231510847807, - -0.27288979291915894, - -0.005210678558796644, - 0.03739836439490318, - -0.24274063110351562, - -0.013103642500936985, - 0.22852373123168945, - 0.27713543176651, - 0.02708902582526207, - 0.02469996176660061, - 0.046662744134664536, - 0.29454439878463745, - -0.3956533968448639, - -0.16748806834220886, - 0.4477674663066864, - 0.11504799127578735, - 0.45734837651252747, - -0.024405550211668015, - -0.5885217785835266, - -0.2782239019870758, - -0.07079874724149704, - -0.5095592737197876, - 0.029425110667943954, - 0.1425083577632904, - -0.13853709399700165, - -0.09436937421560287, - 0.1613730490207672, - -0.07594022899866104, - 0.0597415566444397, - 0.24864283204078674, - -0.09160096943378448, - 0.16358928382396698, - 0.007129413541406393, - -0.36279386281967163, - -0.052385516464710236, - -0.3274328112602234, - -0.2874279320240021, - -0.21315990388393402, - 0.3431756794452667, - 0.31382879614830017, - -0.2551286816596985, - 0.04849119111895561, - 0.0616174079477787, - -0.24422670900821686, - -0.3080612123012543, - 0.02238546870648861, - -0.2793293297290802, - 0.46098384261131287, - -0.07902948558330536, - -0.14585623145103455, - 0.12555918097496033, - -0.31364327669143677, - 0.11767099797725677, - 0.2693617641925812, - 0.17969690263271332, - 0.3670620024204254, - 0.23111720383167267, - 0.18989789485931396, - 0.4030517041683197, - 0.051692575216293335, - 0.0751393660902977, - 0.3101361095905304, - 0.0018457748228684068, - -0.014019259251654148, - -0.19878152012825012, - -0.2694285809993744, - 0.3681092858314514, - -0.1493302881717682, - 0.005456401500850916, - 0.17803955078125, - 0.32944828271865845, - -0.5253181457519531, - -0.34934094548225403, - 0.008091830648481846, - -0.02635938487946987, - -0.10398703813552856, - -0.3595424294471741, - -0.235565185546875, - -0.022764157503843307, - -0.22590211033821106, - -0.19372296333312988, - 0.2561880946159363, - 0.3237074315547943, - 0.20131178200244904, - 0.2469889372587204, - -0.3478850722312927, - -0.29865124821662903, - 0.22905422747135162, - 0.2693503201007843, - 0.07840954512357712, - 0.026144299656152725, - -0.2233971655368805, - 0.28818273544311523, - 0.6196103096008301, - -0.12296389043331146, - -0.07440297305583954, - 0.0031574282329529524, - 0.11028839647769928, - 0.004636458121240139, - 0.10456354916095734, - -0.03394020348787308, - 0.07380436360836029, - -0.4067952334880829, - 0.2821376323699951, - -0.32946285605430603, - -0.21861563622951508, - 0.15632401406764984, - -0.037681613117456436, - -0.4206162393093109, - -0.20882096886634827, - 0.46175867319107056, - -0.14138826727867126, - 0.1318322718143463, - 0.14189693331718445, - 0.413936585187912, - 0.08744312822818756, - -0.18059243261814117, - 0.12924925982952118, - -0.5933976769447327, - -0.17608408629894257, - 0.17052365839481354, - -0.2509192228317261, - 0.05032340809702873, - -0.013478376902639866, - 0.2141694575548172, - 0.46446993947029114, - 0.17353466153144836, - -0.25484198331832886, - 0.02167193591594696, - 0.20546047389507294, - 0.33550235629081726, - -0.25142115354537964, - -10.752850532531738, - 0.13028177618980408, - -0.18029265105724335, - 0.601753294467926, - -0.17109908163547516, - 0.13354870676994324, - 0.023059383034706116, - -0.0756104439496994, - 0.07608021795749664, - 0.018018653616309166, - -0.1955755054950714, - 0.056970950216054916, - 0.37291231751441956, - 0.3097512722015381, - -0.01516466774046421, - -0.18926218152046204, - -0.20306017994880676, - 0.2996937334537506, - 0.06647644191980362, - 0.22666634619235992, - 0.2110852152109146, - 0.45858046412467957, - -0.30146196484565735, - 0.3066696524620056, - 0.12842200696468353, - -0.40063077211380005, - -0.2030058652162552, - 0.6819396018981934, - 0.1300923079252243, - -0.3766631782054901, - 0.23450832068920135, - 0.25575903058052063, - -0.3941766619682312, - 0.010425986722111702, - -0.09464111179113388, - -0.18069109320640564, - -0.108848936855793, - 0.0775521770119667, - 0.10503586381673813, - -0.14857245981693268, - 0.07109784334897995, - -0.2719348967075348, - 0.0999772921204567, - 0.24091105163097382, - -0.07322079688310623, - -0.5446597933769226, - -0.1822691112756729, - -1.565708041191101, - 0.3469933867454529, - 0.29949596524238586, - 0.5327091217041016, - -0.031813886016607285, - 0.158897265791893, - 0.1273970752954483, - -0.3908841609954834, - 0.06701938807964325, - -0.25532057881355286, - -0.10759598761796951, - 0.09881438314914703, - -0.10823852568864822, - 0.15043134987354279, - -0.25954777002334595, - 0.4396364390850067, - -0.24458107352256775, - -0.3411678671836853, - 0.07269710302352905, - 0.10603590309619904, - 0.05698838457465172, - -0.16014812886714935, - -0.40341153740882874, - -0.5101147294044495, - -0.07006553560495377, - 0.04483975097537041, - 0.0484030656516552, - 0.5611270666122437, - -0.02805999480187893, - -0.47120970487594604, - 0.17515210807323456, - -0.04338771104812622, - 0.4502566456794739, - 0.1857706755399704, - -0.07234758883714676, - 0.08514602482318878, - -0.23218639194965363, - -0.23950079083442688, - -0.2716539800167084, - 0.10034899413585663, - 0.4957196116447449, - -0.08045651018619537, - -0.03827769309282303, - -0.06227623671293259, - 0.35930517315864563, - 0.08850135654211044, - -0.20713134109973907, - -0.44182083010673523, - 0.05939282849431038, - 0.0008892363985069096, - 0.022235747426748276, - 0.09952037781476974, - 0.07445381581783295, - -0.14000891149044037, - -0.08464771509170532, - -0.08841384947299957, - -0.49244800209999084, - -0.586823582649231, - 0.2621164619922638, - 0.09070652723312378, - 0.1271086186170578, - 0.08361142873764038, - 0.03778642788529396, - -0.13701973855495453, - 0.054361291229724884, - 0.23367181420326233, - 0.5658853650093079, - 0.04071269556879997, - -0.03902093693614006, - -0.09580259025096893, - -0.31962570548057556, - -0.2457621991634369, - 0.17023469507694244, - 0.3666629195213318, - -0.19607484340667725, - 0.3422781527042389, - 0.6629540324211121, - -0.14943312108516693, - -0.19286131858825684, - 1.0133713483810425, - -0.26429232954978943, - 0.21964125335216522, - -0.19027359783649445, - 0.2918620705604553, - -0.06770165264606476, - -0.253685861825943, - 0.09520785510540009, - 0.3655342161655426, - -0.3843688368797302, - 0.7071616053581238, - 0.2193906009197235, - -0.36014285683631897, - -0.033229079097509384, - -0.19664537906646729, - 0.503405749797821, - 0.2236463874578476, - 0.16320236027240753, - -0.11097752302885056, - -0.37586143612861633, - -0.24627450108528137, - 0.1637803465127945, - -0.3233899474143982, - -0.19343426823616028, - -0.18568050861358643, - 0.0513133741915226, - 0.19603769481182098, - -0.23206403851509094, - 0.3304268419742584, - 0.2184225469827652, - -0.060754306614398956, - -0.20855531096458435, - -0.41473010182380676, - -0.1591343879699707, - 0.025321917608380318, - 0.814966082572937, - -0.02268730103969574, - -0.04495840147137642, - -0.12772640585899353, - 0.191977858543396, - -0.07789558172225952, - 0.25736770033836365, - 0.11303628236055374, - 0.06402131915092468, - -0.30810046195983887, - 0.21750006079673767, - 0.1528620421886444, - -0.2923474609851837, - -0.13456991314888, - -0.25992101430892944, - -0.03127161040902138, - 0.012477806769311428, - -0.21623428165912628, - 0.2975035607814789, - 0.3495616614818573, - -0.04690875858068466, - -0.022930597886443138, - -0.2509596347808838, - 0.2743046283721924, - 0.18854205310344696, - 0.1905793994665146, - 0.21473363041877747, - -0.19668106734752655, - -0.3155835270881653, - -0.4283021092414856, - 0.1840418428182602, - -0.30378293991088867, - -0.12035530060529709, - 0.10726603120565414, - 0.23525144159793854, - -0.3043988049030304, - 0.02654709853231907, - -0.1099575087428093, - -0.08470828831195831, - -0.1656467765569687, - 0.2036818414926529, - 0.45072221755981445, - -0.14205686748027802, - 0.15353623032569885, - -0.20321156084537506, - 0.1781766563653946, - 0.21564793586730957, - -0.4846877157688141, - 0.15370237827301025, - -0.126005619764328 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/testset/results_graph_003.json b/src/benchmark/output/results/testset/results_graph_003.json deleted file mode 100644 index e983e94..0000000 --- a/src/benchmark/output/results/testset/results_graph_003.json +++ /dev/null @@ -1,792 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Patient Demographics**\n\nThe patient is an adult male with a history of Small Cell Lung Cancer (SCLC). Unfortunately, the exact age and other demographic details are not provided in the data.\n\n**Timeline of Diagnoses**\n\nThe patient's diagnosis timeline begins with the onset of symptoms such as dyspnea, abdominal distension, and lower-extremity edema. These symptoms led to an evaluation in the emergency department, where a poor performance status, abnormal vital signs, and significant tumor burden were noted. This marked the progression from symptom onset to diagnosis.\n\n**Timeline of Treatments**\n\nThe patient's treatment timeline began with endovascular intervention to address IVC stenosis due to compression caused by the tumor. The procedure involved thrombectomy and stent placement. Following this, post-intervention venography showed improved flow, and low-molecular-weight heparin was administered.\n\n**Timeline of Outcomes**\n\nThe patient's outcome timeline began with significant alleviation of IVCS symptoms (trunk and lower limb edema) following the intervention. However, unfortunately, the patient died 8 days later from his primary disease (SCLC).\n\n**Narrative Summary**\n\nA male patient with Small Cell Lung Cancer presented with symptoms such as dyspnea, abdominal distension, and lower-extremity edema. These symptoms led to an evaluation in the emergency department, where a poor performance status, abnormal vital signs, and significant tumor burden were noted. Endovascular intervention was performed to address IVC stenosis caused by compression from the tumor. Following this, post-intervention venography showed improved flow, and low-molecular-weight heparin was administered. However, despite these interventions, the patient's primary disease ultimately led to his death 8 days later.\n\n**Key Takeaways**\n\n* The patient had a poor performance status and significant tumor burden at diagnosis.\n* Endovascular intervention was effective in alleviating IVCS symptoms but did not address the underlying cause of death.\n* Low-molecular-weight heparin was administered post-intervention, but its effectiveness is unclear given the patient's rapid decline.\n\n**Limitations**\n\nThe narrative summary is limited by the lack of detailed information on patient demographics, treatment outcomes, and long-term follow-up. Further investigation would be necessary to fully understand the patient's clinical course and the effectiveness of interventions.", - "bertscore": { - "precision": 0.7355820536613464, - "recall": 0.6891461610794067, - "f1": 0.7116073966026306 - }, - "bleu": 0.054103905008875824, - "rouge1": 0.3516699410609037, - "rougeL": 0.14145383104125736, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 8, - "edge_count": 7, - "avg_in_degree": 0.875, - "density": 0.125 - }, - "trajectory_embedding": [ - 0.2569149434566498, - 0.23160001635551453, - -0.23048092424869537, - 0.06365886330604553, - 0.06271032989025116, - -0.032205305993556976, - -0.0353657603263855, - 0.14690855145454407, - 0.3527328073978424, - -0.24249935150146484, - -0.23033425211906433, - 0.13146138191223145, - -0.44394129514694214, - -0.1020270437002182, - -0.1855921894311905, - 0.17859384417533875, - 0.08802724629640579, - 0.2158854901790619, - -0.10283444821834564, - -0.29911351203918457, - -0.1949203908443451, - -0.028584152460098267, - -0.3147096037864685, - -0.07293544709682465, - 0.20194584131240845, - -0.09491348266601562, - 0.34339308738708496, - 0.46809014678001404, - 0.13282687962055206, - 0.29852452874183655, - 0.13195554912090302, - 0.17300836741924286, - 0.0897492840886116, - 0.02892140857875347, - -0.12745898962020874, - 0.3448256552219391, - 0.23548577725887299, - 0.2839270830154419, - -0.03714802488684654, - 0.006017275154590607, - 0.1338861882686615, - 0.12591585516929626, - 0.7073693871498108, - 0.3368518352508545, - 0.3219608664512634, - -0.6907471418380737, - -0.01660757139325142, - 0.6422886848449707, - -0.46687471866607666, - -0.2571844458580017, - 0.18784856796264648, - 0.6589989066123962, - 0.5504093170166016, - -0.10344333201646805, - 0.4473138749599457, - -0.06613530963659286, - -0.28679725527763367, - -0.4249691367149353, - -0.2393416464328766, - 0.13644948601722717, - -0.0981653481721878, - 0.01790006458759308, - 0.2267570197582245, - -0.02845674753189087, - -0.2680894136428833, - -0.1423514485359192, - -0.16232867538928986, - 0.12320675700902939, - 0.1090710312128067, - -0.3618414103984833, - -0.10044832527637482, - -0.27530670166015625, - -0.053614962846040726, - 0.04921650141477585, - 0.18791626393795013, - -0.18266819417476654, - 0.360612690448761, - -0.07580575346946716, - 0.03189554437994957, - 0.11070859432220459, - 0.03711796551942825, - -0.006232840940356255, - 0.03796324133872986, - 0.282582551240921, - -0.37713319063186646, - 0.07750636339187622, - -0.17531555891036987, - -0.10054003447294235, - -0.258467435836792, - 0.22064298391342163, - 0.2305215299129486, - -0.09635764360427856, - 0.10636873543262482, - -0.017838889732956886, - 0.19559000432491302, - -0.06293649971485138, - 0.13816137611865997, - 0.43874168395996094, - 0.9716772437095642, - -0.05074167996644974, - 0.1356513500213623, - -0.06121188402175903, - 0.29712897539138794, - -0.07920337468385696, - 0.37162017822265625, - -0.08831153810024261, - 0.1279538869857788, - -0.5214267373085022, - 0.0625886470079422, - 0.3048340678215027, - 0.017620541155338287, - -0.238211989402771, - 0.1364237368106842, - -0.31241703033447266, - 0.09862945228815079, - 0.15174570679664612, - -0.08937467634677887, - 0.21740508079528809, - -0.020801734179258347, - -0.3626396059989929, - -0.08483012020587921, - -0.10590144991874695, - 0.3234524130821228, - 0.286812961101532, - -0.3228791356086731, - 0.10934396088123322, - -0.21497038006782532, - 0.133932963013649, - 0.0651712417602539, - 0.06254178285598755, - -0.6108414530754089, - -0.08825504779815674, - -0.048984821885824203, - 0.1457713544368744, - -0.05615668743848801, - 0.38747861981391907, - -0.3545966148376465, - 0.10128293186426163, - -1.0704939365386963, - 0.18489933013916016, - -0.3293786942958832, - -0.04235662519931793, - 0.07674379646778107, - -0.4247347414493561, - -0.14779609441757202, - -0.2276259809732437, - -0.2626993656158447, - 0.10540923476219177, - -0.11968214064836502, - -0.07782312482595444, - -0.08806271106004715, - 0.11360003799200058, - 0.22596900165081024, - 0.22846662998199463, - 0.14217929542064667, - 0.011776726692914963, - 0.1377287209033966, - 0.35273149609565735, - 0.023100826889276505, - -0.13734270632266998, - 0.14667250216007233, - 0.387855589389801, - -0.06604360044002533, - -0.08711905777454376, - -0.058241911232471466, - -0.5880092978477478, - 0.23984947800636292, - -0.2654883563518524, - 0.34279629588127136, - 0.17131219804286957, - -0.21306748688220978, - 0.15969398617744446, - -0.3069201707839966, - 0.61099773645401, - 0.34344786405563354, - 0.3754482567310333, - 0.2464122325181961, - -0.12051801383495331, - 0.12661445140838623, - 0.07676951587200165, - 0.06337203830480576, - -0.12980499863624573, - 0.49911436438560486, - 0.0992007851600647, - -0.21527312695980072, - 0.1955445408821106, - 0.18623749911785126, - -0.11524847149848938, - -0.18365424871444702, - 0.052402399480342865, - 0.3627065420150757, - -0.24395789206027985, - 0.4139857888221741, - -0.3161483407020569, - -0.07328542321920395, - 0.02170691266655922, - -0.3448029160499573, - -0.3785707652568817, - 0.05860193446278572, - 0.001285141333937645, - 0.07231660187244415, - 0.12629340589046478, - -0.29497748613357544, - 0.21745753288269043, - 0.1734546273946762, - -0.1240207701921463, - 0.2539222240447998, - -0.013147708028554916, - 0.041944921016693115, - -0.12125688046216965, - -0.27249762415885925, - 0.1013287603855133, - -0.1647895723581314, - 0.19072462618350983, - -0.011917723342776299, - -0.28449496626853943, - 0.24159587919712067, - -0.07891088724136353, - -0.08159821480512619, - 0.13219553232192993, - 0.029453741386532784, - 0.06982686370611191, - 0.22510792315006256, - -0.07658938318490982, - -0.26791220903396606, - 0.3236021101474762, - 0.11212003976106644, - 0.24547803401947021, - 0.09299872815608978, - -0.06759750843048096, - -0.011228218674659729, - -0.29543545842170715, - 0.15239936113357544, - -0.18702076375484467, - -0.18114317953586578, - -0.27560099959373474, - 0.17911066114902496, - 0.004341591149568558, - -0.06521990150213242, - 0.21743358671665192, - -0.08804921060800552, - -0.12174122780561447, - 0.02904754877090454, - -0.29161587357521057, - -0.08384933322668076, - -0.26410454511642456, - 0.1125580295920372, - 0.19161352515220642, - 0.11132532358169556, - 0.35512739419937134, - 0.06868070363998413, - 0.03536885231733322, - 0.1669463813304901, - -0.2908916473388672, - -0.3114027976989746, - -0.29059845209121704, - -0.05371225252747536, - 0.034935761243104935, - -0.378568172454834, - 0.1031026840209961, - 0.0697413980960846, - -0.15836521983146667, - 0.055314674973487854, - -0.2921608090400696, - -0.1878422647714615, - 0.08387884497642517, - -0.02348172850906849, - 0.11633884161710739, - -0.04514475166797638, - -0.006797481793910265, - -0.16597852110862732, - -0.18674692511558533, - -0.1781417727470398, - -0.14435860514640808, - 0.13849318027496338, - 0.09053032100200653, - -0.1284540444612503, - 0.0008781002834439278, - 0.18773995339870453, - -0.48895567655563354, - -0.2847486734390259, - 0.267551988363266, - -0.28864404559135437, - 0.29566484689712524, - -0.11407998204231262, - 0.378822386264801, - 0.40001246333122253, - 0.05274902656674385, - 0.19677725434303284, - 0.4697061777114868, - 0.3984792232513428, - 0.06355373561382294, - -0.14354346692562103, - 0.08533620089292526, - 0.03147219493985176, - -0.04639570787549019, - -0.3610660433769226, - 0.355654776096344, - -0.045501336455345154, - 0.1690748929977417, - -0.002688792534172535, - 0.16419994831085205, - 0.016202926635742188, - -0.2679378390312195, - -0.10791486501693726, - 0.49201497435569763, - 0.22888198494911194, - 0.06671790778636932, - 0.1428592950105667, - 0.35510513186454773, - 0.4634217619895935, - 0.06101655587553978, - -0.34377482533454895, - -0.051289502531290054, - -0.14004841446876526, - -0.255508691072464, - -0.2915162444114685, - 0.1609363555908203, - 0.32905691862106323, - -0.15973393619060516, - -0.18100731074810028, - 0.2961345314979553, - -0.2114296853542328, - -0.07773298770189285, - -0.17655381560325623, - 0.011677158996462822, - -0.049703456461429596, - -0.21769998967647552, - 0.2306259125471115, - -0.013719771057367325, - -0.16235598921775818, - 0.3368450999259949, - -0.27963900566101074, - -0.24579648673534393, - 0.17493762075901031, - -0.06680662930011749, - -0.3899391293525696, - 0.3454819321632385, - -0.2224164605140686, - 0.020916227251291275, - 0.28578391671180725, - -0.14427529275417328, - -0.021270979195833206, - -0.12395058572292328, - 0.25643935799598694, - 0.10913236439228058, - 0.033961083739995956, - -0.13228361308574677, - 0.06502865999937057, - 0.1717403084039688, - 0.592214047908783, - 0.2314368337392807, - 0.07204297184944153, - 0.3350045084953308, - -0.07012563943862915, - -0.3543141484260559, - 0.005660714581608772, - -0.05974195525050163, - 0.15054047107696533, - -0.047535449266433716, - -0.31843629479408264, - -0.20472171902656555, - 0.11641610413789749, - 0.19389207661151886, - -0.1209784522652626, - -0.05114450305700302, - 0.20561301708221436, - 0.04221804440021515, - -0.03909905627369881, - 0.15351472795009613, - 0.22436127066612244, - 0.010178793221712112, - 0.468885600566864, - 0.09688585996627808, - -0.09131868928670883, - 0.2427922487258911, - -0.05917609855532646, - 0.226558119058609, - -0.16924627125263214, - -0.4362291991710663, - -0.40189898014068604, - 0.0878443717956543, - -0.20961040258407593, - -0.17652219533920288, - 0.08758323639631271, - -0.2006133496761322, - 0.06266502290964127, - -0.11913471668958664, - 0.17118462920188904, - 0.019704584032297134, - 0.1714993715286255, - -0.08983881771564484, - 0.36125126481056213, - -0.0894111692905426, - -0.35656625032424927, - 0.1413729190826416, - -0.09259454905986786, - 0.17376692593097687, - -0.14425204694271088, - -0.13525493443012238, - -0.14414875209331512, - 0.34457504749298096, - -0.17759661376476288, - 0.004895076155662537, - -1.540686935186386e-05, - 0.09425801038742065, - -0.18891598284244537, - -0.15592390298843384, - -0.20987802743911743, - -0.20082980394363403, - -0.13723398745059967, - -0.11620370298624039, - 0.09843072295188904, - -0.1444927603006363, - -0.18796217441558838, - -0.1742773801088333, - 0.08525709807872772, - 0.40163925290107727, - -0.12654602527618408, - -0.03869543597102165, - 0.4240628182888031, - 0.10033371299505234, - 0.31720083951950073, - -0.28143632411956787, - 0.15492956340312958, - 0.08704649657011032, - -0.2654697000980377, - -0.04881821945309639, - -0.016870111227035522, - -0.26270630955696106, - -0.12414852529764175, - 0.1377853900194168, - 0.4025445580482483, - 0.0887882262468338, - 0.0468372106552124, - -0.03027254343032837, - -0.03690169006586075, - -0.22596830129623413, - 0.038792144507169724, - 0.2728533446788788, - 0.11235370486974716, - 0.2355501651763916, - 0.0061170682311058044, - -0.3013271689414978, - -0.30459287762641907, - -0.014720339328050613, - -0.4627458453178406, - 0.1813475787639618, - 0.04745449870824814, - -0.06341429054737091, - -0.14217376708984375, - 0.2134707272052765, - 0.005404438823461533, - -0.11771394312381744, - 0.25954848527908325, - 0.013961143791675568, - 0.2106950283050537, - -0.019350331276655197, - -0.21603421866893768, - -0.07641604542732239, - -0.17571528255939484, - -0.24132274091243744, - -0.40047815442085266, - 0.4158255457878113, - 0.3980637490749359, - -0.21376149356365204, - 0.03735671937465668, - 0.09683898091316223, - -0.26924726366996765, - -0.2347835898399353, - 0.03169608488678932, - -0.06420964002609253, - 0.3846817910671234, - 0.06705142557621002, - -0.2419806271791458, - -0.06293898075819016, - -0.23997923731803894, - -0.04855913668870926, - 0.10249004513025284, - 0.0988558977842331, - 0.37822696566581726, - 0.214402973651886, - 0.0697578489780426, - 0.3383386731147766, - 0.11332648992538452, - -0.036293093115091324, - 0.28004002571105957, - -0.02409154735505581, - 0.1520584523677826, - -0.16688387095928192, - -0.03524171561002731, - 0.2908414304256439, - -0.3653745651245117, - 0.22500896453857422, - 0.2979770004749298, - 0.1557924896478653, - -0.3007964491844177, - -0.36065003275871277, - -0.026259154081344604, - -0.1422356814146042, - -0.12988664209842682, - -0.2573707401752472, - 0.01718113012611866, - -0.0005274917930364609, - -0.1697939783334732, - 0.008123168721795082, - 0.1620730757713318, - 0.30958274006843567, - 0.12935811281204224, - 0.04020648077130318, - -0.247300922870636, - -0.3773331344127655, - 0.10396052896976471, - 0.3673536479473114, - -0.11643590033054352, - -0.056829262524843216, - -0.13928528130054474, - 0.12086570262908936, - 0.3734302520751953, - -0.04218396544456482, - -0.0028060302138328552, - -0.1740286946296692, - -0.09575439989566803, - 0.11020426452159882, - 0.03771224990487099, - -0.1574310064315796, - 0.049119748175144196, - -0.3487362265586853, - 0.06726031005382538, - -0.09100287407636642, - -0.16214610636234283, - 0.1984669715166092, - -0.18025431036949158, - -0.3657768666744232, - -0.09993989020586014, - 0.24185729026794434, - -0.15071788430213928, - -0.21291379630565643, - 0.1366998553276062, - 0.5614988803863525, - 0.11226191371679306, - -0.04895856976509094, - -0.013916626572608948, - -0.3271966576576233, - -0.017343293875455856, - 0.13135674595832825, - -0.1870238333940506, - -0.05345654860138893, - 0.05888453871011734, - 0.5063331723213196, - 0.29617029428482056, - 0.0781693160533905, - -0.32731789350509644, - 0.0348568856716156, - 0.17435330152511597, - 0.21318849921226501, - -0.2973577380180359, - -10.760284423828125, - -0.07705976068973541, - -0.2074543535709381, - 0.3931015133857727, - -0.1443420946598053, - -0.0781291201710701, - -0.040700241923332214, - 0.09222999215126038, - 0.11657589673995972, - 0.06625368446111679, - -0.4159711003303528, - -0.09368214011192322, - 0.36642909049987793, - 0.14340618252754211, - 0.06398440152406693, - -0.11690184473991394, - -0.19904130697250366, - 0.33899515867233276, - 0.05515924096107483, - 0.247812420129776, - 0.23134145140647888, - 0.44547587633132935, - -0.0077679343521595, - 0.3705824017524719, - 0.05776774510741234, - -0.3256063163280487, - -0.05720362067222595, - 0.4383063018321991, - 0.1852199286222458, - -0.21572570502758026, - 0.1346697211265564, - 0.04716166853904724, - -0.14165212213993073, - -0.12225180864334106, - -0.11630429327487946, - -0.23897729814052582, - 0.042448658496141434, - 0.20545031130313873, - 0.24753516912460327, - -0.14180505275726318, - 0.15748021006584167, - -0.07449785619974136, - 0.12548506259918213, - 0.13254037499427795, - -0.06745956093072891, - -0.620971143245697, - -0.18036237359046936, - -1.249608039855957, - 0.12780265510082245, - 0.34602096676826477, - 0.4217807650566101, - 0.11863972246646881, - 0.13410227000713348, - 0.05955906957387924, - -0.36140286922454834, - 0.2649194896221161, - -0.1120811253786087, - -0.1230640560388565, - 0.029187869280576706, - -0.0021337345242500305, - -0.04308479279279709, - -0.12084022164344788, - 0.5323108434677124, - -0.12813016772270203, - -0.35470050573349, - 0.30360737442970276, - -0.08827779442071915, - -0.019499951973557472, - -0.11532315611839294, - -0.162815123796463, - -0.49197036027908325, - -0.19340060651302338, - -0.04802045226097107, - 0.08514002710580826, - 0.40528059005737305, - -0.07893289625644684, - -0.3891502022743225, - 0.25558391213417053, - -0.0025581717491149902, - 0.2938360273838043, - 0.02811253070831299, - 0.012750699184834957, - 0.06092653051018715, - -0.009361499920487404, - 0.04986138641834259, - -0.08937467634677887, - 0.1444200873374939, - 0.41584548354148865, - 0.1003168374300003, - 0.1807423233985901, - 0.014477571472525597, - 0.20301803946495056, - -0.00028870999813079834, - -0.12920910120010376, - -0.41805481910705566, - 0.04160172492265701, - -0.15706497430801392, - 0.056589581072330475, - -0.06894007325172424, - -0.03683476895093918, - -0.23451340198516846, - -0.018516354262828827, - 0.01859549805521965, - -0.2877085208892822, - -0.2857058346271515, - 0.4141886234283447, - 0.16869127750396729, - 0.23061507940292358, - 0.22104033827781677, - -0.17074280977249146, - 0.02249368652701378, - 0.07750824093818665, - 0.18455982208251953, - 0.5066249966621399, - 0.12167725712060928, - -0.10829576849937439, - -0.2126179337501526, - -0.2208799123764038, - -0.2610623836517334, - 0.10251399129629135, - 0.4387354850769043, - -0.012084785848855972, - 0.14429225027561188, - 0.4056583642959595, - -0.01488814502954483, - 0.019989408552646637, - 0.9064183235168457, - -0.39538151025772095, - 0.16263112425804138, - -0.08241316676139832, - 0.15687327086925507, - -0.2712385058403015, - -0.4790802299976349, - 0.008007453754544258, - 0.42691096663475037, - -0.34386515617370605, - 0.5109390020370483, - 0.05270667374134064, - -0.3495572805404663, - 0.008313879370689392, - -0.21478500962257385, - 0.3183654546737671, - 0.3125024735927582, - 0.24615390598773956, - 0.05583029240369797, - -0.200467050075531, - -0.18840113282203674, - -0.06054779142141342, - -0.45721957087516785, - -0.25145864486694336, - -0.05640270933508873, - 0.0635661780834198, - 0.11742560565471649, - -0.35247522592544556, - 0.39202773571014404, - 0.07067875564098358, - -0.22197797894477844, - -0.2665887176990509, - -0.3358158469200134, - 0.00816674530506134, - 0.2017928510904312, - 0.6012858152389526, - -0.04619159549474716, - 0.02493780106306076, - -0.1550561636686325, - 0.13061387836933136, - -0.06757781654596329, - 0.17170831561088562, - -0.06510891020298004, - 0.07508485019207001, - -0.4468626081943512, - 0.06557665765285492, - 0.08915989845991135, - -0.3400595486164093, - -0.1384894996881485, - -0.2294258028268814, - 0.25670161843299866, - 0.02898065187036991, - -0.24524244666099548, - 0.0880199670791626, - 0.3006818890571594, - -0.007880868390202522, - -0.06058032065629959, - -0.2787621021270752, - 0.1562856286764145, - -0.00023385975509881973, - 0.33602726459503174, - 0.10304993391036987, - -0.24230524897575378, - -0.2999469041824341, - -0.4333721101284027, - -0.0149671770632267, - -0.13352960348129272, - -0.0967276468873024, - 0.06497111916542053, - 0.13307376205921173, - -0.2004036009311676, - 0.03736452758312225, - -0.2756181061267853, - 0.04310602694749832, - -0.164451003074646, - 0.13436013460159302, - 0.41685420274734497, - -0.33877643942832947, - 0.14946863055229187, - -0.24648872017860413, - 0.3125213086605072, - 0.15554724633693695, - -0.39477109909057617, - 0.1328176110982895, - -0.1124398484826088 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/testset/results_graph_004.json b/src/benchmark/output/results/testset/results_graph_004.json deleted file mode 100644 index dc7604d..0000000 --- a/src/benchmark/output/results/testset/results_graph_004.json +++ /dev/null @@ -1,792 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is an 81-year-old female who presented with progressive chest tightness and dyspnea over a 10-day period. She has no history of smoking or malignancy.\n\n**Timeline of Diagnoses:**\n\n1. **Step 1 (Day 0-9):** The patient initially presents with progressive chest tightness, dyspnea, cough, and back pain. Chest CT imaging reveals a large left-sided pleural effusion.\n2. **Step 2 (Day 10):** Thoracentesis is performed, and the drained pleural fluid is sent to the Department of Pathology for further evaluation.\n3. **Step 3 (Day 11-12):** Post-thoracic drainage chest CT reveals a 6.7 cm x 2.8 cm heterogeneous mass in the left inferior lobe with irregular contrast enhancement, suggestive of a left lung tumor.\n4. **Step 4 (Day 13-14):** Pulmonary window analysis shows multiple nodular high-density foci scattered across both lungs, concerning for bilateral pulmonary metastases. Mediastinal window assessment reveals bilateral mediastinal lymphadenopathy and enlarged lymph nodes at the left pulmonary hilum, consistent with lymph node metastasis.\n5. **Step 5 (Day 15-16):** Abdominal CT scan detects multiple low-density hepatic nodules of varying sizes, with the largest lesion located in the right hepatic lobe. Enhanced brain CT identifies an irregular heterogeneously enhancing mass within the right frontal lobe, consistent with brain metastasis.\n6. **Step 6 (Day 17-18):** Cell block analysis of the pleural effusion demonstrates poorly cohesive round-to-oval cells with a dispersed distribution exhibiting eccentrically located nuclei with dense chromatin.\n\n**Treatments:**\n\n1. Thoracentesis and post-thoracic drainage chest CT\n2. Abdominal CT scan and enhanced brain CT\n\n**Outcomes:**\nThe patient's diagnosis is confirmed as lung cancer with bilateral pulmonary metastases, hepatic metastases, and brain metastasis. The cell block analysis of the pleural effusion reveals poorly cohesive round-to-oval cells consistent with adenocarcinoma.\n\n**Conclusion:**\nThis 81-year-old female patient presents with progressive chest tightness and dyspnea due to a large left-sided pleural effusion, which is later confirmed as a left lung tumor with bilateral pulmonary metastases, hepatic metastases, and brain metastasis. The diagnosis is made after thoracentesis, post-thoracic drainage chest CT, abdominal CT scan, enhanced brain CT, and cell block analysis of the pleural effusion.", - "bertscore": { - "precision": 0.8535692095756531, - "recall": 0.869658887386322, - "f1": 0.8615389466285706 - }, - "bleu": 0.12150955580589737, - "rouge1": 0.4815766923736076, - "rougeL": 0.3461868037703513, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 6, - "edge_count": 5, - "avg_in_degree": 0.8333333333333334, - "density": 0.16666666666666666 - }, - "trajectory_embedding": [ - 0.2583933174610138, - -0.1034068688750267, - 0.02750878781080246, - 0.12225138396024704, - 0.07123710960149765, - 0.08420076966285706, - -0.025338614359498024, - 0.20714537799358368, - 0.42998072504997253, - -0.2773303687572479, - -0.23241369426250458, - 0.0849342942237854, - -0.532634437084198, - 0.050035249441862106, - -0.25669047236442566, - 0.11723083257675171, - 0.17126429080963135, - 0.2885790467262268, - 0.022143423557281494, - -0.16853980720043182, - -0.5408232808113098, - 0.15986886620521545, - -0.4296847879886627, - -0.00046265622950159013, - 0.2759328782558441, - -0.047584932297468185, - 0.17444981634616852, - 0.3902381658554077, - 0.2824210822582245, - 0.31304478645324707, - 0.13808360695838928, - -0.15729466080665588, - 0.14718084037303925, - -0.02834639698266983, - -0.10681698471307755, - 0.3241442143917084, - 0.20505361258983612, - 0.5838627219200134, - -0.04575663432478905, - 0.060654330998659134, - 0.030844343826174736, - -0.050123054534196854, - 0.7809808850288391, - 0.08795914798974991, - 0.6160065531730652, - -0.8483803272247314, - -0.03120688535273075, - 0.4838823080062866, - -0.5674558877944946, - -0.540779173374176, - 0.18877719342708588, - 0.8178849220275879, - 0.5946782827377319, - -0.16376003623008728, - 0.5136048793792725, - -0.07738406211137772, - -0.21868568658828735, - -0.3406544625759125, - -0.1053871288895607, - -0.045159924775362015, - -0.16560716927051544, - -0.3703373372554779, - 0.19793196022510529, - -0.0010139979422092438, - -0.21991266310214996, - -0.1403156965970993, - -0.10146746039390564, - -0.0013162102550268173, - 0.0025066707748919725, - -0.5080063343048096, - -0.08493319153785706, - -0.1158699169754982, - -0.21040649712085724, - 0.05718383565545082, - 0.14271576702594757, - -0.03102109767496586, - 0.3902250826358795, - -0.16335779428482056, - 0.006653872784227133, - 0.027929047122597694, - -0.053903866559267044, - -0.07901398092508316, - 0.20077599585056305, - 0.3684241771697998, - -0.38222071528434753, - 0.20212328433990479, - -0.11495695263147354, - -0.17530719935894012, - -0.2628645598888397, - 0.16204775869846344, - 0.17011022567749023, - -0.27152374386787415, - 0.03408863767981529, - -0.19221343100070953, - -0.02224837802350521, - -0.07351172715425491, - 0.30550000071525574, - 0.41390419006347656, - 1.0035374164581299, - -0.004422043915838003, - 0.22426648437976837, - 0.11977455765008926, - 0.33749184012413025, - 0.036290597170591354, - 0.5529285073280334, - -0.008936245925724506, - 0.09814983606338501, - -0.5816942453384399, - 0.059138935059309006, - 0.15273845195770264, - 0.07159942388534546, - -0.29080766439437866, - 0.04695405066013336, - -0.2886608839035034, - 0.18138979375362396, - 0.19459004700183868, - -0.13260580599308014, - 0.13827109336853027, - 0.05933411791920662, - -0.4314861297607422, - -0.17297464609146118, - -0.0476449690759182, - 0.3173906207084656, - 0.416760116815567, - -0.5305055975914001, - -0.10646569728851318, - -0.12110152095556259, - 0.0986652597784996, - 0.01864704303443432, - 0.12650208175182343, - -0.5729765295982361, - 0.009160935878753662, - -0.04395563527941704, - 0.24541759490966797, - -0.08395711332559586, - 0.09758146852254868, - -0.33874014019966125, - 0.10391154885292053, - -1.132510781288147, - 0.2772623598575592, - -0.3100367784500122, - -0.07802683860063553, - 0.08687806129455566, - -0.559102475643158, - -0.2412130981683731, - -0.18299619853496552, - -0.15575949847698212, - 0.13471664488315582, - -0.016560552641749382, - 0.027904203161597252, - -0.11488768458366394, - 0.1487807035446167, - 0.2224673181772232, - 0.31117090582847595, - 0.20761561393737793, - 0.07557263970375061, - 0.17278845608234406, - 0.2158612757921219, - 0.111088328063488, - -0.15561972558498383, - -0.027734214439988136, - 0.3112354576587677, - 0.1701497584581375, - -0.0415533147752285, - 0.07769405096769333, - -0.7617084383964539, - 0.0938117578625679, - -0.17703783512115479, - 0.21898877620697021, - 0.027599208056926727, - -0.20122146606445312, - 0.22140993177890778, - -0.27565065026283264, - 0.5770207047462463, - 0.11100810766220093, - 0.47188758850097656, - 0.03558645769953728, - -0.22732891142368317, - 0.10141105204820633, - 0.14196449518203735, - 0.19945426285266876, - -0.08361326903104782, - 0.6745460033416748, - 0.07695264369249344, - -0.1957089751958847, - 0.33735692501068115, - 0.26028409600257874, - -0.04082590714097023, - -0.135816752910614, - -0.13909098505973816, - 0.4667492210865021, - -0.2696774899959564, - 0.46427950263023376, - -0.48746323585510254, - 0.06286367774009705, - 0.14144213497638702, - -0.3030308485031128, - -0.056460484862327576, - 0.07677639275789261, - 0.05395236611366272, - 0.33006832003593445, - -0.06897107511758804, - -0.13764017820358276, - 0.012192770838737488, - 0.03623608872294426, - -0.11426950246095657, - 0.40463176369667053, - -0.044142503291368484, - 0.16351355612277985, - -0.06884920597076416, - -0.10242035984992981, - 0.2029731720685959, - -0.2510397434234619, - 0.08136317133903503, - 0.028738683089613914, - -0.4006012976169586, - 0.4184788167476654, - -0.028715573251247406, - -0.154597207903862, - 0.14366252720355988, - -0.13943582773208618, - -0.09763345122337341, - 0.15922962129116058, - -0.10088170319795609, - -0.3189184367656708, - 0.2153245061635971, - 0.10251444578170776, - 0.16937114298343658, - 0.3747340142726898, - 0.054426033049821854, - -0.04271594062447548, - -0.413448691368103, - 0.19344840943813324, - -0.024294273927807808, - -0.0772751197218895, - -0.4334566593170166, - 0.10619517415761948, - -0.34201502799987793, - 0.006509624421596527, - 0.24947905540466309, - -0.008853008970618248, - -0.1661585122346878, - 0.07974010705947876, - -0.18288201093673706, - -0.07533561438322067, - -0.40985798835754395, - 0.067476786673069, - 0.27375900745391846, - -0.075074702501297, - 0.17313379049301147, - -0.12923800945281982, - -0.12094511836767197, - 0.1721431463956833, - -0.28256723284721375, - -0.24916251003742218, - -0.38847672939300537, - -0.09403025358915329, - 0.05106024816632271, - -0.405582070350647, - 0.23059557378292084, - 0.05928253009915352, - -0.072181336581707, - -0.005881907884031534, - -0.2475137710571289, - -0.17939354479312897, - 0.09048786014318466, - -0.1508682370185852, - 0.021808376535773277, - 0.018271347507834435, - 0.11503053456544876, - -0.2114352136850357, - -0.3047686517238617, - -0.22384530305862427, - -0.09827858954668045, - 0.10696051269769669, - 0.07760587334632874, - -0.17969168722629547, - -0.13017039000988007, - 0.1038367822766304, - -0.2766321003437042, - -0.36624875664711, - 0.28650182485580444, - -0.08110731095075607, - 0.09820276498794556, - -0.03329989314079285, - 0.33045321702957153, - 0.0988786593079567, - -0.10366421937942505, - 0.06028594449162483, - 0.3911769390106201, - 0.5341885685920715, - 0.17068935930728912, - 0.043469130992889404, - -0.14090386033058167, - -0.07493159174919128, - -0.13546469807624817, - -0.4136233627796173, - 0.37483540177345276, - 0.10196995735168457, - -0.051735419780015945, - 0.04934224113821983, - 0.22684256732463837, - 0.14396075904369354, - -0.4280366599559784, - -0.16426706314086914, - 0.5573795437812805, - -0.04074380174279213, - 0.048320043832063675, - 0.0691380500793457, - 0.3954283893108368, - 0.678138017654419, - -0.03454875946044922, - -0.1016673818230629, - 0.084197998046875, - 0.00750374561175704, - -0.22610235214233398, - -0.06779544800519943, - 0.10169506818056107, - 0.5168731212615967, - -0.1505005806684494, - -0.042034000158309937, - 0.20306754112243652, - -0.09602037817239761, - -0.021799592301249504, - -0.1986166387796402, - -0.09983617067337036, - -0.0226000864058733, - -0.24916958808898926, - 0.47841131687164307, - -0.03324337676167488, - -0.08554657548666, - 0.44878950715065, - -0.17464379966259003, - -0.21563875675201416, - 0.1419552117586136, - -0.16669635474681854, - -0.6626150012016296, - 0.2328748255968094, - -0.1341627687215805, - -0.12986353039741516, - 0.42494651675224304, - 0.03062487579882145, - -0.08983782678842545, - -0.27506741881370544, - 0.49694588780403137, - 0.08067440986633301, - -0.08811963349580765, - -0.096425361931324, - 0.08180604875087738, - 0.37660136818885803, - 0.6148494482040405, - 0.20654530823230743, - 0.2933645248413086, - 0.5388324856758118, - 0.05001749470829964, - -0.24983006715774536, - -0.14874614775180817, - 0.12354717403650284, - 0.37616539001464844, - -0.17116235196590424, - -0.20130860805511475, - -0.3236638307571411, - -0.11367016285657883, - 0.1557912975549698, - -0.22135354578495026, - 0.02333947829902172, - 0.16448284685611725, - 0.03779447078704834, - -0.06024624779820442, - 0.183921679854393, - 0.16703177988529205, - -0.18795521557331085, - 0.3378758132457733, - -0.022704854607582092, - -0.06773103028535843, - 0.2121073454618454, - -0.27194929122924805, - 0.22983519732952118, - -0.12476903945207596, - -0.37102627754211426, - -0.36135146021842957, - -0.016541125252842903, - -0.3874332010746002, - -0.0940878614783287, - 0.02007303200662136, - -0.3772667944431305, - 0.10322427749633789, - -0.22529222071170807, - 0.1153930202126503, - 0.1438031941652298, - 0.33676978945732117, - 0.10866376757621765, - 0.4264952838420868, - 0.2190948873758316, - -0.22840513288974762, - 0.1045515164732933, - -0.2046426683664322, - 0.12325694411993027, - -0.14307814836502075, - -0.030300410464406013, - -0.08462776988744736, - 0.5158798694610596, - 0.1830156445503235, - -0.09632595628499985, - -0.030905038118362427, - 0.03387178108096123, - -0.2078799158334732, - -0.39124050736427307, - -0.25190284848213196, - -0.18647928535938263, - -0.03149080276489258, - 0.016730058938264847, - 0.05352554842829704, - -0.3722710907459259, - -0.28807154297828674, - -0.09175633639097214, - 0.14350128173828125, - 0.09866578131914139, - -0.12090641260147095, - 0.044013068079948425, - 0.34197625517845154, - 0.05192260816693306, - 0.3562060594558716, - -0.1663912534713745, - 0.1565546989440918, - 0.14726302027702332, - -0.48303428292274475, - 0.008545054122805595, - 0.03822505846619606, - -0.2749291658401489, - -0.040790408849716187, - 0.3350977897644043, - 0.24803684651851654, - 0.06085463985800743, - -0.006296847015619278, - 0.1869978904724121, - 0.3082644045352936, - -0.49922218918800354, - -0.1558949202299118, - 0.297989159822464, - 0.23977714776992798, - 0.5399264097213745, - -0.07175121456384659, - -0.3642609119415283, - -0.13309411704540253, - -0.01023685559630394, - -0.3957871198654175, - 0.13229069113731384, - 0.21839351952075958, - -0.3072367310523987, - -0.11105629056692123, - 0.14854423701763153, - -0.03693987801671028, - -0.006507532205432653, - 0.1581149697303772, - -0.12859870493412018, - 0.22252380847930908, - 0.044940706342458725, - -0.20735733211040497, - -0.12382151931524277, - -0.18659506738185883, - -0.30098238587379456, - -0.13125135004520416, - 0.4016812741756439, - 0.34076786041259766, - -0.32496756315231323, - 0.07214223593473434, - 0.04219283163547516, - -0.25916412472724915, - -0.2640756666660309, - -0.15624357759952545, - -0.2547512650489807, - 0.32960137724876404, - -0.2121124416589737, - -0.1298261433839798, - 0.05076824128627777, - -0.372775673866272, - 0.15544575452804565, - 0.2193928360939026, - 0.015916774049401283, - 0.41949784755706787, - 0.2979274392127991, - 0.12490435689687729, - 0.297406405210495, - 0.01885177753865719, - -0.01569005846977234, - 0.253350168466568, - -0.026847735047340393, - -0.014257587492465973, - -0.1742265224456787, - -0.13847921788692474, - 0.2683720588684082, - -0.30792561173439026, - 0.12654325366020203, - 0.3447130620479584, - 0.20055769383907318, - -0.47759580612182617, - -0.2365545630455017, - -0.07583025842905045, - 0.05415143445134163, - -0.10736274719238281, - -0.29489168524742126, - -0.16288314759731293, - 0.0809013694524765, - -0.12513378262519836, - -0.16591334342956543, - 0.3000882565975189, - 0.31882956624031067, - 0.04868127033114433, - 0.1831132173538208, - -0.33442196249961853, - -0.41347643733024597, - 0.13727976381778717, - 0.30553099513053894, - -0.0019482970237731934, - -0.08148317784070969, - -0.2510068714618683, - 0.332955926656723, - 0.6421900391578674, - -0.16719599068164825, - 0.025820741429924965, - 0.0336749367415905, - 0.11857970803976059, - 0.15314221382141113, - 0.17436237633228302, - -0.19084179401397705, - 0.14351870119571686, - -0.3643704652786255, - 0.3631077706813812, - -0.3282874822616577, - -0.1022457703948021, - 0.2416631132364273, - -0.11928466707468033, - -0.46645116806030273, - -0.21617066860198975, - 0.4866280257701874, - -0.20845408737659454, - -0.02713753469288349, - 0.14643238484859467, - 0.5337359309196472, - 0.1042320504784584, - -0.34738659858703613, - 0.0780247151851654, - -0.4741765558719635, - -0.09153936058282852, - 0.04712247848510742, - -0.15491464734077454, - -0.030437370762228966, - -0.18307431042194366, - 0.40902015566825867, - 0.4341925382614136, - 0.09944408386945724, - -0.05857411026954651, - 0.06813406199216843, - 0.21257035434246063, - 0.351852148771286, - -0.16517408192157745, - -10.696385383605957, - 0.08947757631540298, - -0.3235389292240143, - 0.6214336156845093, - -0.2847406566143036, - -0.04602588340640068, - 0.0622689314186573, - -0.07753685116767883, - -0.030190808698534966, - 0.02812592126429081, - -0.14662860333919525, - 0.06933770328760147, - 0.36432579159736633, - 0.3089110553264618, - -0.13865086436271667, - -0.15325336158275604, - -0.18933339416980743, - 0.17559605836868286, - -0.043805401772260666, - 0.30726563930511475, - 0.22761309146881104, - 0.406486839056015, - -0.3058054745197296, - 0.2413964718580246, - 0.07033171504735947, - -0.40084946155548096, - -0.22004981338977814, - 0.6523023247718811, - 0.1705946922302246, - -0.2580893039703369, - 0.3245163857936859, - 0.2855913043022156, - -0.30612459778785706, - 0.1704527735710144, - -0.1327863484621048, - -0.07284746319055557, - 0.004032632801681757, - -0.03175688162446022, - 0.23475247621536255, - 0.1051781177520752, - -0.10584268718957901, - -0.27533823251724243, - 0.25331932306289673, - 0.2575684189796448, - -0.2212311178445816, - -0.5380603671073914, - -0.15242181718349457, - -1.5252615213394165, - 0.21881145238876343, - 0.38092169165611267, - 0.447542279958725, - 0.05662431940436363, - 0.1594395488500595, - 0.11298314481973648, - -0.4088262617588043, - 0.0745827779173851, - -0.20342892408370972, - -0.030261151492595673, - 0.10569833964109421, - 0.07416641712188721, - 0.09360381960868835, - -0.2519964277744293, - 0.4135836660861969, - -0.137808158993721, - -0.3726528584957123, - 0.058830201625823975, - 0.06929994374513626, - -0.04357905313372612, - -0.20546849071979523, - -0.4559309780597687, - -0.45889750123023987, - 0.0038210004568099976, - -0.002218355657532811, - -0.052970025688409805, - 0.551442563533783, - 0.009390238672494888, - -0.299750417470932, - 0.1834694892168045, - 0.05571199581027031, - 0.5421097874641418, - 0.19629167020320892, - -0.09736425429582596, - 0.041664667427539825, - -0.08587676286697388, - -0.441127210855484, - -0.2162787765264511, - 0.10138394683599472, - 0.4863532483577728, - 0.021734535694122314, - 0.11847960948944092, - 0.008275563828647137, - 0.39933255314826965, - 0.07021576911211014, - -0.1566905528306961, - -0.4506320059299469, - 0.08993678539991379, - -0.1058262288570404, - 0.14905905723571777, - 0.09357014298439026, - -0.1506110280752182, - -0.278011292219162, - 0.08941177278757095, - -0.12621618807315826, - -0.4539858400821686, - -0.43350669741630554, - 0.1009003296494484, - 0.0908517837524414, - 0.21964360773563385, - 0.09002294391393661, - -0.15110395848751068, - -0.23119883239269257, - 0.04710010811686516, - 0.10503026843070984, - 0.5425638556480408, - 0.1520182490348816, - 0.023759083822369576, - -0.0624953955411911, - -0.387238472700119, - -0.21234168112277985, - 0.20065563917160034, - 0.3276001214981079, - -0.27673497796058655, - 0.32038411498069763, - 0.7085633277893066, - -0.12014124542474747, - -0.07677537947893143, - 1.0679117441177368, - -0.19159144163131714, - 0.3714933395385742, - -0.25225159525871277, - 0.16138187050819397, - -0.08190486580133438, - -0.3474377691745758, - 0.13265050947666168, - 0.34365156292915344, - -0.29666703939437866, - 0.6284262537956238, - 0.23948973417282104, - -0.3748980760574341, - 0.12418612092733383, - -0.31935620307922363, - 0.4985201358795166, - 0.3137863278388977, - 0.17917583882808685, - -0.03732016310095787, - -0.34272050857543945, - -0.1823723465204239, - 0.18177001178264618, - -0.4208186864852905, - -0.2803672254085541, - -0.16702836751937866, - 0.15541458129882812, - 0.31520089507102966, - -0.2805477976799011, - 0.3430659770965576, - 0.10352038592100143, - -0.1605072170495987, - -0.3442021310329437, - -0.46736398339271545, - -0.08180318027734756, - 0.08650700002908707, - 0.8310564160346985, - -0.11916478723287582, - 0.05509529635310173, - -0.09057893604040146, - 0.18557630479335785, - -0.10518945008516312, - 0.20370543003082275, - 0.05196814239025116, - -0.061092808842659, - -0.454100102186203, - 0.261759489774704, - -0.007629778236150742, - -0.39780792593955994, - -0.12359728664159775, - -0.2059127539396286, - -0.0893588438630104, - 0.11700839549303055, - -0.1693694144487381, - 0.17578516900539398, - 0.3254343569278717, - -0.1111014187335968, - -0.0199649129062891, - -0.36808180809020996, - 0.1326427012681961, - 0.13516975939273834, - 0.13114914298057556, - 0.19489987194538116, - -0.28813454508781433, - -0.3206564486026764, - -0.37855467200279236, - 0.1762486845254898, - -0.3110061585903168, - -0.0863831415772438, - -0.022728750482201576, - 0.24485403299331665, - -0.31534287333488464, - -0.008384250104427338, - -0.21698908507823944, - 0.04126561060547829, - -0.2706139385700226, - 0.24860239028930664, - 0.41023001074790955, - -0.1756933182477951, - 0.1744261384010315, - -0.2324109822511673, - 0.08062459528446198, - 0.06217345595359802, - -0.4316578209400177, - 0.28146860003471375, - -0.14903905987739563 - ] -} \ No newline at end of file diff --git a/src/benchmark/output/results/testset/results_graph_005.json b/src/benchmark/output/results/testset/results_graph_005.json deleted file mode 100644 index 46b8d1e..0000000 --- a/src/benchmark/output/results/testset/results_graph_005.json +++ /dev/null @@ -1,792 +0,0 @@ -{ - "status": "success", - "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 54-year-old Chinese male with a significant smoking history of 30 years. He presented with worsening cough for 3 months, which led to further investigation via CT imaging.\n\n**Timeline of Diagnoses:**\n\n1. **April 2023:** Enhanced CT revealed a 22 mm \u00d7 12 mm \u00d7 16 mm mass in the right upper lobe with invasion in the right hilum and mediastinal. PET-CT scan confirmed the CT findings.\n2. **Biopsy (Upper Right Lobe):** Biopsy of the lung lesion showed positive immunohistochemistry (IHC) for TTF-1, NpA, CK7, CD5/6, and Ki67 (60%); and negative for p40, p63, and CD56. Diagnosed with stage IIIA lung adenocarcinoma (cT1cN2M0).\n3. **May 2023:** Targeted NGS analysis identified an EGFRG719X mutation with a mutant allele frequency (MAF) of 3.8%.\n\n**Timeline of Treatments:**\n\n1. **May 2023:** The patient received two cycles of PC chemotherapy (pemetrexed 0.9g d1 and carboplatin 600mg d1) and dacomitinib (30mg).\n2. **Initial Treatment Evaluation:** Initial tumor was considered unresectable due to metastasis in the right hilum and mediastinum.\n\n**Timeline of Outcomes:**\n\n1. **May 2023:** Chest CT showed obvious shrinkage in the lesions in the right upper lung lobe and the lymph nodes of the mediastinum, contributing to partial response (PR).\n2. **Current Status:** The patient is currently receiving treatment for stage IIIA lung adenocarcinoma with EGFRG719X mutation.\n\n**Clinical Summary:**\nThe patient presented with worsening cough and a significant smoking history, leading to further investigation via CT imaging. Biopsy of the lung lesion confirmed the diagnosis of stage IIIA lung adenocarcinoma (cT1cN2M0) with an EGFRG719X mutation. The patient received two cycles of PC chemotherapy and dacomitinib, resulting in a partial response (PR). Further treatment is ongoing to manage this complex case.\n\n**Key Findings:**\n\n* Stage IIIA lung adenocarcinoma with EGFRG719X mutation\n* Partial response (PR) after initial treatment evaluation\n* Significant smoking history of 30 years\n* Worsening cough for 3 months\n\n**Recommendations:**\nFurther evaluation and management are necessary to optimize the patient's care. This may include additional imaging, laboratory tests, or other treatments to manage this complex case.\n\nNote: The above narrative is based on the provided data and may not be a comprehensive clinical case report.", - "bertscore": { - "precision": 0.86226487159729, - "recall": 0.8710905313491821, - "f1": 0.8666552901268005 - }, - "bleu": 0.27859330938799, - "rouge1": 0.560096153846154, - "rougeL": 0.3966346153846154, - "topology": { - "is_acyclic": true, - "timestamps_in_order": false, - "all_nodes_have_timestamps": false, - "weakly_connected_components": 1, - "node_count": 5, - "edge_count": 4, - "avg_in_degree": 0.8, - "density": 0.2 - }, - "trajectory_embedding": [ - 0.26444298028945923, - 0.15941788256168365, - -0.1746055781841278, - 0.1967768669128418, - 0.13093367218971252, - 0.108800008893013, - 0.047415077686309814, - 0.3190433979034424, - 0.4498003125190735, - -0.4936943054199219, - -0.028453731909394264, - 0.19775180518627167, - -0.6453556418418884, - -0.2056516706943512, - -0.17296206951141357, - 0.10433705896139145, - -0.08722388744354248, - 0.390603631734848, - -0.16305780410766602, - -0.2122727930545807, - -0.4088035523891449, - 0.1627717912197113, - -0.44224637746810913, - 0.022073950618505478, - 0.17852269113063812, - -0.062067460268735886, - 0.3639596700668335, - 0.569270133972168, - 0.364279180765152, - 0.27838003635406494, - 0.07867208868265152, - -0.20546475052833557, - 0.04605097696185112, - 0.013336477801203728, - -0.15748649835586548, - 0.26580068469047546, - 0.28932029008865356, - 0.39360129833221436, - -0.23011581599712372, - -0.11030633747577667, - -0.078081414103508, - -0.018068676814436913, - 0.7918617129325867, - 0.16979047656059265, - 0.5370013117790222, - -0.6131890416145325, - -0.19347310066223145, - 0.5365955233573914, - -0.5480602979660034, - -0.32550469040870667, - 0.2359710931777954, - 0.7565101981163025, - 0.5041403770446777, - -0.2397071123123169, - 0.4378383755683899, - -0.22332391142845154, - -0.20167522132396698, - -0.13796362280845642, - -0.17543330788612366, - 0.042690061032772064, - 0.02397197112441063, - -0.04287847876548767, - 0.27494025230407715, - -0.10107463598251343, - -0.09495393931865692, - -0.26205503940582275, - -0.27165770530700684, - 0.036628853529691696, - 0.010086539201438427, - -0.37737196683883667, - -0.21605443954467773, - -0.25396811962127686, - -0.08632999658584595, - 0.11548461765050888, - 0.20971211791038513, - -0.10876703262329102, - 0.2750052809715271, - -0.0752566009759903, - 0.07908450067043304, - 0.14167554676532745, - 0.012829994782805443, - -0.10998060554265976, - -0.016856277361512184, - 0.32763800024986267, - -0.3715936839580536, - 0.02066645585000515, - -0.1057099923491478, - -0.15630166232585907, - -0.3564395308494568, - 0.19048824906349182, - 0.10057153552770615, - -0.3014791011810303, - 0.09028486162424088, - -0.2506754398345947, - -0.017363328486680984, - 0.15851105749607086, - 0.49282804131507874, - 0.166995570063591, - 0.9529813528060913, - 0.014598676934838295, - 0.18515194952487946, - -0.03545413538813591, - 0.1201309785246849, - 0.05223888158798218, - 0.4652419686317444, - -0.18059960007667542, - 0.19650860130786896, - -0.505384624004364, - 0.16876018047332764, - 0.4273758828639984, - 0.04789828136563301, - -0.14991816878318787, - -0.012555981054902077, - -0.2510371208190918, - 0.17002657055854797, - 0.17869381606578827, - -0.020138174295425415, - 0.15021224319934845, - 0.20156557857990265, - -0.4831060767173767, - -0.15941780805587769, - -0.13622929155826569, - 0.324978768825531, - 0.214555025100708, - -0.5191226005554199, - -0.10466263443231583, - -0.1056557446718216, - 0.03231992572546005, - -0.13290998339653015, - 0.13541147112846375, - -0.4916798174381256, - -0.20754575729370117, - -0.11399044841527939, - 0.11582426726818085, - -0.27831584215164185, - 0.3694887161254883, - -0.36065706610679626, - 0.07822888344526291, - -1.139994740486145, - 0.3266427218914032, - -0.4491669237613678, - -0.13711878657341003, - 0.020153993740677834, - -0.5781341195106506, - -0.17323558032512665, - -0.18497522175312042, - -0.1455450803041458, - 0.12946856021881104, - -0.036234062165021896, - -0.07339540868997574, - 0.003791165305301547, - -0.06739691644906998, - 0.2355768382549286, - 0.37865930795669556, - 0.10425474494695663, - 0.22910253703594208, - 0.048134695738554, - 0.3423025608062744, - 0.24893251061439514, - -0.14016327261924744, - 0.11029203981161118, - 0.4786514341831207, - 0.22046053409576416, - -0.016301019117236137, - -0.038135699927806854, - -0.623832106590271, - 0.06389786303043365, - -0.1485079973936081, - 0.05580617114901543, - 0.12250997871160507, - -0.16259676218032837, - 0.08546064794063568, - -0.10227549076080322, - 0.5625059008598328, - 0.16142921149730682, - 0.4568749964237213, - -0.08332149684429169, - 0.010616607964038849, - 0.0946546271443367, - 0.2393914759159088, - 0.03938936069607735, - -0.2937808632850647, - 0.7030659914016724, - 0.3660908341407776, - -0.242463156580925, - 0.23471656441688538, - 0.4681726396083832, - -0.13847549259662628, - -0.33584561944007874, - -0.1295376569032669, - 0.47047853469848633, - -0.21746821701526642, - 0.5052754282951355, - -0.43891334533691406, - 0.07624028623104095, - 0.0781157836318016, - -0.23918123543262482, - -0.019108915701508522, - 0.023412484675645828, - -0.15876367688179016, - 0.2233765870332718, - 0.013265090063214302, - -0.27820059657096863, - 0.06996011734008789, - 0.12561726570129395, - -0.12418381124734879, - 0.24710974097251892, - -0.003401172114536166, - 0.08434903621673584, - 0.07389038056135178, - -0.07700999081134796, - 0.20359942317008972, - 0.08988092839717865, - 0.2677081525325775, - -0.046653736382722855, - -0.31211763620376587, - 0.2533976435661316, - -0.058825623244047165, - -0.2366064339876175, - 0.13747508823871613, - -0.1293993443250656, - -0.2816670835018158, - 0.09862317144870758, - -0.04895424097776413, - -0.46308016777038574, - 0.24614211916923523, - 0.19535012543201447, - 0.20770525932312012, - 0.10454127937555313, - -0.06568097323179245, - 0.015821048989892006, - -0.5318699479103088, - 0.3571562170982361, - -0.029392218217253685, - -0.11664308607578278, - -0.32178542017936707, - 0.25908562541007996, - -0.12581484019756317, - -0.13722440600395203, - 0.4060828685760498, - 0.0326664038002491, - -0.06013842672109604, - 0.04090610519051552, - -0.31625327467918396, - -0.025044357404112816, - -0.28987154364585876, - 0.042393073439598083, - 0.28785213828086853, - 0.14498302340507507, - 0.29223042726516724, - 0.1767764538526535, - -0.19618161022663116, - 0.13886326551437378, - -0.1817779690027237, - -0.39477795362472534, - -0.3424406945705414, - -0.030069774016737938, - -0.020694833248853683, - -0.6699351072311401, - 0.24384908378124237, - -0.14709126949310303, - 0.03677447885274887, - 0.147049218416214, - -0.4412923753261566, - -0.1646527796983719, - -0.05756424739956856, - -0.04163757711648941, - 0.05752462148666382, - -0.1536444127559662, - 0.02227427437901497, - -0.3373582363128662, - -0.3324770927429199, - -0.06726725399494171, - 0.0903121829032898, - 0.09357617050409317, - 0.05206674337387085, - -0.3169952630996704, - 0.04694559425115585, - 0.284548819065094, - -0.33872148394584656, - -0.2569897770881653, - 0.16392681002616882, - -0.2700750231742859, - 0.11068473011255264, - -0.11211707442998886, - 0.17844170331954956, - 0.3257884681224823, - 0.145432248711586, - 0.14286966621875763, - 0.48899954557418823, - 0.4766181409358978, - -0.08813217282295227, - 0.0742560550570488, - 0.07247768342494965, - -0.048548467457294464, - -0.0719694048166275, - -0.27989187836647034, - 0.2888413369655609, - -0.07350458204746246, - 0.02597568929195404, - 0.03725794702768326, - 0.33235830068588257, - 0.16973096132278442, - -0.36056822538375854, - -0.024160826578736305, - 0.5726142525672913, - 0.1274251490831375, - 0.0720137432217598, - 0.09204301983118057, - 0.3280442953109741, - 0.3754640519618988, - -0.011867234483361244, - -0.020063292235136032, - 0.03426354005932808, - -0.10167889297008514, - -0.003683286951854825, - -0.1615658700466156, - 0.24738983809947968, - 0.37143439054489136, - -0.11800484359264374, - -0.3787926733493805, - 0.19062861800193787, - -0.10042177140712738, - -0.0920012891292572, - -0.188311368227005, - -0.02597857639193535, - 0.03697410225868225, - -0.1832079291343689, - 0.37874919176101685, - -0.09673632681369781, - 0.034678392112255096, - 0.5132294297218323, - -0.1839822381734848, - -0.05141686275601387, - 0.2306409329175949, - -0.16698555648326874, - -0.47715896368026733, - 0.2924748957157135, - -0.14144392311573029, - -0.07684727013111115, - 0.39445576071739197, - -0.3700679838657379, - 0.014759650453925133, - -0.12398584187030792, - 0.29324641823768616, - -0.04657968133687973, - 0.006628687493503094, - -0.005731302313506603, - -0.00021234751329757273, - 0.03934416174888611, - 0.5866349935531616, - 0.05733019858598709, - 0.10452653467655182, - 0.5318712592124939, - -0.04209374636411667, - -0.3857511281967163, - 0.07638968527317047, - 0.019100463017821312, - 0.3273197412490845, - -0.25662511587142944, - -0.12148809432983398, - -0.20611067116260529, - 0.17535126209259033, - 0.06717584282159805, - -0.1954023241996765, - -0.08450596034526825, - 0.10032176971435547, - 0.09494118392467499, - 0.01739845797419548, - 0.3453163504600525, - 0.09542397409677505, - -0.1084357276558876, - 0.4954783320426941, - -0.1315261572599411, - -0.1482975035905838, - 0.4415794312953949, - -0.20641303062438965, - 0.3011438250541687, - -0.1731223315000534, - -0.18088027834892273, - -0.33862677216529846, - 0.14215219020843506, - -0.3085923492908478, - -0.2220015972852707, - 0.04336664080619812, - -0.12681689858436584, - 0.09120196849107742, - -0.12737341225147247, - 0.17651645839214325, - 0.02825837768614292, - 0.054775822907686234, - 0.18003126978874207, - 0.4720068573951721, - 0.07884915918111801, - -0.4161751866340637, - 0.20082008838653564, - -0.06317639350891113, - 0.11472564935684204, - -0.2989615797996521, - 0.1219843178987503, - -0.19053146243095398, - 0.4439583420753479, - 0.034178465604782104, - -0.0072060851380229, - 0.16246744990348816, - -0.03201517462730408, - -0.1445402204990387, - -0.5315333604812622, - 0.04227222129702568, - -0.05526598542928696, - 0.02870592474937439, - 0.05986417084932327, - 0.11589948832988739, - -0.35593554377555847, - -0.1692359745502472, - 0.06701365858316422, - 0.10297272354364395, - 0.13722950220108032, - -0.22621572017669678, - 0.05933862179517746, - 0.2716220021247864, - 0.22544816136360168, - 0.44579941034317017, - -0.3770504295825958, - 0.1628856211900711, - 0.200343519449234, - -0.34084969758987427, - -0.053314875811338425, - -0.1345786303281784, - -0.36352282762527466, - -0.04250466078519821, - 0.20133817195892334, - 0.15243177115917206, - 0.043334923684597015, - 0.007842861115932465, - -0.013355100527405739, - 0.2043103277683258, - -0.3694179654121399, - 0.012494584545493126, - 0.5102630853652954, - 0.21045568585395813, - 0.48889145255088806, - -0.05580740422010422, - -0.5707851648330688, - -0.23632535338401794, - -0.08670255541801453, - -0.49997586011886597, - 0.0857858657836914, - 0.21489588916301727, - -0.11693079769611359, - -0.04312785714864731, - 0.12231558561325073, - 0.06176489591598511, - -0.03878216817975044, - 0.0468897745013237, - -0.38922375440597534, - 0.19669672846794128, - -0.00937594287097454, - -0.36596208810806274, - -0.03625774383544922, - -0.20736178755760193, - -0.35025161504745483, - -0.23090562224388123, - 0.3388487994670868, - 0.26125267148017883, - -0.2289842665195465, - 0.00018537938012741506, - 0.12364313751459122, - -0.2201654016971588, - -0.3170410096645355, - -0.0636974424123764, - -0.29080936312675476, - 0.5260792970657349, - -0.05918588489294052, - -0.1896524429321289, - 0.10338175296783447, - -0.25339287519454956, - 0.011904867365956306, - 0.1397339403629303, - 0.06271512806415558, - 0.41630515456199646, - -0.0025386542547494173, - 0.11965905129909515, - 0.5557200312614441, - 0.1450423300266266, - 0.06909553706645966, - 0.28708428144454956, - -0.07803681492805481, - -0.04901803657412529, - -0.05292012169957161, - -0.3050917088985443, - 0.4445802569389343, - -0.33791106939315796, - 0.08996917307376862, - 0.0697154700756073, - 0.3222559988498688, - -0.4623467028141022, - -0.3673073649406433, - -0.10213188827037811, - -0.0171823687851429, - -0.06902258843183517, - -0.31103968620300293, - -0.22007064521312714, - -0.1482122242450714, - -0.19951453804969788, - -0.004743661731481552, - 0.22902658581733704, - 0.46087178587913513, - 0.16014492511749268, - 0.1784369796514511, - -0.3276606500148773, - -0.18040016293525696, - 0.11403970420360565, - 0.25914961099624634, - 0.15003474056720734, - -0.06528967618942261, - -0.185510516166687, - 0.22951605916023254, - 0.4858551621437073, - -0.053555238991975784, - -0.016514942049980164, - 0.11476574093103409, - 0.03903410583734512, - 0.0017821133369579911, - 0.006769922561943531, - -0.09870482981204987, - 0.05872776359319687, - -0.3077263832092285, - 0.2027784287929535, - -0.1770610213279724, - -0.23810212314128876, - 0.24148087203502655, - -0.23222407698631287, - -0.5650317668914795, - -0.19477856159210205, - 0.15111960470676422, - -0.13109645247459412, - -0.07055538892745972, - 0.204031303524971, - 0.3559121787548065, - -0.006582754664123058, - -0.25657814741134644, - 0.02635561302304268, - -0.48771458864212036, - -0.23422065377235413, - 0.14435827732086182, - -0.12046962976455688, - 0.009029055014252663, - -0.0837835818529129, - 0.27395758032798767, - 0.43363967537879944, - 0.27297443151474, - -0.27179041504859924, - 0.1114642471075058, - 0.4251101016998291, - 0.3218974471092224, - -0.1977650225162506, - -10.5908842086792, - -0.08685319125652313, - -0.31190934777259827, - 0.5034602880477905, - -0.09497231245040894, - 0.10752934217453003, - -0.13767294585704803, - -0.04231105372309685, - 0.22920577228069305, - 0.15235842764377594, - -0.16417630016803741, - -0.04306260496377945, - 0.24129971861839294, - 0.2839868664741516, - 0.09350141137838364, - 0.08771146833896637, - -0.3204841911792755, - 0.21960051357746124, - -0.024087198078632355, - 0.12094122171401978, - 0.22182981669902802, - 0.5025917291641235, - -0.32004934549331665, - 0.2369130402803421, - 0.11897021532058716, - -0.40965256094932556, - -0.19889792799949646, - 0.5966641902923584, - 0.34774017333984375, - -0.47192734479904175, - 0.27572983503341675, - 0.16872575879096985, - -0.16094693541526794, - 0.08402447402477264, - -0.053623683750629425, - -0.2379598617553711, - -0.1617407500743866, - 0.219281405210495, - 0.035501640290021896, - -0.06771695613861084, - 0.14385788142681122, - -0.25415951013565063, - 0.3277502655982971, - 0.15785981714725494, - -0.09087453782558441, - -0.4941312372684479, - -0.054533619433641434, - -1.5412847995758057, - 0.16122953593730927, - 0.3375662863254547, - 0.3884543478488922, - 0.11754526942968369, - 0.13307985663414001, - 0.2947734594345093, - -0.28290247917175293, - -0.018010545521974564, - -0.225310280919075, - 0.026250740513205528, - 0.20847436785697937, - -0.028243619948625565, - 0.040125180035829544, - 0.06619243323802948, - 0.45875972509384155, - 0.03913953900337219, - -0.22780942916870117, - 0.18178462982177734, - 0.06808008998632431, - -0.19776836037635803, - -0.3751186728477478, - -0.6779531836509705, - -0.6565596461296082, - 0.1161058098077774, - -0.03779923915863037, - -0.014081376604735851, - 0.4053921699523926, - -0.023084603250026703, - -0.30915552377700806, - 0.11302802711725235, - 0.041265204548835754, - 0.39814597368240356, - 0.2175280600786209, - -0.020090360194444656, - 0.04153497889637947, - -0.13007913529872894, - -0.17516666650772095, - -0.1990775316953659, - 0.07741371542215347, - 0.5744197368621826, - 0.0051642791368067265, - 0.003565080463886261, - 0.02012748457491398, - 0.3525918126106262, - -0.11620154231786728, - -0.13370291888713837, - -0.391549289226532, - 0.04494868963956833, - 0.05321664735674858, - 0.10255566984415054, - -0.08858299255371094, - -0.08601029217243195, - -0.24060718715190887, - -0.020026855170726776, - -0.11588732153177261, - -0.41942930221557617, - -0.5410914421081543, - 0.20725569128990173, - 0.20417055487632751, - 0.15526965260505676, - -0.004157430026680231, - 0.023549994453787804, - -0.15507926046848297, - -0.05191318318247795, - 0.34866026043891907, - 0.5562551617622375, - 0.2522204518318176, - -0.023343289270997047, - 0.007140076253563166, - -0.08937744051218033, - -0.19463960826396942, - -0.017210185527801514, - 0.4520553648471832, - 0.019033867865800858, - 0.04146445542573929, - 0.558208167552948, - 0.018179263919591904, - -0.055671386420726776, - 0.9056228399276733, - -0.3774851858615875, - 0.25849539041519165, - -0.1187991127371788, - 0.1613101065158844, - 0.0014520942931994796, - -0.526279091835022, - 0.04984378069639206, - 0.4215150773525238, - -0.37005680799484253, - 0.8397720456123352, - 0.3449508547782898, - -0.3784930109977722, - 0.02001301385462284, - -0.35369402170181274, - 0.42638564109802246, - 0.2703634202480316, - 0.2578088343143463, - -0.23114927113056183, - -0.19035080075263977, - -0.4070289134979248, - 0.029389183968305588, - -0.460902601480484, - -0.33441486954689026, - -0.13435077667236328, - 0.10411826521158218, - 0.06014033406972885, - -0.16343533992767334, - 0.2967160642147064, - 0.1560571938753128, - -0.23506078124046326, - -0.15030960738658905, - -0.49159687757492065, - -0.288693904876709, - -0.004842457361519337, - 0.7797421216964722, - 0.07439661026000977, - -0.12136934697628021, - -0.09562963247299194, - 0.16359283030033112, - -0.1262212097644806, - 0.0713212639093399, - 0.06340330094099045, - -0.012859612703323364, - -0.3709489405155182, - 0.1904623806476593, - 0.17486698925495148, - -0.3707614541053772, - -0.2279631644487381, - -0.11814628541469574, - 0.04541970044374466, - 0.0864521712064743, - -0.13294580578804016, - 0.03790726140141487, - 0.3080064654350281, - -0.14976727962493896, - 0.00935194082558155, - -0.35069507360458374, - -0.0067945122718811035, - 0.11920662224292755, - 0.21115157008171082, - 0.12239930778741837, - -0.3420785963535309, - -0.25314730405807495, - -0.40954717993736267, - 0.25935789942741394, - -0.44630423188209534, - -0.02935277298092842, - 0.023297931998968124, - 0.2896445393562317, - -0.2899172902107239, - 0.1287817507982254, - -0.1425635814666748, - 0.03875355422496796, - -0.3075428605079651, - 0.30901435017585754, - 0.5397374033927917, - -0.19223614037036896, - 0.2921281158924103, - -0.1078154444694519, - 0.24127164483070374, - -0.007835115306079388, - -0.30574044585227966, - 0.1526556760072708, - -0.24457792937755585 - ] -} \ No newline at end of file From 40eaf82237970e3b7faf62ee0b8cbf534da6437b Mon Sep 17 00:00:00 2001 From: Vicky Bikia Date: Wed, 14 May 2025 19:29:17 -0700 Subject: [PATCH 10/11] Get BERTScore results in histograms --- src/benchmark/generate_visuals.py | 1 - .../output/plots/bertscore_f1_barplot.png | Bin 30152 -> 0 bytes 2 files changed, 1 deletion(-) delete mode 100644 src/benchmark/output/plots/bertscore_f1_barplot.png diff --git a/src/benchmark/generate_visuals.py b/src/benchmark/generate_visuals.py index df9b1b6..aaf04ab 100644 --- a/src/benchmark/generate_visuals.py +++ b/src/benchmark/generate_visuals.py @@ -85,7 +85,6 @@ trajectory_embeddings = np.array(trajectory_embeddings) # Generate Visualizations - plot_bertscore_f1(graph_ids, bertscore_f1s) if len(trajectory_embeddings) > 1: diff --git a/src/benchmark/output/plots/bertscore_f1_barplot.png b/src/benchmark/output/plots/bertscore_f1_barplot.png deleted file mode 100644 index b853e5e5ddd5a446bee1cb4b424d608eda454c3f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 30152 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 From 4dbf5107b678443497374066b58a44d1eb027b2e Mon Sep 17 00:00:00 2001 From: Vicky Bikia Date: Wed, 14 May 2025 19:59:10 -0700 Subject: [PATCH 11/11] Add t-SNE plots with cancer type coloring, metastasis markers, and cluster boundaries --- .../modules/compare_graph_vs_text_clusters.py | 96 +++- .../plots/clustering_score_comparison.png | Bin 19894 -> 19665 bytes .../plots/graph_cancer_type_heatmap.png | Bin 44492 -> 49560 bytes .../graph_cluster_metastasis_barplot.png | Bin 17219 -> 16261 bytes .../graph_specific_cancer_type_heatmap.png | Bin 65621 -> 68118 bytes .../output/plots/text_cancer_type_heatmap.png | Bin 45212 -> 48150 bytes .../plots/text_cluster_metastasis_barplot.png | Bin 17403 -> 15752 bytes .../text_specific_cancer_type_heatmap.png | Bin 65653 -> 67282 bytes .../tsne_Graph-PCA_metadata_clusters.png | Bin 0 -> 67880 bytes .../tsne_Graph-UMAP_metadata_clusters.png | Bin 0 -> 66523 bytes .../plots/tsne_Text-PCA_metadata_clusters.png | Bin 0 -> 63382 bytes .../tsne_Text-UMAP_metadata_clusters.png | Bin 0 -> 69085 bytes .../results/cluster_labels_with_metadata.csv | 522 +++++++++--------- .../results/cluster_metadata_summary.csv | 5 +- 14 files changed, 342 insertions(+), 281 deletions(-) create mode 100644 src/benchmark/output/plots/tsne_Graph-PCA_metadata_clusters.png create mode 100644 src/benchmark/output/plots/tsne_Graph-UMAP_metadata_clusters.png create mode 100644 src/benchmark/output/plots/tsne_Text-PCA_metadata_clusters.png create mode 100644 src/benchmark/output/plots/tsne_Text-UMAP_metadata_clusters.png diff --git a/src/benchmark/modules/compare_graph_vs_text_clusters.py b/src/benchmark/modules/compare_graph_vs_text_clusters.py index dae1cef..459395f 100644 --- a/src/benchmark/modules/compare_graph_vs_text_clusters.py +++ b/src/benchmark/modules/compare_graph_vs_text_clusters.py @@ -31,8 +31,9 @@ import seaborn as sns import umap from sklearn.metrics import adjusted_rand_score -from sklearn.metrics import adjusted_rand_score from collections import Counter +from matplotlib.patches import Polygon +from scipy.spatial import ConvexHull # Local application imports from modules.embedding import TrajectoryEmbedder @@ -91,7 +92,6 @@ def flatten_list_column(col): return encoded - def reduce_dimensions(data, method="pca", n_components=10): if method == "pca": reducer = PCA(n_components=n_components) @@ -123,25 +123,85 @@ def cluster_and_evaluate(embedding_matrix, method_label): return best_k, best_labels, best_scores -def plot_tsne(embeddings, labels, method_label): - n_samples = embeddings.shape[0] - perplexity = min(5, n_samples - 1) - tsne = TSNE(n_components=2, perplexity=perplexity, random_state=42) +# def plot_tsne(embeddings, labels, method_label): +# n_samples = embeddings.shape[0] +# perplexity = min(5, n_samples - 1) +# tsne = TSNE(n_components=2, perplexity=perplexity, random_state=42) +# reduced = tsne.fit_transform(embeddings) + +# # Convert numeric labels to "Cluster 1", "Cluster 2", etc. +# unique_labels = np.unique(labels) +# label_map = {label: f"Cluster {i+1}" for i, label in enumerate(unique_labels)} +# cluster_labels = [label_map[label] for label in labels] + +# # Plot +# plt.figure(figsize=(8, 6)) +# sns.scatterplot(x=reduced[:, 0], y=reduced[:, 1], hue=cluster_labels, palette="tab10") +# plt.title(f"t-SNE of {method_label} Embeddings") +# plt.tight_layout() +# plt.savefig(PLOTS_DIR / f"tsne_{method_label.lower()}.png") +# plt.close() + +def plot_tsne(embeddings, labels, shared_ids, label_type="graph"): + metadata_path = Path("output/results/graph_html_metadata.csv") + meta_df = pd.read_csv(metadata_path) + meta_df["graph_id"] = meta_df["graph_id"].str.replace("graph_", "") + meta_df = meta_df[meta_df["graph_id"].isin(shared_ids)] + + tsne = TSNE(n_components=2, perplexity=min(5, len(shared_ids)-1), random_state=42) reduced = tsne.fit_transform(embeddings) - # Convert numeric labels to "Cluster 1", "Cluster 2", etc. - unique_labels = np.unique(labels) - label_map = {label: f"Cluster {i+1}" for i, label in enumerate(unique_labels)} - cluster_labels = [label_map[label] for label in labels] + cluster_df = pd.DataFrame({ + "graph_id": shared_ids, + "x": reduced[:, 0], + "y": reduced[:, 1], + "cluster": labels + }) + joined = cluster_df.merge(meta_df, on="graph_id") - # Plot - plt.figure(figsize=(8, 6)) - sns.scatterplot(x=reduced[:, 0], y=reduced[:, 1], hue=cluster_labels, palette="tab10") - plt.title(f"t-SNE of {method_label} Embeddings") + # Preprocess categories + def extract_first_category(val): + if pd.isna(val): return "unknown" + try: + items = eval(val) if val.startswith("[") else [val] + return items[0] if items else "unknown" + except: + return "unknown" + + joined["cancer"] = joined["cancers"].apply(extract_first_category) + joined["metastasis"] = joined["has_metastasis"].map({True: True, "TRUE": True, False: False, "FALSE": False}) + + # Assign colors and markers + cancer_palette = {c: col for c, col in zip(joined["cancer"].unique(), sns.color_palette("tab10", n_colors=joined["cancer"].nunique()))} + marker_map = {True: 'o', False: 'x'} + + plt.figure(figsize=(10, 8)) + for (cancer, metastasis), group in joined.groupby(["cancer", "metastasis"]): + plt.scatter( + group["x"], group["y"], + label=f"{cancer} | {'Met+' if metastasis else 'Met-'}", + marker=marker_map.get(metastasis, 'o'), + color=cancer_palette[cancer], + alpha=0.75, + edgecolor="k" + ) + + # Draw convex hulls per cluster + for cluster_id in sorted(joined["cluster"].unique()): + cluster_points = joined[joined["cluster"] == cluster_id][["x", "y"]].values + if len(cluster_points) >= 3: + hull = ConvexHull(cluster_points) + polygon = Polygon(cluster_points[hull.vertices], closed=True, fill=False, edgecolor='gray', linewidth=1.5, linestyle='--') + plt.gca().add_patch(polygon) + + plt.title(f"t-SNE of {label_type.capitalize()} Embeddings\nColored by Cancer Type, Marker by Metastasis") + plt.xlabel("t-SNE-1") + plt.ylabel("t-SNE-2") + plt.legend(bbox_to_anchor=(1.05, 1), loc="upper left", fontsize="small") plt.tight_layout() - plt.savefig(PLOTS_DIR / f"tsne_{method_label.lower()}.png") + plt.savefig(PLOTS_DIR / f"tsne_{label_type}_metadata_clusters.png") plt.close() - + print(f"✅ Saved: tsne_{label_type}_metadata_clusters.png") def summarize_cluster_metadata(shared_ids, glabels, label_type="graph"): meta_df = pd.read_csv(METADATA_CSV) @@ -322,8 +382,8 @@ def main(): gk, glabels, g_scores = cluster_and_evaluate(reduced_graph, f"Graph-{method.upper()}") tk, tlabels, t_scores = cluster_and_evaluate(reduced_text, f"Text-{method.upper()}") - plot_tsne(reduced_graph, glabels, f"Graph-{method.upper()}") - plot_tsne(reduced_text, tlabels, f"Text-{method.upper()}") + plot_tsne(reduced_graph, glabels, shared_ids, label_type=f"Graph-{method.upper()}") + plot_tsne(reduced_text, tlabels, shared_ids, label_type=f"Text-{method.upper()}") score_dicts[f"Graph-{method.upper()}"] = g_scores[gk] score_dicts[f"Text-{method.upper()}"] = t_scores[tk] diff --git a/src/benchmark/output/plots/clustering_score_comparison.png b/src/benchmark/output/plots/clustering_score_comparison.png index 6ebf669e236c811fa06c26ab582f3540e20fdbc0..9308d4dfb47700e133bc165915b7b5666c6d98fc 100644 GIT binary patch literal 19665 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 WJ>Or}m`lidm3|;6jun0E_rC#}Hqmkb literal 19894 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
Jd^WGk5g%3m^5v#B`S-$4bUPUQ3GzXmE_ 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 Iisjw^3*MeN?*IS* diff --git a/src/benchmark/output/plots/graph_cancer_type_heatmap.png b/src/benchmark/output/plots/graph_cancer_type_heatmap.png index e8c34044748eabb8f1de16b185e1c56d0aecdbb6..5d3db4f9a29bcde7137a2664a28adc62da71a772 100644 GIT binary patch literal 49560 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 literal 44492 zcmbTe2RPO58$W(TN+n9=gOH4DWhOH!n^0!<&dlB;M9bc?vMO@yJtMML_KNITX2<;B z2dVG6{=eVvbafq^^Ip%m@B1~L=lOkU5!_S6rw|APu9)Z@IRpYL6M;CUbP^l>VmV1p z3~#rr?RDPDnVYdO-?+}q#(2fh+SDC9;_vIM4urebM_=9jq?&K$N za2%5AmM0orSYsI!GrqJX2q)ipetz;8$CI%dxm-ipnI2@^_SRB`HkXLsWry(!kMc`5 z?0$T^J@fT_@OVp%>UnB$DmuBOfQC?p#$P|bPfRvP^AlCSCgIZk5cJjx%(ZI!aUK42c0Pe}jZ z%bX6k^>o134-X~$NO@?Qqd0;U)g3 z($@KthiB>3-E(Bp)*t=kt> z;x>J_7Hco$tT)&FaTy-8akeY%vl%;WU#bjwjz;h`8M8GD1j79_y4wVPEH|?FY&kFV z=h3)dd{R;{RAMI+>o7^g?XsC$FZW(9S-fz{2alW?&R>qjimOc}7DP3epClH1ufHe9 zpfwD7VRPFY-#0^}!fZW(0lpeWsBT}SOSbc~jy#ClN`J~qt=Kvc^TgQ*M7Wxp+Zt*r zPQvdpcao6zDgLd<^5yxQ)`mG`1@nl@Mog}8Ps{8mj2n_fFMPx?FZImz#Ua&fgH|(E z}EuOy22hrzhDKz6bgWT=%iC~COqsV7dT=rx1{3hZsKBnap%4i;sb4sgmZUbtbO zoI5Y!sdN@b0ed8e=}TTt&Cuvl&m_v7QBB4$;Ei|riN{~H5NbGU)xLFeY7S{fc2*?l-!`&f zeyib%y8A)lSr1{Ajo> z(N=7?L^jc5Tpzc4R(8isOX8M|-}DFt^oo9*zyMOW})> zh#3oBqxXBc7RIE?-%-duC&U(Y%Wlzx*>`QrZM9t_WmP)vv;^iu;zzU^<)t`_hGL;% zGZXc}bJM|Cy%_NujZ2e~XovjTnk3_gkHx`OLqBqw_e&rUfrC}V!jv7aN zJYNI5QjWulzQgSMRI*#PxQ4U*?Mpd!OX`ul4%s-)hG8+3@7_{}d{iyqbfav}?yN{F zm&Vj9mf?6e7Vk#j62qVB*62%Qs)c?wnqRW-<*0wAuo<+7!n~FW5Z_4NEhnx)jrx!` ztrV-dk;fPpYjAYlH~K*hy?p|gcxK}=yI}whv&h}Oy|0#o9mx_Rj%Jna7&MhVnOed* z0vz_~d$Z0@K6kZ#MWrS`zg5BUF1aFSHJ5W4T%+x`N(*O3tURFjsrzExqaECo`E2*EKVx14|duxMTC&7x#iFSQ@d zS4650Iakohr+C#q*x6hYwwi33+1`d{*C$_}>tPw3vrZQarok<FG@y}w zb8{6^LQ4Il?t9Dh!gvLxol*8m9&o-rm7si;dXaUTJM^ z{p#X8)j~S8E}M8SasehlB5E6gasrI6QwzOWI)z99o7s>^Jgowr-7pv^Zquz5&Zuk$ zQ@C$(ho<7zHG`XH$arrK?wvm8#x*qZc(~MIas`)!^A4)4HI~mojWL6Ey}D9VA3^ZFCY9{*cp{3amKe53 z&RaCi{m-Yn6g6-+io(*2I_*z1TemX?RC%5d*;Em+_0|7sI1{R`G1F?r%c|F)D?ZOI z!Nk}sXgrYrv5)}*y*|0?N;6kWw$xB~)J%%2?Bo|wZKApiy zuJF-+%zJs^eEELpt(Z%bK4~gMGtRcW4KCFlC&TMtixyqRoVNNB}Q!L^xSG=GNePvP5{4 zBxm!7QxaQZcVTv%+1iWW9o}5YWt89W(VzZo&3y9$^P}GFy_xt(4V9FC*7p=o)GeiK zoq-9V3e^e(zw_h^!2~z(zbS>@kHeF|h}>+gs_!yv=)edHNN_++=oKW!p8MVh60+eO)44&vM!@lNY}fh8<{q z@vcmp>+MY*W3j{zR#8*?r4Qq*A1XW&xdOusXON@0x3=Z)eXSAN%WiMzZa_E}f@b65+HDQ(8i z$J`TP*d%!ln+pR4^_abI9Yrqu-0ShJh)z@2gR~GUgvW?*m#=zyTxv3eQ@H2!*tFq#;JQY~ ze5mWrW+bwUk*fJYdwiI_nD-iOAHBa&1yY^XxH~d!={@1NtlqmqiJT|7ZlRn3J+7*o zNPX9?4-Xk?M;f!-as$f}F`V!CeS5ach`VT%Xo5>C70uba$`{S5_hRPd1aqBIE?(F! z|2d;ddPdxkn&$*lfyb1H1FXABcV+Khyzo3i>>YAzcWX%s$-YpM-1n@%Qf(`JCf|4E zYQEdch!%zg+|;*^L&yj+TvPN-jN&sy{K;rmpGHT^yT6eM6t!Nd|b9CPO-rvTped&Qxzod%9IQ#WP+?2$` z<}YhbEfF`Wb!oVHP4r5q4TbG+c@6I~eqdyDd98lOnDd1`6)H&mYsIgzmnrq7oVR*v zyJSOy?yhlJunYIpPKq}ckx?U3wuB`p))LY-jqXd3JP{B_NYuS$804PriQ{$XNWVJW zo9cIQLYv^#OKGUI$2(;NLOG1PBM=gj+}VNbiL@qGyS~akXD`w}xQ=JKy0_M&5qOEUGvDy$cHM&{t4C$$6m;-FUFp|oQqSsi0p0h z?rj@s4nzTB_{Ov!RN7ujG~bN8`9!;LA<8?EaH6O>iIv0rDhJE(3A-}D2TqY6GW>!W%p{mNUlo8>^%Bz;!m(}>B-SW$6v^jlU z7pJ+$nN*nHVLXFr8~M^rt*`AOu9^2jbP@x52841{L5F5w#)S_kk`^%A~vb$f%X9>yRP2CBjOT3<)HaS_?@1?WP+q*BL;=MRsdMuHU0DDdBF8*^$g6)2;Sh0SB;WK~Eyo^Uh z*?k#OH5`d|*|ga!lOw4&t@7r@F*%44?KJa?A>uPj?=art5YR+O1{T}QMX}N@a3{Cg zEcAD6H$kHA(e<4vZ_}TN3QbYIvNGAsCiTHaa#-%e1G*fyimgSSPS14fnGR-+RE!k* zhaVzn`iKRIxXj+rUF&rBs|K{tWXx{(F7iTPM)R#(YnjtV6e?bz05ayJ!_I)w72%DtU49kUls@+UC1W%YI$Oh@ z3B?af3|DhB7uS|V&YJb!OoReb-E=)M?9IKqo*DiA?_IXmQ#Qh}O;Tjy7B9znV&|@I zJnqkZkBTHViMeI-0X1~F@2<+z)GaxZCFAwjMG4ZE{A6q9=ScefC8koaqb@6Js=Vkg zbFvHOPIfyHGq=f>%dU_UNtPEEqF-nBM``$j^vlhVf^W7ipXc{fI!$K!Wa{Ney_u84rkGrK0)q`zxl1o6JQPe z+XFz>YWRDWojA%x)$mLe7FhqqmNmCF5TeVWJ?T*O0xLH6_>RHWY37x(r{Tz&jX}7U#@82 z)r2hB3fG;sH{4dm&SqcV$?6YM-h1V{IyhSG(`>cLhpIN&lG7DHMid9d1g{u|7tzk5$sSuah z;IFodiE04Ttxf)qiYy~5jF-pjg#nFR-fR~k_a25K9d&DHYLo3#M}-S&d7`;z0ua1) zQ^bvy5vh%W{!#}kL%{e@FITYXe$ial>CH;(N>lU+qm!?7X4!F!@kHl2*TrYJBxESN zo~)Uk^hZUk9gp0$77ChMJ1dM|6LSbb0Yw_cY1-cgKy@w9HD$M=Ki^b!WiM{mbZw~s zVy5WU4H~Q46$(>scQ*He`9DQLwa^YDN_)Dn7)GM*Ik{;M0$W+ zGXfXGuyY|+IawR&>;gj(`A{%#DSVxD#jd|Vf{+!C|8X2mDe)dtd%pOYP$T5Qd%5~( z^KzoOlpc5CpJSh!#k~L%20?e-Bq=dQU4bJ$C8DngFW-x5^@>hzvA1j*(nEHjGsU2} z-Y(St6P6L-GS|&S{`!)~E3yN^>Pl_y<#H(WS?zyl_LVy1;AnQemlpv*Nifj^@I**D zmUqV4YXJ}Ei1zZ$x}j4mTIWY9rSK4<3>2JnK~!SrBl%q%a~bpv8baz(ZRZ`o$>JY! zUY1+yrk&w8=7kH2-o6Y*^8t^$K1>W=x+Z;j1qGx0?KV*{LKLn@?X*7MQTRj$1&mDD za!IA@)0F2myAUu@hS8U1I0 zQO=QAtfaSqr!_jkDeT(4ZsebK8sB#$oO$<7j&(m!|? z;JjRaZMlVK$$oySGWL+_)5N5pShT_E(CkXYP6wcL4eI<*h#Ecv8F9wuX(HzYT%GA2 zeh9gI)8dN4_q!GehdsuLfAz_rW6d21GD(t=tl8Exa#Q(erlqx7U-_ZZ$alVFhDCEoU-r5qF_j=$gadKa0MT^(>w9^*Y+W(s zQv0l&tStcSO$}aW30c%b&;Y+DMLMQm*W#mknaU|b=K0Pil-Iqzo;`aej<0!9XaxOV zE17sibB($erw$i!}V?==cUTdF9&0#5?e?}D4p!s zH;zLRHS>74k*CWcds>O@JcN1r2lelJMPM-Y66KKW4|#;^>oW&jtjQIx%NKk9Ib>!{ z+|LX35*_`5xHSLjkZk1?M4Yy*ok!EuK=o-*Vji%uBqsy$(|i#2xJSqQU!FkqipcTx zyNBE^NxT=n?Qf!&COi4}0jrfyk3Kp3rSj?P|8n%S$KN;k z@7G6P^61>?3;pLA&cYc;em^GZeVxC43HbXHe7Js~=E?o%2R8h0P}>T=IAwCwNBH76 z6i2_=3T~g`{N0#5zQS0i*YA2C67bu^Q2n7_y%>C%nmWIS59XL+=8fOu0{XrUDehzzQnJ5aU(bqSG8L)~$P8e-l% zVCV;$HU6pcIvnV>_+!K0*B1uhK0__=h9(=JX3&MQSuRb1X)6Ebld*`_o^)k`34C;n zAY#=GfbTl#5muJ}9%m=|>l$9yLGGu9SU*Zu+#G5()e>p);S~|vGl*+(kY*-&(pB=r z_X&Ea85Lb!dP&mo_azU_6IryFXN;i+OG$mG1l98enL@|454k3N9au<+kW+z6&%X&B zPM3)NxXFIK5mV);t0ts_ic9mbD&K__KYKp08B*^o*@7!w1uS};WMdQe!JKX^f{rVzwotk5aK zAp7goOZ?!b4I*&STq@ zE_u@a*kOQ~uY9T`3x#QObto_wB3pSH&Og1w?;Yp4dI2q}!Ryc5`1bw0P-Xa0ztkYn zBi(s=BFZ6Ir|fAEzuwipomLnG#yKVe)>RY6#^KHMNDf9uZZ@i5`=4W90_7Daax~T( zw!1`PkYYjCV^>|u3wa;Xq$Np*3GQ+`sp&KJv5YYC&{oZ-Aulx;#O+)$XjKn+dYnAC zU}TZ%^UEp!<+Y0KZ1GzEJvpHID2puh0{LC~Mb~EaVp@HkJ!|m7(Wti@VG4x0L}I4H z8&Ypild)&tl0bTpM!7OgILo8Z%MRIJ8u_Bc7e8^Um9N)~$}d+NRD206tDD$<|FUCj ztyXRdH9M-lvXVZc*BQq%KHkoDUO>yaUX?wZccjQewa1$?Tb1iN zu3vk3m2%YmB{IgQaQVIepxdtvuH!@k7ogpa>0@1izc_F~p>L-muQ z?5mg^7Gp+|cPl@$+D&LVROoQOS78iZ;lR{jr0aTV5Hu{`Exxc@@rAHrF__|`xJ0vD z)z)N*VY@gHw`CN7IibmB5(8<={sMBUsa6e3)Mj(Eoy5{G`4_9!t}xU}okVlg#UzRF z(QNaPy<^_;sV$+(Ij)@7I7eK0RL)N>a5 zPcUWnWq!g(QZxO|BK!Gt{ypb%-aThhhxI;{ATIN>M7LHs#6oBjnqs!18+%&c6bXJ% zU}7S@#Y^e1tQ$_orylmnd*w^G#_oKna4K?U5asaxVcJt}BVvvZsQ{O5yY9Js#7fhc zN)MRDWf1M!oS>T1iA=JIo1(h?_Sf>%r!{7cxRU#49TFrc-``IQsgd}0>t{}@PfXI| zvb}N*zf$Go>S(6%?U|R8E$W%t{9D*teRel(f5F@SV7bxH714?~h5>EiOU~tYp*d7V zVb7(%h>87y?pj8t9R1SXF}e2l4{mynx4e1Oy~I5?nD4O1{a%?qO;<9e*I7N`K6ZU5 zT~YcVsv?d+667=nw>=j@2m+(~MeX|s?~|Y!>zU{=87dZ`S70PEQw^n0ZnCx6{$&)L zkug$D;jo+}_x6r!U-m>r4_363-BNv^OI@->a-tnTR^`BoVj_>ZA2;wxIwHSa@LhW<5 zsJzo^agbUpocUo=&zx=YwVQsXff_3#R#lU;6LZVoc0EOB#^~g(aq*qy9fkb2yyitt zt&vqnrMlR3{#C^OBqsGE-Ji?rIp*j(aWbd54f8bTq#{N-5c#6OMxdotblR$q+p8!+ zq{_sFK|=ZBv{ZJjVs|qwglVgS=2gaExyu0Wr&DEaib7+x;ewVs-D*a^y3dOR(Z)WY zeXPfNG=rbu5L`(aw@vRFN@QS$eQP|LAx8#=`+WiuW&n;p#-ed>boksOmJxLtoG zoq4lb+$D^GFL*SDG6^Pg@Y?H6?cZ9DhMO9o7#jH$$-sb#Xgw-;B#CkJ9X6ai_Gd}lpBiz0oHWqy$52M^{#R|aXTw0D5>b%uQqY4{9M!t zr;-V~u>81Mh{iqiy6dBvq4WrAvb}J|5!;SZ{Uw3$Ln9&^hZGzO8D zI6Suv$!O;k3Bui$7|-DZtHHq2dz*WU4aqWbFtUZ8?X6wvY(0IciK&X#p&{w~HM7e( zLQ+co<7|2=JyN_n+TFb%3O6$o{g5RT3#Ql}YS;YaypFq`vt%*<1K#$BoldU#^*GaK zzb=|IAsscL4v}(PpC_WTPqvQcF94Ov$2ATE6Z;FAf9I1UG`*@&8RR{U4pOZ8wN!_JqWWYz%^x zy)&JwRy%UVrHOXesy&@;yYfv5W_rxiFEB+Zz94L6VbkBHSpXJwVJ{p;!IC-Q1|rMjH(Zw0$8owB-Z-tr$!Wy zZLy_P=7-MGVoB1UuXz=&mneJd*V{3SuQ&7PCljsBlxRrITGJ)dt6~AyJ^p8; zq6Fyi8ubv71~S=l0|W9)id1xxesffdX6SmQO0o5O$(UOY@A;E4c^HlsyHQCkdv$z| ze4Ao@U*gz+Yo<_(1`4UDIGHOZNnqocjrbtfu|<4Wdx> z!3NaQ5uT3dYGrkrpVe$IoK?R`vObjIB~qiCDK?l#es_o2Nb`p%bS6^cvW5$%=FdrV| zT^ufBm}=SSA*ToT!+8N$&5u_O5n42M=4E!xP>@2?eD)!ypeBG@&dGwqIu;-EcJWod zrg);lDUo z4?I?xn2yjwNA)mzjQs|u`|$SY7hjF4TEj6=+0n0~dYbd!;3eWO=m+e@pWAn5?#aB7 z!gX-?Ur>|U>(BjSNDXTJ!JWtcx_3cZ^!K6){~hX+2E0A?7f=Q|;5XzWZL1;ugF=Be zAW0ND;C%k@9P{p2f11wZN(j&tze$gI_lE#(kH82k0OJ22q)Xx}{QBY%)a4Y!v+E`L zsl5NZCg&?Hr_Pap4JZg$SFyKuo+mk@ma{=daE z!+OQ_r>B083mvcx1Ojhb4;W4lgb}EGaG*r-gHo?{Vh#*Ll;CR!K^HCnJkjuW@+Y{R zHl62B^8S7VkAMLD0n>?%E2_+;X{zd%@OtYbr&2PG{KALzye)~Dvl(hbXTQ8B>pg+690N#pgwjQ~jX z0NS!T|FY;5HU_GlY=?KLhk5R>&vIP?u!D%Lc6Pq~rKW%}QKjApp?2JqsfO zCZWeUJq;h`?f_POuD~UH(%R)u6{f9n?Vu0%;lu{IYi$$?|(wzl#$THGqQVKJ+r60h;voI>Hys?K_dg+ zJP*n%zo#Acpy?Qy{J+tODO46fU$@jQ0)xy(?Rl1X&~YKJXBk;W%I1RE>Sv2+{kc9t_8)H2RI`=8eicXga12648n|(D$D>{7&QIa>N{YRgxB99EJeX;xJoxa0)_NOs^ORMob1M zi7mfXdWa6>?L7pT#CLcN_tR(|(t**vD@#XYX1J^*U9~_Oh~M!Mx4lqg`KI{h>I@~2 zRO?^;54cTcpbBFg(!Da>_I8)SvGiU!Ck19$bqE2NaN4jk)!lY%WOfdo7J)_Ne>{_Y z?lD}rqrhB4Ufh16pM&mEVJ4MCSd+ZKfe-hN2md^@UMPOPagTI{dKo>=d8+FkX+V)h ze(ORrJzzA3SEUo0;)FZp(5XFB1m?4(g7eCA?kaA6i4$;3nzGpf|LxGu z!3hy3<;+fGqQ#!7Cu+1Wj?G8qaml|Xdk z+9Tt4R*7fHu440|yZqBhxO`#)r5Vb_ZOO|q4VDMLuS~v3) z#e9r4F5>_4@I2N3*CI((VnL!*T#6AYeQb%;ugpo4G>xS=Kp->Vj6 z9DSQYTJ)VN-W6KbOlUa@u*X^@E$Gzwt$p?1KN~{!3g*Fl2Hk^<_}lMCJgo_wpoGv{ zWxEyV<=9QxgR!8>_Y}c%A`@JZ=NDH>?3SWTAvpws-0O5SF{X8n^Pryuc;CSMP$pG{ zY~A{+u^JvwtSvyqoA+ttdw8R~@;V zD5!|gq6~qtC7{Gzpp(0!knw0{@o@6v&3H_-U}oANjA6=mK*SIWym~ijN-jl`4j2Id zL$$wWM5QqEk0A$$+zZ@jO&_}2ETk2fRaMZJ$A6!$eZNm_5p%0Eoe=)Nx8ML)L7|( z$#+9xzj5%76K7So44&20Yl@Hsvj!7{!Y}~VqK4CMMn0e`pd|x>nvS0RZzGlx&fwcl z+9D(-nj+=F??8oC=g?;ID+*wjrm~s+8vASg;HxLK$#68e4J&8Cc)l@Su;0}Pe|LTb z2!+@O6}3ADS}>aaxgW9IrO*vp^K8AWC6pnYN<2igA)JL}t_SJAoF|_u9f~$C%rd!v zTc4r72UF{J+NY5kgrmMfeV6o?upB}w`-ySVcCv{m9H~+6Tm;m)5Cl3JXy`x~pAz81 zod81_*{=mHyTiIq@YQP~wtKg1=V_rT427`M2zd$30kMKM5RTlNO+$|7^{59!R1*g? zoL+yf5js661DtHF^Q#m-R28CE(G@JgVbvGODmc~ZPf+Ka(f81Q3|z048;fdSW0jJ0 zdx%AGSfy)XF6zHKAdq1$l9U`CurW3S2{blU)OSC+!j^fjlIXqMo^M+~7B6D;1%uCB(Yxci{{JJ zPBiYxm>g{Y8LisI6|^w&*Qadn{MJ!_*x*onllV^*LxP^pzcoP;U*k0dg5~P(8&hhp zA^majxBQ0y6vp8TiBas002*Ngb2>3;p2&>-p!I(4ukT^Ml$HYS`cRfIydjzaLHTkphL+5%k5L zK8N+^iT3qm!Na9Sf1s}*`nHblkpS@CZ-j&f?tgwkE9U>@?*B!HeuDEC3dek+ zUPh`S^U_OS#N%I?L+=F-i76w`I$B!!;D@fvakGPGCT# zn8DbQDnkN}oAebFti(bSH>kxDYRLaKbZW%`XNZ=g989mPt`5;hZgg1!4fSEXA^h&G zbu)U@%W(@-zmAV|eNP-?n5UC}V_z^~vYLNw$Gf{61?2{r(_d%lX8PVI=t{=P+0OIR zlwrG2kQ9(wqx!?+(rD!Ctj`uKbc614%WckLV0dxuO|DDUvn27r2i+!v3`4_jm{0h> z3DT@RU`T(cPm?qmjc5X|2&z;>>$)JiHHnn?q5k_9rD*uV|A|s0J7o;E3Wgm09h2dc z7!otpy#s-3i zOTwRwMPl@m!+0Z$o9%FWTaWePb}3|%s?z#b#9i_&Z;Gx!>`{2yh{;4}if!Jp#JR2bG;NxB&-b|r zsgwVR94vJZQQ>j}y`!DmX>(q0>U&dB<7n(s$F7mXUZTVDig~o|RIE-%!c<)lxA0@5 z2U~7-%TI9+RYs=-^XsXgx6Ff*2K_vc_Pm4#uQKjj<+2Bl-D1Ot8+m|usQAr-&(8@& zKn9{y&7ZeHai|t72EMo`@oYdLS)49Mja0z3KWSrj!$LHc_k9R$phmt4YKfz2a&gGX z(xUYVojS8d;m)J6pWE4Xb+Q$xSPy2`?LxT^y*kTvA7WZe9fRJ+g){6_>|Bt|PI|7p zG>en%wr~e!t71+UA`rb&^oW}^Li1tolEcKTRA1&=dX8Z*l*BXZJv}Mz>8aF~VzX7EK-Zo83V+eqN0CkN7xmqdjhibKO9^r2 zBQ|%Qp8Fr8O`=lo9m0dRBAVUkDzH`@d&Q1G`_3hd=zyuh64)XOe+)B9+^ooa#Npq984l4o4tJ&^CXrjVlsj@kCo8`B#Wg|-XNOa}60 z#6ve>DAKrY+Xtm;a`u&LxfSlD#}U$ob()tO#Fsd2l$-QDQHo7}^tFhIis}yhaHrdR zcf|FDUl{%+x&Srl7}V08nJ-yvmdj0_Ek@WJvTK&@>v^-yIul)FO0*6X7kidf+)1>A zbU2foaB!Y10g+PCSlRG~JI8tZXC2!87v5?;JnbVp?)2 zim++MBVnzW-*{8x=Tfm(tPSZTFPAL@T;j7Q5z6of>JdkawOw=s|?A2@-Cl^EOwc|fHQym78^~W&5vm#vCyl}SLeUp zx73wjiECA#+>QY4Y3!kkhqQY?q7PApWx}(PjeHKv>Gk4I zXd!{VA{!E^eZ3`D`zn$S?c)#&#une*-Ya4In)N+r^0i)D{PX=>E1!~yip3#NAxY1X z3r!WTpMaSkE#nsYatirH2bI(C?FlLM!~Q+FPpz@#R1{k4E8aPZNs5g(T3V;v@&O-4c0@|x270}Y0-smyRr>>mw+y8g zY+Tv$oBXz-pm2StdEEZOQFTSLn90U^=08k(LZVfF#0zZDD_UqN_5oTY_Lx`UhVN^D zC}OZgfeLLqDtC5JhNZ0`$Q`iCPV^bXaUk(EM9NOaheR&OR-~oe0R*h&49q@zY*2Z0n!^08UCIEKOh}#HOmcc5m ze`DN%-)2U07o|TwoesLLB?Lg)FP!kx*G4PM3#JGB7&$K8w@fW(n z{c+-`pw3bgYtuse%;=nyWY<23hcm~3Hm-QcmP>ou+G8FT&y`qda!I1+7SBCIFo5U` zR00tiGg=LJp1^CGy2zlgI{NM$ZePmgaMK|U|E ztMoS!0e4_%g}bHwA0}HS07ZX}`PZ|#|8+JX!TyUySQYO6FNg1Qp1*(;2mrs)sA_yO z$NbB_KhWoZLg&OkFN8xe|MC!f<%4GM-%pk=7;W53_@Dmfe|0p2(s$Hhuwo#S12E~jXEHrK}-vtFF`04S}Q9XnV3X;HT zU1%J+SoQ2TUfqu_DgWC|`wFaVU`hvFiULHAa3VR$Z854Rar*^ICPd*690JSvc#2k&srds^dQDD<6YYQaG!oX2RX>wEqF}q%F>+RCvZW6 zQwM9-b+QcKw!gK>;EuP;0&;N6%@){gR_p0Di-FvVt^f+*!OMi-%J;W7!E+|J?*;aU z3RFQTCG~(?_3o<9Vgln&CUW0s1{T6YPr`xGl5{)x!#z)cnnw!(s}Y!gY_PjG>tYckBRI4%HCmNNPR zXpIk+^ji-8$l9m7StMbk=zYh)zdWYQhw!rdUW*$}C;|j!0h|B~T9?rBQD3WLdmN1v zF*mHeL3`B!WL17HKXH*s<-u9fTQxYz;WtuUgr_XQLD+oPO;ptP=HkwDo!>k~q5t=1 z=0IOoW0m1(I)sxE*7}h$jJR%nY_uvlO~|ao$;o5Xk@UPNPCx@JXhv)IO=Ma*hV8%O zvZd}Xd2<*(jbTrM!6@(qI7xK%vJFcHnd7E#tJqe@Q?#m|!MgbiR&{2;Iin@cefbp7 zngU*{0xYysL%Z-xS6X<`g@ITUyHVj(k;D`ca6D};?{A|$0#R;IQ<_T;!!b-S&hs7Z z^U=K$>$+()Gg483^QE}IRri8pEhu|vQhM^{PuKvX9yosV3ObrzblOkzF(83($EKI% zwzC%Ah-!L$xpiis0LiGDFNs#HAZCR?$yX0z?Kt?<12=}9T4zTwP96)v-+Ugf?kMI* z#zzmE9|WT}vH|Vk8n_`judR@~{z~|Y)EJqi=of;;k-D(ehFrWL#>!8yC??%c5YktL zQJ@FxwE|u{=U5F&<0YR+*ozKfKUeAd-E2_i1_B3-g3?ZsGadUBhkNqYqk@^w@AW@b zxm@OQu85=57H|SZ+d&s>5R;ds8#(iunzN+LIh}Xbdf=3o-Zu7rMFDmEn!m{z^Xhkr5QI9yUyk=C%{W42&ER&lxbK6TDYX^2Mk;^wxw$cVwPa3_! zM^kh)v=sEcuYSr+>A}2Garw+>}v4?m9OU6z?6b(XeSK}W{Edd5}4Nh_{!#2TT*DceRA_nB_78|5Y zP9TjJpp=lZm-RBi$`T0EMV0p!qRJf+7S}e+;rR1CXfCGWr(mBGb7|+*MQq+g(ATnI zZw~XJb-&P8XHw3-168Z3Umv(yb74#+^3}3OByZhP=Vg9UdV6Ha zntbjJGZ-XhydT0+FBF_j^3qL&z3Nx)@gH<$!ApfNHNaaVFOk79(ceP@wi_7GocCV+ zGddVo?SscvB~+%9gdtpp?``n$QBlXLHVlxU$X0PohBSqb*^Y+!RnVXd8sERDw5u~X z9@EHs{7{}bVM6f78&LNnJ5VrZBYZfkY;`j#t%$t)4H!YXp<(+XtDUTTJI-Z2va31= zSMAsBt;zS`i5-HyUi#WV88Yh0h=ETY>ih)%O!Q}o7Z>QXSp!M8-jqwmChs_|>HBr? zJN9ErV1DcOm*3LCa4%@bY?MKJKrEMr`CxC8*XSjKv)vz!J1p1E?!lfv6kuK`aP$>? z)fB_i!~W~*t{HJI?B)|*WX1Jl?2c8tOdJ;0ExvokmDf#>G=&B*NzjTJVD+q`G$gw! zdb_HY`HO`zo|$a=P1pBqA@$oX4jTEjLW|ufyO|eG#w)Xt#?S7X{L;MA>ZOSxrd>>l z<8GSc%W#vjOeVK{T zUm#7gn_u;klcBOX&bWYk454MD5UqYvD&|&~^06c?J9Ywz953{qB56K`r;GhLI!j=R zjQX`Y4$H!FUbOF|OBjnRa{cPpZ^quIE`DmBLMwam8<4Wo$*v+Qg=z6OnhNXEG$lz^ z1tU>*Y^rjWY#E^+5nFBc6O5B*v0xt4d~(^_*^n)#*#1$C7xubYIyVU#!3gOE>x3+| zzuyIT$+~q5tT14hdd@3_8?xe3rK0s& zPmT7KNB0xRIc?nIo%-f-&YcCna+!e7arOGlwhTXtiZDSv>DoN8VEaAP59Womw=Q(B zipp#hgNS||%VZRxFASQBotnGbWVZ#JPfYTfCp<|yp1);xwM?lfR%^$p5W zB|hGPw)AE&a79ZpmT9GM)w3Ie#2KldQO&kmCcUxdj)6%feYsm|S^xfBRRTk#6caZr z?Jq^ygRTynXq`gGvSRbKQfa64W9}EBtiUm~{CF(@K1HYI6uY%NqU)tHimC0VDHpQd z@(ty_xgU<(g9!W1OgD&*e`+6JpSiNsSs995nr9cQ?)w3JRMDXv%2G{M#9U@3VP!ou zi;zY*ZeKE0jUR}0oCOb+0mq8`oj<0b&X(E`RDy;_O5xn-OkcTg?V4^{3OIveYe?qr<#

7|3_M2qLQqcZqF@5oa- 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 literal 0 HcmV?d00001 diff --git a/src/benchmark/output/plots/umap_kmeans_clusters.png b/src/benchmark/output/plots/umap_kmeans_clusters.png new file mode 100644 index 0000000000000000000000000000000000000000..18a7c63d4a066390749749b06669e5f883e281da GIT binary patch literal 34681 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 cancer (stage IV) diagnosedRadiation therapy for pelvic lesion (45 Gy/15 Fr)Chemotherapy (carboplatin + paclitaxel + bevacizumab for four courses)Bevacizumab maintenance therapyRight adrenal metastasis largerNew left adrenal metastasis observedRe-enlargement of the right adrenal metastasis detectedRadiation therapy for the right adrenal lesion (50 Gy/25 Fr)Chemotherapy (two courses of docetaxel monotherapy) administeredEnlargement of the left adrenal metastasis detectedNivolumab monotherapy as fifth-line therapy initiatedDiabetes mellitus (DM) diagnosed: Blood glucose level increased to 468 mg/dl, Urinary ketones negative, pancreatic amylase not elevated, and autoantibodies including anti-glutamic acid decarboxylase (GAD) antibodies negativePolymyalgia rheumatica (PMR) diagnosed: Muscle pain in the femoral area and neck appeared, which did not improve with nonsteroidal anti-inflammatory drugs. CT and magnetic resonance imaging showed no obvious cancer progressionNivolumab treatment continued","Lung cancer (stage IV) diagnosedRadiation therapy for pelvic lesion (45 Gy/15 Fr)Chemotherapy (carboplatin + paclitaxel + bevacizumab for four courses)Bevacizumab maintenance therapyRight adrenal metastasis largerNew left adrenal metastasis observedRe-enlargement of the right adrenal metastasis detectedRadiation therapy for the right adrenal lesion (50 Gy/25 Fr)Chemotherapy (two courses of docetaxel monotherapy) administeredEnlargement of the left adrenal metastasis detectedNivolumab monotherapy as fifth-line therapy initiatedDiabetes mellitus (DM) diagnosed: Blood glucose level increased to 468 mg/dl, Urinary ketones negative, pancreatic amylase not elevated, and autoantibodies including anti-glutamic acid decarboxylase (GAD) antibodies negativePolymyalgia rheumatica (PMR) diagnosed: Muscle pain in the femoral area and neck appeared, which did not improve with nonsteroidal anti-inflammatory drugs. CT and magnetic resonance imaging showed no obvious cancer progressionNivolumab treatment continued","[ + { + ""date"": ""June 2014"", + ""text"": ""Lung cancer (stage IV) diagnosed"" + }, + { + ""date"": ""July 2014"", + ""text"": ""Radiation therapy for pelvic lesion (45 Gy/15 Fr)"" + }, + { + ""date"": ""July 2014"", + ""text"": ""Chemotherapy (carboplatin + paclitaxel + bevacizumab for four courses)"" + }, + { + ""date"": ""July 2014"", + ""text"": ""Bevacizumab maintenance therapy"" + }, + { + ""date"": ""after 15 cycles of maintenance therapy"", + ""text"": ""Right adrenal metastasis larger"" + }, + { + ""date"": ""after 15 cycles of maintenance therapy"", + ""text"": ""New left adrenal metastasis observed"" + }, + { + ""date"": ""January 2018"", + ""text"": ""Re-enlargement of the right adrenal metastasis detected"" + }, + { + ""date"": ""January 2018"", + ""text"": ""Radiation therapy for the right adrenal lesion (50 Gy/25 Fr)"" + }, + { + ""date"": ""January 2018"", + ""text"": ""Chemotherapy (two courses of docetaxel monotherapy) administered"" + }, + { + ""date"": ""February 2019"", + ""text"": ""Enlargement of the left adrenal metastasis detected"" + }, + { + ""date"": ""February 2019"", + ""text"": ""Nivolumab monotherapy as fifth-line therapy initiated"" + }, + { + ""date"": ""May 2022"", + ""text"": ""Diabetes mellitus (DM) diagnosed: Blood glucose level increased to 468 mg/dl, Urinary ketones negative, pancreatic amylase not elevated, and autoantibodies including anti-glutamic acid decarboxylase (GAD) antibodies negative"" + }, + { + ""date"": ""four years and 5 months after starting nivolumab treatment"", + ""text"": ""Polymyalgia rheumatica (PMR) diagnosed: Muscle pain in the femoral area and neck appeared, which did not improve with nonsteroidal anti-inflammatory drugs. CT and magnetic resonance imaging showed no obvious cancer progression"" + }, + { + ""date"": ""four years and 5 months after starting nivolumab treatment"", + ""text"": ""Nivolumab treatment continued"" + } +]","[""Lung cancer""]","[""stage IV lung cancer""]",True,"[[""right adrenal"", ""re-enlargement""], [""left adrenal"", ""enlargement""]]" +005,2,0,Neoadjuvant_Targeted_Therapy_with_Dacomitinib_in_a_Stage_IIIA_Non_Small_Cell_Lun_PMC11980937.html,"A 54-year-old Chinese male with 30 years of smoking history presented with a worsening cough for 3 months, with a performance status score of 1. Enhanced computed tomography (CT) revealed a 22 mm × 12 mm × 16 mm mass in the right upper lobe with invasion in the right hilum and mediastinal (Figure 1AandB), which were confirmed by positron emission tomography-CT (PET-CT) scan. Immunohistochemistry (IHC) analysis of the biopsy from the lesion in the upper right lobe of the lung was positive for TTF-1, NpA, CK7, CD5/6 and Ki67 (60%); and negative for p40, p63 and CD56. The patient was diagnosed with stage IIIA lung adenocarcinoma (cT1cN2M0). Follow-up targeted NGS analysis of his lung lesion biopsy identified an EGFRG719X with a mutant allele frequency (MAF) of 3.8%. Two cycles of PC chemotherapy (pemetrexed with 0.9g d1 and carboplatin with 600mg d1) and dacomitinib (30mg) were given. + +The patient underwent video-assisted thoracic surgery (VATS) with right upper lobectomy in July 2023. The tumor was located in the right upper lobe, measuring approximately 1.5*1.5 cm with unclear boundaries. Postoperative pathology results indicated that 10% of the tumor cells remained alive, surrounded by significant fibrosis, necrosis, as well as inflammatory and immune cells. After chemotherapy and dacomitinib induction, there were no lymph node metastases, and the pathological stage was ypT1bN0M0. Two cycles of PC chemotherapy were administered, followed by targeted therapy with dacomitinib as adjuvant treatment for 2 more years in accordance with the diagnosis and treatment guidelines. At the final follow-up in September 2024, no adverse events or disease progression had occurred. A progression-free survival (PFS) of more than 14 months was achieved.","A 54-year-old Chinese male with 30 years of smoking history presented with a worsening cough for 3 months, with a performance status score of 1. Enhanced computed tomography (CT) revealed a 22 mm × 12 mm × 16 mm mass in the right upper lobe with invasion in the right hilum and mediastinal (Figure 1AandB), which were confirmed by positron emission tomography-CT (PET-CT) scan. Immunohistochemistry (IHC) analysis of the biopsy from the lesion in the upper right lobe of the lung was positive for TTF-1, NpA, CK7, CD5/6 and Ki67 (60%); and negative for p40, p63 and CD56. The patient was diagnosed with stage IIIA lung adenocarcinoma (cT1cN2M0). Follow-up targeted NGS analysis of his lung lesion biopsy identified an EGFRG719X with a mutant allele frequency (MAF) of 3.8%. Two cycles of PC chemotherapy (pemetrexed with 0.9g d1 and carboplatin with 600mg d1) and dacomitinib (30mg) were given. + +The patient underwent video-assisted thoracic surgery (VATS) with right upper lobectomy in July 2023. The tumor was located in the right upper lobe, measuring approximately 1.5*1.5 cm with unclear boundaries. Postoperative pathology results indicated that 10% of the tumor cells remained alive, surrounded by significant fibrosis, necrosis, as well as inflammatory and immune cells. After chemotherapy and dacomitinib induction, there were no lymph node metastases, and the pathological stage was ypT1bN0M0. Two cycles of PC chemotherapy were administered, followed by targeted therapy with dacomitinib as adjuvant treatment for 2 more years in accordance with the diagnosis and treatment guidelines. At the final follow-up in September 2024, no adverse events or disease progression had occurred. A progression-free survival (PFS) of more than 14 months was achieved. + +The patient received two cycles of PC chemotherapy (pemetrexed with 0.9g d1 and carboplatin with 600mg d1) and dacomitinib (30mg). The patient underwent video-assisted thoracic surgery (VATS) with right upper lobectomy in July 2023.","A 54-year-old Chinese male with 30 years of smoking history presented with a worsening cough for 3 months, with a performance status score of 1. Enhanced computed tomography (CT) revealed a 22 mm × 12 mm × 16 mm mass in the right upper lobe with invasion in the right hilum and mediastinal (Figure 1AandB), which were confirmed by positron emission tomography-CT (PET-CT) scan. Immunohistochemistry (IHC) analysis of the biopsy from the lesion in the upper right lobe of the lung was positive for TTF-1, NpA, CK7, CD5/6 and Ki67 (60%); and negative for p40, p63 and CD56. The patient was diagnosed with stage IIIA lung adenocarcinoma (cT1cN2M0). Follow-up targeted NGS analysis of his lung lesion biopsy identified an EGFRG719X with a mutant allele frequency (MAF) of 3.8%. Two cycles of PC chemotherapy (pemetrexed with 0.9g d1 and carboplatin with 600mg d1) and dacomitinib (30mg) were given. + +The patient underwent video-assisted thoracic surgery (VATS) with right upper lobectomy in July 2023. The tumor was located in the right upper lobe, measuring approximately 1.5*1.5 cm with unclear boundaries. Postoperative pathology results indicated that 10% of the tumor cells remained alive, surrounded by significant fibrosis, necrosis, as well as inflammatory and immune cells. After chemotherapy and dacomitinib induction, there were no lymph node metastases, and the pathological stage was ypT1bN0M0. Two cycles of PC chemotherapy were administered, followed by targeted therapy with dacomitinib as adjuvant treatment for 2 more years in accordance with the diagnosis and treatment guidelines. At the final follow-up in September 2024, no adverse events or disease progression had occurred. A progression-free survival (PFS) of more than 14 months was achieved. + +The patient received two cycles of PC chemotherapy (pemetrexed with 0.9g d1 and carboplatin with 600mg d1) and dacomitinib (30mg). The patient underwent video-assisted thoracic surgery (VATS) with right upper lobectomy in July 2023.","[""Lung Cancer""]","[""Lung Adenocarcinoma""]",False,[] +003,0,0,Management_of_malignant_inferior_vena_cava_syndrome__IVCS__by_endovascular_bridg_PMC12019825.html,"A 73-year-old male patient underwent a procedure to relieve significant stenosis of the suprahepatic IVC due to compression. Under local anesthesia, a 5F sheath was inserted into the right basilic vein and a 10F sheath into the right common femoral vein. Venography showed a significant compression of the suprahepatic IVC. The IVC stenosis was passed using a 0,035-inch hydrophilic guidewire and a multipurpose catheter. Initially, mechanical thrombectomy was performed to exclude possible thrombosis; however, no thrombotic material was extracted. After placing a stiffer exchange guidewire with its distal tip positioned in the right subclavian vein, 3 uncovered self-expanding nitinol sinus-XL stents (OptiMed, Ettlingen, Germany) were deployed in tandem from the SVC to the IVC with an overlap between the stents. Using venography measurements, stents measuring 18 × 80 mm, 18 × 60 mm, and 16 × 80 mm were placed in a cephalic-to-caudal orientation. The final venography revealed adequate flow through the vena cava and bridging stents.","A 73-year-old male patient underwent a procedure to relieve significant stenosis of the suprahepatic IVC due to compression. Under local anesthesia, a 5F sheath was inserted into the right basilic vein and a 10F sheath into the right common femoral vein. Venography showed a significant compression of the suprahepatic IVC. The IVC stenosis was passed using a 0,035-inch hydrophilic guidewire and a multipurpose catheter. Initially, mechanical thrombectomy was performed to exclude possible thrombosis; however, no thrombotic material was extracted. After placing a stiffer exchange guidewire with its distal tip positioned in the right subclavian vein, 3 uncovered self-expanding nitinol sinus-XL stents (OptiMed, Ettlingen, Germany) were deployed in tandem from the SVC to the IVC with an overlap between the stents. Using venography measurements, stents measuring 18 × 80 mm, 18 × 60 mm, and 16 × 80 mm were placed in a cephalic-to-caudal orientation. The final venography revealed adequate flow through the vena cava and bridging stents. + +Diagnosed with SCLC 15 months previously. Received 6 cycles of carboplatin/etoposide chemotherapy, followed by thoracic radiotherapy and prophylactic cranial irradiation. Lost 20 kg of body weight within 12 months. Performance status was recorded (4) on the Eastern Cooperative Oncology Group scale on the day of admission. Vital signs: systolic/diastolic blood pressure 100/70 mmHg, heart rate 90 bpm, oxygen saturation 89%, body temperature 36,9°C/98° F. Laboratory results: hemoglobin 12,6 g/dl (normal range 14-18 g/dl), platelets 260 × 103/μl (150-450 × 103/μl), alkaline phosphatase 94 U/L (26-112 U/L), alanine aminotransferase 40 U/L (5-35 U/L), aspartate aminotransferase 34 U/L (<40 U/L), total bilirubin 1.2 mg/dl, and creatinine 0.9 mg/dl. A large tumor involving the right lower and middle lung lobe measured (17,6 × 19,3 × 18,6) mm (maximal axial x coronal x sagittal dimension), which causes significant compression of the IVC (yellow arrows) mainly at the level of its entry into the right heart atrium. Multiple enlarged mediastinal lymph nodes, infiltration of the visceral pleura and right hemidiaphragm, ascites, and peritoneal metastases were other salient findings underlining disease progression. + +Three self-expanding stents (yellow arrows) were positioned in tandem from the superior vena cava (SVC) (red arrow shows the most cephalic part of the stents) to the IVC to restore venous patency. Fig. 3. The final venography revealed adequate flow through the bridging stents (yellow arrows). The patient's IVCS symptoms, mainly trunk and lower limb edema, were significantly alleviated within 48 h. Low-molecular-weight heparin was administered for anticoagulation. + +The patient died with a large tumor involving the right lower and middle lung lobe measured (17,6 × 19,3 × 18,6) mm (maximal axial x coronal x sagittal dimension), which causes significant compression of the IVC (yellow arrows) mainly at the level of its entry into the right heart atrium.","- Diagnosed with SCLC 15 months previously +- Received 6 cycles of carboplatin/etoposide chemotherapy, followed by thoracic radiotherapy and prophylactic cranial irradiation +- Lost 20 kg of body weight within 12 months +- Performance status was recorded (4) on the Eastern Cooperative Oncology Group scale on the day of admission +- Underwent a procedure to relieve significant stenosis of the suprahepatic IVC due to compression +- Three self-expanding stents were positioned in tandem from the superior vena cava (SVC) to the IVC to restore venous patency +- The patient's IVCS symptoms, mainly trunk and lower limb edema, were significantly alleviated within 48 h +- Low-molecular-weight heparin was administered for anticoagulation +- The patient died with a large tumor involving the right lower and middle lung lobe measured (17,6 × 19,3 × 18,6) mm (maximal axial x coronal x sagittal dimension), which causes significant compression of the IVC (yellow arrows) mainly at the level of its entry into the right heart atrium","[""SCLC""]","[""Small Cell Lung Cancer""]",True,"[[""mediastinal lymph nodes"", ""enlarged""], [""visceral pleura"", ""infiltration""], [""right hemidiaphragm"", ""infiltration""], [""peritoneum"", ""metastases""]]" +015,2,2,A_case_of_obstructive_shock_and_transient_ischemic_attack_from_intracardiac_meta_PMC11981378.html,"- Patient presented to ER 8 days after initial diagnosis of intracardiac metastasis of NSCLC. +- On admission, patient appeared lethargic, tachycardic with irregular rhythm, decreased breath sounds on the right, and tender right upper quadrant due to rib fractures. Heart rate was 110 bpm, blood pressure 96/60 mmHg, respiratory rate 22, and saturation of 100%. Patient treated for hypotension with IV fluids. +- CT of head negative for acute intracranial processes. CT of abdomen and pelvis showed mildly displaced rib fractures, right kidney interpolar cyst with new areas of internal hyperdensity (suspected benign cysts). No other new presentations appreciated. +- Laboratory values during the admission: + - Hemoglobin (g/dL): 9.6, 9.9, 10.4 + - Hematocrit (%): 28.3, 30.2, 31.4 + - Platelets (K/uL): 146, 128, 170 + - WBC (K/uL): 19.5, 16.29, 20.71 + - Sodium (mEq/L): 129, 128, 127 + - Potassium (mEq/L): 3.7, 4, 4.7 + - Chloride (mEq/L): 102, 100, 101 + - Bicarbonate (mmol/L): 24, 23, 25 + - Glucose (mg/dL): 120, 130, 110 + - Creatinine (mg/dL): 1.2, 1.3, 1.1 + - Urea nitrogen (mg/dL): 20, 22, 18 + - Calcium (mg/dL): 9.5, 10.2, 9.8 + - Phosphate (mg/dL): 4.2, 4.5, 4.0 + - Lactate dehydrogenase (LDH) (U/L): 250, 280, 220 + - Aspartate aminotransferase (AST) (U/L): 40, 45, 35 + - Alanine aminotransferase (ALT) (U/L): 30, 35, 25 + - Total bilirubin (mg/dL): 1.2, 1.5, 1.0 + - Direct bilirubin (mg/dL): 0.8, 1.0, 0.7 + - Alkaline phosphatase (ALP) (U/L): 120, 140, 100 + - Gamma-glutamyl transferase (GGT) (U/L): 50, 60, 40 + +2 days post-ER admission: Patient developed symptoms suggestive of a transient ischemic attack (TIA) with right facial droop and left pronator drift. +CT-Angiography did not show any large vessel occlusion or acute intracranial process. +The deficits resolved in 6 hours; however, the patient still had ongoing tachycardia and uncontrolled atrial fibrillation. + +Patient was diagnosed with locally advanced non-small cell lung cancer (NSCLC) stage IIIB (T4N2Mx) metastatic non-small cell lung carcinoma of squamous cell histology. +Endobronchial ultrasound-guided fine-needle aspiration confirmed the diagnosis. +CT angiogram revealed a large hypermetabolic mass in the right lower lobe extending into the mediastinum with enlarged hypermetabolic subcarinal nodes, irregular mass measuring approximately 8.7 × 4.6 cm, partial atelectasis of the right middle and lower lobes, small to moderate low-density right pleural effusion. +Tumor thrombus in the left atrium measuring 3.4 × 6.3 cm, interfering with the mitral valve function. +Echocardiogram showed that the mass was invading into the left atrium. + +Patient underwent palliative care for symptom management. + +2 days post-ER admission: TIA with right facial droop and left pronator drift +CT-Angiography: no large vessel occlusion or acute intracranial process +Discharged to hospice care","Patient presented to ER with intracardiac metastasis of NSCLCTransient ischemic attack (TIA) with right facial droop and left pronator driftCT-Angiography showed no large vessel occlusion or acute intracranial process; patient discharged to hospice care","Patient presented to ER with intracardiac metastasis of NSCLC (initial diagnosis) +2 days post-ER admission: Transient ischemic attack (TIA) with right facial droop and left pronator drift +after TIA: CT-Angiography showed no large vessel occlusion or acute intracranial process; patient discharged to hospice care","[""non-small cell lung cancer""]","[""squamous cell histology""]",True,"[[""left atrium"", ""tumor thrombus""], [""right lower lobe"", ""large hypermetabolic mass""], [""mediastinum"", ""enlarged hypermetabolic subcarinal nodes""]]" +010,3,0,Re_do_robot_assisted_salvage_lobectomy_after_esophagectomy_with_gastric_pull_up__PMC11980297.html,"55-year-old female underwent esophagectomy with gastric pull-up reconstruction for squamous cell carcinoma (SCC) of the esophagus (cT3N2M0, stage IIIB) +Six years later, computed tomography (CT) scan showed stage IA Thyroid Transcription Factor-1 (TTF-1) positive adenocarcinoma in the left upper lobe treated by stereotactic radiotherapy +Two years later, a SCC of the right upper lobe (RUL) was found with tumor diameter of 54 mm and high Programmed Death-Ligand 1 (PD-L1) expression +Pembrolizumab initiated with curative intent but showed no biological response +Salvage lobectomy including complete mediastinal lymph node dissection performed +Positioned in left lateral decubitus position, adhesions in closure-line of the previous thoracotomy and thus RATS was deemed feasible. +After standard port placement (Fig.2A), docking and instrument placement (Tip-up fenestrated grasper™, Cadière forceps™, Maryland bipolar dissector™ and the Monopolar spatula™) adhesiolysis between the lung and the chest wall and taking down dense adhesions between the lung and the intrathoracic gastric pull-up the nasogastric tube was exposed (Fig.2B). +The nasogastric tube was placed in the gastric pull-up as a safety measure. +Meticulous dissection of its vascularization enabled subsequent standard lobectomy of the RUL with complete lymph node dissection (R4, 7, 10 and 11). +After removal of the specimen and chest tube placement, a Ropivacaine® intercostal nerve block levels T4 to T9 was installed. +Total operative time was 3 h 44 min with 50 ml blood loss.","55-year-old female underwent esophagectomy with gastric pull-up reconstruction for squamous cell carcinoma (SCC) of the esophagus (cT3N2M0, stage IIIB) +Six years later, computed tomography (CT) scan showed stage IA Thyroid Transcription Factor-1 (TTF-1) positive adenocarcinoma in the left upper lobe treated by stereotactic radiotherapy +Two years later, a SCC of the right upper lobe (RUL) was found with tumor diameter of 54 mm and high Programmed Death-Ligand 1 (PD-L1) expression +Pembrolizumab initiated with curative intent but showed no biological response +Salvage lobectomy including complete mediastinal lymph node dissection performed +Positioned in left lateral decubitus position, adhesions in closure-line of the previous thoracotomy and thus RATS was deemed feasible. +After standard port placement (Fig.2A), docking and instrument placement (Tip-up fenestrated grasper™, Cadière forceps™, Maryland bipolar dissector™ and the Monopolar spatula™) adhesiolysis between the lung and the chest wall and taking down dense adhesions between the lung and the intrathoracic gastric pull-up the nasogastric tube was exposed (Fig.2B). +The nasogastric tube was placed in the gastric pull-up as a safety measure. +Meticulous dissection of its vascularization enabled subsequent standard lobectomy of the RUL with complete lymph node dissection (R4, 7, 10 and 11). +After removal of the specimen and chest tube placement, a Ropivacaine® intercostal nerve block levels T4 to T9 was installed. +Total operative time was 3 h 44 min with 50 ml blood loss.","55-year-old female underwent esophagectomy with gastric pull-up reconstruction for squamous cell carcinoma (SCC) of the esophagus (cT3N2M0, stage IIIB) +Six years later, computed tomography (CT) scan showed stage IA Thyroid Transcription Factor-1 (TTF-1) positive adenocarcinoma in the left upper lobe treated by stereotactic radiotherapy +Two years later, a SCC of the right upper lobe (RUL) was found with tumor diameter of 54 mm and high Programmed Death-Ligand 1 (PD-L1) expression +Pembrolizumab initiated with curative intent but showed no biological response +Salvage lobectomy including complete mediastinal lymph node dissection performed +Positioned in left lateral decubitus position, adhesions in closure-line of the previous thoracotomy and thus RATS was deemed feasible. +After standard port placement (Fig.2A), docking and instrument placement (Tip-up fenestrated grasper™, Cadière forceps™, Maryland bipolar dissector™ and the Monopolar spatula™) adhesiolysis between the lung and the chest wall and taking down dense adhesions between the lung and the intrathoracic gastric pull-up the nasogastric tube was exposed (Fig.2B). +The nasogastric tube was placed in the gastric pull-up as a safety measure. +Meticulous dissection of its vascularization enabled subsequent standard lobectomy of the RUL with complete lymph node dissection (R4, 7, 10 and 11). +After removal of the specimen and chest tube placement, a Ropivacaine® intercostal nerve block levels T4 to T9 was installed. +Total operative time was 3 h 44 min with 50 ml blood loss.","[""Squamous cell carcinoma"", ""Adenocarcinoma""]","[""Esophageal squamous cell carcinoma"", ""Thyroid Transcription Factor-1 positive adenocarcinoma"", ""Squamous cell carcinoma of the right upper lobe""]",False,[] +013,3,2,Brain_Metastasis_From_Advanced_Stage_Lung_Carcinoma__Differentiating_From_Stroke_PMC11955559.html,"Patient's medical history: +- Diagnosed with stage III NSCLC in the right upper lobe bronchus that had spread throughout the middle and lower lobes (15 months ago) +- PET/CT scans revealed a right supraclavicular node, right upper paratracheal node, multiple additional paratracheal nodes, and enlarged para-aortic nodes +- Upper esophageal stricture treated with dilatation during an esophagogastroduodenoscopy (1 year ago) +- Initiated docetaxel for refractory complications with stage III NSCLC (2 days ago) + +Recent medical events: +- Diagnosed with hypokalemia, given potassium supplement and ondansetron for nausea +- Marked unilateral weakness in left upper extremity, grip strength of 2/5 versus 5/5 strength in the right upper extremity +- Leukopenia, WBC of 1.12 K/μL +- Potassium level still low but increased since previous ED visit +- COVID-19 and flu tests all negative +- Urine testing revealed trace blood and bacteria and was positive for cannabis +- Non-contrast CT results revealed multifocal intracranial lesions with associated vasogenic edema with mild mass effect, consistent with metastatic disease +- CT angiography (CTA) performed, revealing no flow-limiting stenosis or occlusion of major intracranial or cervical arteries +- Multiple bilateral pulmonary nodules and a partially imaged right upper lobe mass were seen, along with asymmetrically enlarged right level IIb nodes, suspicious for metastasis in this clinical setting + +Current medications: +- Docetaxel for refractory complications with stage III NSCLC +- Potassium supplement for hypokalemia +- Ondansetron for nausea","15 months ago: Diagnosed with stage III NSCLC in the right upper lobe bronchus that had spread throughout the middle and lower lobes. PET/CT scans revealed a right supraclavicular node, right upper paratracheal node, multiple additional paratracheal nodes, and enlarged para-aortic nodes. +1 year ago: Upper esophageal stricture treated with dilatation during an esophagogastroduodenoscopy. +2 days ago: Initiated docetaxel for refractory complications with stage III NSCLC. +Current visit: Diagnosed with hypokalemia, given potassium supplement and ondansetron for nausea. Marked unilateral weakness in left upper extremity, grip strength of 2/5 versus 5/5 strength in the right upper extremity. +Current visit: Leukopenia, WBC of 1.12 K/μL. Potassium level still low but increased since previous ED visit. +Current visit: COVID-19 and flu tests all negative. +Current visit: Urine testing revealed trace blood and bacteria and was positive for cannabis. +Current visit: Non-contrast CT results revealed multifocal intracranial lesions with associated vasogenic edema with mild mass effect, consistent with metastatic disease. +Current visit: CT angiography (CTA) performed, revealing no flow-limiting stenosis or occlusion of major intracranial or cervical arteries. +Current visit: Multiple bilateral pulmonary nodules and a partially imaged right upper lobe mass were seen, along with asymmetrically enlarged right level IIb nodes, suspicious for metastasis in this clinical setting.","15 months ago: Diagnosed with stage III NSCLC in the right upper lobe bronchus that had spread throughout the middle and lower lobes. PET/CT scans revealed a right supraclavicular node, right upper paratracheal node, multiple additional paratracheal nodes, and enlarged para-aortic nodes. +1 year ago: Upper esophageal stricture treated with dilatation during an esophagogastroduodenoscopy. +2 days ago: Initiated docetaxel for refractory complications with stage III NSCLC. +Current visit: Diagnosed with hypokalemia, given potassium supplement and ondansetron for nausea. Marked unilateral weakness in left upper extremity, grip strength of 2/5 versus 5/5 strength in the right upper extremity. +Current visit: Leukopenia, WBC of 1.12 K/μL. Potassium level still low but increased since previous ED visit. +Current visit: COVID-19 and flu tests all negative. +Current visit: Urine testing revealed trace blood and bacteria and was positive for cannabis. +Current visit: Non-contrast CT results revealed multifocal intracranial lesions with associated vasogenic edema with mild mass effect, consistent with metastatic disease. +Current visit: CT angiography (CTA) performed, revealing no flow-limiting stenosis or occlusion of major intracranial or cervical arteries. +Current visit: Multiple bilateral pulmonary nodules and a partially imaged right upper lobe mass were seen, along with asymmetrically enlarged right level IIb nodes, suspicious for metastasis in this clinical setting.","[""NSCLC""]","[""stage III NSCLC""]",True,"[[""brain"", ""multifocal intracranial lesions""], [""lung"", ""bilateral pulmonary nodules""], [""lymph nodes"", ""asymmetrically enlarged right level IIb nodes""]]" +004,1,1,Metastatic_INI_1_deficient_undifferentiated_lung_cancer_with_EGFR_19del_mutation_PMC12021797.html,"81-year-old female patient with a 10-day history of progressive chest tightness and dyspnea worsened with physical activity +Chest computed tomography (CT) imaging revealed a large left-sided pleural effusion +Thoracentesis was performed, and the drained pleural fluid was sent to the Department of Pathology for further evaluation +Following thoracic drainage, a subsequent chest CT scan revealed a heterogeneous mass in the left inferior lobe, measuring approximately 6.7 cm × 2.8 cm in its largest cross-section +Contrast-enhanced imaging demonstrated irregular enhancement patterns suggestive of a left lung tumor +Pulmonary window analysis identified multiple nodular high-density foci scattered across both lungs, raising suspicion for bilateral pulmonary metastases +Mediastinal window assessment further revealed bilateral mediastinal lymphadenopathy and enlarged lymph nodes at the left pulmonary hilum, consistent with lymph node metastasis +An abdominal CT scan detected multiple low-density hepatic nodules of varying sizes, with the largest lesion (2.9 cm × 2.6 cm) located in the right hepatic lobe +Annular enhancement was noted in the arterial phase, while marked hypodensity was observed in the portal venous phase, demonstrating a “bull’s eye sign” characteristic of multiple hepatic metastases +Additionally, an enhanced brain CT identified an irregular heterogeneously enhancing mass within the right frontal lobe, with a maximum cross-sectional area of 2.1 cm × 1.6 cm, consistent with brain metastasis +Genetic testing revealed a mutation in the EGFR gene +Next-generation sequencing (NGS) analysis showed that the patient's tumor had a high level of PD-L1 expression +The patient underwent treatment with osimertinib, an EGFR tyrosine kinase inhibitor","81-year-old female patient with a 10-day history of progressive chest tightness and dyspnea worsened with physical activity +Chest computed tomography (CT) imaging revealed a large left-sided pleural effusion +Thoracentesis was performed, and the drained pleural fluid was sent to the Department of Pathology for further evaluation +Following thoracic drainage, a subsequent chest CT scan revealed a heterogeneous mass in the left inferior lobe, measuring approximately 6.7 cm × 2.8 cm in its largest cross-section +Contrast-enhanced imaging demonstrated irregular enhancement patterns suggestive of a left lung tumor +Pulmonary window analysis identified multiple nodular high-density foci scattered across both lungs, raising suspicion for bilateral pulmonary metastases +Mediastinal window assessment further revealed bilateral mediastinal lymphadenopathy and enlarged lymph nodes at the left pulmonary hilum, consistent with lymph node metastasis +An abdominal CT scan detected multiple low-density hepatic nodules of varying sizes, with the largest lesion (2.9 cm × 2.6 cm) located in the right hepatic lobe +Annular enhancement was noted in the arterial phase, while marked hypodensity was observed in the portal venous phase, demonstrating a “bull’s eye sign” characteristic of multiple hepatic metastases +Additionally, an enhanced brain CT identified an irregular heterogeneously enhancing mass within the right frontal lobe, with a maximum cross-sectional area of 2.1 cm × 1.6 cm, consistent with brain metastasis +Genetic testing revealed a mutation in the EGFR gene +Next-generation sequencing (NGS) analysis showed that the patient's tumor had a high level of PD-L1 expression +The patient underwent treatment with osimertinib, an EGFR tyrosine kinase inhibitor","81-year-old female patient with a 10-day history of progressive chest tightness and dyspnea worsened with physical activity +Chest computed tomography (CT) imaging revealed a large left-sided pleural effusion +Thoracentesis was performed, and the drained pleural fluid was sent to the Department of Pathology for further evaluation +Following thoracic drainage, a subsequent chest CT scan revealed a heterogeneous mass in the left inferior lobe, measuring approximately 6.7 cm × 2.8 cm in its largest cross-section +Contrast-enhanced imaging demonstrated irregular enhancement patterns suggestive of a left lung tumor +Pulmonary window analysis identified multiple nodular high-density foci scattered across both lungs, raising suspicion for bilateral pulmonary metastases +Mediastinal window assessment further revealed bilateral mediastinal lymphadenopathy and enlarged lymph nodes at the left pulmonary hilum, consistent with lymph node metastasis +An abdominal CT scan detected multiple low-density hepatic nodules of varying sizes, with the largest lesion (2.9 cm × 2.6 cm) located in the right hepatic lobe +Annular enhancement was noted in the arterial phase, while marked hypodensity was observed in the portal venous phase, demonstrating a “bull’s eye sign” characteristic of multiple hepatic metastases +Additionally, an enhanced brain CT identified an irregular heterogeneously enhancing mass within the right frontal lobe, with a maximum cross-sectional area of 2.1 cm × 1.6 cm, consistent with brain metastasis +Genetic testing revealed a mutation in the EGFR gene +Next-generation sequencing (NGS) analysis showed that the patient's tumor had a high level of PD-L1 expression +The patient underwent treatment with osimertinib, an EGFR tyrosine kinase inhibitor","[""lung cancer""]","[""non-small cell lung cancer""]",True,"[[""liver"", ""multiple low-density hepatic nodules""], [""lymph nodes"", ""bilateral mediastinal lymphadenopathy""], [""brain"", ""irregular heterogeneously enhancing mass""]]" +014,1,1,Successful_treatment_of_an_elderly_patient_with_lung_squamous_cell_carcinoma_by__PMC11973309.html,"A 73-year-old man presenting with paroxysmal cough and sputum accompanied by chest pain, weight loss, and exertional asthma was admitted to a local hospital on February 13, 2023. A chest computed tomography (CT) scan revealed a mass in the right upper lobe of the lung, raising the suspicion of a malignant tumor (MT). Subsequent positron electron tomography (PET)-CT indicated an irregular lobulated soft tissue mass in the apical segment of the right lung upper lobe, measuring approximately 4.1×3.5 cm and showing increased fluorodeoxyglucose (FDG) uptake (SUV value) and spiculated margins, suggestive of lung cancer (likely squamous cell carcinoma). There were tiny nodular shadows about 0.3 cm in diameter surrounding the mass, and the possibility of metastasis was not ruled out. Several enlarged lymph nodes were visible in regions 10R, 4R, and 2R, the largest measuring approximately 1.7 cm in diameter. that showed varying degrees of increased FDG uptake, suggesting possible metastasis in some lymph nodes. On March 3, 2023, a CT-guided biopsy of the right upper lobe lung mass was performed at our hospital. According to the pathology report (Figure 1), combined with the patient’s medical history and immunohistochemical markers, squamous cell carcinoma was considered (Note: CK7-, CK20-, CK5/6-, NapsinA-, CD56-, P40+, Syn-, CgA-, CD56-, TTF-1-, Ki-67 75%). As shown in the microscopic cellular morphology and tissue architecture ofFigure 1, the entire field demonstrates complete loss of normal pulmonary tissue structure.","Diagnosed with stage cT2bN2M0 right lung squamous cell carcinoma on March 14, 2023. Immunotherapy combined with chemotherapy was started: paclitaxel liposome 240 mg on d1, carboplatin 500 mg on d1, and tislelizumab 200 mg on d2, every 3 weeks (q3w). Grade III thrombocytopenia occurred post-treatment, with a nadir of 30 × 10^9/L. Immunotherapy regimen was adjusted for the first cycle: tislelizumab 200 mg on d0 + paclitaxel liposome 120 mg on d1, 90 mg on d8 + carboplatin 150 mg on d2, 100 mg on d3-5, every 3 weeks (q3w). However, on May 16, 2023, bacteremia and herpes zoster infection were observed, so antitumor treatment was halted.","Vancomycin was given for anti-infection and anti-viral treatment. After active treatment, the first reexamination on May 29, 2023, with a repeat enhanced chest CT showed an irregular thin-walled cystic lesion in the right upper lobe with fine line compartments, measuring approximately 32×25×27 mm, with enlarged and moderately enhanced lymph nodes in the 10R, 4R, and 2R regions. Compared to the March 3, 2023 CT, the solid component of the right upper lobe mass had essentially disappeared, and the mediastinal lymph nodes were similar in size. Response assessment indicated partial remission, and the second cycle of immunotherapy combined with chemotherapy was administered on June 27, 2023.","[""malignant tumor"", ""lung cancer""]","[""squamous cell carcinoma""]",True,"[[""squamous cell carcinoma"", ""lymph nodes""]]" +001,4,1,Intriguing_Encounter__Unveiling_Squamous_Cell_Carcinoma_Lung_with_Rare_Bilateral_PMC12020972.html,"44-year-old male diagnosed as squamous cell carcinoma of the lung +Pituitary metastasis identified on 18F-FDG PET/CT +Renal metastasis identified on 18F-FDG PET/CT +Right-sided chest pain for 2 months +Dry cough for 2 months +Fever (on-off) for 2 months +Hematuria for 2 months +No history of Antitubercular treatment (ATT) intake +Tobacco chewer for >20 years +Decreased air entry on the right side of the lung +Contrast-enhanced computed tomography (CECT) thorax revealed a heterogeneous lesion in the mediastinal region abutting the horizontal fissure and cavitation within +Lesion associated with multiple centrilobular nodules arranged in a linear branching pattern +Bronchoscopy done with bronchoscopic-guided biopsy +Bronchoalveolar lavage (BAL) fluid samples taken +BAL sample sent for cytopathological examination was negative for malignant cells +18F-FDG PET/CT scan revealed FDG-avid well-defined soft tissue primary mass measuring 5.6 cm x 7.7 cm x 8.3 cm in size with spiculated margins in the upper lobe of the right lung with collapse and consolidation of right lung +FDG avid metastases to mediastinal, abdominopelvic lymph nodes and right-sided pleural deposits +Multiple sub-centimetric to centimetric-sized bilateral lung nodules were noted +It was associated with multiple FDG avid brain lesions involving the bilateral cerebral cortex, cerebellum and pituitary +FDG avid bilateral hypodense few (3 in number) soft tissue density bilateral renal masses (Figure 1b, largest measuring 2.8 cm x 2.6 cm) +Multiple lytic skeletal lesions [Figure 1d], few of them with soft tissue component involvement were noted","44-year-old male diagnosed as squamous cell carcinoma of the lung +Pituitary metastasis identified on 18F-FDG PET/CT +Renal metastasis identified on 18F-FDG PET/CT +Right-sided chest pain for 2 months +Dry cough for 2 months +Fever (on-off) for 2 months +Hematuria for 2 months +No history of Antitubercular treatment (ATT) intake +Tobacco chewer for >20 years +Decreased air entry on the right side of the lung +Contrast-enhanced computed tomography (CECT) thorax revealed a heterogeneous lesion in the mediastinal region abutting the horizontal fissure and cavitation within +Lesion associated with multiple centrilobular nodules arranged in a linear branching pattern +Bronchoscopy done with bronchoscopic-guided biopsy +Bronchoalveolar lavage (BAL) fluid samples taken +BAL sample sent for cytopathological examination was negative for malignant cells +18F-FDG PET/CT scan revealed FDG-avid well-defined soft tissue primary mass measuring 5.6 cm x 7.7 cm x 8.3 cm in size with spiculated margins in the upper lobe of the right lung with collapse and consolidation of right lung +FDG avid metastases to mediastinal, abdominopelvic lymph nodes and right-sided pleural deposits +Multiple sub-centimetric to centimetric-sized bilateral lung nodules were noted +It was associated with multiple FDG avid brain lesions involving the bilateral cerebral cortex, cerebellum and pituitary +FDG avid bilateral hypodense few (3 in number) soft tissue density bilateral renal masses (Figure 1b, largest measuring 2.8 cm x 2.6 cm) +Multiple lytic skeletal lesions [Figure 1d], few of them with soft tissue component involvement were noted","44-year-old male diagnosed as squamous cell carcinoma of the lung +Pituitary metastasis identified on 18F-FDG PET/CT +Renal metastasis identified on 18F-FDG PET/CT +Right-sided chest pain for 2 months +Dry cough for 2 months +Fever (on-off) for 2 months +Hematuria for 2 months +No history of Antitubercular treatment (ATT) intake +Tobacco chewer for >20 years +Decreased air entry on the right side of the lung +Contrast-enhanced computed tomography (CECT) thorax revealed a heterogeneous lesion in the mediastinal region abutting the horizontal fissure and cavitation within +Lesion associated with multiple centrilobular nodules arranged in a linear branching pattern +Bronchoscopy done with bronchoscopic-guided biopsy +Bronchoalveolar lavage (BAL) fluid samples taken +BAL sample sent for cytopathological examination was negative for malignant cells +18F-FDG PET/CT scan revealed FDG-avid well-defined soft tissue primary mass measuring 5.6 cm x 7.7 cm x 8.3 cm in size with spiculated margins in the upper lobe of the right lung with collapse and consolidation of right lung +FDG avid metastases to mediastinal, abdominopelvic lymph nodes and right-sided pleural deposits +Multiple sub-centimetric to centimetric-sized bilateral lung nodules were noted +It was associated with multiple FDG avid brain lesions involving the bilateral cerebral cortex, cerebellum and pituitary +FDG avid bilateral hypodense few (3 in number) soft tissue density bilateral renal masses (Figure 1b, largest measuring 2.8 cm x 2.6 cm) +Multiple lytic skeletal lesions [Figure 1d], few of them with soft tissue component involvement were noted","[""lung cancer""]","[""squamous cell carcinoma""]",True,"[[""brain"", ""bilateral cerebral cortex""], [""brain"", ""cerebellum""], [""brain"", ""pituitary""], [""kidneys"", ""bilateral renal masses""], [""skeleton"", ""lytic skeletal lesions""], [""lymph nodes"", ""mediastinal lymph nodes""], [""lymph nodes"", ""abdominopelvic lymph nodes""], [""pleura"", ""right-sided pleural deposits""]]" +009,1,0,Radiotherapy_for_Lung_Cancer__An_Unrecognized_Cause_of_Lung_Torsion__PMC11962223.html,"A 73-year-old lady presented with a long history of bilateral chest wall discomfort, exertional breathlessness, and chronic fatigue. She was found to have a left lung opacification on chest radiograph, which prompted a computed tomography scan and positron emission tomography-computed tomography (PET-CT) scan, which confirmed an avid 53 mm left upper lobe mass with associated hilar and mediastinal lymphadenopathy staging the disease as T3N2M0. An endobronchial ultrasound scan and biopsy (EBUS) sampling of station 11L confirmed lung adenocarcinoma metastasis. It appeared positive on the PD-L1 staining. Other immunohistochemistry (ALK/ROS/NTRK) was negative. Her lung function at this point was 51% forced expiratory volume (FEV1) (1.21) and 73% diffusing capacity of the lungs for carbon monoxide (DLCO). She consented to radical treatment with four weeks of radiotherapy dosed at 55 Gy/20 with concurrent chemotherapy. Her initial scan post radiotherapy showed a limited response to treatment, but her subsequent CT scan in a year showed that there was no tumor visible on axial images but there was apparent collapse of the left lung base. Post radiotherapy imaging showed complete response to treatment. It also showed two small bullae seen in the post aspect of the lower lobe. Five months later, she had a follow-up scan (Figures 4,5). Coronal views showed upward curving of the lower segmental bronchi and pulmonary vessels. The two small bullae initially seen in the post aspect of the lower lobe seemed to have relocated to the upper zone anteriorly. Lung torsion with 180-degree rotation was diagnosed. The patient was clinically well; hence, it did not warrant surgical referral.","A 73-year-old lady presented with a long history of bilateral chest wall discomfort, exertional breathlessness, and chronic fatigue. She was found to have a left lung opacification on chest radiograph, which prompted a computed tomography scan and positron emission tomography-computed tomography (PET-CT) scan, which confirmed an avid 53 mm left upper lobe mass with associated hilar and mediastinal lymphadenopathy staging the disease as T3N2M0. An endobronchial ultrasound scan and biopsy (EBUS) sampling of station 11L confirmed lung adenocarcinoma metastasis. It appeared positive on the PD-L1 staining. Other immunohistochemistry (ALK/ROS/NTRK) was negative. Her lung function at this point was 51% forced expiratory volume (FEV1) (1.21) and 73% diffusing capacity of the lungs for carbon monoxide (DLCO). She consented to radical treatment with four weeks of radiotherapy dosed at 55 Gy/20 with concurrent chemotherapy. Her initial scan post radiotherapy showed a limited response to treatment, but her subsequent CT scan in a year showed that there was no tumor visible on axial images but there was apparent collapse of the left lung base. Post radiotherapy imaging showed complete response to treatment. It also showed two small bullae seen in the post aspect of the lower lobe. Five months later, she had a follow-up scan (Figures 4,5). Coronal views showed upward curving of the lower segmental bronchi and pulmonary vessels. The two small bullae initially seen in the post aspect of the lower lobe seemed to have relocated to the upper zone anteriorly. Lung torsion with 180-degree rotation was diagnosed. The patient was clinically well; hence, it did not warrant surgical referral.","A 73-year-old lady presented with a long history of bilateral chest wall discomfort, exertional breathlessness, and chronic fatigue. She was found to have a left lung opacification on chest radiograph, which prompted a computed tomography scan and positron emission tomography-computed tomography (PET-CT) scan, which confirmed an avid 53 mm left upper lobe mass with associated hilar and mediastinal lymphadenopathy staging the disease as T3N2M0. An endobronchial ultrasound scan and biopsy (EBUS) sampling of station 11L confirmed lung adenocarcinoma metastasis. It appeared positive on the PD-L1 staining. Other immunohistochemistry (ALK/ROS/NTRK) was negative. Her lung function at this point was 51% forced expiratory volume (FEV1) (1.21) and 73% diffusing capacity of the lungs for carbon monoxide (DLCO). She consented to radical treatment with four weeks of radiotherapy dosed at 55 Gy/20 with concurrent chemotherapy. Her initial scan post radiotherapy showed a limited response to treatment, but her subsequent CT scan in a year showed that there was no tumor visible on axial images but there was apparent collapse of the left lung base. Post radiotherapy imaging showed complete response to treatment. It also showed two small bullae seen in the post aspect of the lower lobe. Five months later, she had a follow-up scan (Figures 4,5). Coronal views showed upward curving of the lower segmental bronchi and pulmonary vessels. The two small bullae initially seen in the post aspect of the lower lobe seemed to have relocated to the upper zone anteriorly. Lung torsion with 180-degree rotation was diagnosed. The patient was clinically well; hence, it did not warrant surgical referral.","[""lung adenocarcinoma""]","[""lung adenocarcinoma""]",True,"[[""hilar"", ""lymphadenopathy""], [""mediastinal"", ""lymphadenopathy""]]" +011,3,1,Efficacy_of_Selpercatinib_in_Non_small_Cell_Lung_Cancer_With_Bilateral_Internal__PMC12021377.html,"Three new intracranial lesions were identified, accompanied by clinical manifestations of paresthesia and reduced muscular strength in the lower limbs.Near-complete resolution of multiple supratentorial and infratentorial nodular lesions, with the absence of gadolinium enhancement, except for a faint residual signal at the cisternal segment of the right eighth cranial nerveSignificant symptomatic improvement within one week of treatment, including complete hearing recovery and a substantial reduction of dizziness and headache complaints.Fourth-line treatment with selpercatinib (160 mg twice daily) was initiatedDisease progression was identified with the emergence of a new growing nodule measuring 11 mm in its longest diameter.First-line systemic therapy with a platinum-based doublet, completing six cycles with a partial tumor response according to Response Evaluation Criteria in Solid Tumors (RECIST) criteria","Three new intracranial lesions were identified, accompanied by clinical manifestations of paresthesia and reduced muscular strength in the lower limbs.Near-complete resolution of multiple supratentorial and infratentorial nodular lesions, with the absence of gadolinium enhancement, except for a faint residual signal at the cisternal segment of the right eighth cranial nerveSignificant symptomatic improvement within one week of treatment, including complete hearing recovery and a substantial reduction of dizziness and headache complaints.Fourth-line treatment with selpercatinib (160 mg twice daily) was initiatedDisease progression was identified with the emergence of a new growing nodule measuring 11 mm in its longest diameter.First-line systemic therapy with a platinum-based doublet, completing six cycles with a partial tumor response according to Response Evaluation Criteria in Solid Tumors (RECIST) criteria"," + + Three new intracranial lesions were identified, accompanied by clinical manifestations of paresthesia and reduced muscular strength in the lower limbs. + + + Near-complete resolution of multiple supratentorial and infratentorial nodular lesions, with the absence of gadolinium enhancement, except for a faint residual signal at the cisternal segment of the right eighth cranial nerve + + + Significant symptomatic improvement within one week of treatment, including complete hearing recovery and a substantial reduction of dizziness and headache complaints. + + + Fourth-line treatment with selpercatinib (160 mg twice daily) was initiated + + + Disease progression was identified with the emergence of a new growing nodule measuring 11 mm in its longest diameter. + + + First-line systemic therapy with a platinum-based doublet, completing six cycles with a partial tumor response according to Response Evaluation Criteria in Solid Tumors (RECIST) criteria + +","[""adenocarcinoma""]","[""lung cancer""]",True,"[[""brain"", ""intracranial""], [""bone"", ""osseous""], [""liver"", ""hepatic""], [""lymph nodes"", ""lymphatic""], [""lung"", ""pulmonary""]]" +012,4,2,Multiple_Lung_Metastases_of_Papillary_Thyroid_Carcinoma_Detected_by_Detailed_Pat_PMC11971052.html,"79-year-old male patient with: +- Height: 174 cm +- Weight: 65 kg +- BMI: 21.5 kg/m² +- Smoking history: two packs per day for 55 years (Brinkman Index of 1100) +- Medical history: + - Total thyroidectomy performed five years earlier for papillary thyroid carcinoma (PTC) with comorbidities of chronic obstructive pulmonary disease and hypertension + - Left cervical lymphadenopathy of unknown origin six years ago + - Subsequent investigations revealed suspected cervical lymph node metastasis of PTC. + - Five years ago, the patient underwent total thyroidectomy and left cervical lymph node dissection. Histopathological findings revealed multiple papillary thyroid microcarcinomas (pT1a [m], pEx0, pN1b 4/10, pStage IVA) with negative surgical margins. + - The patient was treated with radioiodine therapy (Iodine-131). + - Two years ago, a nodule in the right upper lobe of the lung was identified, which was followed up with chest CT scans. Compared to two years prior, an increase in nodule density was observed, prompting a transbronchial biopsy; however, no definitive diagnosis was made. + - Tumor markers (CYFRA, CEA, SLX, ProGRP, NSE) were within normal limits. + - Serum thyroglobulin levels showed a gradual increase over time, with a preoperative value of 47.7 ng/mL. + - Chest X-rays showed no abnormalities, while chest CT scans revealed an irregular nodule measuring 15×14 mm in the S1 segment of the right upper lobe (Figure1). + - No hilar lymphadenopathy was detected. + - FDG-PET was not performed. + - Pulmonary function and electrocardiogram tests showed no abnormalities. + +An irregular nodule 15 x 14 mm in size was seen in the S1 upper lobe of the right lung (arrow). The surgery was performed under general anesthesia in the left lateral decubitus position with video-assisted thoracoscopy. The tumor was partially resected using an automatic stapler and submitted for rapid diagnosis. The diagnosis of adenocarcinoma was confirmed, and a right upper lobectomy with mediastinal lymph node dissection (ND-1b) was performed. The operation lasted 2 hours and 30 minutes. + +Histopathological examination revealed adenocarcinoma. +Adenocarcinoma cells were found in the resected tissue. +Immunohistochemistry showed positive staining for TTF-1, indicating lung origin of the tumor. +The patient's postoperative course was uneventful, with no complications noted. +5 years ago: Total thyroidectomy performed for papillary thyroid carcinoma (PTC) with comorbidities of chronic obstructive pulmonary disease and hypertension. +2 years ago: A nodule in the right upper lobe of the lung was identified, which was followed up with chest CT scans. Compared to two years prior, an increase in nodule density was observed, prompting a transbronchial biopsy; however, no definitive diagnosis was made. +6 months post-surgery: No evidence of recurrence.","Total thyroidectomy performed for papillary thyroid carcinoma (PTC) with comorbidities of chronic obstructive pulmonary disease and hypertension.A nodule in the right upper lobe of the lung was identified, which was followed up with chest CT scans. Compared to two years prior, an increase in nodule density was observed, prompting a transbronchial biopsy; however, no definitive diagnosis was made.No evidence of recurrence.","79-year-old male patient with: +- Height: 174 cm +- Weight: 65 kg +- BMI: 21.5 kg/m² +- Smoking history: two packs per day for 55 years (Brinkman Index of 1100) +- Medical history: + - Total thyroidectomy performed five years earlier for papillary thyroid carcinoma (PTC) with comorbidities of chronic obstructive pulmonary disease and hypertension + - Left cervical lymphadenopathy of unknown origin six years ago + - Subsequent investigations revealed suspected cervical lymph node metastasis of PTC + - Five years ago, the patient underwent total thyroidectomy and left cervical lymph node dissection. Histopathological findings revealed multiple papillary thyroid microcarcinomas (pT1a [m], pEx0, pN1b 4/10, pStage IVA) with negative surgical margins. + - The patient was treated with radioiodine therapy (Iodine-131) + - Two years ago, a nodule in the right upper lobe of the lung was identified, which was followed up with chest CT scans. Compared to two years prior, an increase in nodule density was observed, prompting a transbronchial biopsy; however, no definitive diagnosis was made. + - Tumor markers (CYFRA, CEA, SLX, ProGRP, NSE) were within normal limits + - Serum thyroglobulin levels showed a gradual increase over time, with a preoperative value of 47.7 ng/mL + - Chest X-rays showed no abnormalities, while chest CT scans revealed an irregular nodule measuring 15×14 mm in the S1 segment of the right upper lobe (Figure1) + - No hilar lymphadenopathy was detected + - FDG-PET was not performed + - Pulmonary function and electrocardiogram tests showed no abnormalities + +An irregular nodule 15 x 14 mm in size was seen in the S1 upper lobe of the right lung (arrow). The surgery was performed under general anesthesia in the left lateral decubitus position with video-assisted thoracoscopy. The tumor was partially resected using an automatic stapler and submitted for rapid diagnosis. The diagnosis of adenocarcinoma was confirmed, and a right upper lobectomy with mediastinal lymph node dissection (ND-1b) was performed. The operation lasted 2 hours and 30 minutes. + +Histopathological examination revealed adenocarcinoma. +Adenocarcinoma cells were found in the resected tissue. +Immunohistochemistry showed positive staining for TTF-1, indicating lung origin of the tumor. +The patient's postoperative course was uneventful, with no complications noted. +5 years ago: Total thyroidectomy performed for papillary thyroid carcinoma (PTC) with comorbidities of chronic obstructive pulmonary disease and hypertension. +2 years ago: A nodule in the right upper lobe of the lung was identified, which was followed up with chest CT scans. Compared to two years prior, an increase in nodule density was observed, prompting a transbronchial biopsy; however, no definitive diagnosis was made. +6 months post-surgery: No evidence of recurrence.","[""papillary thyroid carcinoma"", ""adenocarcinoma""]","[""pT1a [m] papillary thyroid microcarcinomas"", ""lung adenocarcinoma""]",True,"[[""cervical lymph nodes"", ""papillary thyroid carcinoma""]]" +016,0,0,Precise_Localization_of_the_Subsolid_Lesion_by_Colour_Marking_under_CT_Guided_Co_PMC12040305.html,"51-year-old female patient with a subsolid pulmonary lesion. The lesion was followed up for 4 years and subsequently resected videothoracoscopically after preoperative labeling with a mixture of blue dye and contrast agent. +Born in 1970, underwent resection of malignant melanoma in April 2013. +Suspicious lymph node (LU) in the left axilla detected on ultrasound, biopsy confirmed metastasis of malignant melanoma. PET/CT showed solitary finding in the left axilla. Dissection of the left axilla performed, only one of 19 LNs affected by metastasis. Molecular genetic testing revealed BRAF mutation at codon 600, targeted therapy with BRAF inhibitors deployed. +Routine CT scan of lungs in November 2017 detected new asymptomatic lesion in segment S10 of right lower lobe, measuring 7 mm in size. Follow-up CT scan in June 2020 showed lesion changed character to subsolid lesion with solid component. PET/CT scan in July 2020 confirmed persistence of the lesion without increased metabolic activity. +A further follow-up in April 2021 confirmed persistence and additionally showed a slight size progression of the solid component of the lesion. +The resection lines from the tumor margin to the resection margins were adequate, with the smallest measured dimension of 13 mm. No metastatic process was found in the examined mediastinal lymphatic nodes. The postoperative course was uneventful, and the patient was discharged to home care on the fourth day after surgery. +She continues to be followed up regularly and remains free of signs of disease recurrence.","51-year-old female patient with a subsolid pulmonary lesion. The lesion was followed up for 4 years and subsequently resected videothoracoscopically after preoperative labeling with a mixture of blue dye and contrast agent. +Born in 1970, underwent resection of malignant melanoma in April 2013. +Suspicious lymph node (LU) in the left axilla detected on ultrasound, biopsy confirmed metastasis of malignant melanoma. PET/CT showed solitary finding in the left axilla. Dissection of the left axilla performed, only one of 19 LNs affected by metastasis. Molecular genetic testing revealed BRAF mutation at codon 600, targeted therapy with BRAF inhibitors deployed. +Routine CT scan of lungs in November 2017 detected new asymptomatic lesion in segment S10 of right lower lobe, measuring 7 mm in size. Follow-up CT scan in June 2020 showed lesion changed character to subsolid lesion with solid component. PET/CT scan in July 2020 confirmed persistence of the lesion without increased metabolic activity. +A further follow-up in April 2021 confirmed persistence and additionally showed a slight size progression of the solid component of the lesion. +The resection lines from the tumor margin to the resection margins were adequate, with the smallest measured dimension of 13 mm. No metastatic process was found in the examined mediastinal lymphatic nodes. The postoperative course was uneventful, and the patient was discharged to home care on the fourth day after surgery. +She continues to be followed up regularly and remains free of signs of disease recurrence.","51-year-old female patient with a subsolid pulmonary lesion. The lesion was followed up for 4 years and subsequently resected videothoracoscopically after preoperative labeling with a mixture of blue dye and contrast agent. +Born in 1970, underwent resection of malignant melanoma in April 2013. +Suspicious lymph node (LU) in the left axilla detected on ultrasound, biopsy confirmed metastasis of malignant melanoma. PET/CT showed solitary finding in the left axilla. Dissection of the left axilla performed, only one of 19 LNs affected by metastasis. Molecular genetic testing revealed BRAF mutation at codon 600, targeted therapy with BRAF inhibitors deployed. +Routine CT scan of lungs in November 2017 detected new asymptomatic lesion in segment S10 of right lower lobe, measuring 7 mm in size. Follow-up CT scan in June 2020 showed lesion changed character to subsolid lesion with solid component. PET/CT scan in July 2020 confirmed persistence of the lesion without increased metabolic activity. +A further follow-up in April 2021 confirmed persistence and additionally showed a slight size progression of the solid component of the lesion. +The resection lines from the tumor margin to the resection margins were adequate, with the smallest measured dimension of 13 mm. No metastatic process was found in the examined mediastinal lymphatic nodes. The postoperative course was uneventful, and the patient was discharged to home care on the fourth day after surgery. +She continues to be followed up regularly and remains free of signs of disease recurrence.","[""malignant melanoma""]","[""melanoma"", ""lung cancer""]",True,"[[""left axilla"", ""lymph node""], [""right lower lobe"", ""lung""]]" diff --git a/src/benchmark/output/results/cluster_metadata_summary.csv b/src/benchmark/output/results/cluster_metadata_summary.csv new file mode 100644 index 0000000..11440bd --- /dev/null +++ b/src/benchmark/output/results/cluster_metadata_summary.csv @@ -0,0 +1,4 @@ +cluster,has_metastasis,top_cancers,top_specific_cancers +0,"{""true"": 0.6666666666666666, ""false"": 0.3333333333333333}","[""lymphoepithelial carcinoma""] (1), [""Lung Cancer""] (1), [""SCLC""] (1)","[""EBV-positive poorly differentiated carcinoma"", ""nasopharyngeal carcinoma""] (1), [""Lung Adenocarcinoma""] (1), [""Small Cell Lung Cancer""] (1)" +1,"{""true"": 1.0}","[""lung cancer""] (2), [""Lung cancer""] (1), [""malignant tumor"", ""lung cancer""] (1)","[""squamous cell carcinoma""] (2), [""stage IV lung cancer""] (1), [""non-small cell lung cancer""] (1)" +2,"{""true"": 0.75, ""false"": 0.25}","[""Lung Cancer""] (1), [""non-small cell lung cancer""] (1), [""NSCLC""] (1)","[""Lung Adenocarcinoma""] (1), [""squamous cell histology""] (1), [""stage III NSCLC""] (1)" diff --git a/src/benchmark/output/results/graph_html_metadata.csv b/src/benchmark/output/results/graph_html_metadata.csv new file mode 100644 index 0000000..7e8bd19 --- /dev/null +++ b/src/benchmark/output/results/graph_html_metadata.csv @@ -0,0 +1,411 @@ +graph_id,source_file,timeline_1,timeline_2,timeline_3,cancers,specific_cancers,has_metastasis,metastasis_locations +graph_001,Intriguing_Encounter__Unveiling_Squamous_Cell_Carcinoma_Lung_with_Rare_Bilateral_PMC12020972.html,"44-year-old male diagnosed as squamous cell carcinoma of the lung +Pituitary metastasis identified on 18F-FDG PET/CT +Renal metastasis identified on 18F-FDG PET/CT +Right-sided chest pain for 2 months +Dry cough for 2 months +Fever (on-off) for 2 months +Hematuria for 2 months +No history of Antitubercular treatment (ATT) intake +Tobacco chewer for >20 years +Decreased air entry on the right side of the lung +Contrast-enhanced computed tomography (CECT) thorax revealed a heterogeneous lesion in the mediastinal region abutting the horizontal fissure and cavitation within +Lesion associated with multiple centrilobular nodules arranged in a linear branching pattern +Bronchoscopy done with bronchoscopic-guided biopsy +Bronchoalveolar lavage (BAL) fluid samples taken +BAL sample sent for cytopathological examination was negative for malignant cells +18F-FDG PET/CT scan revealed FDG-avid well-defined soft tissue primary mass measuring 5.6 cm x 7.7 cm x 8.3 cm in size with spiculated margins in the upper lobe of the right lung with collapse and consolidation of right lung +FDG avid metastases to mediastinal, abdominopelvic lymph nodes and right-sided pleural deposits +Multiple sub-centimetric to centimetric-sized bilateral lung nodules were noted +It was associated with multiple FDG avid brain lesions involving the bilateral cerebral cortex, cerebellum and pituitary +FDG avid bilateral hypodense few (3 in number) soft tissue density bilateral renal masses (Figure 1b, largest measuring 2.8 cm x 2.6 cm) +Multiple lytic skeletal lesions [Figure 1d], few of them with soft tissue component involvement were noted","44-year-old male diagnosed as squamous cell carcinoma of the lung +Pituitary metastasis identified on 18F-FDG PET/CT +Renal metastasis identified on 18F-FDG PET/CT +Right-sided chest pain for 2 months +Dry cough for 2 months +Fever (on-off) for 2 months +Hematuria for 2 months +No history of Antitubercular treatment (ATT) intake +Tobacco chewer for >20 years +Decreased air entry on the right side of the lung +Contrast-enhanced computed tomography (CECT) thorax revealed a heterogeneous lesion in the mediastinal region abutting the horizontal fissure and cavitation within +Lesion associated with multiple centrilobular nodules arranged in a linear branching pattern +Bronchoscopy done with bronchoscopic-guided biopsy +Bronchoalveolar lavage (BAL) fluid samples taken +BAL sample sent for cytopathological examination was negative for malignant cells +18F-FDG PET/CT scan revealed FDG-avid well-defined soft tissue primary mass measuring 5.6 cm x 7.7 cm x 8.3 cm in size with spiculated margins in the upper lobe of the right lung with collapse and consolidation of right lung +FDG avid metastases to mediastinal, abdominopelvic lymph nodes and right-sided pleural deposits +Multiple sub-centimetric to centimetric-sized bilateral lung nodules were noted +It was associated with multiple FDG avid brain lesions involving the bilateral cerebral cortex, cerebellum and pituitary +FDG avid bilateral hypodense few (3 in number) soft tissue density bilateral renal masses (Figure 1b, largest measuring 2.8 cm x 2.6 cm) +Multiple lytic skeletal lesions [Figure 1d], few of them with soft tissue component involvement were noted","44-year-old male diagnosed as squamous cell carcinoma of the lung +Pituitary metastasis identified on 18F-FDG PET/CT +Renal metastasis identified on 18F-FDG PET/CT +Right-sided chest pain for 2 months +Dry cough for 2 months +Fever (on-off) for 2 months +Hematuria for 2 months +No history of Antitubercular treatment (ATT) intake +Tobacco chewer for >20 years +Decreased air entry on the right side of the lung +Contrast-enhanced computed tomography (CECT) thorax revealed a heterogeneous lesion in the mediastinal region abutting the horizontal fissure and cavitation within +Lesion associated with multiple centrilobular nodules arranged in a linear branching pattern +Bronchoscopy done with bronchoscopic-guided biopsy +Bronchoalveolar lavage (BAL) fluid samples taken +BAL sample sent for cytopathological examination was negative for malignant cells +18F-FDG PET/CT scan revealed FDG-avid well-defined soft tissue primary mass measuring 5.6 cm x 7.7 cm x 8.3 cm in size with spiculated margins in the upper lobe of the right lung with collapse and consolidation of right lung +FDG avid metastases to mediastinal, abdominopelvic lymph nodes and right-sided pleural deposits +Multiple sub-centimetric to centimetric-sized bilateral lung nodules were noted +It was associated with multiple FDG avid brain lesions involving the bilateral cerebral cortex, cerebellum and pituitary +FDG avid bilateral hypodense few (3 in number) soft tissue density bilateral renal masses (Figure 1b, largest measuring 2.8 cm x 2.6 cm) +Multiple lytic skeletal lesions [Figure 1d], few of them with soft tissue component involvement were noted","[""lung cancer""]","[""squamous cell carcinoma""]",True,"[[""brain"", ""bilateral cerebral cortex""], [""brain"", ""cerebellum""], [""brain"", ""pituitary""], [""kidneys"", ""bilateral renal masses""], [""skeleton"", ""lytic skeletal lesions""], [""lymph nodes"", ""mediastinal lymph nodes""], [""lymph nodes"", ""abdominopelvic lymph nodes""], [""pleura"", ""right-sided pleural deposits""]]" +graph_002,_A_Case_of_Multiple_Primary_Pulmonary_Neuroendocrine_Carcinoma_with_EML4_ALK_Fus_PMC11986677.html,"* 2019-03-19: 大细胞神经内分泌癌(大肿瘤)在右肺下叶发现,患者接受手术切除 +* 2022-04-27: 病灶稳定,无肿瘤复发或转移 +* 2023-08-01: 左主支气管略狭窄 +* 2023-10-14: 支气管镜检查发现左主支气管新生物阻塞管腔约50%,病理提示为小细胞肺癌(SCLC) +* 2024-05-01: 开始服用阿来替尼600 mg bid,化疗3个周期后停止 +* 2024-10-01: 复查胸腹部CT、单光子发射计算机断层扫描全身骨显象均未发现疾病新进展","[""* 2019-03-19: 大细胞神经内分泌癌(大肿瘤)在右肺下叶发现,患者接受手术切除\n* 2022-04-27: 病灶稳定,无肿瘤复发或转移\n* 2023-08-01: 左主支气管略狭窄\n* 2023-10-14: 支气管镜检查发现左主支气管新生物阻塞管腔约50%,病理提示为小细胞肺癌(SCLC)\n* 2024-05-01: 开始服用阿来替尼600 mg bid,化疗3个周期后停止\n* 2024-10-01: 复查胸腹部CT、单光子发射计算机断层扫描全身骨显象均未发现疾病新进展""]",,"[""\u764c"", ""\u80bf\u7624"", ""\u6076\u6027\u80bf\u7624""]","[""\u5927\u7ec6\u80de\u795e\u7ecf\u5185\u5206\u6ccc\u764c"", ""\u5c0f\u7ec6\u80de\u80ba\u764c""]",False,[] +graph_003,Management_of_malignant_inferior_vena_cava_syndrome__IVCS__by_endovascular_bridg_PMC12019825.html,"A 73-year-old male patient underwent a procedure to relieve significant stenosis of the suprahepatic IVC due to compression. Under local anesthesia, a 5F sheath was inserted into the right basilic vein and a 10F sheath into the right common femoral vein. Venography showed a significant compression of the suprahepatic IVC. The IVC stenosis was passed using a 0,035-inch hydrophilic guidewire and a multipurpose catheter. Initially, mechanical thrombectomy was performed to exclude possible thrombosis; however, no thrombotic material was extracted. After placing a stiffer exchange guidewire with its distal tip positioned in the right subclavian vein, 3 uncovered self-expanding nitinol sinus-XL stents (OptiMed, Ettlingen, Germany) were deployed in tandem from the SVC to the IVC with an overlap between the stents. Using venography measurements, stents measuring 18 × 80 mm, 18 × 60 mm, and 16 × 80 mm were placed in a cephalic-to-caudal orientation. The final venography revealed adequate flow through the vena cava and bridging stents.","A 73-year-old male patient underwent a procedure to relieve significant stenosis of the suprahepatic IVC due to compression. Under local anesthesia, a 5F sheath was inserted into the right basilic vein and a 10F sheath into the right common femoral vein. Venography showed a significant compression of the suprahepatic IVC. The IVC stenosis was passed using a 0,035-inch hydrophilic guidewire and a multipurpose catheter. Initially, mechanical thrombectomy was performed to exclude possible thrombosis; however, no thrombotic material was extracted. After placing a stiffer exchange guidewire with its distal tip positioned in the right subclavian vein, 3 uncovered self-expanding nitinol sinus-XL stents (OptiMed, Ettlingen, Germany) were deployed in tandem from the SVC to the IVC with an overlap between the stents. Using venography measurements, stents measuring 18 × 80 mm, 18 × 60 mm, and 16 × 80 mm were placed in a cephalic-to-caudal orientation. The final venography revealed adequate flow through the vena cava and bridging stents. + +Diagnosed with SCLC 15 months previously. Received 6 cycles of carboplatin/etoposide chemotherapy, followed by thoracic radiotherapy and prophylactic cranial irradiation. Lost 20 kg of body weight within 12 months. Performance status was recorded (4) on the Eastern Cooperative Oncology Group scale on the day of admission. Vital signs: systolic/diastolic blood pressure 100/70 mmHg, heart rate 90 bpm, oxygen saturation 89%, body temperature 36,9°C/98° F. Laboratory results: hemoglobin 12,6 g/dl (normal range 14-18 g/dl), platelets 260 × 103/μl (150-450 × 103/μl), alkaline phosphatase 94 U/L (26-112 U/L), alanine aminotransferase 40 U/L (5-35 U/L), aspartate aminotransferase 34 U/L (<40 U/L), total bilirubin 1.2 mg/dl, and creatinine 0.9 mg/dl. A large tumor involving the right lower and middle lung lobe measured (17,6 × 19,3 × 18,6) mm (maximal axial x coronal x sagittal dimension), which causes significant compression of the IVC (yellow arrows) mainly at the level of its entry into the right heart atrium. Multiple enlarged mediastinal lymph nodes, infiltration of the visceral pleura and right hemidiaphragm, ascites, and peritoneal metastases were other salient findings underlining disease progression. + +Three self-expanding stents (yellow arrows) were positioned in tandem from the superior vena cava (SVC) (red arrow shows the most cephalic part of the stents) to the IVC to restore venous patency. Fig. 3. The final venography revealed adequate flow through the bridging stents (yellow arrows). The patient's IVCS symptoms, mainly trunk and lower limb edema, were significantly alleviated within 48 h. Low-molecular-weight heparin was administered for anticoagulation. + +The patient died with a large tumor involving the right lower and middle lung lobe measured (17,6 × 19,3 × 18,6) mm (maximal axial x coronal x sagittal dimension), which causes significant compression of the IVC (yellow arrows) mainly at the level of its entry into the right heart atrium.","- Diagnosed with SCLC 15 months previously +- Received 6 cycles of carboplatin/etoposide chemotherapy, followed by thoracic radiotherapy and prophylactic cranial irradiation +- Lost 20 kg of body weight within 12 months +- Performance status was recorded (4) on the Eastern Cooperative Oncology Group scale on the day of admission +- Underwent a procedure to relieve significant stenosis of the suprahepatic IVC due to compression +- Three self-expanding stents were positioned in tandem from the superior vena cava (SVC) to the IVC to restore venous patency +- The patient's IVCS symptoms, mainly trunk and lower limb edema, were significantly alleviated within 48 h +- Low-molecular-weight heparin was administered for anticoagulation +- The patient died with a large tumor involving the right lower and middle lung lobe measured (17,6 × 19,3 × 18,6) mm (maximal axial x coronal x sagittal dimension), which causes significant compression of the IVC (yellow arrows) mainly at the level of its entry into the right heart atrium","[""SCLC""]","[""Small Cell Lung Cancer""]",True,"[[""mediastinal lymph nodes"", ""enlarged""], [""visceral pleura"", ""infiltration""], [""right hemidiaphragm"", ""infiltration""], [""peritoneum"", ""metastases""]]" +graph_004,Metastatic_INI_1_deficient_undifferentiated_lung_cancer_with_EGFR_19del_mutation_PMC12021797.html,"81-year-old female patient with a 10-day history of progressive chest tightness and dyspnea worsened with physical activity +Chest computed tomography (CT) imaging revealed a large left-sided pleural effusion +Thoracentesis was performed, and the drained pleural fluid was sent to the Department of Pathology for further evaluation +Following thoracic drainage, a subsequent chest CT scan revealed a heterogeneous mass in the left inferior lobe, measuring approximately 6.7 cm × 2.8 cm in its largest cross-section +Contrast-enhanced imaging demonstrated irregular enhancement patterns suggestive of a left lung tumor +Pulmonary window analysis identified multiple nodular high-density foci scattered across both lungs, raising suspicion for bilateral pulmonary metastases +Mediastinal window assessment further revealed bilateral mediastinal lymphadenopathy and enlarged lymph nodes at the left pulmonary hilum, consistent with lymph node metastasis +An abdominal CT scan detected multiple low-density hepatic nodules of varying sizes, with the largest lesion (2.9 cm × 2.6 cm) located in the right hepatic lobe +Annular enhancement was noted in the arterial phase, while marked hypodensity was observed in the portal venous phase, demonstrating a “bull’s eye sign” characteristic of multiple hepatic metastases +Additionally, an enhanced brain CT identified an irregular heterogeneously enhancing mass within the right frontal lobe, with a maximum cross-sectional area of 2.1 cm × 1.6 cm, consistent with brain metastasis +Genetic testing revealed a mutation in the EGFR gene +Next-generation sequencing (NGS) analysis showed that the patient's tumor had a high level of PD-L1 expression +The patient underwent treatment with osimertinib, an EGFR tyrosine kinase inhibitor","81-year-old female patient with a 10-day history of progressive chest tightness and dyspnea worsened with physical activity +Chest computed tomography (CT) imaging revealed a large left-sided pleural effusion +Thoracentesis was performed, and the drained pleural fluid was sent to the Department of Pathology for further evaluation +Following thoracic drainage, a subsequent chest CT scan revealed a heterogeneous mass in the left inferior lobe, measuring approximately 6.7 cm × 2.8 cm in its largest cross-section +Contrast-enhanced imaging demonstrated irregular enhancement patterns suggestive of a left lung tumor +Pulmonary window analysis identified multiple nodular high-density foci scattered across both lungs, raising suspicion for bilateral pulmonary metastases +Mediastinal window assessment further revealed bilateral mediastinal lymphadenopathy and enlarged lymph nodes at the left pulmonary hilum, consistent with lymph node metastasis +An abdominal CT scan detected multiple low-density hepatic nodules of varying sizes, with the largest lesion (2.9 cm × 2.6 cm) located in the right hepatic lobe +Annular enhancement was noted in the arterial phase, while marked hypodensity was observed in the portal venous phase, demonstrating a “bull’s eye sign” characteristic of multiple hepatic metastases +Additionally, an enhanced brain CT identified an irregular heterogeneously enhancing mass within the right frontal lobe, with a maximum cross-sectional area of 2.1 cm × 1.6 cm, consistent with brain metastasis +Genetic testing revealed a mutation in the EGFR gene +Next-generation sequencing (NGS) analysis showed that the patient's tumor had a high level of PD-L1 expression +The patient underwent treatment with osimertinib, an EGFR tyrosine kinase inhibitor","81-year-old female patient with a 10-day history of progressive chest tightness and dyspnea worsened with physical activity +Chest computed tomography (CT) imaging revealed a large left-sided pleural effusion +Thoracentesis was performed, and the drained pleural fluid was sent to the Department of Pathology for further evaluation +Following thoracic drainage, a subsequent chest CT scan revealed a heterogeneous mass in the left inferior lobe, measuring approximately 6.7 cm × 2.8 cm in its largest cross-section +Contrast-enhanced imaging demonstrated irregular enhancement patterns suggestive of a left lung tumor +Pulmonary window analysis identified multiple nodular high-density foci scattered across both lungs, raising suspicion for bilateral pulmonary metastases +Mediastinal window assessment further revealed bilateral mediastinal lymphadenopathy and enlarged lymph nodes at the left pulmonary hilum, consistent with lymph node metastasis +An abdominal CT scan detected multiple low-density hepatic nodules of varying sizes, with the largest lesion (2.9 cm × 2.6 cm) located in the right hepatic lobe +Annular enhancement was noted in the arterial phase, while marked hypodensity was observed in the portal venous phase, demonstrating a “bull’s eye sign” characteristic of multiple hepatic metastases +Additionally, an enhanced brain CT identified an irregular heterogeneously enhancing mass within the right frontal lobe, with a maximum cross-sectional area of 2.1 cm × 1.6 cm, consistent with brain metastasis +Genetic testing revealed a mutation in the EGFR gene +Next-generation sequencing (NGS) analysis showed that the patient's tumor had a high level of PD-L1 expression +The patient underwent treatment with osimertinib, an EGFR tyrosine kinase inhibitor","[""lung cancer""]","[""non-small cell lung cancer""]",True,"[[""liver"", ""multiple low-density hepatic nodules""], [""lymph nodes"", ""bilateral mediastinal lymphadenopathy""], [""brain"", ""irregular heterogeneously enhancing mass""]]" +graph_005,Neoadjuvant_Targeted_Therapy_with_Dacomitinib_in_a_Stage_IIIA_Non_Small_Cell_Lun_PMC11980937.html,"A 54-year-old Chinese male with 30 years of smoking history presented with a worsening cough for 3 months, with a performance status score of 1. Enhanced computed tomography (CT) revealed a 22 mm × 12 mm × 16 mm mass in the right upper lobe with invasion in the right hilum and mediastinal (Figure 1AandB), which were confirmed by positron emission tomography-CT (PET-CT) scan. Immunohistochemistry (IHC) analysis of the biopsy from the lesion in the upper right lobe of the lung was positive for TTF-1, NpA, CK7, CD5/6 and Ki67 (60%); and negative for p40, p63 and CD56. The patient was diagnosed with stage IIIA lung adenocarcinoma (cT1cN2M0). Follow-up targeted NGS analysis of his lung lesion biopsy identified an EGFRG719X with a mutant allele frequency (MAF) of 3.8%. Two cycles of PC chemotherapy (pemetrexed with 0.9g d1 and carboplatin with 600mg d1) and dacomitinib (30mg) were given. + +The patient underwent video-assisted thoracic surgery (VATS) with right upper lobectomy in July 2023. The tumor was located in the right upper lobe, measuring approximately 1.5*1.5 cm with unclear boundaries. Postoperative pathology results indicated that 10% of the tumor cells remained alive, surrounded by significant fibrosis, necrosis, as well as inflammatory and immune cells. After chemotherapy and dacomitinib induction, there were no lymph node metastases, and the pathological stage was ypT1bN0M0. Two cycles of PC chemotherapy were administered, followed by targeted therapy with dacomitinib as adjuvant treatment for 2 more years in accordance with the diagnosis and treatment guidelines. At the final follow-up in September 2024, no adverse events or disease progression had occurred. A progression-free survival (PFS) of more than 14 months was achieved.","A 54-year-old Chinese male with 30 years of smoking history presented with a worsening cough for 3 months, with a performance status score of 1. Enhanced computed tomography (CT) revealed a 22 mm × 12 mm × 16 mm mass in the right upper lobe with invasion in the right hilum and mediastinal (Figure 1AandB), which were confirmed by positron emission tomography-CT (PET-CT) scan. Immunohistochemistry (IHC) analysis of the biopsy from the lesion in the upper right lobe of the lung was positive for TTF-1, NpA, CK7, CD5/6 and Ki67 (60%); and negative for p40, p63 and CD56. The patient was diagnosed with stage IIIA lung adenocarcinoma (cT1cN2M0). Follow-up targeted NGS analysis of his lung lesion biopsy identified an EGFRG719X with a mutant allele frequency (MAF) of 3.8%. Two cycles of PC chemotherapy (pemetrexed with 0.9g d1 and carboplatin with 600mg d1) and dacomitinib (30mg) were given. + +The patient underwent video-assisted thoracic surgery (VATS) with right upper lobectomy in July 2023. The tumor was located in the right upper lobe, measuring approximately 1.5*1.5 cm with unclear boundaries. Postoperative pathology results indicated that 10% of the tumor cells remained alive, surrounded by significant fibrosis, necrosis, as well as inflammatory and immune cells. After chemotherapy and dacomitinib induction, there were no lymph node metastases, and the pathological stage was ypT1bN0M0. Two cycles of PC chemotherapy were administered, followed by targeted therapy with dacomitinib as adjuvant treatment for 2 more years in accordance with the diagnosis and treatment guidelines. At the final follow-up in September 2024, no adverse events or disease progression had occurred. A progression-free survival (PFS) of more than 14 months was achieved. + +The patient received two cycles of PC chemotherapy (pemetrexed with 0.9g d1 and carboplatin with 600mg d1) and dacomitinib (30mg). The patient underwent video-assisted thoracic surgery (VATS) with right upper lobectomy in July 2023.","A 54-year-old Chinese male with 30 years of smoking history presented with a worsening cough for 3 months, with a performance status score of 1. Enhanced computed tomography (CT) revealed a 22 mm × 12 mm × 16 mm mass in the right upper lobe with invasion in the right hilum and mediastinal (Figure 1AandB), which were confirmed by positron emission tomography-CT (PET-CT) scan. Immunohistochemistry (IHC) analysis of the biopsy from the lesion in the upper right lobe of the lung was positive for TTF-1, NpA, CK7, CD5/6 and Ki67 (60%); and negative for p40, p63 and CD56. The patient was diagnosed with stage IIIA lung adenocarcinoma (cT1cN2M0). Follow-up targeted NGS analysis of his lung lesion biopsy identified an EGFRG719X with a mutant allele frequency (MAF) of 3.8%. Two cycles of PC chemotherapy (pemetrexed with 0.9g d1 and carboplatin with 600mg d1) and dacomitinib (30mg) were given. + +The patient underwent video-assisted thoracic surgery (VATS) with right upper lobectomy in July 2023. The tumor was located in the right upper lobe, measuring approximately 1.5*1.5 cm with unclear boundaries. Postoperative pathology results indicated that 10% of the tumor cells remained alive, surrounded by significant fibrosis, necrosis, as well as inflammatory and immune cells. After chemotherapy and dacomitinib induction, there were no lymph node metastases, and the pathological stage was ypT1bN0M0. Two cycles of PC chemotherapy were administered, followed by targeted therapy with dacomitinib as adjuvant treatment for 2 more years in accordance with the diagnosis and treatment guidelines. At the final follow-up in September 2024, no adverse events or disease progression had occurred. A progression-free survival (PFS) of more than 14 months was achieved. + +The patient received two cycles of PC chemotherapy (pemetrexed with 0.9g d1 and carboplatin with 600mg d1) and dacomitinib (30mg). The patient underwent video-assisted thoracic surgery (VATS) with right upper lobectomy in July 2023.","[""Lung Cancer""]","[""Lung Adenocarcinoma""]",False,[] +graph_006,Lung_cancer_with_diabetes_mellitus_and_polymyalgia_rheumatica_during_long_term_n_PMC12001326.html,"Lung cancer (stage IV) diagnosedRadiation therapy for pelvic lesion (45 Gy/15 Fr)Chemotherapy (carboplatin + paclitaxel + bevacizumab for four courses)Bevacizumab maintenance therapyRight adrenal metastasis largerNew left adrenal metastasis observedRe-enlargement of the right adrenal metastasis detectedRadiation therapy for the right adrenal lesion (50 Gy/25 Fr)Chemotherapy (two courses of docetaxel monotherapy) administeredEnlargement of the left adrenal metastasis detectedNivolumab monotherapy as fifth-line therapy initiatedDiabetes mellitus (DM) diagnosed: Blood glucose level increased to 468 mg/dl, Urinary ketones negative, pancreatic amylase not elevated, and autoantibodies including anti-glutamic acid decarboxylase (GAD) antibodies negativePolymyalgia rheumatica (PMR) diagnosed: Muscle pain in the femoral area and neck appeared, which did not improve with nonsteroidal anti-inflammatory drugs. CT and magnetic resonance imaging showed no obvious cancer progressionNivolumab treatment continued","Lung cancer (stage IV) diagnosedRadiation therapy for pelvic lesion (45 Gy/15 Fr)Chemotherapy (carboplatin + paclitaxel + bevacizumab for four courses)Bevacizumab maintenance therapyRight adrenal metastasis largerNew left adrenal metastasis observedRe-enlargement of the right adrenal metastasis detectedRadiation therapy for the right adrenal lesion (50 Gy/25 Fr)Chemotherapy (two courses of docetaxel monotherapy) administeredEnlargement of the left adrenal metastasis detectedNivolumab monotherapy as fifth-line therapy initiatedDiabetes mellitus (DM) diagnosed: Blood glucose level increased to 468 mg/dl, Urinary ketones negative, pancreatic amylase not elevated, and autoantibodies including anti-glutamic acid decarboxylase (GAD) antibodies negativePolymyalgia rheumatica (PMR) diagnosed: Muscle pain in the femoral area and neck appeared, which did not improve with nonsteroidal anti-inflammatory drugs. CT and magnetic resonance imaging showed no obvious cancer progressionNivolumab treatment continued","[ + { + ""date"": ""June 2014"", + ""text"": ""Lung cancer (stage IV) diagnosed"" + }, + { + ""date"": ""July 2014"", + ""text"": ""Radiation therapy for pelvic lesion (45 Gy/15 Fr)"" + }, + { + ""date"": ""July 2014"", + ""text"": ""Chemotherapy (carboplatin + paclitaxel + bevacizumab for four courses)"" + }, + { + ""date"": ""July 2014"", + ""text"": ""Bevacizumab maintenance therapy"" + }, + { + ""date"": ""after 15 cycles of maintenance therapy"", + ""text"": ""Right adrenal metastasis larger"" + }, + { + ""date"": ""after 15 cycles of maintenance therapy"", + ""text"": ""New left adrenal metastasis observed"" + }, + { + ""date"": ""January 2018"", + ""text"": ""Re-enlargement of the right adrenal metastasis detected"" + }, + { + ""date"": ""January 2018"", + ""text"": ""Radiation therapy for the right adrenal lesion (50 Gy/25 Fr)"" + }, + { + ""date"": ""January 2018"", + ""text"": ""Chemotherapy (two courses of docetaxel monotherapy) administered"" + }, + { + ""date"": ""February 2019"", + ""text"": ""Enlargement of the left adrenal metastasis detected"" + }, + { + ""date"": ""February 2019"", + ""text"": ""Nivolumab monotherapy as fifth-line therapy initiated"" + }, + { + ""date"": ""May 2022"", + ""text"": ""Diabetes mellitus (DM) diagnosed: Blood glucose level increased to 468 mg/dl, Urinary ketones negative, pancreatic amylase not elevated, and autoantibodies including anti-glutamic acid decarboxylase (GAD) antibodies negative"" + }, + { + ""date"": ""four years and 5 months after starting nivolumab treatment"", + ""text"": ""Polymyalgia rheumatica (PMR) diagnosed: Muscle pain in the femoral area and neck appeared, which did not improve with nonsteroidal anti-inflammatory drugs. CT and magnetic resonance imaging showed no obvious cancer progression"" + }, + { + ""date"": ""four years and 5 months after starting nivolumab treatment"", + ""text"": ""Nivolumab treatment continued"" + } +]","[""Lung cancer""]","[""stage IV lung cancer""]",True,"[[""right adrenal"", ""re-enlargement""], [""left adrenal"", ""enlargement""]]" +graph_007,Case_Report__A_novel_ELMOD3_ALK_and_EML4_ALK_double_fusion_responses_to_neoadjuv_PMC12034634.html,"2020-04-20: Patient comes to hospital for physical examination +2020-05-02: Diagnosis of stage IIIA (T2aN2M0) lung adenocarcinoma confirmed +2020: NGS analysis identifies ELMOD3-ALK and EML4-ALK double fusion in tumor tissue +2020: Patient starts treatment with targeted therapy for ALK fusion +2023-01-15: Patient receives new treatment plan, including combination of chemotherapy and immunotherapy","2020-04-20: Patient comes to hospital for physical examination +2020-05-02: Diagnosis of stage IIIA (T2aN2M0) lung adenocarcinoma confirmed +2020: NGS analysis identifies ELMOD3-ALK and EML4-ALK double fusion in tumor tissue +2020: Patient starts treatment with targeted therapy for ALK fusion +2023-01-15: Patient receives new treatment plan, including combination of chemotherapy and immunotherapy","2020-04-20: Patient comes to hospital for physical examination +2020-05-02: Diagnosis of stage IIIA (T2aN2M0) lung adenocarcinoma confirmed +2020: NGS analysis identifies ELMOD3-ALK and EML4-ALK double fusion in tumor tissue +2020: Patient starts treatment with targeted therapy for ALK fusion +2023-01-15: Patient receives new treatment plan, including combination of chemotherapy and immunotherapy","[""Lung Cancer""]","[""Lung Adenocarcinoma""]",False,[] +graph_008,Case_report__pulmonary_lymphoepithelial_carcinoma_mimicking_tuberculosis__PMC11987468.html,"The patient was a 37-year-old woman who presented with intermittent cough and slight chest discomfort for 3 months. She also had a painless cervical mass for 1 month. The pathological tissue showed granulomatous inflammation, caseous necrosis, and Langhans' giant cells observed on left cervical lymph node puncture.","37-year-old woman with intermittent cough and slight chest discomfort for 3 months; painless cervical mass for 1 month; pathological tissue showed granulomatous inflammation, caseous necrosis, and Langhans’ giant cells observed on left cervical lymph node puncture; untreated congenital heart disease (patent ductus arteriosus) for 20 years; hypertension for half a year with irregular use of valsartan; mass measuring approximately 4*3 cm on the left clavicle, well-defined, poorly mobile, non-tender, and without surface ulceration or redness; Physical examination of the lungs was unremarkable. A continuous murmur was auscultated at the left sternal border; Laboratory tests of blood carcinoembryonic antigen (CEA), squamous cell carcinoma antigen, cytokeratin 19 fragment and neuron-specific enolase (NSE) were all normal; Blood routine test, liver and kidney function, electrolytes, procalcitonin (PCT), C-reactive protein (CRP) and T-lymphocyte subsets were all normal; Sputum for acid-fast bacilli (AFB) and GeneXpert MTB/RIF were negative; Blood test of EB virus showed increased antibody title of capsid antigen IgG antibody 750U/mL (Reference:0–20 U/mL), EB virus early antigen IgM antibody 2.57 COI (Cut off index reference:0-1.1) and EB virus core antigen IgG antibody 600U/mL(Reference:0–20 U/mL); Repeated ultrasound-guided left supraclavicular lymph node puncture was performed; Histopathology showed focal distribution of epithelioid cells and a few multinucleated giant cells, which suggested granulomatous inflammation (Fig.1); Staining of Acid-fast and methenamine silver were all negative; Lymph node tissue for GeneXpert MTB/RIF and TB culture were all negative; Chest CT scan showed mass(34 × 43 mm) in the middle lobe of the right lung (A,D; blue arrows) and multiple enlarged lymph nodes in mediastinum (B,C; red arrows); Lung biopsy shows lymphoepithelial carcinoma. The tumor cells are densely nestled, the tumor cells have a blurred boundary, large alveoli, eosinophilic nuclei, and the mesenchymal is accompanied by lymphocyte infiltration. (HE staining, 400×)); Immunohistochemical staining shows CK positive in tumor cells (200×); Immunohistochemical staining showed P40 positive in tumor cells (200×); In situ hybridization showed EBER positive in tumor cells (200×); Chest CT scan showed a significant improvement of the lung mass(26 × 17 mm)and reduced lymph nodes after chemotherapy and immunotherapy; Biopsy of left neck lymph node showed granulomatous inflammation. Enhanced CT scan showed mass in the middle lobe of the right lung and multiple enlarged lymph nodes in left neck, mediastinum and right hilum. Percutaneous lung biopsy was performed, showing EBV-positive poorly differentiated carcinoma consistent with lymphoepithelioma. Nasopharyngoscopy excluded nasopharyngeal carcinoma. Repeated CT 1.5 months later showed significant reduction of lung lesions and cervical enlarged lymph nodes.","37-year-old woman with intermittent cough and slight chest discomfort for 3 months; painless cervical mass for 1 month; pathological tissue showed granulomatous inflammation, caseous necrosis, and Langhans’ giant cells observed on left cervical lymph node puncture; untreated congenital heart disease (patent ductus arteriosus) for 20 years; hypertension for half a year with irregular use of valsartan; mass measuring approximately 4*3 cm on the left clavicle, well-defined, poorly mobile, non-tender, and without surface ulceration or redness; Physical examination of the lungs was unremarkable. A continuous murmur was auscultated at the left sternal border; Laboratory tests of blood carcinoembryonic antigen (CEA), squamous cell carcinoma antigen, cytokeratin 19 fragment and neuron-specific enolase (NSE) were all normal; Blood routine test, liver and kidney function, electrolytes, procalcitonin (PCT), C-reactive protein (CRP) and T-lymphocyte subsets were all normal; Sputum for acid-fast bacilli (AFB) and GeneXpert MTB/RIF were negative; Blood test of EB virus showed increased antibody title of capsid antigen IgG antibody 750U/mL (Reference:0–20 U/mL), EB virus early antigen IgM antibody 2.57 COI (Cut off index reference:0-1.1) and EB virus core antigen IgG antibody 600U/mL(Reference:0–20 U/mL); Repeated ultrasound-guided left supraclavicular lymph node puncture was performed; Histopathology showed focal distribution of epithelioid cells and a few multinucleated giant cells, which suggested granulomatous inflammation (Fig.1); Staining of Acid-fast and methenamine silver were all negative; Lymph node tissue for GeneXpert MTB/RIF and TB culture were all negative; Chest CT scan showed mass(34 × 43 mm) in the middle lobe of the right lung (A,D; blue arrows) and multiple enlarged lymph nodes in mediastinum (B,C; red arrows); Lung biopsy shows lymphoepithelial carcinoma. The tumor cells are densely nestled, the tumor cells have a blurred boundary, large alveoli, eosinophilic nuclei, and the mesenchymal is accompanied by lymphocyte infiltration. (HE staining, 400×)); Immunohistochemical staining shows CK positive in tumor cells (200×); Immunohistochemical staining showed P40 positive in tumor cells (200×); In situ hybridization showed EBER positive in tumor cells (200×); Chest CT scan showed a significant improvement of the lung mass(26 × 17 mm)and reduced lymph nodes after chemotherapy and immunotherapy; Biopsy of left neck lymph node showed granulomatous inflammation. Enhanced CT scan showed mass in the middle lobe of the right lung and multiple enlarged lymph nodes in left neck, mediastinum and right hilum. Percutaneous lung biopsy was performed, showing EBV-positive poorly differentiated carcinoma consistent with lymphoepithelioma. Nasopharyngoscopy excluded nasopharyngeal carcinoma. Repeated CT 1.5 months later showed significant reduction of lung lesions and cervical enlarged lymph nodes.","[""lymphoepithelial carcinoma""]","[""EBV-positive poorly differentiated carcinoma"", ""nasopharyngeal carcinoma""]",True,"[[""lung"", ""middle lobe""], [""lymph nodes"", ""mediastinum""], [""lymph nodes"", ""left neck""], [""lymph nodes"", ""right hilum""]]" +graph_009,Radiotherapy_for_Lung_Cancer__An_Unrecognized_Cause_of_Lung_Torsion__PMC11962223.html,"A 73-year-old lady presented with a long history of bilateral chest wall discomfort, exertional breathlessness, and chronic fatigue. She was found to have a left lung opacification on chest radiograph, which prompted a computed tomography scan and positron emission tomography-computed tomography (PET-CT) scan, which confirmed an avid 53 mm left upper lobe mass with associated hilar and mediastinal lymphadenopathy staging the disease as T3N2M0. An endobronchial ultrasound scan and biopsy (EBUS) sampling of station 11L confirmed lung adenocarcinoma metastasis. It appeared positive on the PD-L1 staining. Other immunohistochemistry (ALK/ROS/NTRK) was negative. Her lung function at this point was 51% forced expiratory volume (FEV1) (1.21) and 73% diffusing capacity of the lungs for carbon monoxide (DLCO). She consented to radical treatment with four weeks of radiotherapy dosed at 55 Gy/20 with concurrent chemotherapy. Her initial scan post radiotherapy showed a limited response to treatment, but her subsequent CT scan in a year showed that there was no tumor visible on axial images but there was apparent collapse of the left lung base. Post radiotherapy imaging showed complete response to treatment. It also showed two small bullae seen in the post aspect of the lower lobe. Five months later, she had a follow-up scan (Figures 4,5). Coronal views showed upward curving of the lower segmental bronchi and pulmonary vessels. The two small bullae initially seen in the post aspect of the lower lobe seemed to have relocated to the upper zone anteriorly. Lung torsion with 180-degree rotation was diagnosed. The patient was clinically well; hence, it did not warrant surgical referral.","A 73-year-old lady presented with a long history of bilateral chest wall discomfort, exertional breathlessness, and chronic fatigue. She was found to have a left lung opacification on chest radiograph, which prompted a computed tomography scan and positron emission tomography-computed tomography (PET-CT) scan, which confirmed an avid 53 mm left upper lobe mass with associated hilar and mediastinal lymphadenopathy staging the disease as T3N2M0. An endobronchial ultrasound scan and biopsy (EBUS) sampling of station 11L confirmed lung adenocarcinoma metastasis. It appeared positive on the PD-L1 staining. Other immunohistochemistry (ALK/ROS/NTRK) was negative. Her lung function at this point was 51% forced expiratory volume (FEV1) (1.21) and 73% diffusing capacity of the lungs for carbon monoxide (DLCO). She consented to radical treatment with four weeks of radiotherapy dosed at 55 Gy/20 with concurrent chemotherapy. Her initial scan post radiotherapy showed a limited response to treatment, but her subsequent CT scan in a year showed that there was no tumor visible on axial images but there was apparent collapse of the left lung base. Post radiotherapy imaging showed complete response to treatment. It also showed two small bullae seen in the post aspect of the lower lobe. Five months later, she had a follow-up scan (Figures 4,5). Coronal views showed upward curving of the lower segmental bronchi and pulmonary vessels. The two small bullae initially seen in the post aspect of the lower lobe seemed to have relocated to the upper zone anteriorly. Lung torsion with 180-degree rotation was diagnosed. The patient was clinically well; hence, it did not warrant surgical referral.","A 73-year-old lady presented with a long history of bilateral chest wall discomfort, exertional breathlessness, and chronic fatigue. She was found to have a left lung opacification on chest radiograph, which prompted a computed tomography scan and positron emission tomography-computed tomography (PET-CT) scan, which confirmed an avid 53 mm left upper lobe mass with associated hilar and mediastinal lymphadenopathy staging the disease as T3N2M0. An endobronchial ultrasound scan and biopsy (EBUS) sampling of station 11L confirmed lung adenocarcinoma metastasis. It appeared positive on the PD-L1 staining. Other immunohistochemistry (ALK/ROS/NTRK) was negative. Her lung function at this point was 51% forced expiratory volume (FEV1) (1.21) and 73% diffusing capacity of the lungs for carbon monoxide (DLCO). She consented to radical treatment with four weeks of radiotherapy dosed at 55 Gy/20 with concurrent chemotherapy. Her initial scan post radiotherapy showed a limited response to treatment, but her subsequent CT scan in a year showed that there was no tumor visible on axial images but there was apparent collapse of the left lung base. Post radiotherapy imaging showed complete response to treatment. It also showed two small bullae seen in the post aspect of the lower lobe. Five months later, she had a follow-up scan (Figures 4,5). Coronal views showed upward curving of the lower segmental bronchi and pulmonary vessels. The two small bullae initially seen in the post aspect of the lower lobe seemed to have relocated to the upper zone anteriorly. Lung torsion with 180-degree rotation was diagnosed. The patient was clinically well; hence, it did not warrant surgical referral.","[""lung adenocarcinoma""]","[""lung adenocarcinoma""]",True,"[[""hilar"", ""lymphadenopathy""], [""mediastinal"", ""lymphadenopathy""]]" +graph_010,Re_do_robot_assisted_salvage_lobectomy_after_esophagectomy_with_gastric_pull_up__PMC11980297.html,"55-year-old female underwent esophagectomy with gastric pull-up reconstruction for squamous cell carcinoma (SCC) of the esophagus (cT3N2M0, stage IIIB) +Six years later, computed tomography (CT) scan showed stage IA Thyroid Transcription Factor-1 (TTF-1) positive adenocarcinoma in the left upper lobe treated by stereotactic radiotherapy +Two years later, a SCC of the right upper lobe (RUL) was found with tumor diameter of 54 mm and high Programmed Death-Ligand 1 (PD-L1) expression +Pembrolizumab initiated with curative intent but showed no biological response +Salvage lobectomy including complete mediastinal lymph node dissection performed +Positioned in left lateral decubitus position, adhesions in closure-line of the previous thoracotomy and thus RATS was deemed feasible. +After standard port placement (Fig.2A), docking and instrument placement (Tip-up fenestrated grasper™, Cadière forceps™, Maryland bipolar dissector™ and the Monopolar spatula™) adhesiolysis between the lung and the chest wall and taking down dense adhesions between the lung and the intrathoracic gastric pull-up the nasogastric tube was exposed (Fig.2B). +The nasogastric tube was placed in the gastric pull-up as a safety measure. +Meticulous dissection of its vascularization enabled subsequent standard lobectomy of the RUL with complete lymph node dissection (R4, 7, 10 and 11). +After removal of the specimen and chest tube placement, a Ropivacaine® intercostal nerve block levels T4 to T9 was installed. +Total operative time was 3 h 44 min with 50 ml blood loss.","55-year-old female underwent esophagectomy with gastric pull-up reconstruction for squamous cell carcinoma (SCC) of the esophagus (cT3N2M0, stage IIIB) +Six years later, computed tomography (CT) scan showed stage IA Thyroid Transcription Factor-1 (TTF-1) positive adenocarcinoma in the left upper lobe treated by stereotactic radiotherapy +Two years later, a SCC of the right upper lobe (RUL) was found with tumor diameter of 54 mm and high Programmed Death-Ligand 1 (PD-L1) expression +Pembrolizumab initiated with curative intent but showed no biological response +Salvage lobectomy including complete mediastinal lymph node dissection performed +Positioned in left lateral decubitus position, adhesions in closure-line of the previous thoracotomy and thus RATS was deemed feasible. +After standard port placement (Fig.2A), docking and instrument placement (Tip-up fenestrated grasper™, Cadière forceps™, Maryland bipolar dissector™ and the Monopolar spatula™) adhesiolysis between the lung and the chest wall and taking down dense adhesions between the lung and the intrathoracic gastric pull-up the nasogastric tube was exposed (Fig.2B). +The nasogastric tube was placed in the gastric pull-up as a safety measure. +Meticulous dissection of its vascularization enabled subsequent standard lobectomy of the RUL with complete lymph node dissection (R4, 7, 10 and 11). +After removal of the specimen and chest tube placement, a Ropivacaine® intercostal nerve block levels T4 to T9 was installed. +Total operative time was 3 h 44 min with 50 ml blood loss.","55-year-old female underwent esophagectomy with gastric pull-up reconstruction for squamous cell carcinoma (SCC) of the esophagus (cT3N2M0, stage IIIB) +Six years later, computed tomography (CT) scan showed stage IA Thyroid Transcription Factor-1 (TTF-1) positive adenocarcinoma in the left upper lobe treated by stereotactic radiotherapy +Two years later, a SCC of the right upper lobe (RUL) was found with tumor diameter of 54 mm and high Programmed Death-Ligand 1 (PD-L1) expression +Pembrolizumab initiated with curative intent but showed no biological response +Salvage lobectomy including complete mediastinal lymph node dissection performed +Positioned in left lateral decubitus position, adhesions in closure-line of the previous thoracotomy and thus RATS was deemed feasible. +After standard port placement (Fig.2A), docking and instrument placement (Tip-up fenestrated grasper™, Cadière forceps™, Maryland bipolar dissector™ and the Monopolar spatula™) adhesiolysis between the lung and the chest wall and taking down dense adhesions between the lung and the intrathoracic gastric pull-up the nasogastric tube was exposed (Fig.2B). +The nasogastric tube was placed in the gastric pull-up as a safety measure. +Meticulous dissection of its vascularization enabled subsequent standard lobectomy of the RUL with complete lymph node dissection (R4, 7, 10 and 11). +After removal of the specimen and chest tube placement, a Ropivacaine® intercostal nerve block levels T4 to T9 was installed. +Total operative time was 3 h 44 min with 50 ml blood loss.","[""Squamous cell carcinoma"", ""Adenocarcinoma""]","[""Esophageal squamous cell carcinoma"", ""Thyroid Transcription Factor-1 positive adenocarcinoma"", ""Squamous cell carcinoma of the right upper lobe""]",False,[] +graph_011,Efficacy_of_Selpercatinib_in_Non_small_Cell_Lung_Cancer_With_Bilateral_Internal__PMC12021377.html,"Three new intracranial lesions were identified, accompanied by clinical manifestations of paresthesia and reduced muscular strength in the lower limbs.Near-complete resolution of multiple supratentorial and infratentorial nodular lesions, with the absence of gadolinium enhancement, except for a faint residual signal at the cisternal segment of the right eighth cranial nerveSignificant symptomatic improvement within one week of treatment, including complete hearing recovery and a substantial reduction of dizziness and headache complaints.Fourth-line treatment with selpercatinib (160 mg twice daily) was initiatedDisease progression was identified with the emergence of a new growing nodule measuring 11 mm in its longest diameter.First-line systemic therapy with a platinum-based doublet, completing six cycles with a partial tumor response according to Response Evaluation Criteria in Solid Tumors (RECIST) criteria","Three new intracranial lesions were identified, accompanied by clinical manifestations of paresthesia and reduced muscular strength in the lower limbs.Near-complete resolution of multiple supratentorial and infratentorial nodular lesions, with the absence of gadolinium enhancement, except for a faint residual signal at the cisternal segment of the right eighth cranial nerveSignificant symptomatic improvement within one week of treatment, including complete hearing recovery and a substantial reduction of dizziness and headache complaints.Fourth-line treatment with selpercatinib (160 mg twice daily) was initiatedDisease progression was identified with the emergence of a new growing nodule measuring 11 mm in its longest diameter.First-line systemic therapy with a platinum-based doublet, completing six cycles with a partial tumor response according to Response Evaluation Criteria in Solid Tumors (RECIST) criteria"," + + Three new intracranial lesions were identified, accompanied by clinical manifestations of paresthesia and reduced muscular strength in the lower limbs. + + + Near-complete resolution of multiple supratentorial and infratentorial nodular lesions, with the absence of gadolinium enhancement, except for a faint residual signal at the cisternal segment of the right eighth cranial nerve + + + Significant symptomatic improvement within one week of treatment, including complete hearing recovery and a substantial reduction of dizziness and headache complaints. + + + Fourth-line treatment with selpercatinib (160 mg twice daily) was initiated + + + Disease progression was identified with the emergence of a new growing nodule measuring 11 mm in its longest diameter. + + + First-line systemic therapy with a platinum-based doublet, completing six cycles with a partial tumor response according to Response Evaluation Criteria in Solid Tumors (RECIST) criteria + +","[""adenocarcinoma""]","[""lung cancer""]",True,"[[""brain"", ""intracranial""], [""bone"", ""osseous""], [""liver"", ""hepatic""], [""lymph nodes"", ""lymphatic""], [""lung"", ""pulmonary""]]" +graph_012,Multiple_Lung_Metastases_of_Papillary_Thyroid_Carcinoma_Detected_by_Detailed_Pat_PMC11971052.html,"79-year-old male patient with: +- Height: 174 cm +- Weight: 65 kg +- BMI: 21.5 kg/m² +- Smoking history: two packs per day for 55 years (Brinkman Index of 1100) +- Medical history: + - Total thyroidectomy performed five years earlier for papillary thyroid carcinoma (PTC) with comorbidities of chronic obstructive pulmonary disease and hypertension + - Left cervical lymphadenopathy of unknown origin six years ago + - Subsequent investigations revealed suspected cervical lymph node metastasis of PTC. + - Five years ago, the patient underwent total thyroidectomy and left cervical lymph node dissection. Histopathological findings revealed multiple papillary thyroid microcarcinomas (pT1a [m], pEx0, pN1b 4/10, pStage IVA) with negative surgical margins. + - The patient was treated with radioiodine therapy (Iodine-131). + - Two years ago, a nodule in the right upper lobe of the lung was identified, which was followed up with chest CT scans. Compared to two years prior, an increase in nodule density was observed, prompting a transbronchial biopsy; however, no definitive diagnosis was made. + - Tumor markers (CYFRA, CEA, SLX, ProGRP, NSE) were within normal limits. + - Serum thyroglobulin levels showed a gradual increase over time, with a preoperative value of 47.7 ng/mL. + - Chest X-rays showed no abnormalities, while chest CT scans revealed an irregular nodule measuring 15×14 mm in the S1 segment of the right upper lobe (Figure1). + - No hilar lymphadenopathy was detected. + - FDG-PET was not performed. + - Pulmonary function and electrocardiogram tests showed no abnormalities. + +An irregular nodule 15 x 14 mm in size was seen in the S1 upper lobe of the right lung (arrow). The surgery was performed under general anesthesia in the left lateral decubitus position with video-assisted thoracoscopy. The tumor was partially resected using an automatic stapler and submitted for rapid diagnosis. The diagnosis of adenocarcinoma was confirmed, and a right upper lobectomy with mediastinal lymph node dissection (ND-1b) was performed. The operation lasted 2 hours and 30 minutes. + +Histopathological examination revealed adenocarcinoma. +Adenocarcinoma cells were found in the resected tissue. +Immunohistochemistry showed positive staining for TTF-1, indicating lung origin of the tumor. +The patient's postoperative course was uneventful, with no complications noted. +5 years ago: Total thyroidectomy performed for papillary thyroid carcinoma (PTC) with comorbidities of chronic obstructive pulmonary disease and hypertension. +2 years ago: A nodule in the right upper lobe of the lung was identified, which was followed up with chest CT scans. Compared to two years prior, an increase in nodule density was observed, prompting a transbronchial biopsy; however, no definitive diagnosis was made. +6 months post-surgery: No evidence of recurrence.","Total thyroidectomy performed for papillary thyroid carcinoma (PTC) with comorbidities of chronic obstructive pulmonary disease and hypertension.A nodule in the right upper lobe of the lung was identified, which was followed up with chest CT scans. Compared to two years prior, an increase in nodule density was observed, prompting a transbronchial biopsy; however, no definitive diagnosis was made.No evidence of recurrence.","79-year-old male patient with: +- Height: 174 cm +- Weight: 65 kg +- BMI: 21.5 kg/m² +- Smoking history: two packs per day for 55 years (Brinkman Index of 1100) +- Medical history: + - Total thyroidectomy performed five years earlier for papillary thyroid carcinoma (PTC) with comorbidities of chronic obstructive pulmonary disease and hypertension + - Left cervical lymphadenopathy of unknown origin six years ago + - Subsequent investigations revealed suspected cervical lymph node metastasis of PTC + - Five years ago, the patient underwent total thyroidectomy and left cervical lymph node dissection. Histopathological findings revealed multiple papillary thyroid microcarcinomas (pT1a [m], pEx0, pN1b 4/10, pStage IVA) with negative surgical margins. + - The patient was treated with radioiodine therapy (Iodine-131) + - Two years ago, a nodule in the right upper lobe of the lung was identified, which was followed up with chest CT scans. Compared to two years prior, an increase in nodule density was observed, prompting a transbronchial biopsy; however, no definitive diagnosis was made. + - Tumor markers (CYFRA, CEA, SLX, ProGRP, NSE) were within normal limits + - Serum thyroglobulin levels showed a gradual increase over time, with a preoperative value of 47.7 ng/mL + - Chest X-rays showed no abnormalities, while chest CT scans revealed an irregular nodule measuring 15×14 mm in the S1 segment of the right upper lobe (Figure1) + - No hilar lymphadenopathy was detected + - FDG-PET was not performed + - Pulmonary function and electrocardiogram tests showed no abnormalities + +An irregular nodule 15 x 14 mm in size was seen in the S1 upper lobe of the right lung (arrow). The surgery was performed under general anesthesia in the left lateral decubitus position with video-assisted thoracoscopy. The tumor was partially resected using an automatic stapler and submitted for rapid diagnosis. The diagnosis of adenocarcinoma was confirmed, and a right upper lobectomy with mediastinal lymph node dissection (ND-1b) was performed. The operation lasted 2 hours and 30 minutes. + +Histopathological examination revealed adenocarcinoma. +Adenocarcinoma cells were found in the resected tissue. +Immunohistochemistry showed positive staining for TTF-1, indicating lung origin of the tumor. +The patient's postoperative course was uneventful, with no complications noted. +5 years ago: Total thyroidectomy performed for papillary thyroid carcinoma (PTC) with comorbidities of chronic obstructive pulmonary disease and hypertension. +2 years ago: A nodule in the right upper lobe of the lung was identified, which was followed up with chest CT scans. Compared to two years prior, an increase in nodule density was observed, prompting a transbronchial biopsy; however, no definitive diagnosis was made. +6 months post-surgery: No evidence of recurrence.","[""papillary thyroid carcinoma"", ""adenocarcinoma""]","[""pT1a [m] papillary thyroid microcarcinomas"", ""lung adenocarcinoma""]",True,"[[""cervical lymph nodes"", ""papillary thyroid carcinoma""]]" +graph_013,Brain_Metastasis_From_Advanced_Stage_Lung_Carcinoma__Differentiating_From_Stroke_PMC11955559.html,"Patient's medical history: +- Diagnosed with stage III NSCLC in the right upper lobe bronchus that had spread throughout the middle and lower lobes (15 months ago) +- PET/CT scans revealed a right supraclavicular node, right upper paratracheal node, multiple additional paratracheal nodes, and enlarged para-aortic nodes +- Upper esophageal stricture treated with dilatation during an esophagogastroduodenoscopy (1 year ago) +- Initiated docetaxel for refractory complications with stage III NSCLC (2 days ago) + +Recent medical events: +- Diagnosed with hypokalemia, given potassium supplement and ondansetron for nausea +- Marked unilateral weakness in left upper extremity, grip strength of 2/5 versus 5/5 strength in the right upper extremity +- Leukopenia, WBC of 1.12 K/μL +- Potassium level still low but increased since previous ED visit +- COVID-19 and flu tests all negative +- Urine testing revealed trace blood and bacteria and was positive for cannabis +- Non-contrast CT results revealed multifocal intracranial lesions with associated vasogenic edema with mild mass effect, consistent with metastatic disease +- CT angiography (CTA) performed, revealing no flow-limiting stenosis or occlusion of major intracranial or cervical arteries +- Multiple bilateral pulmonary nodules and a partially imaged right upper lobe mass were seen, along with asymmetrically enlarged right level IIb nodes, suspicious for metastasis in this clinical setting + +Current medications: +- Docetaxel for refractory complications with stage III NSCLC +- Potassium supplement for hypokalemia +- Ondansetron for nausea","15 months ago: Diagnosed with stage III NSCLC in the right upper lobe bronchus that had spread throughout the middle and lower lobes. PET/CT scans revealed a right supraclavicular node, right upper paratracheal node, multiple additional paratracheal nodes, and enlarged para-aortic nodes. +1 year ago: Upper esophageal stricture treated with dilatation during an esophagogastroduodenoscopy. +2 days ago: Initiated docetaxel for refractory complications with stage III NSCLC. +Current visit: Diagnosed with hypokalemia, given potassium supplement and ondansetron for nausea. Marked unilateral weakness in left upper extremity, grip strength of 2/5 versus 5/5 strength in the right upper extremity. +Current visit: Leukopenia, WBC of 1.12 K/μL. Potassium level still low but increased since previous ED visit. +Current visit: COVID-19 and flu tests all negative. +Current visit: Urine testing revealed trace blood and bacteria and was positive for cannabis. +Current visit: Non-contrast CT results revealed multifocal intracranial lesions with associated vasogenic edema with mild mass effect, consistent with metastatic disease. +Current visit: CT angiography (CTA) performed, revealing no flow-limiting stenosis or occlusion of major intracranial or cervical arteries. +Current visit: Multiple bilateral pulmonary nodules and a partially imaged right upper lobe mass were seen, along with asymmetrically enlarged right level IIb nodes, suspicious for metastasis in this clinical setting.","15 months ago: Diagnosed with stage III NSCLC in the right upper lobe bronchus that had spread throughout the middle and lower lobes. PET/CT scans revealed a right supraclavicular node, right upper paratracheal node, multiple additional paratracheal nodes, and enlarged para-aortic nodes. +1 year ago: Upper esophageal stricture treated with dilatation during an esophagogastroduodenoscopy. +2 days ago: Initiated docetaxel for refractory complications with stage III NSCLC. +Current visit: Diagnosed with hypokalemia, given potassium supplement and ondansetron for nausea. Marked unilateral weakness in left upper extremity, grip strength of 2/5 versus 5/5 strength in the right upper extremity. +Current visit: Leukopenia, WBC of 1.12 K/μL. Potassium level still low but increased since previous ED visit. +Current visit: COVID-19 and flu tests all negative. +Current visit: Urine testing revealed trace blood and bacteria and was positive for cannabis. +Current visit: Non-contrast CT results revealed multifocal intracranial lesions with associated vasogenic edema with mild mass effect, consistent with metastatic disease. +Current visit: CT angiography (CTA) performed, revealing no flow-limiting stenosis or occlusion of major intracranial or cervical arteries. +Current visit: Multiple bilateral pulmonary nodules and a partially imaged right upper lobe mass were seen, along with asymmetrically enlarged right level IIb nodes, suspicious for metastasis in this clinical setting.","[""NSCLC""]","[""stage III NSCLC""]",True,"[[""brain"", ""multifocal intracranial lesions""], [""lung"", ""bilateral pulmonary nodules""], [""lymph nodes"", ""asymmetrically enlarged right level IIb nodes""]]" +graph_014,Successful_treatment_of_an_elderly_patient_with_lung_squamous_cell_carcinoma_by__PMC11973309.html,"A 73-year-old man presenting with paroxysmal cough and sputum accompanied by chest pain, weight loss, and exertional asthma was admitted to a local hospital on February 13, 2023. A chest computed tomography (CT) scan revealed a mass in the right upper lobe of the lung, raising the suspicion of a malignant tumor (MT). Subsequent positron electron tomography (PET)-CT indicated an irregular lobulated soft tissue mass in the apical segment of the right lung upper lobe, measuring approximately 4.1×3.5 cm and showing increased fluorodeoxyglucose (FDG) uptake (SUV value) and spiculated margins, suggestive of lung cancer (likely squamous cell carcinoma). There were tiny nodular shadows about 0.3 cm in diameter surrounding the mass, and the possibility of metastasis was not ruled out. Several enlarged lymph nodes were visible in regions 10R, 4R, and 2R, the largest measuring approximately 1.7 cm in diameter. that showed varying degrees of increased FDG uptake, suggesting possible metastasis in some lymph nodes. On March 3, 2023, a CT-guided biopsy of the right upper lobe lung mass was performed at our hospital. According to the pathology report (Figure 1), combined with the patient’s medical history and immunohistochemical markers, squamous cell carcinoma was considered (Note: CK7-, CK20-, CK5/6-, NapsinA-, CD56-, P40+, Syn-, CgA-, CD56-, TTF-1-, Ki-67 75%). As shown in the microscopic cellular morphology and tissue architecture ofFigure 1, the entire field demonstrates complete loss of normal pulmonary tissue structure.","Diagnosed with stage cT2bN2M0 right lung squamous cell carcinoma on March 14, 2023. Immunotherapy combined with chemotherapy was started: paclitaxel liposome 240 mg on d1, carboplatin 500 mg on d1, and tislelizumab 200 mg on d2, every 3 weeks (q3w). Grade III thrombocytopenia occurred post-treatment, with a nadir of 30 × 10^9/L. Immunotherapy regimen was adjusted for the first cycle: tislelizumab 200 mg on d0 + paclitaxel liposome 120 mg on d1, 90 mg on d8 + carboplatin 150 mg on d2, 100 mg on d3-5, every 3 weeks (q3w). However, on May 16, 2023, bacteremia and herpes zoster infection were observed, so antitumor treatment was halted.","Vancomycin was given for anti-infection and anti-viral treatment. After active treatment, the first reexamination on May 29, 2023, with a repeat enhanced chest CT showed an irregular thin-walled cystic lesion in the right upper lobe with fine line compartments, measuring approximately 32×25×27 mm, with enlarged and moderately enhanced lymph nodes in the 10R, 4R, and 2R regions. Compared to the March 3, 2023 CT, the solid component of the right upper lobe mass had essentially disappeared, and the mediastinal lymph nodes were similar in size. Response assessment indicated partial remission, and the second cycle of immunotherapy combined with chemotherapy was administered on June 27, 2023.","[""malignant tumor"", ""lung cancer""]","[""squamous cell carcinoma""]",True,"[[""squamous cell carcinoma"", ""lymph nodes""]]" +graph_015,A_case_of_obstructive_shock_and_transient_ischemic_attack_from_intracardiac_meta_PMC11981378.html,"- Patient presented to ER 8 days after initial diagnosis of intracardiac metastasis of NSCLC. +- On admission, patient appeared lethargic, tachycardic with irregular rhythm, decreased breath sounds on the right, and tender right upper quadrant due to rib fractures. Heart rate was 110 bpm, blood pressure 96/60 mmHg, respiratory rate 22, and saturation of 100%. Patient treated for hypotension with IV fluids. +- CT of head negative for acute intracranial processes. CT of abdomen and pelvis showed mildly displaced rib fractures, right kidney interpolar cyst with new areas of internal hyperdensity (suspected benign cysts). No other new presentations appreciated. +- Laboratory values during the admission: + - Hemoglobin (g/dL): 9.6, 9.9, 10.4 + - Hematocrit (%): 28.3, 30.2, 31.4 + - Platelets (K/uL): 146, 128, 170 + - WBC (K/uL): 19.5, 16.29, 20.71 + - Sodium (mEq/L): 129, 128, 127 + - Potassium (mEq/L): 3.7, 4, 4.7 + - Chloride (mEq/L): 102, 100, 101 + - Bicarbonate (mmol/L): 24, 23, 25 + - Glucose (mg/dL): 120, 130, 110 + - Creatinine (mg/dL): 1.2, 1.3, 1.1 + - Urea nitrogen (mg/dL): 20, 22, 18 + - Calcium (mg/dL): 9.5, 10.2, 9.8 + - Phosphate (mg/dL): 4.2, 4.5, 4.0 + - Lactate dehydrogenase (LDH) (U/L): 250, 280, 220 + - Aspartate aminotransferase (AST) (U/L): 40, 45, 35 + - Alanine aminotransferase (ALT) (U/L): 30, 35, 25 + - Total bilirubin (mg/dL): 1.2, 1.5, 1.0 + - Direct bilirubin (mg/dL): 0.8, 1.0, 0.7 + - Alkaline phosphatase (ALP) (U/L): 120, 140, 100 + - Gamma-glutamyl transferase (GGT) (U/L): 50, 60, 40 + +2 days post-ER admission: Patient developed symptoms suggestive of a transient ischemic attack (TIA) with right facial droop and left pronator drift. +CT-Angiography did not show any large vessel occlusion or acute intracranial process. +The deficits resolved in 6 hours; however, the patient still had ongoing tachycardia and uncontrolled atrial fibrillation. + +Patient was diagnosed with locally advanced non-small cell lung cancer (NSCLC) stage IIIB (T4N2Mx) metastatic non-small cell lung carcinoma of squamous cell histology. +Endobronchial ultrasound-guided fine-needle aspiration confirmed the diagnosis. +CT angiogram revealed a large hypermetabolic mass in the right lower lobe extending into the mediastinum with enlarged hypermetabolic subcarinal nodes, irregular mass measuring approximately 8.7 × 4.6 cm, partial atelectasis of the right middle and lower lobes, small to moderate low-density right pleural effusion. +Tumor thrombus in the left atrium measuring 3.4 × 6.3 cm, interfering with the mitral valve function. +Echocardiogram showed that the mass was invading into the left atrium. + +Patient underwent palliative care for symptom management. + +2 days post-ER admission: TIA with right facial droop and left pronator drift +CT-Angiography: no large vessel occlusion or acute intracranial process +Discharged to hospice care","Patient presented to ER with intracardiac metastasis of NSCLCTransient ischemic attack (TIA) with right facial droop and left pronator driftCT-Angiography showed no large vessel occlusion or acute intracranial process; patient discharged to hospice care","Patient presented to ER with intracardiac metastasis of NSCLC (initial diagnosis) +2 days post-ER admission: Transient ischemic attack (TIA) with right facial droop and left pronator drift +after TIA: CT-Angiography showed no large vessel occlusion or acute intracranial process; patient discharged to hospice care","[""non-small cell lung cancer""]","[""squamous cell histology""]",True,"[[""left atrium"", ""tumor thrombus""], [""right lower lobe"", ""large hypermetabolic mass""], [""mediastinum"", ""enlarged hypermetabolic subcarinal nodes""]]" +graph_016,Precise_Localization_of_the_Subsolid_Lesion_by_Colour_Marking_under_CT_Guided_Co_PMC12040305.html,"51-year-old female patient with a subsolid pulmonary lesion. The lesion was followed up for 4 years and subsequently resected videothoracoscopically after preoperative labeling with a mixture of blue dye and contrast agent. +Born in 1970, underwent resection of malignant melanoma in April 2013. +Suspicious lymph node (LU) in the left axilla detected on ultrasound, biopsy confirmed metastasis of malignant melanoma. PET/CT showed solitary finding in the left axilla. Dissection of the left axilla performed, only one of 19 LNs affected by metastasis. Molecular genetic testing revealed BRAF mutation at codon 600, targeted therapy with BRAF inhibitors deployed. +Routine CT scan of lungs in November 2017 detected new asymptomatic lesion in segment S10 of right lower lobe, measuring 7 mm in size. Follow-up CT scan in June 2020 showed lesion changed character to subsolid lesion with solid component. PET/CT scan in July 2020 confirmed persistence of the lesion without increased metabolic activity. +A further follow-up in April 2021 confirmed persistence and additionally showed a slight size progression of the solid component of the lesion. +The resection lines from the tumor margin to the resection margins were adequate, with the smallest measured dimension of 13 mm. No metastatic process was found in the examined mediastinal lymphatic nodes. The postoperative course was uneventful, and the patient was discharged to home care on the fourth day after surgery. +She continues to be followed up regularly and remains free of signs of disease recurrence.","51-year-old female patient with a subsolid pulmonary lesion. The lesion was followed up for 4 years and subsequently resected videothoracoscopically after preoperative labeling with a mixture of blue dye and contrast agent. +Born in 1970, underwent resection of malignant melanoma in April 2013. +Suspicious lymph node (LU) in the left axilla detected on ultrasound, biopsy confirmed metastasis of malignant melanoma. PET/CT showed solitary finding in the left axilla. Dissection of the left axilla performed, only one of 19 LNs affected by metastasis. Molecular genetic testing revealed BRAF mutation at codon 600, targeted therapy with BRAF inhibitors deployed. +Routine CT scan of lungs in November 2017 detected new asymptomatic lesion in segment S10 of right lower lobe, measuring 7 mm in size. Follow-up CT scan in June 2020 showed lesion changed character to subsolid lesion with solid component. PET/CT scan in July 2020 confirmed persistence of the lesion without increased metabolic activity. +A further follow-up in April 2021 confirmed persistence and additionally showed a slight size progression of the solid component of the lesion. +The resection lines from the tumor margin to the resection margins were adequate, with the smallest measured dimension of 13 mm. No metastatic process was found in the examined mediastinal lymphatic nodes. The postoperative course was uneventful, and the patient was discharged to home care on the fourth day after surgery. +She continues to be followed up regularly and remains free of signs of disease recurrence.","51-year-old female patient with a subsolid pulmonary lesion. The lesion was followed up for 4 years and subsequently resected videothoracoscopically after preoperative labeling with a mixture of blue dye and contrast agent. +Born in 1970, underwent resection of malignant melanoma in April 2013. +Suspicious lymph node (LU) in the left axilla detected on ultrasound, biopsy confirmed metastasis of malignant melanoma. PET/CT showed solitary finding in the left axilla. Dissection of the left axilla performed, only one of 19 LNs affected by metastasis. Molecular genetic testing revealed BRAF mutation at codon 600, targeted therapy with BRAF inhibitors deployed. +Routine CT scan of lungs in November 2017 detected new asymptomatic lesion in segment S10 of right lower lobe, measuring 7 mm in size. Follow-up CT scan in June 2020 showed lesion changed character to subsolid lesion with solid component. PET/CT scan in July 2020 confirmed persistence of the lesion without increased metabolic activity. +A further follow-up in April 2021 confirmed persistence and additionally showed a slight size progression of the solid component of the lesion. +The resection lines from the tumor margin to the resection margins were adequate, with the smallest measured dimension of 13 mm. No metastatic process was found in the examined mediastinal lymphatic nodes. The postoperative course was uneventful, and the patient was discharged to home care on the fourth day after surgery. +She continues to be followed up regularly and remains free of signs of disease recurrence.","[""malignant melanoma""]","[""melanoma"", ""lung cancer""]",True,"[[""left axilla"", ""lymph node""], [""right lower lobe"", ""lung""]]" diff --git a/src/benchmark/output/results/testset/graph_html_metadata.csv b/src/benchmark/output/results/testset/graph_html_metadata.csv new file mode 100644 index 0000000..7e8bd19 --- /dev/null +++ b/src/benchmark/output/results/testset/graph_html_metadata.csv @@ -0,0 +1,411 @@ +graph_id,source_file,timeline_1,timeline_2,timeline_3,cancers,specific_cancers,has_metastasis,metastasis_locations +graph_001,Intriguing_Encounter__Unveiling_Squamous_Cell_Carcinoma_Lung_with_Rare_Bilateral_PMC12020972.html,"44-year-old male diagnosed as squamous cell carcinoma of the lung +Pituitary metastasis identified on 18F-FDG PET/CT +Renal metastasis identified on 18F-FDG PET/CT +Right-sided chest pain for 2 months +Dry cough for 2 months +Fever (on-off) for 2 months +Hematuria for 2 months +No history of Antitubercular treatment (ATT) intake +Tobacco chewer for >20 years +Decreased air entry on the right side of the lung +Contrast-enhanced computed tomography (CECT) thorax revealed a heterogeneous lesion in the mediastinal region abutting the horizontal fissure and cavitation within +Lesion associated with multiple centrilobular nodules arranged in a linear branching pattern +Bronchoscopy done with bronchoscopic-guided biopsy +Bronchoalveolar lavage (BAL) fluid samples taken +BAL sample sent for cytopathological examination was negative for malignant cells +18F-FDG PET/CT scan revealed FDG-avid well-defined soft tissue primary mass measuring 5.6 cm x 7.7 cm x 8.3 cm in size with spiculated margins in the upper lobe of the right lung with collapse and consolidation of right lung +FDG avid metastases to mediastinal, abdominopelvic lymph nodes and right-sided pleural deposits +Multiple sub-centimetric to centimetric-sized bilateral lung nodules were noted +It was associated with multiple FDG avid brain lesions involving the bilateral cerebral cortex, cerebellum and pituitary +FDG avid bilateral hypodense few (3 in number) soft tissue density bilateral renal masses (Figure 1b, largest measuring 2.8 cm x 2.6 cm) +Multiple lytic skeletal lesions [Figure 1d], few of them with soft tissue component involvement were noted","44-year-old male diagnosed as squamous cell carcinoma of the lung +Pituitary metastasis identified on 18F-FDG PET/CT +Renal metastasis identified on 18F-FDG PET/CT +Right-sided chest pain for 2 months +Dry cough for 2 months +Fever (on-off) for 2 months +Hematuria for 2 months +No history of Antitubercular treatment (ATT) intake +Tobacco chewer for >20 years +Decreased air entry on the right side of the lung +Contrast-enhanced computed tomography (CECT) thorax revealed a heterogeneous lesion in the mediastinal region abutting the horizontal fissure and cavitation within +Lesion associated with multiple centrilobular nodules arranged in a linear branching pattern +Bronchoscopy done with bronchoscopic-guided biopsy +Bronchoalveolar lavage (BAL) fluid samples taken +BAL sample sent for cytopathological examination was negative for malignant cells +18F-FDG PET/CT scan revealed FDG-avid well-defined soft tissue primary mass measuring 5.6 cm x 7.7 cm x 8.3 cm in size with spiculated margins in the upper lobe of the right lung with collapse and consolidation of right lung +FDG avid metastases to mediastinal, abdominopelvic lymph nodes and right-sided pleural deposits +Multiple sub-centimetric to centimetric-sized bilateral lung nodules were noted +It was associated with multiple FDG avid brain lesions involving the bilateral cerebral cortex, cerebellum and pituitary +FDG avid bilateral hypodense few (3 in number) soft tissue density bilateral renal masses (Figure 1b, largest measuring 2.8 cm x 2.6 cm) +Multiple lytic skeletal lesions [Figure 1d], few of them with soft tissue component involvement were noted","44-year-old male diagnosed as squamous cell carcinoma of the lung +Pituitary metastasis identified on 18F-FDG PET/CT +Renal metastasis identified on 18F-FDG PET/CT +Right-sided chest pain for 2 months +Dry cough for 2 months +Fever (on-off) for 2 months +Hematuria for 2 months +No history of Antitubercular treatment (ATT) intake +Tobacco chewer for >20 years +Decreased air entry on the right side of the lung +Contrast-enhanced computed tomography (CECT) thorax revealed a heterogeneous lesion in the mediastinal region abutting the horizontal fissure and cavitation within +Lesion associated with multiple centrilobular nodules arranged in a linear branching pattern +Bronchoscopy done with bronchoscopic-guided biopsy +Bronchoalveolar lavage (BAL) fluid samples taken +BAL sample sent for cytopathological examination was negative for malignant cells +18F-FDG PET/CT scan revealed FDG-avid well-defined soft tissue primary mass measuring 5.6 cm x 7.7 cm x 8.3 cm in size with spiculated margins in the upper lobe of the right lung with collapse and consolidation of right lung +FDG avid metastases to mediastinal, abdominopelvic lymph nodes and right-sided pleural deposits +Multiple sub-centimetric to centimetric-sized bilateral lung nodules were noted +It was associated with multiple FDG avid brain lesions involving the bilateral cerebral cortex, cerebellum and pituitary +FDG avid bilateral hypodense few (3 in number) soft tissue density bilateral renal masses (Figure 1b, largest measuring 2.8 cm x 2.6 cm) +Multiple lytic skeletal lesions [Figure 1d], few of them with soft tissue component involvement were noted","[""lung cancer""]","[""squamous cell carcinoma""]",True,"[[""brain"", ""bilateral cerebral cortex""], [""brain"", ""cerebellum""], [""brain"", ""pituitary""], [""kidneys"", ""bilateral renal masses""], [""skeleton"", ""lytic skeletal lesions""], [""lymph nodes"", ""mediastinal lymph nodes""], [""lymph nodes"", ""abdominopelvic lymph nodes""], [""pleura"", ""right-sided pleural deposits""]]" +graph_002,_A_Case_of_Multiple_Primary_Pulmonary_Neuroendocrine_Carcinoma_with_EML4_ALK_Fus_PMC11986677.html,"* 2019-03-19: 大细胞神经内分泌癌(大肿瘤)在右肺下叶发现,患者接受手术切除 +* 2022-04-27: 病灶稳定,无肿瘤复发或转移 +* 2023-08-01: 左主支气管略狭窄 +* 2023-10-14: 支气管镜检查发现左主支气管新生物阻塞管腔约50%,病理提示为小细胞肺癌(SCLC) +* 2024-05-01: 开始服用阿来替尼600 mg bid,化疗3个周期后停止 +* 2024-10-01: 复查胸腹部CT、单光子发射计算机断层扫描全身骨显象均未发现疾病新进展","[""* 2019-03-19: 大细胞神经内分泌癌(大肿瘤)在右肺下叶发现,患者接受手术切除\n* 2022-04-27: 病灶稳定,无肿瘤复发或转移\n* 2023-08-01: 左主支气管略狭窄\n* 2023-10-14: 支气管镜检查发现左主支气管新生物阻塞管腔约50%,病理提示为小细胞肺癌(SCLC)\n* 2024-05-01: 开始服用阿来替尼600 mg bid,化疗3个周期后停止\n* 2024-10-01: 复查胸腹部CT、单光子发射计算机断层扫描全身骨显象均未发现疾病新进展""]",,"[""\u764c"", ""\u80bf\u7624"", ""\u6076\u6027\u80bf\u7624""]","[""\u5927\u7ec6\u80de\u795e\u7ecf\u5185\u5206\u6ccc\u764c"", ""\u5c0f\u7ec6\u80de\u80ba\u764c""]",False,[] +graph_003,Management_of_malignant_inferior_vena_cava_syndrome__IVCS__by_endovascular_bridg_PMC12019825.html,"A 73-year-old male patient underwent a procedure to relieve significant stenosis of the suprahepatic IVC due to compression. Under local anesthesia, a 5F sheath was inserted into the right basilic vein and a 10F sheath into the right common femoral vein. Venography showed a significant compression of the suprahepatic IVC. The IVC stenosis was passed using a 0,035-inch hydrophilic guidewire and a multipurpose catheter. Initially, mechanical thrombectomy was performed to exclude possible thrombosis; however, no thrombotic material was extracted. After placing a stiffer exchange guidewire with its distal tip positioned in the right subclavian vein, 3 uncovered self-expanding nitinol sinus-XL stents (OptiMed, Ettlingen, Germany) were deployed in tandem from the SVC to the IVC with an overlap between the stents. Using venography measurements, stents measuring 18 × 80 mm, 18 × 60 mm, and 16 × 80 mm were placed in a cephalic-to-caudal orientation. The final venography revealed adequate flow through the vena cava and bridging stents.","A 73-year-old male patient underwent a procedure to relieve significant stenosis of the suprahepatic IVC due to compression. Under local anesthesia, a 5F sheath was inserted into the right basilic vein and a 10F sheath into the right common femoral vein. Venography showed a significant compression of the suprahepatic IVC. The IVC stenosis was passed using a 0,035-inch hydrophilic guidewire and a multipurpose catheter. Initially, mechanical thrombectomy was performed to exclude possible thrombosis; however, no thrombotic material was extracted. After placing a stiffer exchange guidewire with its distal tip positioned in the right subclavian vein, 3 uncovered self-expanding nitinol sinus-XL stents (OptiMed, Ettlingen, Germany) were deployed in tandem from the SVC to the IVC with an overlap between the stents. Using venography measurements, stents measuring 18 × 80 mm, 18 × 60 mm, and 16 × 80 mm were placed in a cephalic-to-caudal orientation. The final venography revealed adequate flow through the vena cava and bridging stents. + +Diagnosed with SCLC 15 months previously. Received 6 cycles of carboplatin/etoposide chemotherapy, followed by thoracic radiotherapy and prophylactic cranial irradiation. Lost 20 kg of body weight within 12 months. Performance status was recorded (4) on the Eastern Cooperative Oncology Group scale on the day of admission. Vital signs: systolic/diastolic blood pressure 100/70 mmHg, heart rate 90 bpm, oxygen saturation 89%, body temperature 36,9°C/98° F. Laboratory results: hemoglobin 12,6 g/dl (normal range 14-18 g/dl), platelets 260 × 103/μl (150-450 × 103/μl), alkaline phosphatase 94 U/L (26-112 U/L), alanine aminotransferase 40 U/L (5-35 U/L), aspartate aminotransferase 34 U/L (<40 U/L), total bilirubin 1.2 mg/dl, and creatinine 0.9 mg/dl. A large tumor involving the right lower and middle lung lobe measured (17,6 × 19,3 × 18,6) mm (maximal axial x coronal x sagittal dimension), which causes significant compression of the IVC (yellow arrows) mainly at the level of its entry into the right heart atrium. Multiple enlarged mediastinal lymph nodes, infiltration of the visceral pleura and right hemidiaphragm, ascites, and peritoneal metastases were other salient findings underlining disease progression. + +Three self-expanding stents (yellow arrows) were positioned in tandem from the superior vena cava (SVC) (red arrow shows the most cephalic part of the stents) to the IVC to restore venous patency. Fig. 3. The final venography revealed adequate flow through the bridging stents (yellow arrows). The patient's IVCS symptoms, mainly trunk and lower limb edema, were significantly alleviated within 48 h. Low-molecular-weight heparin was administered for anticoagulation. + +The patient died with a large tumor involving the right lower and middle lung lobe measured (17,6 × 19,3 × 18,6) mm (maximal axial x coronal x sagittal dimension), which causes significant compression of the IVC (yellow arrows) mainly at the level of its entry into the right heart atrium.","- Diagnosed with SCLC 15 months previously +- Received 6 cycles of carboplatin/etoposide chemotherapy, followed by thoracic radiotherapy and prophylactic cranial irradiation +- Lost 20 kg of body weight within 12 months +- Performance status was recorded (4) on the Eastern Cooperative Oncology Group scale on the day of admission +- Underwent a procedure to relieve significant stenosis of the suprahepatic IVC due to compression +- Three self-expanding stents were positioned in tandem from the superior vena cava (SVC) to the IVC to restore venous patency +- The patient's IVCS symptoms, mainly trunk and lower limb edema, were significantly alleviated within 48 h +- Low-molecular-weight heparin was administered for anticoagulation +- The patient died with a large tumor involving the right lower and middle lung lobe measured (17,6 × 19,3 × 18,6) mm (maximal axial x coronal x sagittal dimension), which causes significant compression of the IVC (yellow arrows) mainly at the level of its entry into the right heart atrium","[""SCLC""]","[""Small Cell Lung Cancer""]",True,"[[""mediastinal lymph nodes"", ""enlarged""], [""visceral pleura"", ""infiltration""], [""right hemidiaphragm"", ""infiltration""], [""peritoneum"", ""metastases""]]" +graph_004,Metastatic_INI_1_deficient_undifferentiated_lung_cancer_with_EGFR_19del_mutation_PMC12021797.html,"81-year-old female patient with a 10-day history of progressive chest tightness and dyspnea worsened with physical activity +Chest computed tomography (CT) imaging revealed a large left-sided pleural effusion +Thoracentesis was performed, and the drained pleural fluid was sent to the Department of Pathology for further evaluation +Following thoracic drainage, a subsequent chest CT scan revealed a heterogeneous mass in the left inferior lobe, measuring approximately 6.7 cm × 2.8 cm in its largest cross-section +Contrast-enhanced imaging demonstrated irregular enhancement patterns suggestive of a left lung tumor +Pulmonary window analysis identified multiple nodular high-density foci scattered across both lungs, raising suspicion for bilateral pulmonary metastases +Mediastinal window assessment further revealed bilateral mediastinal lymphadenopathy and enlarged lymph nodes at the left pulmonary hilum, consistent with lymph node metastasis +An abdominal CT scan detected multiple low-density hepatic nodules of varying sizes, with the largest lesion (2.9 cm × 2.6 cm) located in the right hepatic lobe +Annular enhancement was noted in the arterial phase, while marked hypodensity was observed in the portal venous phase, demonstrating a “bull’s eye sign” characteristic of multiple hepatic metastases +Additionally, an enhanced brain CT identified an irregular heterogeneously enhancing mass within the right frontal lobe, with a maximum cross-sectional area of 2.1 cm × 1.6 cm, consistent with brain metastasis +Genetic testing revealed a mutation in the EGFR gene +Next-generation sequencing (NGS) analysis showed that the patient's tumor had a high level of PD-L1 expression +The patient underwent treatment with osimertinib, an EGFR tyrosine kinase inhibitor","81-year-old female patient with a 10-day history of progressive chest tightness and dyspnea worsened with physical activity +Chest computed tomography (CT) imaging revealed a large left-sided pleural effusion +Thoracentesis was performed, and the drained pleural fluid was sent to the Department of Pathology for further evaluation +Following thoracic drainage, a subsequent chest CT scan revealed a heterogeneous mass in the left inferior lobe, measuring approximately 6.7 cm × 2.8 cm in its largest cross-section +Contrast-enhanced imaging demonstrated irregular enhancement patterns suggestive of a left lung tumor +Pulmonary window analysis identified multiple nodular high-density foci scattered across both lungs, raising suspicion for bilateral pulmonary metastases +Mediastinal window assessment further revealed bilateral mediastinal lymphadenopathy and enlarged lymph nodes at the left pulmonary hilum, consistent with lymph node metastasis +An abdominal CT scan detected multiple low-density hepatic nodules of varying sizes, with the largest lesion (2.9 cm × 2.6 cm) located in the right hepatic lobe +Annular enhancement was noted in the arterial phase, while marked hypodensity was observed in the portal venous phase, demonstrating a “bull’s eye sign” characteristic of multiple hepatic metastases +Additionally, an enhanced brain CT identified an irregular heterogeneously enhancing mass within the right frontal lobe, with a maximum cross-sectional area of 2.1 cm × 1.6 cm, consistent with brain metastasis +Genetic testing revealed a mutation in the EGFR gene +Next-generation sequencing (NGS) analysis showed that the patient's tumor had a high level of PD-L1 expression +The patient underwent treatment with osimertinib, an EGFR tyrosine kinase inhibitor","81-year-old female patient with a 10-day history of progressive chest tightness and dyspnea worsened with physical activity +Chest computed tomography (CT) imaging revealed a large left-sided pleural effusion +Thoracentesis was performed, and the drained pleural fluid was sent to the Department of Pathology for further evaluation +Following thoracic drainage, a subsequent chest CT scan revealed a heterogeneous mass in the left inferior lobe, measuring approximately 6.7 cm × 2.8 cm in its largest cross-section +Contrast-enhanced imaging demonstrated irregular enhancement patterns suggestive of a left lung tumor +Pulmonary window analysis identified multiple nodular high-density foci scattered across both lungs, raising suspicion for bilateral pulmonary metastases +Mediastinal window assessment further revealed bilateral mediastinal lymphadenopathy and enlarged lymph nodes at the left pulmonary hilum, consistent with lymph node metastasis +An abdominal CT scan detected multiple low-density hepatic nodules of varying sizes, with the largest lesion (2.9 cm × 2.6 cm) located in the right hepatic lobe +Annular enhancement was noted in the arterial phase, while marked hypodensity was observed in the portal venous phase, demonstrating a “bull’s eye sign” characteristic of multiple hepatic metastases +Additionally, an enhanced brain CT identified an irregular heterogeneously enhancing mass within the right frontal lobe, with a maximum cross-sectional area of 2.1 cm × 1.6 cm, consistent with brain metastasis +Genetic testing revealed a mutation in the EGFR gene +Next-generation sequencing (NGS) analysis showed that the patient's tumor had a high level of PD-L1 expression +The patient underwent treatment with osimertinib, an EGFR tyrosine kinase inhibitor","[""lung cancer""]","[""non-small cell lung cancer""]",True,"[[""liver"", ""multiple low-density hepatic nodules""], [""lymph nodes"", ""bilateral mediastinal lymphadenopathy""], [""brain"", ""irregular heterogeneously enhancing mass""]]" +graph_005,Neoadjuvant_Targeted_Therapy_with_Dacomitinib_in_a_Stage_IIIA_Non_Small_Cell_Lun_PMC11980937.html,"A 54-year-old Chinese male with 30 years of smoking history presented with a worsening cough for 3 months, with a performance status score of 1. Enhanced computed tomography (CT) revealed a 22 mm × 12 mm × 16 mm mass in the right upper lobe with invasion in the right hilum and mediastinal (Figure 1AandB), which were confirmed by positron emission tomography-CT (PET-CT) scan. Immunohistochemistry (IHC) analysis of the biopsy from the lesion in the upper right lobe of the lung was positive for TTF-1, NpA, CK7, CD5/6 and Ki67 (60%); and negative for p40, p63 and CD56. The patient was diagnosed with stage IIIA lung adenocarcinoma (cT1cN2M0). Follow-up targeted NGS analysis of his lung lesion biopsy identified an EGFRG719X with a mutant allele frequency (MAF) of 3.8%. Two cycles of PC chemotherapy (pemetrexed with 0.9g d1 and carboplatin with 600mg d1) and dacomitinib (30mg) were given. + +The patient underwent video-assisted thoracic surgery (VATS) with right upper lobectomy in July 2023. The tumor was located in the right upper lobe, measuring approximately 1.5*1.5 cm with unclear boundaries. Postoperative pathology results indicated that 10% of the tumor cells remained alive, surrounded by significant fibrosis, necrosis, as well as inflammatory and immune cells. After chemotherapy and dacomitinib induction, there were no lymph node metastases, and the pathological stage was ypT1bN0M0. Two cycles of PC chemotherapy were administered, followed by targeted therapy with dacomitinib as adjuvant treatment for 2 more years in accordance with the diagnosis and treatment guidelines. At the final follow-up in September 2024, no adverse events or disease progression had occurred. A progression-free survival (PFS) of more than 14 months was achieved.","A 54-year-old Chinese male with 30 years of smoking history presented with a worsening cough for 3 months, with a performance status score of 1. Enhanced computed tomography (CT) revealed a 22 mm × 12 mm × 16 mm mass in the right upper lobe with invasion in the right hilum and mediastinal (Figure 1AandB), which were confirmed by positron emission tomography-CT (PET-CT) scan. Immunohistochemistry (IHC) analysis of the biopsy from the lesion in the upper right lobe of the lung was positive for TTF-1, NpA, CK7, CD5/6 and Ki67 (60%); and negative for p40, p63 and CD56. The patient was diagnosed with stage IIIA lung adenocarcinoma (cT1cN2M0). Follow-up targeted NGS analysis of his lung lesion biopsy identified an EGFRG719X with a mutant allele frequency (MAF) of 3.8%. Two cycles of PC chemotherapy (pemetrexed with 0.9g d1 and carboplatin with 600mg d1) and dacomitinib (30mg) were given. + +The patient underwent video-assisted thoracic surgery (VATS) with right upper lobectomy in July 2023. The tumor was located in the right upper lobe, measuring approximately 1.5*1.5 cm with unclear boundaries. Postoperative pathology results indicated that 10% of the tumor cells remained alive, surrounded by significant fibrosis, necrosis, as well as inflammatory and immune cells. After chemotherapy and dacomitinib induction, there were no lymph node metastases, and the pathological stage was ypT1bN0M0. Two cycles of PC chemotherapy were administered, followed by targeted therapy with dacomitinib as adjuvant treatment for 2 more years in accordance with the diagnosis and treatment guidelines. At the final follow-up in September 2024, no adverse events or disease progression had occurred. A progression-free survival (PFS) of more than 14 months was achieved. + +The patient received two cycles of PC chemotherapy (pemetrexed with 0.9g d1 and carboplatin with 600mg d1) and dacomitinib (30mg). The patient underwent video-assisted thoracic surgery (VATS) with right upper lobectomy in July 2023.","A 54-year-old Chinese male with 30 years of smoking history presented with a worsening cough for 3 months, with a performance status score of 1. Enhanced computed tomography (CT) revealed a 22 mm × 12 mm × 16 mm mass in the right upper lobe with invasion in the right hilum and mediastinal (Figure 1AandB), which were confirmed by positron emission tomography-CT (PET-CT) scan. Immunohistochemistry (IHC) analysis of the biopsy from the lesion in the upper right lobe of the lung was positive for TTF-1, NpA, CK7, CD5/6 and Ki67 (60%); and negative for p40, p63 and CD56. The patient was diagnosed with stage IIIA lung adenocarcinoma (cT1cN2M0). Follow-up targeted NGS analysis of his lung lesion biopsy identified an EGFRG719X with a mutant allele frequency (MAF) of 3.8%. Two cycles of PC chemotherapy (pemetrexed with 0.9g d1 and carboplatin with 600mg d1) and dacomitinib (30mg) were given. + +The patient underwent video-assisted thoracic surgery (VATS) with right upper lobectomy in July 2023. The tumor was located in the right upper lobe, measuring approximately 1.5*1.5 cm with unclear boundaries. Postoperative pathology results indicated that 10% of the tumor cells remained alive, surrounded by significant fibrosis, necrosis, as well as inflammatory and immune cells. After chemotherapy and dacomitinib induction, there were no lymph node metastases, and the pathological stage was ypT1bN0M0. Two cycles of PC chemotherapy were administered, followed by targeted therapy with dacomitinib as adjuvant treatment for 2 more years in accordance with the diagnosis and treatment guidelines. At the final follow-up in September 2024, no adverse events or disease progression had occurred. A progression-free survival (PFS) of more than 14 months was achieved. + +The patient received two cycles of PC chemotherapy (pemetrexed with 0.9g d1 and carboplatin with 600mg d1) and dacomitinib (30mg). The patient underwent video-assisted thoracic surgery (VATS) with right upper lobectomy in July 2023.","[""Lung Cancer""]","[""Lung Adenocarcinoma""]",False,[] +graph_006,Lung_cancer_with_diabetes_mellitus_and_polymyalgia_rheumatica_during_long_term_n_PMC12001326.html,"Lung cancer (stage IV) diagnosedRadiation therapy for pelvic lesion (45 Gy/15 Fr)Chemotherapy (carboplatin + paclitaxel + bevacizumab for four courses)Bevacizumab maintenance therapyRight adrenal metastasis largerNew left adrenal metastasis observedRe-enlargement of the right adrenal metastasis detectedRadiation therapy for the right adrenal lesion (50 Gy/25 Fr)Chemotherapy (two courses of docetaxel monotherapy) administeredEnlargement of the left adrenal metastasis detectedNivolumab monotherapy as fifth-line therapy initiatedDiabetes mellitus (DM) diagnosed: Blood glucose level increased to 468 mg/dl, Urinary ketones negative, pancreatic amylase not elevated, and autoantibodies including anti-glutamic acid decarboxylase (GAD) antibodies negativePolymyalgia rheumatica (PMR) diagnosed: Muscle pain in the femoral area and neck appeared, which did not improve with nonsteroidal anti-inflammatory drugs. CT and magnetic resonance imaging showed no obvious cancer progressionNivolumab treatment continued","Lung cancer (stage IV) diagnosedRadiation therapy for pelvic lesion (45 Gy/15 Fr)Chemotherapy (carboplatin + paclitaxel + bevacizumab for four courses)Bevacizumab maintenance therapyRight adrenal metastasis largerNew left adrenal metastasis observedRe-enlargement of the right adrenal metastasis detectedRadiation therapy for the right adrenal lesion (50 Gy/25 Fr)Chemotherapy (two courses of docetaxel monotherapy) administeredEnlargement of the left adrenal metastasis detectedNivolumab monotherapy as fifth-line therapy initiatedDiabetes mellitus (DM) diagnosed: Blood glucose level increased to 468 mg/dl, Urinary ketones negative, pancreatic amylase not elevated, and autoantibodies including anti-glutamic acid decarboxylase (GAD) antibodies negativePolymyalgia rheumatica (PMR) diagnosed: Muscle pain in the femoral area and neck appeared, which did not improve with nonsteroidal anti-inflammatory drugs. CT and magnetic resonance imaging showed no obvious cancer progressionNivolumab treatment continued","[ + { + ""date"": ""June 2014"", + ""text"": ""Lung cancer (stage IV) diagnosed"" + }, + { + ""date"": ""July 2014"", + ""text"": ""Radiation therapy for pelvic lesion (45 Gy/15 Fr)"" + }, + { + ""date"": ""July 2014"", + ""text"": ""Chemotherapy (carboplatin + paclitaxel + bevacizumab for four courses)"" + }, + { + ""date"": ""July 2014"", + ""text"": ""Bevacizumab maintenance therapy"" + }, + { + ""date"": ""after 15 cycles of maintenance therapy"", + ""text"": ""Right adrenal metastasis larger"" + }, + { + ""date"": ""after 15 cycles of maintenance therapy"", + ""text"": ""New left adrenal metastasis observed"" + }, + { + ""date"": ""January 2018"", + ""text"": ""Re-enlargement of the right adrenal metastasis detected"" + }, + { + ""date"": ""January 2018"", + ""text"": ""Radiation therapy for the right adrenal lesion (50 Gy/25 Fr)"" + }, + { + ""date"": ""January 2018"", + ""text"": ""Chemotherapy (two courses of docetaxel monotherapy) administered"" + }, + { + ""date"": ""February 2019"", + ""text"": ""Enlargement of the left adrenal metastasis detected"" + }, + { + ""date"": ""February 2019"", + ""text"": ""Nivolumab monotherapy as fifth-line therapy initiated"" + }, + { + ""date"": ""May 2022"", + ""text"": ""Diabetes mellitus (DM) diagnosed: Blood glucose level increased to 468 mg/dl, Urinary ketones negative, pancreatic amylase not elevated, and autoantibodies including anti-glutamic acid decarboxylase (GAD) antibodies negative"" + }, + { + ""date"": ""four years and 5 months after starting nivolumab treatment"", + ""text"": ""Polymyalgia rheumatica (PMR) diagnosed: Muscle pain in the femoral area and neck appeared, which did not improve with nonsteroidal anti-inflammatory drugs. CT and magnetic resonance imaging showed no obvious cancer progression"" + }, + { + ""date"": ""four years and 5 months after starting nivolumab treatment"", + ""text"": ""Nivolumab treatment continued"" + } +]","[""Lung cancer""]","[""stage IV lung cancer""]",True,"[[""right adrenal"", ""re-enlargement""], [""left adrenal"", ""enlargement""]]" +graph_007,Case_Report__A_novel_ELMOD3_ALK_and_EML4_ALK_double_fusion_responses_to_neoadjuv_PMC12034634.html,"2020-04-20: Patient comes to hospital for physical examination +2020-05-02: Diagnosis of stage IIIA (T2aN2M0) lung adenocarcinoma confirmed +2020: NGS analysis identifies ELMOD3-ALK and EML4-ALK double fusion in tumor tissue +2020: Patient starts treatment with targeted therapy for ALK fusion +2023-01-15: Patient receives new treatment plan, including combination of chemotherapy and immunotherapy","2020-04-20: Patient comes to hospital for physical examination +2020-05-02: Diagnosis of stage IIIA (T2aN2M0) lung adenocarcinoma confirmed +2020: NGS analysis identifies ELMOD3-ALK and EML4-ALK double fusion in tumor tissue +2020: Patient starts treatment with targeted therapy for ALK fusion +2023-01-15: Patient receives new treatment plan, including combination of chemotherapy and immunotherapy","2020-04-20: Patient comes to hospital for physical examination +2020-05-02: Diagnosis of stage IIIA (T2aN2M0) lung adenocarcinoma confirmed +2020: NGS analysis identifies ELMOD3-ALK and EML4-ALK double fusion in tumor tissue +2020: Patient starts treatment with targeted therapy for ALK fusion +2023-01-15: Patient receives new treatment plan, including combination of chemotherapy and immunotherapy","[""Lung Cancer""]","[""Lung Adenocarcinoma""]",False,[] +graph_008,Case_report__pulmonary_lymphoepithelial_carcinoma_mimicking_tuberculosis__PMC11987468.html,"The patient was a 37-year-old woman who presented with intermittent cough and slight chest discomfort for 3 months. She also had a painless cervical mass for 1 month. The pathological tissue showed granulomatous inflammation, caseous necrosis, and Langhans' giant cells observed on left cervical lymph node puncture.","37-year-old woman with intermittent cough and slight chest discomfort for 3 months; painless cervical mass for 1 month; pathological tissue showed granulomatous inflammation, caseous necrosis, and Langhans’ giant cells observed on left cervical lymph node puncture; untreated congenital heart disease (patent ductus arteriosus) for 20 years; hypertension for half a year with irregular use of valsartan; mass measuring approximately 4*3 cm on the left clavicle, well-defined, poorly mobile, non-tender, and without surface ulceration or redness; Physical examination of the lungs was unremarkable. A continuous murmur was auscultated at the left sternal border; Laboratory tests of blood carcinoembryonic antigen (CEA), squamous cell carcinoma antigen, cytokeratin 19 fragment and neuron-specific enolase (NSE) were all normal; Blood routine test, liver and kidney function, electrolytes, procalcitonin (PCT), C-reactive protein (CRP) and T-lymphocyte subsets were all normal; Sputum for acid-fast bacilli (AFB) and GeneXpert MTB/RIF were negative; Blood test of EB virus showed increased antibody title of capsid antigen IgG antibody 750U/mL (Reference:0–20 U/mL), EB virus early antigen IgM antibody 2.57 COI (Cut off index reference:0-1.1) and EB virus core antigen IgG antibody 600U/mL(Reference:0–20 U/mL); Repeated ultrasound-guided left supraclavicular lymph node puncture was performed; Histopathology showed focal distribution of epithelioid cells and a few multinucleated giant cells, which suggested granulomatous inflammation (Fig.1); Staining of Acid-fast and methenamine silver were all negative; Lymph node tissue for GeneXpert MTB/RIF and TB culture were all negative; Chest CT scan showed mass(34 × 43 mm) in the middle lobe of the right lung (A,D; blue arrows) and multiple enlarged lymph nodes in mediastinum (B,C; red arrows); Lung biopsy shows lymphoepithelial carcinoma. The tumor cells are densely nestled, the tumor cells have a blurred boundary, large alveoli, eosinophilic nuclei, and the mesenchymal is accompanied by lymphocyte infiltration. (HE staining, 400×)); Immunohistochemical staining shows CK positive in tumor cells (200×); Immunohistochemical staining showed P40 positive in tumor cells (200×); In situ hybridization showed EBER positive in tumor cells (200×); Chest CT scan showed a significant improvement of the lung mass(26 × 17 mm)and reduced lymph nodes after chemotherapy and immunotherapy; Biopsy of left neck lymph node showed granulomatous inflammation. Enhanced CT scan showed mass in the middle lobe of the right lung and multiple enlarged lymph nodes in left neck, mediastinum and right hilum. Percutaneous lung biopsy was performed, showing EBV-positive poorly differentiated carcinoma consistent with lymphoepithelioma. Nasopharyngoscopy excluded nasopharyngeal carcinoma. Repeated CT 1.5 months later showed significant reduction of lung lesions and cervical enlarged lymph nodes.","37-year-old woman with intermittent cough and slight chest discomfort for 3 months; painless cervical mass for 1 month; pathological tissue showed granulomatous inflammation, caseous necrosis, and Langhans’ giant cells observed on left cervical lymph node puncture; untreated congenital heart disease (patent ductus arteriosus) for 20 years; hypertension for half a year with irregular use of valsartan; mass measuring approximately 4*3 cm on the left clavicle, well-defined, poorly mobile, non-tender, and without surface ulceration or redness; Physical examination of the lungs was unremarkable. A continuous murmur was auscultated at the left sternal border; Laboratory tests of blood carcinoembryonic antigen (CEA), squamous cell carcinoma antigen, cytokeratin 19 fragment and neuron-specific enolase (NSE) were all normal; Blood routine test, liver and kidney function, electrolytes, procalcitonin (PCT), C-reactive protein (CRP) and T-lymphocyte subsets were all normal; Sputum for acid-fast bacilli (AFB) and GeneXpert MTB/RIF were negative; Blood test of EB virus showed increased antibody title of capsid antigen IgG antibody 750U/mL (Reference:0–20 U/mL), EB virus early antigen IgM antibody 2.57 COI (Cut off index reference:0-1.1) and EB virus core antigen IgG antibody 600U/mL(Reference:0–20 U/mL); Repeated ultrasound-guided left supraclavicular lymph node puncture was performed; Histopathology showed focal distribution of epithelioid cells and a few multinucleated giant cells, which suggested granulomatous inflammation (Fig.1); Staining of Acid-fast and methenamine silver were all negative; Lymph node tissue for GeneXpert MTB/RIF and TB culture were all negative; Chest CT scan showed mass(34 × 43 mm) in the middle lobe of the right lung (A,D; blue arrows) and multiple enlarged lymph nodes in mediastinum (B,C; red arrows); Lung biopsy shows lymphoepithelial carcinoma. The tumor cells are densely nestled, the tumor cells have a blurred boundary, large alveoli, eosinophilic nuclei, and the mesenchymal is accompanied by lymphocyte infiltration. (HE staining, 400×)); Immunohistochemical staining shows CK positive in tumor cells (200×); Immunohistochemical staining showed P40 positive in tumor cells (200×); In situ hybridization showed EBER positive in tumor cells (200×); Chest CT scan showed a significant improvement of the lung mass(26 × 17 mm)and reduced lymph nodes after chemotherapy and immunotherapy; Biopsy of left neck lymph node showed granulomatous inflammation. Enhanced CT scan showed mass in the middle lobe of the right lung and multiple enlarged lymph nodes in left neck, mediastinum and right hilum. Percutaneous lung biopsy was performed, showing EBV-positive poorly differentiated carcinoma consistent with lymphoepithelioma. Nasopharyngoscopy excluded nasopharyngeal carcinoma. Repeated CT 1.5 months later showed significant reduction of lung lesions and cervical enlarged lymph nodes.","[""lymphoepithelial carcinoma""]","[""EBV-positive poorly differentiated carcinoma"", ""nasopharyngeal carcinoma""]",True,"[[""lung"", ""middle lobe""], [""lymph nodes"", ""mediastinum""], [""lymph nodes"", ""left neck""], [""lymph nodes"", ""right hilum""]]" +graph_009,Radiotherapy_for_Lung_Cancer__An_Unrecognized_Cause_of_Lung_Torsion__PMC11962223.html,"A 73-year-old lady presented with a long history of bilateral chest wall discomfort, exertional breathlessness, and chronic fatigue. She was found to have a left lung opacification on chest radiograph, which prompted a computed tomography scan and positron emission tomography-computed tomography (PET-CT) scan, which confirmed an avid 53 mm left upper lobe mass with associated hilar and mediastinal lymphadenopathy staging the disease as T3N2M0. An endobronchial ultrasound scan and biopsy (EBUS) sampling of station 11L confirmed lung adenocarcinoma metastasis. It appeared positive on the PD-L1 staining. Other immunohistochemistry (ALK/ROS/NTRK) was negative. Her lung function at this point was 51% forced expiratory volume (FEV1) (1.21) and 73% diffusing capacity of the lungs for carbon monoxide (DLCO). She consented to radical treatment with four weeks of radiotherapy dosed at 55 Gy/20 with concurrent chemotherapy. Her initial scan post radiotherapy showed a limited response to treatment, but her subsequent CT scan in a year showed that there was no tumor visible on axial images but there was apparent collapse of the left lung base. Post radiotherapy imaging showed complete response to treatment. It also showed two small bullae seen in the post aspect of the lower lobe. Five months later, she had a follow-up scan (Figures 4,5). Coronal views showed upward curving of the lower segmental bronchi and pulmonary vessels. The two small bullae initially seen in the post aspect of the lower lobe seemed to have relocated to the upper zone anteriorly. Lung torsion with 180-degree rotation was diagnosed. The patient was clinically well; hence, it did not warrant surgical referral.","A 73-year-old lady presented with a long history of bilateral chest wall discomfort, exertional breathlessness, and chronic fatigue. She was found to have a left lung opacification on chest radiograph, which prompted a computed tomography scan and positron emission tomography-computed tomography (PET-CT) scan, which confirmed an avid 53 mm left upper lobe mass with associated hilar and mediastinal lymphadenopathy staging the disease as T3N2M0. An endobronchial ultrasound scan and biopsy (EBUS) sampling of station 11L confirmed lung adenocarcinoma metastasis. It appeared positive on the PD-L1 staining. Other immunohistochemistry (ALK/ROS/NTRK) was negative. Her lung function at this point was 51% forced expiratory volume (FEV1) (1.21) and 73% diffusing capacity of the lungs for carbon monoxide (DLCO). She consented to radical treatment with four weeks of radiotherapy dosed at 55 Gy/20 with concurrent chemotherapy. Her initial scan post radiotherapy showed a limited response to treatment, but her subsequent CT scan in a year showed that there was no tumor visible on axial images but there was apparent collapse of the left lung base. Post radiotherapy imaging showed complete response to treatment. It also showed two small bullae seen in the post aspect of the lower lobe. Five months later, she had a follow-up scan (Figures 4,5). Coronal views showed upward curving of the lower segmental bronchi and pulmonary vessels. The two small bullae initially seen in the post aspect of the lower lobe seemed to have relocated to the upper zone anteriorly. Lung torsion with 180-degree rotation was diagnosed. The patient was clinically well; hence, it did not warrant surgical referral.","A 73-year-old lady presented with a long history of bilateral chest wall discomfort, exertional breathlessness, and chronic fatigue. She was found to have a left lung opacification on chest radiograph, which prompted a computed tomography scan and positron emission tomography-computed tomography (PET-CT) scan, which confirmed an avid 53 mm left upper lobe mass with associated hilar and mediastinal lymphadenopathy staging the disease as T3N2M0. An endobronchial ultrasound scan and biopsy (EBUS) sampling of station 11L confirmed lung adenocarcinoma metastasis. It appeared positive on the PD-L1 staining. Other immunohistochemistry (ALK/ROS/NTRK) was negative. Her lung function at this point was 51% forced expiratory volume (FEV1) (1.21) and 73% diffusing capacity of the lungs for carbon monoxide (DLCO). She consented to radical treatment with four weeks of radiotherapy dosed at 55 Gy/20 with concurrent chemotherapy. Her initial scan post radiotherapy showed a limited response to treatment, but her subsequent CT scan in a year showed that there was no tumor visible on axial images but there was apparent collapse of the left lung base. Post radiotherapy imaging showed complete response to treatment. It also showed two small bullae seen in the post aspect of the lower lobe. Five months later, she had a follow-up scan (Figures 4,5). Coronal views showed upward curving of the lower segmental bronchi and pulmonary vessels. The two small bullae initially seen in the post aspect of the lower lobe seemed to have relocated to the upper zone anteriorly. Lung torsion with 180-degree rotation was diagnosed. The patient was clinically well; hence, it did not warrant surgical referral.","[""lung adenocarcinoma""]","[""lung adenocarcinoma""]",True,"[[""hilar"", ""lymphadenopathy""], [""mediastinal"", ""lymphadenopathy""]]" +graph_010,Re_do_robot_assisted_salvage_lobectomy_after_esophagectomy_with_gastric_pull_up__PMC11980297.html,"55-year-old female underwent esophagectomy with gastric pull-up reconstruction for squamous cell carcinoma (SCC) of the esophagus (cT3N2M0, stage IIIB) +Six years later, computed tomography (CT) scan showed stage IA Thyroid Transcription Factor-1 (TTF-1) positive adenocarcinoma in the left upper lobe treated by stereotactic radiotherapy +Two years later, a SCC of the right upper lobe (RUL) was found with tumor diameter of 54 mm and high Programmed Death-Ligand 1 (PD-L1) expression +Pembrolizumab initiated with curative intent but showed no biological response +Salvage lobectomy including complete mediastinal lymph node dissection performed +Positioned in left lateral decubitus position, adhesions in closure-line of the previous thoracotomy and thus RATS was deemed feasible. +After standard port placement (Fig.2A), docking and instrument placement (Tip-up fenestrated grasper™, Cadière forceps™, Maryland bipolar dissector™ and the Monopolar spatula™) adhesiolysis between the lung and the chest wall and taking down dense adhesions between the lung and the intrathoracic gastric pull-up the nasogastric tube was exposed (Fig.2B). +The nasogastric tube was placed in the gastric pull-up as a safety measure. +Meticulous dissection of its vascularization enabled subsequent standard lobectomy of the RUL with complete lymph node dissection (R4, 7, 10 and 11). +After removal of the specimen and chest tube placement, a Ropivacaine® intercostal nerve block levels T4 to T9 was installed. +Total operative time was 3 h 44 min with 50 ml blood loss.","55-year-old female underwent esophagectomy with gastric pull-up reconstruction for squamous cell carcinoma (SCC) of the esophagus (cT3N2M0, stage IIIB) +Six years later, computed tomography (CT) scan showed stage IA Thyroid Transcription Factor-1 (TTF-1) positive adenocarcinoma in the left upper lobe treated by stereotactic radiotherapy +Two years later, a SCC of the right upper lobe (RUL) was found with tumor diameter of 54 mm and high Programmed Death-Ligand 1 (PD-L1) expression +Pembrolizumab initiated with curative intent but showed no biological response +Salvage lobectomy including complete mediastinal lymph node dissection performed +Positioned in left lateral decubitus position, adhesions in closure-line of the previous thoracotomy and thus RATS was deemed feasible. +After standard port placement (Fig.2A), docking and instrument placement (Tip-up fenestrated grasper™, Cadière forceps™, Maryland bipolar dissector™ and the Monopolar spatula™) adhesiolysis between the lung and the chest wall and taking down dense adhesions between the lung and the intrathoracic gastric pull-up the nasogastric tube was exposed (Fig.2B). +The nasogastric tube was placed in the gastric pull-up as a safety measure. +Meticulous dissection of its vascularization enabled subsequent standard lobectomy of the RUL with complete lymph node dissection (R4, 7, 10 and 11). +After removal of the specimen and chest tube placement, a Ropivacaine® intercostal nerve block levels T4 to T9 was installed. +Total operative time was 3 h 44 min with 50 ml blood loss.","55-year-old female underwent esophagectomy with gastric pull-up reconstruction for squamous cell carcinoma (SCC) of the esophagus (cT3N2M0, stage IIIB) +Six years later, computed tomography (CT) scan showed stage IA Thyroid Transcription Factor-1 (TTF-1) positive adenocarcinoma in the left upper lobe treated by stereotactic radiotherapy +Two years later, a SCC of the right upper lobe (RUL) was found with tumor diameter of 54 mm and high Programmed Death-Ligand 1 (PD-L1) expression +Pembrolizumab initiated with curative intent but showed no biological response +Salvage lobectomy including complete mediastinal lymph node dissection performed +Positioned in left lateral decubitus position, adhesions in closure-line of the previous thoracotomy and thus RATS was deemed feasible. +After standard port placement (Fig.2A), docking and instrument placement (Tip-up fenestrated grasper™, Cadière forceps™, Maryland bipolar dissector™ and the Monopolar spatula™) adhesiolysis between the lung and the chest wall and taking down dense adhesions between the lung and the intrathoracic gastric pull-up the nasogastric tube was exposed (Fig.2B). +The nasogastric tube was placed in the gastric pull-up as a safety measure. +Meticulous dissection of its vascularization enabled subsequent standard lobectomy of the RUL with complete lymph node dissection (R4, 7, 10 and 11). +After removal of the specimen and chest tube placement, a Ropivacaine® intercostal nerve block levels T4 to T9 was installed. +Total operative time was 3 h 44 min with 50 ml blood loss.","[""Squamous cell carcinoma"", ""Adenocarcinoma""]","[""Esophageal squamous cell carcinoma"", ""Thyroid Transcription Factor-1 positive adenocarcinoma"", ""Squamous cell carcinoma of the right upper lobe""]",False,[] +graph_011,Efficacy_of_Selpercatinib_in_Non_small_Cell_Lung_Cancer_With_Bilateral_Internal__PMC12021377.html,"Three new intracranial lesions were identified, accompanied by clinical manifestations of paresthesia and reduced muscular strength in the lower limbs.Near-complete resolution of multiple supratentorial and infratentorial nodular lesions, with the absence of gadolinium enhancement, except for a faint residual signal at the cisternal segment of the right eighth cranial nerveSignificant symptomatic improvement within one week of treatment, including complete hearing recovery and a substantial reduction of dizziness and headache complaints.Fourth-line treatment with selpercatinib (160 mg twice daily) was initiatedDisease progression was identified with the emergence of a new growing nodule measuring 11 mm in its longest diameter.First-line systemic therapy with a platinum-based doublet, completing six cycles with a partial tumor response according to Response Evaluation Criteria in Solid Tumors (RECIST) criteria","Three new intracranial lesions were identified, accompanied by clinical manifestations of paresthesia and reduced muscular strength in the lower limbs.Near-complete resolution of multiple supratentorial and infratentorial nodular lesions, with the absence of gadolinium enhancement, except for a faint residual signal at the cisternal segment of the right eighth cranial nerveSignificant symptomatic improvement within one week of treatment, including complete hearing recovery and a substantial reduction of dizziness and headache complaints.Fourth-line treatment with selpercatinib (160 mg twice daily) was initiatedDisease progression was identified with the emergence of a new growing nodule measuring 11 mm in its longest diameter.First-line systemic therapy with a platinum-based doublet, completing six cycles with a partial tumor response according to Response Evaluation Criteria in Solid Tumors (RECIST) criteria"," + + Three new intracranial lesions were identified, accompanied by clinical manifestations of paresthesia and reduced muscular strength in the lower limbs. + + + Near-complete resolution of multiple supratentorial and infratentorial nodular lesions, with the absence of gadolinium enhancement, except for a faint residual signal at the cisternal segment of the right eighth cranial nerve + + + Significant symptomatic improvement within one week of treatment, including complete hearing recovery and a substantial reduction of dizziness and headache complaints. + + + Fourth-line treatment with selpercatinib (160 mg twice daily) was initiated + + + Disease progression was identified with the emergence of a new growing nodule measuring 11 mm in its longest diameter. + + + First-line systemic therapy with a platinum-based doublet, completing six cycles with a partial tumor response according to Response Evaluation Criteria in Solid Tumors (RECIST) criteria + +","[""adenocarcinoma""]","[""lung cancer""]",True,"[[""brain"", ""intracranial""], [""bone"", ""osseous""], [""liver"", ""hepatic""], [""lymph nodes"", ""lymphatic""], [""lung"", ""pulmonary""]]" +graph_012,Multiple_Lung_Metastases_of_Papillary_Thyroid_Carcinoma_Detected_by_Detailed_Pat_PMC11971052.html,"79-year-old male patient with: +- Height: 174 cm +- Weight: 65 kg +- BMI: 21.5 kg/m² +- Smoking history: two packs per day for 55 years (Brinkman Index of 1100) +- Medical history: + - Total thyroidectomy performed five years earlier for papillary thyroid carcinoma (PTC) with comorbidities of chronic obstructive pulmonary disease and hypertension + - Left cervical lymphadenopathy of unknown origin six years ago + - Subsequent investigations revealed suspected cervical lymph node metastasis of PTC. + - Five years ago, the patient underwent total thyroidectomy and left cervical lymph node dissection. Histopathological findings revealed multiple papillary thyroid microcarcinomas (pT1a [m], pEx0, pN1b 4/10, pStage IVA) with negative surgical margins. + - The patient was treated with radioiodine therapy (Iodine-131). + - Two years ago, a nodule in the right upper lobe of the lung was identified, which was followed up with chest CT scans. Compared to two years prior, an increase in nodule density was observed, prompting a transbronchial biopsy; however, no definitive diagnosis was made. + - Tumor markers (CYFRA, CEA, SLX, ProGRP, NSE) were within normal limits. + - Serum thyroglobulin levels showed a gradual increase over time, with a preoperative value of 47.7 ng/mL. + - Chest X-rays showed no abnormalities, while chest CT scans revealed an irregular nodule measuring 15×14 mm in the S1 segment of the right upper lobe (Figure1). + - No hilar lymphadenopathy was detected. + - FDG-PET was not performed. + - Pulmonary function and electrocardiogram tests showed no abnormalities. + +An irregular nodule 15 x 14 mm in size was seen in the S1 upper lobe of the right lung (arrow). The surgery was performed under general anesthesia in the left lateral decubitus position with video-assisted thoracoscopy. The tumor was partially resected using an automatic stapler and submitted for rapid diagnosis. The diagnosis of adenocarcinoma was confirmed, and a right upper lobectomy with mediastinal lymph node dissection (ND-1b) was performed. The operation lasted 2 hours and 30 minutes. + +Histopathological examination revealed adenocarcinoma. +Adenocarcinoma cells were found in the resected tissue. +Immunohistochemistry showed positive staining for TTF-1, indicating lung origin of the tumor. +The patient's postoperative course was uneventful, with no complications noted. +5 years ago: Total thyroidectomy performed for papillary thyroid carcinoma (PTC) with comorbidities of chronic obstructive pulmonary disease and hypertension. +2 years ago: A nodule in the right upper lobe of the lung was identified, which was followed up with chest CT scans. Compared to two years prior, an increase in nodule density was observed, prompting a transbronchial biopsy; however, no definitive diagnosis was made. +6 months post-surgery: No evidence of recurrence.","Total thyroidectomy performed for papillary thyroid carcinoma (PTC) with comorbidities of chronic obstructive pulmonary disease and hypertension.A nodule in the right upper lobe of the lung was identified, which was followed up with chest CT scans. Compared to two years prior, an increase in nodule density was observed, prompting a transbronchial biopsy; however, no definitive diagnosis was made.No evidence of recurrence.","79-year-old male patient with: +- Height: 174 cm +- Weight: 65 kg +- BMI: 21.5 kg/m² +- Smoking history: two packs per day for 55 years (Brinkman Index of 1100) +- Medical history: + - Total thyroidectomy performed five years earlier for papillary thyroid carcinoma (PTC) with comorbidities of chronic obstructive pulmonary disease and hypertension + - Left cervical lymphadenopathy of unknown origin six years ago + - Subsequent investigations revealed suspected cervical lymph node metastasis of PTC + - Five years ago, the patient underwent total thyroidectomy and left cervical lymph node dissection. Histopathological findings revealed multiple papillary thyroid microcarcinomas (pT1a [m], pEx0, pN1b 4/10, pStage IVA) with negative surgical margins. + - The patient was treated with radioiodine therapy (Iodine-131) + - Two years ago, a nodule in the right upper lobe of the lung was identified, which was followed up with chest CT scans. Compared to two years prior, an increase in nodule density was observed, prompting a transbronchial biopsy; however, no definitive diagnosis was made. + - Tumor markers (CYFRA, CEA, SLX, ProGRP, NSE) were within normal limits + - Serum thyroglobulin levels showed a gradual increase over time, with a preoperative value of 47.7 ng/mL + - Chest X-rays showed no abnormalities, while chest CT scans revealed an irregular nodule measuring 15×14 mm in the S1 segment of the right upper lobe (Figure1) + - No hilar lymphadenopathy was detected + - FDG-PET was not performed + - Pulmonary function and electrocardiogram tests showed no abnormalities + +An irregular nodule 15 x 14 mm in size was seen in the S1 upper lobe of the right lung (arrow). The surgery was performed under general anesthesia in the left lateral decubitus position with video-assisted thoracoscopy. The tumor was partially resected using an automatic stapler and submitted for rapid diagnosis. The diagnosis of adenocarcinoma was confirmed, and a right upper lobectomy with mediastinal lymph node dissection (ND-1b) was performed. The operation lasted 2 hours and 30 minutes. + +Histopathological examination revealed adenocarcinoma. +Adenocarcinoma cells were found in the resected tissue. +Immunohistochemistry showed positive staining for TTF-1, indicating lung origin of the tumor. +The patient's postoperative course was uneventful, with no complications noted. +5 years ago: Total thyroidectomy performed for papillary thyroid carcinoma (PTC) with comorbidities of chronic obstructive pulmonary disease and hypertension. +2 years ago: A nodule in the right upper lobe of the lung was identified, which was followed up with chest CT scans. Compared to two years prior, an increase in nodule density was observed, prompting a transbronchial biopsy; however, no definitive diagnosis was made. +6 months post-surgery: No evidence of recurrence.","[""papillary thyroid carcinoma"", ""adenocarcinoma""]","[""pT1a [m] papillary thyroid microcarcinomas"", ""lung adenocarcinoma""]",True,"[[""cervical lymph nodes"", ""papillary thyroid carcinoma""]]" +graph_013,Brain_Metastasis_From_Advanced_Stage_Lung_Carcinoma__Differentiating_From_Stroke_PMC11955559.html,"Patient's medical history: +- Diagnosed with stage III NSCLC in the right upper lobe bronchus that had spread throughout the middle and lower lobes (15 months ago) +- PET/CT scans revealed a right supraclavicular node, right upper paratracheal node, multiple additional paratracheal nodes, and enlarged para-aortic nodes +- Upper esophageal stricture treated with dilatation during an esophagogastroduodenoscopy (1 year ago) +- Initiated docetaxel for refractory complications with stage III NSCLC (2 days ago) + +Recent medical events: +- Diagnosed with hypokalemia, given potassium supplement and ondansetron for nausea +- Marked unilateral weakness in left upper extremity, grip strength of 2/5 versus 5/5 strength in the right upper extremity +- Leukopenia, WBC of 1.12 K/μL +- Potassium level still low but increased since previous ED visit +- COVID-19 and flu tests all negative +- Urine testing revealed trace blood and bacteria and was positive for cannabis +- Non-contrast CT results revealed multifocal intracranial lesions with associated vasogenic edema with mild mass effect, consistent with metastatic disease +- CT angiography (CTA) performed, revealing no flow-limiting stenosis or occlusion of major intracranial or cervical arteries +- Multiple bilateral pulmonary nodules and a partially imaged right upper lobe mass were seen, along with asymmetrically enlarged right level IIb nodes, suspicious for metastasis in this clinical setting + +Current medications: +- Docetaxel for refractory complications with stage III NSCLC +- Potassium supplement for hypokalemia +- Ondansetron for nausea","15 months ago: Diagnosed with stage III NSCLC in the right upper lobe bronchus that had spread throughout the middle and lower lobes. PET/CT scans revealed a right supraclavicular node, right upper paratracheal node, multiple additional paratracheal nodes, and enlarged para-aortic nodes. +1 year ago: Upper esophageal stricture treated with dilatation during an esophagogastroduodenoscopy. +2 days ago: Initiated docetaxel for refractory complications with stage III NSCLC. +Current visit: Diagnosed with hypokalemia, given potassium supplement and ondansetron for nausea. Marked unilateral weakness in left upper extremity, grip strength of 2/5 versus 5/5 strength in the right upper extremity. +Current visit: Leukopenia, WBC of 1.12 K/μL. Potassium level still low but increased since previous ED visit. +Current visit: COVID-19 and flu tests all negative. +Current visit: Urine testing revealed trace blood and bacteria and was positive for cannabis. +Current visit: Non-contrast CT results revealed multifocal intracranial lesions with associated vasogenic edema with mild mass effect, consistent with metastatic disease. +Current visit: CT angiography (CTA) performed, revealing no flow-limiting stenosis or occlusion of major intracranial or cervical arteries. +Current visit: Multiple bilateral pulmonary nodules and a partially imaged right upper lobe mass were seen, along with asymmetrically enlarged right level IIb nodes, suspicious for metastasis in this clinical setting.","15 months ago: Diagnosed with stage III NSCLC in the right upper lobe bronchus that had spread throughout the middle and lower lobes. PET/CT scans revealed a right supraclavicular node, right upper paratracheal node, multiple additional paratracheal nodes, and enlarged para-aortic nodes. +1 year ago: Upper esophageal stricture treated with dilatation during an esophagogastroduodenoscopy. +2 days ago: Initiated docetaxel for refractory complications with stage III NSCLC. +Current visit: Diagnosed with hypokalemia, given potassium supplement and ondansetron for nausea. Marked unilateral weakness in left upper extremity, grip strength of 2/5 versus 5/5 strength in the right upper extremity. +Current visit: Leukopenia, WBC of 1.12 K/μL. Potassium level still low but increased since previous ED visit. +Current visit: COVID-19 and flu tests all negative. +Current visit: Urine testing revealed trace blood and bacteria and was positive for cannabis. +Current visit: Non-contrast CT results revealed multifocal intracranial lesions with associated vasogenic edema with mild mass effect, consistent with metastatic disease. +Current visit: CT angiography (CTA) performed, revealing no flow-limiting stenosis or occlusion of major intracranial or cervical arteries. +Current visit: Multiple bilateral pulmonary nodules and a partially imaged right upper lobe mass were seen, along with asymmetrically enlarged right level IIb nodes, suspicious for metastasis in this clinical setting.","[""NSCLC""]","[""stage III NSCLC""]",True,"[[""brain"", ""multifocal intracranial lesions""], [""lung"", ""bilateral pulmonary nodules""], [""lymph nodes"", ""asymmetrically enlarged right level IIb nodes""]]" +graph_014,Successful_treatment_of_an_elderly_patient_with_lung_squamous_cell_carcinoma_by__PMC11973309.html,"A 73-year-old man presenting with paroxysmal cough and sputum accompanied by chest pain, weight loss, and exertional asthma was admitted to a local hospital on February 13, 2023. A chest computed tomography (CT) scan revealed a mass in the right upper lobe of the lung, raising the suspicion of a malignant tumor (MT). Subsequent positron electron tomography (PET)-CT indicated an irregular lobulated soft tissue mass in the apical segment of the right lung upper lobe, measuring approximately 4.1×3.5 cm and showing increased fluorodeoxyglucose (FDG) uptake (SUV value) and spiculated margins, suggestive of lung cancer (likely squamous cell carcinoma). There were tiny nodular shadows about 0.3 cm in diameter surrounding the mass, and the possibility of metastasis was not ruled out. Several enlarged lymph nodes were visible in regions 10R, 4R, and 2R, the largest measuring approximately 1.7 cm in diameter. that showed varying degrees of increased FDG uptake, suggesting possible metastasis in some lymph nodes. On March 3, 2023, a CT-guided biopsy of the right upper lobe lung mass was performed at our hospital. According to the pathology report (Figure 1), combined with the patient’s medical history and immunohistochemical markers, squamous cell carcinoma was considered (Note: CK7-, CK20-, CK5/6-, NapsinA-, CD56-, P40+, Syn-, CgA-, CD56-, TTF-1-, Ki-67 75%). As shown in the microscopic cellular morphology and tissue architecture ofFigure 1, the entire field demonstrates complete loss of normal pulmonary tissue structure.","Diagnosed with stage cT2bN2M0 right lung squamous cell carcinoma on March 14, 2023. Immunotherapy combined with chemotherapy was started: paclitaxel liposome 240 mg on d1, carboplatin 500 mg on d1, and tislelizumab 200 mg on d2, every 3 weeks (q3w). Grade III thrombocytopenia occurred post-treatment, with a nadir of 30 × 10^9/L. Immunotherapy regimen was adjusted for the first cycle: tislelizumab 200 mg on d0 + paclitaxel liposome 120 mg on d1, 90 mg on d8 + carboplatin 150 mg on d2, 100 mg on d3-5, every 3 weeks (q3w). However, on May 16, 2023, bacteremia and herpes zoster infection were observed, so antitumor treatment was halted.","Vancomycin was given for anti-infection and anti-viral treatment. After active treatment, the first reexamination on May 29, 2023, with a repeat enhanced chest CT showed an irregular thin-walled cystic lesion in the right upper lobe with fine line compartments, measuring approximately 32×25×27 mm, with enlarged and moderately enhanced lymph nodes in the 10R, 4R, and 2R regions. Compared to the March 3, 2023 CT, the solid component of the right upper lobe mass had essentially disappeared, and the mediastinal lymph nodes were similar in size. Response assessment indicated partial remission, and the second cycle of immunotherapy combined with chemotherapy was administered on June 27, 2023.","[""malignant tumor"", ""lung cancer""]","[""squamous cell carcinoma""]",True,"[[""squamous cell carcinoma"", ""lymph nodes""]]" +graph_015,A_case_of_obstructive_shock_and_transient_ischemic_attack_from_intracardiac_meta_PMC11981378.html,"- Patient presented to ER 8 days after initial diagnosis of intracardiac metastasis of NSCLC. +- On admission, patient appeared lethargic, tachycardic with irregular rhythm, decreased breath sounds on the right, and tender right upper quadrant due to rib fractures. Heart rate was 110 bpm, blood pressure 96/60 mmHg, respiratory rate 22, and saturation of 100%. Patient treated for hypotension with IV fluids. +- CT of head negative for acute intracranial processes. CT of abdomen and pelvis showed mildly displaced rib fractures, right kidney interpolar cyst with new areas of internal hyperdensity (suspected benign cysts). No other new presentations appreciated. +- Laboratory values during the admission: + - Hemoglobin (g/dL): 9.6, 9.9, 10.4 + - Hematocrit (%): 28.3, 30.2, 31.4 + - Platelets (K/uL): 146, 128, 170 + - WBC (K/uL): 19.5, 16.29, 20.71 + - Sodium (mEq/L): 129, 128, 127 + - Potassium (mEq/L): 3.7, 4, 4.7 + - Chloride (mEq/L): 102, 100, 101 + - Bicarbonate (mmol/L): 24, 23, 25 + - Glucose (mg/dL): 120, 130, 110 + - Creatinine (mg/dL): 1.2, 1.3, 1.1 + - Urea nitrogen (mg/dL): 20, 22, 18 + - Calcium (mg/dL): 9.5, 10.2, 9.8 + - Phosphate (mg/dL): 4.2, 4.5, 4.0 + - Lactate dehydrogenase (LDH) (U/L): 250, 280, 220 + - Aspartate aminotransferase (AST) (U/L): 40, 45, 35 + - Alanine aminotransferase (ALT) (U/L): 30, 35, 25 + - Total bilirubin (mg/dL): 1.2, 1.5, 1.0 + - Direct bilirubin (mg/dL): 0.8, 1.0, 0.7 + - Alkaline phosphatase (ALP) (U/L): 120, 140, 100 + - Gamma-glutamyl transferase (GGT) (U/L): 50, 60, 40 + +2 days post-ER admission: Patient developed symptoms suggestive of a transient ischemic attack (TIA) with right facial droop and left pronator drift. +CT-Angiography did not show any large vessel occlusion or acute intracranial process. +The deficits resolved in 6 hours; however, the patient still had ongoing tachycardia and uncontrolled atrial fibrillation. + +Patient was diagnosed with locally advanced non-small cell lung cancer (NSCLC) stage IIIB (T4N2Mx) metastatic non-small cell lung carcinoma of squamous cell histology. +Endobronchial ultrasound-guided fine-needle aspiration confirmed the diagnosis. +CT angiogram revealed a large hypermetabolic mass in the right lower lobe extending into the mediastinum with enlarged hypermetabolic subcarinal nodes, irregular mass measuring approximately 8.7 × 4.6 cm, partial atelectasis of the right middle and lower lobes, small to moderate low-density right pleural effusion. +Tumor thrombus in the left atrium measuring 3.4 × 6.3 cm, interfering with the mitral valve function. +Echocardiogram showed that the mass was invading into the left atrium. + +Patient underwent palliative care for symptom management. + +2 days post-ER admission: TIA with right facial droop and left pronator drift +CT-Angiography: no large vessel occlusion or acute intracranial process +Discharged to hospice care","Patient presented to ER with intracardiac metastasis of NSCLCTransient ischemic attack (TIA) with right facial droop and left pronator driftCT-Angiography showed no large vessel occlusion or acute intracranial process; patient discharged to hospice care","Patient presented to ER with intracardiac metastasis of NSCLC (initial diagnosis) +2 days post-ER admission: Transient ischemic attack (TIA) with right facial droop and left pronator drift +after TIA: CT-Angiography showed no large vessel occlusion or acute intracranial process; patient discharged to hospice care","[""non-small cell lung cancer""]","[""squamous cell histology""]",True,"[[""left atrium"", ""tumor thrombus""], [""right lower lobe"", ""large hypermetabolic mass""], [""mediastinum"", ""enlarged hypermetabolic subcarinal nodes""]]" +graph_016,Precise_Localization_of_the_Subsolid_Lesion_by_Colour_Marking_under_CT_Guided_Co_PMC12040305.html,"51-year-old female patient with a subsolid pulmonary lesion. The lesion was followed up for 4 years and subsequently resected videothoracoscopically after preoperative labeling with a mixture of blue dye and contrast agent. +Born in 1970, underwent resection of malignant melanoma in April 2013. +Suspicious lymph node (LU) in the left axilla detected on ultrasound, biopsy confirmed metastasis of malignant melanoma. PET/CT showed solitary finding in the left axilla. Dissection of the left axilla performed, only one of 19 LNs affected by metastasis. Molecular genetic testing revealed BRAF mutation at codon 600, targeted therapy with BRAF inhibitors deployed. +Routine CT scan of lungs in November 2017 detected new asymptomatic lesion in segment S10 of right lower lobe, measuring 7 mm in size. Follow-up CT scan in June 2020 showed lesion changed character to subsolid lesion with solid component. PET/CT scan in July 2020 confirmed persistence of the lesion without increased metabolic activity. +A further follow-up in April 2021 confirmed persistence and additionally showed a slight size progression of the solid component of the lesion. +The resection lines from the tumor margin to the resection margins were adequate, with the smallest measured dimension of 13 mm. No metastatic process was found in the examined mediastinal lymphatic nodes. The postoperative course was uneventful, and the patient was discharged to home care on the fourth day after surgery. +She continues to be followed up regularly and remains free of signs of disease recurrence.","51-year-old female patient with a subsolid pulmonary lesion. The lesion was followed up for 4 years and subsequently resected videothoracoscopically after preoperative labeling with a mixture of blue dye and contrast agent. +Born in 1970, underwent resection of malignant melanoma in April 2013. +Suspicious lymph node (LU) in the left axilla detected on ultrasound, biopsy confirmed metastasis of malignant melanoma. PET/CT showed solitary finding in the left axilla. Dissection of the left axilla performed, only one of 19 LNs affected by metastasis. Molecular genetic testing revealed BRAF mutation at codon 600, targeted therapy with BRAF inhibitors deployed. +Routine CT scan of lungs in November 2017 detected new asymptomatic lesion in segment S10 of right lower lobe, measuring 7 mm in size. Follow-up CT scan in June 2020 showed lesion changed character to subsolid lesion with solid component. PET/CT scan in July 2020 confirmed persistence of the lesion without increased metabolic activity. +A further follow-up in April 2021 confirmed persistence and additionally showed a slight size progression of the solid component of the lesion. +The resection lines from the tumor margin to the resection margins were adequate, with the smallest measured dimension of 13 mm. No metastatic process was found in the examined mediastinal lymphatic nodes. The postoperative course was uneventful, and the patient was discharged to home care on the fourth day after surgery. +She continues to be followed up regularly and remains free of signs of disease recurrence.","51-year-old female patient with a subsolid pulmonary lesion. The lesion was followed up for 4 years and subsequently resected videothoracoscopically after preoperative labeling with a mixture of blue dye and contrast agent. +Born in 1970, underwent resection of malignant melanoma in April 2013. +Suspicious lymph node (LU) in the left axilla detected on ultrasound, biopsy confirmed metastasis of malignant melanoma. PET/CT showed solitary finding in the left axilla. Dissection of the left axilla performed, only one of 19 LNs affected by metastasis. Molecular genetic testing revealed BRAF mutation at codon 600, targeted therapy with BRAF inhibitors deployed. +Routine CT scan of lungs in November 2017 detected new asymptomatic lesion in segment S10 of right lower lobe, measuring 7 mm in size. Follow-up CT scan in June 2020 showed lesion changed character to subsolid lesion with solid component. PET/CT scan in July 2020 confirmed persistence of the lesion without increased metabolic activity. +A further follow-up in April 2021 confirmed persistence and additionally showed a slight size progression of the solid component of the lesion. +The resection lines from the tumor margin to the resection margins were adequate, with the smallest measured dimension of 13 mm. No metastatic process was found in the examined mediastinal lymphatic nodes. The postoperative course was uneventful, and the patient was discharged to home care on the fourth day after surgery. +She continues to be followed up regularly and remains free of signs of disease recurrence.","[""malignant melanoma""]","[""melanoma"", ""lung cancer""]",True,"[[""left axilla"", ""lymph node""], [""right lower lobe"", ""lung""]]" diff --git a/src/benchmark/output/results/testset/results_graph_001.json b/src/benchmark/output/results/testset/results_graph_001.json new file mode 100644 index 0000000..339d9ad --- /dev/null +++ b/src/benchmark/output/results/testset/results_graph_001.json @@ -0,0 +1,792 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 44-year-old male with no history of antitubercular treatment (ATT) intake. He has been a tobacco chewer for over 20 years.\n\n**Initial Presentation:**\nThe patient presented to the clinic with right-sided chest pain, dry cough, on-off fever, and hematuria for 2 months. Physical examination revealed decreased air entry on the right side of the lung.\n\n**Imaging and Diagnosis (Step 1-3):**\n\n* Contrast-enhanced computed tomography (CECT) thorax revealed a heterogeneous lesion in the mediastinal region abutting the horizontal fissure and cavitation within.\n* Bronchoscopy with bronchoscopic-guided biopsy and BAL was performed, which showed negative results for malignant cells. Biopsy results were suggestive of squamous cell carcinoma.\n\n**Symptoms and Imaging (Step 4-5):**\n\n* The patient reported decreased and blurring of vision.\n* An 18F-FDG PET/CT scan revealed a FDG-avid well-defined soft tissue primary mass measuring 5.6 cm x 7.7 cm x 8.3 cm with spiculated margins in the upper lobe of the right lung, along with multiple sub-centimetric to centimetric-sized bilateral lung nodules and metastases to mediastinal, abdominopelvic lymph nodes.\n\n**Progression and Diagnosis (Step 6-7):**\n\n* The patient presented with severe headaches and blurring of vision for 15 days.\n* Biopsy results confirmed metastatic involvement.\n\n**Treatment Plan:**\nUnfortunately, the provided data does not include a treatment plan or outcomes. However, based on the diagnosis of squamous cell carcinoma and metastases, further treatment options would likely involve chemotherapy, radiation therapy, or a combination of both, depending on the patient's overall health and specific tumor characteristics.\n\n**Outcomes:**\nThe patient's current status is unknown, as the provided data only includes the timeline of diagnoses and treatments. Further follow-up and monitoring are necessary to assess the patient's response to treatment and any potential complications or side effects.\n\nIn conclusion, this patient presented with a complex clinical scenario involving a heterogeneous lesion in the mediastinal region, squamous cell carcinoma, and metastases. The patient's symptoms and imaging results suggest an aggressive disease course, and further treatment options would be necessary to manage the patient's condition effectively.", + "bertscore": { + "precision": 0.8387337327003479, + "recall": 0.8516782522201538, + "f1": 0.8451563715934753 + }, + "bleu": 0.2054908255580929, + "rouge1": 0.4711211778029445, + "rougeL": 0.34428086070215175, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 7, + "edge_count": 6, + "avg_in_degree": 0.8571428571428571, + "density": 0.14285714285714285 + }, + "trajectory_embedding": [ + 0.22544555366039276, + -0.021888595074415207, + -0.0058143287897109985, + 0.03279201313853264, + 0.012158679775893688, + 0.124949149787426, + 0.055165503174066544, + 0.12983736395835876, + 0.3739190995693207, + -0.2663968503475189, + -0.19686637818813324, + 0.07701147347688675, + -0.5400644540786743, + -0.07584770768880844, + -0.26406726241111755, + -0.02046271786093712, + 0.05793926864862442, + 0.16207827627658844, + -0.044735949486494064, + -0.22757861018180847, + -0.4952402710914612, + 0.1144150123000145, + -0.46950480341911316, + -0.09778637439012527, + 0.12845461070537567, + 0.02734825387597084, + 0.24913842976093292, + 0.45427513122558594, + 0.24786631762981415, + 0.3967547118663788, + 0.1909862756729126, + -0.04420628026127815, + 0.09980465471744537, + 0.03809976577758789, + -0.17042012512683868, + 0.2900741398334503, + 0.09212499111890793, + 0.4332437217235565, + -0.043802354484796524, + 0.15672074258327484, + 0.03645145520567894, + 0.00679835444316268, + 0.9039347767829895, + 0.3591509461402893, + 0.4914460778236389, + -0.8356738090515137, + -0.02241605333983898, + 0.40659505128860474, + -0.4799618124961853, + -0.3205719292163849, + 0.17016637325286865, + 0.6543622612953186, + 0.707870602607727, + -0.22005608677864075, + 0.4748179614543915, + -0.19794167578220367, + -0.3964519798755646, + -0.3612939417362213, + -0.33315572142601013, + -0.027029957622289658, + -0.1691950559616089, + -0.22332099080085754, + 0.17457075417041779, + 0.05207694321870804, + -0.2161528766155243, + -0.14274190366268158, + -0.14343063533306122, + 0.020381653681397438, + 0.007025190629065037, + -0.45137161016464233, + -0.09364870935678482, + -0.2778642773628235, + -0.10508210957050323, + 0.10854269564151764, + 0.02177494578063488, + -0.16299407184123993, + 0.30219197273254395, + -0.011338986456394196, + 0.1187564879655838, + 0.08193399012088776, + 0.06593690067529678, + -0.0405060350894928, + 0.061940502375364304, + 0.32849979400634766, + -0.407819926738739, + 0.09965406358242035, + -0.03934013098478317, + -0.15914258360862732, + -0.36487436294555664, + 0.1943393051624298, + 0.13243208825588226, + -0.2800927460193634, + 0.07946847379207611, + -0.17683902382850647, + 0.044621050357818604, + -0.02490183711051941, + 0.26153841614723206, + 0.28627023100852966, + 1.0003652572631836, + -0.05762153118848801, + 0.27924007177352905, + 0.09756126254796982, + 0.35095784068107605, + -0.03296113386750221, + 0.46251726150512695, + -0.11398440599441528, + 0.05645623430609703, + -0.6150220632553101, + 0.1058567613363266, + 0.33834224939346313, + -0.004669502377510071, + -0.10170869529247284, + -0.03272068500518799, + -0.3261508643627167, + 0.15492412447929382, + 0.04078936576843262, + -0.0925842747092247, + 0.14039553701877594, + 0.06129738315939903, + -0.3435817062854767, + -0.11495153605937958, + -0.09836633503437042, + 0.31900739669799805, + 0.31890103220939636, + -0.46349194645881653, + -0.02682717703282833, + -0.158163920044899, + 0.20861409604549408, + 0.03139486908912659, + 0.06004612520337105, + -0.48260262608528137, + -0.053569622337818146, + 0.05698048323392868, + 0.3057520091533661, + -0.11534462124109268, + 0.20605342090129852, + -0.4229469895362854, + 0.017016496509313583, + -1.0992628335952759, + 0.2045792043209076, + -0.46470141410827637, + 0.015281583182513714, + 0.004531429149210453, + -0.5357871055603027, + -0.17412035167217255, + -0.2732934057712555, + -0.06343386322259903, + 0.17450697720050812, + 0.03306545689702034, + -0.08195621520280838, + -0.11672161519527435, + 0.062159765511751175, + 0.21550604701042175, + 0.15805819630622864, + 0.24410788714885712, + 0.08759433776140213, + 0.129988431930542, + 0.37439388036727905, + 0.12952840328216553, + -0.18701855838298798, + 0.02977474220097065, + 0.3657865822315216, + 0.04062526673078537, + -0.08284519612789154, + 0.026021718978881836, + -0.7181465029716492, + 0.01755519025027752, + -0.05736885219812393, + 0.2734042704105377, + 0.0789877325296402, + -0.19181092083454132, + 0.26249173283576965, + -0.2620965242385864, + 0.5923798680305481, + 0.2575666606426239, + 0.4657774865627289, + 0.09522327035665512, + 0.07420903444290161, + 0.1885097473859787, + 0.12079930305480957, + 0.13842181861400604, + -0.10693365335464478, + 0.7564568519592285, + 0.04216546565294266, + -0.21592746675014496, + 0.2977727949619293, + 0.3015422224998474, + 0.009352700784802437, + -0.19835695624351501, + -0.06918928027153015, + 0.5178477168083191, + -0.25443926453590393, + 0.42754751443862915, + -0.4473267197608948, + -0.12708410620689392, + 0.11682230979204178, + -0.2884996831417084, + -0.24416060745716095, + 0.09769809246063232, + -0.1493919938802719, + 0.37399861216545105, + 0.06427767127752304, + -0.1964985877275467, + 0.0752095952630043, + -0.0790180116891861, + -0.08227288722991943, + 0.24765221774578094, + -0.07260660082101822, + 0.07031866163015366, + -0.0743103176355362, + -0.0978149026632309, + 0.21969662606716156, + -0.016957776620984077, + 0.24308113753795624, + 0.06017247214913368, + -0.18987281620502472, + 0.24078567326068878, + -0.17431029677391052, + -0.04737759754061699, + 0.14145603775978088, + -0.15732832252979279, + -0.1829451024532318, + 0.10296981781721115, + 0.007423954550176859, + -0.47174447774887085, + 0.25813135504722595, + 0.252968966960907, + 0.16565148532390594, + 0.25011056661605835, + -0.02016758732497692, + 0.02959112823009491, + -0.2907402813434601, + 0.2594955265522003, + -0.1877007782459259, + -0.10937656462192535, + -0.3665615916252136, + 0.12820060551166534, + -0.47392144799232483, + -0.057138632982969284, + 0.2564590275287628, + -0.0499889962375164, + -0.08179569244384766, + 0.09306243807077408, + -0.2558267116546631, + -0.15989051759243011, + -0.39697542786598206, + 0.05126449838280678, + 0.3919696509838104, + 0.11617664992809296, + 0.3501388728618622, + -0.017326783388853073, + -0.07741450518369675, + 0.16762030124664307, + -0.26987797021865845, + -0.19983291625976562, + -0.36132165789604187, + -0.08088219910860062, + 0.009544121101498604, + -0.5022962093353271, + 0.14079812169075012, + 0.016228536143898964, + -0.13470712304115295, + 0.06883032619953156, + -0.3019104301929474, + -0.13484728336334229, + 0.08926153182983398, + -0.12665589153766632, + 0.1574120968580246, + -0.12602175772190094, + 0.015751618891954422, + -0.3463286757469177, + -0.23398295044898987, + -0.06359321624040604, + -0.19244582951068878, + 0.17758941650390625, + -0.04190870746970177, + -0.1823682337999344, + -0.05759647116065025, + 0.08258525282144547, + -0.4468781650066376, + -0.35065320134162903, + 0.21665219962596893, + -0.21870115399360657, + 0.2026483118534088, + -0.03873903304338455, + 0.22365395724773407, + 0.28230923414230347, + -0.05201395973563194, + 0.0527680329978466, + 0.49252477288246155, + 0.5546950697898865, + 0.07907216995954514, + -0.023886768147349358, + -0.1262141615152359, + 0.016182275488972664, + -0.03704068809747696, + -0.45202186703681946, + 0.4243611991405487, + -0.030097153037786484, + -0.034437667578458786, + -0.071632981300354, + 0.24896812438964844, + -0.00019594175682868809, + -0.504425585269928, + -0.09104608744382858, + 0.5184188485145569, + 0.13584373891353607, + 0.14065544307231903, + 0.027307460084557533, + 0.3466333746910095, + 0.5807201266288757, + -0.11237335205078125, + -0.03695932403206825, + 0.011270170100033283, + -0.0024232694413512945, + -0.10592483729124069, + 0.01008819043636322, + 0.11385848373174667, + 0.30241236090660095, + -0.09672290086746216, + -0.08970701694488525, + 0.23306843638420105, + -0.11035939306020737, + -0.06347585469484329, + -0.2140498161315918, + -0.0835152342915535, + 0.05474512651562691, + -0.2547414302825928, + 0.21516333520412445, + -0.11938325315713882, + -0.03892297297716141, + 0.37758371233940125, + -0.14395751059055328, + -0.1572096198797226, + 0.11680327355861664, + 0.020167753100395203, + -0.41035670042037964, + 0.39604201912879944, + -0.08431784808635712, + -0.06409355252981186, + 0.45997482538223267, + -0.0070531792007386684, + -0.07865508645772934, + -0.329233318567276, + 0.19452223181724548, + 0.04206732660531998, + -0.059629857540130615, + -0.05272732302546501, + 0.04650396108627319, + 0.12813898921012878, + 0.5837918519973755, + 0.1471565067768097, + 0.16569076478481293, + 0.5125689506530762, + -0.06692972779273987, + -0.26555219292640686, + 0.00983025785535574, + 0.19899828732013702, + 0.3342770040035248, + -0.31491395831108093, + -0.23268620669841766, + -0.30234023928642273, + 0.10153920203447342, + 0.17339272797107697, + -0.27579358220100403, + -0.05001077428460121, + -0.019663481041789055, + 0.14585120975971222, + 0.10834995657205582, + 0.26768848299980164, + 0.20414087176322937, + -0.06213387846946716, + 0.46090492606163025, + 0.017025070264935493, + -0.059339266270399094, + 0.2710186839103699, + -0.14449605345726013, + 0.23969683051109314, + -0.10268567502498627, + -0.3920949399471283, + -0.40806737542152405, + 0.00474292878061533, + -0.12494343519210815, + -0.2019561529159546, + -0.007249661721289158, + -0.14330996572971344, + -0.010338188149034977, + -0.21282240748405457, + 0.23347382247447968, + 0.046171098947525024, + 0.2541406452655792, + 0.23251627385616302, + 0.3425624668598175, + 0.11240644007921219, + -0.27347710728645325, + 0.16533224284648895, + -0.02230760268867016, + 0.14282743632793427, + -0.2403469979763031, + -0.04443306848406792, + -0.09282033145427704, + 0.4610767066478729, + -0.08442071825265884, + -0.0038480982184410095, + -0.00898510031402111, + 0.028758777305483818, + -0.18674644827842712, + -0.3901597559452057, + -0.21183086931705475, + -0.12444917112588882, + -0.005519687198102474, + -0.022225946187973022, + 0.1936742514371872, + -0.2562611699104309, + -0.21937783062458038, + -0.14190775156021118, + 0.23681838810443878, + 0.024996627122163773, + -0.14047639071941376, + 0.16197021305561066, + 0.2152271270751953, + 0.03847484663128853, + 0.4040525257587433, + -0.11127112060785294, + 0.12019022554159164, + 0.01380231510847807, + -0.27288979291915894, + -0.005210678558796644, + 0.03739836439490318, + -0.24274063110351562, + -0.013103642500936985, + 0.22852373123168945, + 0.27713543176651, + 0.02708902582526207, + 0.02469996176660061, + 0.046662744134664536, + 0.29454439878463745, + -0.3956533968448639, + -0.16748806834220886, + 0.4477674663066864, + 0.11504799127578735, + 0.45734837651252747, + -0.024405550211668015, + -0.5885217785835266, + -0.2782239019870758, + -0.07079874724149704, + -0.5095592737197876, + 0.029425110667943954, + 0.1425083577632904, + -0.13853709399700165, + -0.09436937421560287, + 0.1613730490207672, + -0.07594022899866104, + 0.0597415566444397, + 0.24864283204078674, + -0.09160096943378448, + 0.16358928382396698, + 0.007129413541406393, + -0.36279386281967163, + -0.052385516464710236, + -0.3274328112602234, + -0.2874279320240021, + -0.21315990388393402, + 0.3431756794452667, + 0.31382879614830017, + -0.2551286816596985, + 0.04849119111895561, + 0.0616174079477787, + -0.24422670900821686, + -0.3080612123012543, + 0.02238546870648861, + -0.2793293297290802, + 0.46098384261131287, + -0.07902948558330536, + -0.14585623145103455, + 0.12555918097496033, + -0.31364327669143677, + 0.11767099797725677, + 0.2693617641925812, + 0.17969690263271332, + 0.3670620024204254, + 0.23111720383167267, + 0.18989789485931396, + 0.4030517041683197, + 0.051692575216293335, + 0.0751393660902977, + 0.3101361095905304, + 0.0018457748228684068, + -0.014019259251654148, + -0.19878152012825012, + -0.2694285809993744, + 0.3681092858314514, + -0.1493302881717682, + 0.005456401500850916, + 0.17803955078125, + 0.32944828271865845, + -0.5253181457519531, + -0.34934094548225403, + 0.008091830648481846, + -0.02635938487946987, + -0.10398703813552856, + -0.3595424294471741, + -0.235565185546875, + -0.022764157503843307, + -0.22590211033821106, + -0.19372296333312988, + 0.2561880946159363, + 0.3237074315547943, + 0.20131178200244904, + 0.2469889372587204, + -0.3478850722312927, + -0.29865124821662903, + 0.22905422747135162, + 0.2693503201007843, + 0.07840954512357712, + 0.026144299656152725, + -0.2233971655368805, + 0.28818273544311523, + 0.6196103096008301, + -0.12296389043331146, + -0.07440297305583954, + 0.0031574282329529524, + 0.11028839647769928, + 0.004636458121240139, + 0.10456354916095734, + -0.03394020348787308, + 0.07380436360836029, + -0.4067952334880829, + 0.2821376323699951, + -0.32946285605430603, + -0.21861563622951508, + 0.15632401406764984, + -0.037681613117456436, + -0.4206162393093109, + -0.20882096886634827, + 0.46175867319107056, + -0.14138826727867126, + 0.1318322718143463, + 0.14189693331718445, + 0.413936585187912, + 0.08744312822818756, + -0.18059243261814117, + 0.12924925982952118, + -0.5933976769447327, + -0.17608408629894257, + 0.17052365839481354, + -0.2509192228317261, + 0.05032340809702873, + -0.013478376902639866, + 0.2141694575548172, + 0.46446993947029114, + 0.17353466153144836, + -0.25484198331832886, + 0.02167193591594696, + 0.20546047389507294, + 0.33550235629081726, + -0.25142115354537964, + -10.752850532531738, + 0.13028177618980408, + -0.18029265105724335, + 0.601753294467926, + -0.17109908163547516, + 0.13354870676994324, + 0.023059383034706116, + -0.0756104439496994, + 0.07608021795749664, + 0.018018653616309166, + -0.1955755054950714, + 0.056970950216054916, + 0.37291231751441956, + 0.3097512722015381, + -0.01516466774046421, + -0.18926218152046204, + -0.20306017994880676, + 0.2996937334537506, + 0.06647644191980362, + 0.22666634619235992, + 0.2110852152109146, + 0.45858046412467957, + -0.30146196484565735, + 0.3066696524620056, + 0.12842200696468353, + -0.40063077211380005, + -0.2030058652162552, + 0.6819396018981934, + 0.1300923079252243, + -0.3766631782054901, + 0.23450832068920135, + 0.25575903058052063, + -0.3941766619682312, + 0.010425986722111702, + -0.09464111179113388, + -0.18069109320640564, + -0.108848936855793, + 0.0775521770119667, + 0.10503586381673813, + -0.14857245981693268, + 0.07109784334897995, + -0.2719348967075348, + 0.0999772921204567, + 0.24091105163097382, + -0.07322079688310623, + -0.5446597933769226, + -0.1822691112756729, + -1.565708041191101, + 0.3469933867454529, + 0.29949596524238586, + 0.5327091217041016, + -0.031813886016607285, + 0.158897265791893, + 0.1273970752954483, + -0.3908841609954834, + 0.06701938807964325, + -0.25532057881355286, + -0.10759598761796951, + 0.09881438314914703, + -0.10823852568864822, + 0.15043134987354279, + -0.25954777002334595, + 0.4396364390850067, + -0.24458107352256775, + -0.3411678671836853, + 0.07269710302352905, + 0.10603590309619904, + 0.05698838457465172, + -0.16014812886714935, + -0.40341153740882874, + -0.5101147294044495, + -0.07006553560495377, + 0.04483975097537041, + 0.0484030656516552, + 0.5611270666122437, + -0.02805999480187893, + -0.47120970487594604, + 0.17515210807323456, + -0.04338771104812622, + 0.4502566456794739, + 0.1857706755399704, + -0.07234758883714676, + 0.08514602482318878, + -0.23218639194965363, + -0.23950079083442688, + -0.2716539800167084, + 0.10034899413585663, + 0.4957196116447449, + -0.08045651018619537, + -0.03827769309282303, + -0.06227623671293259, + 0.35930517315864563, + 0.08850135654211044, + -0.20713134109973907, + -0.44182083010673523, + 0.05939282849431038, + 0.0008892363985069096, + 0.022235747426748276, + 0.09952037781476974, + 0.07445381581783295, + -0.14000891149044037, + -0.08464771509170532, + -0.08841384947299957, + -0.49244800209999084, + -0.586823582649231, + 0.2621164619922638, + 0.09070652723312378, + 0.1271086186170578, + 0.08361142873764038, + 0.03778642788529396, + -0.13701973855495453, + 0.054361291229724884, + 0.23367181420326233, + 0.5658853650093079, + 0.04071269556879997, + -0.03902093693614006, + -0.09580259025096893, + -0.31962570548057556, + -0.2457621991634369, + 0.17023469507694244, + 0.3666629195213318, + -0.19607484340667725, + 0.3422781527042389, + 0.6629540324211121, + -0.14943312108516693, + -0.19286131858825684, + 1.0133713483810425, + -0.26429232954978943, + 0.21964125335216522, + -0.19027359783649445, + 0.2918620705604553, + -0.06770165264606476, + -0.253685861825943, + 0.09520785510540009, + 0.3655342161655426, + -0.3843688368797302, + 0.7071616053581238, + 0.2193906009197235, + -0.36014285683631897, + -0.033229079097509384, + -0.19664537906646729, + 0.503405749797821, + 0.2236463874578476, + 0.16320236027240753, + -0.11097752302885056, + -0.37586143612861633, + -0.24627450108528137, + 0.1637803465127945, + -0.3233899474143982, + -0.19343426823616028, + -0.18568050861358643, + 0.0513133741915226, + 0.19603769481182098, + -0.23206403851509094, + 0.3304268419742584, + 0.2184225469827652, + -0.060754306614398956, + -0.20855531096458435, + -0.41473010182380676, + -0.1591343879699707, + 0.025321917608380318, + 0.814966082572937, + -0.02268730103969574, + -0.04495840147137642, + -0.12772640585899353, + 0.191977858543396, + -0.07789558172225952, + 0.25736770033836365, + 0.11303628236055374, + 0.06402131915092468, + -0.30810046195983887, + 0.21750006079673767, + 0.1528620421886444, + -0.2923474609851837, + -0.13456991314888, + -0.25992101430892944, + -0.03127161040902138, + 0.012477806769311428, + -0.21623428165912628, + 0.2975035607814789, + 0.3495616614818573, + -0.04690875858068466, + -0.022930597886443138, + -0.2509596347808838, + 0.2743046283721924, + 0.18854205310344696, + 0.1905793994665146, + 0.21473363041877747, + -0.19668106734752655, + -0.3155835270881653, + -0.4283021092414856, + 0.1840418428182602, + -0.30378293991088867, + -0.12035530060529709, + 0.10726603120565414, + 0.23525144159793854, + -0.3043988049030304, + 0.02654709853231907, + -0.1099575087428093, + -0.08470828831195831, + -0.1656467765569687, + 0.2036818414926529, + 0.45072221755981445, + -0.14205686748027802, + 0.15353623032569885, + -0.20321156084537506, + 0.1781766563653946, + 0.21564793586730957, + -0.4846877157688141, + 0.15370237827301025, + -0.126005619764328 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/testset/results_graph_003.json b/src/benchmark/output/results/testset/results_graph_003.json new file mode 100644 index 0000000..e983e94 --- /dev/null +++ b/src/benchmark/output/results/testset/results_graph_003.json @@ -0,0 +1,792 @@ +{ + "status": "success", + "reconstructed_narrative": "**Patient Demographics**\n\nThe patient is an adult male with a history of Small Cell Lung Cancer (SCLC). Unfortunately, the exact age and other demographic details are not provided in the data.\n\n**Timeline of Diagnoses**\n\nThe patient's diagnosis timeline begins with the onset of symptoms such as dyspnea, abdominal distension, and lower-extremity edema. These symptoms led to an evaluation in the emergency department, where a poor performance status, abnormal vital signs, and significant tumor burden were noted. This marked the progression from symptom onset to diagnosis.\n\n**Timeline of Treatments**\n\nThe patient's treatment timeline began with endovascular intervention to address IVC stenosis due to compression caused by the tumor. The procedure involved thrombectomy and stent placement. Following this, post-intervention venography showed improved flow, and low-molecular-weight heparin was administered.\n\n**Timeline of Outcomes**\n\nThe patient's outcome timeline began with significant alleviation of IVCS symptoms (trunk and lower limb edema) following the intervention. However, unfortunately, the patient died 8 days later from his primary disease (SCLC).\n\n**Narrative Summary**\n\nA male patient with Small Cell Lung Cancer presented with symptoms such as dyspnea, abdominal distension, and lower-extremity edema. These symptoms led to an evaluation in the emergency department, where a poor performance status, abnormal vital signs, and significant tumor burden were noted. Endovascular intervention was performed to address IVC stenosis caused by compression from the tumor. Following this, post-intervention venography showed improved flow, and low-molecular-weight heparin was administered. However, despite these interventions, the patient's primary disease ultimately led to his death 8 days later.\n\n**Key Takeaways**\n\n* The patient had a poor performance status and significant tumor burden at diagnosis.\n* Endovascular intervention was effective in alleviating IVCS symptoms but did not address the underlying cause of death.\n* Low-molecular-weight heparin was administered post-intervention, but its effectiveness is unclear given the patient's rapid decline.\n\n**Limitations**\n\nThe narrative summary is limited by the lack of detailed information on patient demographics, treatment outcomes, and long-term follow-up. Further investigation would be necessary to fully understand the patient's clinical course and the effectiveness of interventions.", + "bertscore": { + "precision": 0.7355820536613464, + "recall": 0.6891461610794067, + "f1": 0.7116073966026306 + }, + "bleu": 0.054103905008875824, + "rouge1": 0.3516699410609037, + "rougeL": 0.14145383104125736, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 8, + "edge_count": 7, + "avg_in_degree": 0.875, + "density": 0.125 + }, + "trajectory_embedding": [ + 0.2569149434566498, + 0.23160001635551453, + -0.23048092424869537, + 0.06365886330604553, + 0.06271032989025116, + -0.032205305993556976, + -0.0353657603263855, + 0.14690855145454407, + 0.3527328073978424, + -0.24249935150146484, + -0.23033425211906433, + 0.13146138191223145, + -0.44394129514694214, + -0.1020270437002182, + -0.1855921894311905, + 0.17859384417533875, + 0.08802724629640579, + 0.2158854901790619, + -0.10283444821834564, + -0.29911351203918457, + -0.1949203908443451, + -0.028584152460098267, + -0.3147096037864685, + -0.07293544709682465, + 0.20194584131240845, + -0.09491348266601562, + 0.34339308738708496, + 0.46809014678001404, + 0.13282687962055206, + 0.29852452874183655, + 0.13195554912090302, + 0.17300836741924286, + 0.0897492840886116, + 0.02892140857875347, + -0.12745898962020874, + 0.3448256552219391, + 0.23548577725887299, + 0.2839270830154419, + -0.03714802488684654, + 0.006017275154590607, + 0.1338861882686615, + 0.12591585516929626, + 0.7073693871498108, + 0.3368518352508545, + 0.3219608664512634, + -0.6907471418380737, + -0.01660757139325142, + 0.6422886848449707, + -0.46687471866607666, + -0.2571844458580017, + 0.18784856796264648, + 0.6589989066123962, + 0.5504093170166016, + -0.10344333201646805, + 0.4473138749599457, + -0.06613530963659286, + -0.28679725527763367, + -0.4249691367149353, + -0.2393416464328766, + 0.13644948601722717, + -0.0981653481721878, + 0.01790006458759308, + 0.2267570197582245, + -0.02845674753189087, + -0.2680894136428833, + -0.1423514485359192, + -0.16232867538928986, + 0.12320675700902939, + 0.1090710312128067, + -0.3618414103984833, + -0.10044832527637482, + -0.27530670166015625, + -0.053614962846040726, + 0.04921650141477585, + 0.18791626393795013, + -0.18266819417476654, + 0.360612690448761, + -0.07580575346946716, + 0.03189554437994957, + 0.11070859432220459, + 0.03711796551942825, + -0.006232840940356255, + 0.03796324133872986, + 0.282582551240921, + -0.37713319063186646, + 0.07750636339187622, + -0.17531555891036987, + -0.10054003447294235, + -0.258467435836792, + 0.22064298391342163, + 0.2305215299129486, + -0.09635764360427856, + 0.10636873543262482, + -0.017838889732956886, + 0.19559000432491302, + -0.06293649971485138, + 0.13816137611865997, + 0.43874168395996094, + 0.9716772437095642, + -0.05074167996644974, + 0.1356513500213623, + -0.06121188402175903, + 0.29712897539138794, + -0.07920337468385696, + 0.37162017822265625, + -0.08831153810024261, + 0.1279538869857788, + -0.5214267373085022, + 0.0625886470079422, + 0.3048340678215027, + 0.017620541155338287, + -0.238211989402771, + 0.1364237368106842, + -0.31241703033447266, + 0.09862945228815079, + 0.15174570679664612, + -0.08937467634677887, + 0.21740508079528809, + -0.020801734179258347, + -0.3626396059989929, + -0.08483012020587921, + -0.10590144991874695, + 0.3234524130821228, + 0.286812961101532, + -0.3228791356086731, + 0.10934396088123322, + -0.21497038006782532, + 0.133932963013649, + 0.0651712417602539, + 0.06254178285598755, + -0.6108414530754089, + -0.08825504779815674, + -0.048984821885824203, + 0.1457713544368744, + -0.05615668743848801, + 0.38747861981391907, + -0.3545966148376465, + 0.10128293186426163, + -1.0704939365386963, + 0.18489933013916016, + -0.3293786942958832, + -0.04235662519931793, + 0.07674379646778107, + -0.4247347414493561, + -0.14779609441757202, + -0.2276259809732437, + -0.2626993656158447, + 0.10540923476219177, + -0.11968214064836502, + -0.07782312482595444, + -0.08806271106004715, + 0.11360003799200058, + 0.22596900165081024, + 0.22846662998199463, + 0.14217929542064667, + 0.011776726692914963, + 0.1377287209033966, + 0.35273149609565735, + 0.023100826889276505, + -0.13734270632266998, + 0.14667250216007233, + 0.387855589389801, + -0.06604360044002533, + -0.08711905777454376, + -0.058241911232471466, + -0.5880092978477478, + 0.23984947800636292, + -0.2654883563518524, + 0.34279629588127136, + 0.17131219804286957, + -0.21306748688220978, + 0.15969398617744446, + -0.3069201707839966, + 0.61099773645401, + 0.34344786405563354, + 0.3754482567310333, + 0.2464122325181961, + -0.12051801383495331, + 0.12661445140838623, + 0.07676951587200165, + 0.06337203830480576, + -0.12980499863624573, + 0.49911436438560486, + 0.0992007851600647, + -0.21527312695980072, + 0.1955445408821106, + 0.18623749911785126, + -0.11524847149848938, + -0.18365424871444702, + 0.052402399480342865, + 0.3627065420150757, + -0.24395789206027985, + 0.4139857888221741, + -0.3161483407020569, + -0.07328542321920395, + 0.02170691266655922, + -0.3448029160499573, + -0.3785707652568817, + 0.05860193446278572, + 0.001285141333937645, + 0.07231660187244415, + 0.12629340589046478, + -0.29497748613357544, + 0.21745753288269043, + 0.1734546273946762, + -0.1240207701921463, + 0.2539222240447998, + -0.013147708028554916, + 0.041944921016693115, + -0.12125688046216965, + -0.27249762415885925, + 0.1013287603855133, + -0.1647895723581314, + 0.19072462618350983, + -0.011917723342776299, + -0.28449496626853943, + 0.24159587919712067, + -0.07891088724136353, + -0.08159821480512619, + 0.13219553232192993, + 0.029453741386532784, + 0.06982686370611191, + 0.22510792315006256, + -0.07658938318490982, + -0.26791220903396606, + 0.3236021101474762, + 0.11212003976106644, + 0.24547803401947021, + 0.09299872815608978, + -0.06759750843048096, + -0.011228218674659729, + -0.29543545842170715, + 0.15239936113357544, + -0.18702076375484467, + -0.18114317953586578, + -0.27560099959373474, + 0.17911066114902496, + 0.004341591149568558, + -0.06521990150213242, + 0.21743358671665192, + -0.08804921060800552, + -0.12174122780561447, + 0.02904754877090454, + -0.29161587357521057, + -0.08384933322668076, + -0.26410454511642456, + 0.1125580295920372, + 0.19161352515220642, + 0.11132532358169556, + 0.35512739419937134, + 0.06868070363998413, + 0.03536885231733322, + 0.1669463813304901, + -0.2908916473388672, + -0.3114027976989746, + -0.29059845209121704, + -0.05371225252747536, + 0.034935761243104935, + -0.378568172454834, + 0.1031026840209961, + 0.0697413980960846, + -0.15836521983146667, + 0.055314674973487854, + -0.2921608090400696, + -0.1878422647714615, + 0.08387884497642517, + -0.02348172850906849, + 0.11633884161710739, + -0.04514475166797638, + -0.006797481793910265, + -0.16597852110862732, + -0.18674692511558533, + -0.1781417727470398, + -0.14435860514640808, + 0.13849318027496338, + 0.09053032100200653, + -0.1284540444612503, + 0.0008781002834439278, + 0.18773995339870453, + -0.48895567655563354, + -0.2847486734390259, + 0.267551988363266, + -0.28864404559135437, + 0.29566484689712524, + -0.11407998204231262, + 0.378822386264801, + 0.40001246333122253, + 0.05274902656674385, + 0.19677725434303284, + 0.4697061777114868, + 0.3984792232513428, + 0.06355373561382294, + -0.14354346692562103, + 0.08533620089292526, + 0.03147219493985176, + -0.04639570787549019, + -0.3610660433769226, + 0.355654776096344, + -0.045501336455345154, + 0.1690748929977417, + -0.002688792534172535, + 0.16419994831085205, + 0.016202926635742188, + -0.2679378390312195, + -0.10791486501693726, + 0.49201497435569763, + 0.22888198494911194, + 0.06671790778636932, + 0.1428592950105667, + 0.35510513186454773, + 0.4634217619895935, + 0.06101655587553978, + -0.34377482533454895, + -0.051289502531290054, + -0.14004841446876526, + -0.255508691072464, + -0.2915162444114685, + 0.1609363555908203, + 0.32905691862106323, + -0.15973393619060516, + -0.18100731074810028, + 0.2961345314979553, + -0.2114296853542328, + -0.07773298770189285, + -0.17655381560325623, + 0.011677158996462822, + -0.049703456461429596, + -0.21769998967647552, + 0.2306259125471115, + -0.013719771057367325, + -0.16235598921775818, + 0.3368450999259949, + -0.27963900566101074, + -0.24579648673534393, + 0.17493762075901031, + -0.06680662930011749, + -0.3899391293525696, + 0.3454819321632385, + -0.2224164605140686, + 0.020916227251291275, + 0.28578391671180725, + -0.14427529275417328, + -0.021270979195833206, + -0.12395058572292328, + 0.25643935799598694, + 0.10913236439228058, + 0.033961083739995956, + -0.13228361308574677, + 0.06502865999937057, + 0.1717403084039688, + 0.592214047908783, + 0.2314368337392807, + 0.07204297184944153, + 0.3350045084953308, + -0.07012563943862915, + -0.3543141484260559, + 0.005660714581608772, + -0.05974195525050163, + 0.15054047107696533, + -0.047535449266433716, + -0.31843629479408264, + -0.20472171902656555, + 0.11641610413789749, + 0.19389207661151886, + -0.1209784522652626, + -0.05114450305700302, + 0.20561301708221436, + 0.04221804440021515, + -0.03909905627369881, + 0.15351472795009613, + 0.22436127066612244, + 0.010178793221712112, + 0.468885600566864, + 0.09688585996627808, + -0.09131868928670883, + 0.2427922487258911, + -0.05917609855532646, + 0.226558119058609, + -0.16924627125263214, + -0.4362291991710663, + -0.40189898014068604, + 0.0878443717956543, + -0.20961040258407593, + -0.17652219533920288, + 0.08758323639631271, + -0.2006133496761322, + 0.06266502290964127, + -0.11913471668958664, + 0.17118462920188904, + 0.019704584032297134, + 0.1714993715286255, + -0.08983881771564484, + 0.36125126481056213, + -0.0894111692905426, + -0.35656625032424927, + 0.1413729190826416, + -0.09259454905986786, + 0.17376692593097687, + -0.14425204694271088, + -0.13525493443012238, + -0.14414875209331512, + 0.34457504749298096, + -0.17759661376476288, + 0.004895076155662537, + -1.540686935186386e-05, + 0.09425801038742065, + -0.18891598284244537, + -0.15592390298843384, + -0.20987802743911743, + -0.20082980394363403, + -0.13723398745059967, + -0.11620370298624039, + 0.09843072295188904, + -0.1444927603006363, + -0.18796217441558838, + -0.1742773801088333, + 0.08525709807872772, + 0.40163925290107727, + -0.12654602527618408, + -0.03869543597102165, + 0.4240628182888031, + 0.10033371299505234, + 0.31720083951950073, + -0.28143632411956787, + 0.15492956340312958, + 0.08704649657011032, + -0.2654697000980377, + -0.04881821945309639, + -0.016870111227035522, + -0.26270630955696106, + -0.12414852529764175, + 0.1377853900194168, + 0.4025445580482483, + 0.0887882262468338, + 0.0468372106552124, + -0.03027254343032837, + -0.03690169006586075, + -0.22596830129623413, + 0.038792144507169724, + 0.2728533446788788, + 0.11235370486974716, + 0.2355501651763916, + 0.0061170682311058044, + -0.3013271689414978, + -0.30459287762641907, + -0.014720339328050613, + -0.4627458453178406, + 0.1813475787639618, + 0.04745449870824814, + -0.06341429054737091, + -0.14217376708984375, + 0.2134707272052765, + 0.005404438823461533, + -0.11771394312381744, + 0.25954848527908325, + 0.013961143791675568, + 0.2106950283050537, + -0.019350331276655197, + -0.21603421866893768, + -0.07641604542732239, + -0.17571528255939484, + -0.24132274091243744, + -0.40047815442085266, + 0.4158255457878113, + 0.3980637490749359, + -0.21376149356365204, + 0.03735671937465668, + 0.09683898091316223, + -0.26924726366996765, + -0.2347835898399353, + 0.03169608488678932, + -0.06420964002609253, + 0.3846817910671234, + 0.06705142557621002, + -0.2419806271791458, + -0.06293898075819016, + -0.23997923731803894, + -0.04855913668870926, + 0.10249004513025284, + 0.0988558977842331, + 0.37822696566581726, + 0.214402973651886, + 0.0697578489780426, + 0.3383386731147766, + 0.11332648992538452, + -0.036293093115091324, + 0.28004002571105957, + -0.02409154735505581, + 0.1520584523677826, + -0.16688387095928192, + -0.03524171561002731, + 0.2908414304256439, + -0.3653745651245117, + 0.22500896453857422, + 0.2979770004749298, + 0.1557924896478653, + -0.3007964491844177, + -0.36065003275871277, + -0.026259154081344604, + -0.1422356814146042, + -0.12988664209842682, + -0.2573707401752472, + 0.01718113012611866, + -0.0005274917930364609, + -0.1697939783334732, + 0.008123168721795082, + 0.1620730757713318, + 0.30958274006843567, + 0.12935811281204224, + 0.04020648077130318, + -0.247300922870636, + -0.3773331344127655, + 0.10396052896976471, + 0.3673536479473114, + -0.11643590033054352, + -0.056829262524843216, + -0.13928528130054474, + 0.12086570262908936, + 0.3734302520751953, + -0.04218396544456482, + -0.0028060302138328552, + -0.1740286946296692, + -0.09575439989566803, + 0.11020426452159882, + 0.03771224990487099, + -0.1574310064315796, + 0.049119748175144196, + -0.3487362265586853, + 0.06726031005382538, + -0.09100287407636642, + -0.16214610636234283, + 0.1984669715166092, + -0.18025431036949158, + -0.3657768666744232, + -0.09993989020586014, + 0.24185729026794434, + -0.15071788430213928, + -0.21291379630565643, + 0.1366998553276062, + 0.5614988803863525, + 0.11226191371679306, + -0.04895856976509094, + -0.013916626572608948, + -0.3271966576576233, + -0.017343293875455856, + 0.13135674595832825, + -0.1870238333940506, + -0.05345654860138893, + 0.05888453871011734, + 0.5063331723213196, + 0.29617029428482056, + 0.0781693160533905, + -0.32731789350509644, + 0.0348568856716156, + 0.17435330152511597, + 0.21318849921226501, + -0.2973577380180359, + -10.760284423828125, + -0.07705976068973541, + -0.2074543535709381, + 0.3931015133857727, + -0.1443420946598053, + -0.0781291201710701, + -0.040700241923332214, + 0.09222999215126038, + 0.11657589673995972, + 0.06625368446111679, + -0.4159711003303528, + -0.09368214011192322, + 0.36642909049987793, + 0.14340618252754211, + 0.06398440152406693, + -0.11690184473991394, + -0.19904130697250366, + 0.33899515867233276, + 0.05515924096107483, + 0.247812420129776, + 0.23134145140647888, + 0.44547587633132935, + -0.0077679343521595, + 0.3705824017524719, + 0.05776774510741234, + -0.3256063163280487, + -0.05720362067222595, + 0.4383063018321991, + 0.1852199286222458, + -0.21572570502758026, + 0.1346697211265564, + 0.04716166853904724, + -0.14165212213993073, + -0.12225180864334106, + -0.11630429327487946, + -0.23897729814052582, + 0.042448658496141434, + 0.20545031130313873, + 0.24753516912460327, + -0.14180505275726318, + 0.15748021006584167, + -0.07449785619974136, + 0.12548506259918213, + 0.13254037499427795, + -0.06745956093072891, + -0.620971143245697, + -0.18036237359046936, + -1.249608039855957, + 0.12780265510082245, + 0.34602096676826477, + 0.4217807650566101, + 0.11863972246646881, + 0.13410227000713348, + 0.05955906957387924, + -0.36140286922454834, + 0.2649194896221161, + -0.1120811253786087, + -0.1230640560388565, + 0.029187869280576706, + -0.0021337345242500305, + -0.04308479279279709, + -0.12084022164344788, + 0.5323108434677124, + -0.12813016772270203, + -0.35470050573349, + 0.30360737442970276, + -0.08827779442071915, + -0.019499951973557472, + -0.11532315611839294, + -0.162815123796463, + -0.49197036027908325, + -0.19340060651302338, + -0.04802045226097107, + 0.08514002710580826, + 0.40528059005737305, + -0.07893289625644684, + -0.3891502022743225, + 0.25558391213417053, + -0.0025581717491149902, + 0.2938360273838043, + 0.02811253070831299, + 0.012750699184834957, + 0.06092653051018715, + -0.009361499920487404, + 0.04986138641834259, + -0.08937467634677887, + 0.1444200873374939, + 0.41584548354148865, + 0.1003168374300003, + 0.1807423233985901, + 0.014477571472525597, + 0.20301803946495056, + -0.00028870999813079834, + -0.12920910120010376, + -0.41805481910705566, + 0.04160172492265701, + -0.15706497430801392, + 0.056589581072330475, + -0.06894007325172424, + -0.03683476895093918, + -0.23451340198516846, + -0.018516354262828827, + 0.01859549805521965, + -0.2877085208892822, + -0.2857058346271515, + 0.4141886234283447, + 0.16869127750396729, + 0.23061507940292358, + 0.22104033827781677, + -0.17074280977249146, + 0.02249368652701378, + 0.07750824093818665, + 0.18455982208251953, + 0.5066249966621399, + 0.12167725712060928, + -0.10829576849937439, + -0.2126179337501526, + -0.2208799123764038, + -0.2610623836517334, + 0.10251399129629135, + 0.4387354850769043, + -0.012084785848855972, + 0.14429225027561188, + 0.4056583642959595, + -0.01488814502954483, + 0.019989408552646637, + 0.9064183235168457, + -0.39538151025772095, + 0.16263112425804138, + -0.08241316676139832, + 0.15687327086925507, + -0.2712385058403015, + -0.4790802299976349, + 0.008007453754544258, + 0.42691096663475037, + -0.34386515617370605, + 0.5109390020370483, + 0.05270667374134064, + -0.3495572805404663, + 0.008313879370689392, + -0.21478500962257385, + 0.3183654546737671, + 0.3125024735927582, + 0.24615390598773956, + 0.05583029240369797, + -0.200467050075531, + -0.18840113282203674, + -0.06054779142141342, + -0.45721957087516785, + -0.25145864486694336, + -0.05640270933508873, + 0.0635661780834198, + 0.11742560565471649, + -0.35247522592544556, + 0.39202773571014404, + 0.07067875564098358, + -0.22197797894477844, + -0.2665887176990509, + -0.3358158469200134, + 0.00816674530506134, + 0.2017928510904312, + 0.6012858152389526, + -0.04619159549474716, + 0.02493780106306076, + -0.1550561636686325, + 0.13061387836933136, + -0.06757781654596329, + 0.17170831561088562, + -0.06510891020298004, + 0.07508485019207001, + -0.4468626081943512, + 0.06557665765285492, + 0.08915989845991135, + -0.3400595486164093, + -0.1384894996881485, + -0.2294258028268814, + 0.25670161843299866, + 0.02898065187036991, + -0.24524244666099548, + 0.0880199670791626, + 0.3006818890571594, + -0.007880868390202522, + -0.06058032065629959, + -0.2787621021270752, + 0.1562856286764145, + -0.00023385975509881973, + 0.33602726459503174, + 0.10304993391036987, + -0.24230524897575378, + -0.2999469041824341, + -0.4333721101284027, + -0.0149671770632267, + -0.13352960348129272, + -0.0967276468873024, + 0.06497111916542053, + 0.13307376205921173, + -0.2004036009311676, + 0.03736452758312225, + -0.2756181061267853, + 0.04310602694749832, + -0.164451003074646, + 0.13436013460159302, + 0.41685420274734497, + -0.33877643942832947, + 0.14946863055229187, + -0.24648872017860413, + 0.3125213086605072, + 0.15554724633693695, + -0.39477109909057617, + 0.1328176110982895, + -0.1124398484826088 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/testset/results_graph_004.json b/src/benchmark/output/results/testset/results_graph_004.json new file mode 100644 index 0000000..dc7604d --- /dev/null +++ b/src/benchmark/output/results/testset/results_graph_004.json @@ -0,0 +1,792 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is an 81-year-old female who presented with progressive chest tightness and dyspnea over a 10-day period. She has no history of smoking or malignancy.\n\n**Timeline of Diagnoses:**\n\n1. **Step 1 (Day 0-9):** The patient initially presents with progressive chest tightness, dyspnea, cough, and back pain. Chest CT imaging reveals a large left-sided pleural effusion.\n2. **Step 2 (Day 10):** Thoracentesis is performed, and the drained pleural fluid is sent to the Department of Pathology for further evaluation.\n3. **Step 3 (Day 11-12):** Post-thoracic drainage chest CT reveals a 6.7 cm x 2.8 cm heterogeneous mass in the left inferior lobe with irregular contrast enhancement, suggestive of a left lung tumor.\n4. **Step 4 (Day 13-14):** Pulmonary window analysis shows multiple nodular high-density foci scattered across both lungs, concerning for bilateral pulmonary metastases. Mediastinal window assessment reveals bilateral mediastinal lymphadenopathy and enlarged lymph nodes at the left pulmonary hilum, consistent with lymph node metastasis.\n5. **Step 5 (Day 15-16):** Abdominal CT scan detects multiple low-density hepatic nodules of varying sizes, with the largest lesion located in the right hepatic lobe. Enhanced brain CT identifies an irregular heterogeneously enhancing mass within the right frontal lobe, consistent with brain metastasis.\n6. **Step 6 (Day 17-18):** Cell block analysis of the pleural effusion demonstrates poorly cohesive round-to-oval cells with a dispersed distribution exhibiting eccentrically located nuclei with dense chromatin.\n\n**Treatments:**\n\n1. Thoracentesis and post-thoracic drainage chest CT\n2. Abdominal CT scan and enhanced brain CT\n\n**Outcomes:**\nThe patient's diagnosis is confirmed as lung cancer with bilateral pulmonary metastases, hepatic metastases, and brain metastasis. The cell block analysis of the pleural effusion reveals poorly cohesive round-to-oval cells consistent with adenocarcinoma.\n\n**Conclusion:**\nThis 81-year-old female patient presents with progressive chest tightness and dyspnea due to a large left-sided pleural effusion, which is later confirmed as a left lung tumor with bilateral pulmonary metastases, hepatic metastases, and brain metastasis. The diagnosis is made after thoracentesis, post-thoracic drainage chest CT, abdominal CT scan, enhanced brain CT, and cell block analysis of the pleural effusion.", + "bertscore": { + "precision": 0.8535692095756531, + "recall": 0.869658887386322, + "f1": 0.8615389466285706 + }, + "bleu": 0.12150955580589737, + "rouge1": 0.4815766923736076, + "rougeL": 0.3461868037703513, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 6, + "edge_count": 5, + "avg_in_degree": 0.8333333333333334, + "density": 0.16666666666666666 + }, + "trajectory_embedding": [ + 0.2583933174610138, + -0.1034068688750267, + 0.02750878781080246, + 0.12225138396024704, + 0.07123710960149765, + 0.08420076966285706, + -0.025338614359498024, + 0.20714537799358368, + 0.42998072504997253, + -0.2773303687572479, + -0.23241369426250458, + 0.0849342942237854, + -0.532634437084198, + 0.050035249441862106, + -0.25669047236442566, + 0.11723083257675171, + 0.17126429080963135, + 0.2885790467262268, + 0.022143423557281494, + -0.16853980720043182, + -0.5408232808113098, + 0.15986886620521545, + -0.4296847879886627, + -0.00046265622950159013, + 0.2759328782558441, + -0.047584932297468185, + 0.17444981634616852, + 0.3902381658554077, + 0.2824210822582245, + 0.31304478645324707, + 0.13808360695838928, + -0.15729466080665588, + 0.14718084037303925, + -0.02834639698266983, + -0.10681698471307755, + 0.3241442143917084, + 0.20505361258983612, + 0.5838627219200134, + -0.04575663432478905, + 0.060654330998659134, + 0.030844343826174736, + -0.050123054534196854, + 0.7809808850288391, + 0.08795914798974991, + 0.6160065531730652, + -0.8483803272247314, + -0.03120688535273075, + 0.4838823080062866, + -0.5674558877944946, + -0.540779173374176, + 0.18877719342708588, + 0.8178849220275879, + 0.5946782827377319, + -0.16376003623008728, + 0.5136048793792725, + -0.07738406211137772, + -0.21868568658828735, + -0.3406544625759125, + -0.1053871288895607, + -0.045159924775362015, + -0.16560716927051544, + -0.3703373372554779, + 0.19793196022510529, + -0.0010139979422092438, + -0.21991266310214996, + -0.1403156965970993, + -0.10146746039390564, + -0.0013162102550268173, + 0.0025066707748919725, + -0.5080063343048096, + -0.08493319153785706, + -0.1158699169754982, + -0.21040649712085724, + 0.05718383565545082, + 0.14271576702594757, + -0.03102109767496586, + 0.3902250826358795, + -0.16335779428482056, + 0.006653872784227133, + 0.027929047122597694, + -0.053903866559267044, + -0.07901398092508316, + 0.20077599585056305, + 0.3684241771697998, + -0.38222071528434753, + 0.20212328433990479, + -0.11495695263147354, + -0.17530719935894012, + -0.2628645598888397, + 0.16204775869846344, + 0.17011022567749023, + -0.27152374386787415, + 0.03408863767981529, + -0.19221343100070953, + -0.02224837802350521, + -0.07351172715425491, + 0.30550000071525574, + 0.41390419006347656, + 1.0035374164581299, + -0.004422043915838003, + 0.22426648437976837, + 0.11977455765008926, + 0.33749184012413025, + 0.036290597170591354, + 0.5529285073280334, + -0.008936245925724506, + 0.09814983606338501, + -0.5816942453384399, + 0.059138935059309006, + 0.15273845195770264, + 0.07159942388534546, + -0.29080766439437866, + 0.04695405066013336, + -0.2886608839035034, + 0.18138979375362396, + 0.19459004700183868, + -0.13260580599308014, + 0.13827109336853027, + 0.05933411791920662, + -0.4314861297607422, + -0.17297464609146118, + -0.0476449690759182, + 0.3173906207084656, + 0.416760116815567, + -0.5305055975914001, + -0.10646569728851318, + -0.12110152095556259, + 0.0986652597784996, + 0.01864704303443432, + 0.12650208175182343, + -0.5729765295982361, + 0.009160935878753662, + -0.04395563527941704, + 0.24541759490966797, + -0.08395711332559586, + 0.09758146852254868, + -0.33874014019966125, + 0.10391154885292053, + -1.132510781288147, + 0.2772623598575592, + -0.3100367784500122, + -0.07802683860063553, + 0.08687806129455566, + -0.559102475643158, + -0.2412130981683731, + -0.18299619853496552, + -0.15575949847698212, + 0.13471664488315582, + -0.016560552641749382, + 0.027904203161597252, + -0.11488768458366394, + 0.1487807035446167, + 0.2224673181772232, + 0.31117090582847595, + 0.20761561393737793, + 0.07557263970375061, + 0.17278845608234406, + 0.2158612757921219, + 0.111088328063488, + -0.15561972558498383, + -0.027734214439988136, + 0.3112354576587677, + 0.1701497584581375, + -0.0415533147752285, + 0.07769405096769333, + -0.7617084383964539, + 0.0938117578625679, + -0.17703783512115479, + 0.21898877620697021, + 0.027599208056926727, + -0.20122146606445312, + 0.22140993177890778, + -0.27565065026283264, + 0.5770207047462463, + 0.11100810766220093, + 0.47188758850097656, + 0.03558645769953728, + -0.22732891142368317, + 0.10141105204820633, + 0.14196449518203735, + 0.19945426285266876, + -0.08361326903104782, + 0.6745460033416748, + 0.07695264369249344, + -0.1957089751958847, + 0.33735692501068115, + 0.26028409600257874, + -0.04082590714097023, + -0.135816752910614, + -0.13909098505973816, + 0.4667492210865021, + -0.2696774899959564, + 0.46427950263023376, + -0.48746323585510254, + 0.06286367774009705, + 0.14144213497638702, + -0.3030308485031128, + -0.056460484862327576, + 0.07677639275789261, + 0.05395236611366272, + 0.33006832003593445, + -0.06897107511758804, + -0.13764017820358276, + 0.012192770838737488, + 0.03623608872294426, + -0.11426950246095657, + 0.40463176369667053, + -0.044142503291368484, + 0.16351355612277985, + -0.06884920597076416, + -0.10242035984992981, + 0.2029731720685959, + -0.2510397434234619, + 0.08136317133903503, + 0.028738683089613914, + -0.4006012976169586, + 0.4184788167476654, + -0.028715573251247406, + -0.154597207903862, + 0.14366252720355988, + -0.13943582773208618, + -0.09763345122337341, + 0.15922962129116058, + -0.10088170319795609, + -0.3189184367656708, + 0.2153245061635971, + 0.10251444578170776, + 0.16937114298343658, + 0.3747340142726898, + 0.054426033049821854, + -0.04271594062447548, + -0.413448691368103, + 0.19344840943813324, + -0.024294273927807808, + -0.0772751197218895, + -0.4334566593170166, + 0.10619517415761948, + -0.34201502799987793, + 0.006509624421596527, + 0.24947905540466309, + -0.008853008970618248, + -0.1661585122346878, + 0.07974010705947876, + -0.18288201093673706, + -0.07533561438322067, + -0.40985798835754395, + 0.067476786673069, + 0.27375900745391846, + -0.075074702501297, + 0.17313379049301147, + -0.12923800945281982, + -0.12094511836767197, + 0.1721431463956833, + -0.28256723284721375, + -0.24916251003742218, + -0.38847672939300537, + -0.09403025358915329, + 0.05106024816632271, + -0.405582070350647, + 0.23059557378292084, + 0.05928253009915352, + -0.072181336581707, + -0.005881907884031534, + -0.2475137710571289, + -0.17939354479312897, + 0.09048786014318466, + -0.1508682370185852, + 0.021808376535773277, + 0.018271347507834435, + 0.11503053456544876, + -0.2114352136850357, + -0.3047686517238617, + -0.22384530305862427, + -0.09827858954668045, + 0.10696051269769669, + 0.07760587334632874, + -0.17969168722629547, + -0.13017039000988007, + 0.1038367822766304, + -0.2766321003437042, + -0.36624875664711, + 0.28650182485580444, + -0.08110731095075607, + 0.09820276498794556, + -0.03329989314079285, + 0.33045321702957153, + 0.0988786593079567, + -0.10366421937942505, + 0.06028594449162483, + 0.3911769390106201, + 0.5341885685920715, + 0.17068935930728912, + 0.043469130992889404, + -0.14090386033058167, + -0.07493159174919128, + -0.13546469807624817, + -0.4136233627796173, + 0.37483540177345276, + 0.10196995735168457, + -0.051735419780015945, + 0.04934224113821983, + 0.22684256732463837, + 0.14396075904369354, + -0.4280366599559784, + -0.16426706314086914, + 0.5573795437812805, + -0.04074380174279213, + 0.048320043832063675, + 0.0691380500793457, + 0.3954283893108368, + 0.678138017654419, + -0.03454875946044922, + -0.1016673818230629, + 0.084197998046875, + 0.00750374561175704, + -0.22610235214233398, + -0.06779544800519943, + 0.10169506818056107, + 0.5168731212615967, + -0.1505005806684494, + -0.042034000158309937, + 0.20306754112243652, + -0.09602037817239761, + -0.021799592301249504, + -0.1986166387796402, + -0.09983617067337036, + -0.0226000864058733, + -0.24916958808898926, + 0.47841131687164307, + -0.03324337676167488, + -0.08554657548666, + 0.44878950715065, + -0.17464379966259003, + -0.21563875675201416, + 0.1419552117586136, + -0.16669635474681854, + -0.6626150012016296, + 0.2328748255968094, + -0.1341627687215805, + -0.12986353039741516, + 0.42494651675224304, + 0.03062487579882145, + -0.08983782678842545, + -0.27506741881370544, + 0.49694588780403137, + 0.08067440986633301, + -0.08811963349580765, + -0.096425361931324, + 0.08180604875087738, + 0.37660136818885803, + 0.6148494482040405, + 0.20654530823230743, + 0.2933645248413086, + 0.5388324856758118, + 0.05001749470829964, + -0.24983006715774536, + -0.14874614775180817, + 0.12354717403650284, + 0.37616539001464844, + -0.17116235196590424, + -0.20130860805511475, + -0.3236638307571411, + -0.11367016285657883, + 0.1557912975549698, + -0.22135354578495026, + 0.02333947829902172, + 0.16448284685611725, + 0.03779447078704834, + -0.06024624779820442, + 0.183921679854393, + 0.16703177988529205, + -0.18795521557331085, + 0.3378758132457733, + -0.022704854607582092, + -0.06773103028535843, + 0.2121073454618454, + -0.27194929122924805, + 0.22983519732952118, + -0.12476903945207596, + -0.37102627754211426, + -0.36135146021842957, + -0.016541125252842903, + -0.3874332010746002, + -0.0940878614783287, + 0.02007303200662136, + -0.3772667944431305, + 0.10322427749633789, + -0.22529222071170807, + 0.1153930202126503, + 0.1438031941652298, + 0.33676978945732117, + 0.10866376757621765, + 0.4264952838420868, + 0.2190948873758316, + -0.22840513288974762, + 0.1045515164732933, + -0.2046426683664322, + 0.12325694411993027, + -0.14307814836502075, + -0.030300410464406013, + -0.08462776988744736, + 0.5158798694610596, + 0.1830156445503235, + -0.09632595628499985, + -0.030905038118362427, + 0.03387178108096123, + -0.2078799158334732, + -0.39124050736427307, + -0.25190284848213196, + -0.18647928535938263, + -0.03149080276489258, + 0.016730058938264847, + 0.05352554842829704, + -0.3722710907459259, + -0.28807154297828674, + -0.09175633639097214, + 0.14350128173828125, + 0.09866578131914139, + -0.12090641260147095, + 0.044013068079948425, + 0.34197625517845154, + 0.05192260816693306, + 0.3562060594558716, + -0.1663912534713745, + 0.1565546989440918, + 0.14726302027702332, + -0.48303428292274475, + 0.008545054122805595, + 0.03822505846619606, + -0.2749291658401489, + -0.040790408849716187, + 0.3350977897644043, + 0.24803684651851654, + 0.06085463985800743, + -0.006296847015619278, + 0.1869978904724121, + 0.3082644045352936, + -0.49922218918800354, + -0.1558949202299118, + 0.297989159822464, + 0.23977714776992798, + 0.5399264097213745, + -0.07175121456384659, + -0.3642609119415283, + -0.13309411704540253, + -0.01023685559630394, + -0.3957871198654175, + 0.13229069113731384, + 0.21839351952075958, + -0.3072367310523987, + -0.11105629056692123, + 0.14854423701763153, + -0.03693987801671028, + -0.006507532205432653, + 0.1581149697303772, + -0.12859870493412018, + 0.22252380847930908, + 0.044940706342458725, + -0.20735733211040497, + -0.12382151931524277, + -0.18659506738185883, + -0.30098238587379456, + -0.13125135004520416, + 0.4016812741756439, + 0.34076786041259766, + -0.32496756315231323, + 0.07214223593473434, + 0.04219283163547516, + -0.25916412472724915, + -0.2640756666660309, + -0.15624357759952545, + -0.2547512650489807, + 0.32960137724876404, + -0.2121124416589737, + -0.1298261433839798, + 0.05076824128627777, + -0.372775673866272, + 0.15544575452804565, + 0.2193928360939026, + 0.015916774049401283, + 0.41949784755706787, + 0.2979274392127991, + 0.12490435689687729, + 0.297406405210495, + 0.01885177753865719, + -0.01569005846977234, + 0.253350168466568, + -0.026847735047340393, + -0.014257587492465973, + -0.1742265224456787, + -0.13847921788692474, + 0.2683720588684082, + -0.30792561173439026, + 0.12654325366020203, + 0.3447130620479584, + 0.20055769383907318, + -0.47759580612182617, + -0.2365545630455017, + -0.07583025842905045, + 0.05415143445134163, + -0.10736274719238281, + -0.29489168524742126, + -0.16288314759731293, + 0.0809013694524765, + -0.12513378262519836, + -0.16591334342956543, + 0.3000882565975189, + 0.31882956624031067, + 0.04868127033114433, + 0.1831132173538208, + -0.33442196249961853, + -0.41347643733024597, + 0.13727976381778717, + 0.30553099513053894, + -0.0019482970237731934, + -0.08148317784070969, + -0.2510068714618683, + 0.332955926656723, + 0.6421900391578674, + -0.16719599068164825, + 0.025820741429924965, + 0.0336749367415905, + 0.11857970803976059, + 0.15314221382141113, + 0.17436237633228302, + -0.19084179401397705, + 0.14351870119571686, + -0.3643704652786255, + 0.3631077706813812, + -0.3282874822616577, + -0.1022457703948021, + 0.2416631132364273, + -0.11928466707468033, + -0.46645116806030273, + -0.21617066860198975, + 0.4866280257701874, + -0.20845408737659454, + -0.02713753469288349, + 0.14643238484859467, + 0.5337359309196472, + 0.1042320504784584, + -0.34738659858703613, + 0.0780247151851654, + -0.4741765558719635, + -0.09153936058282852, + 0.04712247848510742, + -0.15491464734077454, + -0.030437370762228966, + -0.18307431042194366, + 0.40902015566825867, + 0.4341925382614136, + 0.09944408386945724, + -0.05857411026954651, + 0.06813406199216843, + 0.21257035434246063, + 0.351852148771286, + -0.16517408192157745, + -10.696385383605957, + 0.08947757631540298, + -0.3235389292240143, + 0.6214336156845093, + -0.2847406566143036, + -0.04602588340640068, + 0.0622689314186573, + -0.07753685116767883, + -0.030190808698534966, + 0.02812592126429081, + -0.14662860333919525, + 0.06933770328760147, + 0.36432579159736633, + 0.3089110553264618, + -0.13865086436271667, + -0.15325336158275604, + -0.18933339416980743, + 0.17559605836868286, + -0.043805401772260666, + 0.30726563930511475, + 0.22761309146881104, + 0.406486839056015, + -0.3058054745197296, + 0.2413964718580246, + 0.07033171504735947, + -0.40084946155548096, + -0.22004981338977814, + 0.6523023247718811, + 0.1705946922302246, + -0.2580893039703369, + 0.3245163857936859, + 0.2855913043022156, + -0.30612459778785706, + 0.1704527735710144, + -0.1327863484621048, + -0.07284746319055557, + 0.004032632801681757, + -0.03175688162446022, + 0.23475247621536255, + 0.1051781177520752, + -0.10584268718957901, + -0.27533823251724243, + 0.25331932306289673, + 0.2575684189796448, + -0.2212311178445816, + -0.5380603671073914, + -0.15242181718349457, + -1.5252615213394165, + 0.21881145238876343, + 0.38092169165611267, + 0.447542279958725, + 0.05662431940436363, + 0.1594395488500595, + 0.11298314481973648, + -0.4088262617588043, + 0.0745827779173851, + -0.20342892408370972, + -0.030261151492595673, + 0.10569833964109421, + 0.07416641712188721, + 0.09360381960868835, + -0.2519964277744293, + 0.4135836660861969, + -0.137808158993721, + -0.3726528584957123, + 0.058830201625823975, + 0.06929994374513626, + -0.04357905313372612, + -0.20546849071979523, + -0.4559309780597687, + -0.45889750123023987, + 0.0038210004568099976, + -0.002218355657532811, + -0.052970025688409805, + 0.551442563533783, + 0.009390238672494888, + -0.299750417470932, + 0.1834694892168045, + 0.05571199581027031, + 0.5421097874641418, + 0.19629167020320892, + -0.09736425429582596, + 0.041664667427539825, + -0.08587676286697388, + -0.441127210855484, + -0.2162787765264511, + 0.10138394683599472, + 0.4863532483577728, + 0.021734535694122314, + 0.11847960948944092, + 0.008275563828647137, + 0.39933255314826965, + 0.07021576911211014, + -0.1566905528306961, + -0.4506320059299469, + 0.08993678539991379, + -0.1058262288570404, + 0.14905905723571777, + 0.09357014298439026, + -0.1506110280752182, + -0.278011292219162, + 0.08941177278757095, + -0.12621618807315826, + -0.4539858400821686, + -0.43350669741630554, + 0.1009003296494484, + 0.0908517837524414, + 0.21964360773563385, + 0.09002294391393661, + -0.15110395848751068, + -0.23119883239269257, + 0.04710010811686516, + 0.10503026843070984, + 0.5425638556480408, + 0.1520182490348816, + 0.023759083822369576, + -0.0624953955411911, + -0.387238472700119, + -0.21234168112277985, + 0.20065563917160034, + 0.3276001214981079, + -0.27673497796058655, + 0.32038411498069763, + 0.7085633277893066, + -0.12014124542474747, + -0.07677537947893143, + 1.0679117441177368, + -0.19159144163131714, + 0.3714933395385742, + -0.25225159525871277, + 0.16138187050819397, + -0.08190486580133438, + -0.3474377691745758, + 0.13265050947666168, + 0.34365156292915344, + -0.29666703939437866, + 0.6284262537956238, + 0.23948973417282104, + -0.3748980760574341, + 0.12418612092733383, + -0.31935620307922363, + 0.4985201358795166, + 0.3137863278388977, + 0.17917583882808685, + -0.03732016310095787, + -0.34272050857543945, + -0.1823723465204239, + 0.18177001178264618, + -0.4208186864852905, + -0.2803672254085541, + -0.16702836751937866, + 0.15541458129882812, + 0.31520089507102966, + -0.2805477976799011, + 0.3430659770965576, + 0.10352038592100143, + -0.1605072170495987, + -0.3442021310329437, + -0.46736398339271545, + -0.08180318027734756, + 0.08650700002908707, + 0.8310564160346985, + -0.11916478723287582, + 0.05509529635310173, + -0.09057893604040146, + 0.18557630479335785, + -0.10518945008516312, + 0.20370543003082275, + 0.05196814239025116, + -0.061092808842659, + -0.454100102186203, + 0.261759489774704, + -0.007629778236150742, + -0.39780792593955994, + -0.12359728664159775, + -0.2059127539396286, + -0.0893588438630104, + 0.11700839549303055, + -0.1693694144487381, + 0.17578516900539398, + 0.3254343569278717, + -0.1111014187335968, + -0.0199649129062891, + -0.36808180809020996, + 0.1326427012681961, + 0.13516975939273834, + 0.13114914298057556, + 0.19489987194538116, + -0.28813454508781433, + -0.3206564486026764, + -0.37855467200279236, + 0.1762486845254898, + -0.3110061585903168, + -0.0863831415772438, + -0.022728750482201576, + 0.24485403299331665, + -0.31534287333488464, + -0.008384250104427338, + -0.21698908507823944, + 0.04126561060547829, + -0.2706139385700226, + 0.24860239028930664, + 0.41023001074790955, + -0.1756933182477951, + 0.1744261384010315, + -0.2324109822511673, + 0.08062459528446198, + 0.06217345595359802, + -0.4316578209400177, + 0.28146860003471375, + -0.14903905987739563 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/testset/results_graph_005.json b/src/benchmark/output/results/testset/results_graph_005.json new file mode 100644 index 0000000..46b8d1e --- /dev/null +++ b/src/benchmark/output/results/testset/results_graph_005.json @@ -0,0 +1,792 @@ +{ + "status": "success", + "reconstructed_narrative": "**Clinical Case Report**\n\n**Patient Demographics:**\nThe patient is a 54-year-old Chinese male with a significant smoking history of 30 years. He presented with worsening cough for 3 months, which led to further investigation via CT imaging.\n\n**Timeline of Diagnoses:**\n\n1. **April 2023:** Enhanced CT revealed a 22 mm \u00d7 12 mm \u00d7 16 mm mass in the right upper lobe with invasion in the right hilum and mediastinal. PET-CT scan confirmed the CT findings.\n2. **Biopsy (Upper Right Lobe):** Biopsy of the lung lesion showed positive immunohistochemistry (IHC) for TTF-1, NpA, CK7, CD5/6, and Ki67 (60%); and negative for p40, p63, and CD56. Diagnosed with stage IIIA lung adenocarcinoma (cT1cN2M0).\n3. **May 2023:** Targeted NGS analysis identified an EGFRG719X mutation with a mutant allele frequency (MAF) of 3.8%.\n\n**Timeline of Treatments:**\n\n1. **May 2023:** The patient received two cycles of PC chemotherapy (pemetrexed 0.9g d1 and carboplatin 600mg d1) and dacomitinib (30mg).\n2. **Initial Treatment Evaluation:** Initial tumor was considered unresectable due to metastasis in the right hilum and mediastinum.\n\n**Timeline of Outcomes:**\n\n1. **May 2023:** Chest CT showed obvious shrinkage in the lesions in the right upper lung lobe and the lymph nodes of the mediastinum, contributing to partial response (PR).\n2. **Current Status:** The patient is currently receiving treatment for stage IIIA lung adenocarcinoma with EGFRG719X mutation.\n\n**Clinical Summary:**\nThe patient presented with worsening cough and a significant smoking history, leading to further investigation via CT imaging. Biopsy of the lung lesion confirmed the diagnosis of stage IIIA lung adenocarcinoma (cT1cN2M0) with an EGFRG719X mutation. The patient received two cycles of PC chemotherapy and dacomitinib, resulting in a partial response (PR). Further treatment is ongoing to manage this complex case.\n\n**Key Findings:**\n\n* Stage IIIA lung adenocarcinoma with EGFRG719X mutation\n* Partial response (PR) after initial treatment evaluation\n* Significant smoking history of 30 years\n* Worsening cough for 3 months\n\n**Recommendations:**\nFurther evaluation and management are necessary to optimize the patient's care. This may include additional imaging, laboratory tests, or other treatments to manage this complex case.\n\nNote: The above narrative is based on the provided data and may not be a comprehensive clinical case report.", + "bertscore": { + "precision": 0.86226487159729, + "recall": 0.8710905313491821, + "f1": 0.8666552901268005 + }, + "bleu": 0.27859330938799, + "rouge1": 0.560096153846154, + "rougeL": 0.3966346153846154, + "topology": { + "is_acyclic": true, + "timestamps_in_order": false, + "all_nodes_have_timestamps": false, + "weakly_connected_components": 1, + "node_count": 5, + "edge_count": 4, + "avg_in_degree": 0.8, + "density": 0.2 + }, + "trajectory_embedding": [ + 0.26444298028945923, + 0.15941788256168365, + -0.1746055781841278, + 0.1967768669128418, + 0.13093367218971252, + 0.108800008893013, + 0.047415077686309814, + 0.3190433979034424, + 0.4498003125190735, + -0.4936943054199219, + -0.028453731909394264, + 0.19775180518627167, + -0.6453556418418884, + -0.2056516706943512, + -0.17296206951141357, + 0.10433705896139145, + -0.08722388744354248, + 0.390603631734848, + -0.16305780410766602, + -0.2122727930545807, + -0.4088035523891449, + 0.1627717912197113, + -0.44224637746810913, + 0.022073950618505478, + 0.17852269113063812, + -0.062067460268735886, + 0.3639596700668335, + 0.569270133972168, + 0.364279180765152, + 0.27838003635406494, + 0.07867208868265152, + -0.20546475052833557, + 0.04605097696185112, + 0.013336477801203728, + -0.15748649835586548, + 0.26580068469047546, + 0.28932029008865356, + 0.39360129833221436, + -0.23011581599712372, + -0.11030633747577667, + -0.078081414103508, + -0.018068676814436913, + 0.7918617129325867, + 0.16979047656059265, + 0.5370013117790222, + -0.6131890416145325, + -0.19347310066223145, + 0.5365955233573914, + -0.5480602979660034, + -0.32550469040870667, + 0.2359710931777954, + 0.7565101981163025, + 0.5041403770446777, + -0.2397071123123169, + 0.4378383755683899, + -0.22332391142845154, + -0.20167522132396698, + -0.13796362280845642, + -0.17543330788612366, + 0.042690061032772064, + 0.02397197112441063, + -0.04287847876548767, + 0.27494025230407715, + -0.10107463598251343, + -0.09495393931865692, + -0.26205503940582275, + -0.27165770530700684, + 0.036628853529691696, + 0.010086539201438427, + -0.37737196683883667, + -0.21605443954467773, + -0.25396811962127686, + -0.08632999658584595, + 0.11548461765050888, + 0.20971211791038513, + -0.10876703262329102, + 0.2750052809715271, + -0.0752566009759903, + 0.07908450067043304, + 0.14167554676532745, + 0.012829994782805443, + -0.10998060554265976, + -0.016856277361512184, + 0.32763800024986267, + -0.3715936839580536, + 0.02066645585000515, + -0.1057099923491478, + -0.15630166232585907, + -0.3564395308494568, + 0.19048824906349182, + 0.10057153552770615, + -0.3014791011810303, + 0.09028486162424088, + -0.2506754398345947, + -0.017363328486680984, + 0.15851105749607086, + 0.49282804131507874, + 0.166995570063591, + 0.9529813528060913, + 0.014598676934838295, + 0.18515194952487946, + -0.03545413538813591, + 0.1201309785246849, + 0.05223888158798218, + 0.4652419686317444, + -0.18059960007667542, + 0.19650860130786896, + -0.505384624004364, + 0.16876018047332764, + 0.4273758828639984, + 0.04789828136563301, + -0.14991816878318787, + -0.012555981054902077, + -0.2510371208190918, + 0.17002657055854797, + 0.17869381606578827, + -0.020138174295425415, + 0.15021224319934845, + 0.20156557857990265, + -0.4831060767173767, + -0.15941780805587769, + -0.13622929155826569, + 0.324978768825531, + 0.214555025100708, + -0.5191226005554199, + -0.10466263443231583, + -0.1056557446718216, + 0.03231992572546005, + -0.13290998339653015, + 0.13541147112846375, + -0.4916798174381256, + -0.20754575729370117, + -0.11399044841527939, + 0.11582426726818085, + -0.27831584215164185, + 0.3694887161254883, + -0.36065706610679626, + 0.07822888344526291, + -1.139994740486145, + 0.3266427218914032, + -0.4491669237613678, + -0.13711878657341003, + 0.020153993740677834, + -0.5781341195106506, + -0.17323558032512665, + -0.18497522175312042, + -0.1455450803041458, + 0.12946856021881104, + -0.036234062165021896, + -0.07339540868997574, + 0.003791165305301547, + -0.06739691644906998, + 0.2355768382549286, + 0.37865930795669556, + 0.10425474494695663, + 0.22910253703594208, + 0.048134695738554, + 0.3423025608062744, + 0.24893251061439514, + -0.14016327261924744, + 0.11029203981161118, + 0.4786514341831207, + 0.22046053409576416, + -0.016301019117236137, + -0.038135699927806854, + -0.623832106590271, + 0.06389786303043365, + -0.1485079973936081, + 0.05580617114901543, + 0.12250997871160507, + -0.16259676218032837, + 0.08546064794063568, + -0.10227549076080322, + 0.5625059008598328, + 0.16142921149730682, + 0.4568749964237213, + -0.08332149684429169, + 0.010616607964038849, + 0.0946546271443367, + 0.2393914759159088, + 0.03938936069607735, + -0.2937808632850647, + 0.7030659914016724, + 0.3660908341407776, + -0.242463156580925, + 0.23471656441688538, + 0.4681726396083832, + -0.13847549259662628, + -0.33584561944007874, + -0.1295376569032669, + 0.47047853469848633, + -0.21746821701526642, + 0.5052754282951355, + -0.43891334533691406, + 0.07624028623104095, + 0.0781157836318016, + -0.23918123543262482, + -0.019108915701508522, + 0.023412484675645828, + -0.15876367688179016, + 0.2233765870332718, + 0.013265090063214302, + -0.27820059657096863, + 0.06996011734008789, + 0.12561726570129395, + -0.12418381124734879, + 0.24710974097251892, + -0.003401172114536166, + 0.08434903621673584, + 0.07389038056135178, + -0.07700999081134796, + 0.20359942317008972, + 0.08988092839717865, + 0.2677081525325775, + -0.046653736382722855, + -0.31211763620376587, + 0.2533976435661316, + -0.058825623244047165, + -0.2366064339876175, + 0.13747508823871613, + -0.1293993443250656, + -0.2816670835018158, + 0.09862317144870758, + -0.04895424097776413, + -0.46308016777038574, + 0.24614211916923523, + 0.19535012543201447, + 0.20770525932312012, + 0.10454127937555313, + -0.06568097323179245, + 0.015821048989892006, + -0.5318699479103088, + 0.3571562170982361, + -0.029392218217253685, + -0.11664308607578278, + -0.32178542017936707, + 0.25908562541007996, + -0.12581484019756317, + -0.13722440600395203, + 0.4060828685760498, + 0.0326664038002491, + -0.06013842672109604, + 0.04090610519051552, + -0.31625327467918396, + -0.025044357404112816, + -0.28987154364585876, + 0.042393073439598083, + 0.28785213828086853, + 0.14498302340507507, + 0.29223042726516724, + 0.1767764538526535, + -0.19618161022663116, + 0.13886326551437378, + -0.1817779690027237, + -0.39477795362472534, + -0.3424406945705414, + -0.030069774016737938, + -0.020694833248853683, + -0.6699351072311401, + 0.24384908378124237, + -0.14709126949310303, + 0.03677447885274887, + 0.147049218416214, + -0.4412923753261566, + -0.1646527796983719, + -0.05756424739956856, + -0.04163757711648941, + 0.05752462148666382, + -0.1536444127559662, + 0.02227427437901497, + -0.3373582363128662, + -0.3324770927429199, + -0.06726725399494171, + 0.0903121829032898, + 0.09357617050409317, + 0.05206674337387085, + -0.3169952630996704, + 0.04694559425115585, + 0.284548819065094, + -0.33872148394584656, + -0.2569897770881653, + 0.16392681002616882, + -0.2700750231742859, + 0.11068473011255264, + -0.11211707442998886, + 0.17844170331954956, + 0.3257884681224823, + 0.145432248711586, + 0.14286966621875763, + 0.48899954557418823, + 0.4766181409358978, + -0.08813217282295227, + 0.0742560550570488, + 0.07247768342494965, + -0.048548467457294464, + -0.0719694048166275, + -0.27989187836647034, + 0.2888413369655609, + -0.07350458204746246, + 0.02597568929195404, + 0.03725794702768326, + 0.33235830068588257, + 0.16973096132278442, + -0.36056822538375854, + -0.024160826578736305, + 0.5726142525672913, + 0.1274251490831375, + 0.0720137432217598, + 0.09204301983118057, + 0.3280442953109741, + 0.3754640519618988, + -0.011867234483361244, + -0.020063292235136032, + 0.03426354005932808, + -0.10167889297008514, + -0.003683286951854825, + -0.1615658700466156, + 0.24738983809947968, + 0.37143439054489136, + -0.11800484359264374, + -0.3787926733493805, + 0.19062861800193787, + -0.10042177140712738, + -0.0920012891292572, + -0.188311368227005, + -0.02597857639193535, + 0.03697410225868225, + -0.1832079291343689, + 0.37874919176101685, + -0.09673632681369781, + 0.034678392112255096, + 0.5132294297218323, + -0.1839822381734848, + -0.05141686275601387, + 0.2306409329175949, + -0.16698555648326874, + -0.47715896368026733, + 0.2924748957157135, + -0.14144392311573029, + -0.07684727013111115, + 0.39445576071739197, + -0.3700679838657379, + 0.014759650453925133, + -0.12398584187030792, + 0.29324641823768616, + -0.04657968133687973, + 0.006628687493503094, + -0.005731302313506603, + -0.00021234751329757273, + 0.03934416174888611, + 0.5866349935531616, + 0.05733019858598709, + 0.10452653467655182, + 0.5318712592124939, + -0.04209374636411667, + -0.3857511281967163, + 0.07638968527317047, + 0.019100463017821312, + 0.3273197412490845, + -0.25662511587142944, + -0.12148809432983398, + -0.20611067116260529, + 0.17535126209259033, + 0.06717584282159805, + -0.1954023241996765, + -0.08450596034526825, + 0.10032176971435547, + 0.09494118392467499, + 0.01739845797419548, + 0.3453163504600525, + 0.09542397409677505, + -0.1084357276558876, + 0.4954783320426941, + -0.1315261572599411, + -0.1482975035905838, + 0.4415794312953949, + -0.20641303062438965, + 0.3011438250541687, + -0.1731223315000534, + -0.18088027834892273, + -0.33862677216529846, + 0.14215219020843506, + -0.3085923492908478, + -0.2220015972852707, + 0.04336664080619812, + -0.12681689858436584, + 0.09120196849107742, + -0.12737341225147247, + 0.17651645839214325, + 0.02825837768614292, + 0.054775822907686234, + 0.18003126978874207, + 0.4720068573951721, + 0.07884915918111801, + -0.4161751866340637, + 0.20082008838653564, + -0.06317639350891113, + 0.11472564935684204, + -0.2989615797996521, + 0.1219843178987503, + -0.19053146243095398, + 0.4439583420753479, + 0.034178465604782104, + -0.0072060851380229, + 0.16246744990348816, + -0.03201517462730408, + -0.1445402204990387, + -0.5315333604812622, + 0.04227222129702568, + -0.05526598542928696, + 0.02870592474937439, + 0.05986417084932327, + 0.11589948832988739, + -0.35593554377555847, + -0.1692359745502472, + 0.06701365858316422, + 0.10297272354364395, + 0.13722950220108032, + -0.22621572017669678, + 0.05933862179517746, + 0.2716220021247864, + 0.22544816136360168, + 0.44579941034317017, + -0.3770504295825958, + 0.1628856211900711, + 0.200343519449234, + -0.34084969758987427, + -0.053314875811338425, + -0.1345786303281784, + -0.36352282762527466, + -0.04250466078519821, + 0.20133817195892334, + 0.15243177115917206, + 0.043334923684597015, + 0.007842861115932465, + -0.013355100527405739, + 0.2043103277683258, + -0.3694179654121399, + 0.012494584545493126, + 0.5102630853652954, + 0.21045568585395813, + 0.48889145255088806, + -0.05580740422010422, + -0.5707851648330688, + -0.23632535338401794, + -0.08670255541801453, + -0.49997586011886597, + 0.0857858657836914, + 0.21489588916301727, + -0.11693079769611359, + -0.04312785714864731, + 0.12231558561325073, + 0.06176489591598511, + -0.03878216817975044, + 0.0468897745013237, + -0.38922375440597534, + 0.19669672846794128, + -0.00937594287097454, + -0.36596208810806274, + -0.03625774383544922, + -0.20736178755760193, + -0.35025161504745483, + -0.23090562224388123, + 0.3388487994670868, + 0.26125267148017883, + -0.2289842665195465, + 0.00018537938012741506, + 0.12364313751459122, + -0.2201654016971588, + -0.3170410096645355, + -0.0636974424123764, + -0.29080936312675476, + 0.5260792970657349, + -0.05918588489294052, + -0.1896524429321289, + 0.10338175296783447, + -0.25339287519454956, + 0.011904867365956306, + 0.1397339403629303, + 0.06271512806415558, + 0.41630515456199646, + -0.0025386542547494173, + 0.11965905129909515, + 0.5557200312614441, + 0.1450423300266266, + 0.06909553706645966, + 0.28708428144454956, + -0.07803681492805481, + -0.04901803657412529, + -0.05292012169957161, + -0.3050917088985443, + 0.4445802569389343, + -0.33791106939315796, + 0.08996917307376862, + 0.0697154700756073, + 0.3222559988498688, + -0.4623467028141022, + -0.3673073649406433, + -0.10213188827037811, + -0.0171823687851429, + -0.06902258843183517, + -0.31103968620300293, + -0.22007064521312714, + -0.1482122242450714, + -0.19951453804969788, + -0.004743661731481552, + 0.22902658581733704, + 0.46087178587913513, + 0.16014492511749268, + 0.1784369796514511, + -0.3276606500148773, + -0.18040016293525696, + 0.11403970420360565, + 0.25914961099624634, + 0.15003474056720734, + -0.06528967618942261, + -0.185510516166687, + 0.22951605916023254, + 0.4858551621437073, + -0.053555238991975784, + -0.016514942049980164, + 0.11476574093103409, + 0.03903410583734512, + 0.0017821133369579911, + 0.006769922561943531, + -0.09870482981204987, + 0.05872776359319687, + -0.3077263832092285, + 0.2027784287929535, + -0.1770610213279724, + -0.23810212314128876, + 0.24148087203502655, + -0.23222407698631287, + -0.5650317668914795, + -0.19477856159210205, + 0.15111960470676422, + -0.13109645247459412, + -0.07055538892745972, + 0.204031303524971, + 0.3559121787548065, + -0.006582754664123058, + -0.25657814741134644, + 0.02635561302304268, + -0.48771458864212036, + -0.23422065377235413, + 0.14435827732086182, + -0.12046962976455688, + 0.009029055014252663, + -0.0837835818529129, + 0.27395758032798767, + 0.43363967537879944, + 0.27297443151474, + -0.27179041504859924, + 0.1114642471075058, + 0.4251101016998291, + 0.3218974471092224, + -0.1977650225162506, + -10.5908842086792, + -0.08685319125652313, + -0.31190934777259827, + 0.5034602880477905, + -0.09497231245040894, + 0.10752934217453003, + -0.13767294585704803, + -0.04231105372309685, + 0.22920577228069305, + 0.15235842764377594, + -0.16417630016803741, + -0.04306260496377945, + 0.24129971861839294, + 0.2839868664741516, + 0.09350141137838364, + 0.08771146833896637, + -0.3204841911792755, + 0.21960051357746124, + -0.024087198078632355, + 0.12094122171401978, + 0.22182981669902802, + 0.5025917291641235, + -0.32004934549331665, + 0.2369130402803421, + 0.11897021532058716, + -0.40965256094932556, + -0.19889792799949646, + 0.5966641902923584, + 0.34774017333984375, + -0.47192734479904175, + 0.27572983503341675, + 0.16872575879096985, + -0.16094693541526794, + 0.08402447402477264, + -0.053623683750629425, + -0.2379598617553711, + -0.1617407500743866, + 0.219281405210495, + 0.035501640290021896, + -0.06771695613861084, + 0.14385788142681122, + -0.25415951013565063, + 0.3277502655982971, + 0.15785981714725494, + -0.09087453782558441, + -0.4941312372684479, + -0.054533619433641434, + -1.5412847995758057, + 0.16122953593730927, + 0.3375662863254547, + 0.3884543478488922, + 0.11754526942968369, + 0.13307985663414001, + 0.2947734594345093, + -0.28290247917175293, + -0.018010545521974564, + -0.225310280919075, + 0.026250740513205528, + 0.20847436785697937, + -0.028243619948625565, + 0.040125180035829544, + 0.06619243323802948, + 0.45875972509384155, + 0.03913953900337219, + -0.22780942916870117, + 0.18178462982177734, + 0.06808008998632431, + -0.19776836037635803, + -0.3751186728477478, + -0.6779531836509705, + -0.6565596461296082, + 0.1161058098077774, + -0.03779923915863037, + -0.014081376604735851, + 0.4053921699523926, + -0.023084603250026703, + -0.30915552377700806, + 0.11302802711725235, + 0.041265204548835754, + 0.39814597368240356, + 0.2175280600786209, + -0.020090360194444656, + 0.04153497889637947, + -0.13007913529872894, + -0.17516666650772095, + -0.1990775316953659, + 0.07741371542215347, + 0.5744197368621826, + 0.0051642791368067265, + 0.003565080463886261, + 0.02012748457491398, + 0.3525918126106262, + -0.11620154231786728, + -0.13370291888713837, + -0.391549289226532, + 0.04494868963956833, + 0.05321664735674858, + 0.10255566984415054, + -0.08858299255371094, + -0.08601029217243195, + -0.24060718715190887, + -0.020026855170726776, + -0.11588732153177261, + -0.41942930221557617, + -0.5410914421081543, + 0.20725569128990173, + 0.20417055487632751, + 0.15526965260505676, + -0.004157430026680231, + 0.023549994453787804, + -0.15507926046848297, + -0.05191318318247795, + 0.34866026043891907, + 0.5562551617622375, + 0.2522204518318176, + -0.023343289270997047, + 0.007140076253563166, + -0.08937744051218033, + -0.19463960826396942, + -0.017210185527801514, + 0.4520553648471832, + 0.019033867865800858, + 0.04146445542573929, + 0.558208167552948, + 0.018179263919591904, + -0.055671386420726776, + 0.9056228399276733, + -0.3774851858615875, + 0.25849539041519165, + -0.1187991127371788, + 0.1613101065158844, + 0.0014520942931994796, + -0.526279091835022, + 0.04984378069639206, + 0.4215150773525238, + -0.37005680799484253, + 0.8397720456123352, + 0.3449508547782898, + -0.3784930109977722, + 0.02001301385462284, + -0.35369402170181274, + 0.42638564109802246, + 0.2703634202480316, + 0.2578088343143463, + -0.23114927113056183, + -0.19035080075263977, + -0.4070289134979248, + 0.029389183968305588, + -0.460902601480484, + -0.33441486954689026, + -0.13435077667236328, + 0.10411826521158218, + 0.06014033406972885, + -0.16343533992767334, + 0.2967160642147064, + 0.1560571938753128, + -0.23506078124046326, + -0.15030960738658905, + -0.49159687757492065, + -0.288693904876709, + -0.004842457361519337, + 0.7797421216964722, + 0.07439661026000977, + -0.12136934697628021, + -0.09562963247299194, + 0.16359283030033112, + -0.1262212097644806, + 0.0713212639093399, + 0.06340330094099045, + -0.012859612703323364, + -0.3709489405155182, + 0.1904623806476593, + 0.17486698925495148, + -0.3707614541053772, + -0.2279631644487381, + -0.11814628541469574, + 0.04541970044374466, + 0.0864521712064743, + -0.13294580578804016, + 0.03790726140141487, + 0.3080064654350281, + -0.14976727962493896, + 0.00935194082558155, + -0.35069507360458374, + -0.0067945122718811035, + 0.11920662224292755, + 0.21115157008171082, + 0.12239930778741837, + -0.3420785963535309, + -0.25314730405807495, + -0.40954717993736267, + 0.25935789942741394, + -0.44630423188209534, + -0.02935277298092842, + 0.023297931998968124, + 0.2896445393562317, + -0.2899172902107239, + 0.1287817507982254, + -0.1425635814666748, + 0.03875355422496796, + -0.3075428605079651, + 0.30901435017585754, + 0.5397374033927917, + -0.19223614037036896, + 0.2921281158924103, + -0.1078154444694519, + 0.24127164483070374, + -0.007835115306079388, + -0.30574044585227966, + 0.1526556760072708, + -0.24457792937755585 + ] +} \ No newline at end of file diff --git a/src/benchmark/output/results/trajectory_clusters_kmeans.json b/src/benchmark/output/results/trajectory_clusters_kmeans.json new file mode 100644 index 0000000..d99c874 --- /dev/null +++ b/src/benchmark/output/results/trajectory_clusters_kmeans.json @@ -0,0 +1,78 @@ +{ + "results_graph_076": 1, + "results_graph_037": 1, + "results_graph_040": 0, + "results_graph_056": 0, + "results_graph_001": 0, + "results_graph_083": 1, + "results_graph_082": 0, + "results_graph_057": 1, + "results_graph_041": 0, + "results_graph_016": 1, + "results_graph_061": 0, + "results_graph_020": 0, + "results_graph_077": 1, + "results_graph_011": 0, + "results_graph_046": 1, + "results_graph_050": 1, + "results_graph_007": 1, + "results_graph_070": 1, + "results_graph_027": 0, + "results_graph_031": 0, + "results_graph_066": 1, + "results_graph_088": 1, + "results_graph_067": 0, + "results_graph_026": 1, + "results_graph_084": 0, + "results_graph_006": 1, + "results_graph_051": 0, + "results_graph_047": 0, + "results_graph_010": 0, + "results_graph_068": 1, + "results_graph_087": 1, + "results_graph_029": 1, + "results_graph_005": 0, + "results_graph_052": 1, + "results_graph_044": 0, + "results_graph_013": 0, + "results_graph_064": 1, + "results_graph_033": 0, + "results_graph_025": 0, + "results_graph_072": 0, + "results_graph_009": 0, + "results_graph_048": 0, + "results_graph_049": 1, + "results_graph_008": 1, + "results_graph_073": 0, + "results_graph_032": 0, + "results_graph_065": 0, + "results_graph_012": 0, + "results_graph_045": 0, + "results_graph_053": 0, + "results_graph_004": 0, + "results_graph_028": 1, + "results_graph_069": 0, + "results_graph_086": 1, + "results_graph_062": 0, + "results_graph_035": 0, + "results_graph_023": 0, + "results_graph_074": 0, + "results_graph_058": 0, + "results_graph_019": 0, + "results_graph_081": 1, + "results_graph_039": 0, + "results_graph_003": 0, + "results_graph_054": 1, + "results_graph_042": 1, + "results_graph_015": 0, + "results_graph_014": 0, + "results_graph_043": 1, + "results_graph_079": 1, + "results_graph_038": 0, + "results_graph_080": 1, + "results_graph_018": 0, + "results_graph_059": 1, + "results_graph_075": 0, + "results_graph_022": 1, + "results_graph_034": 1 +} \ No newline at end of file diff --git a/src/benchmark/setup_and_run.sh b/src/benchmark/setup_and_run.sh index 8949b9a..61bed19 100755 --- a/src/benchmark/setup_and_run.sh +++ b/src/benchmark/setup_and_run.sh @@ -25,4 +25,4 @@ fi # python3 generate_visuals.py echo "Generating similarity and clustering results..." -python3 modules/similarity_and_clustering.py \ No newline at end of file +python3 modules/compare_graph_vs_text_clusters.py \ No newline at end of file From 0db379985f3303ef4e82f731b25877e1e9cac36c Mon Sep 17 00:00:00 2001 From: Vicky Bikia Date: Wed, 14 May 2025 19:02:29 -0700 Subject: [PATCH 09/11] cleanup: benchmark code and results --- src/benchmark/main.py | 47 -- .../modules/compare_graph_vs_text_clusters.py | 67 +- src/benchmark/modules/visualization_utils.py | 19 +- .../output/plots/cluster_assignments.csv | 77 -- .../plots/clustering_metrics_best_umap.png | Bin 15856 -> 0 bytes .../plots/clustering_score_comparison.png | Bin 20454 -> 19894 bytes .../plots/graph_cancer_type_heatmap.png | Bin 58169 -> 44492 bytes .../graph_cluster_metastasis_barplot.png | Bin 16692 -> 17219 bytes .../graph_specific_cancer_type_heatmap.png | Bin 0 -> 65621 bytes .../clustering_score_comparison.png | Bin 18584 -> 0 bytes .../output/plots/plots_testset/tsne_graph.png | Bin 16323 -> 0 bytes .../output/plots/plots_testset/tsne_text.png | Bin 17169 -> 0 bytes .../output/plots/silhouette_heatmap_umap.png | Bin 70142 -> 0 bytes .../output/plots/text_cancer_type_heatmap.png | Bin 52684 -> 45212 bytes .../plots/text_cluster_metastasis_barplot.png | Bin 15749 -> 17403 bytes .../text_specific_cancer_type_heatmap.png | Bin 0 -> 65653 bytes .../output/plots/trajectory_tsne.png | Bin 43188 -> 0 bytes src/benchmark/output/plots/tsne_graph-pca.png | Bin 17549 -> 19789 bytes .../output/plots/tsne_graph-umap.png | Bin 19375 -> 20624 bytes src/benchmark/output/plots/tsne_text-pca.png | Bin 16637 -> 19348 bytes src/benchmark/output/plots/tsne_text-umap.png | Bin 16726 -> 17934 bytes .../output/plots/umap_kmeans_clusters.png | Bin 34681 -> 0 bytes .../results/cluster_labels_with_metadata.csv | 528 ++++++------ .../results/cluster_metadata_summary.csv | 5 +- .../output/results/graph_html_metadata.csv | 32 +- .../results/testset/graph_html_metadata.csv | 411 --------- .../results/testset/results_graph_001.json | 792 ------------------ .../results/testset/results_graph_003.json | 792 ------------------ .../results/testset/results_graph_004.json | 792 ------------------ .../results/testset/results_graph_005.json | 792 ------------------ 30 files changed, 351 insertions(+), 4003 deletions(-) delete mode 100644 src/benchmark/main.py delete mode 100644 src/benchmark/output/plots/cluster_assignments.csv delete mode 100644 src/benchmark/output/plots/clustering_metrics_best_umap.png create mode 100644 src/benchmark/output/plots/graph_specific_cancer_type_heatmap.png delete mode 100644 src/benchmark/output/plots/plots_testset/clustering_score_comparison.png delete mode 100644 src/benchmark/output/plots/plots_testset/tsne_graph.png delete mode 100644 src/benchmark/output/plots/plots_testset/tsne_text.png delete mode 100644 src/benchmark/output/plots/silhouette_heatmap_umap.png create mode 100644 src/benchmark/output/plots/text_specific_cancer_type_heatmap.png delete mode 100644 src/benchmark/output/plots/trajectory_tsne.png delete mode 100644 src/benchmark/output/plots/umap_kmeans_clusters.png delete mode 100644 src/benchmark/output/results/testset/graph_html_metadata.csv delete mode 100644 src/benchmark/output/results/testset/results_graph_001.json delete mode 100644 src/benchmark/output/results/testset/results_graph_003.json delete mode 100644 src/benchmark/output/results/testset/results_graph_004.json delete mode 100644 src/benchmark/output/results/testset/results_graph_005.json diff --git a/src/benchmark/main.py b/src/benchmark/main.py deleted file mode 100644 index 76acf22..0000000 --- a/src/benchmark/main.py +++ /dev/null @@ -1,47 +0,0 @@ -# This source file is part of the Daneshjou Lab projects -# -# SPDX-FileCopyrightText: 2025 Stanford University and the project authors (see AUTHORS.md) -# -# SPDX-License-Identifier: MIT -# - -""" -This script runs the full benchmarking pipeline on a single patient graph. -Intended for validating information extraction, structure, and representation quality. -""" - -import sys -from pathlib import Path -sys.path.append(str(Path(__file__).resolve().parents[1])) # Adds 'src' to sys.path - - -# Local application imports -from benchmark.modules.io_utils import ( - load_graph_from_file, - save_results, - data_display, -) -from benchmark.modules.run_benchmark import run_pipeline -from benchmark.modules.logging_utils import setup_logger - -logger = setup_logger(__name__) - -ORIGINAL_TEXT = ( - "A patient" -) - - -if __name__ == "__main__": - current_graph_path = "/Users/bikia/Documents/Code/DynamicData/webapp/static/graphs/graph_001.json" - graph, ok = load_graph_from_file(current_graph_path) - - if ok: - cfg = { - "reconstruct_params": {"include_nodes": True, "include_edges": True}, - "bertscore": True, - "topology": True, - "trajectory_embedding": True, - } - results = run_pipeline(graph, ORIGINAL_TEXT, cfg) - # data_display(results) - save_results(results, "output/results/results_001.json") diff --git a/src/benchmark/modules/compare_graph_vs_text_clusters.py b/src/benchmark/modules/compare_graph_vs_text_clusters.py index 6c23218..dae1cef 100644 --- a/src/benchmark/modules/compare_graph_vs_text_clusters.py +++ b/src/benchmark/modules/compare_graph_vs_text_clusters.py @@ -4,6 +4,13 @@ # # SPDX-License-Identifier: MIT # + +"""This modules compares the clustering of graph embeddings and text embeddings. +It loads the graph and text embeddings, reduces their dimensions using PCA or UMAP, +clusters them using KMeans, and evaluates the clustering performance using various metrics. +It also visualizes the clusters using t-SNE and generates a summary of the clusters with metadata. +""" + # Standard library imports import json import numpy as np @@ -121,8 +128,15 @@ def plot_tsne(embeddings, labels, method_label): perplexity = min(5, n_samples - 1) tsne = TSNE(n_components=2, perplexity=perplexity, random_state=42) reduced = tsne.fit_transform(embeddings) + + # Convert numeric labels to "Cluster 1", "Cluster 2", etc. + unique_labels = np.unique(labels) + label_map = {label: f"Cluster {i+1}" for i, label in enumerate(unique_labels)} + cluster_labels = [label_map[label] for label in labels] + + # Plot plt.figure(figsize=(8, 6)) - sns.scatterplot(x=reduced[:, 0], y=reduced[:, 1], hue=labels, palette="tab10") + sns.scatterplot(x=reduced[:, 0], y=reduced[:, 1], hue=cluster_labels, palette="tab10") plt.title(f"t-SNE of {method_label} Embeddings") plt.tight_layout() plt.savefig(PLOTS_DIR / f"tsne_{method_label.lower()}.png") @@ -184,10 +198,32 @@ def summarize_cluster_metadata(shared_ids, glabels, label_type="graph"): # Optional: Heatmap of top cancer types cancer_counts = {} + specific_counts = {} for cluster_id, group in joined.groupby("graph_cluster"): - cancer_list = [c for c in "|".join(group["cancers"].dropna().astype(str)).split("|") if c.strip()] + cancer_list = [] + specific_list = [] + for val in group["cancers"].dropna(): + try: + items = eval(val) if isinstance(val, str) and val.startswith("[") else [val] + cancer_list.extend([item.strip() for item in items if item.strip()]) + except: + continue + for val in group["specific_cancers"].dropna(): + try: + items = eval(val) if isinstance(val, str) and val.startswith("[") else [val] + specific_list.extend([item.strip() for item in items if item.strip()]) + except: + continue + for val in group["cancers"].dropna(): + try: + items = eval(val) if isinstance(val, str) and val.startswith("[") else [val] + cancer_list.extend([item.strip() for item in items if item.strip()]) + except Exception as e: + continue counts = Counter(cancer_list) + specific = Counter(specific_list) cancer_counts[cluster_id] = counts + specific_counts[cluster_id] = specific all_cancers = sorted({cancer for counts in cancer_counts.values() for cancer in counts}) heatmap_data = pd.DataFrame(index=sorted(cancer_counts.keys()), columns=all_cancers).fillna(0.0) @@ -205,9 +241,25 @@ def summarize_cluster_metadata(shared_ids, glabels, label_type="graph"): plt.close() print(f"✅ Cancer type heatmap saved to {PLOTS_DIR / f'{label_type}_cancer_type_heatmap.png'}") + # Specific cancer heatmap + all_specifics = sorted({c for s in specific_counts.values() for c in s}) + specific_data = pd.DataFrame(index=sorted(specific_counts.keys()), columns=all_specifics).fillna(0.0) + for cluster_id, counts in specific_counts.items(): + for name, count in counts.items(): + specific_data.at[cluster_id, name] = count / sum(counts.values()) + + plt.figure(figsize=(12, 6)) + sns.heatmap(specific_data, annot=True, fmt=".2f", cmap="OrRd") + plt.title(f"Top Specific Cancers per Cluster ({label_type})") + plt.ylabel("Cluster") + plt.xlabel("Specific Cancer Type") + plt.tight_layout() + plt.savefig(PLOTS_DIR / f"{label_type}_specific_cancer_type_heatmap.png") + plt.close() + print(f"✅ Specific cancer heatmap saved to {PLOTS_DIR / f'{label_type}_specific_cancer_type_heatmap.png'}") + def plot_score_comparison(score_dicts, shared_ids, glabels, tlabels): - summarize_cluster_metadata(shared_ids, glabels, label_type="graph") summarize_cluster_metadata(shared_ids, tlabels, label_type="text") @@ -228,11 +280,14 @@ def plot_score_comparison(score_dicts, shared_ids, glabels, tlabels): output_path = RESULTS_DIR / "cluster_labels_with_metadata.csv" output_df.to_csv(output_path, index=False) print(f"✅ Cluster labels with metadata saved to {output_path}") - metrics = ["Silhouette", "Calinski-Harabasz", "Davies-Bouldin"] + + # Updated metrics (excluding Davies-Bouldin) + metrics = ["Silhouette", "Calinski-Harabasz"] data = [] for label, scores in score_dicts.items(): - for metric, value in zip(metrics, scores): + for metric, value in zip(metrics, scores): # Expecting only 2 values per label data.append({"Metric": metric, "Type": label, "Score": value}) + df = pd.DataFrame(data) plt.figure(figsize=(8, 5)) sns.barplot(x="Metric", y="Score", hue="Type", data=df) @@ -242,8 +297,6 @@ def plot_score_comparison(score_dicts, shared_ids, glabels, tlabels): plt.close() -from sklearn.metrics import adjusted_rand_score - def main(): print("Loading graph embeddings...") graph_embs = load_graph_embeddings() diff --git a/src/benchmark/modules/visualization_utils.py b/src/benchmark/modules/visualization_utils.py index 4871a00..1101b20 100644 --- a/src/benchmark/modules/visualization_utils.py +++ b/src/benchmark/modules/visualization_utils.py @@ -23,7 +23,7 @@ def plot_bertscore_f1(graph_ids, bertscore_f1, export_path=None): - """Bar plot of BERTScore F1 for each graph, with summary statistics saved to CSV.""" + """Histogram of BERTScore F1 values across all graphs, with summary statistics saved to CSV.""" # Calculate statistics f1_array = np.array(bertscore_f1) stats = { @@ -43,18 +43,17 @@ def plot_bertscore_f1(graph_ids, bertscore_f1, export_path=None): stats_df = pd.DataFrame([stats]) stats_df.to_csv(export_path, index=False) - # Plotting - _, ax = plt.subplots() - sns.barplot(x=graph_ids, y=bertscore_f1, ax=ax) - ax.set_title("BERTScore F1 per Graph") - ax.set_ylabel("F1 Score") - ax.set_ylim(0, 1) - plt.xticks(rotation=45) + # Plotting histogram + plt.figure(figsize=(8, 6)) + sns.histplot(f1_array, bins=20, kde=True) + plt.title("Distribution of BERTScore F1 Scores") + plt.xlabel("F1 Score") + plt.ylabel("Frequency") + plt.xlim(0, 1) plt.tight_layout() - plt.savefig(os.path.join(PLOTS_DIR, "bertscore_f1_barplot.png")) + plt.savefig(os.path.join(PLOTS_DIR, "bertscore_f1_histogram.png")) plt.close() - def plot_tsne_embeddings(embeddings, graph_ids): """2D t-SNE scatterplot for graph embeddings.""" tsne_results = TSNE(n_components=2, perplexity=2, random_state=42).fit_transform( diff --git a/src/benchmark/output/plots/cluster_assignments.csv b/src/benchmark/output/plots/cluster_assignments.csv deleted file mode 100644 index 902c36c..0000000 --- a/src/benchmark/output/plots/cluster_assignments.csv +++ /dev/null @@ -1,77 +0,0 @@ -Graph ID,KMeans Label -results_graph_076,1 -results_graph_037,1 -results_graph_040,0 -results_graph_056,0 -results_graph_001,0 -results_graph_083,1 -results_graph_082,0 -results_graph_057,1 -results_graph_041,0 -results_graph_016,1 -results_graph_061,0 -results_graph_020,0 -results_graph_077,1 -results_graph_011,0 -results_graph_046,1 -results_graph_050,1 -results_graph_007,1 -results_graph_070,1 -results_graph_027,0 -results_graph_031,0 -results_graph_066,1 -results_graph_088,1 -results_graph_067,0 -results_graph_026,1 -results_graph_084,0 -results_graph_006,1 -results_graph_051,0 -results_graph_047,0 -results_graph_010,0 -results_graph_068,1 -results_graph_087,1 -results_graph_029,1 -results_graph_005,0 -results_graph_052,1 -results_graph_044,0 -results_graph_013,0 -results_graph_064,1 -results_graph_033,0 -results_graph_025,0 -results_graph_072,0 -results_graph_009,0 -results_graph_048,0 -results_graph_049,1 -results_graph_008,1 -results_graph_073,0 -results_graph_032,0 -results_graph_065,0 -results_graph_012,0 -results_graph_045,0 -results_graph_053,0 -results_graph_004,0 -results_graph_028,1 -results_graph_069,0 -results_graph_086,1 -results_graph_062,0 -results_graph_035,0 -results_graph_023,0 -results_graph_074,0 -results_graph_058,0 -results_graph_019,0 -results_graph_081,1 -results_graph_039,0 -results_graph_003,0 -results_graph_054,1 -results_graph_042,1 -results_graph_015,0 -results_graph_014,0 -results_graph_043,1 -results_graph_079,1 -results_graph_038,0 -results_graph_080,1 -results_graph_018,0 -results_graph_059,1 -results_graph_075,0 -results_graph_022,1 -results_graph_034,1 diff --git a/src/benchmark/output/plots/clustering_metrics_best_umap.png b/src/benchmark/output/plots/clustering_metrics_best_umap.png deleted file mode 100644 index 2965b760929f81002eeb966513f8fa751860512c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 15856 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 JmVV;<-vH;&W{Lm+ diff --git a/src/benchmark/output/plots/clustering_score_comparison.png b/src/benchmark/output/plots/clustering_score_comparison.png index 3302dfbeb1412b901e5b1520cdd7f3ed5f463ab9..6ebf669e236c811fa06c26ab582f3540e20fdbc0 100644 GIT binary patch literal 19894 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
Jd^WGk5g%3m^5v#B`S-$4bUPUQ3GzXmE_ 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 Iisjw^3*MeN?*IS* literal 20454 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ΝXz=MAL;%t+TM`p%1XA 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 diff --git a/src/benchmark/output/plots/graph_cancer_type_heatmap.png b/src/benchmark/output/plots/graph_cancer_type_heatmap.png index b86333a5a7dbaf2ca95fd4f6b53e22b24f7993a8..e8c34044748eabb8f1de16b185e1c56d0aecdbb6 100644 GIT binary patch literal 44492 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