ServerX commited on
Commit
14354d6
1 Parent(s): a607d29

Create README.md

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