Cascade-LSTM It is a tree structure neural classifier for false information cascade detection , It is essentially a rumor ( Fake news ) Test model , It regards the rumor detection task as a tree classification problem .

  Cascade-LSTM In recurrent neural networks ( This article is based on TreeLSTM, Tree structured LSTM) On the basis of , Introduced a two-way TreeLSTM Structure to code the user characteristics of the propagation tree nodes by traversing from bottom to top and from top to bottom along the propagation tree structure .

In particular ,Cascade-LSTM First, traverse from leaf node to root node from bottom to top , Update node characteristics , Then traverse from root node to leaf node - Take the hidden state vector from bottom to top 、 The node feature and the implicit state vector of the parent node are the inputs , Update the node characteristics again , To encode the context dependency between nodes , To capture the propagation dynamics .

here ,Cascade-LSTM take The hidden state vector converging to the root node from bottom to top and The average of all root nodes traversed from top to bottom Implicit state vector as output . Besides ,Cascade-LSTM Added source text features ( Emotional characteristics of text ).

It is worth mentioning that ,TreeLSTM In essence, it can be regarded as GNN, and Cascade-LSTM Also similar , But their message aggregation is directional .

Cascade-LSTM: A Tree-Structured Neural Classifier for Detecting Misinformation Cascades(KDD20) More articles about

  1. [C3] Andrew Ng - Neural Networks and Deep Learning

    About this Course If you want to break into cutting-edge AI, this course will help you do so. Deep l ...

  2. ( turn )How Transformers Work --- The Neural Network used by Open AI and DeepMind

    How Transformers Work --- The Neural Network used by Open AI and DeepMind Original English Version l ...

  3. Introduction to debugging neural networks

    http://russellsstewart.com/notes/0.html The following advice is targeted at beginners to neural netw ...

  4. Paper Reading - Deep Captioning with Multimodal Recurrent Neural Networks ( m-RNN ) ( ICLR 2015 ) *

    Link of the Paper: https://arxiv.org/pdf/1412.6632.pdf Main Points: The authors propose a multimodal ...

  5. 《C-RNN-GAN: Continuous recurrent neural networks with adversarial training》 Paper notes

    Source :arXiv: Artificial Intelligence, 2016( It's been a year and I haven't won yet ?) Motivation Use GAN+RNN To deal with it continuous sequential data, ...

  6. cvpr2015papers

    @http://www-cs-faculty.stanford.edu/people/karpathy/cvpr2015papers/ CVPR 2015 papers (in nicer forma ...

  7. ICLR 2013 International Conference on Learning Representations Deep learning thesis papers

    ICLR 2013 International Conference on Learning Representations May 02 - 04, 2013, Scottsdale, Arizon ...

  8. Natural language processing resources NLP

    from :https://github.com/andrewt3000/DL4NLP Deep Learning for NLP resources State of the art resources ...

  9. When we are talking about kmeans(1)

    This is the first draft , It may be modified later : If reprinted , Be sure to keep the source address , Thank you very much ! Blog Garden :http://www.cnblogs.com/data-miner/ Simple books : Under construction ... You know : Under construction ... When we are talking about ...

  10. [Python] Machine learning library data summary

    Statement : The following is reproduced from the parallel universe . Python In the field of Scientific Computing , There are two important extension modules :Numpy and Scipy. among Numpy It's a use. python Implementation of scientific computing package . Include : A powerful N Dimensional array object Array: ...

Random recommendation

  1. Java Source code analysis LinkedList

    LinkedList And ArrayList Just opposite , The same is List Implementation class of , There are methods of adding, deleting, modifying and checking , But the implementation method is very different from the latter . To sum up LinkedList Contains API 1. Constructors : ①Linke ...

  2. ThinkPHP3.2 Connect and develop Alipay instant payment interface

    ThinkPHP3.2 Connect and develop Alipay instant payment interface Doing some shopping malls . Automatic card issuing website . Member points recharge . Gold coin recharge and other websites like this are all time , We may need to use the third-party payment interface . Whether TenPay . Alipay . UnionPay . PayPal . Yi Baojin ...

  3. 【 turn 】 Customize UITableViewCell Control cannot block callback didSelectRowAtIndexPath Solutions for

    Original website :http://blog.talisk.cn/blog/2015/09/01/uitableview-didselectrowatindexpath-cannot-be-called-tips ...

  4. new Option And usage

    op.sclassnumber.options.add(new  Option(secondMenuClassNumber[0]+":"+secondMenuText[0]),se ...

  5. uva:10700 - Camel trading( greedy )

    subject :10700 - Camel trading The main idea of the topic : Give some expressions , An expression consists of numbers and a plus sign multiplied by a sign , The range of numbers [1,20]. These expressions may be missing parentheses , Ask the maximum and minimum values that can be obtained by adding parentheses to this expression . ...

  6. plsql This machine does not install database to connect to remote database

    use PL/SQL Connect oracle database , Whether it's local or remote , It usually needs to be installed oracle client   How to achieve without installing oracle client , Can use again PL/SQL Tools ?     1. oracle The official website provides i ...

  7. Desktop computer 、 Notebook quick select startup item Boot Shortcut key

    When we install the system , Will set the computer to boot from the hard disk .U Disk start . The drive starts . The network card starts . There are two ways to set it : One is into BIOS Motherboard menu set boot order : The other is the shortcut selection startup item that I will introduce here . Here's what netizens sorted out ...

  8. canvas practice - round

    <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8&quo ...

  9. To determine if there is TrueType typeface

    function IsTrueTypeAvailable : bool;var {$IFDEF WIN32}  rs : TRasterizerStatus; {$ELSE}  rs : TRaste ...

  10. python Closures and decorators ( turn )

    One .python Closure 1. Nested Function >>> def func1(): ... print ('func1 running...') ... def func2(): ... prin ...