Advertisement
thief_g

Source Code for Writeup

Jan 28th, 2022
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.14 KB | None | 0 0
  1. \documentclass[12pt, english, singlespacing, headsepline,]{article}
  2.  
  3. \usepackage[utf8]{inputenc}
  4. \usepackage[T1]{fontenc}
  5. \usepackage{latexsym, amssymb, amsmath, amsthm, lmodern, textcomp}
  6. \usepackage{breqn}
  7.  
  8. \begin{document}
  9.  
  10. %\begin{center}
  11. \includegraphics[width=\textwidth]{Images/Heading.png}
  12. %\end{center}
  13.  
  14. \noindent
  15.  
  16. %
  17. \begin{itemize}
  18. \item \textbf{Title of the Project: }{Fake News
  19. Detection System}
  20.  
  21. \item \textbf{Name of the Supervisor}:{ Dr. Deepak Kumar Singh}
  22.  
  23. \item \textbf{Abstract}:{Recently, fake news has been incurring many problems to our society. As a result, many researchers have been working on identifying fake news. Most of the fake news detection systems utilize the linguistic feature of the news. However, they have difficulty in sensing highly ambiguous fake news which can be detected only after identifying meaning and latest related information. In this paper, to resolve this problem, we shall present a new Korean fake news detection system using fact DB which is built and updated by human's direct judgement after collecting obvious facts. Our system receives a proposition, and search the semantically related articles from Fact DB in order to verify whether the given proposition is true or not by comparing the proposition with the related articles in fact DB. To achieve this, we utilize a deep learning model, Bidirectional Multi-Perspective Matching for Natural Language Sentence(BiMPM), which has demonstrated a good performance for the sentence matching task. However, BiMPM has some limitations in that the longer the length of the input sentence is, the lower its performance is, and it has difficulty in making an accurate judgement when an unlearned word or relation between words appear. In order to overcome the limitations, we shall propose a new matching technique which exploits article abstraction as well as entity matching set in addition to BiMPM. In our experiment, we shall show that our system improves the whole performance for fake news detection.}
  24.  
  25. \item \textbf{Learning Objectives}:
  26.  
  27. \begin{itemize}
  28. %\item \textit{What knowledge they acquire}:
  29. \item \textbf{\emph {Knowledge to Acquire}}:
  30.  
  31. \noindent
  32. {Machine Learning Algorithms:
  33. }
  34. \\*
  35. 1. Logistic Regression
  36. \\*
  37. 2. Support Vector Machine
  38. \\*
  39. 3. Multilayer Perceptron
  40. \\*
  41. 4. K-Nearest Neighbors (KNN)
  42.  
  43. %\item \textit{What skills they acquire}:
  44. \item \textbf{\emph {Skills to Acquire}}:
  45.  
  46. \noindent
  47. {1. Python
  48. \\*
  49. 2. Google Colab
  50. \\*
  51. 3. Git/GitHub
  52. \\*
  53. 4. Latex
  54.  
  55. }
  56. %\item \textit{What competences they acquire}:
  57. \item \textbf{\emph {Competences to Acquire}}:
  58.  
  59. \noindent
  60. {N/A}
  61.  
  62. \item \textbf{\emph {Attempting to solve any Research Problem?}}:
  63.  
  64. \noindent
  65. Yes
  66. \\*
  67.  
  68. \item \textbf{\emph {Overview of Research Problem/Project}}:
  69.  
  70. \end{itemize}
  71.  
  72. \item \textbf{Signature of all the students along with the signature of their supervisor}
  73. \end{itemize}
  74.  
  75. \noindent
  76. Date: \today
  77.  
  78.  
  79. \end{document}
  80.  
  81.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement