Commit 91bfa09b authored by Almouhannad's avatar Almouhannad

Add algorithms

parent fb8fcf89
__pycache__/constants.cpython-311.pyc __pycache__/constants.cpython-311.pyc
data/bread_basket_preprocessed.csv
...@@ -2,4 +2,6 @@ class CONSTANTS: ...@@ -2,4 +2,6 @@ class CONSTANTS:
DATASET_PATH = 'data/bread_basket.csv' DATASET_PATH = 'data/bread_basket.csv'
DATASET_SHAPE = (20507, 5) DATASET_SHAPE = (20507, 5)
PREPROCESSED_DATASET_PATH = 'data/bread_basket_preprocessed.csv' PREPROCESSED_DATASET_PATH = 'data/bread_basket_preprocessed.csv'
PREPROCESSED_DATASET_SHAPE = (9465, 94) PREPROCESSED_DATASET_SHAPE = (9465, 94)
\ No newline at end of file MIN_SUPPORT_VALUE = 0.2 # Adjust this value based on problem
MIN_CONFIDENCE_VALUE = 0.5 # Adjust this value based on problem
\ No newline at end of file
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment