Skip to content

Commit d7d64b5

Browse files
committed
Clean up repo.
1 parent 52fbf25 commit d7d64b5

File tree

7 files changed

+25
-8
lines changed

7 files changed

+25
-8
lines changed

Makefile

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
2+
.PHONY: *
3+
4+
publish:
5+
python setup.py sdist
6+
twine upload --repository-url https://upload.pypi.org/legacy/ dist/*

README.md

+17-6
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
--------------------------------------------------------------------------------
44

55
learn2learn is a PyTorch library for meta-learning implementations.
6-
It was developed during the [first PyTorch Hackathon](http://pytorchmpk.devpost.com/).
6+
It was developed during the [first PyTorch Hackathon](http://pytorchmpk.devpost.com/). Edit: L2L was lucky to win the hackathon!
77

8-
**Note** learn2learn was lucky to win the PyTorch Hackathon at MPK. We'll clean up the repo and resume development soon.
8+
**Note** learn2learn is under active development and many things are breaking.
99

10-
# Supported Algorithms
10+
# Installation
1111

12-
* MAML
13-
* FOMAML
14-
* MetaSGD
12+
~~~bash
13+
pip install learn2learn
14+
~~~
1515

1616
# API Demo
1717

@@ -44,6 +44,17 @@ for iteration in range(num_iterations):
4444
opt.step()
4545
~~~
4646

47+
# Changelog
48+
49+
The following changelog is mostly for the hackathon period.
50+
51+
## August 12, 2019
52+
53+
* Basic implementation of MAML, FOMAML, Meta-SGD.
54+
* TaskGenerator code for classification tasks.
55+
* Environments for RL.
56+
* Small scale examples of MAML-A2C and MAML-PPO.
57+
4758
# Acknowledgements
4859

4960
1. The RL environments are copied from: https://github.com/tristandeleu/pytorch-maml-rl

assets/meta_train.png

-514 KB
Binary file not shown.

assets/mnist_train.png

-381 KB
Binary file not shown.

assets/mnist_valid.png

-380 KB
Binary file not shown.

setup.cfg

Whitespace-only changes.

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
long_description_content_type='text/markdown',
2828
author='Seb Arnold',
2929
author_email='[email protected]',
30-
url='https://seba-1511.github.com/pytorch-hacks',
31-
download_url='https://github.com/seba-1511/pytorch-hacks/archive/' + str(VERSION) + '.zip',
30+
url='https://seba-1511.github.com/learn2learn',
31+
download_url='https://github.com/seba-1511/learn2learn/archive/' + str(VERSION) + '.zip',
3232
license='License :: OSI Approved :: Apache Software License',
3333
classifiers=[],
3434
scripts=[],

0 commit comments

Comments
 (0)