参数数量估算

🧮 参数数量估算

估算全连接层和卷积层的参数数量。

📐 计算公式与说明

全连接:params = in × out + out(bias)
卷积 3×3:params = in × out × 9 + out

用于快速估算模型规模。