isc/io.py [96:106]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        score_min = -1e6
    else:
        S = S.copy()   # we are going to overwrite it
        scores = S.ravel()  # linear view of array
        pivot = len(scores) - nmax
        o = scores.argpartition(pivot)  #
        scores[o[:pivot]] = -1e7
        score_min = -1e6

    with open(preds_filepath, "w") as pfile:
        for qidx in range(nq):
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



isc/io.py [155:165]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        score_min = -1e6
    else:
        S = S.copy()   # we are going to overwrite it
        scores = S.ravel()
        pivot = len(scores) - nmax
        o = scores.argpartition(pivot)  #
        scores[o[:pivot]] = -1e7
        score_min = -1e6

    with open(preds_filepath, "w") as pfile:
        for qidx in range(nq):
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



