Skip to content

Instantly share code, notes, and snippets.

View ljbelenky's full-sized avatar

Land Belenky ljbelenky

  • Denver
View GitHub Profile
@ljbelenky
ljbelenky / gist:19a443c73baf60f1797ee27b9d6cf085
Last active June 3, 2020 19:12
Open image file from s3 bucket
import matplotlib.pyplot as plt
import matplotlib.image as mpimg
import numpy as np
import boto3
import tempfile
s3 = boto3.resource('s3', region_name='us-west-1', aws_access_key_id=ACCESS_ID, aws_secret_access_key=ACCESS_KEY)
bucket = s3.Bucket('galvanize-capstone')
object = bucket.Object('images_001/images/00000001_000.png')
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ljbelenky
ljbelenky / Thoughts on Graphs.ipynb
Created July 22, 2020 15:26
Thoughts about Graphs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ljbelenky
ljbelenky / Categorical Comparison vs. Correlation.ipynb
Created July 23, 2020 16:20
Categorical comparison vs. Correlation
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ljbelenky
ljbelenky / Things I learned this week
Created July 24, 2020 16:11
Things I learned during Capstone 1
Please share one or two things you learned this week.
@ljbelenky
ljbelenky / KNN Example.ipynb
Created July 27, 2020 18:32
Example of Predicting with KNN
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ljbelenky
ljbelenky / HIV Incidence Predictor.ipynb
Last active August 5, 2020 18:00
HIV Incidence Predictor
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ljbelenky
ljbelenky / KNN Bias-Variance.ipynb
Last active August 4, 2020 00:48
Bias-Variance In KNN Classifier
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ljbelenky
ljbelenky / Args and KWArgs.ipynb
Created August 6, 2020 14:09
*Args and **KWArgs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ljbelenky
ljbelenky / Combination Locks.ipynb
Last active July 13, 2021 23:06
OOP Exercise: Combination Locks
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.