Ritvik19 commited on
Commit
c44c8ed
·
verified ·
1 Parent(s): 906cf53

Improved Synopsis

Browse files
Files changed (4) hide show
  1. app.py +3 -1
  2. autoqa_chains.py +1 -1
  3. rough.ipynb +0 -0
  4. synopsis_chain.py +17 -15
app.py CHANGED
@@ -335,7 +335,9 @@ if __name__ == "__main__":
335
  jsonify_functions = {
336
  "identity": lambda x: x,
337
  "dataframe": lambda x: (
338
- x.to_dict(orient="records") if isinstance(x, pd.DataFrame) else x
 
 
339
  ),
340
  "reponse_with_citations": lambda x: x,
341
  }
 
335
  jsonify_functions = {
336
  "identity": lambda x: x,
337
  "dataframe": lambda x: (
338
+ x.to_dict(orient="records")
339
+ if isinstance(x, pd.DataFrame) or isinstance(x, pd.Series)
340
+ else x
341
  ),
342
  "reponse_with_citations": lambda x: x,
343
  }
autoqa_chains.py CHANGED
@@ -16,7 +16,7 @@ class AutoQA(BaseModel):
16
  qa_prompt_template = """
17
  Generate 10 insightful questions and their corresponding detailed answers about the key aspects of a specific machine learning research paper.
18
  The focus should be on the paper's objectives, methodology, key findings, and implications for future research or application.
19
- The answers must be based on the content of the research paper, offering clear and comprehensive insights for readers who may not be experts in the field.
20
  Ensure that the questions cover a broad range of topics related to the paper, including but not limited to the introduction, literature review, \
21
  methodology, results, discussion, and conclusions.
22
  The goal is to capture the essence of the paper in a way that is accessible to a broad audience.
 
16
  qa_prompt_template = """
17
  Generate 10 insightful questions and their corresponding detailed answers about the key aspects of a specific machine learning research paper.
18
  The focus should be on the paper's objectives, methodology, key findings, and implications for future research or application.
19
+ The answers must be based on the content of the research paper, offering clear and comprehensive insights for readers.
20
  Ensure that the questions cover a broad range of topics related to the paper, including but not limited to the introduction, literature review, \
21
  methodology, results, discussion, and conclusions.
22
  The goal is to capture the essence of the paper in a way that is accessible to a broad audience.
rough.ipynb ADDED
File without changes
synopsis_chain.py CHANGED
@@ -4,23 +4,25 @@ from langchain_core.output_parsers import StrOutputParser
4
  synopsis_prompt_template = """
5
  Research Paper: {paper}
6
 
7
- Could you provide a concise summary of this paper, highlighting the following key points:
8
-
9
- Objective: Begin by briefly describing the primary goal of the research. What problem is the paper trying to solve, or what hypothesis is it testing? Mention the specific domain of machine learning it pertains to (e.g., supervised learning, unsupervised learning, reinforcement learning, deep learning, etc.).
10
-
11
- Background: Provide a concise overview of the context and motivation behind the research. Why is this problem important? What are the key challenges that previous studies have not addressed, which this paper seeks to overcome?
12
-
13
- Methods: Summarize the methodology used in the study. What are the key techniques, algorithms, or models proposed or evaluated? Mention any novel approach or significant modification to existing methods. Include information on the dataset(s) used, if applicable.
14
-
15
- Results: Highlight the main findings of the paper. What were the outcomes of applying the proposed methods? Include key metrics or statistics that demonstrate the effectiveness, efficiency, or advancements over previous approaches.
16
-
17
- Discussion and Implications: Discuss the significance of the results. What do these findings imply for the field of machine learning? How can they be applied in practice, or what future research directions do they suggest?
18
-
19
- Limitations: Briefly note any limitations or caveats of the study. Are there any specific conditions under which the findings may not hold? What aspects of the research could be improved upon?
20
-
21
- Conclusion: Conclude with a summary of the research paper's contributions to the field of machine learning. Reiterate the importance of the problem addressed and the impact of the findings.
 
22
  """
23
 
 
24
  synopsis_output_parser = StrOutputParser()
25
  synopsis_prompt = PromptTemplate(
26
  template=synopsis_prompt_template,
 
4
  synopsis_prompt_template = """
5
  Research Paper: {paper}
6
 
7
+ Your task is to write a comprehensive and detailed summary of the given research paper in Markdown format.
8
+ The summary should be designed to serve as a standalone document that provides all essential insights from the original paper, allowing readers to understand the core findings, methodologies, and implications without needing to consult the original paper.
9
+ Adhere to the following guidelines to ensure the summary meets the required standards:
10
+
11
+ 1. **Comprehensive Coverage**: Include all key points, findings, methodologies, and conclusions from the research paper. The summary should capture the essence of the paper, including its purpose, research questions, study design, results, and significance.
12
+ 2. **In-depth Methodology Analysis**: Provide a detailed examination of the research paper's methodology. Highlight the design, approach, and techniques with precision and depth, ensuring this section is the focal point of your summary.
13
+ 3. **Independent Writing Style**: Write the summary in your own words, ensuring it reads as an independent article. Do not reference the original author(s) or the paper directly within the text, and avoid phrases that imply direct quotations or attributions.
14
+ 4. **Structured Format**: Utilize Markdown formatting to organize the summary effectively. Use headings, subheadings, and bullet points to structure the content, making it accessible and easy to navigate.
15
+ 5. **Clarity and Precision**: Ensure that the summary is written clearly and concisely, avoiding technical jargon where possible and explaining necessary terms. The goal is to make the summary informative and understandable to readers with a general background in the subject area.
16
+ 6. *Results with References**: Explicitly mention relevant figures or tables when discussing the results. This inclusion should aid in illustrating the paper's findings more vividly and accurately.
17
+
18
+ **Expected Output**:
19
+
20
+ - A Markdown document that adheres to the guidelines provided, effectively summarizing the research paper.
21
+ - The summary should include sections for the introduction, methodology, results, discussion, and conclusion, with paragraphs for explanations and bullet points used to list key findings and implications.
22
+ - The document should be atleast 1,500 words to ensure in-depth coverage.
23
  """
24
 
25
+
26
  synopsis_output_parser = StrOutputParser()
27
  synopsis_prompt = PromptTemplate(
28
  template=synopsis_prompt_template,