Downloads · 30 days
0
Yukin3/TPnet-small
TPnet-small is a tabular classification model from Yukin3. Use it for the tabular classification task on the model card, and read the license before you ship it in a product. It is set up for keras. The card lists the license as mit.
TPnet-small is a lightweight deep neural network (DNN) designed to predict traffic congestion using tabular smart mobility features. It serves as a compact yet powerful alternative to tree-based models.
Downloads · 30 days
0
Access
Public
Updated Apr 30, 2025
Repo size
196 KB
Likes
0
Public
Click a slice to open those files.
.h5196 KB · 68%
From the Hugging Face model README
TPnet-small is a lightweight deep neural network (DNN) designed to predict traffic congestion using tabular smart mobility features. It serves as a compact yet powerful alternative to tree-based models.
High, Medium, Low)| Metric | Value |
|---|---|
| Accuracy | 94.5% |
| F1 Score | 0.944 |
| Parameters | 13,123 |
| Model Size | ~156 KB (.h5 format) |
Includes training trajectory and confusion matrix plots.
from tensorflow.keras.models import load_model
model = load_model("traffic_predictor_dnn.h5")
y_pred = model.predict(X_test) # X_test must be scaled [n_samples, 20]
Performance limited by small dataset size and feature coverage
Currently optimized for CPU inference, not edge deployment