File size: 551 Bytes
14354d6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
#@title #Open the public URL
tensorboard=True#@param {type:"boolean"}
if not "installed" in locals():
from IPython.display import clear_output
from ipywidgets import Button
%cd /content
!git clone https://github.com/luisesantillan/project
!cd project && pip install -r requirements.txt && python download_files.py
clear_output()
Button(description="\u2714 Success", button_style='success')
installed=True
%cd /content/project
if tensorboard:
%load_ext tensorboard
%tensorboard --logdir ./logs
!python app.py --colab |