Skip to content

Commit c528cba

Browse files
Merge pull request #1186 from JohnSnowLabs/chore/final_website_updates
chore: update gem dependencies and enhance tutorial notebook links
2 parents cbfdc33 + c9ee6df commit c528cba

File tree

3 files changed

+15
-20
lines changed

3 files changed

+15
-20
lines changed

docs/Gemfile.lock

Lines changed: 12 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,10 @@ GEM
1616
coffee-script-source (1.11.1)
1717
colorator (1.1.0)
1818
commonmarker (0.23.11)
19-
concurrent-ruby (1.3.4)
20-
dnsruby (1.72.3)
19+
concurrent-ruby (1.3.5)
20+
dnsruby (1.72.4)
2121
base64 (~> 0.2.0)
22+
logger (~> 1.6.5)
2223
simpleidn (~> 0.2.1)
2324
em-websocket (0.5.3)
2425
eventmachine (>= 0.12.9)
@@ -34,8 +35,6 @@ GEM
3435
faraday-net_http (3.4.0)
3536
net-http (>= 0.5.0)
3637
ffi (1.17.1)
37-
ffi (1.17.1-arm64-darwin)
38-
ffi (1.17.1-x86_64-darwin)
3938
forwardable-extended (2.6.0)
4039
gemoji (3.0.1)
4140
github-pages (226)
@@ -203,7 +202,7 @@ GEM
203202
gemoji (~> 3.0)
204203
html-pipeline (~> 2.2)
205204
jekyll (>= 3.0, < 5.0)
206-
json (2.9.1)
205+
json (2.10.1)
207206
kramdown (2.3.2)
208207
rexml
209208
kramdown-parser-gfm (1.1.0)
@@ -212,20 +211,18 @@ GEM
212211
listen (3.9.0)
213212
rb-fsevent (~> 0.10, >= 0.10.3)
214213
rb-inotify (~> 0.9, >= 0.9.10)
215-
logger (1.6.4)
214+
logger (1.6.6)
216215
mercenary (0.3.6)
216+
mini_portile2 (2.8.8)
217217
minima (2.5.1)
218218
jekyll (>= 3.5, < 5.0)
219219
jekyll-feed (~> 0.9)
220220
jekyll-seo-tag (~> 2.1)
221221
minitest (5.25.4)
222222
net-http (0.6.0)
223223
uri
224-
nokogiri (1.17.2-arm64-darwin)
225-
racc (~> 1.4)
226-
nokogiri (1.17.2-x86_64-darwin)
227-
racc (~> 1.4)
228-
nokogiri (1.17.2-x86_64-linux)
224+
nokogiri (1.18.3)
225+
mini_portile2 (~> 2.8.2)
229226
racc (~> 1.4)
230227
octokit (4.25.1)
231228
faraday (>= 1, < 3)
@@ -237,9 +234,9 @@ GEM
237234
rb-fsevent (0.11.2)
238235
rb-inotify (0.11.1)
239236
ffi (~> 1.0)
240-
rexml (3.4.0)
237+
rexml (3.4.1)
241238
rouge (3.26.0)
242-
rubyzip (2.3.2)
239+
rubyzip (2.4.1)
243240
safe_yaml (1.0.5)
244241
sass (3.7.4)
245242
sass-listen (~> 4.0.0)
@@ -258,18 +255,16 @@ GEM
258255
tzinfo (1.2.11)
259256
thread_safe (~> 0.1)
260257
unicode-display_width (1.8.0)
261-
uri (1.0.2)
258+
uri (1.0.3)
262259
webrick (1.9.1)
263260
zeitwerk (2.6.18)
264261

265262
PLATFORMS
266-
arm64-darwin
267-
x86_64-darwin
268263
x86_64-linux
269264

270265
DEPENDENCIES
271266
github-pages (= 226)
272267
webrick (~> 1.7)
273268

274269
BUNDLED WITH
275-
2.5.16
270+
2.3.7

docs/pages/tutorials/LLM_testing_Notebooks/llm_testing_notebooks.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,5 @@ The following table gives an overview of the different tutorial notebooks to tes
4343
| **Fewshot Model Evaluation**: This notebook provides a demo on Optimize and evaluate your models using few-shot prompt techniques | OpenAI | Question-Answering | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/langtest/blob/main/demo/tutorials/llm_notebooks/Fewshot_QA_Notebook.ipynb) |
4444
| **Evaluating NER in LLMs**:In this tutorial, we assess the support for Named Entity Recognition (NER) tasks specifically for Large Language Models (LLMs) | OpenAI | Question-Answering | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/langtest/blob/main/demo/tutorials/llm_notebooks/NER%20Casual%20LLM.ipynb) |
4545
| **Swapping Drug Names Test**:In this notebook, we discussed implementing tests that facilitate the swapping of generic drug names with brand names and vice versa. This feature ensures accurate evaluations in medical and pharmaceutical contexts. | OpenAI | Question-Answering | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/langtest/blob/main/demo/tutorials/llm_notebooks/Swapping_Drug_Names_Test.ipynb) |
46-
| **Evaluation with Structured Outputs**:In this notebook, we discussed implementing evalution with structured output APIs for OpenAI, Ollama, and Azure-OpenAI, offering greater flexibility and precision when processing model responses. | OpenAI | Question-Answering | https://colab.research.google.com/github/JohnSnowLabs/langtest/blob/main/demo/tutorials/misc/Evaluation_with_Structured_Outputs.ipynb |
47-
| **Med Halt Tests**:In this notebook, we discussed about insights into your LLMs’ robustness and reliability under diverse conditions with our upgraded Med Halt tests. | OpenAI | Question-Answering | https://colab.research.google.com/github/JohnSnowLabs/langtest/blob/main/demo/tutorials/llm_notebooks/Med_Halt_Tests.ipynb |
46+
| **Evaluation with Structured Outputs**:In this notebook, we discussed implementing evalution with structured output APIs for OpenAI, Ollama, and Azure-OpenAI, offering greater flexibility and precision when processing model responses. | OpenAI | Question-Answering | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/langtest/blob/main/demo/tutorials/misc/Evaluation_with_Structured_Outputs.ipynb) |
47+
| **Med Halt Tests**:In this notebook, we discussed about insights into your LLMs’ robustness and reliability under diverse conditions with our upgraded Med Halt tests. | OpenAI | Question-Answering | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/langtest/blob/main/demo/tutorials/llm_notebooks/Med_Halt_Tests.ipynb) |

docs/pages/tutorials/miscellaneous_notebooks/miscellaneous_notebooks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ The following table gives an overview of the different tutorial notebooks. In th
4747
| **Visual_QA**: In this Notebook, we discussed about the visual question answering tests to evaluate how models handle both visual and textual inputs, offering a deeper understanding of their versatility. | OpenAI | Visual-Question-Answering (visualqa) | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/langtest/blob/main/demo/tutorials/misc/Misuse_Test_with_Prometheus_evaluation.ipynb) |
4848
| **Add_New_Lines_and_Tabs_Tests**: In this Notebook, we discussed about new tests like inserting new lines and tab characters into text inputs, challenging your models to handle structural changes without compromising accuracy. | Hugging Face/John Snow Labs/Spacy |Text-Classification/Question-Answering/Summarization | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/langtest/blob/main/demo/tutorials/misc/Add_New_Lines_and_Tabs_Tests.ipynb) |
4949
| **Safety_Tests_With_PromptGuard**: In this Notebook, we discussed about evaluating prompts before they are sent to large language models (LLMs), ensuring harmful or unethical outputs are avoided with PromptGuard. | Hugging Face/John Snow Labs/Spacy | Text-Classification/Question-Answering/Summarization | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/langtest/blob/main/demo/tutorials/misc/Safety_Tests_With_PromptGuard.ipynb) |
50-
| **De-biasing Data Augmentation**: In this Notebook, We’ve integrated de-biasing techniques into our data augmentation process, ensuring more equitable and representative model assessments. | Hugging Face/John Snow Labs/Spacy | Text-Classification/Question-Answering | https://colab.research.google.com/github/JohnSnowLabs/langtest/blob/main/demo/tutorials/misc/Dataset_Debiasing.ipynb |
50+
| **De-biasing Data Augmentation**: In this Notebook, We’ve integrated de-biasing techniques into our data augmentation process, ensuring more equitable and representative model assessments. | Hugging Face/John Snow Labs/Spacy | Text-Classification/Question-Answering | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/langtest/blob/main/demo/tutorials/misc/Dataset_Debiasing.ipynb) |

0 commit comments

Comments
 (0)