Author Rebuttal Part 1/1
---
**[Original review]**
*W1,W2 “I found the manuscript somewhat challenging to follow due to the absence of consistent examples within the main text. Currently, major examples are relegated to the supplementary materials. To enhance clarity, I recommend incorporating one or two examples directly into the main manuscript and referencing them throughout.” “Moreover, a clear problem statement would significantly improve comprehension. Specifically, outlining the input and output parameters before discussing the methodology would be beneficial.”*
**[Response]**
Thank you for these valuable suggestions! To improve clarity and readability, we have updated the main figure (Figure 2) to illustrate the entire pipeline using a simple visual classification task as an example. We hope this addresses your concern, and we would greatly appreciate any additional feedback on this update or further suggestions for improvement.
---
**[Original review]**
*Minor W4-7 “The structure of the document feels somewhat convoluted. There is an overuse of emphasized text formats (bold, italic, etc.), particularly noticeable on Page 3, which detracts from the core ideas being presented. I recommend retaining emphasis only on the most critical sections and reducing the use of bold and italic text.*
*Equation 3 could be better explained with a figure that includes a concrete example and details like α and yi.*
*The text size in Figure 8 (f) makes it difficult to interpret. Consider increasing the text size for better readability.*
*Furthermore, the code is not submitted, making it challenging to assess reproducibility.”*
**[Response]**
Thank you for the detailed and valuable suggestions! We have incorporated your feedback into our revisions to improve the paper’s readability and presentation. Specifically, we have made the following changes:
1. **Reduced emphasis formatting:** We have minimized the use of bold and italic text throughout the paper, reserving it for highlighting only the most critical findings and conclusions.
2. **Enhanced explanation of Equation 3:** We updated the main pipeline figure to include Equation 3, a concrete example task, and a clear problem statement to better illustrate the entire learning process.
3. **Improved Figure 8(f):** We switched to a different visualization of the learned programs in Figure 8(f), which enabled us to use a much larger font for better readability.
4. **Code submission:** While we plan to release both the code and benchmarks upon acceptance, we provide a demo of the LSP training and testing process (though not yet organized) in the supplementary material.
We hope these changes address your concerns and improve the overall clarity of the paper.
---
**[Questions]**
*Q1. “I was not fully following the reasoning in line 268 -- 286. Could you elaborate the following two arguments?*
> *Therefore, with a fixed LLM, the set of natural language prompts, ... provides a massive set of interpretable neural network modules for the task.*
>
*Why the prompts can be trivially seen as interpretable neural modules?*
> *... the resulting model is inherently interpretable, as the prompt s is expressed in natural language.*
>
*Why the resulting model can be seen inherently interpretable?”*
**[Answer]**
Thank you for the question. We are happy to elaborate:
1. **Why can prompts be seen as interpretable neural modules?** Pretrained (M)LLMs are powerful conditional probability models of p(y∣s,x)p(y \mid s, x)p(y∣s,x), where sss is a prompt, xxx is the input, and yyy is the output generated by the LLM based on that prompt. This allows us to implement a wide variety of neural network modules (or specialist models) simply by defining different prompts. For example:
1. Sentiment analysis model can be implemented by LLM(y|s=”Classify the following text into one of these categories: [positive, negative, neutral]”, x=“I like Pizzas”)
2. Shape detector model can be implemented as MLLM(x|s=”What is the shape of the object in this image?”, x=<image of a ball>)
2. **Why is the resulting model inherently interpretable?** Unlike traditional neural network modules in NSP, which are defined by numerical parameters, LLM modules are defined through natural language prompts. This makes the prompts inherently more interpretable because they are understandable to humans without requiring technical expertise in neural network representations.
1. To validate this claim, we conducted an empirical evaluation where human raters labeled test data by reviewing the learned rules/prompts (Table 2). The results demonstrated high “transferability” of these learned rules to humans, further supporting their interpretability.
We hope this explanation helps clarifying these arguments. If you have additional questions or suggestions, we would be delighted to discuss them further!
---