forked from dingo-actual/dropgrad
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0cc4599
commit 00eda17
Showing
7 changed files
with
126 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,9 +3,8 @@ requires = ["setuptools>=61.0", "wheel"] | |
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "dropgrad_dingo_actual" | ||
name = "dropgrad" | ||
version = "0.3.0" | ||
dependencies = ["torch", "torchvision", "matplotlib"] | ||
authors = [ | ||
{name = "Ryan Taylor", email = "[email protected]"}, | ||
{name = "Mudit Bhargava", email = "[email protected]"} | ||
|
@@ -14,22 +13,45 @@ maintainers = [ | |
{name = "Ryan Taylor", email = "[email protected]"}, | ||
{name = "Mudit Bhargava", email = "[email protected]"} | ||
] | ||
description = "A Torch implementation of DropGrad regularization for Federated Learning." | ||
description = "A PyTorch implementation of DropGrad regularization for Federated Learning." | ||
readme = "README.md" | ||
requires-python = ">=3.7" | ||
keywords = ["neural networks", "machine learning", "federated learning", "torch", "dropgrad"] | ||
license = {file = "LICENSE"} | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: MIT License", | ||
"Natural Language :: English", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Topic :: Scientific/Engineering", | ||
"Topic :: Scientific/Engineering :: Artificial Intelligence", | ||
"Operating System :: OS Independent" | ||
"Topic :: Software Development", | ||
"Topic :: Software Development :: Libraries", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
] | ||
dependencies = [ | ||
"numpy", | ||
"torch>=1.12.0", | ||
"torchvision>=0.13.0", | ||
"torchaudio>=0.12.0", | ||
"matplotlib", | ||
"scipy", | ||
] | ||
|
||
[project.urls] | ||
Repository = "https://github.com/muditbhargava66/dropgrad" | ||
Homepage = "https://github.com/muditbhargava66/dropgrad" | ||
Issues = "https://github.com/muditbhargava66/dropgrad/issues" | ||
Issues = "https://github.com/muditbhargava66/dropgrad/issues" | ||
|
||
[tool.setuptools] | ||
packages = ["dropgrad"] | ||
|
||
[tool.setuptools.package-data] | ||
dropgrad = ["*.py"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters