├── Makefile ├── README.md ├── chatbot.py ├── log └── figure │ ├── GAN.png │ └── tf_to_trt.png ├── model ├── ID210.pickle ├── ID210_649999.data-00000-of-00001 ├── ID210_649999.index └── ID210_649999.meta ├── parser.py └── src ├── tensorNet.cpp ├── tensorNet.h ├── tensorNet.i ├── tf_to_uff ├── chatbot.py ├── log │ └── README.md ├── model.py ├── parser.py └── tf_to_trt.py └── training ├── log └── README.md ├── main.py ├── model └── README.md ├── parser.py ├── parser_for_cornell.py └── sample └── README.md /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AastaNV/ChatBot/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AastaNV/ChatBot/HEAD/README.md -------------------------------------------------------------------------------- /chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AastaNV/ChatBot/HEAD/chatbot.py -------------------------------------------------------------------------------- /log/figure/GAN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AastaNV/ChatBot/HEAD/log/figure/GAN.png -------------------------------------------------------------------------------- /log/figure/tf_to_trt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AastaNV/ChatBot/HEAD/log/figure/tf_to_trt.png -------------------------------------------------------------------------------- /model/ID210.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AastaNV/ChatBot/HEAD/model/ID210.pickle -------------------------------------------------------------------------------- /model/ID210_649999.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AastaNV/ChatBot/HEAD/model/ID210_649999.data-00000-of-00001 -------------------------------------------------------------------------------- /model/ID210_649999.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AastaNV/ChatBot/HEAD/model/ID210_649999.index -------------------------------------------------------------------------------- /model/ID210_649999.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AastaNV/ChatBot/HEAD/model/ID210_649999.meta -------------------------------------------------------------------------------- /parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AastaNV/ChatBot/HEAD/parser.py -------------------------------------------------------------------------------- /src/tensorNet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AastaNV/ChatBot/HEAD/src/tensorNet.cpp -------------------------------------------------------------------------------- /src/tensorNet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AastaNV/ChatBot/HEAD/src/tensorNet.h -------------------------------------------------------------------------------- /src/tensorNet.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AastaNV/ChatBot/HEAD/src/tensorNet.i -------------------------------------------------------------------------------- /src/tf_to_uff/chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AastaNV/ChatBot/HEAD/src/tf_to_uff/chatbot.py -------------------------------------------------------------------------------- /src/tf_to_uff/log/README.md: -------------------------------------------------------------------------------- 1 | log 2 | -------------------------------------------------------------------------------- /src/tf_to_uff/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AastaNV/ChatBot/HEAD/src/tf_to_uff/model.py -------------------------------------------------------------------------------- /src/tf_to_uff/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AastaNV/ChatBot/HEAD/src/tf_to_uff/parser.py -------------------------------------------------------------------------------- /src/tf_to_uff/tf_to_trt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AastaNV/ChatBot/HEAD/src/tf_to_uff/tf_to_trt.py -------------------------------------------------------------------------------- /src/training/log/README.md: -------------------------------------------------------------------------------- 1 | log 2 | -------------------------------------------------------------------------------- /src/training/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AastaNV/ChatBot/HEAD/src/training/main.py -------------------------------------------------------------------------------- /src/training/model/README.md: -------------------------------------------------------------------------------- 1 | model 2 | -------------------------------------------------------------------------------- /src/training/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AastaNV/ChatBot/HEAD/src/training/parser.py -------------------------------------------------------------------------------- /src/training/parser_for_cornell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AastaNV/ChatBot/HEAD/src/training/parser_for_cornell.py -------------------------------------------------------------------------------- /src/training/sample/README.md: -------------------------------------------------------------------------------- 1 | sample 2 | --------------------------------------------------------------------------------