{ "cells": [ { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "C:\\Users\\Admin\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python310\\site-packages\\tqdm\\auto.py:21: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html\n", " from .autonotebook import tqdm as notebook_tqdm\n" ] } ], "source": [ "import google.generativeai as genai\n", "import utils\n", "import os\n", "from getpass import getpass\n", "import json" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [], "source": [ "os.environ['GEMINI_API_KEY'] = getpass(\"Your gemini API key: \")\n", "\n", "def configure():\n", " sqldb = utils.ArxivSQL()\n", " db = utils.ArxivChroma()\n", " gemini_api_key = os.getenv(\"GEMINI_API_KEY\")\n", " if not gemini_api_key:\n", " raise ValueError(\n", " \"Gemini API Key not provided. Please provide GEMINI_API_KEY as an environment variable\"\n", " )\n", " genai.configure(api_key=gemini_api_key)\n", " config = genai.GenerationConfig(max_output_tokens=1024,\n", " temperature=0.5)\n", " model = genai.GenerativeModel(\"gemini-pro\",\n", " generation_config=config)\n", " return model, sqldb, db\n", "\n", "model, sqldb, db = configure()" ] }, { "cell_type": "code", "execution_count": 12, "metadata": {}, "outputs": [], "source": [ "def extract_keyword_prompt(query):\n", " \"\"\"A prompt that return a JSON block as arguments for querying database\"\"\"\n", "\n", " prompt = (\n", " \"\"\"[INST] SYSTEM: You are an assistant that choose only one action below based on guest question.\n", " 1. If the guest question is asking for some specific document or article, you need to respond the information in JSON format with 2 keys \"title\", \"author\" if found any above. The authors are separated with the word 'and'. \n", " 2. If the guest question is asking for relevant informations about a topic, you need to respond the information in JSON format with 2 keys \"keywords\", \"description\", include a list of keywords represent the main academic topic, \\\n", " and a description about the main topic. You may paraphrase the keywords to add more. \\\n", " 3. If the guest is not asking for any informations or documents, you need to respond with a polite answer in JSON format with 1 key \"answer\".\n", " QUESTION: '{query}'\n", " [/INST]\n", " ANSWER: \n", " \"\"\"\n", " ).format(query=query)\n", "\n", " return prompt\n", "\n", "def make_answer_prompt(input, contexts):\n", " \"\"\"A prompt that return the final answer, based on the queried context\"\"\"\n", "\n", " prompt = (\n", " \"\"\"[INST] You are an library assistant that help to search articles and documents based on user's question.\n", " From guest's question, you have found some records and documents that may help. Now you need to answer the guest with the information found.\n", " If no information found in the database, you may generate some other recommendation related to user's question using your own knowledge. You should answer in a conversational form politely.\n", " QUESTION: '{input}'\n", " INFORMATION: '{contexts}'\n", " [/INST]\n", " ANSWER:\n", " \"\"\"\n", " ).format(input=input, contexts=contexts)\n", "\n", " return prompt" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [], "source": [ "def response(args):\n", " \"\"\"Create response context, based on input arguments\"\"\"\n", " keys = list(dict.keys(args))\n", " if \"answer\" in keys:\n", " return args['answer'], None # trả lời trực tiếp\n", " \n", " if \"keywords\" in keys:\n", " # perform query\n", " query_texts = args[\"description\"]\n", " keywords = args[\"keywords\"]\n", " results = db.query_relevant(keywords=keywords, query_texts=query_texts)\n", " # print(results)\n", " ids = results['metadatas'][0]\n", " if len(ids) == 0:\n", " # go crawl some\n", " new_records = utils.crawl_arxiv(keyword_list=keywords)\n", " if type(new_records) == str:\n", " return \"Error occured, information not found\", new_records\n", " db.add(new_records)\n", " sqldb.add(new_records)\n", " results = db.query_relevant(keywords=keywords, query_texts=query_texts)\n", " ids = results['metadatas'][0]\n", " paper_id = [id['paper_id'] for id in ids]\n", " paper_info = sqldb.query_id(paper_id)\n", " # print(paper_info)\n", " records = [] # get title (2), author (3), link (6)\n", " result_string = \"\"\n", " for i in range(len(paper_id)):\n", " result_string += \"Title: {}, Author: {}, Link: {}\".format(paper_info[i][2],paper_info[i][3],paper_info[i][6])\n", " records.append([paper_info[i][2],paper_info[i][3],paper_info[i][6]])\n", " # process results:\n", " return result_string, records\n", " # invoke llm and return result\n", "\n", " if \"title\" in keys:\n", " title = args['title']\n", " authors = utils.process_authors_list(args['author'])\n", " paper_info = sqldb.query(title = title,author = authors)\n", " # if query not found then go crawl brh\n", " # print(paper_info)\n", "\n", " if len(paper_info) == 0:\n", " new_records = utils.crawl_exact_paper(title=title,author=authors)\n", " if type(new_records) == str:\n", " # print(new_records)\n", " return \"Error occured, information not found\", \"Information not found\"\n", " db.add(new_records)\n", " sqldb.add(new_records)\n", " paper_info = sqldb.query(title = title,author = authors)\n", " # -------------------------------------\n", " records = [] # get title (2), author (3), link (6)\n", " result_string = \"\"\n", " for i in range(len(paper_info)):\n", " result_string += \"Title: {}, Author: {}, Link: {}\".format(paper_info[i][2],paper_info[i][3],paper_info[i][6])\n", " records.append([paper_info[i][2],paper_info[i][3],paper_info[i][6]])\n", " # process results:\n", " if len(result_string) == 0:\n", " return \"Information not found\", \"Information not found\"\n", " return result_string, records\n", " # invoke llm and return result" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "--------------------------\n", "{\n", " \"keywords\": [\"Long short-term memory\", \"Video action recognition\", \"Convolutional neural networks\"],\n", " \"description\": \"Long short-term memory (LSTM) is a type of recurrent neural network (RNN) that is used for processing sequential data. It is particularly well-suited for tasks such as video action recognition, where the order of the frames in the video is important. Convolutional neural networks (CNNs) are another type of neural network that is often used for image and video processing. They are particularly good at learning the spatial features of images and videos. LSTM networks and CNNs can be used together to create powerful models for video action recognition.\"\n", "}\n" ] }, { "data": { "text/plain": [ "('Title: LiteLSTM Architecture for Deep Recurrent Neural Networks, Author: Nelly Elsayed, Zag ElSayed, Anthony S. Maid, Link: http://arxiv.org/pdf/2201.11624v2Title: AdderNet and its Minimalist Hardware Design for Energy-Efficient Artificial Intelligence, Author: Yunhe Wang, Mingqiang Huang, Kai Han, Hanting Chen, Wei Zhang, Chunjing Xu, Dacheng Ta, Link: http://arxiv.org/pdf/2101.10015v2Title: Audio Tagging on an Embedded Hardware Platform, Author: Gabriel Bibbo, Arshdeep Singh, Mark D. Plumble, Link: http://arxiv.org/pdf/2306.09106v1',\n", " [['LiteLSTM Architecture for Deep Recurrent Neural Networks',\n", " 'Nelly Elsayed, Zag ElSayed, Anthony S. Maid',\n", " 'http://arxiv.org/pdf/2201.11624v2'],\n", " ['AdderNet and its Minimalist Hardware Design for Energy-Efficient Artificial Intelligence',\n", " 'Yunhe Wang, Mingqiang Huang, Kai Han, Hanting Chen, Wei Zhang, Chunjing Xu, Dacheng Ta',\n", " 'http://arxiv.org/pdf/2101.10015v2'],\n", " ['Audio Tagging on an Embedded Hardware Platform',\n", " 'Gabriel Bibbo, Arshdeep Singh, Mark D. Plumble',\n", " 'http://arxiv.org/pdf/2306.09106v1']])" ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import json\n", "# test first step\n", "# input_prompt = input()\n", "input_prompt = \"I'm working on a LSTM model to recognize actions in a video, recommend me some related papers\"\n", "first_prompt = extract_keyword_prompt(input_prompt)\n", "# print(first_prompt)\n", "# answer = model.invoke(first_prompt,\n", "# temperature=0.0) # ctrans\n", "answer = model.generate_content(first_prompt).text\n", "print(\"--------------------------\")\n", "print(answer)\n", "args = json.loads(utils.trimming(answer))\n", "# print(args)\n", "response(args)" ] }, { "cell_type": "code", "execution_count": 17, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "near \")\": syntax error\n", "Error query: select * from arxivsql where id in )\n", "\n" ] } ], "source": [ "# test response, second step\n", "input_prompt = \"Can you suggest some key papers on model predictive control for nonlinear systems, and are there any recent reviews on the application of control theory to robotics?\"\n", "args = \"{\\n \\\"keywords\\\": [\\n \\\"Power Electronics\\\",\\n \\\"Renewable Energy Systems\\\",\\n \\\"High-Frequency Power Converters\\\",\\n \\\"Power Electronics Applications\\\",\\n \\\"Renewable Energy Sources\\\"\\n ],\\n \\\"description\\\": \\\"Power electronics is a branch of electrical engineering that deals with the conversion, control, and conditioning of electrical power. It is used in a wide variety of applications, including power generation, transmission, distribution, and utilization. Renewable energy systems are systems that generate electricity from renewable sources, such as solar, wind, and hydro power. Power electronics is used in renewable energy systems to convert the electrical output of the renewable source into a form that can be used by the grid or by consumers.\\\"\\n}\"\n", "args = json.loads(args)\n", "contexts, results = response(args)\n", "if not results:\n", " # direct answer\n", " print(contexts)\n", "else:\n", " output_prompt = make_answer_prompt(input_prompt,contexts)\n", " answer = model.generate_content(output_prompt).text\n", " print(answer)" ] }, { "cell_type": "code", "execution_count": 14, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "{'desired': 'Natural Language Processing (Computer Science)', 'question': 'What are some recent papers on deep learning architectures for text classification, and can you recommend any surveys or reviews on the topic?'}\n" ] } ], "source": [ "with open(\"test_questions.txt\",\"r\") as infile:\n", " data = json.load(infile)\n", "print(data[0])" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "--------------------------\n", "```json\n", "{\n", " \"keywords\": [\n", " \"Video Recognition\",\n", " \"LSTM\",\n", " \"Action Recognition\",\n", " \"Deep Learning\"\n", " ],\n", " \"description\": \"Action recognition in videos is a challenging task due to the large variations in appearance, scale, and viewpoint. LSTM models have been shown to be effective for this task, as they can learn long-term dependencies in the data. Some related papers that you may find useful include:\\n\\n1. [Long-term recurrent convolutional networks for visual recognition](https://arxiv.org/abs/1411.4389) by Karen Simonyan and Andrew Zisserman\\n2. [Two-stream convolutional networks for action recognition in videos](https://arxiv.org/abs/1406.2199) by Karen Simonyan and Andrew Zisserman\\n3. [LSTM networks for video action recognition](https://arxiv.org/abs/1502.04793) by Jeff Donahue, Lisa Anne Hendricks, Sergio Guadarrama, Marcus Rohrbach, Subhashini Venugopalan, Kate Saenko, and Trevor Darrell\"\n", "}\n", "```\n", "--------------------------\n", "Of course, here are a few papers that you may find helpful for your LSTM model to recognize actions in a video:\n", "\n", "1. **ActNetFormer: Transformer-ResNet Hybrid Method for Semi-Supervised Action Recognition in Videos** by Sharana Dharshikgan Suresh Dass, Hrishav Bakul Barua, Ganesh Krishnasamy, Raveendran Paramesran, Raphael C. -W. Pha. (link: http://arxiv.org/pdf/2404.06243v1)\n", "\n", "2. **Deep Neural Networks in Video Human Action Recognition: A Review** by Zihan Wang, Yang Yang, Zhi Liu, Yifan Zhen. (link: http://arxiv.org/pdf/2305.15692v1)\n", "\n", "3. **3D Convolutional Neural Networks for Ultrasound-Based Silent Speech Interfaces** by László Tóth, Amin Honarmandi Shandi. (link: http://arxiv.org/pdf/2104.11532v1)\n", "\n", "These papers provide a good overview of the state-of-the-art in action recognition using LSTM models. I hope you find them helpful! Let me know if you have any other questions.\n" ] } ], "source": [ "# full chain\n", "# input_prompt = input()\n", "input_prompt = \"I'm working on a LSTM model to recognize actions in a video, recommend me some related papers\"\n", "first_prompt = extract_keyword_prompt(input_prompt)\n", "# print(first_prompt)\n", "# answer = model.invoke(first_prompt,\n", "# temperature=0.0) # ctrans\n", "answer = model.generate_content(first_prompt).text\n", "print(\"--------------------------\")\n", "print(answer)\n", "args = json.loads(utils.trimming(answer))\n", "# print(args)\n", "contexts, results = response(args)\n", "if not results:\n", " # direct answer\n", " print(contexts)\n", "else:\n", " output_prompt = make_answer_prompt(input_prompt,contexts)\n", " # answer = model.invoke(output_prompt,\n", " # temperature=0.3) # ctrans, answer is a string\n", " answer = model.generate_content(output_prompt).text # llama, answer is a dict\n", " print(\"--------------------------\")\n", " print(answer)" ] }, { "cell_type": "code", "execution_count": 15, "metadata": {}, "outputs": [], "source": [ "def full_chain_single_question(input_prompt):\n", " try:\n", " first_prompt = extract_keyword_prompt(input_prompt)\n", " temp_answer = model.generate_content(first_prompt).text\n", "\n", " args = json.loads(utils.trimming(temp_answer))\n", " contexts, results = response(args)\n", " if not results:\n", " print(contexts)\n", " else:\n", " output_prompt = make_answer_prompt(input_prompt,contexts)\n", " answer = model.generate_content(output_prompt).text\n", " return temp_answer, answer\n", " except Exception as e:\n", " return temp_answer, \"Error occured: \" + str(e)" ] }, { "cell_type": "code", "execution_count": 16, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[]\n", "[]\n", "Error: timed out\n", "[]\n", "near \")\": syntax error\n", "Error query: select * from arxivsql where id in )\n", "\n" ] } ], "source": [ "test_log = []\n", "for t in data:\n", " temp_answer, answer = full_chain_single_question(t['question'])\n", " test_log.append({'desired topic':t['desired'],\n", " 'question':t['question'],\n", " 'first answer':temp_answer,\n", " 'final answer':answer})\n", "with open(\"test_results.json\",\"w\") as outfile:\n", " json.dump(test_log,outfile)" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "!pip freeze > requirements.txt" ] } ], "metadata": { "kernelspec": { "display_name": "langchain_llms", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.11" } }, "nbformat": 4, "nbformat_minor": 2 }