LYC-vio

Results 14 comments of LYC-vio
trafficstars

I've found that this problem (has no field named "ceil_mode") could be solved by changing the "ceil_mode: false" line to "round_mode: FLOOR" in the prototxt file to fit the new...

Sorry, I didn't encounter this problem. Maybe you can check whether your .caffemodel file matches the .prototxt file correctly... I mean, the conv1 layer of DenseNet_121 and DenseNet_169 is 64...

I don't have any idea about this error message... A possible solution is to check those corresponding lines mentioned by https://github.com/BVLC/caffe/pull/3057/files (see also #1) in caffe-gpu from anaconda to see...

Alternatively, you can install another caffe from source code and use sys.path.insert to specify which caffe to use. eg: ``` import sys sys.path.insert(0,"path/to/your/caffe/python") import caffe ```

@shicai Hi, I've just found that this problem could be solved by changing the "ceil_mode: false" line to "round_mode: FLOOR" in the prototxt file to fit the new version of...

Hi, I'm kind of having a similar issue here. SVision finished segments generation for the whole genome (~56x HiFi, HG002) in around an hour (threads=5), and then stuck there for...

Hi, maybe you have set a too large `-s`. `-s` is not the size estimation of the input fastq/fasta file nor the amount of RAM, instead it means the number...

After removing `-b`, SVDSS successfully extracted SFSs. But it is kind of strange it doesn't work with `-b`

Hi @ldenti , Thank you! What should I do if i want to search on a binary output? like: ``` ${SVDSS} index --fasta ${ref} --index ${idx_file} -b --threads 10 for...