├── .gitignore ├── README.md ├── __pycache__ ├── data.cpython-37.pyc ├── model.cpython-37.pyc ├── model_baseline.cpython-37.pyc ├── test.cpython-37.pyc └── train.cpython-37.pyc ├── data.py ├── fake-net.png ├── liar_dataset.zip ├── main.py ├── model.py ├── model_baseline.py ├── models ├── m-fake-net-num_classes-2-test_acc-0.633.pth.tar └── m-fake-net-num_classes-6-test_acc-0.249.pth.tar ├── predictions.txt ├── report.pdf ├── test.py ├── test.tsv ├── test2.tsv ├── train.py ├── train.tsv ├── train2.tsv ├── val2.tsv └── valid.tsv /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekagra-ranjan/fake-news-detection-LIAR-pytorch/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekagra-ranjan/fake-news-detection-LIAR-pytorch/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/data.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekagra-ranjan/fake-news-detection-LIAR-pytorch/HEAD/__pycache__/data.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/model.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekagra-ranjan/fake-news-detection-LIAR-pytorch/HEAD/__pycache__/model.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/model_baseline.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekagra-ranjan/fake-news-detection-LIAR-pytorch/HEAD/__pycache__/model_baseline.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/test.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekagra-ranjan/fake-news-detection-LIAR-pytorch/HEAD/__pycache__/test.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/train.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekagra-ranjan/fake-news-detection-LIAR-pytorch/HEAD/__pycache__/train.cpython-37.pyc -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekagra-ranjan/fake-news-detection-LIAR-pytorch/HEAD/data.py -------------------------------------------------------------------------------- /fake-net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekagra-ranjan/fake-news-detection-LIAR-pytorch/HEAD/fake-net.png -------------------------------------------------------------------------------- /liar_dataset.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekagra-ranjan/fake-news-detection-LIAR-pytorch/HEAD/liar_dataset.zip -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekagra-ranjan/fake-news-detection-LIAR-pytorch/HEAD/main.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekagra-ranjan/fake-news-detection-LIAR-pytorch/HEAD/model.py -------------------------------------------------------------------------------- /model_baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekagra-ranjan/fake-news-detection-LIAR-pytorch/HEAD/model_baseline.py -------------------------------------------------------------------------------- /models/m-fake-net-num_classes-2-test_acc-0.633.pth.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekagra-ranjan/fake-news-detection-LIAR-pytorch/HEAD/models/m-fake-net-num_classes-2-test_acc-0.633.pth.tar -------------------------------------------------------------------------------- /models/m-fake-net-num_classes-6-test_acc-0.249.pth.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekagra-ranjan/fake-news-detection-LIAR-pytorch/HEAD/models/m-fake-net-num_classes-6-test_acc-0.249.pth.tar -------------------------------------------------------------------------------- /predictions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekagra-ranjan/fake-news-detection-LIAR-pytorch/HEAD/predictions.txt -------------------------------------------------------------------------------- /report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekagra-ranjan/fake-news-detection-LIAR-pytorch/HEAD/report.pdf -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekagra-ranjan/fake-news-detection-LIAR-pytorch/HEAD/test.py -------------------------------------------------------------------------------- /test.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekagra-ranjan/fake-news-detection-LIAR-pytorch/HEAD/test.tsv -------------------------------------------------------------------------------- /test2.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekagra-ranjan/fake-news-detection-LIAR-pytorch/HEAD/test2.tsv -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekagra-ranjan/fake-news-detection-LIAR-pytorch/HEAD/train.py -------------------------------------------------------------------------------- /train.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekagra-ranjan/fake-news-detection-LIAR-pytorch/HEAD/train.tsv -------------------------------------------------------------------------------- /train2.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekagra-ranjan/fake-news-detection-LIAR-pytorch/HEAD/train2.tsv -------------------------------------------------------------------------------- /val2.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekagra-ranjan/fake-news-detection-LIAR-pytorch/HEAD/val2.tsv -------------------------------------------------------------------------------- /valid.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekagra-ranjan/fake-news-detection-LIAR-pytorch/HEAD/valid.tsv --------------------------------------------------------------------------------