You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
It is not possible to disable logging through wandb and tensorflow. While tensorflow is silent, wandb requires interaction, so it is impossible to automate the script due to this problem. The only workaround I found is using WANDB_DISABLED=true when running the script.
Expected behavior
Since llm-compressor uses HfArgumentParser under hood, one would expect that passing report_to="none" to the oneshot(...) call would disable all logging. However, the problem is there, and when I run the script (more in the "To Reproduce" section), I get the following prompt from the console:
wandb: (1) Create a W&B account
wandb: (2) Use an existing W&B account
wandb: (3) Don't visualize my results
wandb: Enter your choice:
Describe the bug
It is not possible to disable logging through wandb and tensorflow. While tensorflow is silent, wandb requires interaction, so it is impossible to automate the script due to this problem. The only workaround I found is using
WANDB_DISABLED=true
when running the script.Expected behavior
Since llm-compressor uses
HfArgumentParser
under hood, one would expect that passingreport_to="none"
to theoneshot(...)
call would disable all logging. However, the problem is there, and when I run the script (more in the "To Reproduce" section), I get the following prompt from the console:Environment
To Reproduce
To reproduce the issue, use the following script, which is a modified version of the one in the README.md
The text was updated successfully, but these errors were encountered: