tnk2908 commited on
Commit
0fa95f3
0 Parent(s):

Initial commit

Browse files
Files changed (3) hide show
  1. .gitignore +272 -0
  2. README.md +1 -0
  3. requirements.txt +6 -0
.gitignore ADDED
@@ -0,0 +1,272 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # CUSTOME
2
+ data
3
+ models
4
+ figs
5
+ logs
6
+
7
+ # TE# Created by https://www.toptal.com/developers/gitignore/api/images,python,data,jupyternotebooks
8
+ # Edit at https://www.toptal.com/developers/gitignore?templates=images,python,data,jupyternotebooks
9
+
10
+ ### Data ###
11
+ *.csv
12
+ *.dat
13
+ *.efx
14
+ *.gbr
15
+ *.key
16
+ *.pps
17
+ *.ppt
18
+ *.pptx
19
+ *.sdf
20
+ *.tax2010
21
+ *.vcf
22
+ *.xml
23
+
24
+ ### Images ###
25
+ # JPEG
26
+ *.jpg
27
+ *.jpeg
28
+ *.jpe
29
+ *.jif
30
+ *.jfif
31
+ *.jfi
32
+
33
+ # JPEG 2000
34
+ *.jp2
35
+ *.j2k
36
+ *.jpf
37
+ *.jpx
38
+ *.jpm
39
+ *.mj2
40
+
41
+ # JPEG XR
42
+ *.jxr
43
+ *.hdp
44
+ *.wdp
45
+
46
+ # Graphics Interchange Format
47
+ *.gif
48
+
49
+ # RAW
50
+ *.raw
51
+
52
+ # Web P
53
+ *.webp
54
+
55
+ # Portable Network Graphics
56
+ *.png
57
+
58
+ # Animated Portable Network Graphics
59
+ *.apng
60
+
61
+ # Multiple-image Network Graphics
62
+ *.mng
63
+
64
+ # Tagged Image File Format
65
+ *.tiff
66
+ *.tif
67
+
68
+ # Scalable Vector Graphics
69
+ *.svg
70
+ *.svgz
71
+
72
+ # Portable Document Format
73
+ *.pdf
74
+
75
+ # X BitMap
76
+ *.xbm
77
+
78
+ # BMP
79
+ *.bmp
80
+ *.dib
81
+
82
+ # ICO
83
+ *.ico
84
+
85
+ # 3D Images
86
+ *.3dm
87
+ *.max
88
+
89
+ ### JupyterNotebooks ###
90
+ # gitignore template for Jupyter Notebooks
91
+ # website: http://jupyter.org/
92
+
93
+ .ipynb_checkpoints
94
+ */.ipynb_checkpoints/*
95
+
96
+ # IPython
97
+ profile_default/
98
+ ipython_config.py
99
+
100
+ # Remove previous ipynb_checkpoints
101
+ # git rm -r .ipynb_checkpoints/
102
+
103
+ ### Python ###
104
+ # Byte-compiled / optimized / DLL files
105
+ __pycache__/
106
+ *.py[cod]
107
+ *$py.class
108
+
109
+ # C extensions
110
+ *.so
111
+
112
+ # Distribution / packaging
113
+ .Python
114
+ build/
115
+ develop-eggs/
116
+ dist/
117
+ downloads/
118
+ eggs/
119
+ .eggs/
120
+ lib/
121
+ lib64/
122
+ parts/
123
+ sdist/
124
+ var/
125
+ wheels/
126
+ share/python-wheels/
127
+ *.egg-info/
128
+ .installed.cfg
129
+ *.egg
130
+ MANIFEST
131
+
132
+ # PyInstaller
133
+ # Usually these files are written by a python script from a template
134
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
135
+ *.manifest
136
+ *.spec
137
+
138
+ # Installer logs
139
+ pip-log.txt
140
+ pip-delete-this-directory.txt
141
+
142
+ # Unit test / coverage reports
143
+ htmlcov/
144
+ .tox/
145
+ .nox/
146
+ .coverage
147
+ .coverage.*
148
+ .cache
149
+ nosetests.xml
150
+ coverage.xml
151
+ *.cover
152
+ *.py,cover
153
+ .hypothesis/
154
+ .pytest_cache/
155
+ cover/
156
+
157
+ # Translations
158
+ *.mo
159
+ *.pot
160
+
161
+ # Django stuff:
162
+ *.log
163
+ local_settings.py
164
+ db.sqlite3
165
+ db.sqlite3-journal
166
+
167
+ # Flask stuff:
168
+ instance/
169
+ .webassets-cache
170
+
171
+ # Scrapy stuff:
172
+ .scrapy
173
+
174
+ # Sphinx documentation
175
+ docs/_build/
176
+
177
+ # PyBuilder
178
+ .pybuilder/
179
+ target/
180
+
181
+ # Jupyter Notebook
182
+
183
+ # IPython
184
+
185
+ # pyenv
186
+ # For a library or package, you might want to ignore these files since the code is
187
+ # intended to run in multiple environments; otherwise, check them in:
188
+ # .python-version
189
+
190
+ # pipenv
191
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
192
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
193
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
194
+ # install all needed dependencies.
195
+ #Pipfile.lock
196
+
197
+ # poetry
198
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
199
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
200
+ # commonly ignored for libraries.
201
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
202
+ #poetry.lock
203
+
204
+ # pdm
205
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
206
+ #pdm.lock
207
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
208
+ # in version control.
209
+ # https://pdm.fming.dev/#use-with-ide
210
+ .pdm.toml
211
+
212
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
213
+ __pypackages__/
214
+
215
+ # Celery stuff
216
+ celerybeat-schedule
217
+ celerybeat.pid
218
+
219
+ # SageMath parsed files
220
+ *.sage.py
221
+
222
+ # Environments
223
+ .env
224
+ .venv
225
+ env/
226
+ venv/
227
+ ENV/
228
+ env.bak/
229
+ venv.bak/
230
+
231
+ # Spyder project settings
232
+ .spyderproject
233
+ .spyproject
234
+
235
+ # Rope project settings
236
+ .ropeproject
237
+
238
+ # mkdocs documentation
239
+ /site
240
+
241
+ # mypy
242
+ .mypy_cache/
243
+ .dmypy.json
244
+ dmypy.json
245
+
246
+ # Pyre type checker
247
+ .pyre/
248
+
249
+ # pytype static type analyzer
250
+ .pytype/
251
+
252
+ # Cython debug symbols
253
+ cython_debug/
254
+
255
+ # PyCharm
256
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
257
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
258
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
259
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
260
+ #.idea/
261
+
262
+ ### Python Patch ###
263
+ # Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
264
+ poetry.toml
265
+
266
+ # ruff
267
+ .ruff_cache/
268
+
269
+ # LSP config files
270
+ pyrightconfig.json
271
+
272
+ # End of https://www.toptal.com/developers/gitignore/api/images,python,data,jupyternotebooksMPLATE
README.md ADDED
@@ -0,0 +1 @@
 
 
1
+ # ai-text-steganography
requirements.txt ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ numpy==1.26.4
2
+ tqdm==4.66.4
3
+ transformers==4.41.2
4
+ PyYAML==6.0.1
5
+ scikit-learn==1.5.0
6
+ torch==2.3.0