-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add windows support for lstm-bayesian and time series transform…
…er, modify api calls for gemini usage.
- Loading branch information
1 parent
1015bc9
commit 029de86
Showing
17 changed files
with
1,535 additions
and
197 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
GEMINI_API_KEY = 'AIzaSyDVGTJsgu2T3vpF6ZndIu9vJqA1GMx4yBI |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,8 @@ venv/ | |
__pycache__/ | ||
.ipynb_checkpoints/ | ||
|
||
models/ | ||
|
||
logs/ | ||
|
||
data/__pycache__/ | ||
src/__pycache__/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
{ | ||
"num_layers": 2, | ||
"num_heads": 16, | ||
"num_layers": 2, | ||
"d_model": 64, | ||
"dim_feedforward": 192, | ||
"ff_dim": 128, | ||
"learning_rate": 0.001, | ||
"dropout_rate": 0.1 | ||
"dropout_rate": 0.1, | ||
"dim_feedforward": 192 | ||
} |
Oops, something went wrong.