Skip to content

misakiowa/Keras_FB

 
 

Repository files navigation

Keras Messenger

Slogan

The Python library enables Keras to send real-time training info to your Messenger account

WTF is Keras??

Installation

pip install Keras_FB

Usage

Add following line for importing the library

from Keras_FB import main as fb 

Add following line in fitting process

callbacks=[fb.sendmessage(savelog=True,
  fexten='TEST',
	username='PutYourUsernameIn', #facebook username
	password='PutYourPasswordIn')] #facebook password

The fitting part's code should now looks like this

model.fit(X_train, Y_train, epochs=epoch, batch_size=batch,
	callbacks=[fb.sendmessage(savelog=True,
		fexten='TEST',
		username='PutYourUsernameIn', #facebook username
		password='PutYourPasswordIn')] #facebook password
)

Example

Mnist Example

Results:

Results

Contributions

Idea by Coldwings

Original Code by QuantumLiu

Modified by Kotobukki

About

Enable Keras to send real-time training info to your Messenger account

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%