Skip to content

Commit b69488e

Browse files
author
Shubham Parashar
committed
Initial Commit
1 parent 5a23662 commit b69488e

File tree

8,992 files changed

+4017723
-674
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

8,992 files changed

+4017723
-674
lines changed

.gitignore

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# Ignore Python compiled files
2+
*.pyc
3+
*.pyo
4+
__pycache__/
5+
reasoners/__pycache__
6+
reasoners/algorithm/__pycache__
7+
reasoners/__pycache__/__init__.cpython-310.pyc
8+
reasoners/__pycache__/base.cpython-310.pyc
9+
reasoners/visualization/__pycache__/tree_snapshot.cpython-310.pyc
10+
reasoners/benchmark/__pycache__/prontoqa.cpython-310.pyc
11+
reasoners/algorithm/__pycache__/dfs.cpython-310.pyc
12+
./logs
13+
reasoners/__pycache__/__init__.cpython-310.pyc
14+
reasoners/__pycache__/base.cpython-310.pyc
15+
reasoners/algorithm/__pycache__/__init__.cpython-310.pyc
16+
reasoners/algorithm/__pycache__/beam_search.cpython-310.pyc
17+
reasoners/algorithm/__pycache__/dfs.cpython-310.pyc
18+
reasoners/algorithm/__pycache__/greedy.cpython-310.pyc
19+
reasoners/algorithm/__pycache__/mcts.cpython-310.pyc
20+
reasoners/algorithm/__pycache__/random.cpython-310.pyc
21+
reasoners/benchmark/__pycache__/__init__.cpython-310.pyc
22+
reasoners/benchmark/__pycache__/blocksworld.cpython-310.pyc
23+
reasoners/benchmark/__pycache__/aqua.cpython-310.pyc
24+
reasoners/benchmark/__pycache__/bw_utils.cpython-310.pyc
25+
reasoners/benchmark/__pycache__/gsm8k.cpython-310.pyc
26+
reasoners/benchmark/__pycache__/prontoqa.cpython-310.pyc
27+
reasoners/lm/__pycache__/__init__.cpython-310.pyc
28+
reasoners/lm/__pycache__/anthropic_model.cpython-310.pyc
29+
reasoners/lm/__pycache__/exllama_model.cpython-310.pyc
30+
reasoners/lm/__pycache__/gemini_model.cpython-310.pyc
31+
reasoners/lm/__pycache__/hf_model.cpython-310.pyc
32+
reasoners/lm/__pycache__/llama_2_model.cpython-310.pyc
33+
reasoners/lm/__pycache__/llama_3_model.cpython-310.pyc
34+
reasoners/lm/__pycache__/llama_cpp_model.cpython-310.pyc
35+
reasoners/lm/__pycache__/llama_model.cpython-310.pyc
36+
reasoners/lm/__pycache__/openai_model.cpython-310.pyc
37+
reasoners/visualization/__pycache__/__init__.cpython-310.pyc
38+
reasoners/visualization/__pycache__/__main__.cpython-310.pyc
39+
reasoners/visualization/__pycache__/tree_log.cpython-310.pyc
40+
reasoners/visualization/__pycache__/tree_snapshot.cpython-310.pyc
41+
reasoners/visualization/__pycache__/visualizer_client.cpython-310.pyc
42+
reasoners/visualization/__pycache__/visualizer_client.cpython-310.pyc
43+
reasoners/benchmark/__pycache__/__init__.cpython-310.pyc
44+
models/
45+
planner_tools/
46+
*.log
47+
logs/*

LICENSE

Lines changed: 201 additions & 674 deletions
Large diffs are not rendered by default.

LLMs-Planning/.gitignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
*/pr-*.pddl
2+
*/sas_plan
3+
*/*.stats
4+
*/*.tmp
5+
*/*.sh
6+
*/*.out
7+
*/*.sas
8+
*/llm_plan
9+
*/rough.py
10+
*/sas_plan_ver
11+
utils/__pycache__/*

LLMs-Planning/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# LLMs and Planning
2+
3+
This repo has the code for two papers:
4+
1. The code in 'plan-bench' subdirectory belongs to the paper ["PlanBench: An Extensible Benchmark for Evaluating Large Language Models on Planning and Reasoning about Change"](plan-bench/)
5+
2. The code in 'llm_planning_analysis' subdirectory belongs to the paper ["On the Planning Abilities of Large Language Models--A Critical Investigation"](https://arxiv.org/abs/2305.15771)
6+
7+
8+

0 commit comments

Comments
 (0)