Skip to content

Instantly share code, notes, and snippets.

View myurasov's full-sized avatar

Misha Yurasov myurasov

View GitHub Profile
@myurasov
myurasov / query.js
Created July 31, 2015 09:18
Simpe element querying by class/id
(function (global) {
function query(selector) {
if (!selector) return [];
// format selector (remove double spaces, convert to lower case), convert into array
selector = selector.toLowerCase().trim().replace(/ +/g, ' ').split(' ');
return _query(selector, document.body, []);
}
function _query(selector, root, result) {
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@myurasov
myurasov / fbv-att-vs-sc-private.ipynb
Last active November 3, 2016 02:44
Facebook V @ Kaggle – Scores vs Attempts
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@myurasov
myurasov / Keras_Categorical_vs_Sparse_Categorical.ipynb
Created August 2, 2017 03:46
Training with categorical_crossentropy vs sparse_categorical_crossentropy
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@myurasov
myurasov / Keras_WACGAN_B.ipynb
Created August 22, 2017 23:53
Keras WACGAN
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@myurasov
myurasov / Keras_WACGAN.ipynb
Last active April 3, 2021 03:12
Wasserstein ACGAN in Keras
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@myurasov
myurasov / MaxHeap.ipynb
Created October 4, 2017 02:46
MaxHeap implementation
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@myurasov
myurasov / matmul.ipynb
Created November 19, 2017 03:08
matmul - manual vs numpy
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@myurasov
myurasov / ManualBackprop.ipynb
Last active November 21, 2017 04:18
Manual Backprop
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.