Skip to content

Instantly share code, notes, and snippets.

@all3xfx
all3xfx / media-query.css
Created October 20, 2021 04:43 — forked from gokulkrishh/media-query.css
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
/* CSS */
'''This script goes along the blog post
"Building powerful image classification models using very little data"
from blog.keras.io.
It uses data that can be downloaded at:
https://www.kaggle.com/c/dogs-vs-cats/data
In our setup, we:
- created a data/ folder
- created train/ and validation/ subfolders inside data/
- created cats/ and dogs/ subfolders inside train/ and validation/
- put the cat pictures index 0-999 in data/train/cats
@all3xfx
all3xfx / readme.md
Created July 19, 2017 05:26 — forked from baraldilorenzo/readme.md
VGG-16 pre-trained model for Keras

##VGG16 model for Keras

This is the Keras model of the 16-layer network used by the VGG team in the ILSVRC-2014 competition.

It has been obtained by directly converting the Caffe model provived by the authors.

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

Very Deep Convolutional Networks for Large-Scale Image Recognition

K. Simonyan, A. Zisserman

@all3xfx
all3xfx / classifier_from_little_data_script_3.py
Created May 17, 2017 06:48 — forked from fchollet/classifier_from_little_data_script_3.py
Fine-tuning a Keras model. Updated to the Keras 2.0 API.
'''This script goes along the blog post
"Building powerful image classification models using very little data"
from blog.keras.io.
It uses data that can be downloaded at:
https://www.kaggle.com/c/dogs-vs-cats/data
In our setup, we:
- created a data/ folder
- created train/ and validation/ subfolders inside data/
- created cats/ and dogs/ subfolders inside train/ and validation/
- put the cat pictures index 0-999 in data/train/cats
'''This script goes along the blog post
"Building powerful image classification models using very little data"
from blog.keras.io.
It uses data that can be downloaded at:
https://www.kaggle.com/c/dogs-vs-cats/data
In our setup, we:
- created a data/ folder
- created train/ and validation/ subfolders inside data/
- created cats/ and dogs/ subfolders inside train/ and validation/
- put the cat pictures index 0-999 in data/train/cats
@all3xfx
all3xfx / GIF-Screencast-OSX.md
Created April 2, 2017 04:39 — forked from dergachev/GIF-Screencast-OSX.md
OS X Screencast to animated GIF

OS X Screencast to animated GIF

This gist shows how to create a GIF screencast using only free OS X tools: QuickTime, ffmpeg, and gifsicle.

Screencapture GIF

Instructions

To capture the video (filesize: 19MB), using the free "QuickTime Player" application:

@all3xfx
all3xfx / index.html
Created August 27, 2016 04:27 — forked from anonymous/index.html
Form demo This is the form demo of the talk Talking and listening to web pages // source http://jsbin.com/faguji/1
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="This is the form demo of the talk Talking and listening to web pages" />
<meta charset="utf-8">
<title>Form demo</title>
<style id="jsbin-css">
body
{
font-size: 24px;
@all3xfx
all3xfx / index.html
Created August 27, 2016 00:51 — forked from anonymous/index.html
Speech Synthesis API demo Speech Synthesis API demo by Aurelio De Rosa (@AurelioDeRosa) // source http://jsbin.com/xejahotode
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="Speech Synthesis API demo by Aurelio De Rosa (@AurelioDeRosa)" />
<meta charset="utf-8">
<title>Speech Synthesis API demo</title>
<style id="jsbin-css">
.text-to-speech {
float: right;
cursor: pointer;