BetaGammaDecay
Bases: Module
Class to learn decayed impacts for the ensuing time periods after a spend in a media vehicle
Source code in wt_ml/layers/beta_gamma_decay.py
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 |
|
__call__(batch, training=False, debug=False, skip_metrics=False)
Calculate decays, total impacts using the learned beta gamma parameters
Parameters:
Name | Type | Description | Default |
---|---|---|---|
impact_by_signal_instant |
TensorLike
|
Instant impacts |
required |
hierarchy |
dict[str, TensorLike]
|
Hierarchy placeholder for Hierarchial embedding variable. |
required |
training |
bool
|
Whether this is a training or inference run. Defaults to False. |
False
|
Returns:
Name | Type | Description |
---|---|---|
BetaGammaDecayIntermediaries |
BetaGammaDecayIntermediaries
|
Intermediate calculations for beta gamma decay - beta, gamma, impacts etc. |
Source code in wt_ml/layers/beta_gamma_decay.py
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 |
|
__init__(encodings, hierarchy_categories=None, hyperparameters=None, name=None)
Creates a betagammadecay object to learn decayed impacts using beta and gamma parameters.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
hierarchy |
DataFrame
|
The hierarchy that the impact learns on. |
required |
hyperparameters |
Hyperparams | None
|
Dictionary of hyperparameters for buidling this layer. Defaults to None. |
None
|
name |
str | None
|
Name of the layer. Defaults to None. |
None
|
Source code in wt_ml/layers/beta_gamma_decay.py
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
|
build(input_shapes)
Build the layer parameters needed for calculating decays.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
input_shapes |
InputShapes
|
The effect and hierarchy shapes. |
required |
Source code in wt_ml/layers/beta_gamma_decay.py
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 |
|