praneeth232 commited on
Commit
f75a1ad
·
verified ·
1 Parent(s): 74881bb

Upload folder using huggingface_hub

Browse files
Files changed (3) hide show
  1. Dockerfile +16 -0
  2. app.py +69 -0
  3. requirements.txt +10 -0
Dockerfile ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.9-slim
2
+
3
+ # Set the working directory inside the container
4
+ WORKDIR /app
5
+
6
+ # Copy all files from the current directory to the container's working directory
7
+ COPY . .
8
+
9
+ # Install dependencies from the requirements file without using cache to reduce image size
10
+ RUN pip install --no-cache-dir --upgrade -r requirements.txt
11
+
12
+ # Define the command to start the application using Gunicorn with 4 worker processes
13
+ # - `-w 4`: Uses 4 worker processes for handling requests
14
+ # - `-b 0.0.0.0:7860`: Binds the server to port 7860 on all network interfaces
15
+ # - `app:app`: Runs the Flask app (assuming `app.py` contains the Flask instance named `app`)
16
+ CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0:7860", "app:boston_predictor_api"]
app.py ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import joblib
2
+ import pandas as pd
3
+ from flask import Flask, request, jsonify
4
+
5
+ # Initialize Flask app
6
+ house_price_api = Flask("Boston House Price Predictor")
7
+
8
+ # Load the trained Boston housing model
9
+ model = joblib.load("boston_housing_model_v1_0.joblib")
10
+
11
+ # Define a route for the home page
12
+ @house_price_api.get('/')
13
+ def home():
14
+ return "Welcome to the Boston House Price Prediction API!"
15
+
16
+ # Define an endpoint to predict price for a single house
17
+ @house_price_api.post('/v1/house')
18
+ def predict_house_price():
19
+ # Get JSON data from the request
20
+ house_data = request.get_json()
21
+
22
+ # Extract relevant house features from the input data
23
+ sample = {
24
+ 'CRIM': house_data['CRIM'],
25
+ 'ZN': house_data['ZN'],
26
+ 'INDUS': house_data['INDUS'],
27
+ 'CHAS': house_data['CHAS'],
28
+ 'NX': house_data['NX'], # should be NOX in your dataset, check consistency
29
+ 'RM': house_data['RM'],
30
+ 'AGE': house_data['AGE'],
31
+ 'DIS': house_data['DIS'],
32
+ 'RAD': house_data['RAD'],
33
+ 'TAX': house_data['TAX'],
34
+ 'PTRATIO': house_data['PTRATIO'],
35
+ 'LSTAT': house_data['LSTAT']
36
+ }
37
+
38
+ # Convert the extracted data into a DataFrame
39
+ input_data = pd.DataFrame([sample])
40
+
41
+ # Make a prediction using the trained model
42
+ prediction = model.predict(input_data).tolist()[0]
43
+
44
+ # Return the prediction as a JSON response
45
+ return jsonify({'Predicted_MEDV': prediction})
46
+
47
+ # Define an endpoint to predict price for a batch of houses
48
+ @house_price_api.post('/v1/housebatch')
49
+ def predict_house_batch():
50
+ # Get the uploaded CSV file from the request
51
+ file = request.files['file']
52
+
53
+ # Read the file into a DataFrame
54
+ input_data = pd.read_csv(file)
55
+
56
+ # Make predictions for the batch data
57
+ predictions = model.predict(input_data).tolist()
58
+
59
+ # Add predictions to the DataFrame
60
+ input_data['Predicted_MEDV'] = predictions
61
+
62
+ # Convert results to dictionary
63
+ result = input_data.to_dict(orient="records")
64
+
65
+ return jsonify(result)
66
+
67
+ # Run the Flask app in debug mode
68
+ if __name__ == '__main__':
69
+ house_price_api.run(debug=True)
requirements.txt ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ pandas==2.2.2
2
+ numpy==2.0.2
3
+ scikit-learn==1.6.1
4
+ xgboost==2.1.4
5
+ joblib==1.4.2
6
+ Werkzeug==2.2.2
7
+ flask==2.2.2
8
+ gunicorn==20.1.0
9
+ requests==2.28.1
10
+ uvicorn[standard]