instruct-rl
No description available.
파일 탐색기
- game_sim.cc
- game_sim.h
- player.cc
- player.h
- sparta.cc
- sparta.h
- hanabi_env.h
- pybind.cc
- r2d2_actor.cc
- r2d2_actor.h
- thread_loop.cc
- thread_loop.h
- utils.cc
- utils.h
- hanabi_rainbow.gin
- __init__.py
- checkpointer.py
- iteration_statistics.py
- LICENSE
- logger.py
- sum_tree.py
- __init__.py
- dqn_agent.py
- prioritized_replay_memory.py
- rainbow_agent.py
- README.md
- replay_memory.py
- run_experiment.py
- train.py
- __init__.py
- random_agent.py
- simple_agent.py
- canonical_encoders.cc
- canonical_encoders.h
- canonical_encoders_extra.cc
- CMakeLists.txt
- hanabi_card.cc
- hanabi_card.h
- hanabi_game.cc
- hanabi_game.h
- hanabi_hand.cc
- hanabi_hand.h
- hanabi_history_item.cc
- hanabi_history_item.h
- hanabi_move.cc
- hanabi_move.h
- hanabi_observation.cc
- hanabi_observation.h
- hanabi_state.cc
- hanabi_state.h
- observation_encoder.h
- util.cc
- util.h
- .gitignore
- __init__.py
- CMakeLists.txt
- CONTRIBUTING.md
- game_example.cc
- game_example.py
- LICENSE
- pyhanabi.cc
- pyhanabi.h
- pyhanabi.py
- README.md
- rl_env.py
- rl_env_example.py
- __init__.py
- assert_utils.py
- helper.py
- logger.py
- model_ckpt.py
- multi_counter.py
- saver.py
- stopwatch.py
- iql.yaml
- ppo.yaml
- agent.py
- bot_factory.py
- game_state.py
- hanabi_client.py
- main.py
- match_player.py
- README.md
- requirements.txt
- hist2lang.pkl
- move2lang.pkl
- prior.pkl
- prompt.txt
- hist2lang.pkl
- move2lang.pkl
- prior.pkl
- prompt.txt
- prior.pkl
- hist2lang.pkl
- move2lang.pkl
- prior.pkl
- prompt.txt
- hist2lang.pkl
- move2lang.pkl
- prior.pkl
- prompt.txt
- hist2lang.pkl
- move2lang.pkl
- prior.pkl
- prompt.txt
- hist2lang.pkl
- move2lang.pkl
- prior.pkl
- prompt.txt
- hist2lang.pkl
- move2lang.pkl
- prior.pkl
- prompt.txt
- hist2lang.pkl
- move2lang.pkl
- prior.pkl
- prompt.txt
- hist2lang.pkl
- move2lang.pkl
- prior.pkl
- prompt.txt
- hist2lang.pkl
- move2lang.pkl
- prior.pkl
- prompt.txt
- hist2lang.pkl
- move2lang.pkl
- prior.pkl
- prompt.txt
- __init__.py
- action_matrix.py
- analyze_sweep.py
- cross_play.py
- eval_model.py
- parse_log.py
- plot.py
- belief_model.py
- create.py
- eval.py
- gen_all_langs.py
- net.py
- openai_api.py
- policy_net.py
- ppo.py
- ppo_main.py
- pyproject.toml
- q_net.py
- r2d2.py
- r2d2_main.py
- set_path.py
- sparta.py
- train_belief.py
- utils.py
- _CMakeLists.txt
- batch_runner.cc
- batch_runner.h
- batcher.cc
- batcher.h
- concurrent_queue.h
- context.cc
- context.h
- prioritized_replay.h
- pybind.cc
- r2d2.cc
- r2d2.h
- README.md
- replay.h
- tensor_dict.h
- thread_loop.h
- transition.cc
- transition.h
- utils.h
- ball_env.py
- icml_plot.py
- llm.py
- optim.py
- q_agent.py
- train.py
- utils.py
- pybind11
- .clang-format
- .gitignore
- .gitmodules
- CMakeLists.txt
- get_pybind_flags.py
- Makefile
- README.md
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
git clone
설명 보기 ▼
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:
pip install
설명 보기 ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
python
설명 보기 ▼
python
Python 언어 인터프리터.
더 많은 정보: <https://docs.python.org/using/cmdline.html>.
python
REPL(대화형 셸) 시작:
python {{path/to/file.py}}
특정 Python 파일 실행:
python -i {{path/to/file.py}}
특정 Python 파일 실행 후 REPL 시작:
