File tree Expand file tree Collapse file tree 1 file changed +33
-56
lines changed
Expand file tree Collapse file tree 1 file changed +33
-56
lines changed Original file line number Diff line number Diff line change 1- [tool .poetry ]
2- name = " dynamic-neural-network-refinement"
3- version = " 0.2.0"
4- description = " Self-evolving neural networks that adapt in real-time based on data complexity"
5- authors = [
" Your Name <[email protected] >" ]
6- license = " MIT"
7- readme = " README.md"
8- packages = [{include = " src" }]
9-
10- [tool .poetry .dependencies ]
11- python = " ^3.9"
12- torch = " ^2.0.0"
13- numpy = " ^1.24.0"
14- pandas = " ^2.0.0"
15- scikit-learn = " ^1.0.0"
16- matplotlib = " ^3.7.0"
17- fastapi = " ^0.100.0"
18- uvicorn = " ^0.34.0"
19- streamlit = " ^1.28.0"
20- plotly = " ^6.0.0"
21- pyyaml = " ^6.0.1"
22- prometheus-client = " ^0.21.1"
23- watchdog = " ^6.0.0"
24- setuptools = " ^75.6.0"
25-
26- [tool .poetry .group .dev .dependencies ]
27- pytest = " ^7.4.0"
28- black = " ^23.7.0"
29- flake8 = " ^6.1.0"
30- isort = " ^5.12.0"
31- mypy = " ^1.5.0"
32- pytest-cov = " ^4.1.0"
33-
34- [build-system ]
35- requires = [" poetry-core" ]
36- build-backend = " poetry.core.masonry.api"
37-
38- [tool .black ]
39- line-length = 88
40- target-version = [' py39' ]
41- include = ' \.pyi?$'
42-
43- [tool .isort ]
44- profile = " black"
45- multi_line_output = 3
46-
47- [tool .mypy ]
48- python_version = " 3.9"
49- strict = true
50- warn_return_any = true
51- warn_unused_configs = true
52-
53- [tool .pytest .ini_options ]
54- testpaths = [" tests" ]
55- addopts = " --cov=src --cov-report=term-missing"
56- python_files = " test_*.py"
1+
2+ [tool .poetry ]
3+ name = " dynamic-neural-network"
4+ version = " 0.1.0"
5+ description = " A Dynamic Neural Network with complexity-based routing"
6+ authors = [
" Your Name <[email protected] >" ]
7+ packages = [{include = " src" }]
8+
9+ [tool .poetry .dependencies ]
10+ python = " ^3.12"
11+ torch = " ^2.1.0"
12+ numpy = " ^2.2.1"
13+ pandas = " ^2.1.0"
14+ matplotlib = " ^3.10.0"
15+ scikit-learn = " ^1.3.0"
16+ fastapi = " ^0.115.7"
17+ uvicorn = " ^0.34.0"
18+ streamlit = " ^1.28.0"
19+ plotly = " ^6.0.0"
20+ pyyaml = " ^6.0.1"
21+ prometheus-client = " ^0.21.1"
22+ watchdog = " ^6.0.0"
23+ setuptools = " ^75.6.0"
24+
25+ [tool .poetry .group .dev .dependencies ]
26+ pytest = " ^8.3.4"
27+ black = " ^25.1.0"
28+ flake8 = " ^7.1.2"
29+ mypy = " ^1.5.1"
30+
31+ [build-system ]
32+ requires = [" poetry-core>=1.0.0" ]
33+ build-backend = " poetry.core.masonry.api"
You can’t perform that action at this time.
0 commit comments