File size: 599 Bytes
746d998
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[tool.poetry]
name = "mnist-streamlit"
version = "0.1.0"
description = "A small Streamlit project demoing a Keras-backed neural network trained on the MNIST dataset."
authors = ["jsulz <j.sulzdorf@gmail.com>"]
readme = "README.md"

[tool.poetry.dependencies]
python = "^3.12"
streamlit = "^1.35.0"
keras = "^3.3.3"
tensorflow = "^2.16.1"
streamlit-drawable-canvas = "^0.9.3"
pillow = "^10.3.0"
numpy = "^1.26.4"
matplotlib = "^3.9.0"
onnx = "^1.16.1"
onnxruntime = "^1.18.1"
scipy = "1.13.0"
autokeras = "^2.0.0"


[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"