Skip to content

Commit ba2bbe7

Browse files
committed
fixing path to be relative, adding postBuild to download weights, adding demo notebook
1 parent cac46ae commit ba2bbe7

File tree

5 files changed

+958
-4
lines changed

5 files changed

+958
-4
lines changed

binder/environment.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,8 @@ dependencies:
2323
- pytorch<=0.3.0
2424
- torchvision
2525
- opencv3>=3.0
26-
- tensorflow
26+
- tensorflow==1.4.0
2727
- pip:
2828
- keras==2.1.3
29-
- pydot
3029
- graphviz
3130
- tqdm

binder/postBuild

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
cd models; . download_dextr_model.sh; cd ..

mypath.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
1+
import os
22
class Path(object):
33
@staticmethod
44
def models_dir():
5-
return 'models/'
5+
return os.path.join(os.path.dirname(___file___), 'models/')

notebooks/.keep

Whitespace-only changes.

0 commit comments

Comments
 (0)