chenguanfu511

Results 5 issues of chenguanfu511

Did you use the fitnets for kd the model? Fitnets: Hints for thin deep nets

![image](https://user-images.githubusercontent.com/7610009/60220307-2c7fa000-98a8-11e9-805f-663a89c928c8.png)

```python def randomCropLetterboxPil(img): output_w, output_h = (1408, 768) jitter = 0.3 fill_color = 127 orig_w, orig_h = img.size img_np = np.array(img) channels = img_np.shape[2] if len(img_np.shape) > 2 else 1...

I see Bag of Tricks for Image Classification with Convolutional Neural Networks, the paper suggest the BN initial method for zero gamma ![image](https://user-images.githubusercontent.com/7610009/60059250-4ab99480-971e-11e9-8558-3db0a9a80ed0.png) [the code](https://github.com/TencentYoutuResearch/ObjectDetection-OneStageDet/blob/master/yolo/vedanet/models/_lightnet.py#L137) initial the BN using one...

It is a great work for yolo training, I am wondering whether it has the plan for focal loss, or anyone wants to develop together? here is the paper [Focal...