Kilian Pfeiffer

Results 11 comments of Kilian Pfeiffer

Hi, I also got confused by this. One interpretation could be: Branch: Train on all branches, but only use one branch to evaluate. Single: Train only with one single branch....

**EDIT: Obviously I realised right after sending that question 2 is because of the optimization. Question 1 still remains.** Hi @ozansener , thanks for publishing your code! I have two...

Hi, thanks for your reply. However, I am still looking for the raw output of the network on the SUNRGBD test set to get the numbers that were used in...

Hi, I guess you can just use the logic from the pickling script but skip the pickling itself and then use the output of that directly. But I haven't really...

sorry if this is not the right place, but the date is only extracted to write the file in the right folder, but not to write this into the metadata...

> This is because the allow_in_graph mechanism is based on function id match, you are using different functions in the second case, so it won't be allowed in graph correctly...

Hi, I'm glad that my code has been useful to you. I haven't tested the code on windows, but I'm guessing that you either haven't installed git or are not...

> git rebase -i --autosquash --autostash origin/master That command still works fine in isolation, e.g. if I run `git commit --fixup..` and then `git rebase... ` manually.

I solved it by manually creating a `/bin/usr/true` that just echos 1. I am using zsh, where `which true` returns `true: shell built-in command`.

I believe I am currently running into this. There's the following use case: ```python class Foo: """Foo""" class Bar: __doc__ = Foo.__doc__ ``` This currently doesn't work in the static...