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
Copy file name to clipboardExpand all lines: .github/CONTRIBUTING.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -121,11 +121,11 @@ To build the documentation locally, simply execute the following commands from p
121
121
122
122
All added or edited code shall be the own original work of the particular contributor.
123
123
If you use some third-party implementation, all such blocks/functions/modules shall be properly referred and if possible also agreed by code's author. For example - `This code is inspired from http://...`.
124
-
In case you adding new dependencies, make sure that they are compatible with the actual PyTorch Lightning license (ie. dependencies should be _at least_ as permissive as the PyTorch Lightning license).
124
+
In case you are adding new dependencies, make sure that they are compatible with the actual PyTorch Lightning license (i.e. dependencies should be _at least_ as permissive as the PyTorch Lightning license).
125
125
126
126
### Coding Style
127
127
128
-
1. Use f-strings for output formation (except logging when we stay with lazy `logging.info("Hello %s!", name)`.
128
+
1. Use f-strings for output formation (except logging when we stay with lazy `logging.info("Hello %s!", name)`).
129
129
1. You can use [pre-commit](https://pre-commit.com/) to make sure your code style is correct.
130
130
131
131
### Documentation
@@ -234,9 +234,9 @@ Here are tutorials:
234
234
235
235
Here is the process to create a new test
236
236
237
-
-0. Optional: Follow tutorials!
238
-
-1. Find a file in tests/ which match what you want to test. If none, create one.
239
-
-2. Use this template to get started!
237
+
-0. Optional: Follow tutorials!
238
+
-1. Find a file in tests/ which matches what you want to test. If none, create one.
239
+
-2. Use this template to get started!
240
240
-3. Use **BoringModel and derivates to test out your code**.
0 commit comments