--- library_name: sklearn tags: - machine-learning - software - defect-prediction - multilabel --- # Software Defect Logistic Regression Logistic Regression model for multi-label software defect prediction. ## Usage ```python from huggingface_hub import hf_hub_download import joblib model_path = hf_hub_download( repo_id="Hamza142/software-defect-logistic", filename="logistic_regression.pkl" ) model = joblib.load(model_path) ``` Project: Machine Learning Assignment #3 - NUCES University