Permalink
Commits on May 12, 2017
Commits on Mar 31, 2017
  1. Revert "Fix Python net drawing script"

    This reverts commit db6cf0a.
    lukeyeager committed Mar 31, 2017
Commits on Sep 23, 2016
Commits on Aug 29, 2016
Commits on Jul 15, 2016
  1. Stop setting cache timeout in TravisCI

    It refers to the caching command timeout, not how long before the caches
    expire as I had thought.
    lukeyeager committed Jul 15, 2016
Commits on Jul 13, 2016
Commits on Jul 8, 2016
Commits on Jun 3, 2016
  1. Add level and stages to pycaffe

    Uses Boost.Python's pattern matching to differentiate between
    constructors
    Also adds Python tests for all-in-one nets
    lukeyeager committed Jun 1, 2016
  2. Add phase, level and stages to tools/caffe

    Adds command-line flags for phase, level and stage
    
    train -- override level and stages for test_state from solver
    test -- set level and stages
    time -- set phase, level and stages
    lukeyeager committed Jun 1, 2016
  3. Add level and stages to Net constructor

    This internal functionality will be exposed through the various
    interfaces in subsequent commits
    Also adds C++ tests for all-in-one nets
    lukeyeager committed Jun 1, 2016
Commits on Jun 1, 2016
Commits on May 25, 2016
Commits on May 24, 2016
  1. Overhaul TravisCI

    * Run on Ubuntu 14.04
    * Test cuDNN builds
    * Build with OpenBLAS
    
    NOTE: Python3 build only works with CMake
    lukeyeager committed May 24, 2016
Commits on May 9, 2016
Commits on Apr 20, 2016
  1. Don't set map_size=1TB in util/db_lmdb

    Instead, double the map size on the MDB_MAP_FULL exception.
    lukeyeager committed Feb 26, 2016
Commits on Apr 18, 2016
Commits on Feb 29, 2016
Commits on Jan 23, 2016
  1. Version 1.0.0-rc3

    lukeyeager committed Jan 22, 2016
Commits on Nov 18, 2015
Commits on Nov 3, 2015
  1. TravisCI: wget cmake with --no-check-certificate

    ```
    --2015-11-03 22:31:11--  http://www.cmake.org/files/v3.2/cmake-3.2.3-Linux-x86_64.sh
    Resolving www.cmake.org (www.cmake.org)... 66.194.253.19
    Connecting to www.cmake.org (www.cmake.org)|66.194.253.19|:80... connected.
    HTTP request sent, awaiting response... 301 Moved Permanently
    Location: http://cmake.org/files/v3.2/cmake-3.2.3-Linux-x86_64.sh [following]
    --2015-11-03 22:31:11--  http://cmake.org/files/v3.2/cmake-3.2.3-Linux-x86_64.sh
    Resolving cmake.org (cmake.org)... 66.194.253.19
    Connecting to cmake.org (cmake.org)|66.194.253.19|:80... connected.
    HTTP request sent, awaiting response... 301 Moved Permanently
    Location: https://cmake.org/files/v3.2/cmake-3.2.3-Linux-x86_64.sh [following]
    --2015-11-03 22:31:11--  https://cmake.org/files/v3.2/cmake-3.2.3-Linux-x86_64.sh
    Connecting to cmake.org (cmake.org)|66.194.253.19|:443... connected.
    ERROR: no certificate subject alternative name matches
            requested host name `cmake.org'.
    To connect to cmake.org insecurely, use `--no-check-certificate'.
    ```
    lukeyeager committed Nov 3, 2015
Commits on Oct 15, 2015
  1. Allow old-style shape in blobproto_to_array

    Fixes #3199
    Bug introduced in #3170
    lukeyeager committed Oct 15, 2015
Commits on Sep 28, 2015
  1. Install libs as non-executable files

    According to the Debian policy manual, "Shared libraries should not be
    installed executable, since the dynamic linker does not require this and
    trying to execute a shared library usually results in a core dump."
    
    https://www.debian.org/doc/debian-policy/ch-sharedlibs.html#s-sharedlibs-runtime
    lukeyeager committed Sep 28, 2015
Commits on Sep 25, 2015
  1. Add ALLOW_LMDB_NOLOCK build option

    This option lets you open LMDB files with the MDB_NOLOCK flag. You
    should not set this flag if you will be reading LMDBs with any
    possibility of simultaneous read and write.
    lukeyeager committed Sep 25, 2015
  2. Re-ordering some lines in build files

    Enforcing a consistent ordering - OpenCV, LevelDB, LMDB
    
    This will allow me to add the ALLOW_LMDB_NOLOCK option just after the
    USE_LMDB option, while keeping the IO dependency options together.
    lukeyeager committed Sep 25, 2015
Commits on Sep 24, 2015
Commits on Sep 2, 2015
Commits on Aug 20, 2015
  1. Expose LayerFactory::LayerTypeList in pycaffe

    Useful for validating NetParameters without crashing on SIGABRT
    lukeyeager committed Aug 14, 2015
Commits on Aug 3, 2015
  1. Change log levels in upgrade_proto

    It's not an error if the upgrade succeeds
    lukeyeager committed with lukeyeager Jun 10, 2015
Commits on Jul 8, 2015
  1. Fix CMake typos

    No functional changes, just fixing whitespace errors and typos in
    comments
    lukeyeager committed Jul 8, 2015