Skip to content

Commit

Permalink
pic
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewjywang committed Jul 20, 2019
1 parent 3751c1e commit 4452bd7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ venv.bak/

data/
pretrained/
paper/

*.DS_Store

3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ The predicted samples can be seen in `./samples` folder. The detailed arguments
The test predicted samples can be seen in `./samples/test` folder

## Framework
![framework](https://www.dropbox.com/s/rbaqbe2gy1pdzyq/framework0.pdf?raw=1)

## Cite
If you use this code or reference our paper in your work please cite this publication as:
```
Expand Down
2 changes: 1 addition & 1 deletion src/seenet.py
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ def train(self, loader, test_loader):
prefix = time.strftime("%Y_%d_%m_%H_%M_%S", time.localtime())
summary_dir = self.log_dir + prefix + '/'
writer = tf.summary.FileWriter(summary_dir, self.sess.graph)
params = ("KTH_MCNET"
params = ("SEENET"
+ "_lr_c=" + str(self.lr_c)
+ "_lr_m=" + str(self.lr_m)
+ "_margin=" + str(self.margin)
Expand Down

0 comments on commit 4452bd7

Please sign in to comment.