-
Notifications
You must be signed in to change notification settings - Fork 347
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
Documentation bugs #101
Comments
There is some incompatibility going on between the
|
^ the above issues I mentioned were resolved by adding Some references: |
We could consider switching to the trojanzoo_sphinx_theme which is forked off of pytorch_sphinx_theme but better maintained. |
If we do switch to trojanzoo_sphinx_theme, we'll be able to move |
I believe this is caused by sphinx-doc/sphinx#9395. We're using the correct settings in our autodoc_member_order = "bysource" However, Sphinx doesn't know where to locate the source code because we override |
There is an error in 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 |
Thanks for the catch / report @robmarkcole! This is one of the few things that isn't tested... Fixed in #434 |
I think we can close this issue. Most remaining issues are documented in the pytorch-sphinx-theme repo. I want to change this in #2006 |
This is a running list of bugs I've noticed in the documentation that need to be fixed.
requirements.txt
: Missing fonts pytorch/pytorch_sphinx_theme#143parameters
definedparameters
__getitem__
is showing up before__init__
because things are sorted alphabetically, we don't want this (Remove __module__ hacks #976)torchgeo.samplers.Units
: possible enum values not displayed (Remove __module__ hacks #976)torchgeo.datasets.RasterDataset
: class attributes not displayed (Remove __module__ hacks #976)The text was updated successfully, but these errors were encountered: