Upload folder using huggingface_hub
Browse files- README.md +56 -0
- model.joblib +3 -0
- target_encoders.joblib +3 -0
- training_params.json +1 -0
README.md
ADDED
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
---
|
3 |
+
tags:
|
4 |
+
- autotrain
|
5 |
+
- tabular
|
6 |
+
- regression
|
7 |
+
- tabular-regression
|
8 |
+
datasets:
|
9 |
+
- Ammok/laptop_price_prediction
|
10 |
+
---
|
11 |
+
|
12 |
+
# Model Trained Using AutoTrain
|
13 |
+
|
14 |
+
- Problem type: Tabular regression
|
15 |
+
|
16 |
+
## Validation Metrics
|
17 |
+
|
18 |
+
- r2: 0.7067895702353126
|
19 |
+
- mse: 10324863219600.982
|
20 |
+
- mae: 1934271.3093846152
|
21 |
+
- rmse: 3213232.518757549
|
22 |
+
- rmsle: 0.2620544321124841
|
23 |
+
- loss: 3213232.518757549
|
24 |
+
|
25 |
+
## Best Params
|
26 |
+
|
27 |
+
- learning_rate: 0.032035042723876625
|
28 |
+
- reg_lambda: 2.018311481741709e-06
|
29 |
+
- reg_alpha: 0.026605527978495237
|
30 |
+
- subsample: 0.7597204784105835
|
31 |
+
- colsample_bytree: 0.9197387798773331
|
32 |
+
- max_depth: 9
|
33 |
+
- early_stopping_rounds: 477
|
34 |
+
- n_estimators: 20000
|
35 |
+
- eval_metric: rmse
|
36 |
+
|
37 |
+
## Usage
|
38 |
+
|
39 |
+
```python
|
40 |
+
import json
|
41 |
+
import joblib
|
42 |
+
import pandas as pd
|
43 |
+
|
44 |
+
model = joblib.load('model.joblib')
|
45 |
+
config = json.load(open('config.json'))
|
46 |
+
|
47 |
+
features = config['features']
|
48 |
+
|
49 |
+
# data = pd.read_csv("data.csv")
|
50 |
+
data = data[features]
|
51 |
+
|
52 |
+
predictions = model.predict(data) # or model.predict_proba(data)
|
53 |
+
|
54 |
+
# predictions can be converted to original labels using label_encoders.pkl
|
55 |
+
|
56 |
+
```
|
model.joblib
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ec613f82c93cf968014de8210433d7c452529b4b14e88c0f72d36fc9b1f9fd83
|
3 |
+
size 17339914
|
target_encoders.joblib
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:926248e52d1fa532c317e37da24ed652ae64110f8219cb5e061668bd3091f048
|
3 |
+
size 5
|
training_params.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"data_path": "Ammok/laptop_price_prediction", "model": "xgboost", "username": "hngrz", "seed": 42, "train_split": "train", "valid_split": "test", "project_name": "laptop-price-prediction-cl2", "push_to_hub": true, "id_column": "id", "target_columns": ["Price"], "repo_id": "hngrz/laptop-price-prediction-cl2", "categorical_columns": null, "numerical_columns": null, "task": "regression", "num_trials": 10, "time_limit": 600, "categorical_imputer": "most_frequent", "numerical_imputer": "median", "numeric_scaler": "robust"}
|