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 RootCmd = &cobra.Command{ Use: "fml", Short: "A fast experiment tracking server compatible with MLFlow", Long: `FastTrackML is a rewrite of the MLFlow tracking server with a focus on scalability. It aims at being 100% compatible with the MLFlow client library and should be a drop-in replacement. It can even use existing SQLite/SQLCipher/PostgreSQL databases created by MLFlow 1.21+.`, 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.