CoolFace
Apppublic

yixin6178/ChatPaper

sourceHugging Facegpl-3.0updated 4y agoView on Hugging Face
6likes
App README

ChatPaper

Yet another paper reading assistant, similar as ChatPDF.

Setup

  1. 1.Install dependencies (tested on Python 3.9)
bash
 pip install -r requirements.txt
  1. 1.Setup GROBID local server
bash
bash serve_grobid.sh
  1. 1.Setup backend
bash
python backend.py --port 5000 --host localhost
  1. 1.Frontend
bash
streamlit run frontend.py --server.port 8502 --server.host localhost

Demo Example

  • Prepare an OpenAI API key and then upload a PDF to start chatting with the paper.

image-20230318232056584

Implementation Details

  • Greedy Dynamic Context: Since the max token limit, we select the most relevant paragraphs in the pdf for each user query. Our model split the text input and output by the chatbot into four part: systemprompt (S), dynamicsource (D), userquery (Q), and modelanswer(A). So upon each query, we first rank all the paragraphs by using a sentenceembedding model to calculate the similarity distance between the query embedding and all source embeddings. Then we compose the dynamicsource using a greedy method by to gradually push all relevant paragraphs (maintaing D <= MAXTOKENLIMIT - Q - S - A - SOME_OVERHEAD).
  • Context Truncating: When context is too long, we now we simply pop out the first QA-pair.

TODO

  • [ ] Context Condense: how to deal with long context? maybe we can tune a soft prompt to condense the context
  • [ ] Poping context out based on similarity

References

  1. 1.SciPDF Parser: https://github.com/titipata/scipdf_parser
  2. 2.St-chat: https://github.com/AI-Yash/st-chat
  3. 3.Sentence-transformers: https://github.com/UKPLab/sentence-transformers
  4. 4.ChatGPT Chatbot Wrapper: https://github.com/acheong08/ChatGPT