Isaac Lee

Results 16 issues of Isaac Lee

If the thread goes into [this](https://github.com/backtime92/CRAFT-Reimplementation/blob/master/data_loader.py#L93) branch, incorrect images like below occur: ![ballet_106_102_after_processing](https://user-images.githubusercontent.com/49523965/68745000-23b21f80-0639-11ea-8336-d13d7b7d71be.jpg) If it goes to the `else `branch, the results are fine: ![ballet_106_102_after_processing](https://user-images.githubusercontent.com/49523965/68745008-27de3d00-0639-11ea-8abf-897db563c27d.jpg) I think this is because...

1. In `data_loader.py` , `pull_item` function: ```python region_scores = self.resizeGt(region_scores) affinity_scores = self.resizeGt(affinity_scores) confidence_mask = self.resizeGt(confidence_mask) ``` and the function definition of `resizeGt` is: ```python def resizeGt(self, gtmask): return cv2.resize(gtmask,...

While reading your loss function, I came across a few questions: 1. I think `def single_image_loss` defined in `mseloss.py` seems to be a misnomer. The function iterates through outputs for...

fixes [issue](https://github.com/backtime92/CRAFT-Reimplementation/issues/28)

You freeze `vgg16_bn` weights in `trainic15data.py` but not in `trainSyndata.py`. 1. Why do you freeze in `trainic15data.py` and not in `trainSyndata.py`? 2. What is the benefit of freezing? I assumed...

1. training scripts (`trainSyndata.py`) imports `test.py`. `test.py` has some code not nested in `if __name__ == "__main__":`. For example, this below code that parses argument: ```python parser = argparse.ArgumentParser(description='CRAFT Text...

feature request: Not option to not include any photo or image.

enhancement
help wanted

I've modified `calculate_sifid_given_paths(path1, path2, batch_size, cuda, dims, suffix)` slightly in `sifid_score.py` s.t. the function calculates `mu` and `sigma` of a **single real image** and claculate `mu` and `sigma` of **50...

Are quantitative evaluation metrics verified for `Colorful Image Colorization`? (ex. classification accuracy )

I have read the [Cityflow doc](https://cityflow.readthedocs.io/en/latest/index.html) multiple times but it comes very short to providing enough guidance to get me started. Here are just a few questions from a long...