platform/upstream/caffeonacl.git
7 years agocheck leveldb iterator status for snappy format.
liyangguang [Fri, 16 Dec 2016 11:54:49 +0000 (11:54 +0000)]
check leveldb iterator status for snappy format.

7 years agoMerge pull request #5057 from Queuecumber/cuda-pascal-cmake
Evan Shelhamer [Fri, 2 Dec 2016 20:05:45 +0000 (12:05 -0800)]
Merge pull request #5057 from Queuecumber/cuda-pascal-cmake

[build] Add Pascal to all cuda architectures

7 years agoAdd Pascal to all cuda architectures
Max Ehrlich [Fri, 2 Dec 2016 15:13:50 +0000 (10:13 -0500)]
Add Pascal to all cuda architectures

The known gpu architectures were missing the Pascal sm_60 and sm_61 compute capabilities. When building for this GPU, but on a separate machine, like a CI server or inside a docker image, caffe would be built for at most capability sm_50 and crash when run on the Pascal GPU.

7 years agoMerge pull request #5038 from CDLuminate/fix-spelling
Jeff Donahue [Mon, 28 Nov 2016 03:22:37 +0000 (19:22 -0800)]
Merge pull request #5038 from CDLuminate/fix-spelling

Make lint happy (> 80 characters)

7 years agoAdd the missing period
Zhou Mo [Mon, 28 Nov 2016 02:17:25 +0000 (02:17 +0000)]
Add the missing period

7 years agoMake lint happy (> 80 characters)
Zhou Mo [Mon, 28 Nov 2016 01:20:58 +0000 (01:20 +0000)]
Make lint happy (> 80 characters)

7 years agoMerge pull request #5035 from CDLuminate/fix-spelling
Evan Shelhamer [Sun, 27 Nov 2016 09:26:47 +0000 (01:26 -0800)]
Merge pull request #5035 from CDLuminate/fix-spelling

fix many typos by using codespell

7 years agofix many typos by using codespell
Zhou Mo [Sun, 27 Nov 2016 09:13:42 +0000 (09:13 +0000)]
fix many typos by using codespell

7 years agoRevert "solver: check and set type to reconcile class and proto"
Evan Shelhamer [Fri, 25 Nov 2016 20:49:53 +0000 (12:49 -0800)]
Revert "solver: check and set type to reconcile class and proto"

as pointed out by #5028 this does not achieve what it intended, and
furthermore causes trouble with direct solver instantiation.

revert commit e52451de914312b80a83459cb160c2f72a5b4fea

7 years agoMerge pull request #5009 from shelhamer/solver-type-check
Evan Shelhamer [Tue, 22 Nov 2016 21:54:15 +0000 (13:54 -0800)]
Merge pull request #5009 from shelhamer/solver-type-check

Solver: check and set type to reconcile class and proto type

7 years agoMerge pull request #4998 from chenzeyuczy/master
Jeff Donahue [Tue, 22 Nov 2016 20:44:19 +0000 (12:44 -0800)]
Merge pull request #4998 from chenzeyuczy/master

Add missing spaces besides equal signs in batch_norm_layer.cpp

7 years agoChecks inside Xcode for latest OSX SDK (#4840)
Zylphrex [Mon, 21 Nov 2016 18:11:34 +0000 (13:11 -0500)]
Checks inside Xcode for latest OSX SDK (#4840)

OS X: build with latest SDK by default

7 years agosolver: check and set type to reconcile class and proto
Evan Shelhamer [Mon, 21 Nov 2016 17:35:57 +0000 (09:35 -0800)]
solver: check and set type to reconcile class and proto

the solver checks its proto type (SolverParameter.type) on
instantiation:

- if the proto type is unspecified it's set according to the class type
  `Solver::type()`
- if the proto type and class type conflict, the solver dies loudly

this helps avoid accidental instantiation of a different solver type
than intended when the solver def and class differ. guaranteed type
information in the SolverParameter will simplify multi-solver
coordination too.

7 years agoMerge pull request #4703 from cypof/avoid_missing_returns
Evan Shelhamer [Sat, 19 Nov 2016 00:29:35 +0000 (16:29 -0800)]
Merge pull request #4703 from cypof/avoid_missing_returns

Avoids missing return values during build

7 years agoMerge pull request #4979 from davidbrai/allow-parse_log-to-skip-lines
Evan Shelhamer [Fri, 18 Nov 2016 17:46:25 +0000 (09:46 -0800)]
Merge pull request #4979 from davidbrai/allow-parse_log-to-skip-lines

Support solver resumes in parse_log.py

7 years agoAdd missing spaces besides equal signs in batch_norm_layer.cpp
chenzy [Fri, 18 Nov 2016 02:28:13 +0000 (10:28 +0800)]
Add missing spaces besides equal signs in batch_norm_layer.cpp

7 years agoMerge pull request #4986 from shelhamer/sigce-ignore
Evan Shelhamer [Thu, 17 Nov 2016 22:50:47 +0000 (14:50 -0800)]
Merge pull request #4986 from shelhamer/sigce-ignore

Sigmoid Cross-Entropy Loss: ignore selected targets by `ignore_label`

7 years agosigmoid cross-entropy loss: normalize loss by different schemes
Evan Shelhamer [Thu, 17 Nov 2016 04:39:42 +0000 (20:39 -0800)]
sigmoid cross-entropy loss: normalize loss by different schemes

sig-ce loss handles all the same normalizations as the softmax loss;
refer to #3296 for more detail.

this preserves the default normalization for sig-ce loss: batch size.

7 years agoMerge pull request #4993 from shelhamer/bitfusion-ami
Evan Shelhamer [Wed, 16 Nov 2016 21:28:46 +0000 (13:28 -0800)]
Merge pull request #4993 from shelhamer/bitfusion-ami

docs: include installation pointer to AWS AMI

7 years agodocs: include AWS AMI pointer
Evan Shelhamer [Wed, 16 Nov 2016 21:26:37 +0000 (13:26 -0800)]
docs: include AWS AMI pointer

7 years agodocs: Guillaume Dumont is the Windows maintainer
Evan Shelhamer [Wed, 16 Nov 2016 21:15:06 +0000 (13:15 -0800)]
docs: Guillaume Dumont is the Windows maintainer

7 years agosigmoid cross-entropy loss: ignore selected targets by `ignore_label`
Evan Shelhamer [Tue, 15 Nov 2016 19:19:37 +0000 (11:19 -0800)]
sigmoid cross-entropy loss: ignore selected targets by `ignore_label`

sig-ce learns to ignore by zeroing out the loss/diff at targets equal to
the configured `ignore_label`.

n.b. as of now the loss/diff are not properly normalized when there are
ignored targets. sig-ce loss should adopt the same normalization options
as softmax loss.

7 years agosupport solver resumes in parse_log.py
davidbrai [Mon, 14 Nov 2016 20:10:27 +0000 (22:10 +0200)]
support solver resumes in parse_log.py

Currently parse_log.py skips all non timestamped lines
only once. When resuming a solver and appending to the
same log file, it creates more non timestamped log lines.
This change allows the script to silently skip those lines.

7 years agoMerge pull request #4971 from williford/docs-installation-add-quotes
Evan Shelhamer [Sat, 12 Nov 2016 16:11:26 +0000 (11:11 -0500)]
Merge pull request #4971 from williford/docs-installation-add-quotes

Put quotes around titles in YAML front matter of installation docs to remove errors

7 years agoPut quotes around titles in YAML front matter.
Jonathan R. Williford [Fri, 11 Nov 2016 07:38:14 +0000 (07:38 +0000)]
Put quotes around titles in YAML front matter.

The colon produces errors unless the title is in quotes. This causes the minor
issue of the HTML title not being set.

See:
https://github.com/jekyll/jekyll/issues/549

7 years agoMerge pull request #4914 from williford/issue_template
Evan Shelhamer [Thu, 3 Nov 2016 17:18:04 +0000 (10:18 -0700)]
Merge pull request #4914 from williford/issue_template

Add GitHub issue template to curb misuse

7 years agoAdd Github issue template to curb misuse.
Jonathan R. Williford [Fri, 28 Oct 2016 08:39:44 +0000 (10:39 +0200)]
Add Github issue template to curb misuse.

For information on Github issue templates, see:
https://github.com/blog/2111-issue-and-pull-request-templates

The template has been revised according to discussion with @shelhamer
and @willyd on pull request BVLC/caffe#4914.

7 years agoMerge pull request #4941 from karas84/caffe-pr
Jeff Donahue [Tue, 1 Nov 2016 17:36:28 +0000 (10:36 -0700)]
Merge pull request #4941 from karas84/caffe-pr

corrected typo in accuracy_layer.hpp: MaxTopBlos -> MaxTopBlobs

7 years agoMerge pull request #4937 from nihui/patch-1
Jeff Donahue [Tue, 1 Nov 2016 17:35:30 +0000 (10:35 -0700)]
Merge pull request #4937 from nihui/patch-1

add the missing star in comment

7 years agocorrected typo in accuracy_layer.hpp: MaxTopBlos -> MaxTopBlobs
baecchi [Tue, 1 Nov 2016 15:15:51 +0000 (16:15 +0100)]
corrected typo in accuracy_layer.hpp: MaxTopBlos -> MaxTopBlobs

7 years agoadd the missing star in comment
nihui [Tue, 1 Nov 2016 06:02:52 +0000 (14:02 +0800)]
add the missing star in comment

a trival commit which adds the missing star ;)

7 years agoMerge pull request #4908 from shelhamer/sigce-gpu
Evan Shelhamer [Thu, 27 Oct 2016 20:11:23 +0000 (13:11 -0700)]
Merge pull request #4908 from shelhamer/sigce-gpu

Sigmoid Cross-Entropy Loss: add GPU forward for full GPU mode speed-up

7 years agosigmoid cross-entropy loss: add GPU forward for full GPU mode
Evan Shelhamer [Thu, 27 Oct 2016 07:41:03 +0000 (00:41 -0700)]
sigmoid cross-entropy loss: add GPU forward for full GPU mode

close #3004

7 years agoMerge pull request #4813 from Shamanoid/patch-1
Evan Shelhamer [Wed, 5 Oct 2016 16:18:26 +0000 (09:18 -0700)]
Merge pull request #4813 from Shamanoid/patch-1

Fix: docs/yum_install.md glog broken link

7 years agoMerge pull request #4812 from wk910930/fix-typo
Evan Shelhamer [Wed, 5 Oct 2016 16:17:29 +0000 (09:17 -0700)]
Merge pull request #4812 from wk910930/fix-typo

fix typo in pascal_multilabel_datalayers.py

7 years agoFix: docs/yum_install.md glog broken link
Vincent [Wed, 5 Oct 2016 12:12:04 +0000 (13:12 +0100)]
Fix: docs/yum_install.md glog broken link

fixes the broken glog link in yum_install.md which is currently returning a 404.

7 years agofix typo in pascal_multilabel_datalayers.py
Kun Wang [Wed, 5 Oct 2016 10:59:07 +0000 (18:59 +0800)]
fix typo in pascal_multilabel_datalayers.py

7 years agoMerge pull request #4793 from cypof/cudnn_path
Evan Shelhamer [Tue, 4 Oct 2016 01:30:21 +0000 (18:30 -0700)]
Merge pull request #4793 from cypof/cudnn_path

NV changed path to cuDNN

7 years agoNV changed path to cudnn
Cyprien Noel [Sat, 1 Oct 2016 01:18:47 +0000 (18:18 -0700)]
NV changed path to cudnn

7 years agoMerge pull request #4785 from bwilbertz/slightly_relax_batch_norm_check
Evan Shelhamer [Fri, 30 Sep 2016 18:29:25 +0000 (11:29 -0700)]
Merge pull request #4785 from bwilbertz/slightly_relax_batch_norm_check

slightly relax batch norm check

7 years agoslightly relax batch norm check
Benedikt Wilbertz [Thu, 29 Sep 2016 19:55:58 +0000 (21:55 +0200)]
slightly relax batch norm check

7 years agoMerge pull request #4779 from shelhamer/ignore-visualstudio
Evan Shelhamer [Tue, 27 Sep 2016 23:14:43 +0000 (16:14 -0700)]
Merge pull request #4779 from shelhamer/ignore-visualstudio

Ignore Visual Studio Metadata

7 years agoIgnore Visual Studio Code files.
Ken Yu [Wed, 21 Sep 2016 08:19:17 +0000 (16:19 +0800)]
Ignore Visual Studio Code files.

7 years agoMerge pull request #4769 from lukeyeager/bvlc/travis-protobuf3-url
Evan Shelhamer [Sat, 24 Sep 2016 23:48:27 +0000 (19:48 -0400)]
Merge pull request #4769 from lukeyeager/bvlc/travis-protobuf3-url

[TravisCI] google/protobuf renamed the 3.0 branch

7 years ago[TravisCI] google/protobuf renamed the 3.0 branch
Luke Yeager [Fri, 23 Sep 2016 18:22:48 +0000 (11:22 -0700)]
[TravisCI] google/protobuf renamed the 3.0 branch

7 years agoMerge pull request #4600 from bwilbertz/fix_scale_layer
Jeff Donahue [Tue, 20 Sep 2016 19:04:49 +0000 (12:04 -0700)]
Merge pull request #4600 from bwilbertz/fix_scale_layer

fix layerSetUp of scale_layer to not add bias blob when already present

7 years agoMerge pull request #4704 from shelhamer/groom-batch-norm
Evan Shelhamer [Fri, 16 Sep 2016 18:51:23 +0000 (11:51 -0700)]
Merge pull request #4704 from shelhamer/groom-batch-norm

Batch Norm: Further Documentation and Simplified Definition

7 years agoMerge pull request #4728 from mlloreda/patch-1
Evan Shelhamer [Thu, 15 Sep 2016 22:58:08 +0000 (15:58 -0700)]
Merge pull request #4728 from mlloreda/patch-1

[examples] Fixed typos in examples/cpp_classification/readme

7 years agoFixed typos in examples/cpp_classification/readme
Miguel Lloreda [Thu, 15 Sep 2016 21:28:02 +0000 (17:28 -0400)]
Fixed typos in examples/cpp_classification/readme

7 years agobatch norm: auto-upgrade old layer definitions w/ param messages
Evan Shelhamer [Fri, 9 Sep 2016 23:49:31 +0000 (16:49 -0700)]
batch norm: auto-upgrade old layer definitions w/ param messages

automatically strip old batch norm layer definitions including `param`
messages. the batch norm layer used to require manually masking its
state from the solver by setting `param { lr_mult: 0 }` messages for
each of its statistics. this is now handled automatically by the layer.

7 years agobatch norm: hide statistics from solver, simplifying layer definition
Evan Shelhamer [Tue, 30 Aug 2016 06:42:58 +0000 (23:42 -0700)]
batch norm: hide statistics from solver, simplifying layer definition

batch norm statistics are not learnable parameters subject to solver
updates, so they must be shielded from the solver. `BatchNorm` layer now
masks its statistics for itself by zeroing parameter learning rates
instead of relying on the layer definition.

n.b. declaring `param`s for batch norm layers is no longer allowed.

7 years ago[docs] identify batch norm layer blobs
Evan Shelhamer [Sun, 28 Aug 2016 03:23:13 +0000 (20:23 -0700)]
[docs] identify batch norm layer blobs

7 years agoMerge pull request #4705 from shelhamer/ubuntu-cuda-version
Evan Shelhamer [Sat, 10 Sep 2016 05:10:39 +0000 (22:10 -0700)]
Merge pull request #4705 from shelhamer/ubuntu-cuda-version

Document that Ubuntu 16.04 Requires CUDA 8

7 years ago[docs] note CUDA 8 requirement for Ubuntu 16.04
Evan Shelhamer [Sat, 10 Sep 2016 02:46:41 +0000 (19:46 -0700)]
[docs] note CUDA 8 requirement for Ubuntu 16.04

7 years ago[docs] clarify handling of bias and scaling by BiasLayer, ScaleLayer
Evan Shelhamer [Sun, 28 Aug 2016 03:19:00 +0000 (20:19 -0700)]
[docs] clarify handling of bias and scaling by BiasLayer, ScaleLayer

A bias/scaling can be applied wherever desired by defining the
respective layers, and `ScaleLayer` can handle both as a memory
optimization.

7 years agoMerge pull request #4702 from cypof/timer_sync_on_read
Evan Shelhamer [Fri, 9 Sep 2016 23:24:14 +0000 (16:24 -0700)]
Merge pull request #4702 from cypof/timer_sync_on_read

Benchmarking should not impact perf until timer is read

7 years agoAvoids missing return values during build.
Cyprien Noel [Fri, 9 Sep 2016 19:57:09 +0000 (12:57 -0700)]
Avoids missing return values during build.

7 years agoBenchmarking should not impact perf until timer is read
Cyprien Noel [Fri, 9 Sep 2016 19:49:35 +0000 (12:49 -0700)]
Benchmarking should not impact perf until timer is read

7 years agofix layerSetUp of scale_layer to not add bias blob when already present
Benedikt Wilbertz [Fri, 12 Aug 2016 20:33:06 +0000 (22:33 +0200)]
fix layerSetUp of scale_layer to not add bias blob when already present

7 years agoMerge pull request #4647 from ClimbsRocks/patch-3
Jeff Donahue [Mon, 29 Aug 2016 22:41:25 +0000 (15:41 -0700)]
Merge pull request #4647 from ClimbsRocks/patch-3

changes "c++" to "C++" for consistency

7 years agoMerge pull request #4646 from ClimbsRocks/patch-2
Jeff Donahue [Mon, 29 Aug 2016 22:41:06 +0000 (15:41 -0700)]
Merge pull request #4646 from ClimbsRocks/patch-2

fixes typo- duplicate "a a"

7 years agoMerge pull request #4645 from ClimbsRocks/patch-1
Jeff Donahue [Mon, 29 Aug 2016 22:40:40 +0000 (15:40 -0700)]
Merge pull request #4645 from ClimbsRocks/patch-1

updates tense in docs

7 years agoMerge pull request #4655 from lukeyeager/bvlc/protobuf3-build-fix
Evan Shelhamer [Mon, 29 Aug 2016 19:54:33 +0000 (12:54 -0700)]
Merge pull request #4655 from lukeyeager/bvlc/protobuf3-build-fix

[TravisCI] build protobuf3 GA

7 years ago[TravisCI] - build protobuf3 GA
Luke Yeager [Mon, 29 Aug 2016 18:14:17 +0000 (11:14 -0700)]
[TravisCI] - build protobuf3 GA

7 years agochanges "c++" to "C++" for consistency
Preston Parry [Sun, 28 Aug 2016 21:42:57 +0000 (14:42 -0700)]
changes "c++" to "C++" for consistency

7 years agofixes typo- duplicate "a a"
Preston Parry [Sun, 28 Aug 2016 21:34:42 +0000 (14:34 -0700)]
fixes typo- duplicate "a a"

7 years agoupdates tense in docs
Preston Parry [Sun, 28 Aug 2016 21:32:41 +0000 (14:32 -0700)]
updates tense in docs

"could" seems to imply for some reason that something is blocking one from calling the registered layers. "can" lays out more directly that a user can choose to do this.

7 years agoMerge pull request #4589 from sungjunhong/master
Jon Long [Wed, 24 Aug 2016 18:41:22 +0000 (11:41 -0700)]
Merge pull request #4589 from sungjunhong/master

Correct a minor mistake in statements

7 years agoMerge pull request #4605 from shelhamer/osx-cudnn-dylib
Evan Shelhamer [Sat, 20 Aug 2016 06:18:36 +0000 (23:18 -0700)]
Merge pull request #4605 from shelhamer/osx-cudnn-dylib

[build] Help CMake Find cuDNN on OS X

7 years agomake cmake find cuDNN on Mac OS
Tianwei Shen [Mon, 25 Jul 2016 16:19:35 +0000 (00:19 +0800)]
make cmake find cuDNN on Mac OS

dylib instead of so on OS X

7 years agoMerge pull request #4604 from shelhamer/fix-elcap-blas
Evan Shelhamer [Thu, 18 Aug 2016 20:59:58 +0000 (13:59 -0700)]
Merge pull request #4604 from shelhamer/fix-elcap-blas

[build] make: set default BLAS include for OS X 10.11

7 years ago[build] set default BLAS include for OS X 10.11
Evan Shelhamer [Thu, 18 Aug 2016 18:03:42 +0000 (11:03 -0700)]
[build] set default BLAS include for OS X 10.11

the latest hunt for the ever-elusive vecLib/Accelerate

7 years agoMerge pull request #3272 from ixartz/master
Evan Shelhamer [Thu, 18 Aug 2016 17:42:33 +0000 (10:42 -0700)]
Merge pull request #3272 from ixartz/master

[cmake] OSX 10.10 (and more) use Accelerate Framework instead of veclib

7 years agoMerge pull request #4247 from jklontz/master
Evan Shelhamer [Thu, 18 Aug 2016 17:40:10 +0000 (10:40 -0700)]
Merge pull request #4247 from jklontz/master

[cmake] Fix vecLib search order

7 years agoMerge pull request #4596 from keskarnitish/master
Evan Shelhamer [Tue, 16 Aug 2016 03:45:10 +0000 (20:45 -0700)]
Merge pull request #4596 from keskarnitish/master

[examples] fix comment typo In Sigmoid CIFAR-10 example

7 years agoFixing Typo In Sigmoid CIFAR-10 Examples
Nitish Keskar [Tue, 16 Aug 2016 00:47:34 +0000 (19:47 -0500)]
Fixing Typo In Sigmoid CIFAR-10 Examples

There was a mismatch between the iterations interval in the comment and the actual code.

7 years agoCorrect a mistake on math notation
Sungjun HONG [Sun, 14 Aug 2016 08:51:56 +0000 (17:51 +0900)]
Correct a mistake on math notation

7 years agoMerge pull request #4379 from alicanb/master
Jeff Donahue [Thu, 11 Aug 2016 22:04:47 +0000 (15:04 -0700)]
Merge pull request #4379 from alicanb/master

add default value to rms_decay and fix documentation

7 years agoMerge pull request #4559 from fyu/loss_reshape
Jeff Donahue [Sun, 7 Aug 2016 04:22:25 +0000 (21:22 -0700)]
Merge pull request #4559 from fyu/loss_reshape

Fix Label Shape Check in LossLayer::Reshape

7 years agonum in blob is deprecated
Fisher Yu [Sun, 7 Aug 2016 03:01:45 +0000 (23:01 -0400)]
num in blob is deprecated

7 years agoMerge pull request #4516 from intelfx/BVLC-work
Jon Long [Thu, 4 Aug 2016 01:25:56 +0000 (18:25 -0700)]
Merge pull request #4516 from intelfx/BVLC-work

CMake: link with ${HDF5_HL_LIBRARIES}

7 years agoMerge pull request #4523 from delftrobotics/cmake-atlas
Jon Long [Thu, 4 Aug 2016 01:22:18 +0000 (18:22 -0700)]
Merge pull request #4523 from delftrobotics/cmake-atlas

Fix search for Atlas on arch.

7 years agoFix search for Atlas on arch.
Hans Gaiser [Tue, 26 Jul 2016 09:44:44 +0000 (11:44 +0200)]
Fix search for Atlas on arch.

7 years agoCMake: link with ${HDF5_HL_LIBRARIES}
Ivan Shapovalov [Mon, 25 Jul 2016 06:01:24 +0000 (09:01 +0300)]
CMake: link with ${HDF5_HL_LIBRARIES}

Fixes issue #3224.

7 years agoMerge pull request #4474 from lukeyeager/bvlc/travis-cache
Jeff Donahue [Sat, 16 Jul 2016 00:45:53 +0000 (17:45 -0700)]
Merge pull request #4474 from lukeyeager/bvlc/travis-cache

Stop setting cache timeout in TravisCI

7 years agoStop setting cache timeout in TravisCI
Luke Yeager [Fri, 15 Jul 2016 21:12:01 +0000 (14:12 -0700)]
Stop setting cache timeout in TravisCI

It refers to the caching command timeout, not how long before the caches
expire as I had thought.

7 years agoMerge pull request #4459 from lukeyeager/bvlc/example-scripts
Jon Long [Thu, 14 Jul 2016 20:01:42 +0000 (13:01 -0700)]
Merge pull request #4459 from lukeyeager/bvlc/example-scripts

Add "set -e" and $@ to example scripts

7 years agoMerge pull request #4455 from ShaggO/spaceSupportILSVRC12MNIST
Jon Long [Thu, 14 Jul 2016 19:57:51 +0000 (12:57 -0700)]
Merge pull request #4455 from ShaggO/spaceSupportILSVRC12MNIST

Support spaces in path when downloading ILSVRC12 and MNIST

7 years agoAdd "set -e" and $@ to example scripts
Luke Yeager [Wed, 13 Jul 2016 22:58:29 +0000 (15:58 -0700)]
Add "set -e" and $@ to example scripts

7 years agoSupport spaces in path when downloading ILSVRC12 and MNIST
Malte Stær Nissen [Wed, 13 Jul 2016 09:17:54 +0000 (11:17 +0200)]
Support spaces in path when downloading ILSVRC12 and MNIST

7 years agoMerge pull request #4343 from nitnelave/python/top_names
Jon Long [Wed, 13 Jul 2016 08:19:32 +0000 (01:19 -0700)]
Merge pull request #4343 from nitnelave/python/top_names

improve top_names and bottom_names in pycaffe

7 years agoMerge pull request #4451 from ShaggO/cifar10space
Jon Long [Wed, 13 Jul 2016 07:04:50 +0000 (00:04 -0700)]
Merge pull request #4451 from ShaggO/cifar10space

Support for spaces in directories when downloading cifar10

7 years agoadd test for top/bottom names
Valentin Tolmer [Wed, 22 Jun 2016 00:17:05 +0000 (17:17 -0700)]
add test for top/bottom names

7 years agoimprove top_names and bottom_names in pycaffe
Valentin Tolmer [Tue, 21 Jun 2016 21:58:43 +0000 (14:58 -0700)]
improve top_names and bottom_names in pycaffe

7 years agoSupport for spaces in directories when downloading cifar10
Malte Stær Nissen [Tue, 12 Jul 2016 11:17:52 +0000 (13:17 +0200)]
Support for spaces in directories when downloading cifar10

7 years agoMerge pull request #4351 from nitnelave/python/set_random_seed
Evan Shelhamer [Mon, 11 Jul 2016 21:03:18 +0000 (14:03 -0700)]
Merge pull request #4351 from nitnelave/python/set_random_seed

[pycaffe] add set_random_seed to the python interface

7 years agoMerge pull request #4448 from lalelale/patch-2
Jeff Donahue [Mon, 11 Jul 2016 20:09:44 +0000 (10:09 -1000)]
Merge pull request #4448 from lalelale/patch-2

Fix comment error in parse_log.py

7 years agoUpdate parse_log.py
Alessandro Giusti [Mon, 11 Jul 2016 18:33:16 +0000 (20:33 +0200)]
Update parse_log.py

Aligned output description in docstring with actual output returned by parse_log

7 years agoadd set_random_seed to the python interface
Valentin Tolmer [Wed, 22 Jun 2016 22:13:54 +0000 (15:13 -0700)]
add set_random_seed to the python interface

7 years agoMerge pull request #4359 from ibmsoe/fix-EmbedLayerTest
Evan Shelhamer [Mon, 11 Jul 2016 16:32:45 +0000 (09:32 -0700)]
Merge pull request #4359 from ibmsoe/fix-EmbedLayerTest

fix equality check in EmbedLayer test