Dhyey Thumar

Results 20 comments of Dhyey Thumar

I think this might also happen when someone deletes the token from WhatsApp. I have also observed that even if you have the valid token WhatsApp web won't authenticate &...

Yes this won't work with apollo-server v3. On their docs it says: > Apollo Server 3 removes built-in support for subscriptions. **Check out their docs on how to setup the...

Hi @steelcracker, so I think one extra check is required before calling `context.prisma.link.create()` Such as: ```js const { userId } = context; if (userId === null) throw new Error("Not Authenticated");...

Hi @ak127a, I know this is already to late 😢, so are you are still looking for the explanation?

@bootsmann1995 You need to proxy 3rd party scripts, have a look at this https://partytown.builder.io/proxying-requests.

I found these Tensorflow issues useful: [Custom loss using intermediate tensorflow probability layer with Eager execution](https://github.com/tensorflow/tensorflow/issues/42825) [TF 2.0 'Tensor' object has no attribute 'numpy' while using .numpy() although eager execution...

Hi @gholmes829, Till now I didn't find any solution despite filing an issue on Tensorflow's repo. Here it is: [Custom loss function is not working](https://github.com/tensorflow/tensorflow/issues/43650) _**I am not sure but...

Yes this should also work, & I think this [**comment** ](https://github.com/tensorflow/tensorflow/issues/47311#issuecomment-824979138) might be helpful as well.

Also, one point I want to highlight. If I reduce the threshold to 0.4, then it will return "green" for "grean" query. But now the issue with this threshold is...

@leeoniya thanks for the suggestion will check this out.