scite icon indicating copy to clipboard operation
scite copied to clipboard

Code and data for paper 'Causality extraction based on self-attentive BiLSTM-CRF with transferred embeddings'

Results 6 scite issues
Sort by recently updated
recently updated
newest added

“w_filePath = 'data/index/index_w.pkl'" Excuse me, How can I get the missing documents?

Hi there, this is a great tool why you don't put it on hugging face? Cheers!

def _fetch_mask(self): mask = None if self._inbound_nodes: mask = self._inbound_nodes[0].input_masks[0] return mask I haven't found the corresponding function for the input_masks here. Is there anything that can be replaced?

Running the code "as-is" I see /content/ChainCRF.py in build(self, input_shape) 302 name='U', 303 regularizer=self.U_regularizer, --> 304 constraint=self.U_constraint) 305 306 self.b_start = self.add_weight((n_classes, ), TypeError: add_weight() got multiple values for argument...

https://github.com/Das-Boot/scite/blob/1e082be765810f40e37c328f452d5ded69b06fa8/models/tag2triplet.py#L205 For `record.append(([np.abs(e[0]-e[1]) for e in i], list(i)))`, I think the code should be like that: `record.append((sum([np.abs(e[0]-e[1]) for e in i]), list(i)))`

Hello, this project is great. I want to reproduce it now, but dependency conflicts are a big problem. Can you provide the requirements document?