Ayush Patnaik
Ayush Patnaik
The cor function performs pearson rank correlation, which assumes that the datapoints are normally distributed. The corspearman performs the spearman rank correlation test, which doesn't assume any underlying distribution. The...
When I tried to compile the code, it showed: ``` ERROR: LoadError: syntax: invalid keyword argument syntax "A" ``` I have attempted to fix this, it now compiles. I apologise...
Hi, Any tips to deal with overfitting? Can we add dropouts? For example, in https://github.com/patrick-kidger/torchcde/blob/9ff6aba4738989dc5fe3aee86d45812c318f6231/example/time_series_classification.py#L37-L42 Can we add a dropout somewhere? I am new to NeuralCDEs, apologies if I am...
Hi, In datasets.py, are you making `age` a dynamic covariate, instead of just using the initial value? In that case, https://github.com/autonlab/auton-survival/blob/5dde465f7223601717abddc1d075e837707c403b/auton_survival/datasets.py#L132 should change to ```python age = data['age'] + data['year']...
Hi, Can you please share the exact package versions used for this project? Great project! Many thanks
I want to add automatic parameter selection for λ ```julia function cross_validate_spline(x, y, smoothing_parameter_grid, nfolds = length(X) -1) function my_cumsum(x) n = length(x) result = similar(x) result[1] = x[1] for...
Loess involves doing weighted least squares many times (at each vertex). The original implementation in Netlib, and the one in this package, use QR decomposition for this purpose. ```julia if...
Hi, I have a relatively large data cube of size `7014×7277×1×123`, and I want to write this as a netCDF file. I have a lot of space in memory, relative...
Hi, I am doing a project on nighttime lights. I am moving my code from Python to Julia. I had performed zonal statistics in a specific case in both Julia...
Need to cite the package, but there is no information on it.