-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Structure basic learning documentation
- Loading branch information
Showing
5 changed files
with
132 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Aggregation Layer | ||
|
||
```@meta | ||
CurrentModule = CompositionalNetworks | ||
``` | ||
|
||
Some text to describe the aggragation layer within usual ICNs. | ||
|
||
## List of aggregations | ||
|
||
```@docs; canonical=false | ||
ag_sum | ||
ag_count_positive | ||
``` | ||
|
||
|
||
## Layer generation | ||
|
||
```@docs; canonical=false | ||
aggregation_layer | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Arithmetic Layer | ||
|
||
```@meta | ||
CurrentModule = CompositionalNetworks | ||
``` | ||
|
||
Some text to describe the arithmetic layer within usual ICNs. | ||
|
||
## List of arithmetic operations | ||
|
||
```@docs; canonical=false | ||
ar_sum | ||
ar_prod | ||
``` | ||
|
||
|
||
## Layer generation | ||
|
||
```@docs; canonical=false | ||
arithmetic_layer | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Comparison Layer | ||
|
||
```@meta | ||
CurrentModule = CompositionalNetworks | ||
``` | ||
|
||
Some text to describe the comparison layer within usual ICNs. | ||
|
||
## List of comparisons | ||
|
||
List the possible parameters and how it affects the comparison. | ||
|
||
### Non-parametric | ||
|
||
```@docs; canonical=false | ||
co_identity | ||
co_euclidian | ||
co_abs_diff_val_vars | ||
co_val_minus_vars | ||
co_vars_minus_val | ||
``` | ||
|
||
### Param: `:val` | ||
|
||
```@docs; canonical=false | ||
co_abs_diff_val_param | ||
co_val_minus_param | ||
co_param_minus_val | ||
co_euclidian_param | ||
``` | ||
|
||
|
||
### Layer generation | ||
|
||
```@docs; canonical=false | ||
make_comparisons | ||
comparison_layer | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# Transformations Layer | ||
|
||
```@meta | ||
CurrentModule = CompositionalNetworks | ||
``` | ||
|
||
Some text to describe the transformation layer within usual ICNs. | ||
|
||
The implementation of the transformation relies heavily on the use of the lazy function (make a ref, open an issue to make `@lazy` macro in front of each transformation). | ||
|
||
## List of transformations | ||
|
||
List the possible parameters and how it affects the transformations. | ||
|
||
### Non-parametric | ||
|
||
```@docs; canonical=false | ||
tr_identity | ||
tr_count_eq | ||
tr_count_right | ||
tr_count_eq_left | ||
tr_count_greater | ||
tr_count_lesser | ||
tr_count_g_left | ||
tr_count_g_right | ||
tr_count_l_right | ||
tr_contiguous_vals_minus | ||
tr_contiguous_vals_minus_rev | ||
``` | ||
|
||
### Param: `:val` | ||
|
||
```@docs; canonical=false | ||
tr_count_eq_param | ||
tr_count_l_param | ||
tr_count_g_param | ||
tr_count_bounding_param | ||
tr_val_minus_param | ||
tr_param_minus_val | ||
``` | ||
|
||
|
||
### Layer generation | ||
|
||
```@docs; canonical=false | ||
make_transformations | ||
transformation_layer | ||
``` |