gaparmar commited on
Commit
49b7596
·
1 Parent(s): 1f71119

adding styles

Browse files
Files changed (3) hide show
  1. .gitignore +211 -0
  2. requirements.txt +14 -0
  3. styles.css +160 -0
.gitignore ADDED
@@ -0,0 +1,211 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ outputs
2
+ .gradio
3
+
4
+
5
+ # Byte-compiled / optimized / DLL files
6
+ __pycache__/
7
+ *.py[codz]
8
+ *$py.class
9
+
10
+ # C extensions
11
+ *.so
12
+
13
+ # Distribution / packaging
14
+ .Python
15
+ build/
16
+ develop-eggs/
17
+ dist/
18
+ downloads/
19
+ eggs/
20
+ .eggs/
21
+ lib/
22
+ lib64/
23
+ parts/
24
+ sdist/
25
+ var/
26
+ wheels/
27
+ share/python-wheels/
28
+ *.egg-info/
29
+ .installed.cfg
30
+ *.egg
31
+ MANIFEST
32
+
33
+ # PyInstaller
34
+ # Usually these files are written by a python script from a template
35
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
36
+ *.manifest
37
+ *.spec
38
+
39
+ # Installer logs
40
+ pip-log.txt
41
+ pip-delete-this-directory.txt
42
+
43
+ # Unit test / coverage reports
44
+ htmlcov/
45
+ .tox/
46
+ .nox/
47
+ .coverage
48
+ .coverage.*
49
+ .cache
50
+ nosetests.xml
51
+ coverage.xml
52
+ *.cover
53
+ *.py.cover
54
+ .hypothesis/
55
+ .pytest_cache/
56
+ cover/
57
+
58
+ # Translations
59
+ *.mo
60
+ *.pot
61
+
62
+ # Django stuff:
63
+ *.log
64
+ local_settings.py
65
+ db.sqlite3
66
+ db.sqlite3-journal
67
+
68
+ # Flask stuff:
69
+ instance/
70
+ .webassets-cache
71
+
72
+ # Scrapy stuff:
73
+ .scrapy
74
+
75
+ # Sphinx documentation
76
+ docs/_build/
77
+
78
+ # PyBuilder
79
+ .pybuilder/
80
+ target/
81
+
82
+ # Jupyter Notebook
83
+ .ipynb_checkpoints
84
+
85
+ # IPython
86
+ profile_default/
87
+ ipython_config.py
88
+
89
+ # pyenv
90
+ # For a library or package, you might want to ignore these files since the code is
91
+ # intended to run in multiple environments; otherwise, check them in:
92
+ # .python-version
93
+
94
+ # pipenv
95
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
96
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
97
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
98
+ # install all needed dependencies.
99
+ #Pipfile.lock
100
+
101
+ # UV
102
+ # Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
103
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
104
+ # commonly ignored for libraries.
105
+ #uv.lock
106
+
107
+ # poetry
108
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
109
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
110
+ # commonly ignored for libraries.
111
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
112
+ #poetry.lock
113
+ #poetry.toml
114
+
115
+ # pdm
116
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
117
+ # pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
118
+ # https://pdm-project.org/en/latest/usage/project/#working-with-version-control
119
+ #pdm.lock
120
+ #pdm.toml
121
+ .pdm-python
122
+ .pdm-build/
123
+
124
+ # pixi
125
+ # Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
126
+ #pixi.lock
127
+ # Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
128
+ # in the .venv directory. It is recommended not to include this directory in version control.
129
+ .pixi
130
+
131
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
132
+ __pypackages__/
133
+
134
+ # Celery stuff
135
+ celerybeat-schedule
136
+ celerybeat.pid
137
+
138
+ # SageMath parsed files
139
+ *.sage.py
140
+
141
+ # Environments
142
+ .env
143
+ .envrc
144
+ .venv
145
+ env/
146
+ venv/
147
+ ENV/
148
+ env.bak/
149
+ venv.bak/
150
+
151
+ # Spyder project settings
152
+ .spyderproject
153
+ .spyproject
154
+
155
+ # Rope project settings
156
+ .ropeproject
157
+
158
+ # mkdocs documentation
159
+ /site
160
+
161
+ # mypy
162
+ .mypy_cache/
163
+ .dmypy.json
164
+ dmypy.json
165
+
166
+ # Pyre type checker
167
+ .pyre/
168
+
169
+ # pytype static type analyzer
170
+ .pytype/
171
+
172
+ # Cython debug symbols
173
+ cython_debug/
174
+
175
+ # PyCharm
176
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
177
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
178
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
179
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
180
+ #.idea/
181
+
182
+ # Abstra
183
+ # Abstra is an AI-powered process automation framework.
184
+ # Ignore directories containing user credentials, local state, and settings.
185
+ # Learn more at https://abstra.io/docs
186
+ .abstra/
187
+
188
+ # Visual Studio Code
189
+ # Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
190
+ # that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
191
+ # and can be added to the global gitignore or merged into this file. However, if you prefer,
192
+ # you could uncomment the following to ignore the entire vscode folder
193
+ # .vscode/
194
+
195
+ # Ruff stuff:
196
+ .ruff_cache/
197
+
198
+ # PyPI configuration file
199
+ .pypirc
200
+
201
+ # Cursor
202
+ # Cursor is an AI-powered code editor. `.cursorignore` specifies files/directories to
203
+ # exclude from AI features like autocomplete and code analysis. Recommended for sensitive data
204
+ # refer to https://docs.cursor.com/context/ignore-files
205
+ .cursorignore
206
+ .cursorindexingignore
207
+
208
+ # Marimo
209
+ marimo/_static/
210
+ marimo/_lsp/
211
+ __marimo__/
requirements.txt ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ torch==2.7.1
2
+ torchvision==0.22.1
3
+ torchaudio==2.7.1
4
+ opencv-python
5
+ transformers
6
+ sentencepiece
7
+ protobuf
8
+ accelerate
9
+ diffusers==0.35.1
10
+ gurobipy
11
+ bitsandbytes
12
+ git+https://github.com/openai/CLIP.git
13
+ ipdb
14
+ https://github.com/nunchaku-tech/nunchaku/releases/download/v0.3.1/nunchaku-0.3.1+torch2.7-cp310-cp310-linux_x86_64.whl
styles.css ADDED
@@ -0,0 +1,160 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');
2
+
3
+ ::selection {
4
+ background: rgba(255, 251, 35, 0.58);
5
+ }
6
+
7
+ body {
8
+ max-width: 1000px !important;
9
+ margin: 0 auto !important;
10
+ }
11
+
12
+ .title_left {
13
+ padding-top: 0vw !important;
14
+ filter: none !important;
15
+ }
16
+ .title_left > h1 {
17
+ color: #2f2f2f !important;
18
+ font-family: "Gelasio",Georgia,serif !important;
19
+ font-weight: normal !important;
20
+ font-size: 2.0vw !important;
21
+ text-align: center !important;
22
+ }
23
+
24
+ .title_left > h2 {
25
+ color: #2f2f2f !important;
26
+ font-family: "Gelasio",Georgia,serif !important;
27
+ font-weight: normal !important;
28
+ font-size: 1.5vw !important;
29
+ text-align: center !important;
30
+ }
31
+
32
+ .author-container {
33
+ color: #2f2f2f;
34
+ font-family: Gelasio,"Avenir Next",Helvetica,sans-serif;
35
+ font-weight: normal;
36
+ font-size: 1vw;
37
+ padding-top: 0.2vw;
38
+ justify-items: center;
39
+ justify-content: center;
40
+ display: grid;
41
+ grid-template-columns: auto auto auto auto auto;
42
+ }
43
+
44
+ .affiliation-container {
45
+ color: #2f2f2f;
46
+ font-family: Gelasio,"Avenir Next",Helvetica,sans-serif;
47
+ font-weight: normal;
48
+ font-size: 1vw;
49
+ padding-top: 0.2vw;
50
+ justify-items: center;
51
+ justify-content: center;
52
+ display: grid;
53
+ grid-template-columns: auto auto auto auto auto;
54
+ }
55
+
56
+ .grid-item {
57
+ text-align: center;
58
+ padding-right: 0.7vw;
59
+ padding-left: 0.7vw;
60
+ }
61
+
62
+ .grid-item > a {
63
+ color: #2f2f2f;
64
+ text-decoration: underline;
65
+ text-underline-offset: 3px;
66
+ }
67
+
68
+ .grid-item.cmu > a {
69
+ text-decoration-color: rgba(196, 18, 48, 0.2)
70
+ }
71
+
72
+ .grid-item.cmu > p::before {
73
+ content: "";
74
+ display: inline-block;
75
+ width: 12px;
76
+ height: 12px;
77
+ background-color: rgba(196, 18, 48, 0.6);
78
+ margin-right: 8px;
79
+ vertical-align: middle;
80
+ }
81
+
82
+ .grid-item.snap > a {
83
+ text-decoration-color: rgba(255,252,0, 0.4)
84
+ }
85
+
86
+ .grid-item.snap > p::before {
87
+ content: "";
88
+ display: inline-block;
89
+ width: 12px;
90
+ height: 12px;
91
+ background-color: rgba(255, 252, 0, 0.6);
92
+ margin-right: 8px;
93
+ vertical-align: middle;
94
+ }
95
+
96
+ .grid-item.cmu > p,
97
+ .grid-item.snap > p {
98
+ color: #2f2f2f;
99
+ }
100
+
101
+ .column {
102
+ min-width: min(100px, 100%) !important;
103
+ }
104
+
105
+ .block {
106
+ min-width: min(100px, 100%) !important;
107
+ background: transparent !important;
108
+ border: none !important;
109
+ }
110
+
111
+ .gr-box, .gr-form, .gr-panel {
112
+ background: transparent !important;
113
+ border: none !important;
114
+ }
115
+
116
+ .gr-row, .gr-column {
117
+ background: transparent !important;
118
+ }
119
+
120
+ .gr-textbox, .gr-number, .gr-slider, .gr-dropdown {
121
+ background: rgba(255, 255, 255, 0.1) !important;
122
+ border: 1px solid rgba(255, 255, 255, 0.2) !important;
123
+ backdrop-filter: blur(10px) !important;
124
+ }
125
+
126
+ .gr-button {
127
+ background: rgba(255, 255, 255, 0.15) !important;
128
+ border: 1px solid rgba(255, 255, 255, 0.3) !important;
129
+ backdrop-filter: blur(10px) !important;
130
+ }
131
+
132
+ .gr-accordion {
133
+ background: rgba(255, 255, 255, 0.05) !important;
134
+ border: 1px solid rgba(255, 255, 255, 0.1) !important;
135
+ backdrop-filter: blur(5px) !important;
136
+ }
137
+
138
+ .gr-gallery {
139
+ background: rgba(255, 255, 255, 0.05) !important;
140
+ border: 1px solid rgba(255, 255, 255, 0.1) !important;
141
+ backdrop-filter: blur(5px) !important;
142
+ }
143
+
144
+ #starting-candidates-row > #component-7 {
145
+ border: none !important;
146
+ /* font-family: "Varela Round" !important;
147
+ font-weight: 500 !important; */
148
+ }
149
+
150
+ #output-group-size-row >#component-10{
151
+ border: none !important;
152
+ /* font-family: "Varela Round" !important; */
153
+ /* font-weight: 500 !important; */
154
+ }
155
+
156
+ #pruning-ratio-label, #lambda-label, #seed-label, #unary-term-label, #binary-term-label {
157
+ border: none !important;
158
+ /* font-family: "Varela Round" !important;
159
+ font-weight: 500 !important; */
160
+ }