Skip to content

Commit

Permalink
Merge pull request #37 from ShopRunner/DS-2734_import_multilabel_data…
Browse files Browse the repository at this point in the history
…sets

Ds 2734 import multilabel datasets
  • Loading branch information
parsing-science authored Dec 10, 2020
2 parents d1e1fb5 + 87c0344 commit 9510341
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project uses [Semantic Versioning](http://semver.org/).

# [2.2.3] - 2020-12-10
### Fixed
- Multi-label datasets are imported in top level init

# [2.2.2] - 2020-10-29
### Fixed
- Update creevey to new name wildebeest
Expand Down
5 changes: 3 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,9 @@ PR Checklist
- Update the docs where appropriate. You can rebuild them with the commands below.

```
cd /docs
make html
cd docs/
make html
open build/html/index.html
```
- Update the CHANGELOG

Expand Down
2 changes: 1 addition & 1 deletion octopod/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.2.2'
__version__ = '2.2.3'
2 changes: 1 addition & 1 deletion octopod/ensemble/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
from octopod.ensemble.dataset import OctopodEnsembleDataset
from octopod.ensemble.dataset import OctopodEnsembleDataset, OctopodEnsembleDatasetMultiLabel
from octopod.ensemble.models import BertResnetEnsembleForMultiTaskClassification
2 changes: 1 addition & 1 deletion octopod/text/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
from octopod.text.dataset import OctopodTextDataset
from octopod.text.dataset import OctopodTextDataset, OctopodTextDatasetMultiLabel
from octopod.text.models import BertForMultiTaskClassification
2 changes: 1 addition & 1 deletion octopod/vision/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
from octopod.vision.dataset import OctopodImageDataset
from octopod.vision.dataset import OctopodImageDataset, OctopodImageDatasetMultiLabel
from octopod.vision.models import ResnetForMultiTaskClassification
1 change: 1 addition & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
flake8
flake8-docstrings
flake8-import-order
pandas # Needed for unittests
pydocstyle<4.0.0
pytest
pytest-cov
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ numpy
pillow==6.2.1
scikit-learn
sentencepiece!=0.1.92 # Version 0.1.92 was yanked from PyPI
sphinx < 3.0.0 # https://github.com/sphinx-doc/sphinx/issues/7795
sphinx-rtd-theme==0.4.3
transformers==2.3.0
torch
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
'scikit-learn',
'torch',
'torchvision==0.2.1',
'transformers<3.0.0',
'wildebeest',
],
extras_requires={
Expand All @@ -38,6 +39,7 @@
'flake8-docstrings',
'flake8-import-order',
'm2r',
'pandas',
'pydocstyle<4.0.0',
'pytest',
'pytest-cov',
Expand Down

0 comments on commit 9510341

Please sign in to comment.