Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
amaiya committed Mar 18, 2020
2 parents 25d40f1 + 49d6156 commit b8caad4
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ Most recent releases are shown at the top. Each release shows:
- **Fixed**: Bug fixes that don't change documented behaviour


## 0.11.2 (2020-03-18)

### New:
- N/A

### Changed:
- N/A

### Fixed:
- `ktrain.text.eda.visualize_documents` now properly processes filepath argument


## 0.11.1 (2020-03-18)

### New:
Expand Down
2 changes: 1 addition & 1 deletion ktrain/text/eda.py
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ def visualize_documents(self, texts=None, doc_topics=None,
p.circle('x', 'y', size=point_size, source=source, fill_color= 'fill_color')
bp.show(p)
if filepath is not None:
bp.output_file('/tmp/t.html')
bp.output_file(filepath)
bp.save(p)
return

Expand Down
2 changes: 1 addition & 1 deletion ktrain/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__all__ = ['__version__']
__version__ = '0.11.1'
__version__ = '0.11.2'

0 comments on commit b8caad4

Please sign in to comment.