Views
No views yet
| File | Type | Target |
|---|---|---|
| rf_rsrp.pkl | Random Forest | RSRP |
| rf_rsrq.pkl | Random Forest | RSRQ |
| gpr_rsrp.pkl | Gaussian Process | RSRP |
| gpr_rsrq.pkl | Gaussian Process | RSRQ |
1import joblib
2import pandas as pd
3
4model = joblib.load("rf_rsrp.pkl")
5
6new_point = pd.DataFrame({
7 'latitude': [30.0000],
8 'longitude': [31.0000]
9})
10
11prediction = model.predict(new_point)
12print(f"RSRP: {prediction[0]:.2f}")