Skip to content

Instantly share code, notes, and snippets.

View myurasov's full-sized avatar

Misha Yurasov myurasov

View GitHub Profile
@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.
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 / 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) {