- FakeNewsCorpus: about 10 million news articles classified using opensources.co types
- Image Verification Corpus: dataset of fake and real posts with images shared in social media (twitter for now).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // get file reference | |
| public File getOutputTextFile() { | |
| File docStorageDir = new File(Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOCUMENTS), "myFolder"); | |
| if (!docStorageDir.exists()) { | |
| if (!docStorageDir.mkdirs()) { | |
| return null; | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " Use vim settings, don't worry about vi compatibility | |
| set nocompatible | |
| " Line numbers | |
| set number | |
| set relativenumber | |
| " Tab and Indentation | |
| set tabstop=4 | |
| set expandtab | |
| set smarttab |