Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/getting-started/quick_start.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@
}
],
"source": [
"! cat DeePMD-kit_Tutorial/00.data/training_data/type.raw "
"! cat DeePMD-kit_Tutorial/00.data/training_data/type.raw"
]
},
{
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,7 @@ docstring-code-format = true
[tool.ruff.lint]
select = [
"E", # errors
"W", # warning
"F", # pyflakes
"D", # pydocstyle
"UP", # pyupgrade
Expand Down
2 changes: 1 addition & 1 deletion source/tests/pt/model/test_fitting_net.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def test_consistency(self):
).to(env.DEVICE)
for name, param in my_fn.named_parameters():
matched = re.match(
"filter_layers\.networks\.(\d).layers\.(\d)\.([a-z]+)", name
r"filter_layers\.networks\.(\d).layers\.(\d)\.([a-z]+)", name
)
key = None
if matched:
Expand Down