File tree Expand file tree Collapse file tree 2 files changed +15
-7
lines changed
Expand file tree Collapse file tree 2 files changed +15
-7
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ This version introduces a **refined adaptive training strategy with a constant p
3838You can install the latest version of EdgeTrain via pip:
3939
4040``` bash
41- pip install https://github.com/BradleyEdelman/EdgeTrain/releases/download/v0.2.0-alpha /edgetrain-0.2.0.tar.gz
41+ pip install https://github.com/BradleyEdelman/EdgeTrain/releases/download/v0.2.0/edgetrain-0.2.0.tar.gz
4242```
4343
4444Alternatively, clone the repository and install manually:
@@ -103,7 +103,7 @@ EdgeTrain/
103103│
104104├── .github/workflows/
105105│ ├── ci.yml
106- │ └──lint.yml
106+ │ └── lint.yml
107107│
108108├── .flake8
109109├── .gitignore
Original file line number Diff line number Diff line change 22
33setup (
44 name = "edgetrain" ,
5- version = "0.1.1-alpha " ,
5+ version = "0.2.0 " ,
66 packages = find_packages (),
77 install_requires = [
8- "tensorflow>=2.0.0" ,
98 "psutil>=5.0.0" ,
109 "GPUtil>=1.4.0" ,
1110 "matplotlib>=3.7.0" ,
1211 "pandas>=1.5.0" ,
13- "numpy>=1.24.0" ,
1412 "pynvml>=8.0.0" ,
15- "torch>=2.5.1" ,
13+ "tensorflow==2.12.0" ,
14+ "keras==2.12.0" ,
15+ "tensorflow-model-optimization==0.7.3" ,
16+ "jupyter" ,
1617 ],
1718 extras_require = {
1819 "dev" : [
19- "pytest" , # for testing
20+ "pytest" ,
21+ "pytest-cov" ,
22+ "pytest-mock" ,
23+ "pre-commit" ,
24+ "black" ,
25+ "black[jupyter]" ,
26+ "flake8" ,
27+ "isort" ,
2028 ]
2129 },
2230 description = "A utility for machine learning training with limited resources." ,
You can’t perform that action at this time.
0 commit comments