{ "cells": [ { "cell_type": "code", "execution_count": 12, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Configuration ok\n" ] } ], "source": [ "from ctransformers import AutoModelForCausalLM, AutoConfig\n", "import utils\n", "import json\n", "from llama_cpp import Llama\n", "\n", "# load model .gguf bằng CTransformers\n", "\n", "\n", "def configure():\n", " path = \"models/theblokeai/Mistral-7B-Instruct-v0.2.Q4_K_M\"\n", " # llm = CTransformers(\n", " # model=path, max_new_tokens=1024, context_length=1024, gpu_layers=20\n", " # )\n", " # llm = AutoModelForCausalLM.from_pretrained(\n", " # path=path,\n", " # model_file=\"mistral-7b-instruct-v0.2.Q4_K_M.gguf\",\n", " # local_files_only=True,\n", " # config = \n", " # )\n", " llm = Llama(\n", " model_path=path+\"/mistral-7b-instruct-v0.2.Q4_K_M.gguf\", # Download the model file first\n", " n_ctx=1024, # The max sequence length to use - note that longer sequence lengths require much more resources\n", " n_threads=4, # The number of CPU threads to use, tailor to your system and the resulting performance\n", " n_batch=1024,\n", " verbose=False, # Verbose = True to see full configuration, but expect output logs on every model call\n", " # n_gpu_layers=35, # The number of layers to offload to GPU, if you have GPU acceleration available\n", " )\n", " db = utils.ArxivChroma()\n", " sqldb = utils.ArxivSQL()\n", " print(\"Configuration ok\")\n", " return llm, sqldb, db\n", "\n", "\n", "model, sqldb, db = configure()" ] }, { "cell_type": "code", "execution_count": 2, "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] 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", " 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": 15, "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", " 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", " 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", " if \"title\" in keys:\n", " results = sqldb.query(title = args['title'],author = args['author'])\n", " print(results)\n", " paper_info = sqldb.query(title = args['title'],author = args['author'])\n", " # if query not found then go crawl brh\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\", None\n", " return result_string, records\n", " # invoke llm and return result" ] }, { "cell_type": "code", "execution_count": 23, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "--------------------------\n", " {\n", " \"keywords\": [\"LSTM model\", \"video analysis\", \"action recognition\"],\n", " \"description\": \"For recognizing actions in videos using Long Short-Term Memory (LSTM) models, you may find the following papers insightful. These studies explore various aspects of action recognition using LSTM: (1) 'Action Recognition with 3D Convolutional Neural Networks and Long Short-Term Memory' by Tran et al., 2015; (2) 'ConvLSTM: A Convolutional Neural Network for Video Recognition' by Shi et al., 2015; (3) 'Using Long-Short Term Memory for Action Recognition in Videos' by Graves, 2013.\"\n", " }\n", "For recognizing actions in videos using Long Short-Term Memory (LSTM) models, you may find the following papers insightful. These studies explore various aspects of action recognition using LSTM: (1) 'Action Recognition with 3D Convolutional Neural Networks and Long Short-Term Memory' by Tran et al., 2015; (2) 'ConvLSTM: A Convolutional Neural Network for Video Recognition' by Shi et al., 2015; (3) 'Using Long-Short Term Memory for Action Recognition in Videos' by Graves, 2013.\n", "['LSTM model', 'video analysis', 'action recognition']\n" ] } ], "source": [ "# 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(prompt=first_prompt,\n", " temperature=0.0) # llama\n", "print(\"--------------------------\")\n", "print(answer)\n", "args = json.loads(utils.trimming(answer))\n", "# print(args)\n", "response(args)" ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "For recognizing actions in videos using Long Short-Term Memory (LSTM) models, you may find the following papers insightful. These studies explore various aspects of action recognition using LSTM: (1) 'Action Recognition with 3D Convolutional Neural Networks and Long Short-Term Memory' by Tran et al., 2015; (2) 'ConvLSTM: A Convolutional Neural Network for Video Recognition' by Shi et al., 2015; (3) 'Using Long-Short Term Memory for Action Recognition in Videos' by Graves, 2013.\n", "['LSTM model', 'video analysis', 'action recognition']\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "Llama.generate: prefix-match hit\n", "\n", "llama_print_timings: load time = 139768.70 ms\n", "llama_print_timings: sample time = 140.16 ms / 412 runs ( 0.34 ms per token, 2939.41 tokens per second)\n", "llama_print_timings: prompt eval time = 0.00 ms / 1 tokens ( 0.00 ms per token, inf tokens per second)\n", "llama_print_timings: eval time = 91570.34 ms / 412 runs ( 222.26 ms per token, 4.50 tokens per second)\n", "llama_print_timings: total time = 93048.98 ms / 413 tokens\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "------------------------\n", "Hello there! I see that you're working on an LSTM model for recognizing actions in videos. I have found some related papers that might be of interest to you.\n", "\n", " 1. The first one is titled \"Action in Mind: A Neural Network Approach to Action Recognition and Segmentation\" by Zahra Gharae. This paper proposes a neural network approach for action recognition and segmentation, which could provide some insights into your work with LSTM models. You can find it at this link: \n", "\n", " 2. Another interesting paper is \"Deep Neural Networks in Video Human Action Recognition: A Review\" by Zihan Wang, Yang Yang, Zhi Liu, and Yifan Zhen. This review discusses the application of deep neural networks for video human action recognition. It could give you a broader perspective on the current state-of-the-art methods in this field. You can access it here: \n", "\n", " 3. Lastly, there's \"3D Convolutional Neural Networks for Ultrasound-Based Silent Speech Interfaces\" by László Tóth and Amin Honarmandi Shandi. Although the title might not seem directly related to your work on LSTM models for action recognition, it does involve the use of 3D convolutional neural networks in video processing, which could still provide valuable insights. You can read it at this link: \n", "\n", " I hope you find these resources helpful! Let me know if there's anything else I can assist you with. Have a great day!\n" ] } ], "source": [ "# test response, second step\n", "input_prompt = \"I'm working on a LSTM model to recognize actions in a video, recommend me some related papers\"\n", "args = {\n", " \"keywords\": [\"LSTM model\", \"video analysis\", \"action recognition\"],\n", " \"description\": \"For recognizing actions in videos using Long Short-Term Memory (LSTM) models, you may find the following papers insightful. These studies explore various aspects of action recognition using LSTM: (1) 'Action Recognition with 3D Convolutional Neural Networks and Long Short-Term Memory' by Tran et al., 2015; (2) 'ConvLSTM: A Convolutional Neural Network for Video Recognition' by Shi et al., 2015; (3) 'Using Long-Short Term Memory for Action Recognition in Videos' by Graves, 2013.\"\n", " }\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\n", " answer = model(prompt=output_prompt,\n", " temperature=0.0,\n", " max_tokens=1024,\n", " ) # llama\n", " print(\"------------------------\")\n", " print(answer['choices'][0]['text'])" ] }, { "cell_type": "code", "execution_count": 16, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "--------------------------\n", "------------------------\n", "Hello there! I see that you're working on an LSTM model for recognizing actions in videos. I have some related papers that might be of interest to you.\n", "\n", " 1. The first paper is titled \"Deep Neural Networks in Video Human Action Recognition: A Review\" by Zihan Wang, Yang Yang, Zhi Liu, and Yifan Zhen. This review discusses the application of deep neural networks in recognizing human actions from videos. You can find it at this link: \n", "\n", " 2. The second paper is titled \"A Video Recognition Method by using Adaptive Structural Learning of Long Short Term Memory based Deep Belief Network\" by Shin Kamada and Takumi Ichimur. This study proposes a method for video recognition using an adaptive structural learning LSTM-DBN model. You can access it at this link: \n", "\n", " 3. Lastly, there's the paper \"3D Convolutional Neural Networks for Ultrasound-Based Silent Speech Interfaces\" by László Tóth and Amin Honarmandi Shandi. Although it focuses on silent speech interfaces using ultrasound videos, it also employs 3D CNNs and LSTM networks for action recognition. You can read it here: \n", "\n", " I hope these resources will help you in your research! Let me know if there's anything else I can assist you with. Have a great day!\n" ] } ], "source": [ "# full chain\n", "# inference time depends on hardware ability :')\n", "# with CPU i7-8750H, 16GB RAM and no GPU cuda, expect inference time up to 5-6 min\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, answer is a string\n", "answer = model(prompt=first_prompt,\n", " temperature=0.0,\n", " max_tokens=512,\n", " ) # llama, answer is a dict\n", "print(\"--------------------------\")\n", "# print(answer['choices'][0]['text']) # see middle answer\n", "args = json.loads(utils.trimming(answer['choices'][0]['text']))\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(prompt=output_prompt,\n", " temperature=0.0,\n", " max_tokens=1024,\n", " ) # llama, answer is a dict\n", " print(\"--------------------------\")\n", " print(answer['choices'][0]['text'])" ] }, { "cell_type": "code", "execution_count": 17, "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.11.2" } }, "nbformat": 4, "nbformat_minor": 2 }