Skip to content

Instantly share code, notes, and snippets.

View Zackory's full-sized avatar

Zackory Erickson Zackory

  • Carnegie Mellon University
  • Pittsburgh, PA
View GitHub Profile
@Zackory
Zackory / assistive_gym_windows_install.md
Last active January 13, 2020 15:28
Instructions for installing Assistive Gym on Windows

Software to install (smaller install size)

  1. Install Python 3.6.8 at: https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe
  2. Install Microsoft visual c++ build tools: https://www.microsoft.com/en-us/download/details.aspx?id=48159
  3. Install c++ build tools for visual studio: https://visualstudio.microsoft.com/downloads/#build-tools-for-visual-studio-2019 -- during installation, click on the "C++ build tools" checkbox.

Or, install visual studio for everything: https://visualstudio.microsoft.com/downloads

-- During installation, click on "Python development" and "Desktop development with C++"

Install git: https://git-scm.com/download/win

@Zackory
Zackory / bee-map.py
Created January 19, 2017 00:35
A python implementation of bee-map.c for lab 1 in CS8803: STR.
from __future__ import print_function
import os, sys
import numpy as np
# Author: Zackory Erickson
class Map:
mapsize_x = 0
mapsize_y = 0
resolution = 0
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Zackory
Zackory / predict.cpp
Last active September 18, 2017 18:17
Caffe Image Classification C++
#include <cuda_runtime.h>
#include <cstring>
#include <cstdlib>
#include <vector>
#include <string>
#include <iostream>
#include <stdio.h>
#include "caffe/caffe.hpp"