Spaces:
Sleeping
Sleeping
File size: 8,470 Bytes
187b79d 21396ef 05c42fc e1172ab 187b79d 05c42fc 21396ef 187b79d 21396ef 187b79d 21396ef 187b79d 0623b68 187b79d 21396ef 187b79d 21396ef 187b79d 21396ef 187b79d 21396ef 187b79d 21396ef 187b79d 21396ef 187b79d 21396ef 187b79d 21396ef | 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 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 | # from flask import Flask, request, jsonify
# from flask_cors import CORS
# import numpy as np
# import pandas as pd
# import joblib
# import requests
# import os
# import tensorflow as tf # Required for TFLite interpreter
# # URLs for hosted files
# # tflite_model_url = "https://drive.google.com/uc?id=1j5JU2xD2iwi5STzjH2gKILAbekiKWBkp&export=download"
# # scaler_url = "https://drive.google.com/uc?id=1Qu2ogpNw8MqPbstNpcEbO0oRDQ56qX5X&export=download"
# # label_encoder_url = "https://drive.google.com/uc?id=1qYi5agK5vDKc-k6UcaRt7yL9AFJ3O_7-&export=download"
# # Local file paths
# tflite_model_path = "motion_classification_model.tflite"
# scaler_path = "scaler.pkl"
# label_encoder_path = "label_encoder.pkl"
# # Function to download files if they don't exist locally
# # def download_file(url, local_path):
# # if not os.path.exists(local_path):
# # print(f"Downloading {local_path} from {url}...")
# # response = requests.get(url)
# # with open(local_path, 'wb') as file:
# # file.write(response.content)
# # print(f"Downloaded {local_path}")
# # Download required files
# # download_file(tflite_model_url, tflite_model_path)
# # download_file(scaler_url, scaler_path)
# # download_file(label_encoder_url, label_encoder_path)
# # Load the scaler and label encoder
# scaler = joblib.load(scaler_path)
# label_encoder = joblib.load(label_encoder_path)
# # Initialize the TFLite interpreter
# interpreter = tf.lite.Interpreter(model_path=tflite_model_path)
# interpreter.allocate_tensors()
# # Get input and output tensor details
# input_details = interpreter.get_input_details()
# output_details = interpreter.get_output_details()
# # Feature Columns
# feature_columns = ['AccX', 'AccY', 'AccZ', 'GyroX', 'GyroY', 'GyroZ']
# sequence_length = 50
# # Initialize Flask App
# app = Flask(__name__)
# CORS(app)
# @app.route('/')
# def home():
# return "Welcome to driving behavior analysis"
# # Define a route for the prediction function
# @app.route('/predict', methods=['POST'])
# def predict_behavior():
# try:
# # Get the data from the request
# data = request.json
# # Convert the data to a DataFrame
# df = pd.DataFrame(data)
# # Validate required columns
# if not all(col in df.columns for col in feature_columns):
# return jsonify({'error': 'Missing columns'}), 400
# # Scale the data
# df[feature_columns] = scaler.transform(df[feature_columns])
# # Create sequences
# sequences = []
# if len(df) >= sequence_length:
# # If enough data for full sequences
# for i in range(len(df) - sequence_length + 1):
# seq = df.iloc[i:i+sequence_length][feature_columns].values
# sequences.append(seq)
# else:
# # Pad the data if it's smaller than the sequence length
# padded_data = np.pad(
# df[feature_columns].values,
# ((sequence_length - len(df), 0), (0, 0)), # Pad missing rows
# mode='constant',
# constant_values=0
# )
# sequences.append(padded_data)
# # Convert to NumPy array
# X_input = np.array(sequences, dtype=np.float32)
# # Make predictions using TFLite model
# predictions = []
# for seq in X_input:
# # Prepare the input tensor
# interpreter.set_tensor(input_details[0]['index'], [seq])
# interpreter.invoke()
# # Get the output tensor
# output_data = interpreter.get_tensor(output_details[0]['index'])
# predictions.append(output_data)
# # Get predicted classes
# predicted_classes = np.argmax(predictions, axis=2).flatten()
# # Convert integers to class labels
# class_labels = label_encoder.inverse_transform(predicted_classes)
# # Calculate class frequencies
# unique_classes, counts = np.unique(class_labels, return_counts=True)
# max_count = np.max(counts)
# most_frequent_classes = unique_classes[counts == max_count]
# # Select the first class in case of ties
# most_frequent_class = most_frequent_classes[0] # Select the first class alphabetically
# # Return the predicted class labels and the most frequent class
# return jsonify({
# "predicted_classes": list(class_labels), # Full list of predictions
# "most_frequent_class": most_frequent_class
# })
# except Exception as e:
# return jsonify({'error': str(e)}), 500
# if __name__ == '__main__':
# app.run(host="0.0.0.0", port=7860)
from flask import Flask, request, jsonify
from flask_cors import CORS
import numpy as np
import pandas as pd
import joblib
import tensorflow as tf # Required for TFLite interpreter
# Local file paths
tflite_model_path = "motion_classification_model.tflite"
scaler_path = "scaler.pkl"
label_encoder_path = "label_encoder.pkl"
# Load the scaler and label encoder
scaler = joblib.load(scaler_path)
label_encoder = joblib.load(label_encoder_path)
# Initialize the TFLite interpreter
interpreter = tf.lite.Interpreter(model_path=tflite_model_path)
interpreter.allocate_tensors()
# Get input and output tensor details
input_details = interpreter.get_input_details()
output_details = interpreter.get_output_details()
# Feature Columns
feature_columns = ['AccX', 'AccY', 'AccZ', 'GyroX', 'GyroY', 'GyroZ']
sequence_length = 50
# Initialize Flask App
app = Flask(__name__)
CORS(app)
@app.route('/')
def home():
return "Welcome to driving behavior analysis API"
@app.route('/predict', methods=['POST'])
def predict_behavior():
try:
# Get data from the request
data = request.json
df = pd.DataFrame(data)
# Validate required columns
if not all(col in df.columns for col in feature_columns):
return jsonify({'error': 'Missing required sensor columns'}), 400
# Scale the data
df[feature_columns] = scaler.transform(df[feature_columns])
# Compute Jerk (Rate of Change of Acceleration)
df['JerkX'] = df['AccX'].diff().fillna(0)
df['JerkY'] = df['AccY'].diff().fillna(0)
df['JerkZ'] = df['AccZ'].diff().fillna(0)
# Identify Harsh Braking (Sudden drop in AccX)
harsh_braking_events = (df['JerkX'] < -3).sum() # Adjusted threshold from -5 to -3
# Identify Harsh Cornering (Sharp change in GyroZ)
harsh_cornering_events = (df['GyroZ'].diff().abs() > 1.8).sum() # Adjusted threshold from 30 to 1.5
# Create sequences for model input
sequences = []
if len(df) >= sequence_length:
for i in range(len(df) - sequence_length + 1):
seq = df.iloc[i:i+sequence_length][feature_columns].values
sequences.append(seq)
else:
# Pad if data is smaller than sequence length
padded_data = np.pad(
df[feature_columns].values,
((sequence_length - len(df), 0), (0, 0)),
mode='constant',
constant_values=0
)
sequences.append(padded_data)
# Convert to NumPy array
X_input = np.array(sequences, dtype=np.float32)
# Predict using TFLite model
predictions = []
for seq in X_input:
interpreter.set_tensor(input_details[0]['index'], [seq])
interpreter.invoke()
output_data = interpreter.get_tensor(output_details[0]['index'])
predictions.append(output_data)
# Get predicted classes
predicted_classes = np.argmax(predictions, axis=2).flatten()
class_labels = label_encoder.inverse_transform(predicted_classes)
# Find most frequent class
unique_classes, counts = np.unique(class_labels, return_counts=True)
most_frequent_class = unique_classes[np.argmax(counts)]
# Return results
return jsonify({
"predicted_classes": list(class_labels),
"most_frequent_class": most_frequent_class,
"harsh_braking_count": int(harsh_braking_events),
"harsh_cornering_count": int(harsh_cornering_events)
})
except Exception as e:
return jsonify({'error': str(e)}), 500
if __name__ == '__main__':
app.run(host="0.0.0.0", port=7860)
|