100rabhsah commited on
Commit
df91fab
·
1 Parent(s): 769dd6f

made changes to app.py and readme

Browse files
Files changed (2) hide show
  1. README.md +11 -0
  2. app.py +12 -0
README.md CHANGED
@@ -1,3 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
1
  # Hybrid Fake News Detection Model
2
 
3
  A hybrid deep learning model for fake news detection using BERT and BiLSTM with attention mechanism. This project was developed as part of the Data Mining Laboratory course under the guidance of Dr. Kirti Kumari.
 
1
+ ---
2
+ title: Fake News Detection
3
+ emoji: 📰
4
+ colorFrom: blue
5
+ colorTo: indigo
6
+ sdk: streamlit
7
+ sdk_version: "1.31.1"
8
+ app_file: app.py
9
+ pinned: false
10
+ ---
11
+
12
  # Hybrid Fake News Detection Model
13
 
14
  A hybrid deep learning model for fake news detection using BERT and BiLSTM with attention mechanism. This project was developed as part of the Data Mining Laboratory course under the guidance of Dr. Kirti Kumari.
app.py ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import sys
2
+ from pathlib import Path
3
+
4
+ # Add src directory to Python path
5
+ src_path = Path(__file__).parent / "src"
6
+ sys.path.append(str(src_path))
7
+
8
+ # Import and run the main app
9
+ from app import main
10
+
11
+ if __name__ == "__main__":
12
+ main()