File: __init__.py

package info (click to toggle)
python-pycm 4.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,048 kB
  • sloc: python: 5,178; sh: 8; makefile: 6
file content (13 lines) | stat: -rw-r--r-- 578 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
# -*- coding: utf-8 -*-
"""PyCM modules."""
from .params import PYCM_VERSION, OVERALL_BENCHMARK_LIST, CLASS_BENCHMARK_LIST
from .errors import *
from .output import pycm_help, online_help
from .distance import DistanceType
from .cm import ConfusionMatrix
from .compare import Compare
from .multilabel_cm import MultiLabelCM
from .curve import Curve, ROCCurve, PRCurve
from .generate_random_data import generate_confusion_matrix, generate_confusion_matrix_with_scenario
from .generate_random_data import ClassDistributionScenario, run_report_benchmark
__version__ = PYCM_VERSION