Skip to content

Commit

Permalink
first stable version
Browse files Browse the repository at this point in the history
  • Loading branch information
AnasNeumann committed Nov 11, 2023
1 parent 715c1ff commit 9ac6ed4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ A generic Python/Tensorflow function that implements a simple version of the "Mo
## Usage
1. Install with `pip install simplemaml`
2. In your python code:
- `import simplemaml.MAML as MAML`
- `from simplemaml import MAML`
- `MAML(model=your_model, tasks=your_array_of_tasks, etc.)`

## Tools needed
Expand Down
4 changes: 2 additions & 2 deletions __init__.py
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
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
File renamed without changes.

0 comments on commit 9ac6ed4

Please sign in to comment.