YAML Metadata Warning: empty or missing yaml metadata in repo card (https://huggingface.co/docs/hub/model-cards#model-card-metadata)

data-intelligence-management-domestic-production

Time series forecasting model for domestic production prediction.

Model details

  • Task: Time series forecasting
  • Architecture: LSTM-based model
  • Input: 5 time steps
  • Output: 5 future predictions

Usage with Hugging Face Inference API

import requests

API_URL = "https://api-inference.huggingface.co/models/data-intelligence-management-domestic-production"
headers = {"Authorization": "Bearer YOUR_API_TOKEN"}

def query(data):
    response = requests.post(API_URL, headers=headers, json={"inputs": data})
    return response.json()

# Example input: last 5 time steps
data = [10, 15, 20, 25, 30]
predictions = query(data)
print(predictions)  # Returns 5 future predictions
Downloads last month
1
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support