SimpleDoc
No description available.
File Explorer
- reasoning_agent.py
- retriever_agent.py
- analyze_multiple_runs.py
- calculate_avg_pages_last_iter.py
- evaluate_pipeline.py
- evaluate_responses.py
- evaluate_retrieval.py
- MainFigure.png
- simpledoc_fig.png
- step02_page_retrieval.py
- step03_target_page_qa.py
- groupchat_controller.py
- run_simpledoc_chat.py
- generate_embeddings.py
- generate_summaries.py
- doc_qa_prompt.txt
- general_summary_prompt.txt
- page_retrieval_prompt.txt
- preprocess_embeddings.sh
- preprocess_summaries.sh
- run_gpt_eval.sh
- run_simpledoc.sh
- openai_helper.py
- pipeline_utils.py
- .gitignore
- install.sh
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
conda activate
View Details ▼
conda activate
Activate a conda environment.
See also: `conda deactivate`.
conda activate myenv
Activate an existing environment named `myenv`:
conda activate {{path/to/myenv}}
Activate an existing environment located at custom path:
conda activate --stack myenv
Stack `myenv` environment on top of a previous environment making libraries/commands/variables from both accessible:
conda create
View Details ▼
conda create
Create new conda environments.
conda create {{[-y|--yes]}} {{[-n|--name]}} py39 python=3.9 "numpy>=1.11" scipy
Create a new environment named `py39`, install Python 3.9, NumPy v1.11 or above in it, and the latest stable version of SciPy. Say yes to all confirmations:
conda create {{[-n|--name]}} myenv --file {{file1.yml}} --file {{file2.yml}}
Create a new environment named `myenv` and install packages listed in files:
conda create {{[-p|--prefix]}} {{path/to/myenv}}
Create a new environment at a custom path (i.e. prefix):
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
# Project Badges
-
Paper Visit
