File size: 536 Bytes
9d01257
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
---

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