Amit Upreti

Results 13 issues of Amit Upreti

I see this is caused by the line no 83. ``` if 'proxy' in request.meta: if request.meta["exception"] is False: return ``` If we have used proxy in start requests function...

I cannot find anything in the docs to use my own proxy. I have an api that returns me bunch of proxies.

https://github.com/lukysummer/Movie-Review-Sentiment-Analysis-LSTM-Pytorch/blob/587d35c6cb16b5e096014dc26766a340c3cc0ca4/sentiment_analysis_LSTM.py#L88 ``` valid_x, valid_y = padded_features[:train_cutoff : valid_cutoff], encoded_labels[train_cutoff : valid_cutoff] print(len(valid_x),len(valid_y)) ``` Output ``` (1, 5000) ``` Instead, it should be ``` valid_x, valid_y = padded_features[train_cutoff : valid_cutoff], encoded_labels[train_cutoff...

https://github.com/lukysummer/Movie-Review-Sentiment-Analysis-LSTM-Pytorch/blob/master/sentiment_analysis_LSTM.py#L38 ``` encoded_reviews = [[vocab_to_int[word] for word in review] for review in all_reviews] ``` here the variable `review` is a string. so `[vocab_to_int[word] for word in review] ` would generate...

I was going through your code in detail. and trying to implement on my own sentiment analyzer. I noticed that you didn't use stemming. I was wondering why Great stuff...

https://github.com/lukysummer/Movie-Review-Sentiment-Analysis-LSTM-Pytorch/blob/master/sentiment_analysis_LSTM.py#L35 ``` word_list = sorted(word_counts, keys = word_counts.get, reverse = True) ``` should be ``` word_list = sorted(word_counts, key = word_counts.get, reverse = True) ```

## What? Here i have added a feature that will allow users to take the training from settings. User can choose from a list of available trainings and take the...

**Context** On Events, if the Event Host doesn't respond to participation request for whatever reason and the event ends, the participation requests will still be pending and the participations wont...

Context: We are breaking the PR https://github.com/MIT-LCP/physionet-build/pull/1967 into smaller PR(easy to review and work on). This branch is expected to merge on the 1967, not dev. This PR introduces the...

Closes https://github.com/MIT-LCP/physionet-build/issues/1996 **Background:** On PR https://github.com/MIT-LCP/physionet-build/pull/1986, we started to allow specific deployments of Physionet customize the theme of platform. This involved making the css styles, and static images configurable by...