Skip to content

Instantly share code, notes, and snippets.

View jianwel's full-sized avatar

jianwel

  • Findora
  • Greenville, SC
View GitHub Profile
@jianwel
jianwel / sampleREADME.md
Created March 12, 2019 15:10 — forked from FrancesCoronel/sampleREADME.md
A sample README for all your GitHub projects.

FVCproductions

INSERT GRAPHIC HERE (include hyperlink in image)

Repository Title Goes Here

Subtitle or Short Description Goes Here

@jianwel
jianwel / gist:5adb5737eab8a75a5dfaba5ed34e0a8c
Created June 17, 2018 21:26
Replace string in all the tex files
find /path/to/files -type f -exec sed -i 's/oldstring/new string/g' {} \;
find *.tex -type f -exec sed -i 's/blackbox/black box/g' {} \;
@jianwel
jianwel / readme.md
Created March 30, 2018 16:25 — forked from flyyufelix/readme.md
Resnet-101 pre-trained model in Keras

ResNet-101 in Keras

This is an Keras implementation of ResNet-101 with ImageNet pre-trained weights. I converted the weights from Caffe provided by the authors of the paper. The implementation supports both Theano and TensorFlow backends. Just in case you are curious about how the conversion is done, you can visit my blog post for more details.

ResNet Paper:

Deep Residual Learning for Image Recognition.
Kaiming He, Xiangyu Zhang, Shaoqing Ren, Jian Sun
arXiv:1512.03385