/keras-xor

A simple XOR model with keras.

Primary LanguagePythonMIT LicenseMIT

Keras XOR

A simple XOR model with keras.

model

Graphic generated with NN-SVG made by Alex Lenail.

How to run

Install the required libraries with pip.

pip install -r requirements.txt

Run the python script.

python .

Output

INPUTS
[[0 0]
 [0 1]
 [1 0]
 [1 1]]

OUTPUTS
[[0.00222052]
 [0.9753783 ]
 [0.97579545]
 [0.04735725]]