Boram Han

Results 4 issues of Boram Han

My recent project's group hierarchy is not the same as actual folders. When I try to link my generated files to target, it created different folders and got errors. ###...

enhancement

```swift class V3: UIViewController { let labelWithBonMot = UILabel() let label = UILabel() override func viewDidLoad() { super.viewDidLoad() labelWithBonMot.numberOfLines = 2 label.numberOfLines = 2 view.addSubview(labelWithBonMot) view.addSubview(label) labelWithBonMot.snp.makeConstraints { $0.top.equalToSuperview().offset(30) $0.left.right.equalToSuperview()...

**Describe the bug** Sometime placeholder and subviews (images) are not loaded while pushing viewcontroller. After pushing viewcontroller completes, placeholder and subviews are loaded correctly. **To Reproduce** Push and pop viewcontroller...

Why do you create pairwise function instead of pytorch's nn.PairwiseDistance? I changed pairwise function with `nn.PairwiseDistance` but evaluating is not working. (Too slow!) Do you have any idea about this?