Compare commits

..

No commits in common. "6e83bbef678f2d624d857868d8bbf7fba3502fed" and "195552ef553a7f6ff080ccf459e6e7bc44552c52" have entirely different histories.

3 changed files with 4 additions and 3 deletions

View File

@ -3,7 +3,7 @@
import numpy as np
from sklearn.metrics import f1_score
import quapy as qp
from quapy.functional import AitchisonDistance
from functional import AitchisonDistance
def from_name(err_name):

View File

@ -35,8 +35,7 @@ try:
import stan.common
DEPENDENCIES_INSTALLED = True
except ImportError as e:
logging.getLogger(__name__).warning(f'Bayesian dependencies failed to import: {e!r}')
except ImportError:
jax = None
jnp = None
jrandom = None

View File

@ -8,6 +8,8 @@ from contextlib import ExitStack
from abc import ABCMeta, abstractmethod
from quapy.data import LabelledCollection
import quapy.functional as F
from os.path import exists
from glob import glob
from collections.abc import Iterable
from numbers import Number