Commit Graph

695 Commits

Author SHA1 Message Date
Brandon Amos 1d5491a1e8 Add @aaronnech's dataset.lua improvements for #132. 2016-05-07 20:25:27 -04:00
Brandon Amos 4c0522f651 Docker: Bump dependency version. Remove src.
For #133.
2016-05-06 11:13:19 -04:00
Brandon Amos 9c4fd0f976 Remove OpenCV and dlib source files for #133. 2016-05-06 11:11:58 -04:00
Brandon Amos ecfb83fdb0 Add building/pushing comment to opencv-dlib-torch. 2016-05-06 10:14:16 -04:00
Brandon Amos 60203bd45e Merge pull request #131 from bakwc/master
Added ability to skip images with many faces; fixed threshold type
2016-05-03 19:23:35 -04:00
Filipp Bakanov 30db42c2ba Fixed style-guide 2016-05-03 22:54:01 +03:00
Filipp Bakanov d18017a195 Added ability to skip images with more than one face; fixed threshold type 2016-05-03 22:15:57 +03:00
Brandon Amos 5b46a5fcb4 Fix typo. 2016-04-27 17:30:14 -04:00
Brandon Amos 8423c91364 Mention optnet is optional and only for DNN training.
#126
2016-04-19 14:43:24 -04:00
Brandon Amos b9f41dcb02 Merge pull request #126 from neuraldomi/master
Update setup.md
2016-04-19 14:41:11 -04:00
neuraldomi caaaee5be1 Update setup.md
added 'optnet'
2016-04-19 20:35:34 +02:00
Brandon Amos 88cd4af209
Website: Mention the parameter counts don't include batch normalization means and variances for #125. 2016-04-18 20:25:34 -04:00
Brandon Amos c677b1830c Docs: Mention LFW overlapping name removal. 2016-04-07 17:18:57 -04:00
Brandon Amos eba58604c9 Bump matplotlib dependency for 'style'.
https://groups.google.com/forum/#openface/vJFioAQaJo8
2016-04-06 10:44:51 -04:00
Brandon Amos 66efcb706b Model: Use opt.imgDim for retraining
\cc @melgor

Ideally I should have made imgDim part of the model.
This works for now, but users training will need to be
careful about this size.
2016-04-05 18:02:45 -04:00
Brandon Amos 98c42a057c Add LDA option to the classifier. 2016-04-03 15:36:58 -04:00
Brandon Amos 1b3b48f588 Load util before model for optimizeNet
\cc @melgor
2016-04-03 02:48:50 -04:00
Brandon Amos d3e0b7470a Correct OpenCV link. 2016-04-03 02:30:33 -04:00
Brandon Amos e284517234 Merge pull request #118 from melgor/optimMemory
Added optnet for reducing memory consumption
2016-04-01 14:42:15 -04:00
melgor 505c63f828 Added check if 'optnet' package is installed 2016-04-01 13:04:25 +02:00
Brandon Amos d901af1acd X->NAME 2016-03-31 21:42:11 -04:00
melgor 46798c97cc Change variable to local 2016-03-31 12:00:17 +02:00
melgor bf6a466484 Added optnet for reducing memory consumption 2016-03-30 23:21:13 +02:00
Brandon Amos 92c152faa3 Fix flake warnings. 2016-03-30 14:18:26 -04:00
Brandon Amos 8784e2d639 Add remove-lfw-names for #116. 2016-03-30 14:08:28 -04:00
Brandon Amos c45f58c4b1 Add luarocks install command. 2016-03-25 10:42:18 -04:00
Brandon Amos 82f463dd08 Torch dependencies: List cutorch. 2016-03-22 16:23:40 -04:00
Brandon Amos 2ce20d39e6 opencv-dlib-torch.Dockerfile: Add gm lib for Torch. 2016-03-19 23:03:07 -04:00
Brandon Amos 0cbeda3617 Dockerfile: Pull from the latest torch_2016.03.19 image. 2016-03-19 17:02:25 -04:00
Brandon Amos c5fc607bac opencv-dlib-torch.Dockerfile: Add software-properties-common for apt-add-repository. 2016-03-19 16:11:06 -04:00
Brandon Amos 6c43f6ba38 Training: Pass imgDim to batchRepresent. Add lfwDir option.
For #112.
2016-03-19 15:44:47 -04:00
Brandon Amos 2035eeb8a5 cls->clf 2016-03-18 16:19:08 -04:00
Brandon Amos 437603e45d Classification Demo: Fix typo and formatting. 2016-03-18 16:15:58 -04:00
Brandon Amos 3a5ce4e70a Add GMM option to the classification demo. 2016-03-18 15:26:40 -04:00
Brandon Amos cca19b4c6a Classification Demo: Output where classifier is saved to. 2016-03-18 14:53:33 -04:00
Brandon Amos b30d6d9461 Training Plotting code: Add minor gridlines. 2016-03-18 14:10:53 -04:00
Brandon Amos 02884dde26 Merge pull request #110 from melgor/clearState
Replace sanitize by clearState()
2016-03-17 14:07:27 -04:00
melgor bba911c802 Replace satitize by clearState() 2016-03-16 18:20:11 +01:00
Brandon Amos e7c574829d Merge pull request #108 from melgor/cudnn_convert
Replace nn_to_cudnn by cudnn.convert #106
2016-03-16 11:54:20 -04:00
Brandon Amos cada02629c TSNE: Update colorscheme. 2016-03-16 11:42:52 -04:00
Brandon Amos 8830e48b57 batch-represent: Handle edge case when a batch contains 1 image. 2016-03-16 11:17:15 -04:00
melgor 7d21caf004 Merge branch 'cudnn_convert' of https://github.com/melgor/openface into cudnn_convert
Conflicts:
	training/model.lua
	training/train.lua
2016-03-16 16:15:05 +01:00
melgor f63acb637e Replace nn_to_cudnn by cudnn.convert #106 2016-03-16 15:38:06 +01:00
Brandon Amos 6fd4ac8604 Training: Sample from all of a person's images.
This fixes a bug in the training code that caused
only the first (same) `nSamplesPerClass` images in each
class to be sampled every time rather than sampling
from all of the person's images.
2016-03-15 16:27:09 -04:00
Brandon Amos 2c3164c50d openface_server error message: Add bash login shell note for #105. 2016-03-12 15:12:09 -05:00
Brandon Amos 811fce8613 lfw-classification: Fix typo. 2016-03-11 18:32:22 -05:00
Brandon Amos e455a1c82e Update classification results with OpenBLAS. 2016-03-11 18:32:22 -05:00
Brandon Amos 71885041e7 Python library: Import everything in the root openface module. 2016-03-11 16:58:28 -05:00
Brandon Amos d6b9d16156 Docs: Reference prune-dataset after align-dlib. 2016-03-11 16:50:35 -05:00
Brandon Amos 6ab7a6bb4e lfw-classification: Update LFW path. 2016-03-11 15:33:35 -05:00