Metadata-Version: 2.1
Name: BrainML
Version: 0.0.3
Summary: BrainML is a machine learning library capable of implementing neural networks.
Home-page: https://github.com/bogdan124/BrainML
Author: Bibina Bogdan
Author-email: bogdanbibina@gmail.com
License: Apache license 2.0
Download-URL: https://github.com/bogdan124/BrainML/archive/0.0.1.tar.gz
Keywords: MachineLearning,library,neural networks,deep-learning,artificial-intelligence,artificial-neural-networks
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
Requires-Dist: tensorflow (==2.0.0)





Code example for XOR problem:
```
##first import tensorflow
import tensorflow as tf
##second import BrainMl
import BrainMl as dl
from BrainMl.layers import Dense,Dropout
from BrainMl.optimizer import Optimizer,Adam
##from BrainMl.activation import Activator,relu,softmax

##define an empty model
model=dl.Model()
##define Sequential model and add layers
save=model.Sequential([
    ##Here we add 4 dense layers and a Dropout
    Dense(4,activation="relu",shape=[2,2]),
    Dense(8, activation="relu"),
    Dense(2, activation="relu"),
    Dropout(0.9),
    Dense(1, activation="relu")

    ],name="model1")

## X is our data
X = [[0,0],[0,1],[1,0],[1,1]]
## y is our label
Y = [[0],[1],[1],[0]]

##we define an optimizer
optim=Adam(learning_rate=0.01)
##and compile the model along with optimizer
model.compile(optimizer=optim)
##than we start trainning the model
model.fit(X,Y,epochs=100,display=["all"])
##all-displays current epoch and error
##in list you can add "epoch"-to show just epoch or "error"-just for the error
```

