Calculate word counts in a text file.
Project description
NeuralSens
Jaime Pizarroso Gonzalo, jpizarroso@comillas.edu
Antonio Muñoz San Roque, Antonio.Munoz@iit.comillas.edu
José Portela González, jose.portela@iit.comillas.edu
This is the development repository for the neuralsens
package. Functions within this package can be used for the analysis of neural network models created in Python.
The last version of this package can be installed using pip:
$ pip install neuralsens
It can also be installed with conda:
$ conda install -c jaipizgon neuralsens
Bug reports
Please submit any bug reports (or suggestions) using the issues tab of the GitHub page.
Functions
One function is available to analyze the sensitivity of a multilayer perceptron, evaluating variable importance and plotting the analysis results.
# Import necessary packages to reproduce the example
import neuralsens.partial_derivatives as ns
from neuralsens.daily_demand_tr import load_daily_data_demand_tr
import pandas as pd
from sklearn.neural_network import MLPRegressor
# Load data and scale variables
daily_demand_tr = load_daily_data_demand_tr()
X_train = daily_demand_tr[["WD","TEMP"]]
X_train.iloc[:, 1] = X_train.iloc[:, 1] / 10
y_train = daily_demand_tr["DEM"] / 100
The jacobian_mlp
function analyze the sensitivity of the output to the input and plots three graphics with information about this analysis. To calculate this sensitivity it calculates the partial derivatives of the output to the inputs using the training data.
The first plot shows information between the mean and the standard deviation of the sensitivity among the training data:
- if the mean is different from zero, it means that the output depends on the input because the output changes when the input change.
- if the mean is nearly zero, it means that the output could not depend on the input. If the standard deviation is also near zero it almost sure that the output does not depend on the variable because for all the training data the partial derivative is zero.
- if the standard deviation is different from zero it means the the output has a non-linear relation with the input because the partial derivative derivative of the output depends on the value of the input.
- if the standard deviation is nearly zero it means that the output has a linear relation with the input because the partial derivative of the output does not depend on the value of the input. The second plot gives an absolute measure to the importance of the inputs, by calculating the sum of the squares of the partial derivatives of the output to the inputs. The third plot is a density plot of the partial derivatives of the output to the inputs among the training data, giving similar information as the first plot.
### Create MLP model
model = MLPRegressor(solver='sgd', # Update function
hidden_layer_sizes=[40], # #neurons in hidden layers
learning_rate_init=0.1, # initial learning rate
activation='logistic', # Logistic sigmoid activation function
alpha=0.005, # L2 regularization term
learning_rate='adaptive', # Type of learning rate used in training
max_iter=500, # Maximum number of iterations
batch_size=10, # Size of batch when training
random_state=150)
# Train model
model.fit(X_train, y_train)
# Obtain parameters to perform jacobian
wts = model.coefs_
bias = model.intercepts_
actfunc = ['identity',model.get_params()['activation'],model.out_activation_]
X = pd.DataFrame(X_train, columns=["WD","TEMP"])
y = pd.DataFrame(y_train, columns=["DEM"])
sens_end_layer = 'last'
sens_end_input = False
sens_origin_layer = 0
sens_origin_input = True
# Perform jacobian of the model
jacobian = ns.jacobian_mlp(wts, bias, actfunc, X, y)
jacobian.plot("sens")
Apart from the plot created with the "sens"
argument by an internal call
to sensitivity_plots()
, other plots can be obtained to analyze the neural
network model (although they are yet to be coded, thanks for your patience!).
Citation
Please, to cite NeuralSens in publications use:
Pizarroso J, Portela J, Muñoz A (2022). “NeuralSens: Sensitivity Analysis of Neural Networks.” Journal of Statistical Software, 102(7), 1-36. doi: 10.18637/jss.v102.i07 (URL: https://doi.org/10.18637/jss.v102.i07).
License
This package is released in the public domain under the General Public License GPL.
Association
Package created in the Institute for Research in Technology (IIT), link to homepage
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file neuralsens-0.0.17.tar.gz
.
File metadata
- Download URL: neuralsens-0.0.17.tar.gz
- Upload date:
- Size: 46.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.13 CPython/3.9.17 Windows/10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 31e2632d4b10eb58bc8fb0fefc8b42654f392740b7dc51b57efc2e5829478980 |
|
MD5 | a0707bec399f87ba2c696b88649ae82f |
|
BLAKE2b-256 | 6522d0db1c1e694dc6cbaea3773e7b676eb105b6e756f1b8738116b18eae296b |
File details
Details for the file neuralsens-0.0.17-py3-none-any.whl
.
File metadata
- Download URL: neuralsens-0.0.17-py3-none-any.whl
- Upload date:
- Size: 47.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.13 CPython/3.9.17 Windows/10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7cd6ac98527fa219206a856c71e7b58f67faa475d6716ac46bfc3bc35657affb |
|
MD5 | 4a0ed7027224b4ac34eb0ef1dc6566ef |
|
BLAKE2b-256 | e95fd49fdaaba6c7629c71f5abec13c2424ad0af897e741233217a2d7ba8e524 |