-
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
715c1ff
commit 9ac6ed4
Showing
4 changed files
with
5 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# simplemaml/__init__.py | ||
__all__ = ['maml'] | ||
from .maml import MAML | ||
__all__ = ['simplemaml'] | ||
from .simplemaml import MAML |
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 |
---|---|---|
|
@@ -8,14 +8,14 @@ | |
|
||
setup( | ||
name='simplemaml', | ||
version='1.0.3', | ||
version='1.0.5', | ||
description='A generic Python and Tensorflow function that implements a simple version of the "Model-Agnostic Meta-Learning (MAML) Algorithm for Fast Adaptation of Deep Networks" as designed by Chelsea Finn et al. 2017', | ||
long_description=long_description, | ||
long_description_content_type='text/markdown', | ||
author='Anas Neumann', | ||
author_email='[email protected]', | ||
url='https://github.com/AnasNeumann/simplemaml', | ||
py_modules=['maml'], | ||
py_modules=['simplemaml'], | ||
install_requires=required, | ||
classifiers=[ | ||
'Programming Language :: Python :: 3', | ||
|
File renamed without changes.