- added shape to layer - changed construction of layer from Stack factory - fixed rms_error_accu scaling - RBM: added image display using opencv - improved Status print
24 lines
419 B
TOML
24 lines
419 B
TOML
requires = [
|
|
"setuptools>=61.0"
|
|
]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "pyRbm"
|
|
description = "Python Restricted Boltzmann Machine"
|
|
dynamic = ["version"]
|
|
requires-python = ">=3.12"
|
|
authors = [
|
|
{ name = "Jens Ahrensfeld" }
|
|
]
|
|
dependencies = [
|
|
"numpy",
|
|
"opencv-python",
|
|
"opencv-contrib-python"
|
|
]
|
|
readme = "README.md"
|
|
|
|
[tool.setuptools]
|
|
package-dir = {"" = "src"}
|
|
packages = ["rbm"]
|