Commit 05a80ecc authored by Le Roux Erwan's avatar Le Roux Erwan
Browse files

refactoring and renaming

parent 8854ee98
No related merge requests found
Showing with 18 additions and 20 deletions
+18 -20
from extreme_estimator.R_model.margin_model.abstract_margin_model import AbstractMarginModel
from extreme_estimator.R_model.max_stable_model.abstract_max_stable_model import AbstractMaxStableModel
from extreme_estimator.extreme_models.margin_model.abstract_margin_model import AbstractMarginModel
from extreme_estimator.extreme_models.max_stable_model.abstract_max_stable_model import AbstractMaxStableModel
from extreme_estimator.estimator.abstract_estimator import AbstractEstimator
from extreme_estimator.estimator.margin_estimator import SmoothMarginEstimator
from extreme_estimator.estimator.max_stable_estimator import MaxStableEstimator
......
from extreme_estimator.R_model.margin_model.abstract_margin_model import AbstractMarginModel
from extreme_estimator.extreme_models.margin_model.abstract_margin_model import AbstractMarginModel
from extreme_estimator.estimator.abstract_estimator import AbstractEstimator
from spatio_temporal_dataset.dataset.abstract_dataset import AbstractDataset
......
from extreme_estimator.estimator.abstract_estimator import AbstractEstimator
from extreme_estimator.R_model.max_stable_model.abstract_max_stable_model import AbstractMaxStableModel
from extreme_estimator.extreme_models.max_stable_model.abstract_max_stable_model import AbstractMaxStableModel
from spatio_temporal_dataset.dataset.abstract_dataset import AbstractDataset
import numpy as np
......
from extreme_estimator.R_model.utils import get_loaded_r
from extreme_estimator.extreme_models.utils import get_loaded_r
class AbstractModel(object):
......
import numpy as np
from extreme_estimator.R_model.abstract_model import AbstractModel
from extreme_estimator.R_model.margin_function.abstract_margin_function import AbstractMarginFunction
from extreme_estimator.R_model.gev.gev_parameters import GevParams
from extreme_estimator.extreme_models.abstract_model import AbstractModel
from extreme_estimator.extreme_models.margin_model.margin_function.abstract_margin_function import AbstractMarginFunction
from extreme_estimator.gev_params import GevParams
from spatio_temporal_dataset.spatial_coordinates.abstract_spatial_coordinates import AbstractSpatialCoordinates
......
from typing import List, Dict
import matplotlib.cm as cm
import matplotlib.pyplot as plt
import numpy as np
from extreme_estimator.R_model.gev.gev_parameters import GevParams
from extreme_estimator.gev_params import GevParams
from spatio_temporal_dataset.spatial_coordinates.abstract_spatial_coordinates import AbstractSpatialCoordinates
......
from typing import Dict, List
from typing import Dict
import numpy as np
from extreme_estimator.R_model.gev.gev_parameters import GevParams
from extreme_estimator.R_model.margin_function.abstract_margin_function import AbstractMarginFunction
from extreme_estimator.gev_params import GevParams
from extreme_estimator.extreme_models.margin_model.margin_function.abstract_margin_function import AbstractMarginFunction
from spatio_temporal_dataset.spatial_coordinates.abstract_spatial_coordinates import AbstractSpatialCoordinates
......
import numpy as np
from extreme_estimator.R_model.margin_function.abstract_margin_function import AbstractMarginFunction
from extreme_estimator.R_model.margin_function.independent_margin_function import LinearMarginFunction
from extreme_estimator.R_model.margin_model.abstract_margin_model import AbstractMarginModel
from extreme_estimator.R_model.gev.gev_parameters import GevParams
from extreme_estimator.extreme_models.margin_model.margin_function.abstract_margin_function import AbstractMarginFunction
from extreme_estimator.extreme_models.margin_model.margin_function.independent_margin_function import LinearMarginFunction
from extreme_estimator.extreme_models.margin_model.abstract_margin_model import AbstractMarginModel
from extreme_estimator.gev_params import GevParams
class LinearMarginModel(AbstractMarginModel):
......
......@@ -4,7 +4,7 @@ import numpy as np
import rpy2
from rpy2.robjects import ListVector
from extreme_estimator.R_model.abstract_model import AbstractModel
from extreme_estimator.extreme_models.abstract_model import AbstractModel
class AbstractMaxStableModel(AbstractModel):
......
from enum import Enum
from extreme_estimator.R_model.max_stable_model.abstract_max_stable_model import AbstractMaxStableModel, \
from extreme_estimator.extreme_models.max_stable_model.abstract_max_stable_model import AbstractMaxStableModel, \
AbstractMaxStableModelWithCovarianceFunction, CovarianceFunction
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment