tensor_factorizations
tensor_factorizations
¤
cp(shape, rank, *, input_layer='embedding', input_params=None, weight_param=None)
¤
Constructs a circuit encoding a CP factorization of an \(n\)-dimensional tensor.
Formally, given the shape of a tensor \(\mathcal{T}\in\mathbb{R}^{I_1\times \cdots\times I_n}\), this method returns a circuit \(c\) over \(n\) discrete random variables \(\{X_j\}_{j=1}^n\), each taking value between \(0\) and \(I_j\) for \(1\leq j\leq n\), and \(c\) computes a rank-\(R\) CP factorization, i.e.,
where for \(1\leq j\leq n\) we have that \(\mathbf{A}^{(j)}\in\mathbb{R}^{I_j\times R}\) is the \(j\)-th factor.
Furthermore, this method allows you to return a circuit encoding a CP decomposition with additional weights, i.e., a CP factorization of the form
where \(\mathbf{w}\in\mathbb{R}^R\) are additional weights.
This method allows you to specify different types of parameterizations for the factors and
possibly the additional weights. For example, if the arguments factor_param and
weight_param are both equal to a
parameterization
Parameterization(activation="softmax", initialization="normal"),
then the returned circuit encodes a probabilistic model that is a mixture of fully-factorized
models. That is, the returned circuit \(c\) encodes the factorization of a non-negative tensor
\(\mathcal{T}\in\mathbb{R}_+^{I_1\times \ldots\times I_n}\) as the distribution
where \(Z\) is a discrete latent variable modelled by \(p(Z)\).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
shape
|
tuple[int, ...]
|
The shape of the tensor to encode the CP factorization of. |
required |
rank
|
int
|
The rank of the CP factorization. Defaults to 1. |
required |
input_layer
|
str
|
The input layer to use for the factors. It can be 'embedding', 'categorical' or 'binomial'. Defaults to 'embedding'. If it is 'embedding' then it corresponds to the CP factorization described above where the factors are matrices. |
'embedding'
|
input_params
|
dict[str, Parameterization] | None
|
A dictionary mapping each name of a parameter of the input layer to
its parameterization. If it is None and |
None
|
weight_param
|
Parameterization | None
|
The parameterization to use for the weight coefficients. If None, then it defaults to fixed weights set all to one. |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
Circuit |
Circuit
|
A circuit encoding a (possibly weighted) CP factorization. |
Raises:
| Type | Description |
|---|---|
ValueError
|
If the given tensor shape is not valid. |
ValueError
|
If the rank is not a positive number. |
ValueError
|
If the input layer is not valid. |
Source code in cirkit/templates/tensor_factorizations.py
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 | |
tensor_train(shape, rank, *, factor_param=None)
¤
Constructs a circuit encoding a Tensor-Train (TT) factorization of an \(n\)-dimensional tensor. This factorization is also called Matrix-Product State (MPS) in quantum physics. Note that the obtained circuit encodes the complete left-to-right contraction of the Note that the obtained circuit encodes the complete left-to-right contraction of the TT/MPS factorization, given an entry of the tensor being factorized.
Formally, given the shape of a tensor \(\mathcal{T}\in\mathbb{R}^{I_1\times \cdots\times I_n}\), this method returns a circuit \(c\) over \(n\) discrete random variables \(\{X_j\}_{j=1}^n\), each taking value between \(0\) and \(I_j\) for \(1\leq j\leq n\), and \(c\) computes a rank-\(R\) TT/MPS factorization, i.e.,
where \(\mathbf{V}^{(1)}\in\mathbb{R}^{I_1\times R}\), \(\mathbf{V}^{(n)}\in\mathbb{R}^{I_n\times R}\), and \(\mathbf{V}^{(j)}\in\mathbb{R}^{I_j\times R\times R}\) for \(1< j< n\) are the factor tensors of the TT/MPS factorization.
This method allows you to specify different types of parameterizations for the factor tensors.
For instance, if the argument factor_param is equal to
parameterization
Parameterization(dtype="complex")
then the returned circuit has complex parameters and therefore can be used
to represent a many-body quantum system.
Args: shape: The shape of the tensor to encode the TT/MPS factorization of. rank: The rank of the TT/MPS factorization. Defaults to 1. factor_param: The parameterization to use for the factor tensors. If None, then it defaults to no activation and uses an initialization based on independently sampling from a standard Gaussian distribution.
Returns: Circuit: A circuit encoding a TT/MPS factorization.
Raises: ValueError: If the given tensor shape is not valid. ValueError: If the rank is not a positive number.
Source code in cirkit/templates/tensor_factorizations.py
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 349 350 | |
tucker(shape, rank, *, input_layer='embedding', input_params=None, core_param=None)
¤
Constructs a circuit encoding a Tucker factorization of an \(n\)-dimensional tensor.
Formally, given the shape of a tensor \(\mathcal{T}\in\mathbb{R}^{I_1\times \cdots\times I_n}\), this method returns a circuit \(c\) over \(n\) discrete random variables \(\{X_j\}_{j=1}^n\), each taking value between \(0\) and \(I_j\) for \(1\leq j\leq n\), and \(c\) computes a rank-\(R\) Tucker factorization, i.e.,
where for \(1\leq j\leq n\) we have that \(\mathbf{A}^{(j)}\in\mathbb{R}^{I_j\times R}\) is the \(j\)-th factor, and \(\mathcal{W}\in\mathbb{R}^{R\times\cdots\times R}\) is an \(n\)-dimensional tensor, sometimes called the core tensor of the Tucker factorization.
This method allows you to specify different types of parameterizations for the factors and
the core tensor. For example, if the arguments factor_param and
core_param are both equal to a
parameterization
Parameterization(activation="softmax", initialization="normal"),
then the returned circuit encodes a probabilistic model that is a mixture of fully-factorized
models. That is, the returned circuit \(c\) encodes the factorization of a non-negative tensor
\(\mathcal{T}\in\mathbb{R}_+^{I_1\times \ldots\times I_n}\) as the distribution
where \(Z\) is a discrete latent variable taking value in \(\{1,\ldots,R\}^n\) and modelled by \(p(Z)\).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
shape
|
tuple[int, ...]
|
The shape of the tensor to encode the Tucker factorization of. |
required |
rank
|
int
|
The rank of the Tucker factorization. Defaults to 1. |
required |
input_layer
|
str
|
The input layer to use for the factors. It can be 'embedding', 'categorical' or 'binomial'. Defaults to 'embedding'. If it is 'embedding' then it corresponds to the CP factorization described above where the factors are matrices. |
'embedding'
|
input_params
|
dict[str, Parameterization] | None
|
A dictionary mapping each name of a parameter of the input layer to
its parameterization. If it is None and |
None
|
core_param
|
Parameterization | None
|
The parameterization to use for the core tensor. If None, then it defaults to no activation and uses an initialization based on independently sampling from a standard Gaussian distribution. |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
Circuit |
Circuit
|
A circuit encoding a Tucker factorization. |
Raises:
| Type | Description |
|---|---|
ValueError
|
If the given tensor shape is not valid. |
ValueError
|
If the rank is not a positive number. |
ValueError
|
If the input layer is not valid. |
Source code in cirkit/templates/tensor_factorizations.py
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 | |