Skip to content

Commit 3a82578

Browse files
committedFeb 17, 2025
add baselines
1 parent b8c7ab5 commit 3a82578

File tree

353 files changed

+10730
-110
lines changed

Some content is hidden

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

353 files changed

+10730
-110
lines changed
 

‎.gitignore

+66-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,70 @@
1+
# 项目特定目录
12
results/
23
helper/
34
test/
45
test_model/
5-
baselines/
6-
figs/
6+
baselines/MAPPO/results/
7+
baselines/QMIX/results/
8+
figs/
9+
10+
# Python 编译文件和缓存
11+
*.pyc
12+
__pycache__/
13+
*.py[cod]
14+
*$py.class
15+
16+
# Python构建、Egg包等相关
17+
build/
18+
dist/
19+
*.egg-info/
20+
21+
# 虚拟环境及相关配置
22+
env/
23+
.venv/
24+
venv/
25+
.env/
26+
27+
# 操作系统自动生成的文件
28+
.DS_Store
29+
Thumbs.db
30+
31+
# 编辑器/IDE配置(VSCode、PyCharm等)
32+
.vscode/
33+
.idea/workspace.xml
34+
.idea/tasks.xml
35+
.idea/dictionaries/
36+
.idea/libraries/
37+
38+
# 忽略.idea中不需要跟踪的内容(部分由.idea/.gitignore管理)
39+
shelf/
40+
httpRequests/
41+
dataSources/
42+
dataSources.local.xml
43+
44+
# 项目特定目录
45+
results/
46+
helper/
47+
test/
48+
test_model/
49+
baselines/MAPPO/results/
50+
basel/
51+
figs/
52+
53+
# 日志和临时文件
54+
*.log
55+
logs/
56+
tmp/
57+
temp/
58+
59+
# Jupyter Notebook
60+
.ipynb_checkpoints
61+
*.ipynb_checkpoints/
62+
63+
# 本地配置文件
64+
.env
65+
.env.local
66+
*.local
67+
68+
# 测试覆盖率报告
69+
.coverage
70+
htmlcov/
0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)