Skip to content

Commit

Permalink
finish up tensorboard
Browse files Browse the repository at this point in the history
  • Loading branch information
bourdakos1 committed Jan 5, 2020
1 parent f9a7ba1 commit a85ac86
Showing 1 changed file with 7 additions and 14 deletions.
21 changes: 7 additions & 14 deletions cacli/cmd/tensorboard.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,22 +29,15 @@ import (
// tensorboardCmd represents the tensorboard command
var tensorboardCmd = &cobra.Command{
Use: "tensorboard <model-id>",
Short: "Comming soon",
Long: `Comming soon`,
Run: tensorboard.Run,
Short: "Start TensorBoard for a training run",
Long: `TensorBoard is a suite of web applications for inspecting and understanding
your TensorFlow runs and graphs. https://github.com/tensorflow/tensorboard.
Basic Example:
cacli tensorboard MODEL-ID`,
Run: tensorboard.Run,
}

func init() {
rootCmd.AddCommand(tensorboardCmd)
trainCmd.Flags().StringP("config", "c", "", "Optional config file")
trainCmd.Flags().BoolP("verbose", "v", true, "verbose output")
// Here you will define your flags and configuration settings.

// Cobra supports Persistent Flags which will work for this command
// and all subcommands, e.g.:
// tensorboardCmd.PersistentFlags().String("foo", "", "A help for foo")

// Cobra supports local flags which will only run when this command
// is called directly, e.g.:
// tensorboardCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle")
}

0 comments on commit a85ac86

Please sign in to comment.