├── .gitignore ├── AdminInterface.png ├── ChineseInterface.png ├── EnglishInterface.png ├── Event_beta.py ├── LICENCE ├── README.md ├── YEDDA.py ├── YEDDA_Admin.py ├── YEDDAlogo.png ├── configs ├── .gitkeep └── default.config ├── demotext ├── ChineseDemo.ann ├── ChineseDemo.txt ├── ChineseDemo.txt.ann ├── EnglishDemo.txt ├── EnglishDemo.txt.ann ├── EnglishDemo1.txt ├── EnglishDemo1.txt.ann ├── Jie_resumeSample.txt.ann ├── UserA.ann ├── UserB.ann ├── UserC.ann ├── UserD.ann ├── UserE.ann └── test.tex ├── detailReport.png ├── resultMatrix.png ├── tex2pdf ├── eng.aux ├── eng.fdb_latexmk ├── eng.fls ├── eng.log ├── eng.pdf ├── eng.synctex.gz ├── eng.tex ├── example.pdf ├── llncs.cls ├── test.aux ├── test.fdb_latexmk ├── test.fls ├── test.log ├── test.pdf ├── test.synctex.gz └── test.tex └── utils ├── __init__.py ├── compareAnn.py ├── metric4ann.py └── recommend.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiesutd/YEDDA/HEAD/.gitignore -------------------------------------------------------------------------------- /AdminInterface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiesutd/YEDDA/HEAD/AdminInterface.png -------------------------------------------------------------------------------- /ChineseInterface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiesutd/YEDDA/HEAD/ChineseInterface.png -------------------------------------------------------------------------------- /EnglishInterface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiesutd/YEDDA/HEAD/EnglishInterface.png -------------------------------------------------------------------------------- /Event_beta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiesutd/YEDDA/HEAD/Event_beta.py -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiesutd/YEDDA/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiesutd/YEDDA/HEAD/README.md -------------------------------------------------------------------------------- /YEDDA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiesutd/YEDDA/HEAD/YEDDA.py -------------------------------------------------------------------------------- /YEDDA_Admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiesutd/YEDDA/HEAD/YEDDA_Admin.py -------------------------------------------------------------------------------- /YEDDAlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiesutd/YEDDA/HEAD/YEDDAlogo.png -------------------------------------------------------------------------------- /configs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /configs/default.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiesutd/YEDDA/HEAD/configs/default.config -------------------------------------------------------------------------------- /demotext/ChineseDemo.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiesutd/YEDDA/HEAD/demotext/ChineseDemo.ann -------------------------------------------------------------------------------- /demotext/ChineseDemo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiesutd/YEDDA/HEAD/demotext/ChineseDemo.txt -------------------------------------------------------------------------------- /demotext/ChineseDemo.txt.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiesutd/YEDDA/HEAD/demotext/ChineseDemo.txt.ann -------------------------------------------------------------------------------- /demotext/EnglishDemo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiesutd/YEDDA/HEAD/demotext/EnglishDemo.txt -------------------------------------------------------------------------------- /demotext/EnglishDemo.txt.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiesutd/YEDDA/HEAD/demotext/EnglishDemo.txt.ann -------------------------------------------------------------------------------- /demotext/EnglishDemo1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiesutd/YEDDA/HEAD/demotext/EnglishDemo1.txt -------------------------------------------------------------------------------- /demotext/EnglishDemo1.txt.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiesutd/YEDDA/HEAD/demotext/EnglishDemo1.txt.ann -------------------------------------------------------------------------------- /demotext/Jie_resumeSample.txt.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiesutd/YEDDA/HEAD/demotext/Jie_resumeSample.txt.ann -------------------------------------------------------------------------------- /demotext/UserA.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiesutd/YEDDA/HEAD/demotext/UserA.ann -------------------------------------------------------------------------------- /demotext/UserB.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiesutd/YEDDA/HEAD/demotext/UserB.ann -------------------------------------------------------------------------------- /demotext/UserC.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiesutd/YEDDA/HEAD/demotext/UserC.ann -------------------------------------------------------------------------------- /demotext/UserD.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiesutd/YEDDA/HEAD/demotext/UserD.ann -------------------------------------------------------------------------------- /demotext/UserE.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiesutd/YEDDA/HEAD/demotext/UserE.ann -------------------------------------------------------------------------------- /demotext/test.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiesutd/YEDDA/HEAD/demotext/test.tex -------------------------------------------------------------------------------- /detailReport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiesutd/YEDDA/HEAD/detailReport.png -------------------------------------------------------------------------------- /resultMatrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiesutd/YEDDA/HEAD/resultMatrix.png -------------------------------------------------------------------------------- /tex2pdf/eng.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiesutd/YEDDA/HEAD/tex2pdf/eng.aux -------------------------------------------------------------------------------- /tex2pdf/eng.fdb_latexmk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiesutd/YEDDA/HEAD/tex2pdf/eng.fdb_latexmk -------------------------------------------------------------------------------- /tex2pdf/eng.fls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiesutd/YEDDA/HEAD/tex2pdf/eng.fls -------------------------------------------------------------------------------- /tex2pdf/eng.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiesutd/YEDDA/HEAD/tex2pdf/eng.log -------------------------------------------------------------------------------- /tex2pdf/eng.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiesutd/YEDDA/HEAD/tex2pdf/eng.pdf -------------------------------------------------------------------------------- /tex2pdf/eng.synctex.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiesutd/YEDDA/HEAD/tex2pdf/eng.synctex.gz -------------------------------------------------------------------------------- /tex2pdf/eng.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiesutd/YEDDA/HEAD/tex2pdf/eng.tex -------------------------------------------------------------------------------- /tex2pdf/example.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiesutd/YEDDA/HEAD/tex2pdf/example.pdf -------------------------------------------------------------------------------- /tex2pdf/llncs.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiesutd/YEDDA/HEAD/tex2pdf/llncs.cls -------------------------------------------------------------------------------- /tex2pdf/test.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiesutd/YEDDA/HEAD/tex2pdf/test.aux -------------------------------------------------------------------------------- /tex2pdf/test.fdb_latexmk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiesutd/YEDDA/HEAD/tex2pdf/test.fdb_latexmk -------------------------------------------------------------------------------- /tex2pdf/test.fls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiesutd/YEDDA/HEAD/tex2pdf/test.fls -------------------------------------------------------------------------------- /tex2pdf/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiesutd/YEDDA/HEAD/tex2pdf/test.log -------------------------------------------------------------------------------- /tex2pdf/test.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiesutd/YEDDA/HEAD/tex2pdf/test.pdf -------------------------------------------------------------------------------- /tex2pdf/test.synctex.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiesutd/YEDDA/HEAD/tex2pdf/test.synctex.gz -------------------------------------------------------------------------------- /tex2pdf/test.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiesutd/YEDDA/HEAD/tex2pdf/test.tex -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/compareAnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiesutd/YEDDA/HEAD/utils/compareAnn.py -------------------------------------------------------------------------------- /utils/metric4ann.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiesutd/YEDDA/HEAD/utils/metric4ann.py -------------------------------------------------------------------------------- /utils/recommend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiesutd/YEDDA/HEAD/utils/recommend.py --------------------------------------------------------------------------------