Skip to content

Instantly share code, notes, and snippets.

View iuga's full-sized avatar

Esteban Del Boca iuga

  • Bluecore
  • Córdoba, Argentina
View GitHub Profile
@showa-yojyo
showa-yojyo / producer_consumer.py
Created May 12, 2020 10:02
Implement Producer/Consumer pattern with asyncio.Queue
#!/usr/bin/env python
"""
A simple producer/consumer example, using Queue.task_done and Queue.join
From https://asyncio.readthedocs.io/en/latest/producer_consumer.html
"""
import asyncio
import random
@fchollet
fchollet / classifier_from_little_data_script_1.py
Last active February 26, 2025 01:37
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