adding formatting instructions to README

This commit is contained in:
Rajat Sen
2024-07-09 17:13:51 +00:00
parent 41929ba643
commit 954b7ff4ac
+16 -1
View File
@@ -164,4 +164,19 @@ forecast_df = tfm.forecast_on_df(
## Finetuning
We have provided an example of finetuning the model on a new dataset in `notebooks/finetuning.ipynb`.
We have provided an example of finetuning the model on a new dataset in `notebooks/finetuning.ipynb`.
## Contribution Style guide
If you would like to submit a PR please make sure that you use our formatting style. We use [yapf](https://github.com/google/yapf) for formatting with the following options,
```
[style]
based_on_style = google
# Add your custom style rules here
indent_width = 2
spaces_before_comment = 2
```
Please run `yapf --in-place --recursive <filename>` on all affected files.