wandb-allennlp icon indicating copy to clipboard operation
wandb-allennlp copied to clipboard

Utilities and boilerplate code to use wandb with allennlp

Results 6 wandb-allennlp issues
Sort by recently updated
recently updated
newest added

Currently, `wandb.finish()` is called in the `on_end()` method of `wandb_allennlp` callback. This results in a truncated log on wandb.

enhancement

https://github.com/dhruvdcoder/wandb-allennlp/blob/d36d28775995483e4eb39f227635ff88be1beb1a/wandb_allennlp/allennlp_translator.py#L120 For example, a value `1e-5` will be parsed as a string "1e-5" instead of a float. Possible solutions: 1. Have a special regex to parse this before we parse...