Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgrading matlab interface by adding new methods to matlab class Net #4996

Closed
wants to merge 17 commits into from
Closed

upgrading matlab interface by adding new methods to matlab class Net #4996

wants to merge 17 commits into from

Commits on Sep 9, 2016

  1. Configuration menu
    Copy the full SHA
    50b5697 View commit details
    Browse the repository at this point in the history

Commits on Nov 14, 2016

  1. 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.
    davidbrai committed Nov 14, 2016
    Configuration menu
    Copy the full SHA
    aaf7b6b View commit details
    Browse the repository at this point in the history

Commits on Nov 15, 2016

  1. 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.
    shelhamer committed Nov 15, 2016
    Configuration menu
    Copy the full SHA
    c6ab965 View commit details
    Browse the repository at this point in the history

Commits on Nov 17, 2016

  1. 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.
    shelhamer committed Nov 17, 2016
    Configuration menu
    Copy the full SHA
    3d62e3c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    84b5bbf View commit details
    Browse the repository at this point in the history
  3. Merge pull request #4986 from shelhamer/sigce-ignore

    Sigmoid Cross-Entropy Loss: ignore selected targets by `ignore_label`
    shelhamer authored Nov 17, 2016
    Configuration menu
    Copy the full SHA
    28c135c View commit details
    Browse the repository at this point in the history

Commits on Nov 18, 2016

  1. Configuration menu
    Copy the full SHA
    2cf9dd3 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #4979 from davidbrai/allow-parse_log-to-skip-lines

    Support solver resumes in parse_log.py
    shelhamer authored Nov 18, 2016
    Configuration menu
    Copy the full SHA
    32c2ce6 View commit details
    Browse the repository at this point in the history

Commits on Nov 19, 2016

  1. Merge pull request #4703 from cypof/avoid_missing_returns

    Avoids missing return values during build
    shelhamer authored Nov 19, 2016
    Configuration menu
    Copy the full SHA
    473f143 View commit details
    Browse the repository at this point in the history

Commits on Nov 21, 2016

  1. 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.
    shelhamer committed Nov 21, 2016
    1 Configuration menu
    Copy the full SHA
    e52451d View commit details
    Browse the repository at this point in the history
  2. Checks inside Xcode for latest OSX SDK (#4840)

    OS X: build with latest SDK by default
    Zylphrex authored and shelhamer committed Nov 21, 2016
    Configuration menu
    Copy the full SHA
    48e73c7 View commit details
    Browse the repository at this point in the history

Commits on Nov 22, 2016

  1. Merge pull request #4998 from chenzeyuczy/master

    Add missing spaces besides equal signs in batch_norm_layer.cpp
    jeffdonahue authored Nov 22, 2016
    Configuration menu
    Copy the full SHA
    a60c4a4 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #5009 from shelhamer/solver-type-check

    Solver: check and set type to reconcile class and proto type
    shelhamer authored Nov 22, 2016
    Configuration menu
    Copy the full SHA
    a6c6533 View commit details
    Browse the repository at this point in the history

Commits on Nov 23, 2016

  1. Configuration menu
    Copy the full SHA
    fb61d2b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fcf9557 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    78cc8dd View commit details
    Browse the repository at this point in the history
  4. Merge branch 'matlab_interface' of https://github.com/yossibiton/caffe

    …into matlab_interface
    Yossi Biton committed Nov 23, 2016
    Configuration menu
    Copy the full SHA
    773d841 View commit details
    Browse the repository at this point in the history