Skip to content
Snippets Groups Projects
Commit d1a9059a authored by Vladyslav Lubkovskyi's avatar Vladyslav Lubkovskyi
Browse files

final clean ups

parent b6cedfa0
No related branches found
No related tags found
No related merge requests found
# Intrusion Detection System with Machine Learning
## It is important to launch this project with the python virtual environment (.venv). If your python interpreter
```is not in the project order, please replace the variable python_executable in the file main.py with the path to your python interpreter.
## Packages needed to be installed:
- `scapy`
- `duckdb`
......
......@@ -8,6 +8,7 @@ import duckdb
sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), 'machine_learning_models')))
base_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
# Path to the Python executable in the virtual environment, please replace if it divers with your
python_executable = os.path.join(base_dir, ".venv", "Scripts", "python.exe")
from machine_learning_models import utilities as util
......@@ -21,8 +22,6 @@ df_train, df_test, model_name = util.import_data(
model_name=None
)
from machine_learning_models import random_forest
from matplotlib import pyplot as plt
from matplotlib.backends.backend_tkagg import FigureCanvasTkAgg
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment