Skip to content

Instantly share code, notes, and snippets.

View andiac's full-sized avatar
🦄
Yooooooooo

Andi Zhang andiac

🦄
Yooooooooo
View GitHub Profile
@andiac
andiac / mis.ipynb
Last active July 31, 2022 17:59
Multiple Importance Sampling
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@andiac
andiac / label_ood_proxy.ipynb
Created November 2, 2022 14:25
Plot the label-based OOD proxy introduced in https://arxiv.org/abs/2210.12767
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.
@andiac
andiac / restrict_imagenet128.py
Created November 14, 2023 02:11
Restrict Imagenet 128
import csv
import os
from PIL import Image
names = []
# https://www.kaggle.com/competitions/imagenet-object-localization-challenge/overview
file_path = './LOC_synset_mapping.txt'
# path to the imagenet folder
imagenet_path = './imagenet'
out_path = './imagenet128'
os.makedirs(out_path, exist_ok=True)