From d893ee13beef5ce2a1c9ce42520960f12dc30cef Mon Sep 17 00:00:00 2001 From: Maziyar Panahi Date: Thu, 26 Oct 2023 11:01:57 +0200 Subject: [PATCH] remove bad casing in model's name --- ...gle_Job_data_tuned_trial_2_11_2_2022_en.md | 93 ------------------- ...gle_job_data_tuned_trial_2_11_2_2022_en.md | 93 ------------------- 2 files changed, 186 deletions(-) delete mode 100644 docs/_posts/ahmedlone127/2023-09-15-google_Job_data_tuned_trial_2_11_2_2022_en.md delete mode 100644 docs/_posts/ahmedlone127/2023-09-15-google_job_data_tuned_trial_2_11_2_2022_en.md diff --git a/docs/_posts/ahmedlone127/2023-09-15-google_Job_data_tuned_trial_2_11_2_2022_en.md b/docs/_posts/ahmedlone127/2023-09-15-google_Job_data_tuned_trial_2_11_2_2022_en.md deleted file mode 100644 index 53f8d0bd36e8..000000000000 --- a/docs/_posts/ahmedlone127/2023-09-15-google_Job_data_tuned_trial_2_11_2_2022_en.md +++ /dev/null @@ -1,93 +0,0 @@ ---- -layout: model -title: English google_Job_data_tuned_trial_2_11_2_2022 DistilBertEmbeddings from EslamAhmed -author: John Snow Labs -name: google_Job_data_tuned_trial_2_11_2_2022 -date: 2023-09-15 -tags: [distilbert, en, open_source, fill_mask, onnx] -task: Embeddings -language: en -edition: Spark NLP 5.1.2 -spark_version: 3.0 -supported: true -engine: onnx -annotator: DistilBertEmbeddings -article_header: - type: cover -use_language_switcher: "Python-Scala-Java" ---- - -## Description - -Pretrained DistilBertEmbeddings model, adapted from Hugging Face and curated to provide scalability and production-readiness using Spark NLP.`google_Job_data_tuned_trial_2_11_2_2022` is a English model originally trained by EslamAhmed. - -{:.btn-box} - - -[Download](https://s3.amazonaws.com/auxdata.johnsnowlabs.com/public/models/google_Job_data_tuned_trial_2_11_2_2022_en_5.1.2_3.0_1694736099439.zip){:.button.button-orange.button-orange-trans.arr.button-icon} -[Copy S3 URI](s3://auxdata.johnsnowlabs.com/public/models/google_Job_data_tuned_trial_2_11_2_2022_en_5.1.2_3.0_1694736099439.zip){:.button.button-orange.button-orange-trans.button-icon.button-copy-s3} - -## How to use - - - -
-{% include programmingLanguageSelectScalaPythonNLU.html %} -```python - - -document_assembler = DocumentAssembler() \ - .setInputCol("text") \ - .setOutputCol("documents") - - -embeddings =DistilBertEmbeddings.pretrained("google_Job_data_tuned_trial_2_11_2_2022","en") \ - .setInputCols(["documents","token"]) \ - .setOutputCol("embeddings") - -pipeline = Pipeline().setStages([document_assembler, embeddings]) - -pipelineModel = pipeline.fit(data) - -pipelineDF = pipelineModel.transform(data) - -``` -```scala - - -val document_assembler = new DocumentAssembler() - .setInputCol("text") - .setOutputCol("embeddings") - -val embeddings = DistilBertEmbeddings - .pretrained("google_Job_data_tuned_trial_2_11_2_2022", "en") - .setInputCols(Array("documents","token")) - .setOutputCol("embeddings") - -val pipeline = new Pipeline().setStages(Array(document_assembler, embeddings)) - -val pipelineModel = pipeline.fit(data) - -val pipelineDF = pipelineModel.transform(data) - - -``` -
- -{:.model-param} -## Model Information - -{:.table-model} -|---|---| -|Model Name:|google_Job_data_tuned_trial_2_11_2_2022| -|Compatibility:|Spark NLP 5.1.2+| -|License:|Open Source| -|Edition:|Official| -|Input Labels:|[documents, token]| -|Output Labels:|[embeddings]| -|Language:|en| -|Size:|402.3 MB| - -## References - -https://huggingface.co/EslamAhmed/google_Job_data_tuned_trial_2_11-2-2022 \ No newline at end of file diff --git a/docs/_posts/ahmedlone127/2023-09-15-google_job_data_tuned_trial_2_11_2_2022_en.md b/docs/_posts/ahmedlone127/2023-09-15-google_job_data_tuned_trial_2_11_2_2022_en.md deleted file mode 100644 index 09bd2241a5d4..000000000000 --- a/docs/_posts/ahmedlone127/2023-09-15-google_job_data_tuned_trial_2_11_2_2022_en.md +++ /dev/null @@ -1,93 +0,0 @@ ---- -layout: model -title: English google_job_data_tuned_trial_2_11_2_2022 DistilBertEmbeddings from EslamAhmed -author: John Snow Labs -name: google_job_data_tuned_trial_2_11_2_2022 -date: 2023-09-15 -tags: [distilbert, en, open_source, fill_mask, onnx] -task: Embeddings -language: en -edition: Spark NLP 5.1.2 -spark_version: 3.0 -supported: true -engine: onnx -annotator: DistilBertEmbeddings -article_header: - type: cover -use_language_switcher: "Python-Scala-Java" ---- - -## Description - -Pretrained DistilBertEmbeddings model, adapted from Hugging Face and curated to provide scalability and production-readiness using Spark NLP.`google_job_data_tuned_trial_2_11_2_2022` is a English model originally trained by EslamAhmed. - -{:.btn-box} - - -[Download](https://s3.amazonaws.com/auxdata.johnsnowlabs.com/public/models/google_job_data_tuned_trial_2_11_2_2022_en_5.1.2_3.0_1694772782812.zip){:.button.button-orange.button-orange-trans.arr.button-icon} -[Copy S3 URI](s3://auxdata.johnsnowlabs.com/public/models/google_job_data_tuned_trial_2_11_2_2022_en_5.1.2_3.0_1694772782812.zip){:.button.button-orange.button-orange-trans.button-icon.button-copy-s3} - -## How to use - - - -
-{% include programmingLanguageSelectScalaPythonNLU.html %} -```python - - -document_assembler = DocumentAssembler() \ - .setInputCol("text") \ - .setOutputCol("documents") - - -embeddings =DistilBertEmbeddings.pretrained("google_job_data_tuned_trial_2_11_2_2022","en") \ - .setInputCols(["documents","token"]) \ - .setOutputCol("embeddings") - -pipeline = Pipeline().setStages([document_assembler, embeddings]) - -pipelineModel = pipeline.fit(data) - -pipelineDF = pipelineModel.transform(data) - -``` -```scala - - -val document_assembler = new DocumentAssembler() - .setInputCol("text") - .setOutputCol("embeddings") - -val embeddings = DistilBertEmbeddings - .pretrained("google_job_data_tuned_trial_2_11_2_2022", "en") - .setInputCols(Array("documents","token")) - .setOutputCol("embeddings") - -val pipeline = new Pipeline().setStages(Array(document_assembler, embeddings)) - -val pipelineModel = pipeline.fit(data) - -val pipelineDF = pipelineModel.transform(data) - - -``` -
- -{:.model-param} -## Model Information - -{:.table-model} -|---|---| -|Model Name:|google_job_data_tuned_trial_2_11_2_2022| -|Compatibility:|Spark NLP 5.1.2+| -|License:|Open Source| -|Edition:|Official| -|Input Labels:|[documents, token]| -|Output Labels:|[embeddings]| -|Language:|en| -|Size:|402.3 MB| - -## References - -https://huggingface.co/EslamAhmed/google_Job_data_tuned_trial_2_11-2-2022 \ No newline at end of file