MatthewBM
MatthewBM
Hi, This file is currently empty: cluster_tools/publications/leveraging_domain_knowledge/1_axon_dendrite_attribution/1_multicut.py it is possible to get this code and demo data? Matthew
Hello, I installed ffn and downloaded the sample data without issue. I am trying to train the sample model and got an error. I ran this: > (ffn) user:~/ffn-master$ runffn.sh...
Author wrote: ``` def forward(self, x): return self.conv_block(x) + self.conv_skip(x) ``` Which will function like a grouped convolution. A skip would be: ``` def forward(self, x): return self.conv_block(x) + x...
Hello, I had the same issue as issue #14 so I downloaded the sources and I removed 'Kera==2.1.6' from requirements/prod.txt and installed keras using the suggestion in #14. Then, when...