seqgra.evaluator.sisevaluator module

MIT - CSAIL - Gifford Lab - seqgra

  • abstract base class for all evaluators

@author: Konstantin Krismer

class SISEvaluator(learner: seqgra.learner.learner.Learner, output_dir: str, predict_threshold: Optional[float] = None, silent: bool = False)[source]

Bases: seqgra.evaluator.evaluator.FeatureImportanceEvaluator

evaluate_model(set_name: str = 'test', subset_idx: Optional[List[int]] = None, subset_n: Optional[int] = None, subset_labels: Optional[List[str]] = None, subset_n_per_label: bool = True, subset_shuffle: bool = True, subset_threshold: Optional[float] = None, suppress_plots: bool = False)Any
find_sis(x: List[str], label_index: int)List[List[str]][source]
select_examples(set_name: str = 'test', labels: Optional[Set[str]] = None, threshold: Optional[float] = None)seqgra.schema.AnnotatedExampleSet

Returns all correctly classified examples that exceed the threshold.

for the specified labels and set that exceed the threshold.

Parameters

TODO

Returns

TODO

select_n_examples(set_name: str = 'test', n: Optional[int] = None, labels: Optional[Set[str]] = None, n_per_label: bool = True, shuffle: bool = True, threshold: Optional[float] = None)seqgra.schema.AnnotatedExampleSet