728x90 분류 전체보기74 [Ubuntu Error] FileNotFoundError: [Errno 2] No such file or directory: 'aplay' sudo apt-get install alsa-utils 2023. 8. 10. [Poetry Error] Poetry: Failed to unlock the collection 아래 커멘드를 입력하면 해결된다. export PYTHON_KEYRING_BACKEND=keyring.backends.null.Keyring 2023. 8. 8. [ODQA] DRQA, ORQA, REALM 간단한 설명 Open Domain Question Answering (ODQA) vs Konwledge-Intensive Task (KIT) ODQA: 연속된 토큰 (Continuous Span)으로 Answer 존재 가능 (항상 그런것은 아님) KIT: Passage 내 Answer 토큰이 존재하지 않음 ODQA의 연구 흐름 RAG는 이전 ODQA 연구를 연결하여 Knowledge Intensive Task로 확장한다. RAG 이후 연구인 FiD ~ Atlas는 RAG 기반이다. DrQA 질문이 주어졌을 경우, Wikipedia로부터 passage로 활용할 수 있는 k개의 후보 문서를 가져온 다음, 가져온 passage와 question을 Reader의 입력으로 활용하여 Answer를 산출하는 방식이다. (이때, .. 2023. 8. 5. [poetry error] scipy requires Python <3.13,>=3.9, so it will not be satisfied for Python >=3.13,<4.0 해당 에러는 poetry 에서 python 버전을 명시해주면 된다. 아래와 같이 pyproject.toml내 python버전을 python = "^3.9"에서 python = "==3.9.1"로 바꿔주면 된다. Before ... [tool.poetry.dependencies] python = "^3.9" ... After ... [tool.poetry.dependencies] python = "==3.9.1" ... 2023. 7. 17. 이전 1 2 3 4 5 6 ··· 19 다음 728x90