Skip to content

Instantly share code, notes, and snippets.

View atlury's full-sized avatar
💭
Working

Rahul Atlury atlury

💭
Working
View GitHub Profile
@0xdevalias
0xdevalias / NotesOnUSBPacketCapturing.txt
Last active June 24, 2022 15:33
Notes on USB packet capturing/interfacing/reverse engineering.
# Researched By: Glenn 'devalias' Grant (http://devalias.net)
# License: The MIT License (MIT) - Copyright (c) 2013 Glenn 'devalias' Grant (see http://choosealicense.com/licenses/mit/ for full license text)
USB Complete : The Developer's Guide, Fourth Edition, Jan Axelson
* http://www.lvr.com/usbc.htm
* http://www.amazon.com/USB-Complete-Developers-Guide-Guides/dp/1931448086
* https://itunes.apple.com/au/book/usb-complete-fourth-edition/id482722029?mt=11
http://learn.adafruit.com/hacking-the-kinect
@baraldilorenzo
baraldilorenzo / readme.md
Last active June 13, 2024 03:07
VGG-16 pre-trained model for Keras

##VGG16 model for Keras

This is the Keras model of the 16-layer network used by the VGG team in the ILSVRC-2014 competition.

It has been obtained by directly converting the Caffe model provived by the authors.

Details about the network architecture can be found in the following arXiv paper:

Very Deep Convolutional Networks for Large-Scale Image Recognition

K. Simonyan, A. Zisserman

@arunmallya
arunmallya / ReadCSVToDatum.txt
Last active August 10, 2017 10:55
A function to load CSV data into a caffe datum
bool ReadCSVToDatum(const string& filename, Datum* datum) {
// read in the CSV file into a vector
fstream file(filename.c_str(), ios::in);
vector<vector<int> > label;
std::string line;
while (std::getline(file, line)) {
// replace commas with spaces
for (int i = 0; i < line.length(); i++) {
if (line[i] == ',')
line[i] = ' ';