Help/more info Layer functions can be: "sigmoid", "relu", "linear", "binarystep", "tanh", "arctan" or "softplus". You can also input a number, which will be considered the bias(i.e "0.3"), or input a function in javascript format(i.e "
v=>1/(1+Math.exp(-v))")
New datasets must be in a javascript file(.js), and must have the following format:
dataset = {
inputs: [],
expectedOutputs: []
};
You can view an example here:
OR example