├── README.md ├── evaluation.py ├── examples ├── In-context Learning.md ├── Out-of-Distribution Detection.md └── Semi-supervised Learning.md ├── figs ├── main_fig.png └── overview.png ├── main.py ├── requirements.txt └── src ├── __pycache__ ├── database.cpython-310.pyc ├── database.cpython-39.pyc ├── evaluation.cpython-39.pyc ├── model.cpython-310.pyc ├── model.cpython-39.pyc ├── prompt.cpython-310.pyc ├── prompt.cpython-39.pyc ├── utils.cpython-310.pyc └── utils.cpython-39.pyc ├── agents ├── __pycache__ │ ├── judge.cpython-310.pyc │ ├── judge.cpython-39.pyc │ ├── outline_writer.cpython-310.pyc │ ├── outline_writer.cpython-39.pyc │ ├── writer.cpython-310.pyc │ └── writer.cpython-39.pyc ├── judge.py ├── outline_writer.py └── writer.py ├── database.py ├── model.py ├── prompt.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoSurveys/AutoSurvey/HEAD/README.md -------------------------------------------------------------------------------- /evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoSurveys/AutoSurvey/HEAD/evaluation.py -------------------------------------------------------------------------------- /examples/In-context Learning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoSurveys/AutoSurvey/HEAD/examples/In-context Learning.md -------------------------------------------------------------------------------- /examples/Out-of-Distribution Detection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoSurveys/AutoSurvey/HEAD/examples/Out-of-Distribution Detection.md -------------------------------------------------------------------------------- /examples/Semi-supervised Learning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoSurveys/AutoSurvey/HEAD/examples/Semi-supervised Learning.md -------------------------------------------------------------------------------- /figs/main_fig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoSurveys/AutoSurvey/HEAD/figs/main_fig.png -------------------------------------------------------------------------------- /figs/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoSurveys/AutoSurvey/HEAD/figs/overview.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoSurveys/AutoSurvey/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoSurveys/AutoSurvey/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/__pycache__/database.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoSurveys/AutoSurvey/HEAD/src/__pycache__/database.cpython-310.pyc -------------------------------------------------------------------------------- /src/__pycache__/database.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoSurveys/AutoSurvey/HEAD/src/__pycache__/database.cpython-39.pyc -------------------------------------------------------------------------------- /src/__pycache__/evaluation.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoSurveys/AutoSurvey/HEAD/src/__pycache__/evaluation.cpython-39.pyc -------------------------------------------------------------------------------- /src/__pycache__/model.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoSurveys/AutoSurvey/HEAD/src/__pycache__/model.cpython-310.pyc -------------------------------------------------------------------------------- /src/__pycache__/model.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoSurveys/AutoSurvey/HEAD/src/__pycache__/model.cpython-39.pyc -------------------------------------------------------------------------------- /src/__pycache__/prompt.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoSurveys/AutoSurvey/HEAD/src/__pycache__/prompt.cpython-310.pyc -------------------------------------------------------------------------------- /src/__pycache__/prompt.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoSurveys/AutoSurvey/HEAD/src/__pycache__/prompt.cpython-39.pyc -------------------------------------------------------------------------------- /src/__pycache__/utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoSurveys/AutoSurvey/HEAD/src/__pycache__/utils.cpython-310.pyc -------------------------------------------------------------------------------- /src/__pycache__/utils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoSurveys/AutoSurvey/HEAD/src/__pycache__/utils.cpython-39.pyc -------------------------------------------------------------------------------- /src/agents/__pycache__/judge.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoSurveys/AutoSurvey/HEAD/src/agents/__pycache__/judge.cpython-310.pyc -------------------------------------------------------------------------------- /src/agents/__pycache__/judge.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoSurveys/AutoSurvey/HEAD/src/agents/__pycache__/judge.cpython-39.pyc -------------------------------------------------------------------------------- /src/agents/__pycache__/outline_writer.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoSurveys/AutoSurvey/HEAD/src/agents/__pycache__/outline_writer.cpython-310.pyc -------------------------------------------------------------------------------- /src/agents/__pycache__/outline_writer.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoSurveys/AutoSurvey/HEAD/src/agents/__pycache__/outline_writer.cpython-39.pyc -------------------------------------------------------------------------------- /src/agents/__pycache__/writer.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoSurveys/AutoSurvey/HEAD/src/agents/__pycache__/writer.cpython-310.pyc -------------------------------------------------------------------------------- /src/agents/__pycache__/writer.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoSurveys/AutoSurvey/HEAD/src/agents/__pycache__/writer.cpython-39.pyc -------------------------------------------------------------------------------- /src/agents/judge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoSurveys/AutoSurvey/HEAD/src/agents/judge.py -------------------------------------------------------------------------------- /src/agents/outline_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoSurveys/AutoSurvey/HEAD/src/agents/outline_writer.py -------------------------------------------------------------------------------- /src/agents/writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoSurveys/AutoSurvey/HEAD/src/agents/writer.py -------------------------------------------------------------------------------- /src/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoSurveys/AutoSurvey/HEAD/src/database.py -------------------------------------------------------------------------------- /src/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoSurveys/AutoSurvey/HEAD/src/model.py -------------------------------------------------------------------------------- /src/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoSurveys/AutoSurvey/HEAD/src/prompt.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoSurveys/AutoSurvey/HEAD/src/utils.py --------------------------------------------------------------------------------