pip install Pyezspark
-
Download this repo
-
run in the repo directory
sh install.sh
-
Go to https://app.ezspark.ai
-
Select a training from the dashboard
-
In the details take the training public key
-
Run
import pyezspark
training_public_key = ''
ez = pyezspark.EzSpark(training_public_key)
ez.execute()
-
Go to https://app.ezspark.ai
-
Create an account
-
Create a new training
-
Get the training public key and training private key from the info of "My Trainings"
-
Run
import pyezspark
training_public_key = ''
training_private_key = ''
ez = pyezspark.EzSpark(training_public_key, training_private_key = training_private_key)
ez.execute()