replicate / keepsake

Version control for machine learning

Home Page:https://keepsake.ai

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Refactor CheckoutCheckpoint into separate experiment and checkpoint functions

bfirsh opened this issue · comments

CheckoutCheckpoint on the Project Go struct current serves two purposes:

  • Check out a checkpoint for Python API
  • Check out an experiment or checkpoint for CLI

There should be separate methods for checking out projects and checkpoints on Project. The business logic of choosing between an experiment and checkpoint, along with all the log output, should live in the CLI or somewhere else.

See also:

Follow-on of #408