Skip to content

Commit

Permalink
Merge pull request #54 from JohnSnowLabs/3.0.2rc1
Browse files Browse the repository at this point in the history
Streamlit visualizations, improved T5, models for Farsi, Hebrew, Korean,  Turkish and  UMLS, LOINC, HPO, Resolvers in NLU 3.0.2
  • Loading branch information
C-K-Loan authored Jun 3, 2021
2 parents 405a01f + 2a08bf0 commit a7b1c0b
Show file tree
Hide file tree
Showing 7 changed files with 1,991 additions and 14 deletions.
24 changes: 14 additions & 10 deletions docs/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
GEM
remote: https://rubygems.org/
specs:
activesupport (6.0.3.6)
activesupport (6.0.3.7)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 0.7, < 2)
minitest (~> 5.1)
Expand All @@ -26,18 +26,22 @@ GEM
ffi (>= 1.15.0)
eventmachine (1.2.7)
eventmachine (1.2.7-x64-mingw32)
execjs (2.7.0)
faraday (1.4.1)
execjs (2.8.1)
faraday (1.4.2)
faraday-em_http (~> 1.0)
faraday-em_synchrony (~> 1.0)
faraday-excon (~> 1.1)
faraday-net_http (~> 1.0)
faraday-net_http_persistent (~> 1.1)
multipart-post (>= 1.2, < 3)
ruby2_keywords (>= 0.0.4)
faraday-em_http (1.0.0)
faraday-em_synchrony (1.0.0)
faraday-excon (1.1.0)
faraday-net_http (1.0.1)
faraday-net_http_persistent (1.1.0)
ffi (1.15.0)
ffi (1.15.0-x64-mingw32)
ffi (1.15.1)
ffi (1.15.1-x64-mingw32)
forwardable-extended (2.6.0)
gemoji (3.0.1)
github-pages (214)
Expand Down Expand Up @@ -211,17 +215,17 @@ GEM
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
mercenary (0.3.6)
mini_portile2 (2.5.1)
mini_portile2 (2.5.3)
minima (2.5.1)
jekyll (>= 3.5, < 5.0)
jekyll-feed (~> 0.9)
jekyll-seo-tag (~> 2.1)
minitest (5.14.4)
multipart-post (2.1.1)
nokogiri (1.11.3)
nokogiri (1.11.7)
mini_portile2 (~> 2.5.0)
racc (~> 1.4)
nokogiri (1.11.3-x64-mingw32)
nokogiri (1.11.7-x64-mingw32)
racc (~> 1.4)
octokit (4.21.0)
faraday (>= 0.9)
Expand All @@ -230,7 +234,7 @@ GEM
forwardable-extended (~> 2.6)
public_suffix (4.0.6)
racc (1.5.2)
rb-fsevent (0.10.4)
rb-fsevent (0.11.0)
rb-inotify (0.10.1)
ffi (~> 1.0)
rexml (3.2.5)
Expand Down Expand Up @@ -272,4 +276,4 @@ DEPENDENCIES
github-pages (= 214)

BUNDLED WITH
2.1.4
2.2.19
3 changes: 3 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

We welcome you to contribute to NLU documentation hosted inside `en/` directory. All the files are in Markdown format.

## Install
[You need to install Jekyll](https://jekyllrb.com/docs/installation/ubuntu/)

## Development

For development purposes, you need to have `bundle` and `Gem` installed on your system. Please run these commands:
Expand Down
10 changes: 10 additions & 0 deletions docs/_data/navigation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ header:
- title: Docs
url: /docs/en/install
key: docs
- title: Visualizations
url: /docs/en/viz_examples
key: viz
- title: Streamlit & NLU
url: /docs/en/streamlit_viz_examples
key: streamlit_viz
- title: Tutorial Notebooks
url: /docs/en/notebooks
key: tutorial_notebooks

# - title: Articles
# url: /articles
# key: articles
Expand Down
329 changes: 329 additions & 0 deletions docs/en/streamlit_viz_examples.md

Large diffs are not rendered by default.

1,635 changes: 1,634 additions & 1 deletion examples/colab/healthcare/entity_resolution/entity_resolvers_overview.ipynb

Large diffs are not rendered by default.

2 changes: 0 additions & 2 deletions nlu/namespace.py
Original file line number Diff line number Diff line change
Expand Up @@ -2073,8 +2073,6 @@ class NameSpace():
'en.classify.pico':'classifierdl_pico_biobert',
# 'en.classify.icd10.use':'useclassifier_icd10cm_hcc', buggy

# 3.0.3
# 3.0.3
# 3.0.3
'en.resolve.umls':'sbiobertresolve_umls_major_concepts',
'en.resolve.umls.findings':'sbiobertresolve_umls_findings',
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
# For a discussion on single-sourcing the version across setup.py and the
# project code, see
# https://packaging.python.org/en/latest/single_source_version.html
version='3.0.1', # Required
version='3.0.2', # Required

# This is a one-line description or tagline of what your project does. This
# corresponds to the "Summary" metadata field:
Expand Down

0 comments on commit a7b1c0b

Please sign in to comment.