From 164963d9e65dd9fb65cd9146f358ec90cf036097 Mon Sep 17 00:00:00 2001 From: Luca Melis Date: Tue, 10 Feb 2026 06:39:00 -0800 Subject: [PATCH] Fix typos in docstrings Summary: Fix typos in analysis_node and fdp_analysis_node Differential Revision: D92834001 --- privacy_guard/analysis/mia/analysis_node.py | 2 +- privacy_guard/analysis/mia/fdp_analysis_node.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/privacy_guard/analysis/mia/analysis_node.py b/privacy_guard/analysis/mia/analysis_node.py index abf9ef7..3b13076 100644 --- a/privacy_guard/analysis/mia/analysis_node.py +++ b/privacy_guard/analysis/mia/analysis_node.py @@ -36,7 +36,7 @@ @dataclass class AnalysisNodeOutput(BaseAnalysisOutput): """ - A dataclass to encapsulate the outputs of AnalsyisNode. + A dataclass to encapsulate the outputs of AnalysisNode. Attributes: eps (float): Epsilon value at the TPR=1% UB or LB threshold depending on attack settings. eps_lb (float): Lower bound of epsilon. diff --git a/privacy_guard/analysis/mia/fdp_analysis_node.py b/privacy_guard/analysis/mia/fdp_analysis_node.py index 5ace53c..b289f09 100644 --- a/privacy_guard/analysis/mia/fdp_analysis_node.py +++ b/privacy_guard/analysis/mia/fdp_analysis_node.py @@ -23,7 +23,7 @@ @dataclass class FDPAnalysisNodeOutput(BaseAnalysisOutput): """ - A dataclass to encapsulate the outputs of FDPAnalsyisNode. + A dataclass to encapsulate the outputs of FDPAnalysisNode. Attributes: eps (float): Epsilon value """