diff --git a/docs/3-Use-Cases/NeuralSeek.mdx b/docs/3-Use-Cases/NeuralSeek.mdx
index ab01d920..a9fab926 100644
--- a/docs/3-Use-Cases/NeuralSeek.mdx
+++ b/docs/3-Use-Cases/NeuralSeek.mdx
@@ -96,7 +96,7 @@ In addition to testing on NeuralSeek, we have written a script to allow testing
 We performed Pre-Processing and No OCR, No Pre-Processing and No OCR, and OCR experiments using the testing notebook.
 You can and run the different experiments just by changing the Discovery collection ID and providing with the questions and expected responses as string arrays.
 It uses the NeuralSeek API.
-Please refer to [Testing Notebook](Tables%20Testing.ipynb) for detailed steps.
+Please refer to [Testing Notebook](testing.ipynb) for detailed steps.
 
 ## Download Logs
 - Proceed to API on Integrate tab
diff --git a/docs/3-Use-Cases/Watson Discovery.mdx b/docs/3-Use-Cases/Watson Discovery.mdx
index 9740346a..466c8603 100644
--- a/docs/3-Use-Cases/Watson Discovery.mdx	
+++ b/docs/3-Use-Cases/Watson Discovery.mdx	
@@ -8,7 +8,8 @@ custom_edit_url: null
 # Data Preprocessing
 
 - Data containing tables needs to be pre-processed so that the LLM can properly read the content in tables. 
-- Before uploading to watson discovery, run the following script on your files and upload the files generated by the output to Watson Discovery: [link](preprocess_file.ipynb)
+- Before uploading to Watson Discovery, run the following script on your files if needed and upload the files generated by the output to Watson Discovery: [link](preprocess_file.ipynb). Additional changes should be applied to this script in order to make it customized for your PDF documents. The provided script is for a specific set of documents that we used.
+- The script interates through each page of the PDF file, finds all the tables, and transforms each table into natural language format utilizing LLM. Having tables in a natural language format will help with question and answering. The code will preprocess PDFs and output HTML files. 
 
 # Create Project and Collection
 
diff --git a/docs/3-Use-Cases/Tables Testing.ipynb b/docs/3-Use-Cases/testing.ipynb
similarity index 100%
rename from docs/3-Use-Cases/Tables Testing.ipynb
rename to docs/3-Use-Cases/testing.ipynb