Skip to content

Latest commit

Β 

History

History
146 lines (144 loc) Β· 3.78 KB

folder-structure.md

File metadata and controls

146 lines (144 loc) Β· 3.78 KB
β”‚   .all-contributorsrc
β”‚   .gitattributes
β”‚   .gitignore
β”‚   CODE_OF_CONDUCT.md
β”‚   CONTRIBUTORS.md
β”‚   fake_news_dataset.md
β”‚   folder-structure.md
β”‚   LICENSE
β”‚   README.md
β”‚   reference.md
β”‚   requirements.txt
β”‚   setup.sh
β”‚   start-server.sh
β”‚   stop-server.sh
β”‚
β”œβ”€β”€β”€.github
β”‚       FUNDING.yml
β”‚
β”œβ”€β”€β”€Documentations
β”‚   β”œβ”€β”€β”€Project Presentation II
β”‚   β”‚       Group 19 Final year project presentation.pptx
β”‚   β”‚
β”‚   β”œβ”€β”€β”€Project-Presentation I
β”‚   β”‚       BE_Project_Presentation.pdf
β”‚   β”‚
β”‚   β”œβ”€β”€β”€SDD
β”‚   β”‚       FYP_SDD.docx
β”‚   β”‚
β”‚   β”œβ”€β”€β”€SPMP
β”‚   β”‚       FYP_SPMP.docx
β”‚   β”‚
β”‚   β”œβ”€β”€β”€SRS
β”‚   β”‚       SRS.docx
β”‚   β”‚
β”‚   β”œβ”€β”€β”€STD
β”‚   β”‚       FYP_STD.docx
β”‚   β”‚
β”‚   └───Synopsis-report
β”‚           Group19_BE_Project_Synopsis.docx
β”‚
β”‚
β”œβ”€β”€β”€Models
β”‚   β”œβ”€β”€β”€BERT_Fake_News_Classification
β”‚   β”‚   β”‚   Bert_inference.py
β”‚   β”‚   β”‚
β”‚   β”‚   β”œβ”€β”€β”€.model
β”‚   β”‚   β”‚   └───uncased_L-12_H-768_A-12
β”‚   β”‚   β”‚           bert_config.json
β”‚   β”‚   β”‚           bert_model.ckpt.data-00000-of-00001
β”‚   β”‚   β”‚           bert_model.ckpt.index
β”‚   β”‚   β”‚           bert_model.ckpt.meta
β”‚   β”‚   β”‚           vocab.txt
β”‚   β”‚   β”‚
β”‚   β”‚   β”œβ”€β”€β”€notebook
β”‚   β”‚   β”‚       Bert_model.ipynb
β”‚   β”‚   β”‚
β”‚   β”‚   └───pretrained_weights
β”‚   β”‚           bert_news.h5
β”‚   β”‚
β”‚   β”œβ”€β”€β”€Bidirectional_LSTM_Glove
β”‚   β”‚   β”‚   inference.py
β”‚   β”‚   β”‚   model_plot.png
β”‚   β”‚   β”‚
β”‚   β”‚   β”œβ”€β”€β”€checkpoint
β”‚   β”‚   β”‚       tokenizer.pickle
β”‚   β”‚   β”‚
β”‚   β”‚   β”œβ”€β”€β”€model
β”‚   β”‚   β”‚       Fake_News_Glove_Model.h5
β”‚   β”‚   β”‚
β”‚   β”‚   └───notebook
β”‚   β”‚           Fake_News_Detection_GloVe.ipynb
β”‚   β”‚
β”‚   β”œβ”€β”€β”€GPT2_Model
β”‚   β”‚   β”‚   gpt2-inference-model.py
β”‚   β”‚   β”‚
β”‚   β”‚   β”œβ”€β”€β”€model
β”‚   β”‚   β”‚       config.json
β”‚   β”‚   β”‚       merges.txt
β”‚   β”‚   β”‚       pytorch_model.bin
β”‚   β”‚   β”‚       special_tokens_map.json
β”‚   β”‚   β”‚       tokenizer_config.json
β”‚   β”‚   β”‚       vocab.json
β”‚   β”‚   β”‚
β”‚   β”‚   └───notebook
β”‚   β”‚           GPT2_model.ipynb
β”‚   β”‚
β”‚   └───Roberta_Model
β”‚       β”œβ”€β”€β”€model
β”‚       β”‚   β”‚   checkpoint-7500-epoch-5.zip
β”‚       β”‚   β”‚
β”‚       β”‚   └───checkpoint-7500-epoch-5
β”‚       β”‚           config.json
β”‚       β”‚           merges.txt
β”‚       β”‚           model_args.json
β”‚       β”‚           optimizer.pt
β”‚       β”‚           pytorch_model.bin
β”‚       β”‚           scheduler.pt
β”‚       β”‚           special_tokens_map.json
β”‚       β”‚           tokenizer_config.json
β”‚       β”‚           training_args.bin
β”‚       β”‚           vocab.json
β”‚       β”‚
β”‚       └───notebook
β”‚               Roberta_model.ipynb
β”‚
β”œβ”€β”€β”€Server-BERT
β”‚      bert-server.py
β”‚      BertInference.py
β”‚   
β”‚
β”œβ”€β”€β”€Server-GPT2
β”‚      gpt-server.py
β”‚      GPT2Inference.py
β”‚
β”œβ”€β”€β”€Server-LSTM
β”‚      biLSTMInference.py
β”‚      lstm-server.py
β”‚
β”œβ”€β”€β”€Server-ROBERT
β”‚      robert-server.py
β”‚      RobertInference.py
|
β”‚
└───src
    β”‚   app.py
    β”‚   fake_news_list.csv
    β”‚   Fake_news_site.csv
    β”‚   media_fn_scraper.py
    β”‚   model_service.py
    β”‚   url_utils.py
    β”‚
    β”œβ”€β”€β”€assets
    β”‚   └───images
    β”‚           fake-news.png
    β”‚           guy_with_laptop.jpg
    β”‚
    β”œβ”€β”€β”€json_local
        β”‚   categories.json
        β”‚   fake_news_sites.json
        β”‚
        └───opensources
                sources.json