Skip to content

Instantly share code, notes, and snippets.

View briankelly's full-sized avatar

Brian Kelly briankelly

View GitHub Profile

Keybase proof

I hereby claim:

  • I am briankelly on github.
  • I am bkelly (https://keybase.io/bkelly) on keybase.
  • I have a public key whose fingerprint is CDC2 8DA1 5CB2 47B6 2C39 8EA7 BCD9 E892 FB22 E635

To claim this, I am signing this object:

@briankelly
briankelly / myopenid_sunset_2013-09-04.txt
Created September 4, 2013 15:15
Email from Larry Drebes, CEO of Janrain, announcing the sunset of myOpenID. MyOpenID is probably the largest, independent OpenID Provider that did good things for the OpenID movement in 2007-8.
---------- Forwarded message ----------
From: Larry Drebes, Janrain <larry.drebes@janrain.com>
Date: Wed, Sep 4, 2013 at 10:43 AM
Subject: Important Update about myOpenID
Hello,
I wanted to reach out personally to let you know that we have made the decision to end of life the myOpenID service. myOpenID will be turned off on February 1, 2014.
@briankelly
briankelly / load-dataset-fiftyone.py
Created August 17, 2020 16:03
Load dataset in FiftyOne
import fiftyone.zoo as foz
# Load COCO validation split
dataset = foz.load_zoo_dataset("coco-2017", split="validation")
classes = dataset.info["classes"]
# Explore the dataset in the App
session = fo.Session(dataset=dataset)
@briankelly
briankelly / index-by-uniqueness-fiftyone.py
Created August 17, 2020 16:14
Index images by uniqueness in FiftyOne
import fiftyone.brain as fob
fob.compute_uniqueness(dataset)
# Explore most unique samples
session.view = dataset.sort_by("uniqueness", reverse=True)
@briankelly
briankelly / install-fiftyone.sh
Created August 17, 2020 16:39
Install FiftyOne
# Run these each of these in a clean, activated virtual environment running Python 3.6+
# See docs for more help: https://voxel51.com/docs/fiftyone/getting_started/install.html
pip install --upgrade pip setuptools wheel
pip install --index https://pypi.voxel51.com fiftyone