-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathidleTree.txt
More file actions
24 lines (24 loc) · 1.42 KB
/
idleTree.txt
File metadata and controls
24 lines (24 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
PhishingDetection/ # Root directory for your project
│
├── data/ # Data directory
│ ├── training_data.csv # Training dataset
│ ├── testing_data.csv # Testing dataset
│
├── notebooks/ # Jupyter Notebook files
│ ├── data_preparation.ipynb # Notebook for data preprocessing
│ ├── model_training.ipynb # Notebook for model training
│ ├── model_evaluation.ipynb # Notebook for model evaluation
│ ├── model_inference.ipynb # Notebook for making predictions
│
├── src/ # Source code directory
│ ├── model.py # Python script for defining your ML model
│ ├── data_processing.py # Python script for data preprocessing
│ ├── evaluation.py # Python script for model evaluation
│ ├── inference.py # Python script for making predictions
│
├── saved_models/ # Directory to store your trained models
│ ├── model.pkl # Serialized trained model
│
├── requirements.txt # File specifying project dependencies
├── README.md # Project documentation
├── LICENSE # Project license information