Rank | Album | Artist | Release Date | Pitchfork's Score (Z-score) | Others' Score (Z-score) | Z-score Difference |
---|---|---|---|---|---|---|
1 | Orbits | Starkey | Dec 4, 2012 | 80.0 (0.82) | 50.0 (-1.68) | +2.50 |
2 | Blueberry Boat | The Fiery Furnaces | Jul 13, 2004 | 96.0 (2.14) | 69.1 (-0.16) | +2.30 |
3 | Star Wars Headspace | Various Artists | Mar 18, 2016 | 69.0 (-0.09) | 42.0 (-2.25) | +2.16 |
4 | Kid A | Radiohead | Oct 3, 2000 | 100.0 (2.47) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import asyncio | |
import websockets | |
import sys | |
# 로깅 설정 (클라이언트 측에서도 필요시 사용) | |
# import logging | |
# logging.basicConfig(level=logging.INFO) | |
async def send_messages(websocket): | |
""" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
from sklearn.metrics import roc_auc_score | |
n_class_0 = 50000 | |
n_class_1 = 100 | |
def main(): | |
# Suppose imblanced classification dataset | |
labels = n_class_0 * [False] + n_class_1 * [True] | |
y_true = n_class_0 * [0] + n_class_1 * [1] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import ogr | |
import osr | |
high_ref = osr.SpatialReference() | |
low_ref = osr.SpatialReference() | |
coord_topleft = pixel2coord(high_res_raster, (col_high_res, row_high_res)) | |
high_ref.ImportFromWkt(high_res_raster.GetProjection()) | |
low_ref.ImportFromWkt(low_res_raster.GetProjection()) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import tensorflow as tf | |
""" | |
Author : @MikiBear_ | |
Tensorflow Implementation of Bilinear Additive Upsampling. | |
Reference : https://arxiv.org/abs/1707.05847 | |
""" | |
def bilinear_additive_upsampling(x, to_channel_num, name): | |
from_channel_num = x.get_shape().as_list()[3] | |
assert from_channel_num % to_channel_num == 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <string.h> | |
#include <stdlib.h> | |
struct nameTag{ | |
char fname[20]; char lname[20]; | |
}; | |
struct nameTag * wrong_getname(void){ | |
struct nameTag newname; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import tensorflow as tf | |
slim = tf.contrib.slim | |
class Unet(object): | |
def __init__(self, input, class_num, reuse = False): | |
self.input = input | |
self.reuse = reuse | |
self.class_num = class_num | |
self.build_model() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module multiplexer(Y, A, B, C, D); | |
output Y; | |
input A, B, C, D; | |
assign Y = (A&B)|(C&D); | |
endmodule | |
module D_ff(Q, CLK, D); | |
output Q; | |
input CLK, D; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import subprocess | |
import unittest | |
import sys | |
import filecmp | |
bash_call = './' + sys.argv[1] | |
def subprocess_pipe(cmd_list): | |
prev_stdin = None | |
last_p = None |
NewerOlder