Spaces:
Sleeping
Sleeping
Upload space_config.py with huggingface_hub
Browse files- space_config.py +18 -0
space_config.py
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Memo Space - Hugging Face Space Configuration
|
| 2 |
+
|
| 3 |
+
space_title = "Memo: Production-Grade Text-to-Video Generation"
|
| 4 |
+
space_id = "memo-text-to-video"
|
| 5 |
+
repo_type = "space"
|
| 6 |
+
sdk = "docker"
|
| 7 |
+
python_version = "3.11"
|
| 8 |
+
|
| 9 |
+
# Hardware requirements
|
| 10 |
+
hardware = "cpu-small" # or "cpu-basic" or "gpu-small" depending on model requirements
|
| 11 |
+
|
| 12 |
+
# Model configuration
|
| 13 |
+
model_id = "likhonsheikh/memo"
|
| 14 |
+
|
| 15 |
+
# Additional configuration
|
| 16 |
+
private = False
|
| 17 |
+
description = "Interactive text-to-video generation using production-grade Transformers + Safetensors"
|
| 18 |
+
tags = ["transformers", "safetensors", "text-to-video", "bangla", "production-grade"]
|