Jian-Wei Zhang

Results 5 issues of Jian-Wei Zhang

When parsing configurations (such as `name=123_456`), maybe the **digits + underline** should be considered as a string? Now the underline will be ignored and the remaining digits are treated as...

I have three source files: * main.py ```python from sacred import Experiment import dataset ex = Experiment("ExpName") @ex.automain def main(_run): print(_run.experiment_info['sources']) ``` * dataset.py ```python import utils ``` * utils.py...

feature

Hi, Good work for FSS. I have a question about the count of the number of model parameters. The number of model parameters is compared with that of other methods...

Hi, Seokju-Cho Good work! This is a quite surprising job for few-shot segmentation. I am trying to re-train VAT on PASCAL, but I find that it may take about 5...

Allocate new numpy array inside various feature computation functions such as `PyArray_diff_entropy` but no garbage collection stragety: `feature = (PyArrayObject*) PyArray_ZEROS(ndim - 2, shape, NPY_DOUBLE, 0);` ```python for i in...