Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var DecodeCmd = &cobra.Command{ Use: "decode", Short: "Decodes a binary Aim stream", Hidden: true, RunE: func(cmd *cobra.Command, args []string) error { f := os.Stdin if len(args) > 0 { var err error f, err = os.Open(args[0]) if err != nil { return err } defer f.Close() } data, err := encoding.Decode(f) if err != nil { return eris.Wrap(err, "error decoding binary AIM stream") } fmt.Printf("decoded Aim stream data: %+v", data) return nil }, }
View Source
var ImportCmd = &cobra.Command{
Use: "import",
Short: "Copies an input database to an output database",
Long: `The import command will transfer the contents of the input
database to the output database. Please make sure that the
FasttrackML server is not currently connected to the input
database.`,
RunE: importCmd,
}
View Source
var RootCmd = &cobra.Command{ Use: filepath.Base(os.Args[0]), Short: "Experiment tracking server focused on speed and scalability", Long: `FastTrackML is an experiment tracking server focused on speed and scalability. It aims at being 100% compatible with the MLFlow client library and should be a drop-in replacement.`, Version: version.Version, PersistentPreRunE: initCmd, SilenceUsage: true, SilenceErrors: true, }
View Source
var ServerCmd = &cobra.Command{
Use: "server",
Short: "Starts the tracking server",
RunE: serverCmd,
}
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.