Arnab Sinha

Results 10 comments of Arnab Sinha

Thank you for the paper reference. I shall refer to it. Further, I have a few questions. 1. So the first choice pertains to cVAE-GAN and the second choice pertains...

> > > There are two choices: (1) predicts a vector z (2) predicts the mean and variance of multi-variate Gaussian, and sample the latent vector using the predicted mean/variance.,...

> > > You can download the data from here. > http://pannous.net/files/ > > In the above link you will get the all data with audio files. This link is...

The website http://pannous.net/files/ is not working. Is it supposed to be accessible globally? Can anyone guide me as to how to access the data? @pannous

> Hi there ! > > I come late to the battle but finally got the solution to the issue. > > ```python > explainer = shap.TreeExplainer(model) > shap_values =...

Yeah alright. I would need help in the HTML part though.

@HeroicHitesh Sorry for the delay.. let us continue with this issue.. Do you have any sources which I can refer to learn how to include Python codes in HTML? I...

When we want to print the ranklist consisting of various usernames, I could not get any method other than using a Python for loop inside the HTML code. But then...

`% for name, rank, score in people :` `` `{{name}}` `{{score}}` `{{rank}}` `` `% end` This is the part of the code from `Rankings.html` . First of all, there is...

1) `path = os.path.abspath(__file__)` What does `__file__` in the above line do? Also, I read that abspth() returns an absolutized version of pathname "path". What does absolutized mean? 2) `@app.route('/hello/')`...