Skip to content

Releases: JohnSnowLabs/johnsnowlabs

John Snow Labs 5.1.6 Library Release

11 Oct 21:34
e4cb6af
Compare
Choose a tag to compare
  • bump visual NLP to 5.0.2

John Snow Labs 5.1.5 Library Release

11 Oct 16:34
Compare
Choose a tag to compare

John Snow Labs 5.1.4 Library Release

08 Oct 13:03
1360fb2
Compare
Choose a tag to compare
  • upgrade NLU to 5.0.2
  • remove pandas >=2 downgrade for databricks clusters

John Snow Labs 5.1.3 Library Release

06 Oct 21:48
2d75721
Compare
Choose a tag to compare
  • Fix update Databricks cluster

  • nlp.install(med_license=) should work without aws keys for floating licenses

  • add nlp.install_to_databricks and add deprecation warning for nlp.install() when creating new databricks cluster. Will be dropped next release

  • Fixed pandas to 1.5.3 for newly created Databricks clusters until NLU supports pandas>=2

  • new parameters parameter in nlp.run_in_databricks for parameterizing submitted databricks jobs and new documentation

  • new parameter extra_pip_installs which can be used to install additional pypi dependencies when creating a Databricks cluster or installing to an existing cluster.

example of extra_pip_installs

nlp.install_to_databricks(
    databricks_cluster_id=cluster_id,
    databricks_host=host,
    databricks_token=token,
    extra_pip_installs=["farm-haystack==1.21.2", "langchain"],
)

John Snow Labs 5.1.2 Library Release

06 Oct 21:38
Compare
Choose a tag to compare
  • bump Healthcare NLP to 5.1.1

John Snow Labs 5.1.1 Library Release

01 Oct 17:25
a4c0f4f
Compare
Choose a tag to compare

John Snow Labs 5.1.0 Library Release

25 Sep 17:05
Compare
Choose a tag to compare

John Snow Labs 5.0.8 Library Release

11 Sep 01:02
Compare
Choose a tag to compare

nlp.query_and_deploy_if_missing() has been upgraded with new powerful features!

Parameter Description
output_level One of token, chunk, sentence, relation, document to shape outputs
positions Set True/False to include or exclude character index position of predictions
metadata Set True/False to include additional metadata
drop_irrelevant_cols Set True/False to drop irrelevant columns
get_embeddings Set True/False to include embedding or not
keep_stranger_features Set True/False to return columns not named "text", 'image" or "file_type" from your input data
multithread Set True/False to use multi-Threading for inference. Auto-inferred if not set

John Snow Labs 5.0.7 Library Release

03 Sep 07:50
Compare
Choose a tag to compare

Hotfix for bad package

John Snow Labs 5.0.6 Library Release

03 Sep 06:17
7bcac15
Compare
Choose a tag to compare
  • clean_cluster in nlp.install() to clean databricks cluster before installing johnsnowlabs software. Default True
  • write_db_credentials in nlp.install() to write databricks host and access token into env variables which will be used for endpoint creation. Default True
  • fixed bug which caused visual library to be installed to databricks cl usters, even if visual=False
  • updated documentation
  • New powerful 1-liner nlp.query_and_deploy_if_missing() which deploys a john snow labs model as databricks serve endpoint and queries it. If model is already deployed, it will not be deployed again. For more details see