-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
64 lines (55 loc) · 1.33 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# Ignore data folder
data/*
# DO NOT ignore raw processed data files
!data/airhockey_processed/
data/airhockey_processed/*
!data/airhockey_processed/raw
!data/airhockey_processed/clean/
data/airhockey_processed/clean/*
!data/airhockey_processed/clean/for_paper/
!data/airhockey_processed/clean/KL_div-config_agnostic/
!data/airhockey_processed/clean/KL_div-object_agnostic/
!data/airhockey_processed/clean/KL_div-robot_agnostic-D1/
# DO NOT ignore ekf data files
!data/airhockey_ekf/
data/airhockey_ekf/*
!data/airhockey_ekf/june/
data/airhockey_ekf/june/*
!data/airhockey_ekf/june/clean/
!data/airhockey_ekf/june/dirty/
# DO NOT ignore these figure folders
!data/figures/
data/figures/*
!data/figures/RMSE_Distance_pred-config_agnostic
!data/figures/RMSE_Distance_pred-object_agnostic
!data/figures/RMSE_Distance_pred-robot_agnostic-D1
!data/figures/golf
!data/figures/for_paper
!data/figures/KL_div-config_agnostic
!data/figures/KL_div-object_agnostic
!data/figures/KL_div-robot_agnostic-D1
!data/figures/iterative_gmm
!data/README.md
# Ignore specific files generated by catkin or ROS
/build
/devel
/logs
src/CMakeLists.txt
/.catkin_workspace
/.project
/.settings
/.vscode
/.idea
# Ignore compiled Python files
*.pyc
__pycache__/
# Ignore compiled binaries
*.o
*.a
*.so
*.swp
# Ignore system files
.DS_Store
Thumbs.db
# Ignore virtual environments
venv/