Skip to content

Instantly share code, notes, and snippets.

View dwiel's full-sized avatar

Zach Dwiel dwiel

  • Terran Robotics
  • Bloomington, IN, USA
View GitHub Profile
### Keybase proof
I hereby claim:
* I am dwiel on github.
* I am zdwiel (https://keybase.io/zdwiel) on keybase.
* I have a public key ASDWkAdi5t6uw_11BulAf1LXZjN5t3LTmO4F_Q4RCctkhAo
To claim this, I am signing this object:
@dwiel
dwiel / repo_install_prereqs
Last active January 29, 2016 06:01
try installing requirements out of py.prereqs from conda, and if that fails from pypi with pip
#!/bin/bash
SCRIPT_PATH=$(readlink -f ${BASH_SOURCE[0]})
WD=$(dirname ${SCRIPT_PATH})
export PW_HOME=${WD}
if [[ -f ~/anaconda/bin/activate ]];then
source ~/anaconda/bin/activate ~/anaconda
fi
INST_CACHE_ROOT=~/.pw_install_cache
function check_if_updated()

This problem aims to find the accuracy of an appliance detection algorithm

Setup:

We are given whole home energy data and a truth set of appliances defined by their wattage in Kilo Watts (kW)

Example:

A home has a fridge (200W), an electric vehicle (1500W) and a dryer (5000W) -->

truth set: [ 0.2, 5.0, 1.5 ]
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
<link type="text/css" rel="stylesheet" href="http://mbostock.github.com/d3/talk/20111018/style.css"/>
<script type="text/javascript" src="http://mbostock.github.com/d3/talk/20111018/d3/d3.js"></script>
<script type="text/javascript" src="http://mbostock.github.com/d3/talk/20111018/d3/d3.layout.js"></script>
<style type="text/css">
.node circle {
cursor: pointer;