Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ python:
- 3.7
#- "3.6-dev"
#- "3.7-dev"
#- 3.8
- 3.8

env:
- 'TV=0.3.0 TORCH=1.1.0'
- 'TV=0.4.0 TORCH=1.2.0'
# - 'TV=0.3.0 TORCH=1.1.0'
# - 'TV=0.4.0 TORCH=1.2.0'
- 'TV=0.4.1 TORCH=1.3.0'
- 'TV=0.5.0 TORCH=1.4.0'
- 'TV=0.6.0 TORCH=1.5.0'
Expand Down
17 changes: 15 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

### Changed

### Fixed


## v0.1.5

### Fixed

* Fix setup.py for windows installs.

## v0.1.4

### Added

* `FilteredMetaDatasest` filter the classes used to sample tasks.
* `UnionMetaDatasest` to get the union of multiple MetaDatasets.
* Alias `MiniImageNetCNN` to `CNN4` and add `embedding_size` argument.
Expand All @@ -24,8 +39,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

* Updated reference for citations.

### Fixed


## v0.1.3

Expand Down
2 changes: 1 addition & 1 deletion learn2learn/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.1.3'
__version__ = '0.1.5'
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@
zip_safe=False, # as per Cython docs
version=VERSION,
description='PyTorch Meta-Learning Framework for Researchers',
long_description=open('README.md').read(),
long_description=open('README.md', encoding='utf8').read(),
long_description_content_type='text/markdown',
author='Debajyoti Datta, Ian bunner, Seb Arnold, Praateek Mahajan',
author_email='smr.arnold@gmail.com, praateekm@gmail.com',
author_email='smr.arnold@gmail.com',
url='https://github.com/learnables/learn2learn',
download_url='https://github.com/learnables/learn2learn/archive/' + str(VERSION) + '.zip',
license='MIT',
Expand Down