Skip to content

Instantly share code, notes, and snippets.

View sajed-zarrinpour's full-sized avatar
:octocat:
Researching...

Sajed Zarinpour Nashroudkoli sajed-zarrinpour

:octocat:
Researching...
View GitHub Profile
@sajed-zarrinpour
sajed-zarrinpour / summernote-upload.js
Last active August 6, 2019 15:01 — forked from abr4xas/summernote-upload.js
Summernote image upload
$('.summer').summernote({
height: "200px",
callbacks: {
onImageUpload: function(files) {
url = $(this).data('upload'); //path is defined as data attribute for textarea
sendFile(files[0], url, $(this));
}
}
});
@sajed-zarrinpour
sajed-zarrinpour / residual_network.py
Created July 6, 2019 13:28 — forked from mjdietzx/residual_network.py
Clean and simple Keras implementation of residual networks (ResNeXt and ResNet) accompanying accompanying Deep Residual Learning: https://blog.waya.ai/deep-residual-learning-9610bb62c355.
"""
Clean and simple Keras implementation of network architectures described in:
- (ResNet-50) [Deep Residual Learning for Image Recognition](https://arxiv.org/pdf/1512.03385.pdf).
- (ResNeXt-50 32x4d) [Aggregated Residual Transformations for Deep Neural Networks](https://arxiv.org/pdf/1611.05431.pdf).
Python 3.
"""
from keras import layers
from keras import models