arc_trigonometric_expansion
Bases: transformation
The arc trigonometric data expansion function.
It performs the arc trigonometric expansion of the input vector, and returns the expansion result. The class inherits from the base expansion class (i.e., the transformation class in the module directory).
...
Notes
For input vector \(\mathbf{x} \in R^m\), its arc trigonometric expansion can be represented as follows: $$ \begin{equation} \kappa (\mathbf{x}) = \left[ \arccos(\mathbf{x}), \arcsin(\mathbf{x}), \arctan(\mathbf{x}) \right] \in {R}^D, \end{equation} $$ where the output dimensions will be \(D = 3 m\).
By default, the input and output can also be processed with the optional pre- or post-processing functions in the arc trigonometric expansion function.
Attributes:
Name | Type | Description |
---|---|---|
name |
str, default = 'arc_trigonometric_expansion'
|
Name of the expansion function. |
Methods:
Name | Description |
---|---|
__init__ |
It performs the initialization of the expansion function. |
calculate_D |
It calculates the expansion space dimension D based on the input dimension parameter m. |
forward |
It implements the abstract forward method declared in the base expansion class. |
Source code in tinybig/expansion/trigonometric_expansion.py
363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 |
|
__init__(name='arc_trigonometric_expansion', *args, **kwargs)
The initialization method of the arc trigonometric expansion function.
It initializes a arc trigonometric expansion object based on the input function name. This method will also call the initialization method of the base class as well.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
The name of the arc trigonometric expansion function. |
'arc_trigonometric_expansion'
|
Returns:
Type | Description |
---|---|
transformation
|
The arc trigonometric expansion function. |
Source code in tinybig/expansion/trigonometric_expansion.py
calculate_D(m)
The expansion dimension calculation method.
It calculates the intermediate expansion space dimension based on the input dimension parameter m. For the arc trigonometric expansion function, the expansion space dimension will be $$ D = 3m. $$
Parameters:
Name | Type | Description | Default |
---|---|---|---|
m
|
int
|
The dimension of the input space. |
required |
Returns:
Type | Description |
---|---|
int
|
The dimension of the expansion space. |
Source code in tinybig/expansion/trigonometric_expansion.py
forward(x, device='cpu', *args, **kwargs)
The forward method of the data expansion function.
It performs the arc trigonometric data expansion of the input data and returns the expansion result as $$ \begin{equation} \kappa (\mathbf{x}) = \left[ \arccos(\mathbf{x}), \arcsin(\mathbf{x}), \arctan(\mathbf{x}) \right] \in {R}^D. \end{equation} $$
Parameters:
Name | Type | Description | Default |
---|---|---|---|
x
|
Tensor
|
The input data vector. |
required |
device
|
The device to perform the data expansion. |
'cpu'
|
Returns:
Type | Description |
---|---|
Tensor
|
The expanded data vector of the input. |