Skip to content

Instantly share code, notes, and snippets.

Classes Without ensemble With ensemble Diff
Overall 46.4 52.0 +5.6
Classes Without ensemble With ensemble Diff
tench 0.5 13.5 +13.0
English springer 43.0 50.4 +7.4
cassette player 39.1 42.2 +3.1
chain saw 22.5 58.2 +35.7
church 20.1 19.3 -0.8
French horn 76.1 79.3 +3.2
garbage truck 91.2 92.5 +1.3
gas pump 11.7 12.2 +0.5
golf ball 72.8 67.0 -5.8
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
def plates(stack, i, num_used, N, P, K):
# Brute force: O(K^N)
if i >= N:
return -1
current_total = -1
for n in range(K + 1):
if num_used + n > P:
break
elif num_used + n == P:
current_total = max(current_total, sum(stack[i][:n]))
@satojkovic
satojkovic / algorithms_openpose.md
Created March 20, 2019 13:52 — forked from alesolano/algorithms_openpose.md
OpenPose TensorFlow Alogrithms
@satojkovic
satojkovic / cudnn_version.cpp
Created October 18, 2017 13:02
print installed cudnn version
#include <cudnn.h>
#include <iostream>
int main(int argc, char** argv) {
std::cout << "CUDNN_VERSION: " << CUDNN_VERSION << std::endl;
return 0;
}
package main
import (
"fmt"
"net/http"
)
type String string
type Struct struct {
# http://stackoverflow.com/questions/24685436/efficient-way-to-cluster-colors-using-k-nearest
import numpy as np
import cv2
def nearest(i, j, src, knn, colors):
sample = np.reshape(src, (-1, 3)).astype(np.float32)
retval, result, neighbors, dist = knn.find_nearest(sample, 1)
return colors[result[0, 0]]
@satojkovic
satojkovic / dfs.cpp
Created July 7, 2014 16:36
depth first search
#include <cstdio>
#include <string>
int n = 4;
int k = 15;
int a[] = {1, 2, 4, 7};
bool dfs(int i, int sum)
{
printf("i == %d, sum == %d\n", i, sum);
#-*- coding: utf-8 -*-
import cv2
from collections import defaultdict
class ImageFlip(object):
def __init__(self):
self._observers = []