Commit 63ebb0e1 authored by Le Roux Erwan's avatar Le Roux Erwan
Browse files

[R Model] refactor directory names.

parent 59f359d3
No related merge requests found
Showing with 3 additions and 4 deletions
+3 -4
import unittest import unittest
from extreme_estimator.R_fit.max_stable_fit.abstract_max_stable_model import \ from extreme_estimator.R_model.max_stable_model.abstract_max_stable_model import \
AbstractMaxStableModelWithCovarianceFunction, CovarianceFunction AbstractMaxStableModelWithCovarianceFunction, CovarianceFunction
from extreme_estimator.R_fit.max_stable_fit.max_stable_models import Smith, BrownResnick, Schlather, \ from extreme_estimator.R_model.max_stable_model.max_stable_models import Smith, BrownResnick, Schlather, \
Geometric, ExtremalT, ISchlather Geometric, ExtremalT, ISchlather
from extreme_estimator.estimator.max_stable_estimator import MaxStableEstimator from extreme_estimator.estimator.max_stable_estimator import MaxStableEstimator
from spatio_temporal_dataset.dataset.simulation_dataset import MaxStableDataset from spatio_temporal_dataset.dataset.simulation_dataset import MaxStableDataset
......
import os
import os.path as op import os.path as op
def get_root_path() -> str: def get_root_path() -> str:
return os.path.dirname(os.path.abspath(__file__)) return op.dirname(op.abspath(__file__))
def get_full_path(relative_path: str) -> str: def get_full_path(relative_path: str) -> str:
......
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