Please how can I activate the tensorboard feature in OpenNMT.?
If you are in opennmt-py, use these options:
Use TensorboardX for visualization during training
group.add_argument('-tensorboard', action="store_true",
                   help="""Use tensorboardX for visualization during training.
                   Must have the library tensorboardX.""")
group.add_argument("-tensorboard_log_dir", type=str, default="runs",
                   help="Log directory for Tensorboard.")
              
              
              1 Like
            
            Great thanks
How can I use those options?
What did you try so far? The usage of these particular options appears simple.