motion_analyze / config_spaces.json
mikao007's picture
Upload 3 files
baff7c3 verified
raw
history blame contribute delete
808 Bytes
{
"models": {
"text_model": "distilbert-base-chinese",
"image_model": "mobilenet_v2",
"video_model": "slowfast",
"multimodal_model": "clip"
},
"analysis": {
"max_text_length": 256,
"max_image_size": 224,
"max_video_duration": 15,
"confidence_threshold": 0.5
},
"api": {
"openai_api_key": "",
"huggingface_token": "",
"google_api_key": ""
},
"storage": {
"temp_dir": "/tmp",
"output_dir": "/tmp/output",
"max_file_size": 10485760
},
"logging": {
"level": "INFO",
"format": "%(asctime)s - %(name)s - %(levelname)s - %(message)s"
},
"gradio": {
"server_name": "0.0.0.0",
"server_port": 7860,
"share": false,
"debug": false,
"show_error": true,
"quiet": false
}
}