Skip to content

Commit

Permalink
#24 rename to features/targets in components
Browse files Browse the repository at this point in the history
  • Loading branch information
funkchaser committed May 6, 2024
1 parent 598c319 commit 5acce8d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
7 changes: 3 additions & 4 deletions docs/documentation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,11 @@ DataObjectsNames
:height: 24
:width: 24

Generates panels with list of names of data objects for all or selected data blocks. Data block names are: 'design_parameters','performance_attributes','inputML','outputML'.
Generates panels with list of names of data objects for all existing data blocks.


**Inputs**

- **datablock** *[List of (str)]* -- Name(s) of the datablock(s).
- **get_names** *(bool)* -- Set to True to run.

DataReal
Expand Down Expand Up @@ -266,8 +265,8 @@ Sets up an autoencoder model of the specified type with the given parameters.
**Inputs**

- **model_type** *(str)* -- Type of the autoencoder model. Options are: 'CAE' (conditional Autoencoder) and 'CVAE' (conditional Variational Autoencoder). Default: 'CAE'.
- **inputML** *[List of (str)]* -- List of variable names to be used as input to the model.
- **outputML** *[List of (str)]* -- List of variable names to be used as output from the model.
- **features** *[List of (str)]* -- List of variable names to be used as input to the model.
- **targets** *[List of (str)]* -- List of variable names to be used as output from the model.
- **latent_dim** *(int)* -- Dimension of the latent space.
- **hidden_layers** *[List of (int)]* -- Width of each hidden layer (list of int).
- **batch_size** *(int)* -- Size of the training batches
Expand Down
4 changes: 2 additions & 2 deletions src/aixd_ara/components/ara_ModelSetup/code.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@

settings = {
"model_type": model_type,
"inputML": inputML,
"outputML": outputML,
"inputML": features,
"outputML": targets,
"latent_dim": latent_dim,
"hidden_layers": hidden_layers,
"batch_size": batch_size,
Expand Down
4 changes: 2 additions & 2 deletions src/aixd_ara/components/ara_ModelSetup/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
"scriptParamAccess": 0
},
{
"name": "inputML",
"name": "features",
"description": "List of variable names to be used as input to the model.",
"typeHintID": "str",
"scriptParamAccess": 1
},
{
"name": "outputML",
"name": "targets",
"description": "List of variable names to be used as output from the model.",
"typeHintID": "str",
"scriptParamAccess": 1
Expand Down

0 comments on commit 5acce8d

Please sign in to comment.