Skip to content

Instantly share code, notes, and snippets.

@YueWangpl
YueWangpl / shapenet_synset_list
Created October 23, 2021 03:25 — forked from tejaskhot/shapenet_synset_list
List of category names and their id in the ShapeNet dataset
04379243 table
03593526 jar
04225987 skateboard
02958343 car
02876657 bottle
04460130 tower
03001627 chair
02871439 bookshelf
02942699 camera
02691156 airplane
@YueWangpl
YueWangpl / googlenet.py
Created February 26, 2021 02:15 — forked from joelouismarino/googlenet.py
GoogLeNet in Keras
from __future__ import print_function
import imageio
from PIL import Image
import numpy as np
import keras
from keras.layers import Input, Dense, Conv2D, MaxPooling2D, AveragePooling2D, ZeroPadding2D, Dropout, Flatten, Concatenate, Reshape, Activation
from keras.models import Model
from keras.regularizers import l2
from keras.optimizers import SGD