Skip to content

Instantly share code, notes, and snippets.

View aung2phyowai's full-sized avatar

Aung Aung Phyo Wai aung2phyowai

  • Nanyang Technological University
  • Singapore
View GitHub Profile
@aung2phyowai
aung2phyowai / combine_profusion_xml.R
Created July 30, 2016 03:20 — forked from mrueschman/combine_profusion_xml.R
R script to combine Profusion XML annotation files into single CSV
# This program will convert Profusion XML files into a single, combined CSV file that lists staging and scored events
# Prerequisites: XML package
# Upon running for first time, uncomment the "install.packages("XML")" line
#
# How to use: Put XML files into 'xml_path' folder below and run program.
#install.packages("XML")
library(XML)
# Set project path
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@aung2phyowai
aung2phyowai / dl-frameworks.rst
Created July 3, 2016 05:08 — forked from bartvm/dl-frameworks.rst
A comparison of deep learning frameworks

A comparison of Theano with other deep learning frameworks, highlighting a series of low-level design choices in no particular order.

Overview

Symbolic: Theano, CGT; Automatic: Torch, MXNet

Symbolic and automatic differentiation are often confused or used interchangeably, although their implementations are significantly different.