Skip to content

Commit

Permalink
link updates
Browse files Browse the repository at this point in the history
  • Loading branch information
C-K-Loan committed Oct 5, 2022
1 parent 8fbc1c6 commit ab3d2a0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/en/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pip install johnsnowlabs
This installs [Spark-NLP](https://nlp.johnsnowlabs.com/docs/en/quickstart), [NLU](https://nlu.johnsnowlabs.com/)
, [Spark-NLP-Display](https://nlp.johnsnowlabs.com/docs/en/display)
, [Pyspark](https://spark.apache.org/docs/latest/api/python/) and other open
source [sub-dependencies](TODO link to setup.py).
source [sub-dependencies](https://github.com/JohnSnowLabs/johnsnowlabs/blob/main/setup.py).

To quickly test the installation, you can run in your Shell:

Expand Down
1 change: 0 additions & 1 deletion docs/en/jsl_home.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ Each version of the John Snow Labs library comes with a **hardcoded set of versi
It will not accept **library secrets** which correspond to **versions do not match the settings**.
This essentially prevents you from installing **outdated** or **new but not deeply tested** libraries, or from shooting yourself in the foot you might say.

[incombatible_lib_secrets.png](TODO)

You can work around this protection mechanism, by configuring which version of licensed and open source libraries should be installed and accepted by updating the
`jsl.settings` module.
Expand Down
11 changes: 6 additions & 5 deletions docs/en/jsl_lib_imports.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ The following Functions, Classes and Modules will available in the global namesp
- `nlp.T` via `import pyspark.sql.types as T` under the hood
- `nlp.SQL` via `import pyspark.sql as SQL` under the hood
- `nlp.ML` via `from pyspark import ml as ML` under the hood
- To see all the imports see [the source]()
- To see all the imports see [the source](https://github.com/JohnSnowLabs/johnsnowlabs/blob/main/johnsnowlabs/nlp.py)


## The **jsl** Module
Expand Down Expand Up @@ -62,7 +62,7 @@ The following Functions, Classes and Modules will available in the global namesp
- [Visual Document Understanding](https://nlp.johnsnowlabs.com/docs/en/ocr_visual_document_understanding) i.e. `ocr.VisualDocumentClassifier`
- [Object detectors](https://nlp.johnsnowlabs.com/docs/en/ocr_object_detection) i.e. `ocr.ImageHandwrittenDetector`
- [Enums, Structures and helpers](https://nlp.johnsnowlabs.com/docs/en/ocr_structures) i.e. `ocr.Color`
- To see all the imports see [the source]()
- To see all the imports see [the source](https://github.com/JohnSnowLabs/johnsnowlabs/blob/main/johnsnowlabs/ocr.py)

## The **medical** Module

Expand All @@ -73,7 +73,7 @@ The following Functions, Classes and Modules will available in the global namesp
- [Evaluation Methods](https://nlp.johnsnowlabs.com/docs/en/evaluation), i.e. `medical.NerDLEvaluation`
- **NOTE:** Any class which has `Medical` in its name is available, but the `Medical` prefix has been omitted. I.e. `medical.NerModel` maps to `sparknlp_jsl.annotator.MedicalNerModel`
- This is achieved via `from sparknlp_jsl.annotator import MedicalNerModel as NerModel` under the hood.
- To see all the imports see [the source]()
- To see all the imports see [the source](https://github.com/JohnSnowLabs/johnsnowlabs/blob/main/johnsnowlabs/medical.py)

## The **legal** Module

Expand All @@ -83,7 +83,7 @@ The following Functions, Classes and Modules will available in the global namesp
- [Evaluation Methods](https://nlp.johnsnowlabs.com/docs/en/evaluation), i.e. `legal.NerDLEvaluation`
- **NOTE:** Any class which has `Legal` in its name is available, but the `Legal` prefix has been omitted. I.e. `legal.NerModel` maps to `sparknlp_jsl.annotator.LegalNerModel`
- This is achieved via `from sparknlp_jsl.annotator import LegalNerModel as NerModel` under the hood.
- To see all the imports see [the source]()
- To see all the imports see [the source](https://github.com/JohnSnowLabs/johnsnowlabs/blob/main/johnsnowlabs/legal.py)


## The **finance** Module
Expand All @@ -95,5 +95,6 @@ The following Functions, Classes and Modules will available in the global namesp
- [Evaluation Methods](https://nlp.johnsnowlabs.com/docs/en/evaluation), i.e. `finance.NerDLEvaluation`
- **NOTE:** Any class which has `Finance` in its name is available, but the `Finance` prefix has been omitted. I.e. `finance.NerModel` maps to `sparknlp_jsl.annotator.FinanceNerModel`
- This is achieved via `from sparknlp_jsl.annotator import FinanceNerModel as NerModel` under the hood.
- To see all the imports see [the source]()
- To see all the imports see [the source](https://github.com/JohnSnowLabs/johnsnowlabs/blob/main/johnsnowlabs/finance.py)
-
</div>

0 comments on commit ab3d2a0

Please sign in to comment.