Instructions to use Eakempreet/ATAS-models with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Keras
How to use Eakempreet/ATAS-models with Keras:
# Available backend options are: "jax", "torch", "tensorflow". import os os.environ["KERAS_BACKEND"] = "jax" import keras model = keras.saving.load_model("hf://Eakempreet/ATAS-models") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,39 @@
|
|
| 1 |
---
|
| 2 |
license: mit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
+
tags:
|
| 4 |
+
- computer-vision
|
| 5 |
+
- classification
|
| 6 |
+
- xgboost
|
| 7 |
+
- tensorflow
|
| 8 |
+
- military
|
| 9 |
+
- pipeline
|
| 10 |
---
|
| 11 |
+
|
| 12 |
+
# ATAS Model Weights
|
| 13 |
+
|
| 14 |
+
Three trained model files for the [ATAS (Aerial Threat Assessment System)](https://huggingface.co/spaces/Eakempreet/ATAS) pipeline.
|
| 15 |
+
|
| 16 |
+
## Models
|
| 17 |
+
|
| 18 |
+
### 1. Aircraft Classifier
|
| 19 |
+
- **File:** `aircraft_classifier/atas_final_fine_tuned_aircraft_classifier_model.keras`
|
| 20 |
+
- **Architecture:** EfficientNetV2-L + custom classification head
|
| 21 |
+
- **Dataset:** ~12k images, 101 aircraft classes
|
| 22 |
+
- **Top-1 Accuracy:** 78.08% | **Top-5 Accuracy:** 92.02%
|
| 23 |
+
|
| 24 |
+
### 2. ETA Regressor
|
| 25 |
+
- **File:** `eta/atas_final_eta_regressor_model.joblib`
|
| 26 |
+
- **Architecture:** XGBoost Regressor (Optuna-tuned, ~944 trials)
|
| 27 |
+
- **Task:** Predicts time-to-impact in seconds
|
| 28 |
+
- **R²:** 0.9939 | **MAE:** 0.4552s
|
| 29 |
+
|
| 30 |
+
### 3. Hit Classifier
|
| 31 |
+
- **File:** `hit/atas_final_hit_classifier_model.joblib`
|
| 32 |
+
- **Architecture:** XGBoost Classifier
|
| 33 |
+
- **Task:** Predicts missile hit probability after evasion
|
| 34 |
+
- **Recall:** 0.9966 | **F1:** 0.9968 | **ROC-AUC:** 0.9999
|
| 35 |
+
|
| 36 |
+
## Usage
|
| 37 |
+
|
| 38 |
+
These models are used together in the ATAS pipeline. See the live demo:
|
| 39 |
+
👉 [https://huggingface.co/spaces/Eakempreet/ATAS](https://huggingface.co/spaces/Eakempreet/ATAS)
|