Skip to content

Commit

Permalink
Merge pull request #203 from JohnSnowLabs/http-fixies
Browse files Browse the repository at this point in the history
http fixes
  • Loading branch information
C-K-Loan committed Sep 28, 2023
2 parents eb94532 + 92b4779 commit 2df5531
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions docs/_includes/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
<div>
{%- include snippets/get-locale-string.html key='COPYRIGHT_DATES' -%}
{%- assign _locale_copyright_dates = __return -%}
© <span id="years"></span> John Snow Labs Inc.
<a href="http://www.johnsnowlabs.com/terms-of-service">Terms of Service</a> | <a href="http://www.johnsnowlabs.com/privacy-policy/">Privacy Policy</a>
&copy; <span id="years"></span> John Snow Labs Inc.
<a href="https://www.johnsnowlabs.com/terms-of-service">Terms of Service</a> | <a href="https://www.johnsnowlabs.com/privacy-policy/">Privacy Policy</a>
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion docs/en/examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ nlp.load('lang').predict(['NLU is an open-source text processing library for adv
## E2E Classifier
[E2E Classifier example](https://colab.research.google.com/drive/1OSkiXGEpKlm9HWDoVb42uLNQQgb7nqNZ?usp=sharing)

This is a multi class classifier trained on the E2E [dataset for Natural language generation](http://www.macs.hw.ac.uk/InteractionLab/E2E/#)
This is a multi class classifier trained on the E2E [dataset for Natural language generation](https://www.macs.hw.ac.uk/InteractionLab/E2E/#)

```python
nlp.load('e2e').predict('E2E is a dataset for training generative models')
Expand Down
10 changes: 5 additions & 5 deletions docs/en/nlu_for_healthcare.md

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/en/release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ If multiple datasets or tune parameters are defined , they are connected with a

These substrings define up the `<domain>` part of the NLU reference
- Legal [cuad](https://arxiv.org/abs/2103.06268)
- COVID 19 Biomedical [biosaq](http://bioasq.org/)
- COVID 19 Biomedical [biosaq](https://bioasq.org/)
- Biomedical Literature [pubmed](https://pubmed.ncbi.nlm.nih.gov/)
- Twitter [tweet](https://aclanthology.org/P19-1496.pdf)
- Wikipedia [wiki](https://www.wikipedia.org/)
Expand Down Expand Up @@ -8782,7 +8782,7 @@ We are glad to announce nlu 1.0.2 is released!
- Integration of CI pipeline with Github Actions

#### New Documentation is out!
Check it out here : http://nlu.johnsnowlabs.com/
Check it out here : [https://nlu.johnsnowlabs.com/](https://nlu.johnsnowlabs.com/)


## NLU Version 1.0.1
Expand Down Expand Up @@ -8818,7 +8818,7 @@ A picture says more than a 1000 words, so here is a demo clip of the 12 coolest
</div><div class="h3-box" markdown="1">

#### NLU in action
<img src="http://ckl-it.de/wp-content/uploads/2020/08/My-Video6.gif" width="1800" height="500"/>
<img src="https://ckl-it.de/wp-content/uploads/2020/08/My-Video6.gif" width="1800" height="500"/>

</div><div class="h3-box" markdown="1">

Expand Down
2 changes: 1 addition & 1 deletion docs/en/start_sparkseession.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Review detailed [docs here](https://nlu.johnsnowlabs.com/docs/en/install#authori
|-------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------|---------|
| `None` | Load license automatically via one of the **Auto-Detection Mechanisms** | `jsl.start()` | `False` |
| `browser_login` | Browser based authorization, Button to click on Notebooks and Browser Pop-Up otherwise. | `jsl.start(browser_login=True)` | `False` |
| `access_token` | Vist [my.johnsnowlabs.com](https://my.johnsnowlabs.com/) to extract a token which you can provide to enable license access. See [Access Token Example](http://nlu.johnsnowlabs.com/docs/en/install#via-access-token) | `jsl.start(access_token='myToken')` | `None` |
| `access_token` | Vist [my.johnsnowlabs.com](https://my.johnsnowlabs.com/) to extract a token which you can provide to enable license access. See [Access Token Example](https://nlu.johnsnowlabs.com/docs/en/install#via-access-token) | `jsl.start(access_token='myToken')` | `None` |
| `secrets_file` | Define JSON license file with keys defined by [License Variable Overview](https://nlu.johnsnowlabs.com/docs/en/install#license-variables-names-for-json-and-os-variables) and provide file path | `jsl.start(secrets_file='path/to/license.json')` | `None` |
| `store_in_jsl_home` | Disable caching of new licenses to `~./jsl_home` | `jsl.start(store_in_jsl_home=False)` | `True` |
| `local_license_number` | Specify which license to use, if you have access to multiple locally cached | `jsl.start(license_number=5)` | `0` |
Expand Down
2 changes: 1 addition & 1 deletion docs/footer.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<div class="container">
<p>&copy; <span id="year_id"></span> . John Snow Labs Inc. <a href="http://www.johnsnowlabs.com/terms-of-service">Terms of Service</a> | <a href="http://www.johnsnowlabs.com/privacy-policy/">Privacy Policy</a></p>
<p>&copy; <span id="year_id"></span> . John Snow Labs Inc. <a href="https://www.johnsnowlabs.com/terms-of-service">Terms of Service</a> | <a href="https://www.johnsnowlabs.com/privacy-policy/">Privacy Policy</a></p>
</div>
<script>document.getElementById("year_id").innerHTML = new Date().getFullYear();</script>

0 comments on commit 2df5531

Please sign in to comment.