-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
version 0.1.6 - Update README and AutoConfig support
- Loading branch information
Showing
14 changed files
with
85 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,4 @@ | ||
import mlm_bias.utils.experiments | ||
import mlm_bias.utils.measures | ||
import mlm_bias.utils.preprocess | ||
import mlm_bias.utils.constants | ||
from mlm_bias.compute_mlm_bias import BiasMLM | ||
from mlm_bias.bias_datasets import BiasDataset, BiasBenchmarkDataset, BiasLineByLineDataset | ||
from mlm_bias.bias_results import BiasResults, RelativeBiasResults | ||
from mlm_bias.compute_mlms_relative_bias import RelativeBiasMLMs | ||
from mlm_bias.bias_datasets import BiasDataset, BiasBenchmarkDataset, BiasLineByLineDataset | ||
from mlm_bias.compute_mlm_bias import BiasMLM | ||
from mlm_bias.compute_mlms_relative_bias import RelativeBiasMLMs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "0.1.5" | ||
__version__ = "0.1.6" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
from mlm_bias.utils.experiments import get_mask_combinations, get_span | ||
from mlm_bias.utils.preprocess import preprocess_benchmark, preprocess_linebyline | ||
from mlm_bias.utils.measures import compute_sss, compute_csps, compute_aul, compute_crr_dp | ||
from mlm_bias.utils.constants import SUPPORTED_MEASURES, SUPPORTED_MEASURES_ATTENTION | ||
from mlm_bias.utils.progress import show_progress, end_progress | ||
from .constants import SUPPORTED_MEASURES, SUPPORTED_MEASURES_ATTENTION | ||
from .experiments import get_mask_combinations, get_span | ||
from .measures import compute_sss, compute_csps, compute_aul, compute_crr_dp | ||
from .preprocess import preprocess_benchmark, preprocess_linebyline | ||
from .progress import show_progress, end_progress |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.