Spaces:
Paused
Paused
update
Browse files
.gitignore
ADDED
|
@@ -0,0 +1,158 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# dev files
|
| 2 |
+
*.cache
|
| 3 |
+
*.dev.py
|
| 4 |
+
*.mv
|
| 5 |
+
state_dict/
|
| 6 |
+
integrated_datasets/
|
| 7 |
+
source_datasets.backup/
|
| 8 |
+
*.results
|
| 9 |
+
*.gz
|
| 10 |
+
*.bin
|
| 11 |
+
*.result.txt
|
| 12 |
+
*.DS_Store
|
| 13 |
+
*.tmp
|
| 14 |
+
*.args.txt
|
| 15 |
+
*.summary.txt
|
| 16 |
+
*.dat
|
| 17 |
+
*.graph
|
| 18 |
+
# Byte-compiled / optimized / DLL files
|
| 19 |
+
__pycache__/
|
| 20 |
+
*.py[cod]
|
| 21 |
+
*$py.class
|
| 22 |
+
*.pyc
|
| 23 |
+
experiments/
|
| 24 |
+
tests/
|
| 25 |
+
*.result.json
|
| 26 |
+
.idea/
|
| 27 |
+
# special project files
|
| 28 |
+
JIC/
|
| 29 |
+
CPDP/
|
| 30 |
+
# Embedding
|
| 31 |
+
glove.840B.300d.txt
|
| 32 |
+
glove.42B.300d.txt
|
| 33 |
+
glove.twitter.27B.txt
|
| 34 |
+
|
| 35 |
+
# project main files
|
| 36 |
+
release_note.json
|
| 37 |
+
|
| 38 |
+
# C extensions
|
| 39 |
+
*.so
|
| 40 |
+
|
| 41 |
+
# Distribution / packaging
|
| 42 |
+
.Python
|
| 43 |
+
build/
|
| 44 |
+
develop-eggs/
|
| 45 |
+
dist/
|
| 46 |
+
downloads/
|
| 47 |
+
eggs/
|
| 48 |
+
.eggs/
|
| 49 |
+
lib64/
|
| 50 |
+
parts/
|
| 51 |
+
sdist/
|
| 52 |
+
var/
|
| 53 |
+
wheels/
|
| 54 |
+
pip-wheel-metadata/
|
| 55 |
+
share/python-wheels/
|
| 56 |
+
*.egg-info/
|
| 57 |
+
.installed.cfg
|
| 58 |
+
*.egg
|
| 59 |
+
MANIFEST
|
| 60 |
+
|
| 61 |
+
# PyInstaller
|
| 62 |
+
# Usually these files are written by a python script from a template
|
| 63 |
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
| 64 |
+
*.manifest
|
| 65 |
+
*.spec
|
| 66 |
+
|
| 67 |
+
# Installer training_logs
|
| 68 |
+
pip-log.txt
|
| 69 |
+
pip-delete-this-directory.txt
|
| 70 |
+
|
| 71 |
+
# Unit test / coverage reports
|
| 72 |
+
htmlcov/
|
| 73 |
+
.tox/
|
| 74 |
+
.nox/
|
| 75 |
+
.coverage
|
| 76 |
+
.coverage.*
|
| 77 |
+
.cache
|
| 78 |
+
nosetests.xml
|
| 79 |
+
coverage.xml
|
| 80 |
+
*.cover
|
| 81 |
+
*.py,cover
|
| 82 |
+
.hypothesis/
|
| 83 |
+
.pytest_cache/
|
| 84 |
+
|
| 85 |
+
# Translations
|
| 86 |
+
*.mo
|
| 87 |
+
*.pot
|
| 88 |
+
|
| 89 |
+
# Django stuff:
|
| 90 |
+
*.log
|
| 91 |
+
local_settings.py
|
| 92 |
+
db.sqlite3
|
| 93 |
+
db.sqlite3-journal
|
| 94 |
+
|
| 95 |
+
# Flask stuff:
|
| 96 |
+
instance/
|
| 97 |
+
.webassets-cache
|
| 98 |
+
|
| 99 |
+
# Scrapy stuff:
|
| 100 |
+
.scrapy
|
| 101 |
+
|
| 102 |
+
# Sphinx documentation
|
| 103 |
+
docs/_build/
|
| 104 |
+
|
| 105 |
+
# PyBuilder
|
| 106 |
+
target/
|
| 107 |
+
|
| 108 |
+
# Jupyter Notebook
|
| 109 |
+
.ipynb_checkpoints
|
| 110 |
+
|
| 111 |
+
# IPython
|
| 112 |
+
profile_default/
|
| 113 |
+
ipython_config.py
|
| 114 |
+
|
| 115 |
+
# pyenv
|
| 116 |
+
.python-version
|
| 117 |
+
|
| 118 |
+
# pipenv
|
| 119 |
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
| 120 |
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
| 121 |
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
| 122 |
+
# install all needed dependencies.
|
| 123 |
+
#Pipfile.lock
|
| 124 |
+
|
| 125 |
+
# celery beat schedule file
|
| 126 |
+
celerybeat-schedule
|
| 127 |
+
|
| 128 |
+
# SageMath parsed files
|
| 129 |
+
*.sage.py
|
| 130 |
+
|
| 131 |
+
# Environments
|
| 132 |
+
.env
|
| 133 |
+
.venv
|
| 134 |
+
env/
|
| 135 |
+
venv/
|
| 136 |
+
ENV/
|
| 137 |
+
env.bak/
|
| 138 |
+
venv.bak/
|
| 139 |
+
|
| 140 |
+
# Spyder project settings
|
| 141 |
+
.spyderproject
|
| 142 |
+
.spyproject
|
| 143 |
+
|
| 144 |
+
# Rope project settings
|
| 145 |
+
.ropeproject
|
| 146 |
+
|
| 147 |
+
# mkdocs documentation
|
| 148 |
+
/site
|
| 149 |
+
|
| 150 |
+
# mypy
|
| 151 |
+
.mypy_cache/
|
| 152 |
+
.dmypy.json
|
| 153 |
+
dmypy.json
|
| 154 |
+
|
| 155 |
+
# Pyre type checker
|
| 156 |
+
.pyre/
|
| 157 |
+
.DS_Store
|
| 158 |
+
examples/.DS_Store
|
.idea/vcs.xml
DELETED
|
@@ -1,6 +0,0 @@
|
|
| 1 |
-
<?xml version="1.0" encoding="UTF-8"?>
|
| 2 |
-
<project version="4">
|
| 3 |
-
<component name="VcsDirectoryMappings">
|
| 4 |
-
<mapping directory="$PROJECT_DIR$/PyABSA" vcs="Git" />
|
| 5 |
-
</component>
|
| 6 |
-
</project>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.idea/workspace.xml
DELETED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoints/Code/{bert_mlp_all_cpdp_acc_64.52_f1_64.48.zip → CDD/bert_mlp_all_cpdp_acc_64.52_f1_64.48.zip}
RENAMED
|
File without changes
|