Skip to content

Commit

Permalink
setting kfp
Browse files Browse the repository at this point in the history
  • Loading branch information
CDonnerer committed Jun 30, 2024
1 parent ea256d8 commit e6fa26c
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions tests/distributions/test_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import pytest

import numpy as np

from xgboost_distribution.distributions import (
AVAILABLE_DISTRIBUTIONS,
Normal,
Expand Down
1 change: 1 addition & 0 deletions tests/distributions/test_exponential.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import numpy as np
import pandas as pd

from xgboost_distribution.distributions import Exponential


Expand Down
1 change: 1 addition & 0 deletions tests/distributions/test_laplace.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import pytest

import numpy as np

from xgboost_distribution.distributions import Laplace


Expand Down
1 change: 1 addition & 0 deletions tests/distributions/test_log_normal.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import numpy as np
import pandas as pd

from xgboost_distribution.distributions import LogNormal


Expand Down
1 change: 1 addition & 0 deletions tests/distributions/test_negative_binomial.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import numpy as np
import pandas as pd
from scipy.special import logit

from xgboost_distribution.distributions import NegativeBinomial


Expand Down
1 change: 1 addition & 0 deletions tests/distributions/test_normal.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import pytest

import numpy as np

from xgboost_distribution.distributions import Normal


Expand Down
1 change: 1 addition & 0 deletions tests/distributions/test_poisson.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import numpy as np
import pandas as pd

from xgboost_distribution.distributions import Poisson


Expand Down
1 change: 1 addition & 0 deletions tests/distributions/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import numpy as np
import pandas as pd

from xgboost_distribution.distributions.utils import (
check_all_ge_zero,
check_all_gt_zero,
Expand Down
1 change: 1 addition & 0 deletions tests/test_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import pytest

import numpy as np

from xgboost_distribution.model import XGBDistribution


Expand Down
1 change: 1 addition & 0 deletions tests/test_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import joblib
import numpy as np
from sklearn.exceptions import NotFittedError

from xgboost_distribution.distributions import AVAILABLE_DISTRIBUTIONS
from xgboost_distribution.model import XGBDistribution

Expand Down

0 comments on commit e6fa26c

Please sign in to comment.