From f099f8fcd59e796360729846c8c7d6b151ddcd49 Mon Sep 17 00:00:00 2001 From: Marc Kassubeck Date: Sat, 6 Jul 2024 17:12:36 +0200 Subject: [PATCH 1/2] Also include subpackages in install --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 458bb7f..c703932 100755 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" include-package-data = false [tool.setuptools.packages.find] -include = ["chat_with_nerf"] +include = ["chat_with_nerf*"] [project] name = "chat_with_nerf" From d6ab7b33030076de310415c245e967fef053428b Mon Sep 17 00:00:00 2001 From: Marc Kassubeck Date: Sat, 6 Jul 2024 18:31:57 +0200 Subject: [PATCH 2/2] typo --- chat_with_nerf/chat/grounder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chat_with_nerf/chat/grounder.py b/chat_with_nerf/chat/grounder.py index 8a20d3f..b99a770 100755 --- a/chat_with_nerf/chat/grounder.py +++ b/chat_with_nerf/chat/grounder.py @@ -296,7 +296,7 @@ def ground_with_gpt( }, } if len(landmark_location_list) > 0: - evaluation["Targe Candidate Distance to Landmark (meter)"] = { + evaluation["Target Candidate Distance to Landmark (meter)"] = { str(i): round( math.sqrt( (bbox["centroid"][0] - landmark_location_centroid[0]) ** 2