Skip to content

Instantly share code, notes, and snippets.

View rbarnard's full-sized avatar

Ryan Barnard rbarnard

  • Winston-Salem, NC
View GitHub Profile
@rbarnard
rbarnard / Neural Networks and Deep Learning.md
Last active September 20, 2019 19:50
A collection of links related to my April 23, 2019 talk for the Department of Biostatistics and Data Science
#include <stdio.h>
class Base {
public:
Base () { }
virtual ~Base () { }
};
class Enroll : public virtual Base {