Skip to content

Commit c17f6dc

Browse files
committed
fixes 3
1 parent 0347779 commit c17f6dc

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ Using the library
4242

4343
We have a number of models we are planning on releasing soon. [Please check our project board for more info](https://github.com/AIStream-Peelout/flow-forecast/projects/5)
4444

45+
4546
**Integrations**
4647

4748
[Google Cloud Platform](https://github.com/AIStream-Peelout/flow-forecast/wiki/Cloud-Provider-Integration)

flood_forecast/pytorch_training.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def train_transformer_style(
105105
:type takes_target: bool, optional
106106
:param forward_params: [description], defaults to {}
107107
:type forward_params: Dict, optional
108-
:param model_filepath: The file path to load modeel weights from, defaults to "model_save"
108+
:param model_filepath: The file path to load model weights from, defaults to "model_save"
109109
:type model_filepath: str, optional
110110
"""
111111
use_wandb = model.wandb

flood_forecast/trainer.py

+1
Original file line numberDiff line numberDiff line change
@@ -222,5 +222,6 @@ def main():
222222
train_function(training_config["model_type"], training_config)
223223
print("Process is now complete.")
224224

225+
225226
if __name__ == "__main__":
226227
main()

flood_forecast/transformer_xl/data_embedding.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ def forward(self, x):
151151

152152

153153
class TemporalEmbedding(nn.Module):
154-
def __init__(self, d_model, embed_type='fixed', lowest_level=4):
154+
def __init__(self, d_model: int, embed_type='fixed', lowest_level=4):
155155
"""A class to create.
156156
157157
:param d_model: The model embedding dimension

0 commit comments

Comments
 (0)