-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrepo_structure.txt
More file actions
76 lines (76 loc) · 2.53 KB
/
repo_structure.txt
File metadata and controls
76 lines (76 loc) · 2.53 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
ADA-2025-PROJECT-ADACORE42/
│
├── README.md
├── pip_requirements.txt
├── results.ipynb
├── results_MS2.ipynb
├── structure.txt
│
├── .vscode/
│ └── VS Code configuration files
│
├── data/
│ ├── README.md
│ ├── Prepared datasets (pkl, npz)
│ ├── Topic modeling outputs (csv)
│ └── newyorker_caption_contest_virgin/
│ ├── contests.json
│ ├── data/
│ └── images/
│
├── src/
│ ├── data/
│ │ ├── Data preparation and tokenization scripts
│ │ ├── gender_roles_data/ # Gender-based caption/topic datasets
│ │ └── gender_roles_plots/ # Associated figures
│ │
│ ├── models/
│ │ ├── Core analysis modules (gender, occupation, similarity, topics)
│ │ └── README.md
│ │
│ ├── scripts/
│ │ ├── Analysis notebooks and scripts (axes, descriptive statistics)
│ │ └── README.md
│ │
│ ├── utils/
│ │ ├── Utility functions (TF-IDF, paths, analysis helpers)
│ │ ├── gui/ # Compiled GUI utilities
│ │ ├── gui (unused)/ # Deprecated GUI code
│ │ └── web_app_plots/ # Plots used by the web application
│ │
│ └── __pycache__/
│
├── _ChangeLog/
│ └── Individual contribution logs
│
├── _LatexRepports/
│ └── P1_Milestone/
│ ├── LaTeX report files
│ └── TitlePage/
│
├── _Other/
│ ├── Individual exploratory analyses for MS1, MS2, MS3
│ │ ├── amelie_analysis/
│ │ ├── andras_analysis/
│ │ ├── cycy_analysis/
│ │ ├── dom_analysis/
│ │ └── katia_analysis/
│ │
│ ├── Installation/
│ │ └── Setup documentation and screenshots
│ │
│ └── Additional resources (figures, LaTeX drafts)
│
└── _webappp/
├── app.py # Main application entry point
├── Streamlit pages (home, axes, methods, about)
├── sidebar.py
│
├── assets/
│ ├── Application content and design
│ ├── csv/ # Data used by the app
│ ├── graph(s)/ # HTML and image visualizations
│ ├── profile_img/
│ └── title_img/
│
└── __pycache__/