dvorst
dvorst
Concerning the DSDF (RDDB) block Shouldn't "y2t" (line 331) use "y2" as input? Since y3t uses y3 as input (line 362) and y4t uses y4 as input (line 378) https://github.com/NoviceMAn-prog/MSRF-Net/blob/60e23734d94d340b9d89b64e7f9e2636b6f96c0f/model.py#L347...
Concerning the DSDF (RDDB) block Shouldn't the leaky ReLU of y1 use the output of the convolution (y1) as input instead of y? https://github.com/NoviceMAn-prog/MSRF-Net/blob/60e23734d94d340b9d89b64e7f9e2636b6f96c0f/model.py#L328-L329
Should the multiplication symbol after the S&E in Fig. 3 of the paper be omitted? Equation (5) of the paper does not contain this multiplication but it does contain a...
The following return line cannot be reached due to line 131 https://github.com/NoviceMAn-prog/MSRF-Net/blob/60e23734d94d340b9d89b64e7f9e2636b6f96c0f/model.py#L133
FutureWarning: iteritems is deprecated and will be removed in a future version. Use .items instead.
Using pandas v1.5.0 Getting warning: "FutureWarning: iteritems is deprecated and will be removed in a future version. Use .items instead." https://github.com/great-expectations/great_expectations/blob/85eed98305d4d741635459022b1e6eee7b4da370/great_expectations/core/util.py#L263
**Feature request** Add an option to have 2 spaces (instead of 1) before inline comments, similar to PEP 8 of Python (https://peps.python.org/pep-0008/#inline-comments). "evenBetterToml.formatter.alignComments": false "evenBetterToml.formatter.inlineCommentSpaces": 2
# Bug Description The code snippets shown assume that a Snowpark session is already created ## Pandas ``` from datetime import datetime def cv(*args): return [datetime.strptime(t, "%Y-%m-%d %H:%M:%S%z") for t...
Assuming a session is already created, the python code shown below results in the error: "Expression type does not match column data type, expecting TIMESTAMP_NTZ(9) but got TIMESTAMP_TZ(9)". ``` df...
## Expected behaviour: The following Python code ``` from logging import getLogger, INFO, FileHandler from snowflake.snowpark.session import Session from snowflake.snowpark.functions import col, count, to_date # set logger to info, and...
[DOCS]Fix specified java versions for spark 3.5 in `python/docs/source/getting_started/install.rst`
### What changes were proposed in this pull request? Documentation change: the JAVA versions mentioned on the getting_started page of PySpark 3.5 are corrected (https://spark.apache.org/docs/3.5.3/api/python/getting_started/install.html#dependencies). ### Why are the changes...