Skip to content

Instantly share code, notes, and snippets.

View nbroad1881's full-sized avatar

Nicholas Broad nbroad1881

  • Hugging Face
  • San Francisco, California
  • 16:54 (UTC -07:00)
View GitHub Profile
@shawwn
shawwn / since2010.md
Created May 11, 2021 09:46
"What happened after 2010?"

This was a response to a Hacker News comment asking me what I've been up to since 2010. I'm posting it here since HN rejects it with "that comment is too long." I suppose that's fair, since this ended up being something of an autobiography.

--

What happened after 2010?

@Attila94
Attila94 / read_hdf5.py
Last active August 7, 2023 07:55
Function to read saved Keras (tensorflow) weights from hdf5 file. Returns dict of layer names and weights.
# -*- coding: utf-8 -*-
"""
Created on Thu Apr 11 10:31:43 2019
@author: Attila Lengyel
"""
import h5py
def read_hdf5(path):