Skip to content

Commit

Permalink
Update default arguments, readme
Browse files Browse the repository at this point in the history
  • Loading branch information
kekeblom committed Oct 5, 2018
1 parent cee9492 commit 7edb9d8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Deep convolutional gaussian processes

This paper implements deep convolutional gaussian processes, a deep gaussian process model for hierarchically detecting combinations of local features in images.
This repository implements deep convolutional gaussian processes, a deep gaussian process model for hierarchically detecting combinations of local features in images.


## Setup
Expand Down
2 changes: 1 addition & 1 deletion conv_gp/arguments.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def train_steps(flags):

def default_parser():
parser = argparse.ArgumentParser()
parser.add_argument('--name', type=str, required=True,
parser.add_argument('--name', type=str, required=True, default='experiment',
help="What to call the experiment. Determines the directory where results are dumped.")
parser.add_argument('--lr-decay-steps', type=int, default=100000,
help="The program uses exponential learning rate decay with 0.1 decay every lr-decay-steps.")
Expand Down
5 changes: 1 addition & 4 deletions init.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
git submodule init

cd submodules/GPflow/
python setup.py develop
cd ..
cd Doubly-Stochastic-DGP/
cd submodules/Doubly-Stochastic-DGP/
python setup.py develop
cd ..
cd ..
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
tensorflow-gpu>=1.8.0
gpflow>=1.1.1
gpflow>=1.2.0
Observations>=0.1.4
toml>=0.9
scikit-learn>=0.19.1
Expand Down

0 comments on commit 7edb9d8

Please sign in to comment.