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

Expose SGDSolver to pycaffe #286

Merged
merged 7 commits into from
Apr 9, 2014
Merged

Expose SGDSolver to pycaffe #286

merged 7 commits into from
Apr 9, 2014

Commits on Apr 5, 2014

  1. Configuration menu
    Copy the full SHA
    9188c6b View commit details
    Browse the repository at this point in the history
  2. pycaffe: expose SGDSolver

    longjon committed Apr 5, 2014
    Configuration menu
    Copy the full SHA
    7823d66 View commit details
    Browse the repository at this point in the history
  3. make Solver::net return a shared_ptr rather than a raw pointer

    This makes it possible to manage the Net pointer externally (e.g., from
    the Python interface) using a shared_ptr. No existing code is affected.
    longjon committed Apr 5, 2014
    Configuration menu
    Copy the full SHA
    f43ac55 View commit details
    Browse the repository at this point in the history
  4. switch from inheritance to directly overriding methods for caffe.Net

    Also, internally drop the "Caffe" prefix for classes exported by the
    internal _caffe module. This change means that SGDSolver will
    automatically return a Net with the "nice" Python interface rather than
    the internal one, (and avoids the extra layer of method wrapping that
    results from switching to composition).
    longjon committed Apr 5, 2014
    Configuration menu
    Copy the full SHA
    a8a0191 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    2915f4b View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    8d44507 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    584abd3 View commit details
    Browse the repository at this point in the history