├── README.md ├── graduation_project ├── cls-mtl │ ├── preprocess.py │ ├── task.py │ ├── tf-6-4-512.config │ ├── tf_layerwise_explicit.py │ ├── tf_layerwise_implicit.py │ ├── tf_stack_cls.py │ ├── tf_stack_mean_pooling.py │ ├── train.py │ ├── transformer.py │ └── utils.py ├── nli-mtl │ ├── README.md │ ├── mnli_preproc.py │ ├── qnli_preproc.py │ ├── rte_preproc.py │ ├── tf-6-8-512.config │ ├── train_stl.py │ ├── transformer.py │ ├── utils.py │ └── wnli_preproc.py └── stl │ ├── dataset.py │ ├── preprocess.py │ ├── tf-6-2-512.config │ ├── tf-6-4-512.config │ ├── train.py │ ├── transformer.py │ ├── utils.py │ └── vocabulary.py ├── materials ├── README.md ├── 中期报告.pdf ├── 中期答辩.pdf ├── 中期答辩.pptx ├── 毕业设计答辩.pdf ├── 毕业设计答辩.pptx └── 深层神经网络多任务学习综述(中文翻译).pdf └── thesis_tex ├── MTL-CNN.PNG ├── MTL-RNN.PNG ├── Makefile ├── README.md ├── SConstruct ├── abstract.tex ├── acknowledgments.tex ├── ch01-intro.tex ├── ch02-related_work.tex ├── ch03-model.tex ├── ch04-exp.tex ├── ch05-conclusions.tex ├── fonts_ziti ├── AdobeHeitiStd-Regular (v5.010).otf ├── AdobeSongStd-Light (v5.010).otf └── CourierStd.otf ├── gbt7714-2005.bst ├── missfont.log ├── mtl_int.png ├── nlp_pipline.png ├── refs.bib ├── tf.png ├── tf_s.png ├── thesis-bachelor.aux ├── thesis-bachelor.bbl ├── thesis-bachelor.blg ├── thesis-bachelor.log ├── thesis-bachelor.out ├── thesis-bachelor.pdf ├── thesis-bachelor.synctex.gz ├── thesis-bachelor.tex ├── thesis-bachelor.toc ├── thubib.bst ├── viz-mag.png ├── viz-mr.png ├── xdlogo.eps ├── xdubadge.eps ├── xduthesis.cfg └── xduthesis.cls /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/README.md -------------------------------------------------------------------------------- /graduation_project/cls-mtl/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/graduation_project/cls-mtl/preprocess.py -------------------------------------------------------------------------------- /graduation_project/cls-mtl/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/graduation_project/cls-mtl/task.py -------------------------------------------------------------------------------- /graduation_project/cls-mtl/tf-6-4-512.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/graduation_project/cls-mtl/tf-6-4-512.config -------------------------------------------------------------------------------- /graduation_project/cls-mtl/tf_layerwise_explicit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/graduation_project/cls-mtl/tf_layerwise_explicit.py -------------------------------------------------------------------------------- /graduation_project/cls-mtl/tf_layerwise_implicit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/graduation_project/cls-mtl/tf_layerwise_implicit.py -------------------------------------------------------------------------------- /graduation_project/cls-mtl/tf_stack_cls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/graduation_project/cls-mtl/tf_stack_cls.py -------------------------------------------------------------------------------- /graduation_project/cls-mtl/tf_stack_mean_pooling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/graduation_project/cls-mtl/tf_stack_mean_pooling.py -------------------------------------------------------------------------------- /graduation_project/cls-mtl/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/graduation_project/cls-mtl/train.py -------------------------------------------------------------------------------- /graduation_project/cls-mtl/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/graduation_project/cls-mtl/transformer.py -------------------------------------------------------------------------------- /graduation_project/cls-mtl/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/graduation_project/cls-mtl/utils.py -------------------------------------------------------------------------------- /graduation_project/nli-mtl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/graduation_project/nli-mtl/README.md -------------------------------------------------------------------------------- /graduation_project/nli-mtl/mnli_preproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/graduation_project/nli-mtl/mnli_preproc.py -------------------------------------------------------------------------------- /graduation_project/nli-mtl/qnli_preproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/graduation_project/nli-mtl/qnli_preproc.py -------------------------------------------------------------------------------- /graduation_project/nli-mtl/rte_preproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/graduation_project/nli-mtl/rte_preproc.py -------------------------------------------------------------------------------- /graduation_project/nli-mtl/tf-6-8-512.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/graduation_project/nli-mtl/tf-6-8-512.config -------------------------------------------------------------------------------- /graduation_project/nli-mtl/train_stl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/graduation_project/nli-mtl/train_stl.py -------------------------------------------------------------------------------- /graduation_project/nli-mtl/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/graduation_project/nli-mtl/transformer.py -------------------------------------------------------------------------------- /graduation_project/nli-mtl/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/graduation_project/nli-mtl/utils.py -------------------------------------------------------------------------------- /graduation_project/nli-mtl/wnli_preproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/graduation_project/nli-mtl/wnli_preproc.py -------------------------------------------------------------------------------- /graduation_project/stl/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/graduation_project/stl/dataset.py -------------------------------------------------------------------------------- /graduation_project/stl/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/graduation_project/stl/preprocess.py -------------------------------------------------------------------------------- /graduation_project/stl/tf-6-2-512.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/graduation_project/stl/tf-6-2-512.config -------------------------------------------------------------------------------- /graduation_project/stl/tf-6-4-512.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/graduation_project/stl/tf-6-4-512.config -------------------------------------------------------------------------------- /graduation_project/stl/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/graduation_project/stl/train.py -------------------------------------------------------------------------------- /graduation_project/stl/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/graduation_project/stl/transformer.py -------------------------------------------------------------------------------- /graduation_project/stl/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/graduation_project/stl/utils.py -------------------------------------------------------------------------------- /graduation_project/stl/vocabulary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/graduation_project/stl/vocabulary.py -------------------------------------------------------------------------------- /materials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/materials/README.md -------------------------------------------------------------------------------- /materials/中期报告.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/materials/中期报告.pdf -------------------------------------------------------------------------------- /materials/中期答辩.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/materials/中期答辩.pdf -------------------------------------------------------------------------------- /materials/中期答辩.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/materials/中期答辩.pptx -------------------------------------------------------------------------------- /materials/毕业设计答辩.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/materials/毕业设计答辩.pdf -------------------------------------------------------------------------------- /materials/毕业设计答辩.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/materials/毕业设计答辩.pptx -------------------------------------------------------------------------------- /materials/深层神经网络多任务学习综述(中文翻译).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/materials/深层神经网络多任务学习综述(中文翻译).pdf -------------------------------------------------------------------------------- /thesis_tex/MTL-CNN.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/thesis_tex/MTL-CNN.PNG -------------------------------------------------------------------------------- /thesis_tex/MTL-RNN.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/thesis_tex/MTL-RNN.PNG -------------------------------------------------------------------------------- /thesis_tex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/thesis_tex/Makefile -------------------------------------------------------------------------------- /thesis_tex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/thesis_tex/README.md -------------------------------------------------------------------------------- /thesis_tex/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/thesis_tex/SConstruct -------------------------------------------------------------------------------- /thesis_tex/abstract.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/thesis_tex/abstract.tex -------------------------------------------------------------------------------- /thesis_tex/acknowledgments.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/thesis_tex/acknowledgments.tex -------------------------------------------------------------------------------- /thesis_tex/ch01-intro.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/thesis_tex/ch01-intro.tex -------------------------------------------------------------------------------- /thesis_tex/ch02-related_work.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/thesis_tex/ch02-related_work.tex -------------------------------------------------------------------------------- /thesis_tex/ch03-model.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/thesis_tex/ch03-model.tex -------------------------------------------------------------------------------- /thesis_tex/ch04-exp.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/thesis_tex/ch04-exp.tex -------------------------------------------------------------------------------- /thesis_tex/ch05-conclusions.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/thesis_tex/ch05-conclusions.tex -------------------------------------------------------------------------------- /thesis_tex/fonts_ziti/AdobeHeitiStd-Regular (v5.010).otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/thesis_tex/fonts_ziti/AdobeHeitiStd-Regular (v5.010).otf -------------------------------------------------------------------------------- /thesis_tex/fonts_ziti/AdobeSongStd-Light (v5.010).otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/thesis_tex/fonts_ziti/AdobeSongStd-Light (v5.010).otf -------------------------------------------------------------------------------- /thesis_tex/fonts_ziti/CourierStd.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/thesis_tex/fonts_ziti/CourierStd.otf -------------------------------------------------------------------------------- /thesis_tex/gbt7714-2005.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/thesis_tex/gbt7714-2005.bst -------------------------------------------------------------------------------- /thesis_tex/missfont.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/thesis_tex/missfont.log -------------------------------------------------------------------------------- /thesis_tex/mtl_int.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/thesis_tex/mtl_int.png -------------------------------------------------------------------------------- /thesis_tex/nlp_pipline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/thesis_tex/nlp_pipline.png -------------------------------------------------------------------------------- /thesis_tex/refs.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/thesis_tex/refs.bib -------------------------------------------------------------------------------- /thesis_tex/tf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/thesis_tex/tf.png -------------------------------------------------------------------------------- /thesis_tex/tf_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/thesis_tex/tf_s.png -------------------------------------------------------------------------------- /thesis_tex/thesis-bachelor.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/thesis_tex/thesis-bachelor.aux -------------------------------------------------------------------------------- /thesis_tex/thesis-bachelor.bbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/thesis_tex/thesis-bachelor.bbl -------------------------------------------------------------------------------- /thesis_tex/thesis-bachelor.blg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/thesis_tex/thesis-bachelor.blg -------------------------------------------------------------------------------- /thesis_tex/thesis-bachelor.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/thesis_tex/thesis-bachelor.log -------------------------------------------------------------------------------- /thesis_tex/thesis-bachelor.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/thesis_tex/thesis-bachelor.out -------------------------------------------------------------------------------- /thesis_tex/thesis-bachelor.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/thesis_tex/thesis-bachelor.pdf -------------------------------------------------------------------------------- /thesis_tex/thesis-bachelor.synctex.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/thesis_tex/thesis-bachelor.synctex.gz -------------------------------------------------------------------------------- /thesis_tex/thesis-bachelor.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/thesis_tex/thesis-bachelor.tex -------------------------------------------------------------------------------- /thesis_tex/thesis-bachelor.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/thesis_tex/thesis-bachelor.toc -------------------------------------------------------------------------------- /thesis_tex/thubib.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/thesis_tex/thubib.bst -------------------------------------------------------------------------------- /thesis_tex/viz-mag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/thesis_tex/viz-mag.png -------------------------------------------------------------------------------- /thesis_tex/viz-mr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/thesis_tex/viz-mr.png -------------------------------------------------------------------------------- /thesis_tex/xdlogo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/thesis_tex/xdlogo.eps -------------------------------------------------------------------------------- /thesis_tex/xdubadge.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/thesis_tex/xdubadge.eps -------------------------------------------------------------------------------- /thesis_tex/xduthesis.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/thesis_tex/xduthesis.cfg -------------------------------------------------------------------------------- /thesis_tex/xduthesis.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txsun1997/Bachelor-Thesis-XDU/HEAD/thesis_tex/xduthesis.cls --------------------------------------------------------------------------------