{"cells":[{"cell_type":"code","execution_count":1,"metadata":{"executionInfo":{"elapsed":476,"status":"ok","timestamp":1720679526275,"user":{"displayName":"HUANG DONGHAO _","userId":"00977795705617022768"},"user_tz":-480},"id":"uWKRSV6eZsCn"},"outputs":[],"source":["%load_ext autoreload\n","%autoreload 2"]},{"cell_type":"code","execution_count":2,"metadata":{"application/vnd.databricks.v1+cell":{"cellMetadata":{"byteLimit":2048000,"rowLimit":10000},"inputWidgets":{},"nuid":"6d394937-6c99-4a7c-9d32-7600a280032f","showTitle":false,"title":""},"colab":{"base_uri":"https://localhost:8080/"},"executionInfo":{"elapsed":5,"status":"ok","timestamp":1720679529345,"user":{"displayName":"HUANG DONGHAO _","userId":"00977795705617022768"},"user_tz":-480},"id":"G5pNu3zgZBrL","outputId":"160a554f-fb08-4aa0-bc00-0422fb7c1fac"},"outputs":[{"name":"stdout","output_type":"stream","text":["workding dir: d:\\code\\projects\\rapget-translation\n"]}],"source":["import os\n","import sys\n","from pathlib import Path\n","\n","# check if workding_dir is in local variables\n","if \"workding_dir\" not in locals():\n"," workding_dir = str(Path.cwd().parent)\n","\n","os.chdir(workding_dir)\n","sys.path.append(workding_dir)\n","print(\"workding dir:\", workding_dir)"]},{"cell_type":"code","execution_count":3,"metadata":{"application/vnd.databricks.v1+cell":{"cellMetadata":{"byteLimit":2048000,"rowLimit":10000},"inputWidgets":{},"nuid":"9f67ec60-2f24-411c-84eb-0dd664b44775","showTitle":false,"title":""},"colab":{"base_uri":"https://localhost:8080/"},"executionInfo":{"elapsed":3,"status":"ok","timestamp":1720679529345,"user":{"displayName":"HUANG DONGHAO _","userId":"00977795705617022768"},"user_tz":-480},"id":"hPCC-6m7ZBrM","outputId":"c7aa2c96-5e99-440a-c148-201d79465ff9"},"outputs":[{"name":"stdout","output_type":"stream","text":["loading env vars from: d:\\code\\projects\\rapget-translation\\.env\n"]},{"data":{"text/plain":["True"]},"execution_count":3,"metadata":{},"output_type":"execute_result"}],"source":["from dotenv import find_dotenv, load_dotenv\n","\n","found_dotenv = find_dotenv(\".env\")\n","\n","if len(found_dotenv) == 0:\n"," found_dotenv = find_dotenv(\".env.example\")\n","print(f\"loading env vars from: {found_dotenv}\")\n","load_dotenv(found_dotenv, override=True)"]},{"cell_type":"code","execution_count":4,"metadata":{"application/vnd.databricks.v1+cell":{"cellMetadata":{"byteLimit":2048000,"rowLimit":10000},"inputWidgets":{},"nuid":"f1597656-8042-4878-9d3b-9ebfb8dd86dc","showTitle":false,"title":""},"colab":{"base_uri":"https://localhost:8080/"},"executionInfo":{"elapsed":3,"status":"ok","timestamp":1720679529345,"user":{"displayName":"HUANG DONGHAO _","userId":"00977795705617022768"},"user_tz":-480},"id":"1M3IraVtZBrM","outputId":"29ab35f6-2970-4ade-d85d-3174acf8cda0"},"outputs":[{"name":"stdout","output_type":"stream","text":["01-ai/Yi-1.5-9B-Chat None True datasets/mac/mac.tsv results/mac-results_few_shots_4bit.csv False 300\n"]}],"source":["import os\n","\n","model_name = os.getenv(\"MODEL_NAME\")\n","adapter_name_or_path = os.getenv(\"ADAPTER_NAME_OR_PATH\")\n","load_in_4bit = os.getenv(\"LOAD_IN_4BIT\") == \"true\"\n","data_path = os.getenv(\"DATA_PATH\")\n","results_path = os.getenv(\"RESULTS_PATH\")\n","use_english_datasets = os.getenv(\"USE_ENGLISH_DATASETS\") == \"true\"\n","max_new_tokens = int(os.getenv(\"MAX_NEW_TOKENS\", 2048))\n","\n","print(model_name, adapter_name_or_path, load_in_4bit, data_path, results_path, use_english_datasets, max_new_tokens)"]},{"cell_type":"code","execution_count":5,"metadata":{"application/vnd.databricks.v1+cell":{"cellMetadata":{"byteLimit":2048000,"rowLimit":10000},"inputWidgets":{},"nuid":"b2a43943-9324-4839-9a47-cfa72de2244b","showTitle":false,"title":""},"colab":{"base_uri":"https://localhost:8080/"},"executionInfo":{"elapsed":564,"status":"ok","timestamp":1720679529907,"user":{"displayName":"HUANG DONGHAO _","userId":"00977795705617022768"},"user_tz":-480},"id":"UgMvt6dIZBrM","outputId":"ce37581c-fd26-46c2-ad87-d933d99f68f7"},"outputs":[{"name":"stdout","output_type":"stream","text":["Python 3.11.9\n","Name: torch\n","Version: 2.4.0+cu124\n","Summary: Tensors and Dynamic neural networks in Python with strong GPU acceleration\n","Home-page: https://pytorch.org/\n","Author: PyTorch Team\n","Author-email: packages@pytorch.org\n","License: BSD-3\n","Location: C:\\Users\\dongh\\.conda\\envs\\rapget\\Lib\\site-packages\n","Requires: filelock, fsspec, jinja2, networkx, sympy, typing-extensions\n","Required-by: accelerate, bitsandbytes, peft, torchaudio, torchvision\n","---\n","Name: transformers\n","Version: 4.43.3\n","Summary: State-of-the-art Machine Learning for JAX, PyTorch and TensorFlow\n","Home-page: https://github.com/huggingface/transformers\n","Author: The Hugging Face team (past and future) with the help of all our contributors (https://github.com/huggingface/transformers/graphs/contributors)\n","Author-email: transformers@huggingface.co\n","License: Apache 2.0 License\n","Location: C:\\Users\\dongh\\.conda\\envs\\rapget\\Lib\\site-packages\n","Requires: filelock, huggingface-hub, numpy, packaging, pyyaml, regex, requests, safetensors, tokenizers, tqdm\n","Required-by: peft\n","CPU times: total: 0 ns\n","Wall time: 8.35 s\n"]}],"source":["%%time\n","os.environ[\"TOKENIZERS_PARALLELISM\"] = \"true\"\n","\n","!python --version\n","!pip show torch transformers"]},{"cell_type":"code","execution_count":6,"metadata":{"colab":{"base_uri":"https://localhost:8080/"},"executionInfo":{"elapsed":1685,"status":"ok","timestamp":1720679531591,"user":{"displayName":"HUANG DONGHAO _","userId":"00977795705617022768"},"user_tz":-480},"id":"ZuS_FsLyZBrN","outputId":"2cba0105-c505-4395-afbd-2f2fee6581d0"},"outputs":[{"name":"stderr","output_type":"stream","text":["c:\\Users\\dongh\\.conda\\envs\\rapget\\Lib\\site-packages\\threadpoolctl.py:1214: RuntimeWarning: \n","Found Intel OpenMP ('libiomp') and LLVM OpenMP ('libomp') loaded at\n","the same time. Both libraries are known to be incompatible and this\n","can cause random crashes or deadlocks on Linux when loaded in the\n","same Python program.\n","Using threadpoolctl may cause crashes or deadlocks. For more\n","information and possible workarounds, please see\n"," https://github.com/joblib/threadpoolctl/blob/master/multiple_openmp.md\n","\n"," warnings.warn(msg, RuntimeWarning)\n","[nltk_data] Downloading package wordnet to\n","[nltk_data] C:\\Users\\dongh\\AppData\\Roaming\\nltk_data...\n","[nltk_data] Package wordnet is already up-to-date!\n","[nltk_data] Downloading package punkt to\n","[nltk_data] C:\\Users\\dongh\\AppData\\Roaming\\nltk_data...\n","[nltk_data] Package punkt is already up-to-date!\n","[nltk_data] Downloading package omw-1.4 to\n","[nltk_data] C:\\Users\\dongh\\AppData\\Roaming\\nltk_data...\n","[nltk_data] Package omw-1.4 is already up-to-date!\n"]},{"name":"stdout","output_type":"stream","text":["loading: d:\\code\\projects\\rapget-translation\\eval_modules\\calc_repetitions.py\n","loading d:\\code\\projects\\rapget-translation\\llm_toolkit\\translation_utils.py\n"]},{"name":"stderr","output_type":"stream","text":["[nltk_data] Downloading package wordnet to\n","[nltk_data] C:\\Users\\dongh\\AppData\\Roaming\\nltk_data...\n","[nltk_data] Package wordnet is already up-to-date!\n","[nltk_data] Downloading package punkt to\n","[nltk_data] C:\\Users\\dongh\\AppData\\Roaming\\nltk_data...\n","[nltk_data] Package punkt is already up-to-date!\n","[nltk_data] Downloading package omw-1.4 to\n","[nltk_data] C:\\Users\\dongh\\AppData\\Roaming\\nltk_data...\n","[nltk_data] Package omw-1.4 is already up-to-date!\n"]},{"name":"stdout","output_type":"stream","text":["CUDA is available, we have found 1 GPU(s)\n","NVIDIA GeForce RTX 4080 Laptop GPU\n","CUDA version: 12.4\n"]}],"source":["from llm_toolkit.llm_utils import *\n","from llm_toolkit.translation_utils import *\n","\n","device = check_gpu()"]},{"cell_type":"code","execution_count":7,"metadata":{},"outputs":[{"name":"stdout","output_type":"stream","text":["loading train/test data files\n","DatasetDict({\n"," train: Dataset({\n"," features: ['chinese', 'english'],\n"," num_rows: 4528\n"," })\n"," test: Dataset({\n"," features: ['chinese', 'english'],\n"," num_rows: 1133\n"," })\n","})\n"]}],"source":["datasets = load_translation_dataset(data_path)"]},{"cell_type":"code","execution_count":8,"metadata":{},"outputs":[],"source":["os.getenv(\"OPENAI_MODEL\")\n","base_url = os.getenv(\"OPENAI_BASE_URL\") or None"]},{"cell_type":"code","execution_count":9,"metadata":{},"outputs":[{"name":"stdout","output_type":"stream","text":["--------------------------------------------------\n","chinese: 那刘姥姥先听见告艰苦,只当是没想头了, 又听见给他二十两银子,喜的眉开眼笑道:“我们也知道艰难的,但只俗语说的:‘瘦死的骆驼比马还大’呢。\n","--------------------------------------------------\n","english: When Grannie Liu heard Xi-feng talk about 'difficulties' she concluded that there was no hope. Her delight and the way in which her face lit up with pleasure when she heard that she was, after all, to be given twenty taels of silver can be imagined. 'We knew you had your troubles,' she said, 'but as the saying goes, 'A starved camel is bigger than a fat horse.'\n","--------------------------------------------------\n","chinese: 后来她不挣扎了,对我说,混蛋,你要把我怎么办。\n","--------------------------------------------------\n","english: After a while, she no longer struggled and said, You bastard! What are you going to do with me?\n"]}],"source":["eval_dataset = datasets[\"test\"].select([260, 908])\n","print_row_details(eval_dataset.to_pandas(), range(len(eval_dataset)))"]},{"cell_type":"code","execution_count":10,"metadata":{},"outputs":[{"name":"stdout","output_type":"stream","text":["You will be given a Chinese sentence to translate. If it is an incomplete sentence, or if you are unsure about the meaning, simply copy the input text as your output. Do not output any additional sentence such as explanation or reasoning.\n","\n","Example Translations:\n","Chinese: 全仗着狐仙搭救。\n","English: Because I was protected by a fox fairy.\n","Chinese: 过后,表哥告诉她俩,这人是导演,在外国留过学的,还会编剧,今天拍的这戏,就是他自编自导的。\n","English: He was the director, the cousin later told them. He had studied abroad and was also a screenwriter; in fact he had written and directed the scene they had earlier seen being filmed.\n","Chinese: 这凤姐忽然想起一件事来,便向窗外叫:“蓉儿回来!”\n","English: Xi-feng suddenly seemed to remember something, and called to him through the window, 'Rong, come back!'\n","Chinese: 三个老红卫兵走到叶文洁面前,面对着她站成了一排——当年,她们也是这样面对叶哲泰的——试图再现那早已忘却的尊严,但她们当年那魔鬼般的精神力量显然已荡然无存。\n","English: The three old Red Guards stood in front of Ye in a row—just like they had stood against Ye Zhetai—trying to recapture their long-forgotten dignity. But the demonic spiritual energy that had once propelled them was gone.\n","Chinese: 程先生照单全收,都是一个“谢”字,然后问王琦瑶有什么话说。\n","English: Mr. Cheng accepted their toast with equanimity and a 'thank you.' Then, turning to Wang Qiyao, he asked if she had anything to say.\n","\n","Chinese: {input}\n","English:\n"]}],"source":["translation_prompt = get_few_shot_prompt(datasets[\"train\"], num_shots=5)\n","print(translation_prompt)"]},{"cell_type":"code","execution_count":11,"metadata":{},"outputs":[{"name":"stdout","output_type":"stream","text":["\u001b[32;1m\u001b[1;3m[chain/start]\u001b[0m \u001b[1m[chain:RunnableSequence] Entering Chain run with input:\n","\u001b[0m{\n"," \"input\": \"那刘姥姥先听见告艰苦,只当是没想头了, 又听见给他二十两银子,喜的眉开眼笑道:“我们也知道艰难的,但只俗语说的:‘瘦死的骆驼比马还大’呢。\"\n","}\n","\u001b[32;1m\u001b[1;3m[chain/start]\u001b[0m \u001b[1m[chain:RunnableSequence > prompt:ChatPromptTemplate] Entering Prompt run with input:\n","\u001b[0m{\n"," \"input\": \"那刘姥姥先听见告艰苦,只当是没想头了, 又听见给他二十两银子,喜的眉开眼笑道:“我们也知道艰难的,但只俗语说的:‘瘦死的骆驼比马还大’呢。\"\n","}\n","\u001b[36;1m\u001b[1;3m[chain/end]\u001b[0m \u001b[1m[chain:RunnableSequence > prompt:ChatPromptTemplate] [1ms] Exiting Prompt run with output:\n","\u001b[0m[outputs]\n","\u001b[32;1m\u001b[1;3m[llm/start]\u001b[0m \u001b[1m[chain:RunnableSequence > llm:ChatOpenAI] Entering LLM run with input:\n","\u001b[0m{\n"," \"prompts\": [\n"," \"System: You are a helpful assistant that translates Chinese to English.\\nHuman: You will be given a Chinese sentence to translate. If it is an incomplete sentence, or if you are unsure about the meaning, simply copy the input text as your output. Do not output any additional sentence such as explanation or reasoning.\\n\\nExample Translations:\\nChinese: 全仗着狐仙搭救。\\nEnglish: Because I was protected by a fox fairy.\\nChinese: 过后,表哥告诉她俩,这人是导演,在外国留过学的,还会编剧,今天拍的这戏,就是他自编自导的。\\nEnglish: He was the director, the cousin later told them. He had studied abroad and was also a screenwriter; in fact he had written and directed the scene they had earlier seen being filmed.\\nChinese: 这凤姐忽然想起一件事来,便向窗外叫:“蓉儿回来!”\\nEnglish: Xi-feng suddenly seemed to remember something, and called to him through the window, 'Rong, come back!'\\nChinese: 三个老红卫兵走到叶文洁面前,面对着她站成了一排——当年,她们也是这样面对叶哲泰的——试图再现那早已忘却的尊严,但她们当年那魔鬼般的精神力量显然已荡然无存。\\nEnglish: The three old Red Guards stood in front of Ye in a row—just like they had stood against Ye Zhetai—trying to recapture their long-forgotten dignity. But the demonic spiritual energy that had once propelled them was gone.\\nChinese: 程先生照单全收,都是一个“谢”字,然后问王琦瑶有什么话说。\\nEnglish: Mr. Cheng accepted their toast with equanimity and a 'thank you.' Then, turning to Wang Qiyao, he asked if she had anything to say.\\n\\nChinese: 那刘姥姥先听见告艰苦,只当是没想头了, 又听见给他二十两银子,喜的眉开眼笑道:“我们也知道艰难的,但只俗语说的:‘瘦死的骆驼比马还大’呢。\\nEnglish:\"\n"," ]\n","}\n","\u001b[36;1m\u001b[1;3m[llm/end]\u001b[0m \u001b[1m[chain:RunnableSequence > llm:ChatOpenAI] [1.45s] Exiting LLM run with output:\n","\u001b[0m{\n"," \"generations\": [\n"," [\n"," {\n"," \"text\": \"That Liu Laolao first heard about the hardships and thought it was hopeless, then heard about the twenty taels of silver and smiled with joy, saying, \\\"We also know about difficulties, but as the saying goes: 'A dead camel is still bigger than a horse.'\\\"\",\n"," \"generation_info\": {\n"," \"finish_reason\": \"stop\",\n"," \"logprobs\": null\n"," },\n"," \"type\": \"ChatGeneration\",\n"," \"message\": {\n"," \"lc\": 1,\n"," \"type\": \"constructor\",\n"," \"id\": [\n"," \"langchain\",\n"," \"schema\",\n"," \"messages\",\n"," \"AIMessage\"\n"," ],\n"," \"kwargs\": {\n"," \"content\": \"That Liu Laolao first heard about the hardships and thought it was hopeless, then heard about the twenty taels of silver and smiled with joy, saying, \\\"We also know about difficulties, but as the saying goes: 'A dead camel is still bigger than a horse.'\\\"\",\n"," \"response_metadata\": {\n"," \"token_usage\": {\n"," \"completion_tokens\": 56,\n"," \"prompt_tokens\": 484,\n"," \"total_tokens\": 540\n"," },\n"," \"model_name\": \"gpt-4o-mini-2024-07-18\",\n"," \"system_fingerprint\": \"fp_0f03d4f0ee\",\n"," \"finish_reason\": \"stop\",\n"," \"logprobs\": null\n"," },\n"," \"type\": \"ai\",\n"," \"id\": \"run-1c7d8c24-e2d6-4ba3-b87a-16101fb1ce80-0\",\n"," \"usage_metadata\": {\n"," \"input_tokens\": 484,\n"," \"output_tokens\": 56,\n"," \"total_tokens\": 540\n"," },\n"," \"tool_calls\": [],\n"," \"invalid_tool_calls\": []\n"," }\n"," }\n"," }\n"," ]\n"," ],\n"," \"llm_output\": {\n"," \"token_usage\": {\n"," \"completion_tokens\": 56,\n"," \"prompt_tokens\": 484,\n"," \"total_tokens\": 540\n"," },\n"," \"model_name\": \"gpt-4o-mini-2024-07-18\",\n"," \"system_fingerprint\": \"fp_0f03d4f0ee\"\n"," },\n"," \"run\": null\n","}\n","\u001b[36;1m\u001b[1;3m[chain/end]\u001b[0m \u001b[1m[chain:RunnableSequence] [1.46s] Exiting Chain run with output:\n","\u001b[0m[outputs]\n"]},{"data":{"text/plain":["'That Liu Laolao first heard about the hardships and thought it was hopeless, then heard about the twenty taels of silver and smiled with joy, saying, \"We also know about difficulties, but as the saying goes: \\'A dead camel is still bigger than a horse.\\'\"'"]},"execution_count":11,"metadata":{},"output_type":"execute_result"}],"source":["from langchain_core.globals import set_debug\n","\n","set_debug(True)\n","\n","translate_via_openai(eval_dataset[\"chinese\"][0], translation_prompt, max_tokens=max_new_tokens)"]},{"cell_type":"code","execution_count":12,"metadata":{},"outputs":[],"source":["datasets[\"test\"] = eval_dataset"]},{"cell_type":"code","execution_count":13,"metadata":{},"outputs":[{"name":"stderr","output_type":"stream","text":[" 0%| | 0/2 [00:00 prompt:ChatPromptTemplate] Entering Prompt run with input:\n","\u001b[0m{\n"," \"input\": \"那刘姥姥先听见告艰苦,只当是没想头了, 又听见给他二十两银子,喜的眉开眼笑道:“我们也知道艰难的,但只俗语说的:‘瘦死的骆驼比马还大’呢。\"\n","}\n","\u001b[36;1m\u001b[1;3m[chain/end]\u001b[0m \u001b[1m[chain:RunnableSequence > prompt:ChatPromptTemplate] [1ms] Exiting Prompt run with output:\n","\u001b[0m[outputs]\n","\u001b[32;1m\u001b[1;3m[llm/start]\u001b[0m \u001b[1m[chain:RunnableSequence > llm:ChatOpenAI] Entering LLM run with input:\n","\u001b[0m{\n"," \"prompts\": [\n"," \"System: You are a helpful assistant that translates Chinese to English.\\nHuman: You will be given a Chinese sentence to translate. If it is an incomplete sentence, or if you are unsure about the meaning, simply copy the input text as your output. Do not output any additional sentence such as explanation or reasoning.\\n\\nExample Translations:\\nChinese: 全仗着狐仙搭救。\\nEnglish: Because I was protected by a fox fairy.\\nChinese: 过后,表哥告诉她俩,这人是导演,在外国留过学的,还会编剧,今天拍的这戏,就是他自编自导的。\\nEnglish: He was the director, the cousin later told them. He had studied abroad and was also a screenwriter; in fact he had written and directed the scene they had earlier seen being filmed.\\nChinese: 这凤姐忽然想起一件事来,便向窗外叫:“蓉儿回来!”\\nEnglish: Xi-feng suddenly seemed to remember something, and called to him through the window, 'Rong, come back!'\\nChinese: 三个老红卫兵走到叶文洁面前,面对着她站成了一排——当年,她们也是这样面对叶哲泰的——试图再现那早已忘却的尊严,但她们当年那魔鬼般的精神力量显然已荡然无存。\\nEnglish: The three old Red Guards stood in front of Ye in a row—just like they had stood against Ye Zhetai—trying to recapture their long-forgotten dignity. But the demonic spiritual energy that had once propelled them was gone.\\nChinese: 程先生照单全收,都是一个“谢”字,然后问王琦瑶有什么话说。\\nEnglish: Mr. Cheng accepted their toast with equanimity and a 'thank you.' Then, turning to Wang Qiyao, he asked if she had anything to say.\\n\\nChinese: 那刘姥姥先听见告艰苦,只当是没想头了, 又听见给他二十两银子,喜的眉开眼笑道:“我们也知道艰难的,但只俗语说的:‘瘦死的骆驼比马还大’呢。\\nEnglish:\"\n"," ]\n","}\n"]},{"name":"stderr","output_type":"stream","text":[" 50%|█████ | 1/2 [00:02<00:02, 2.31s/it]"]},{"name":"stdout","output_type":"stream","text":["\u001b[36;1m\u001b[1;3m[llm/end]\u001b[0m \u001b[1m[chain:RunnableSequence > llm:ChatOpenAI] [1.27s] Exiting LLM run with output:\n","\u001b[0m{\n"," \"generations\": [\n"," [\n"," {\n"," \"text\": \"That Liu Laolao first heard about the hardships and thought it was hopeless, then heard about the twenty taels of silver and smiled with joy, saying, \\\"We also know it's difficult, but as the saying goes: 'A dead camel is still bigger than a horse.'\\\"\",\n"," \"generation_info\": {\n"," \"finish_reason\": \"stop\",\n"," \"logprobs\": null\n"," },\n"," \"type\": \"ChatGeneration\",\n"," \"message\": {\n"," \"lc\": 1,\n"," \"type\": \"constructor\",\n"," \"id\": [\n"," \"langchain\",\n"," \"schema\",\n"," \"messages\",\n"," \"AIMessage\"\n"," ],\n"," \"kwargs\": {\n"," \"content\": \"That Liu Laolao first heard about the hardships and thought it was hopeless, then heard about the twenty taels of silver and smiled with joy, saying, \\\"We also know it's difficult, but as the saying goes: 'A dead camel is still bigger than a horse.'\\\"\",\n"," \"response_metadata\": {\n"," \"token_usage\": {\n"," \"completion_tokens\": 56,\n"," \"prompt_tokens\": 484,\n"," \"total_tokens\": 540\n"," },\n"," \"model_name\": \"gpt-4o-mini-2024-07-18\",\n"," \"system_fingerprint\": \"fp_9b0abffe81\",\n"," \"finish_reason\": \"stop\",\n"," \"logprobs\": null\n"," },\n"," \"type\": \"ai\",\n"," \"id\": \"run-68581936-c5f8-4d63-a40a-9ae04e88d234-0\",\n"," \"usage_metadata\": {\n"," \"input_tokens\": 484,\n"," \"output_tokens\": 56,\n"," \"total_tokens\": 540\n"," },\n"," \"tool_calls\": [],\n"," \"invalid_tool_calls\": []\n"," }\n"," }\n"," }\n"," ]\n"," ],\n"," \"llm_output\": {\n"," \"token_usage\": {\n"," \"completion_tokens\": 56,\n"," \"prompt_tokens\": 484,\n"," \"total_tokens\": 540\n"," },\n"," \"model_name\": \"gpt-4o-mini-2024-07-18\",\n"," \"system_fingerprint\": \"fp_9b0abffe81\"\n"," },\n"," \"run\": null\n","}\n","\u001b[36;1m\u001b[1;3m[chain/end]\u001b[0m \u001b[1m[chain:RunnableSequence] [1.28s] Exiting Chain run with output:\n","\u001b[0m[outputs]\n","\u001b[32;1m\u001b[1;3m[chain/start]\u001b[0m \u001b[1m[chain:RunnableSequence] Entering Chain run with input:\n","\u001b[0m{\n"," \"input\": \"后来她不挣扎了,对我说,混蛋,你要把我怎么办。\"\n","}\n","\u001b[32;1m\u001b[1;3m[chain/start]\u001b[0m \u001b[1m[chain:RunnableSequence > prompt:ChatPromptTemplate] Entering Prompt run with input:\n","\u001b[0m{\n"," \"input\": \"后来她不挣扎了,对我说,混蛋,你要把我怎么办。\"\n","}\n","\u001b[36;1m\u001b[1;3m[chain/end]\u001b[0m \u001b[1m[chain:RunnableSequence > prompt:ChatPromptTemplate] [1ms] Exiting Prompt run with output:\n","\u001b[0m[outputs]\n","\u001b[32;1m\u001b[1;3m[llm/start]\u001b[0m \u001b[1m[chain:RunnableSequence > llm:ChatOpenAI] Entering LLM run with input:\n","\u001b[0m{\n"," \"prompts\": [\n"," \"System: You are a helpful assistant that translates Chinese to English.\\nHuman: You will be given a Chinese sentence to translate. If it is an incomplete sentence, or if you are unsure about the meaning, simply copy the input text as your output. Do not output any additional sentence such as explanation or reasoning.\\n\\nExample Translations:\\nChinese: 全仗着狐仙搭救。\\nEnglish: Because I was protected by a fox fairy.\\nChinese: 过后,表哥告诉她俩,这人是导演,在外国留过学的,还会编剧,今天拍的这戏,就是他自编自导的。\\nEnglish: He was the director, the cousin later told them. He had studied abroad and was also a screenwriter; in fact he had written and directed the scene they had earlier seen being filmed.\\nChinese: 这凤姐忽然想起一件事来,便向窗外叫:“蓉儿回来!”\\nEnglish: Xi-feng suddenly seemed to remember something, and called to him through the window, 'Rong, come back!'\\nChinese: 三个老红卫兵走到叶文洁面前,面对着她站成了一排——当年,她们也是这样面对叶哲泰的——试图再现那早已忘却的尊严,但她们当年那魔鬼般的精神力量显然已荡然无存。\\nEnglish: The three old Red Guards stood in front of Ye in a row—just like they had stood against Ye Zhetai—trying to recapture their long-forgotten dignity. But the demonic spiritual energy that had once propelled them was gone.\\nChinese: 程先生照单全收,都是一个“谢”字,然后问王琦瑶有什么话说。\\nEnglish: Mr. Cheng accepted their toast with equanimity and a 'thank you.' Then, turning to Wang Qiyao, he asked if she had anything to say.\\n\\nChinese: 后来她不挣扎了,对我说,混蛋,你要把我怎么办。\\nEnglish:\"\n"," ]\n","}\n"]},{"name":"stderr","output_type":"stream","text":["100%|██████████| 2/2 [00:04<00:00, 2.12s/it]"]},{"name":"stdout","output_type":"stream","text":["\u001b[36;1m\u001b[1;3m[llm/end]\u001b[0m \u001b[1m[chain:RunnableSequence > llm:ChatOpenAI] [908ms] Exiting LLM run with output:\n","\u001b[0m{\n"," \"generations\": [\n"," [\n"," {\n"," \"text\": \"Later, she stopped struggling and said to me, \\\"Bastard, what are you going to do with me?\\\"\",\n"," \"generation_info\": {\n"," \"finish_reason\": \"stop\",\n"," \"logprobs\": null\n"," },\n"," \"type\": \"ChatGeneration\",\n"," \"message\": {\n"," \"lc\": 1,\n"," \"type\": \"constructor\",\n"," \"id\": [\n"," \"langchain\",\n"," \"schema\",\n"," \"messages\",\n"," \"AIMessage\"\n"," ],\n"," \"kwargs\": {\n"," \"content\": \"Later, she stopped struggling and said to me, \\\"Bastard, what are you going to do with me?\\\"\",\n"," \"response_metadata\": {\n"," \"token_usage\": {\n"," \"completion_tokens\": 24,\n"," \"prompt_tokens\": 433,\n"," \"total_tokens\": 457\n"," },\n"," \"model_name\": \"gpt-4o-mini-2024-07-18\",\n"," \"system_fingerprint\": \"fp_611b667b19\",\n"," \"finish_reason\": \"stop\",\n"," \"logprobs\": null\n"," },\n"," \"type\": \"ai\",\n"," \"id\": \"run-e4bb10fb-f7c4-4440-82ba-c13a1a82bc00-0\",\n"," \"usage_metadata\": {\n"," \"input_tokens\": 433,\n"," \"output_tokens\": 24,\n"," \"total_tokens\": 457\n"," },\n"," \"tool_calls\": [],\n"," \"invalid_tool_calls\": []\n"," }\n"," }\n"," }\n"," ]\n"," ],\n"," \"llm_output\": {\n"," \"token_usage\": {\n"," \"completion_tokens\": 24,\n"," \"prompt_tokens\": 433,\n"," \"total_tokens\": 457\n"," },\n"," \"model_name\": \"gpt-4o-mini-2024-07-18\",\n"," \"system_fingerprint\": \"fp_611b667b19\"\n"," },\n"," \"run\": null\n","}\n","\u001b[36;1m\u001b[1;3m[chain/end]\u001b[0m \u001b[1m[chain:RunnableSequence] [918ms] Exiting Chain run with output:\n","\u001b[0m[outputs]\n"]},{"name":"stderr","output_type":"stream","text":["\n"]}],"source":["predictions = eval_openai(5, datasets)"]},{"cell_type":"code","execution_count":14,"metadata":{},"outputs":[{"name":"stdout","output_type":"stream","text":["['That Liu Laolao first heard about the hardships and thought it was hopeless, then heard about the twenty taels of silver and smiled with joy, saying, \"We also know it\\'s difficult, but as the saying goes: \\'A dead camel is still bigger than a horse.\\'\"', 'Later, she stopped struggling and said to me, \"Bastard, what are you going to do with me?\"']\n"]}],"source":["print(predictions)"]},{"cell_type":"code","execution_count":15,"metadata":{},"outputs":[{"data":{"text/plain":["{'meteor': 0.5376810911615811,\n"," 'bleu_scores': {'bleu': 0.16133991724232039,\n"," 'precisions': [0.5454545454545454,\n"," 0.26666666666666666,\n"," 0.1643835616438356,\n"," 0.09859154929577464],\n"," 'brevity_penalty': 0.7322097138745853,\n"," 'length_ratio': 0.7623762376237624,\n"," 'translation_length': 77,\n"," 'reference_length': 101},\n"," 'rouge_scores': {'rouge1': 0.5594202898550725,\n"," 'rouge2': 0.362051015096304,\n"," 'rougeL': 0.5246376811594203,\n"," 'rougeLsum': 0.5246376811594203},\n"," 'accuracy': 0.0}"]},"execution_count":15,"metadata":{},"output_type":"execute_result"}],"source":["calc_metrics(eval_dataset[\"english\"], predictions)"]}],"metadata":{"accelerator":"GPU","application/vnd.databricks.v1+notebook":{"dashboards":[],"environmentMetadata":null,"language":"python","notebookMetadata":{"mostRecentlyExecutedCommandWithImplicitDF":{"commandId":-1,"dataframes":["_sqldf"]},"pythonIndentUnit":4},"notebookName":"10_eval-lf-medium-py3.11","widgets":{}},"colab":{"gpuType":"L4","provenance":[]},"kernelspec":{"display_name":"Python 3","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.9"}},"nbformat":4,"nbformat_minor":0}