├── .dockerignore ├── .github ├── chatbot-flow.png ├── fuzi-framework.png └── fuzi-preview.png ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── conf └── guotie.yaml ├── data ├── guotie.json ├── guotie │ ├── domain.yml │ └── nlu.yml └── input_vocab.txt ├── deploy ├── arm64.Dockerfile ├── arm64.requirements.txt └── deployment.yaml ├── model └── seq2seq.py ├── requirements.txt ├── run ├── convert_bio_to_yaml.py ├── convert_yaml_to_bio.py ├── generate_domain_from_nlu.py ├── server.py ├── test.py └── train.py ├── save └── guotie │ └── model.pt ├── test └── qps_test.py └── util ├── conf_util.py ├── data_model_util.py ├── data_util.py ├── dataset_util.py └── log_util.py /.dockerignore: -------------------------------------------------------------------------------- 1 | .git/ 2 | log/ -------------------------------------------------------------------------------- /.github/chatbot-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailln/fuzi-nlu/HEAD/.github/chatbot-flow.png -------------------------------------------------------------------------------- /.github/fuzi-framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailln/fuzi-nlu/HEAD/.github/fuzi-framework.png -------------------------------------------------------------------------------- /.github/fuzi-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailln/fuzi-nlu/HEAD/.github/fuzi-preview.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailln/fuzi-nlu/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailln/fuzi-nlu/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailln/fuzi-nlu/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailln/fuzi-nlu/HEAD/README.md -------------------------------------------------------------------------------- /conf/guotie.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailln/fuzi-nlu/HEAD/conf/guotie.yaml -------------------------------------------------------------------------------- /data/guotie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailln/fuzi-nlu/HEAD/data/guotie.json -------------------------------------------------------------------------------- /data/guotie/domain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailln/fuzi-nlu/HEAD/data/guotie/domain.yml -------------------------------------------------------------------------------- /data/guotie/nlu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailln/fuzi-nlu/HEAD/data/guotie/nlu.yml -------------------------------------------------------------------------------- /data/input_vocab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailln/fuzi-nlu/HEAD/data/input_vocab.txt -------------------------------------------------------------------------------- /deploy/arm64.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailln/fuzi-nlu/HEAD/deploy/arm64.Dockerfile -------------------------------------------------------------------------------- /deploy/arm64.requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailln/fuzi-nlu/HEAD/deploy/arm64.requirements.txt -------------------------------------------------------------------------------- /deploy/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailln/fuzi-nlu/HEAD/deploy/deployment.yaml -------------------------------------------------------------------------------- /model/seq2seq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailln/fuzi-nlu/HEAD/model/seq2seq.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailln/fuzi-nlu/HEAD/requirements.txt -------------------------------------------------------------------------------- /run/convert_bio_to_yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailln/fuzi-nlu/HEAD/run/convert_bio_to_yaml.py -------------------------------------------------------------------------------- /run/convert_yaml_to_bio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailln/fuzi-nlu/HEAD/run/convert_yaml_to_bio.py -------------------------------------------------------------------------------- /run/generate_domain_from_nlu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailln/fuzi-nlu/HEAD/run/generate_domain_from_nlu.py -------------------------------------------------------------------------------- /run/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailln/fuzi-nlu/HEAD/run/server.py -------------------------------------------------------------------------------- /run/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailln/fuzi-nlu/HEAD/run/test.py -------------------------------------------------------------------------------- /run/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailln/fuzi-nlu/HEAD/run/train.py -------------------------------------------------------------------------------- /save/guotie/model.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailln/fuzi-nlu/HEAD/save/guotie/model.pt -------------------------------------------------------------------------------- /test/qps_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailln/fuzi-nlu/HEAD/test/qps_test.py -------------------------------------------------------------------------------- /util/conf_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailln/fuzi-nlu/HEAD/util/conf_util.py -------------------------------------------------------------------------------- /util/data_model_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailln/fuzi-nlu/HEAD/util/data_model_util.py -------------------------------------------------------------------------------- /util/data_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailln/fuzi-nlu/HEAD/util/data_util.py -------------------------------------------------------------------------------- /util/dataset_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailln/fuzi-nlu/HEAD/util/dataset_util.py -------------------------------------------------------------------------------- /util/log_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailln/fuzi-nlu/HEAD/util/log_util.py --------------------------------------------------------------------------------