AFML / afml /sampling /__init__.py
akshayboora's picture
Upload 940 files
669d6a1 verified
"""
Contains the logic regarding the sequential bootstrapping from chapter 4, as well as the concurrent labels.
"""
from .bootstrapping import (
get_active_indices,
get_ind_mat_average_uniqueness,
get_ind_matrix,
seq_bootstrap,
)
from .concurrent import get_av_uniqueness_from_triple_barrier, num_concurrent_events
from .optimized_concurrent import (
get_av_uniqueness_from_triple_barrier_optimized,
get_num_conc_events_optimized,
)