Skip to content

Latest commit

 

History

History
57 lines (49 loc) · 2.58 KB

README.md

File metadata and controls

57 lines (49 loc) · 2.58 KB

Lykos MIT license

An app to get the information about various ML parameters during training on the go! Lykos

Currently supported frameworks

  • Keras

Setup for demo project

  1. Install Lykos App and register a new account.
  2. Clone this repository.
  3. Navigate to Backend directory.
  4. Open test.py file.
  5. Replace email variable with your email address, similarly replace password variable with your password.
  6. Run the code till line number 33
lykos = Lykos(email, password)
  1. A QR Code will be generated.
  2. Scan this QR Code using the Mobile App by clicking on New Model button.
  3. Finally run the last line.
lykos.fit(model = model, X = X_train, Y = Y_train, epochs = 100, verbose=1)

Setup for your project

  1. Install Lykos App and register a new account.
  2. Clone this repository.
  3. Navigate to Backend directory.
  4. Copy lykos.py to your project directory.
  5. Open your main python project file.
  6. Import Lykos class from lykos package using following line.
from lykos import Lykos
  1. Create object of Lykos class which takes email and password as arguments.
lykos = Lykos('[email protected]', 'password')
  1. This will generate a QR Code scan that using the Mobile App by clicking on New Model button.
  2. Finally call fit method of using lykos object and pass your keras model, your independent variable, your dependent variable and epochs.
lykos.fit(model = model, X = X_train, Y = Y_train, epochs = 100, verbose=1)

Screenshots

Lykos

Contributors