├── .gitignore ├── INSTALL.md ├── LICENSE ├── README.md ├── data └── .gitignore ├── exp └── data │ └── .gitignore ├── install.sh ├── net ├── SVM │ └── .gitignore ├── data │ └── .gitignore ├── defaultHDF5TestData.prototxt ├── defaultHDF5TestDataNew.prototxt ├── defaultHDF5TrainData.prototxt ├── defaultHDF5TrainDataNew.prototxt ├── defaultTrain.prototxt ├── models │ └── .gitignore ├── netData.prototxt ├── temp │ └── .gitignore └── train │ └── .gitignore ├── res ├── accuracy.png ├── data │ ├── add_folder.png │ └── help │ │ ├── helpBarData0.jpg │ │ ├── helpBarData1.jpg │ │ ├── leftArrow.jpg │ │ └── rightArrow.jpg ├── exp │ ├── accuracy.png │ ├── extractFeatures.png │ ├── icon.png │ ├── steps │ │ ├── gui.zip │ │ ├── gui │ │ │ ├── HelpBarData.jpg │ │ │ ├── HelpBarData2.jpg │ │ │ ├── leftarrow.jpg │ │ │ ├── rightarrow.jpg │ │ │ ├── step0Exp.jpg │ │ │ ├── step1Exp.jpg │ │ │ ├── step2Exp.jpg │ │ │ └── step3Exp.jpg │ │ ├── step0Exp.jpg │ │ ├── step1Exp.jpg │ │ ├── step2Exp.jpg │ │ └── step3Exp.jpg │ └── visuallize.png ├── extractFeatures.png ├── main │ ├── buttons │ │ ├── dataOffButton.png │ │ ├── dataOnButton.png │ │ ├── expOffButton.png │ │ ├── expOnButton.png │ │ ├── mainOffButton.png │ │ ├── mainOnButton.png │ │ ├── netOffButton.png │ │ ├── netOnButton.png │ │ ├── trainOffButton.png │ │ └── trainOnButton.png │ ├── delete │ │ └── delete.png │ ├── notifications │ │ ├── notificationClicked.png │ │ ├── notificationDefault.png │ │ └── notificationNew.png │ └── settings │ │ └── settings.png ├── svmtrain.png ├── train │ ├── steps │ │ ├── step0Train.jpg │ │ ├── step1Train.jpg │ │ ├── step2Train.jpg │ │ ├── step3Train.jpg │ │ └── step4Train.jpg │ ├── svmtrain.png │ └── training.png ├── training.png ├── visuallize.png └── wizard │ ├── importViewDefault.png │ ├── importViewTextStep1.png │ └── importViewTextStep2.png ├── run_expresso.sh ├── src ├── augmentation │ ├── AugmentationHandler.py │ ├── augmentationView.py │ ├── augmentationView.ui │ ├── croppingFunc.py │ ├── croppingWithoutStretchingFunc.py │ ├── doubleCroppingFunc.py │ ├── interpreterProto.proto │ ├── interpreterProto_pb2.py │ ├── interpreterText.prototxt │ └── uniformCroppingFunc.py ├── custom │ ├── autocomplete.py │ ├── default.prototxt │ ├── defaultDeploy.prototxt │ ├── defaultSolver.prototxt │ ├── defaultTrain.prototxt │ ├── iterateCaffe.py │ ├── layers │ │ ├── calcConcat.py │ │ ├── calcConvolution.py │ │ ├── calcInnerProduct.py │ │ ├── calcPooling.py │ │ ├── calcReLU.py │ │ ├── layerProto.proto │ │ ├── layerProto_pb2.py │ │ └── layerText.prototxt │ └── netWidget.py ├── data │ ├── DataHandler.py │ ├── LabelHandler.py │ ├── Splitter.py │ ├── addNameView.py │ ├── attachLabelView.py │ ├── bottomData.py │ ├── centralData.py │ ├── data.py │ ├── dataCaffe.py │ ├── dataGuideView.py │ ├── dataView.py │ ├── dataViewTemp.py │ ├── exportView.py │ ├── importMultipleFoldersView.py │ ├── importMultipleFoldersView.ui │ ├── importView.py │ ├── importViewTemp.py │ ├── left1Data.py │ ├── left2Data.py │ ├── readdb.py │ ├── splitView.py │ ├── transformationView.py │ └── transformationViewTemp.py ├── default │ ├── bottomDefault.py │ ├── centralDefault.py │ ├── left1Default.py │ └── left2Default.py ├── exp │ ├── .left1Exp.py.swp │ ├── SVM │ │ ├── scaling_parameters │ │ ├── testSVMView.py │ │ └── testSVMView.ui │ ├── bottomExp.py │ ├── centralExp.py │ ├── expChooseView.py │ ├── expListView.py │ ├── expTesting.py │ ├── expView.py │ ├── expVisuallizeView.py │ ├── exportExperimentView.py │ ├── extractFeatures.py │ ├── finalView.py │ ├── groupexp.proto │ ├── groupexp_pb2.py │ ├── left1Exp.py │ ├── left2Exp.py │ ├── netOperation.py │ ├── pipelineView.py │ ├── runexperiment.py │ └── testScript.sh ├── functions │ ├── FunctionHandler.py │ ├── defaultFunc.py │ ├── expFunc.py │ ├── functionProto.proto │ ├── functionProto_pb2.py │ ├── functionText.prototxt │ ├── invertFunc.py │ ├── logFunc.py │ ├── rLogFunc.py │ ├── rSigmoidFunc.py │ └── sigmoidFunc.py ├── main │ ├── DeleteHandler.py │ ├── deleteView.py │ ├── deleteView.ui │ ├── main.py │ ├── notificationCommonView.py │ ├── notificationHandler.py │ ├── notificationListItemWidget.py │ ├── out.txt │ ├── scaling_parameters │ ├── settingsView.py │ └── temp.png ├── net │ ├── addLayerView.py │ ├── bottomNet.py │ ├── centralNet.py │ ├── config │ │ ├── netConfig.proto │ │ └── netConfig_pb2.py │ ├── configListView.py │ ├── configNetListView.py │ ├── configView.py │ ├── configViewItem.py │ ├── configViewItemTemp.py │ ├── configViewNew.py │ ├── configViewNewTemp.py │ ├── layerListView.py │ ├── layerView.py │ ├── left1Net.py │ ├── left2Net.py │ ├── netButtonView.py │ ├── otherParametersView.py │ ├── propertiesView.py │ ├── propertiesView.ui │ └── solverView.py ├── notification │ ├── notificationDefault.py │ └── notificationTrainingData.py ├── train │ ├── SVM │ │ └── trainSVMView.py │ ├── bottomTrain.py │ ├── centralTrain.py │ ├── left1Train.py │ ├── left2Train.py │ ├── socketView.py │ ├── socketViewNew.py │ ├── trainChooseView.py │ ├── trainValidDataView.py │ └── trainingProgressView.py └── wizard │ ├── wizard.ui │ ├── wizardProto.proto │ ├── wizardProto_pb2.py │ ├── wizardText.prototxt │ ├── wizardView.py │ └── wizardViewExtended.py ├── tools ├── liblinear-1.96 │ ├── COPYRIGHT │ ├── Makefile │ ├── Makefile.win │ ├── README │ ├── blas │ │ ├── Makefile │ │ ├── blas.a │ │ ├── blas.h │ │ ├── blasp.h │ │ ├── daxpy.c │ │ ├── daxpy.o │ │ ├── ddot.c │ │ ├── ddot.o │ │ ├── dnrm2.c │ │ ├── dnrm2.o │ │ ├── dscal.c │ │ └── dscal.o │ ├── heart_scale │ ├── liblinear.so.2 │ ├── linear.cpp │ ├── linear.def │ ├── linear.h │ ├── linear.o │ ├── matlab │ │ ├── Makefile │ │ ├── README │ │ ├── libsvmread.c │ │ ├── libsvmwrite.c │ │ ├── linear_model_matlab.c │ │ ├── linear_model_matlab.h │ │ ├── make.m │ │ ├── predict.c │ │ └── train.c │ ├── predict │ ├── predict.c │ ├── python │ │ ├── Makefile │ │ ├── README │ │ ├── liblinear.py │ │ ├── liblinear.pyc │ │ ├── liblinearutil.py │ │ └── liblinearutil.pyc │ ├── train │ ├── train.c │ ├── tron.cpp │ ├── tron.h │ ├── tron.o │ └── windows │ │ ├── liblinear.dll │ │ ├── libsvmread.mexw64 │ │ ├── libsvmwrite.mexw64 │ │ ├── predict.exe │ │ ├── predict.mexw64 │ │ ├── train.exe │ │ └── train.mexw64 ├── libsvm-3.20 │ ├── COPYRIGHT │ ├── FAQ.html │ ├── Makefile │ ├── Makefile.win │ ├── README │ ├── heart_scale │ ├── java │ │ ├── Makefile │ │ ├── libsvm.jar │ │ ├── libsvm │ │ │ ├── svm.java │ │ │ ├── svm.m4 │ │ │ ├── svm_model.java │ │ │ ├── svm_node.java │ │ │ ├── svm_parameter.java │ │ │ ├── svm_print_interface.java │ │ │ └── svm_problem.java │ │ ├── svm_predict.java │ │ ├── svm_scale.java │ │ ├── svm_toy.java │ │ ├── svm_train.java │ │ └── test_applet.html │ ├── libsvm.so.2 │ ├── matlab │ │ ├── Makefile │ │ ├── README │ │ ├── libsvmread.c │ │ ├── libsvmwrite.c │ │ ├── make.m │ │ ├── svm_model_matlab.c │ │ ├── svm_model_matlab.h │ │ ├── svmpredict.c │ │ └── svmtrain.c │ ├── python │ │ ├── Makefile │ │ ├── README │ │ ├── svm.py │ │ ├── svm.pyc │ │ ├── svmutil.py │ │ └── svmutil.pyc │ ├── svm-predict │ ├── svm-predict.c │ ├── svm-scale │ ├── svm-scale.c │ ├── svm-toy │ │ ├── gtk │ │ │ ├── Makefile │ │ │ ├── callbacks.cpp │ │ │ ├── callbacks.h │ │ │ ├── interface.c │ │ │ ├── interface.h │ │ │ ├── main.c │ │ │ └── svm-toy.glade │ │ ├── qt │ │ │ ├── Makefile │ │ │ └── svm-toy.cpp │ │ └── windows │ │ │ └── svm-toy.cpp │ ├── svm-train │ ├── svm-train.c │ ├── svm.cpp │ ├── svm.def │ ├── svm.h │ ├── svm.o │ ├── tools │ │ ├── README │ │ ├── checkdata.py │ │ ├── easy.py │ │ ├── grid.py │ │ └── subset.py │ └── windows │ │ ├── libsvm.dll │ │ ├── libsvmread.mexw64 │ │ ├── libsvmwrite.mexw64 │ │ ├── svm-predict.exe │ │ ├── svm-scale.exe │ │ ├── svm-toy.exe │ │ ├── svm-train.exe │ │ ├── svmpredict.mexw64 │ │ └── svmtrain.mexw64 └── protoToNpy │ └── prototonpy.py └── tutorials ├── data ├── MSRA9 │ ├── 010001.jpg │ ├── 010002.jpg │ ├── 010003.jpg │ ├── 010004.jpg │ ├── 010005.jpg │ ├── 010006.jpg │ ├── 010007.jpg │ ├── 010008.jpg │ └── 010009.jpg ├── get_caffenet_data.sh ├── get_cifar_10_data.sh ├── imagenet_mean.binaryproto ├── imagenet_mean.npy └── preprocess_cifar_10.py ├── tutorial_1 └── tutorial_1.sh ├── tutorial_10 └── calcLRN.py ├── tutorial_11 ├── multiLabel │ ├── CreateText.py │ ├── multiLabelFunc.py │ └── tutorial_11_multiLabel.sh └── variableCrop │ ├── CreateText.py │ ├── crops │ ├── 010001.txt │ ├── 010002.txt │ └── 010003.txt │ ├── tutorial_11_variableCrops.sh │ └── variableCropFunc.py ├── tutorial_3 ├── cifar10_quick.prototxt ├── cifar10_quick_solver.prototxt ├── cifar10_quick_train_test.prototxt ├── cifar_mean.npy └── tutorial_3.sh ├── tutorial_6 ├── caffenet_deploy.prototxt └── tutorial_6.sh ├── tutorial_8 ├── cifar10_quick.prototxt └── tutorial_8.sh └── tutorial_9 └── rParabolaFunc.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/.gitignore -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/README.md -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exp/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/install.sh -------------------------------------------------------------------------------- /net/SVM/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /net/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /net/defaultHDF5TestData.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/net/defaultHDF5TestData.prototxt -------------------------------------------------------------------------------- /net/defaultHDF5TestDataNew.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/net/defaultHDF5TestDataNew.prototxt -------------------------------------------------------------------------------- /net/defaultHDF5TrainData.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/net/defaultHDF5TrainData.prototxt -------------------------------------------------------------------------------- /net/defaultHDF5TrainDataNew.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/net/defaultHDF5TrainDataNew.prototxt -------------------------------------------------------------------------------- /net/defaultTrain.prototxt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /net/models/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /net/netData.prototxt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /net/temp/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /net/train/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /res/accuracy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/accuracy.png -------------------------------------------------------------------------------- /res/data/add_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/data/add_folder.png -------------------------------------------------------------------------------- /res/data/help/helpBarData0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/data/help/helpBarData0.jpg -------------------------------------------------------------------------------- /res/data/help/helpBarData1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/data/help/helpBarData1.jpg -------------------------------------------------------------------------------- /res/data/help/leftArrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/data/help/leftArrow.jpg -------------------------------------------------------------------------------- /res/data/help/rightArrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/data/help/rightArrow.jpg -------------------------------------------------------------------------------- /res/exp/accuracy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/exp/accuracy.png -------------------------------------------------------------------------------- /res/exp/extractFeatures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/exp/extractFeatures.png -------------------------------------------------------------------------------- /res/exp/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/exp/icon.png -------------------------------------------------------------------------------- /res/exp/steps/gui.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/exp/steps/gui.zip -------------------------------------------------------------------------------- /res/exp/steps/gui/HelpBarData.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/exp/steps/gui/HelpBarData.jpg -------------------------------------------------------------------------------- /res/exp/steps/gui/HelpBarData2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/exp/steps/gui/HelpBarData2.jpg -------------------------------------------------------------------------------- /res/exp/steps/gui/leftarrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/exp/steps/gui/leftarrow.jpg -------------------------------------------------------------------------------- /res/exp/steps/gui/rightarrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/exp/steps/gui/rightarrow.jpg -------------------------------------------------------------------------------- /res/exp/steps/gui/step0Exp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/exp/steps/gui/step0Exp.jpg -------------------------------------------------------------------------------- /res/exp/steps/gui/step1Exp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/exp/steps/gui/step1Exp.jpg -------------------------------------------------------------------------------- /res/exp/steps/gui/step2Exp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/exp/steps/gui/step2Exp.jpg -------------------------------------------------------------------------------- /res/exp/steps/gui/step3Exp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/exp/steps/gui/step3Exp.jpg -------------------------------------------------------------------------------- /res/exp/steps/step0Exp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/exp/steps/step0Exp.jpg -------------------------------------------------------------------------------- /res/exp/steps/step1Exp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/exp/steps/step1Exp.jpg -------------------------------------------------------------------------------- /res/exp/steps/step2Exp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/exp/steps/step2Exp.jpg -------------------------------------------------------------------------------- /res/exp/steps/step3Exp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/exp/steps/step3Exp.jpg -------------------------------------------------------------------------------- /res/exp/visuallize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/exp/visuallize.png -------------------------------------------------------------------------------- /res/extractFeatures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/extractFeatures.png -------------------------------------------------------------------------------- /res/main/buttons/dataOffButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/main/buttons/dataOffButton.png -------------------------------------------------------------------------------- /res/main/buttons/dataOnButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/main/buttons/dataOnButton.png -------------------------------------------------------------------------------- /res/main/buttons/expOffButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/main/buttons/expOffButton.png -------------------------------------------------------------------------------- /res/main/buttons/expOnButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/main/buttons/expOnButton.png -------------------------------------------------------------------------------- /res/main/buttons/mainOffButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/main/buttons/mainOffButton.png -------------------------------------------------------------------------------- /res/main/buttons/mainOnButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/main/buttons/mainOnButton.png -------------------------------------------------------------------------------- /res/main/buttons/netOffButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/main/buttons/netOffButton.png -------------------------------------------------------------------------------- /res/main/buttons/netOnButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/main/buttons/netOnButton.png -------------------------------------------------------------------------------- /res/main/buttons/trainOffButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/main/buttons/trainOffButton.png -------------------------------------------------------------------------------- /res/main/buttons/trainOnButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/main/buttons/trainOnButton.png -------------------------------------------------------------------------------- /res/main/delete/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/main/delete/delete.png -------------------------------------------------------------------------------- /res/main/notifications/notificationClicked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/main/notifications/notificationClicked.png -------------------------------------------------------------------------------- /res/main/notifications/notificationDefault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/main/notifications/notificationDefault.png -------------------------------------------------------------------------------- /res/main/notifications/notificationNew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/main/notifications/notificationNew.png -------------------------------------------------------------------------------- /res/main/settings/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/main/settings/settings.png -------------------------------------------------------------------------------- /res/svmtrain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/svmtrain.png -------------------------------------------------------------------------------- /res/train/steps/step0Train.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/train/steps/step0Train.jpg -------------------------------------------------------------------------------- /res/train/steps/step1Train.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/train/steps/step1Train.jpg -------------------------------------------------------------------------------- /res/train/steps/step2Train.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/train/steps/step2Train.jpg -------------------------------------------------------------------------------- /res/train/steps/step3Train.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/train/steps/step3Train.jpg -------------------------------------------------------------------------------- /res/train/steps/step4Train.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/train/steps/step4Train.jpg -------------------------------------------------------------------------------- /res/train/svmtrain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/train/svmtrain.png -------------------------------------------------------------------------------- /res/train/training.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/train/training.png -------------------------------------------------------------------------------- /res/training.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/training.png -------------------------------------------------------------------------------- /res/visuallize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/visuallize.png -------------------------------------------------------------------------------- /res/wizard/importViewDefault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/wizard/importViewDefault.png -------------------------------------------------------------------------------- /res/wizard/importViewTextStep1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/wizard/importViewTextStep1.png -------------------------------------------------------------------------------- /res/wizard/importViewTextStep2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/res/wizard/importViewTextStep2.png -------------------------------------------------------------------------------- /run_expresso.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/run_expresso.sh -------------------------------------------------------------------------------- /src/augmentation/AugmentationHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/augmentation/AugmentationHandler.py -------------------------------------------------------------------------------- /src/augmentation/augmentationView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/augmentation/augmentationView.py -------------------------------------------------------------------------------- /src/augmentation/augmentationView.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/augmentation/augmentationView.ui -------------------------------------------------------------------------------- /src/augmentation/croppingFunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/augmentation/croppingFunc.py -------------------------------------------------------------------------------- /src/augmentation/croppingWithoutStretchingFunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/augmentation/croppingWithoutStretchingFunc.py -------------------------------------------------------------------------------- /src/augmentation/doubleCroppingFunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/augmentation/doubleCroppingFunc.py -------------------------------------------------------------------------------- /src/augmentation/interpreterProto.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/augmentation/interpreterProto.proto -------------------------------------------------------------------------------- /src/augmentation/interpreterProto_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/augmentation/interpreterProto_pb2.py -------------------------------------------------------------------------------- /src/augmentation/interpreterText.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/augmentation/interpreterText.prototxt -------------------------------------------------------------------------------- /src/augmentation/uniformCroppingFunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/augmentation/uniformCroppingFunc.py -------------------------------------------------------------------------------- /src/custom/autocomplete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/custom/autocomplete.py -------------------------------------------------------------------------------- /src/custom/default.prototxt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/custom/defaultDeploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/custom/defaultDeploy.prototxt -------------------------------------------------------------------------------- /src/custom/defaultSolver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/custom/defaultSolver.prototxt -------------------------------------------------------------------------------- /src/custom/defaultTrain.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/custom/defaultTrain.prototxt -------------------------------------------------------------------------------- /src/custom/iterateCaffe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/custom/iterateCaffe.py -------------------------------------------------------------------------------- /src/custom/layers/calcConcat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/custom/layers/calcConcat.py -------------------------------------------------------------------------------- /src/custom/layers/calcConvolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/custom/layers/calcConvolution.py -------------------------------------------------------------------------------- /src/custom/layers/calcInnerProduct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/custom/layers/calcInnerProduct.py -------------------------------------------------------------------------------- /src/custom/layers/calcPooling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/custom/layers/calcPooling.py -------------------------------------------------------------------------------- /src/custom/layers/calcReLU.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/custom/layers/calcReLU.py -------------------------------------------------------------------------------- /src/custom/layers/layerProto.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/custom/layers/layerProto.proto -------------------------------------------------------------------------------- /src/custom/layers/layerProto_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/custom/layers/layerProto_pb2.py -------------------------------------------------------------------------------- /src/custom/layers/layerText.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/custom/layers/layerText.prototxt -------------------------------------------------------------------------------- /src/custom/netWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/custom/netWidget.py -------------------------------------------------------------------------------- /src/data/DataHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/data/DataHandler.py -------------------------------------------------------------------------------- /src/data/LabelHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/data/LabelHandler.py -------------------------------------------------------------------------------- /src/data/Splitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/data/Splitter.py -------------------------------------------------------------------------------- /src/data/addNameView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/data/addNameView.py -------------------------------------------------------------------------------- /src/data/attachLabelView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/data/attachLabelView.py -------------------------------------------------------------------------------- /src/data/bottomData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/data/bottomData.py -------------------------------------------------------------------------------- /src/data/centralData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/data/centralData.py -------------------------------------------------------------------------------- /src/data/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/data/data.py -------------------------------------------------------------------------------- /src/data/dataCaffe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/data/dataCaffe.py -------------------------------------------------------------------------------- /src/data/dataGuideView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/data/dataGuideView.py -------------------------------------------------------------------------------- /src/data/dataView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/data/dataView.py -------------------------------------------------------------------------------- /src/data/dataViewTemp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/data/dataViewTemp.py -------------------------------------------------------------------------------- /src/data/exportView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/data/exportView.py -------------------------------------------------------------------------------- /src/data/importMultipleFoldersView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/data/importMultipleFoldersView.py -------------------------------------------------------------------------------- /src/data/importMultipleFoldersView.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/data/importMultipleFoldersView.ui -------------------------------------------------------------------------------- /src/data/importView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/data/importView.py -------------------------------------------------------------------------------- /src/data/importViewTemp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/data/importViewTemp.py -------------------------------------------------------------------------------- /src/data/left1Data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/data/left1Data.py -------------------------------------------------------------------------------- /src/data/left2Data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/data/left2Data.py -------------------------------------------------------------------------------- /src/data/readdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/data/readdb.py -------------------------------------------------------------------------------- /src/data/splitView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/data/splitView.py -------------------------------------------------------------------------------- /src/data/transformationView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/data/transformationView.py -------------------------------------------------------------------------------- /src/data/transformationViewTemp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/data/transformationViewTemp.py -------------------------------------------------------------------------------- /src/default/bottomDefault.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/default/bottomDefault.py -------------------------------------------------------------------------------- /src/default/centralDefault.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/default/centralDefault.py -------------------------------------------------------------------------------- /src/default/left1Default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/default/left1Default.py -------------------------------------------------------------------------------- /src/default/left2Default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/default/left2Default.py -------------------------------------------------------------------------------- /src/exp/.left1Exp.py.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/exp/.left1Exp.py.swp -------------------------------------------------------------------------------- /src/exp/SVM/scaling_parameters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/exp/SVM/scaling_parameters -------------------------------------------------------------------------------- /src/exp/SVM/testSVMView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/exp/SVM/testSVMView.py -------------------------------------------------------------------------------- /src/exp/SVM/testSVMView.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/exp/SVM/testSVMView.ui -------------------------------------------------------------------------------- /src/exp/bottomExp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/exp/bottomExp.py -------------------------------------------------------------------------------- /src/exp/centralExp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/exp/centralExp.py -------------------------------------------------------------------------------- /src/exp/expChooseView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/exp/expChooseView.py -------------------------------------------------------------------------------- /src/exp/expListView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/exp/expListView.py -------------------------------------------------------------------------------- /src/exp/expTesting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/exp/expTesting.py -------------------------------------------------------------------------------- /src/exp/expView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/exp/expView.py -------------------------------------------------------------------------------- /src/exp/expVisuallizeView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/exp/expVisuallizeView.py -------------------------------------------------------------------------------- /src/exp/exportExperimentView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/exp/exportExperimentView.py -------------------------------------------------------------------------------- /src/exp/extractFeatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/exp/extractFeatures.py -------------------------------------------------------------------------------- /src/exp/finalView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/exp/finalView.py -------------------------------------------------------------------------------- /src/exp/groupexp.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/exp/groupexp.proto -------------------------------------------------------------------------------- /src/exp/groupexp_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/exp/groupexp_pb2.py -------------------------------------------------------------------------------- /src/exp/left1Exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/exp/left1Exp.py -------------------------------------------------------------------------------- /src/exp/left2Exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/exp/left2Exp.py -------------------------------------------------------------------------------- /src/exp/netOperation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/exp/netOperation.py -------------------------------------------------------------------------------- /src/exp/pipelineView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/exp/pipelineView.py -------------------------------------------------------------------------------- /src/exp/runexperiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/exp/runexperiment.py -------------------------------------------------------------------------------- /src/exp/testScript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/exp/testScript.sh -------------------------------------------------------------------------------- /src/functions/FunctionHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/functions/FunctionHandler.py -------------------------------------------------------------------------------- /src/functions/defaultFunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/functions/defaultFunc.py -------------------------------------------------------------------------------- /src/functions/expFunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/functions/expFunc.py -------------------------------------------------------------------------------- /src/functions/functionProto.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/functions/functionProto.proto -------------------------------------------------------------------------------- /src/functions/functionProto_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/functions/functionProto_pb2.py -------------------------------------------------------------------------------- /src/functions/functionText.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/functions/functionText.prototxt -------------------------------------------------------------------------------- /src/functions/invertFunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/functions/invertFunc.py -------------------------------------------------------------------------------- /src/functions/logFunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/functions/logFunc.py -------------------------------------------------------------------------------- /src/functions/rLogFunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/functions/rLogFunc.py -------------------------------------------------------------------------------- /src/functions/rSigmoidFunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/functions/rSigmoidFunc.py -------------------------------------------------------------------------------- /src/functions/sigmoidFunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/functions/sigmoidFunc.py -------------------------------------------------------------------------------- /src/main/DeleteHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/main/DeleteHandler.py -------------------------------------------------------------------------------- /src/main/deleteView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/main/deleteView.py -------------------------------------------------------------------------------- /src/main/deleteView.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/main/deleteView.ui -------------------------------------------------------------------------------- /src/main/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/main/main.py -------------------------------------------------------------------------------- /src/main/notificationCommonView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/main/notificationCommonView.py -------------------------------------------------------------------------------- /src/main/notificationHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/main/notificationHandler.py -------------------------------------------------------------------------------- /src/main/notificationListItemWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/main/notificationListItemWidget.py -------------------------------------------------------------------------------- /src/main/out.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/scaling_parameters: -------------------------------------------------------------------------------- 1 | x 2 | -1 1 3 | -------------------------------------------------------------------------------- /src/main/settingsView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/main/settingsView.py -------------------------------------------------------------------------------- /src/main/temp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/main/temp.png -------------------------------------------------------------------------------- /src/net/addLayerView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/net/addLayerView.py -------------------------------------------------------------------------------- /src/net/bottomNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/net/bottomNet.py -------------------------------------------------------------------------------- /src/net/centralNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/net/centralNet.py -------------------------------------------------------------------------------- /src/net/config/netConfig.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/net/config/netConfig.proto -------------------------------------------------------------------------------- /src/net/config/netConfig_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/net/config/netConfig_pb2.py -------------------------------------------------------------------------------- /src/net/configListView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/net/configListView.py -------------------------------------------------------------------------------- /src/net/configNetListView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/net/configNetListView.py -------------------------------------------------------------------------------- /src/net/configView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/net/configView.py -------------------------------------------------------------------------------- /src/net/configViewItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/net/configViewItem.py -------------------------------------------------------------------------------- /src/net/configViewItemTemp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/net/configViewItemTemp.py -------------------------------------------------------------------------------- /src/net/configViewNew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/net/configViewNew.py -------------------------------------------------------------------------------- /src/net/configViewNewTemp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/net/configViewNewTemp.py -------------------------------------------------------------------------------- /src/net/layerListView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/net/layerListView.py -------------------------------------------------------------------------------- /src/net/layerView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/net/layerView.py -------------------------------------------------------------------------------- /src/net/left1Net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/net/left1Net.py -------------------------------------------------------------------------------- /src/net/left2Net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/net/left2Net.py -------------------------------------------------------------------------------- /src/net/netButtonView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/net/netButtonView.py -------------------------------------------------------------------------------- /src/net/otherParametersView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/net/otherParametersView.py -------------------------------------------------------------------------------- /src/net/propertiesView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/net/propertiesView.py -------------------------------------------------------------------------------- /src/net/propertiesView.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/net/propertiesView.ui -------------------------------------------------------------------------------- /src/net/solverView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/net/solverView.py -------------------------------------------------------------------------------- /src/notification/notificationDefault.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/notification/notificationDefault.py -------------------------------------------------------------------------------- /src/notification/notificationTrainingData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/notification/notificationTrainingData.py -------------------------------------------------------------------------------- /src/train/SVM/trainSVMView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/train/SVM/trainSVMView.py -------------------------------------------------------------------------------- /src/train/bottomTrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/train/bottomTrain.py -------------------------------------------------------------------------------- /src/train/centralTrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/train/centralTrain.py -------------------------------------------------------------------------------- /src/train/left1Train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/train/left1Train.py -------------------------------------------------------------------------------- /src/train/left2Train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/train/left2Train.py -------------------------------------------------------------------------------- /src/train/socketView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/train/socketView.py -------------------------------------------------------------------------------- /src/train/socketViewNew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/train/socketViewNew.py -------------------------------------------------------------------------------- /src/train/trainChooseView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/train/trainChooseView.py -------------------------------------------------------------------------------- /src/train/trainValidDataView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/train/trainValidDataView.py -------------------------------------------------------------------------------- /src/train/trainingProgressView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/train/trainingProgressView.py -------------------------------------------------------------------------------- /src/wizard/wizard.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/wizard/wizard.ui -------------------------------------------------------------------------------- /src/wizard/wizardProto.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/wizard/wizardProto.proto -------------------------------------------------------------------------------- /src/wizard/wizardProto_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/wizard/wizardProto_pb2.py -------------------------------------------------------------------------------- /src/wizard/wizardText.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/wizard/wizardText.prototxt -------------------------------------------------------------------------------- /src/wizard/wizardView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/wizard/wizardView.py -------------------------------------------------------------------------------- /src/wizard/wizardViewExtended.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/src/wizard/wizardViewExtended.py -------------------------------------------------------------------------------- /tools/liblinear-1.96/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/COPYRIGHT -------------------------------------------------------------------------------- /tools/liblinear-1.96/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/Makefile -------------------------------------------------------------------------------- /tools/liblinear-1.96/Makefile.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/Makefile.win -------------------------------------------------------------------------------- /tools/liblinear-1.96/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/README -------------------------------------------------------------------------------- /tools/liblinear-1.96/blas/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/blas/Makefile -------------------------------------------------------------------------------- /tools/liblinear-1.96/blas/blas.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/blas/blas.a -------------------------------------------------------------------------------- /tools/liblinear-1.96/blas/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/blas/blas.h -------------------------------------------------------------------------------- /tools/liblinear-1.96/blas/blasp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/blas/blasp.h -------------------------------------------------------------------------------- /tools/liblinear-1.96/blas/daxpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/blas/daxpy.c -------------------------------------------------------------------------------- /tools/liblinear-1.96/blas/daxpy.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/blas/daxpy.o -------------------------------------------------------------------------------- /tools/liblinear-1.96/blas/ddot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/blas/ddot.c -------------------------------------------------------------------------------- /tools/liblinear-1.96/blas/ddot.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/blas/ddot.o -------------------------------------------------------------------------------- /tools/liblinear-1.96/blas/dnrm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/blas/dnrm2.c -------------------------------------------------------------------------------- /tools/liblinear-1.96/blas/dnrm2.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/blas/dnrm2.o -------------------------------------------------------------------------------- /tools/liblinear-1.96/blas/dscal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/blas/dscal.c -------------------------------------------------------------------------------- /tools/liblinear-1.96/blas/dscal.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/blas/dscal.o -------------------------------------------------------------------------------- /tools/liblinear-1.96/heart_scale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/heart_scale -------------------------------------------------------------------------------- /tools/liblinear-1.96/liblinear.so.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/liblinear.so.2 -------------------------------------------------------------------------------- /tools/liblinear-1.96/linear.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/linear.cpp -------------------------------------------------------------------------------- /tools/liblinear-1.96/linear.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/linear.def -------------------------------------------------------------------------------- /tools/liblinear-1.96/linear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/linear.h -------------------------------------------------------------------------------- /tools/liblinear-1.96/linear.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/linear.o -------------------------------------------------------------------------------- /tools/liblinear-1.96/matlab/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/matlab/Makefile -------------------------------------------------------------------------------- /tools/liblinear-1.96/matlab/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/matlab/README -------------------------------------------------------------------------------- /tools/liblinear-1.96/matlab/libsvmread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/matlab/libsvmread.c -------------------------------------------------------------------------------- /tools/liblinear-1.96/matlab/libsvmwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/matlab/libsvmwrite.c -------------------------------------------------------------------------------- /tools/liblinear-1.96/matlab/linear_model_matlab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/matlab/linear_model_matlab.c -------------------------------------------------------------------------------- /tools/liblinear-1.96/matlab/linear_model_matlab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/matlab/linear_model_matlab.h -------------------------------------------------------------------------------- /tools/liblinear-1.96/matlab/make.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/matlab/make.m -------------------------------------------------------------------------------- /tools/liblinear-1.96/matlab/predict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/matlab/predict.c -------------------------------------------------------------------------------- /tools/liblinear-1.96/matlab/train.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/matlab/train.c -------------------------------------------------------------------------------- /tools/liblinear-1.96/predict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/predict -------------------------------------------------------------------------------- /tools/liblinear-1.96/predict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/predict.c -------------------------------------------------------------------------------- /tools/liblinear-1.96/python/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/python/Makefile -------------------------------------------------------------------------------- /tools/liblinear-1.96/python/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/python/README -------------------------------------------------------------------------------- /tools/liblinear-1.96/python/liblinear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/python/liblinear.py -------------------------------------------------------------------------------- /tools/liblinear-1.96/python/liblinear.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/python/liblinear.pyc -------------------------------------------------------------------------------- /tools/liblinear-1.96/python/liblinearutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/python/liblinearutil.py -------------------------------------------------------------------------------- /tools/liblinear-1.96/python/liblinearutil.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/python/liblinearutil.pyc -------------------------------------------------------------------------------- /tools/liblinear-1.96/train: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/train -------------------------------------------------------------------------------- /tools/liblinear-1.96/train.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/train.c -------------------------------------------------------------------------------- /tools/liblinear-1.96/tron.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/tron.cpp -------------------------------------------------------------------------------- /tools/liblinear-1.96/tron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/tron.h -------------------------------------------------------------------------------- /tools/liblinear-1.96/tron.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/tron.o -------------------------------------------------------------------------------- /tools/liblinear-1.96/windows/liblinear.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/windows/liblinear.dll -------------------------------------------------------------------------------- /tools/liblinear-1.96/windows/libsvmread.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/windows/libsvmread.mexw64 -------------------------------------------------------------------------------- /tools/liblinear-1.96/windows/libsvmwrite.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/windows/libsvmwrite.mexw64 -------------------------------------------------------------------------------- /tools/liblinear-1.96/windows/predict.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/windows/predict.exe -------------------------------------------------------------------------------- /tools/liblinear-1.96/windows/predict.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/windows/predict.mexw64 -------------------------------------------------------------------------------- /tools/liblinear-1.96/windows/train.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/windows/train.exe -------------------------------------------------------------------------------- /tools/liblinear-1.96/windows/train.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/liblinear-1.96/windows/train.mexw64 -------------------------------------------------------------------------------- /tools/libsvm-3.20/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/COPYRIGHT -------------------------------------------------------------------------------- /tools/libsvm-3.20/FAQ.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/FAQ.html -------------------------------------------------------------------------------- /tools/libsvm-3.20/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/Makefile -------------------------------------------------------------------------------- /tools/libsvm-3.20/Makefile.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/Makefile.win -------------------------------------------------------------------------------- /tools/libsvm-3.20/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/README -------------------------------------------------------------------------------- /tools/libsvm-3.20/heart_scale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/heart_scale -------------------------------------------------------------------------------- /tools/libsvm-3.20/java/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/java/Makefile -------------------------------------------------------------------------------- /tools/libsvm-3.20/java/libsvm.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/java/libsvm.jar -------------------------------------------------------------------------------- /tools/libsvm-3.20/java/libsvm/svm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/java/libsvm/svm.java -------------------------------------------------------------------------------- /tools/libsvm-3.20/java/libsvm/svm.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/java/libsvm/svm.m4 -------------------------------------------------------------------------------- /tools/libsvm-3.20/java/libsvm/svm_model.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/java/libsvm/svm_model.java -------------------------------------------------------------------------------- /tools/libsvm-3.20/java/libsvm/svm_node.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/java/libsvm/svm_node.java -------------------------------------------------------------------------------- /tools/libsvm-3.20/java/libsvm/svm_parameter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/java/libsvm/svm_parameter.java -------------------------------------------------------------------------------- /tools/libsvm-3.20/java/libsvm/svm_print_interface.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/java/libsvm/svm_print_interface.java -------------------------------------------------------------------------------- /tools/libsvm-3.20/java/libsvm/svm_problem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/java/libsvm/svm_problem.java -------------------------------------------------------------------------------- /tools/libsvm-3.20/java/svm_predict.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/java/svm_predict.java -------------------------------------------------------------------------------- /tools/libsvm-3.20/java/svm_scale.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/java/svm_scale.java -------------------------------------------------------------------------------- /tools/libsvm-3.20/java/svm_toy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/java/svm_toy.java -------------------------------------------------------------------------------- /tools/libsvm-3.20/java/svm_train.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/java/svm_train.java -------------------------------------------------------------------------------- /tools/libsvm-3.20/java/test_applet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/java/test_applet.html -------------------------------------------------------------------------------- /tools/libsvm-3.20/libsvm.so.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/libsvm.so.2 -------------------------------------------------------------------------------- /tools/libsvm-3.20/matlab/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/matlab/Makefile -------------------------------------------------------------------------------- /tools/libsvm-3.20/matlab/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/matlab/README -------------------------------------------------------------------------------- /tools/libsvm-3.20/matlab/libsvmread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/matlab/libsvmread.c -------------------------------------------------------------------------------- /tools/libsvm-3.20/matlab/libsvmwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/matlab/libsvmwrite.c -------------------------------------------------------------------------------- /tools/libsvm-3.20/matlab/make.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/matlab/make.m -------------------------------------------------------------------------------- /tools/libsvm-3.20/matlab/svm_model_matlab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/matlab/svm_model_matlab.c -------------------------------------------------------------------------------- /tools/libsvm-3.20/matlab/svm_model_matlab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/matlab/svm_model_matlab.h -------------------------------------------------------------------------------- /tools/libsvm-3.20/matlab/svmpredict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/matlab/svmpredict.c -------------------------------------------------------------------------------- /tools/libsvm-3.20/matlab/svmtrain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/matlab/svmtrain.c -------------------------------------------------------------------------------- /tools/libsvm-3.20/python/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/python/Makefile -------------------------------------------------------------------------------- /tools/libsvm-3.20/python/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/python/README -------------------------------------------------------------------------------- /tools/libsvm-3.20/python/svm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/python/svm.py -------------------------------------------------------------------------------- /tools/libsvm-3.20/python/svm.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/python/svm.pyc -------------------------------------------------------------------------------- /tools/libsvm-3.20/python/svmutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/python/svmutil.py -------------------------------------------------------------------------------- /tools/libsvm-3.20/python/svmutil.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/python/svmutil.pyc -------------------------------------------------------------------------------- /tools/libsvm-3.20/svm-predict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/svm-predict -------------------------------------------------------------------------------- /tools/libsvm-3.20/svm-predict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/svm-predict.c -------------------------------------------------------------------------------- /tools/libsvm-3.20/svm-scale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/svm-scale -------------------------------------------------------------------------------- /tools/libsvm-3.20/svm-scale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/svm-scale.c -------------------------------------------------------------------------------- /tools/libsvm-3.20/svm-toy/gtk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/svm-toy/gtk/Makefile -------------------------------------------------------------------------------- /tools/libsvm-3.20/svm-toy/gtk/callbacks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/svm-toy/gtk/callbacks.cpp -------------------------------------------------------------------------------- /tools/libsvm-3.20/svm-toy/gtk/callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/svm-toy/gtk/callbacks.h -------------------------------------------------------------------------------- /tools/libsvm-3.20/svm-toy/gtk/interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/svm-toy/gtk/interface.c -------------------------------------------------------------------------------- /tools/libsvm-3.20/svm-toy/gtk/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/svm-toy/gtk/interface.h -------------------------------------------------------------------------------- /tools/libsvm-3.20/svm-toy/gtk/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/svm-toy/gtk/main.c -------------------------------------------------------------------------------- /tools/libsvm-3.20/svm-toy/gtk/svm-toy.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/svm-toy/gtk/svm-toy.glade -------------------------------------------------------------------------------- /tools/libsvm-3.20/svm-toy/qt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/svm-toy/qt/Makefile -------------------------------------------------------------------------------- /tools/libsvm-3.20/svm-toy/qt/svm-toy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/svm-toy/qt/svm-toy.cpp -------------------------------------------------------------------------------- /tools/libsvm-3.20/svm-toy/windows/svm-toy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/svm-toy/windows/svm-toy.cpp -------------------------------------------------------------------------------- /tools/libsvm-3.20/svm-train: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/svm-train -------------------------------------------------------------------------------- /tools/libsvm-3.20/svm-train.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/svm-train.c -------------------------------------------------------------------------------- /tools/libsvm-3.20/svm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/svm.cpp -------------------------------------------------------------------------------- /tools/libsvm-3.20/svm.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/svm.def -------------------------------------------------------------------------------- /tools/libsvm-3.20/svm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/svm.h -------------------------------------------------------------------------------- /tools/libsvm-3.20/svm.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/svm.o -------------------------------------------------------------------------------- /tools/libsvm-3.20/tools/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/tools/README -------------------------------------------------------------------------------- /tools/libsvm-3.20/tools/checkdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/tools/checkdata.py -------------------------------------------------------------------------------- /tools/libsvm-3.20/tools/easy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/tools/easy.py -------------------------------------------------------------------------------- /tools/libsvm-3.20/tools/grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/tools/grid.py -------------------------------------------------------------------------------- /tools/libsvm-3.20/tools/subset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/tools/subset.py -------------------------------------------------------------------------------- /tools/libsvm-3.20/windows/libsvm.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/windows/libsvm.dll -------------------------------------------------------------------------------- /tools/libsvm-3.20/windows/libsvmread.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/windows/libsvmread.mexw64 -------------------------------------------------------------------------------- /tools/libsvm-3.20/windows/libsvmwrite.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/windows/libsvmwrite.mexw64 -------------------------------------------------------------------------------- /tools/libsvm-3.20/windows/svm-predict.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/windows/svm-predict.exe -------------------------------------------------------------------------------- /tools/libsvm-3.20/windows/svm-scale.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/windows/svm-scale.exe -------------------------------------------------------------------------------- /tools/libsvm-3.20/windows/svm-toy.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/windows/svm-toy.exe -------------------------------------------------------------------------------- /tools/libsvm-3.20/windows/svm-train.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/windows/svm-train.exe -------------------------------------------------------------------------------- /tools/libsvm-3.20/windows/svmpredict.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/windows/svmpredict.mexw64 -------------------------------------------------------------------------------- /tools/libsvm-3.20/windows/svmtrain.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/libsvm-3.20/windows/svmtrain.mexw64 -------------------------------------------------------------------------------- /tools/protoToNpy/prototonpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tools/protoToNpy/prototonpy.py -------------------------------------------------------------------------------- /tutorials/data/MSRA9/010001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tutorials/data/MSRA9/010001.jpg -------------------------------------------------------------------------------- /tutorials/data/MSRA9/010002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tutorials/data/MSRA9/010002.jpg -------------------------------------------------------------------------------- /tutorials/data/MSRA9/010003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tutorials/data/MSRA9/010003.jpg -------------------------------------------------------------------------------- /tutorials/data/MSRA9/010004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tutorials/data/MSRA9/010004.jpg -------------------------------------------------------------------------------- /tutorials/data/MSRA9/010005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tutorials/data/MSRA9/010005.jpg -------------------------------------------------------------------------------- /tutorials/data/MSRA9/010006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tutorials/data/MSRA9/010006.jpg -------------------------------------------------------------------------------- /tutorials/data/MSRA9/010007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tutorials/data/MSRA9/010007.jpg -------------------------------------------------------------------------------- /tutorials/data/MSRA9/010008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tutorials/data/MSRA9/010008.jpg -------------------------------------------------------------------------------- /tutorials/data/MSRA9/010009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tutorials/data/MSRA9/010009.jpg -------------------------------------------------------------------------------- /tutorials/data/get_caffenet_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tutorials/data/get_caffenet_data.sh -------------------------------------------------------------------------------- /tutorials/data/get_cifar_10_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tutorials/data/get_cifar_10_data.sh -------------------------------------------------------------------------------- /tutorials/data/imagenet_mean.binaryproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tutorials/data/imagenet_mean.binaryproto -------------------------------------------------------------------------------- /tutorials/data/imagenet_mean.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tutorials/data/imagenet_mean.npy -------------------------------------------------------------------------------- /tutorials/data/preprocess_cifar_10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tutorials/data/preprocess_cifar_10.py -------------------------------------------------------------------------------- /tutorials/tutorial_1/tutorial_1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tutorials/tutorial_1/tutorial_1.sh -------------------------------------------------------------------------------- /tutorials/tutorial_10/calcLRN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tutorials/tutorial_10/calcLRN.py -------------------------------------------------------------------------------- /tutorials/tutorial_11/multiLabel/CreateText.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tutorials/tutorial_11/multiLabel/CreateText.py -------------------------------------------------------------------------------- /tutorials/tutorial_11/multiLabel/multiLabelFunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tutorials/tutorial_11/multiLabel/multiLabelFunc.py -------------------------------------------------------------------------------- /tutorials/tutorial_11/multiLabel/tutorial_11_multiLabel.sh: -------------------------------------------------------------------------------- 1 | python CreateText.py 2 | -------------------------------------------------------------------------------- /tutorials/tutorial_11/variableCrop/CreateText.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tutorials/tutorial_11/variableCrop/CreateText.py -------------------------------------------------------------------------------- /tutorials/tutorial_11/variableCrop/crops/010001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tutorials/tutorial_11/variableCrop/crops/010001.txt -------------------------------------------------------------------------------- /tutorials/tutorial_11/variableCrop/crops/010002.txt: -------------------------------------------------------------------------------- 1 | 340P05P02cK. -------------------------------------------------------------------------------- /tutorials/tutorial_11/variableCrop/crops/010003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tutorials/tutorial_11/variableCrop/crops/010003.txt -------------------------------------------------------------------------------- /tutorials/tutorial_11/variableCrop/tutorial_11_variableCrops.sh: -------------------------------------------------------------------------------- 1 | python CreateText.py 2 | -------------------------------------------------------------------------------- /tutorials/tutorial_11/variableCrop/variableCropFunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tutorials/tutorial_11/variableCrop/variableCropFunc.py -------------------------------------------------------------------------------- /tutorials/tutorial_3/cifar10_quick.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tutorials/tutorial_3/cifar10_quick.prototxt -------------------------------------------------------------------------------- /tutorials/tutorial_3/cifar10_quick_solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tutorials/tutorial_3/cifar10_quick_solver.prototxt -------------------------------------------------------------------------------- /tutorials/tutorial_3/cifar10_quick_train_test.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tutorials/tutorial_3/cifar10_quick_train_test.prototxt -------------------------------------------------------------------------------- /tutorials/tutorial_3/cifar_mean.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tutorials/tutorial_3/cifar_mean.npy -------------------------------------------------------------------------------- /tutorials/tutorial_3/tutorial_3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tutorials/tutorial_3/tutorial_3.sh -------------------------------------------------------------------------------- /tutorials/tutorial_6/caffenet_deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tutorials/tutorial_6/caffenet_deploy.prototxt -------------------------------------------------------------------------------- /tutorials/tutorial_6/tutorial_6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tutorials/tutorial_6/tutorial_6.sh -------------------------------------------------------------------------------- /tutorials/tutorial_8/cifar10_quick.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tutorials/tutorial_8/cifar10_quick.prototxt -------------------------------------------------------------------------------- /tutorials/tutorial_8/tutorial_8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tutorials/tutorial_8/tutorial_8.sh -------------------------------------------------------------------------------- /tutorials/tutorial_9/rParabolaFunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/val-iisc/expresso/HEAD/tutorials/tutorial_9/rParabolaFunc.py --------------------------------------------------------------------------------