mw66
mw66
https://github.com/atilaneves/dpp/issues/348 This is a related issue: in many dub packages from https://code.dlang.org/ the project dub.json it has flag "-dip25", however gdc does not recognize this: ``` gdc -dip25 ... d21:...
adding parentheses make gdc build: ``` { "cpuid" : "=a" (a), "=b" (b), "=c" (c), "=d" (d), : "a" (eax), "c" (ecx); } ```
From this https://github.com/jmfernandes/robin_stocks/issues/537#issuecomment-2849293304 May Try older version From apkmirror.
looks like it was an app issue.
Didn't receive the notification on phone again, with version 2025.43.6 Does anyone have the same problem?
you can calculate return from `get_all_option_positions()`
Didn't receive the notification on phone again, with version 2025.43.6 Does anyone have the same problem?
not sure from which keras version: lr => learning_rate now. change: `/lib/python3.9/site-packages/tcn/tcn.py", line 459, in get_opt` ``` return optimizers.Adam(lr=lr, clipnorm=1.) ``` to ``` return optimizers.Adam(learning_rate=lr, clipnorm=1.) ``` fixed it.
`learning_rate` / `lr` is the first arg of `Adam.__init__()`, so to work with both old & new keras, can just skip the named arg, just use: ``` return optimizers.Adam(lr, clipnorm=1.)...
@jlew92xx Could be similar to: https://github.com/jmfernandes/robin_stocks/pull/517 https://github.com/jmfernandes/robin_stocks/pull/525