Views
No views yet
host_id: معرف المضيفneighbourhood_group: مجموعة الجوارneighbourhood: الجوارroom_type: نوع الغرفةlatitude: خط العرضlongitude: خط الطولnumber_of_reviews: عدد التقييماتcalculated_host_listings_count: عدد القوائم المحسوبة للمضيفprice: سعر الإيجار المتوقع1import requests
2
3API_URL = "https://api-inference.huggingface.co/models/fahad1995/random_forest_model"
4headers = {"Authorization": "Bearer YOUR_ACCESS_TOKEN"}
5
6# البيانات المدخلة
7# Input Data
8data = {
9 "host_id": 1234,
10 "neighbourhood_group": "Manhattan",
11 "neighbourhood": "Upper East Side",
12 "room_type": "Entire home/apt",
13 "latitude": 40.7753,
14 "longitude": -73.9521,
15 "number_of_reviews": 50,
16 "calculated_host_listings_count": 2
17}
18
19response = requests.post(API_URL, headers=headers, json=data)
20print(response.json())