assemsabry commited on
Commit
b71e743
·
verified ·
1 Parent(s): 86af3f2

Update README.md

Browse files

---
license: mit
base_model: google/timesfm-2.0-500m-pytorch
tags:
- time-series-forecasting
- timesfm
- cloud-computing
- resource-forecasting
- anomaly-detection
datasets:
- arashgoshtasbi/cloud-workload-traces
metrics:
- mae
- rmse
library_name: timesfm
pipeline_tag: time-series-forecasting
---

# 🌩️ Cloud-Pre (500M) - Predictive Cloud Auto-scaling Model

**Cloud-Pre** is a specialized Time-Series Foundation Model (TSFM) built for the modern cloud era. It is finetuned on top of Google's highly advanced `google/timesfm-2.0-500m-pytorch` framework, explicitly designed to predict and forecast high-frequency cloud infrastructure metrics (CPU, RAM, and Network workloads).

## 🚀 Model Specs
- **Architecture:** Decoder-Only Transformer (TimesFM 2.0 Base).
- **Parameters:** 500 Million (500M).
- **Context Length:** 512 time-steps.
- **Horizon Length:** 128 time-steps.
- **Developer:** Assem Sabry.

## 🎯 Use Cases
This model was trained to help DevOps and Cloud Architects solve the problem of **Cloud Waste** and **Server Outages**:
1. **Proactive Auto-scaling:** Predict traffic/CPU spikes 1-2 hours before they occur, allowing infrastructure to scale up smoothly.
2. **Cost Optimization:** Forecast periods of absolute inactivity to shut down idle resources (EC2, VMs).
3. **Anomaly Detection:** Identify irregular patterns in server behavior by comparing live usage against Cloud-Pre's quantile forecasts.

## 💻 How to Use

First, clone the Google TimesFM original framework (Required for the patched decoder):
```bash
git clone https://github.com/google-research/timesfm.git
pip install -e timesfm/

Files changed (1) hide show
  1. README.md +16 -3
README.md CHANGED
@@ -1,3 +1,16 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ language:
4
+ - en
5
+ metrics:
6
+ - mae
7
+ base_model:
8
+ - google/timesfm-2.0-500m-pytorch
9
+ library_name: transformers
10
+ tags:
11
+ - timesfm
12
+ - cloud-computing
13
+ - resource-forecasting
14
+ - anomaly-detection
15
+ - finance
16
+ ---