Jose

Results 37 comments of Jose

I had similar problems because I was using the PowerUser predefined role. The tutorial could also say that the AdministratorAccess predefined role is enough. And extra links to the official...

The problem is in the cookie manager, I was having similar issue and commented all the cookie logic of the library and it worked. The problem now is, well, you...

for librosa==0.10.1 you can fix this error by changing line 100 of audio.py to ``` return librosa.filters.mel(sr=hp.sample_rate, n_fft=hp.n_fft, n_mels=hp.num_mels, fmin=hp.fmin, fmax=hp.fmax) ``` You just need to specify the `sr=` and...

It is this [repo](https://github.com/Blealtan/efficient-kan/). It is mentioned at the end of the README. Similar to the [fourier](https://github.com/GistNoesis/FourierKAN/) and the [fused fourier](https://github.com/GistNoesis/FusedFourierKAN). And the MLP I used is by no means...

I have published it in [here](https://github.com/Jerry-Master/KAN-benchmarking.git).

Yes, please. I also have trouble converting. I have added an issue to torch in case it is something to fix: [128324](https://github.com/pytorch/pytorch/issues/128324).

Did not work, it now gives this error: ``` Error executing job with overrides: [] Traceback (most recent call last): File "test.py", line 40, in main trainer.test(model, testset, ckpt_path=checkpoint) File...

If you want a more detailed traceback I managed to trace the error to ``` grad = torch.autograd.grad( outputs=pnts_d, inputs=pnts_c, grad_outputs=d_out, create_graph=create_graph, retain_graph=True if i < num_dim - 1 else...

When rerunning training I get: ``` Error executing job with overrides: [] Traceback (most recent call last): File "train.py", line 39, in main trainer.fit(model, trainset, validset, ckpt_path=checkpoint) File "/home/user/anaconda3/envs/vid2avatar/lib/python3.7/site-packages/pytorch_lightning/trainer/trainer.py", line...

The repositories you mention do not seem to innovate much. In fact, the relu one is not even coded properly, it has an issue with multiple dimensions: [https://github.com/quiqi/relu_kan/issues/1](https://github.com/quiqi/relu_kan/issues/1) Nevertheless I...