包含内容: - 应用程序: temp-auto-editor (带货短视频自动化剪辑系统) - 项目: auto-editor, FableCut, footage_screener - 文档: 视频工作流, chatcut, latentdync - 配置: config.toml, .env - 技能: kimi-webbridge - MCP 包装器: gitea wrapper.js - 记忆文件: memories/*.md - 会话摘要: session_index.jsonl 备份日期: 2026-07-27 14:00:28
20 lines
412 B
Python
20 lines
412 B
Python
import sys
|
|
print(f"Python: {sys.version}")
|
|
|
|
try:
|
|
import tensorflow as tf
|
|
print(f"TensorFlow: {tf.__version__}")
|
|
except:
|
|
print("TensorFlow: Not installed")
|
|
|
|
try:
|
|
from transnetv2 import TransNetV2
|
|
print("TransNetV2: Installed")
|
|
|
|
# Try to create model
|
|
model = TransNetV2()
|
|
print("TransNetV2: Model loaded successfully!")
|
|
|
|
except Exception as e:
|
|
print(f"TransNetV2: {e}")
|