File size: 2,594 Bytes
1ba31be
ca7f320
 
 
1ba31be
 
48ce45e
 
 
 
ca7f320
1ba31be
1b61a31
3d34bc6
24341a8
1b61a31
3d34bc6
24341a8
1b61a31
24341a8
 
 
 
 
 
 
 
 
 
 
 
 
 
1b61a31
24341a8
 
 
 
1b61a31
24341a8
 
 
 
 
 
cda1eff
24341a8
 
1b61a31
 
 
 
 
 
24341a8
 
1b61a31
 
 
 
 
 
 
 
 
 
 
 
48ce45e
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
---
language:
- ar
- en
license: mit
tags:
- regression
- random-forest
- prediction
- housing
pipeline_tag: graph-ml
---

# نموذج لتوقع أسعار الإيجار
# Random Forest Model for Predicting Rental Prices

هذا النموذج يستخدم خوارزمية  لتوقع أسعار قوائم الإيجار في مدينة نيويورك بناءً على مجموعة من الميزات.
# This model uses the **Random Forest** algorithm to predict rental prices for listings in New York City based on a set of features.

## المميزات
## Features
- **الميزات المدخلة:**
- **Input Features:**
  - `host_id`: معرف المضيف
  - `neighbourhood_group`: مجموعة الجوار
  - `neighbourhood`: الجوار
  - `room_type`: نوع الغرفة
  - `latitude`: خط العرض
  - `longitude`: خط الطول
  - `number_of_reviews`: عدد التقييمات
  - `calculated_host_listings_count`: عدد القوائم المحسوبة للمضيف
- **Target Variable:**
  - `price`: سعر الإيجار المتوقع

## كيفية الاستخدام
## How to Use
يمكنك استخدام واجهة برمجة التطبيقات الخاصة بـ Hugging Face لاستدعاء النموذج وإجراء التنبؤات. تأكد من إرسال البيانات بشكل صحيح وفقًا للميزات المدخلة.
You can use the Hugging Face API to call the model and make predictions. Make sure to send the data correctly according to the input features.

## قيود
## Limitations
- النموذج تم تدريبه على بيانات محدودة وقد لا يعكس الأسعار الدقيقة في جميع الحالات.
- The model was trained on limited data and may not reflect accurate prices in all cases.
- يمكن أن تتأثر الدقة بالعوامل الخارجية مثل تغير السوق.
- Accuracy may be affected by external factors such as market changes.

## مثال على الاستخدام
## Example of Use
```python
import requests

API_URL = "https://api-inference.huggingface.co/models/fahad1995/random_forest_model"
headers = {"Authorization": "Bearer YOUR_ACCESS_TOKEN"}

# البيانات المدخلة
# Input Data
data = {
    "host_id": 1234,
    "neighbourhood_group": "Manhattan",
    "neighbourhood": "Upper East Side",
    "room_type": "Entire home/apt",
    "latitude": 40.7753,
    "longitude": -73.9521,
    "number_of_reviews": 50,
    "calculated_host_listings_count": 2
}

response = requests.post(API_URL, headers=headers, json=data)
print(response.json())