question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Documentation bugs

See original GitHub issue

This is a running list of bugs I’ve noticed in the documentation that need to be fixed.

Issue Analytics

  • State:open
  • Created 2 years ago
  • Comments:7 (3 by maintainers)

github_iconTop GitHub Comments

1reaction
calebrob6commented, Feb 25, 2022

Thanks for the catch / report @robmarkcole! This is one of the few things that isn’t tested… Fixed in #434

1reaction
robmarkcolecommented, Feb 25, 2022

There is an error in trainers.ipynb. The csv is created with upper case column names (e.g. train_RMSE). Cell fixed below:

train_steps = []
train_rmse = []

val_steps = []
val_rmse = []
with open(os.path.join(experiment_dir, "tutorial_logs", "version_0", "metrics.csv"), "r") as f:
    csv_reader = csv.DictReader(f, delimiter=',')
    for i, row in enumerate(csv_reader):
        try:
            # train_rmse.append(float(row["train_rmse"]))
            train_rmse.append(float(row["train_RMSE"]))
            train_steps.append(i)
        except ValueError: # Ignore rows where train RMSE is empty 
            pass

        try:
            # val_rmse.append(float(row["val_rmse"]))
            val_rmse.append(float(row["val_RMSE"]))
            val_steps.append(i)
        except ValueError: # Ignore rows where val RMSE is empty
            pass
Read more comments on GitHub >

github_iconTop Results From Across the Web

Documentation bugs
Bug triaging is the process of reviewing new bugs, verifying whether a bug is valid or not, and gathering more information about it....
Read more >
Reporting Documentation Bugs - MariaDB Knowledge Base
This page contains general guidelines for the community for reporting documentation bugs. Known Bugs. First, check that the bug isn't already filed in...
Read more >
Common word bugs in software documentation and how to fix ...
Common word bugs in software documentation and how to fix them · Use Correct Words · Go forth and write docs.
Read more >
Dealing with Bugs — Python 3.11.1 documentation
It can be sometimes faster to fix bugs yourself and contribute patches to ... A list of documentation bugs that have been submitted...
Read more >
How to Write A Good Bug Report? Tips and Tricks
There is no doubt that your bug report should be a high-quality document. Focus on writing good bug reports and spend some time...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found