Build NeurEco Classification model with GUI
Contents
Build NeurEco Classification model with GUI#
Fill in the Settings tab, the build parameters are explained in the table below:
Press Build button
Once the Build started, the Training, Evaluation, Metrics and Export panels become available. The moment the first model is saved to the checkpoint, these panels can be used as usual.
Build parameters#
Name |
Description |
---|---|
Training Data |
Required. Data used to train a model. Click on Add files and choose paths to the files prepared according to Data preparation for NeurEco Classification with GUI |
Validation Data |
Optional. Data used to validate a model. If not provided, the Validation Data are chosen automatically among the provided samples in Training Data |
Testing Data |
Optional. Data never used during the training process. If provided, allow to monitor the model performance on the test data during the Build. |
Use GPU |
If True, GPU is used during the Build |
GPU |
If Use GPU is True, determines which GPU is used among available |
Advanced parameters#
Name |
Description |
---|---|
Disconnect inputs if possible |
NeurEco will always try to keep its model as small as possible without degrading performance, so if it finds inputs that do not contribute to the overall performance, it will try to remove all links to them. Setting this field to False will prevent it from disconnecting inputs. |
Final learning |
If set to True, NeurEco includes the validation data into the training data at the very end of the learning process and attempts to improvement the results. |
Validation data percentage |
Optional, default is 33.33%. Percentage of the data that NeurEco will select to use as Validation Data. The minimum value is 10%, the maximum value is 50%. Ignored when Validation Data are provided. |
Links maximum number |
Default = 0, specifies the maximum number of links (trainable parameters) that NeurEco can create. If set to zero, NeurEco will ignore this parameter. Note that this number will be respected in the limits of what NeurEco finds possible. |
Regularization coefficient |
Float, optional, default = 0.1. The initial value of the regularization parameter. |
Start build from checkpoint: Address |
Path to the checkpoint file, resumes the Build starting from already created model (it can be used for changing or adding training and validation data) |
Start build from checkpoint: Start build from model number |
When Start build from checkpoint: Address is not empty, specifies which intermediate model in the checkpoint will be used as a starting point. When set to -1, NeurEco will choose the last model in the checkpoint. The model numbers should be in the interval [0, n[ where n is the total number of networks in the checkpoint. |
Start build from checkpoint: Freeze structure |
When Start build from checkpoint: Address is not empty, NeurEco will only change the weights (not the network architecture) if this variable is set to True. |
Data normalization for Tabular Classification#
Name |
Description |
---|---|
Input normalization: Shift type |
default = “auto”. Possible values: “mean”, “min_centered”, “auto”, “none”. See table bellow for more details. |
Input normalization: Scale type |
default = “auto”. Possible values: “max”,”max_centered”, “std”, “auto”, “none”. See table bellow for more details. |
Input normalization: Normalize per feature |
default = True. Normalize each input feature independently from others. |
The outputs of the Classification are one-hot encoded, so they must not be normalized |
|
Output normalization: Shift type |
default = “none”. This parameter is fixed for Classification to a value corresponding to no normalization. See table bellow for more details. |
Output normalization: Scale type |
default = “none”. This parameter is fixed for Classification to a value corresponding to no normalization. See table bellow for more details. |
Output normalization: normalize per feature |
default = False. This parameter is fixed for Classification to a value corresponding to no normalization. |
NeurEco can build an extremely effective model just using the data provided by the user, without changing any one of the building parameters. However, the right normalization, based on the knowledge of the data’s nature, makes a big difference in the final model performance.
Set normalize per feature to True if trying to fit targets of different natures (temperature and pressure for example) and want to give them equivalent importance.
Set normalize per feature to False if trying to fit quantities of the same kind (a set of temperatures for example) or a field.
If neither of these options suits the problem, normalize the data your own way prior to feeding them to NeurEco (and deactivate output normalization).
A normalization operation for NeurEco is a combination of a \(shift\) and a \(scale\), so that:
Allowed shift methods for NeurEco and their corresponding shifted values are listed in the table below:
Name |
shift value |
---|---|
none |
\[0\]
|
min |
\[min(x)\]
|
min_centered |
\[0.5 * (min(x) + max(x))\]
|
mean |
\[mean(x)\]
|
Allowed scale methods for NeurEco Tabular and their corresponding scaled values are listed in the table below:
Name |
scale value |
---|---|
none |
\[1\]
|
max |
\[max(x) - shift\]
|
max_centered |
\[0.5 * (max(x) - min(x))\]
|
std |
\[std(x)\]
|
Normalization with auto options:
shift is mean and scale is max if the value of mean is far from 0,
shift is none and scale is max if the calculated value of mean is close to 0
If the normalization is performed by feature, and the auto options are chosen, the normalization is performed by group of features. These groups are created based on the values of mean and std.
Particular cases of Build for a Tabular Classification#
Select a model from a checkpoint and improve it#
At each step of the training process, NeurEco records a model into the checkpoint. It is possible to explore the recorded models via the checkpoint slider in the bottom of the GUI. Sometimes an intermediate model in the checkpoint can be more relevant for targeted usage than the final model with the optimal precision (for example if it gives a satisfactory precision while being smaller than the final model with the optimal precision and thus can be embedded on the targeted device).
It is possible to export the chosen model as it is from the checkpoint, see Export NeurEco Classification model with GUI.
The model saved via Export does not benefit from the final learning, which is applied only at the very end of the training.
To apply only the final learning step to the chosen model in the checkpoint:
Right click on the current model in the Project section of the GUI and choose to Clone it
Change Advanced Settings for this cloned model:
Start build from checkpoint: Address: path to the checkpoint file of the initial model
Start build from checkpoint: Start build from model number: choose the model among saved in the checkpoint
Freeze structure: True
Start Build
See Select a model from a checkpoint for the illustration of this option in the Python API.
Limit the size of the NeurEco model during Build#
In Advanced Settings set the Links maximum number.
When possible, NeurEco limits the number of links created in the neural network to this number.
See Select a model from a checkpoint for the illustration of this option in the Python API.