Skip to content

Instantly share code, notes, and snippets.

View psaboia's full-sized avatar

Priscila Saboia Moreira psaboia

View GitHub Profile
@psaboia
psaboia / dice_reader.py
Created April 18, 2021 21:16 — forked from qgolsteyn/dice_reader.py
A small Python script that reads dice rolls out loud. See https://golsteyn.com/projects/dice/ for more info!
import cv2
import numpy as np
from sklearn import cluster
params = cv2.SimpleBlobDetector_Params()
params.filterByInertia
params.minInertiaRatio = 0.6
detector = cv2.SimpleBlobDetector_create(params)
# coding: utf-8
# # DeepDreaming with TensorFlow
# >[Loading and displaying the model graph](#loading)
#
# >[Naive feature visualization](#naive)
#
# >[Multiscale image generation](#multiscale)
@psaboia
psaboia / keras VGG-Face Model.md
Last active September 20, 2020 05:51 — forked from EncodeTS/keras VGG-Face Model.md
VGG-Face model for keras

VGG-Face model for Keras

This is the Keras model of VGG-Face.

It has been obtained through the following method:

  • vgg-face-keras:directly convert the vgg-face matconvnet model to keras model
  • vgg-face-keras-fc:first convert vgg-face caffe model to mxnet model,and then convert it to keras model

Details about the network architecture can be found in the following paper: