Skip to content

Commit

Permalink
fixing flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
beckynevin committed Oct 23, 2024
1 parent 0cd9d27 commit 0cd9988
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/scripts/DeepEnsemble.py
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,7 @@ def main():
print("model name is ", model_name)
print("dim is ", dim)
print("norm params", norm_params)
model_ensemble = train.train_DE(
train.train_DE(
trainDataLoader,
x_val,
y_val,
Expand Down
4 changes: 2 additions & 2 deletions src/scripts/DeepEvidentialRegression.py
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ def main():
data_type=dim,
)
print("model name is ", model_name)
model = train.train_DER(
train.train_DER(
trainDataLoader,
x_val,
y_val,
Expand Down Expand Up @@ -499,4 +499,4 @@ def main():


if __name__ == "__main__":
main()
main()

0 comments on commit 0cd9988

Please sign in to comment.