Skip to content

Instantly share code, notes, and snippets.

View neggert's full-sized avatar

Nic Eggert neggert

  • Target
  • Minneapolis, MN
View GitHub Profile
+++ Starting PROOF-Lite with 8 workers +++
Opening connections to workers: OK (8 workers)
Setting up worker servers: OK (8 workers)
PROOF set to parallel mode (8 workers)
TBufferFile::WriteObjectAny:0: RuntimeWarning: since RooNumCdf has no public constructor
which can be called without argument, objects of this class
can not be read with the current library. You will need to
add a default constructor before attempting to read it.
TBufferFile::WriteObjectAny:0: RuntimeWarning: since RooNumCdf has no public constructor
which can be called without argument, objects of this class
[ 92%] Generating gm2dataproducts_calo_dict.cpp, gm2dataproducts_calo_map.cpp
--->> genreflex: INFO: Using gccxml from /gm2/app/software/prod/external/gccxml/v0_9_20120702/Linux64bit+2.6-2.5-gcc47/bin/gccxml
--->> genreflex: INFO: Parsing file /gm2/app/users/eggert/playing/srcs/gm2dataproducts/calo/classes.h with GCC_XML OK
--->> genreflex: INFO: Generating Reflex Dictionary
class gm2dataproducts::XtalHitClusterArtRecord
class std::vector<gm2dataproducts::XtalHitClusterArtRecord>
class art::PtrVector<gm2ringsim::XtalArtRecord>
class art::Wrapper<std::vector<gm2dataproducts::XtalHitClusterArtRecord> >
class art::Ptr<gm2ringsim::XtalArtRecord>
[ 92%] Building CXX object gm2dataproducts/calo/CMakeFiles/gm2dataproducts_calo_dict.dir/gm2dataproducts_calo_dict.cpp.o
@neggert
neggert / inception_v3.py
Created April 6, 2016 17:35
Inception-v3 implementation in Keras
from keras.models import Model
from keras.layers import (
Input,
Dense,
Flatten,
merge,
Lambda
)
from keras.layers.convolutional import (
Convolution2D,