-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some metric tables are empty #716
Comments
Also see #688 (comment) |
This definitely looks like an issue with Weight & Biases, as I am able to list data from the API for those tables.
Here is the script I used to retrieve tables via the API: >>> import json
>>> import wandb
>>> run = api.run(f"moz-translations/da-en/9nmh995a")
>>> artifact = next(
>>> (artifact for artifact in list(run.files())[::-1] if artifact.name.startswith("media/table/flores_aug-mix_devtest_table")
>>> )
>>> json.load(artifact.download())
{'columns': ['Metric', 'Value'],
'data': [['bleu_detok', 49.15], ['chrf', 72.12], ['comet', 0.9006]]}
>>> run = api.run(f"moz-translations/da-en/0mnjufnk")
>>> artifact = next(
>>> (artifact for artifact in list(run.files())[::-1] if artifact.name.startswith("media/table/flores_devtest_table")
>>> )
>>> json.load(artifact.download())
{'columns': ['Metric', 'Value'],
'data': [['bleu_detok', 48.93], ['chrf', 72.16], ['comet', 0.9013]]} |
Ok, so to summarize we can see the values in the the artifact https://wandb.ai/moz-translations/da-en/artifacts/run_table/run-9nmh995a-flores_augmix_devtest_table/v0/files/flores_aug-mix_devtest_table.table.json but the table is empty in UI: |
@eu9ene unfortunately I still see some tables with "No rows to display" in your workspace (but I see it has been saved on 2024-08-09T21:32:05.000Z). Even with resetting cache or changing the web browser. |
I reported this and W&B team is working on the fix but there's no ETA yet. |
For example for https://wandb.ai/moz-translations/da-en
The text was updated successfully, but these errors were encountered: