Skip to content

Commit

Permalink
Merge branch 'main' into cont_type_adstock
Browse files Browse the repository at this point in the history
  • Loading branch information
juanitorduz authored May 2, 2024
2 parents 0aedfe7 + b785baa commit 25d986d
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions pymc_marketing/model_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,6 @@ def _data_setter(
"""

raise NotImplementedError

@property
@abstractmethod
def output_var(self):
Expand All @@ -143,7 +141,6 @@ def output_var(self):
output_var : str
Name of the output variable of the model.
"""
raise NotImplementedError

@property
@abstractmethod
Expand Down Expand Up @@ -172,7 +169,6 @@ def default_model_config(self) -> dict:
model_config : dict
A set of default parameters for predictor distributions that allow to save and recreate the model.
"""
raise NotImplementedError

@property
@abstractmethod
Expand All @@ -196,7 +192,6 @@ def default_sampler_config(self) -> dict:
sampler_config : dict
A set of default settings for used by model in fit process.
"""
raise NotImplementedError

@abstractmethod
def _generate_and_preprocess_model_data(
Expand Down Expand Up @@ -229,7 +224,6 @@ def _generate_and_preprocess_model_data(
None
"""
raise NotImplementedError

@abstractmethod
def build_model(
Expand Down Expand Up @@ -264,13 +258,7 @@ def build_model(
Returns
-------
None
Raises
------
NotImplementedError
This is an abstract method and must be implemented in a subclass.
"""
raise NotImplementedError

def set_idata_attrs(self, idata=None):
"""
Expand Down

0 comments on commit 25d986d

Please sign in to comment.