The Variable class
A backend-agnostic variable in synalinks.
A Variable
acts as a container for state.
It holds a JSON object value with the corresponding schema and can
be updated by the optimizers.
A Variable is different from a JsonDataModel as it can be modified by the optimizers
Note that the DataModel used for the variable declaration must have a default value for each of its field.
Examples:
Initializing a Variable
with a dict:
from typing import List
import synalinks
class Hints(synalinks.DataModel):
hints: List[str] = []
initial_data = {
"hints": [
"For any problem involving division, always round the quotient to "
"the nearest even number, regardless of the remainder."
],
}
variable_from_dict = synalinks.Variable(
initializer=initial_data,
data_model=Hints,
)
Using a synalinks initializer to create a Variable
:
from typing import List
import synalinks
class Hints(synalinks.DataModel):
hints: List[str] = []
from synalinks.initializers import Empty
variable_from_initializer = synalinks.Variable(
initializer=Empty(data_model=Hints)
)
Updating the value of a Variable
:
new_value = {
"hints": [
"When performing division, always check if the division results "
"in a whole number. If not, express the result as a fraction or "
"a decimal, depending on the context of the problem."
],
}
variable_from_dict.assign(new_value)
Marking a Variable
as non-trainable:
from typing import List
import synalinks
class Hints(synalinks.DataModel):
hints: List[str] = []
from synalinks.initializers import Empty
non_trainable_variable = synalinks.Variable(
initializer=Empty(data_model=Hints), trainable=False
)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
initializer
|
str | dict | Initializer
|
Initial value (dict) or callable
(Initializer) for initialization. If a callable is used, it should
take the arguments |
None
|
data_model
|
DataModel
|
The backend-dependent data model used as spec. |
None
|
trainable
|
bool
|
Optional. Boolean indicating if variable is trainable.
Defaults to |
True
|
name
|
str
|
Optional. A unique name for the variable. Automatically generated if not set. |
None
|
Source code in synalinks/src/backend/common/variables.py
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 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 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 |
|
name
property
The name of the variable.
path
property
The path of the variable within the program or module.
trainable
property
writable
Whether the variable is trainable.
_deferred_initialize()
Deferred initialization of the variable.
Raises:
Type | Description |
---|---|
ValueError
|
If the variable is already initialized or if attempting to initialize while in a stateless scope. |
Source code in synalinks/src/backend/common/variables.py
_direct_assign(value)
Directly assigns a new value to the variable.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value
|
dict
|
The new value to be assigned. |
required |
_initialize(value)
Initializes the variable with a given value.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value
|
dict
|
The initial value (JSON object dict). |
required |
_initialize_with_initializer(initializer)
Initializes the variable using an initializer object.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
initializer
|
Initializer
|
The initializer to be used. |
required |
Source code in synalinks/src/backend/common/variables.py
assign(value)
Assigns a new value to the variable.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value
|
dict | DataModel | JsonDataModel
|
The new value to be assigned. The value can be an instanciated data model or JSON dict. |
required |
Returns:
Type | Description |
---|---|
dict
|
The assigned value. |
Raises:
Type | Description |
---|---|
ValueError
|
If the schema of the target variable and the value are incompatible. |
Source code in synalinks/src/backend/common/variables.py
get(key)
Get wrapper to make easier to access fields.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key
|
str
|
The key to access. |
required |
json()
Alias for the Variable's value.
Returns:
Type | Description |
---|---|
dict
|
The current value of the variable. |
pretty_json()
Get a pretty version of the JSON object for display.
Returns:
Type | Description |
---|---|
dict
|
The indented JSON object. |
pretty_schema()
Get a pretty version of the JSON schema for display.
Returns:
Type | Description |
---|---|
dict
|
The indented JSON schema. |
schema()
to_json_data_model()
Convert the variable into a JsonDataModel
.
Returns:
Type | Description |
---|---|
JsonDataModel
|
The equivalent backend-independent data model |
Source code in synalinks/src/backend/common/variables.py
to_symbolic_data_model()
Convert the variable into a SymbolicDataModel
.
Returns:
Type | Description |
---|---|
SymbolicDataModel
|
The equivalent symbolic data model |
update(kv_dict)
Update wrapper to make easier to modify fields.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kv_dict
|
dict
|
The key/value dict to update. |
required |
value()
The current value of the variable.
Returns:
Type | Description |
---|---|
dict
|
The current value of the variable. |