This file contains 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 cv2 | |
import pickle | |
import math | |
import random | |
import copy | |
PKL = 'points.pkl' | |
IMG_NAME = 'graphen.png' |
This file contains 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
# -*- coding: utf-8 -*- | |
"""ResNet50 model for Keras with fused intermediate layers | |
# Reference: | |
https://arxiv.org/pdf/1604.00133.pdf | |
Adapted from original resnet | |
""" | |
from __future__ import print_function |