rcnn icon indicating copy to clipboard operation
rcnn copied to clipboard

Recurrent & convolutional neural network modules

Results 8 rcnn issues
Sort by recently updated
recently updated
newest added

Hi @taolei87 . I am running your sentiment classification code. I used the dataset that was specified in the description. However, I am getting this error. First, I ran the...

Hi. In the code/sentiment section, it is mentioned to run below command. However, there is only one `main.py` in the directory, there is no `model.py`. Does `main.py` does the job?...

In evaluating the rationale, the code prints values like what is shown below: rationale mser=0.0341 p[1]r=0.65 prec1=0.1381 prec2=0.1367 What is p[1]r, prec1 and prec2 here? Is it described somewhere?

Dear @taolei87 , As part of my thesis project I have replicated your work in question retrieval using Tensorflow. In your code you provide the loss for the training, as...

Some questions on data: - Is it a fair impression that each of the `reviewsx...` files, for beer reviews, is laid out as follows? ``` [look] [smell] [feel] [taste] [overall]...

eg: ``` fopen = gzip.open if path.endswith(".gz") else open with fopen(path) as fin: ``` python3 would need `'rt'`: ``` fopen = gzip.open if path.endswith(".gz") else open with fopen(path, 'rt') as...

Hey Tao, I am trying to implement your rationale model in pytorch right now and I keep running into the problem, that after a couple iterations **z** becomes all one's....