├── .directory ├── .gitignore ├── .jshintrc ├── .vscode └── settings.json ├── CITATION.cff ├── Dockerfile ├── README.md ├── codepen ├── text-mining-arff2csv.css ├── text-mining-arff2csv.js ├── text-mining.css └── text-mining.js ├── config └── webpack.config.js ├── data └── StopWords │ └── basic.txt ├── demo ├── .directory ├── 2a-thesis- raw - data.csv ├── QA-HumanBank.csv ├── QA-HumanBank.ods ├── QA-Library.csv ├── QA-Library.ods ├── QA-OnlineShopping.ods ├── SYT.csv ├── SYT.csv.bak ├── SYT.ods ├── comments-train-raw.ods ├── master-thesis-abstract.csv ├── novel-comment.csv ├── qa-pet-fruit-unknown.csv ├── qa-pet-fruit-unsupervised.csv ├── qa-pet-fruit-unsupervised_sort.csv ├── qa-pet-fruit.csv ├── qa-pet-fruit.ods ├── qa-pet-fruit.ots ├── qa-pet-fruit10.csv ├── qa-pet-fruit10.ods ├── qa-pet-fruit2.csv ├── qa-pet-fruit3.csv ├── qa-pet-fruit4.csv ├── qa-pet-fruit5.csv ├── qa-pet-fruit5.ods ├── qa-pet-fruit6.csv ├── qa-pet-fruit7.csv ├── qa-pet-fruit8.csv ├── thesis-sort.csv └── thesis-sort_1row.csv ├── dist ├── asset │ ├── author.png │ ├── brand-icons.eot │ ├── brand-icons.svg │ ├── brand-icons.ttf │ ├── brand-icons.woff │ ├── brand-icons.woff2 │ ├── flags.png │ ├── icons.eot │ ├── icons.svg │ ├── icons.ttf │ ├── icons.woff │ ├── icons.woff2 │ ├── loading.svg │ ├── outline-icons.eot │ ├── outline-icons.svg │ ├── outline-icons.ttf │ ├── outline-icons.woff │ └── outline-icons.woff2 ├── images │ └── icon.png ├── index.js ├── index.js.map ├── vendors │ ├── ConfigModal.js │ ├── ConfigModal.js.map │ ├── ConfigurationPanel.js │ ├── ConfigurationPanel.js.map │ ├── ExitBlocker.js │ ├── ExitBlocker.js.map │ ├── TextPanel.js │ ├── TextPanel.js.map │ ├── semantic-ui-niwsf.js │ └── semantic-ui-niwsf.js.map └── vendors~vendors │ ├── ConfigModal.js │ ├── ConfigModal.js.map │ ├── TextPanel.js │ └── TextPanel.js.map ├── docker-compose.yml ├── docker-compose ├── d1.webpack-build-development.sh ├── d2.webpack-watch-development.sh ├── d3.webpack-watch-build-production.sh ├── d4.webpack-build-production.sh └── docker-compose-build.sh ├── html-lib ├── Garlic.js │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── CNAME │ ├── CONTRIBUTE.md │ ├── LICENCE.md │ ├── README.md │ ├── bin │ │ ├── build.sh │ │ ├── minify │ │ └── test-suite.sh │ ├── component.json │ ├── dist │ │ ├── garlic-standalone.min.js │ │ └── garlic.min.js │ ├── garlic.js │ ├── index.html │ ├── package.json │ ├── resources │ │ ├── bootstrap-2.3.2.css │ │ ├── docs.css │ │ ├── favicon.ico │ │ ├── garlicjs.png │ │ ├── jquery-1.8.2.min.js │ │ └── zepto-1.0rc1[zepto.event.data].min.js │ └── tests │ │ ├── index.html │ │ └── tests.js ├── assets │ └── loading.svg ├── components │ ├── APIManager │ │ ├── APIManager.js │ │ └── APIManager.vue │ ├── ComputedManager │ │ ├── ComputedManager.js │ │ └── ComputedManager.vue │ ├── ConfigurationPanel │ │ ├── ConfigurationPanel.html │ │ ├── ConfigurationPanel.js │ │ ├── ConfigurationPanel.less │ │ └── ConfigurationPanel.vue │ ├── PanelMenu │ │ ├── PanelMenu.html │ │ ├── PanelMenu.js │ │ ├── PanelMenu.less │ │ └── PanelMenu.vue │ ├── TemplateComponent │ │ ├── TemplateComponent.html │ │ ├── TemplateComponent.js │ │ ├── TemplateComponent.less │ │ └── TemplateComponent.vue │ └── TextPanel │ │ ├── InputTable │ │ ├── InputTable.html │ │ ├── InputTable.js │ │ ├── InputTable.less │ │ ├── InputTable.vue │ │ └── README.md │ │ ├── TextInputPanel │ │ ├── TextInputPanel.html │ │ ├── TextInputPanel.js │ │ ├── TextInputPanel.less │ │ └── TextInputPanel.vue │ │ ├── TextOutputPanel │ │ ├── TextOutputExportPanel │ │ │ ├── TextOutputExportPanel.html │ │ │ ├── TextOutputExportPanel.js │ │ │ ├── TextOutputExportPanel.less │ │ │ └── TextOutputExportPanel.vue │ │ ├── TextOutputPanel.html │ │ ├── TextOutputPanel.js │ │ ├── TextOutputPanel.less │ │ └── TextOutputPanel.vue │ │ ├── TextPanel.html │ │ ├── TextPanel.js │ │ ├── TextPanel.less │ │ ├── TextPanel.vue │ │ └── TextProcessComponent │ │ ├── TextProcessComponent.html │ │ ├── TextProcessComponent.js │ │ ├── TextProcessComponent.less │ │ └── TextProcessComponent.vue ├── config │ ├── config-development.js │ ├── config-session.js │ └── config-state.js ├── form-persist.js ├── ga.js ├── index.html ├── input-file-loader.js ├── script.js ├── styles │ └── styles.less ├── utils │ ├── utils.js │ ├── utilsAsync.js │ ├── utilsSheet.js │ └── utilsString.js ├── vendors │ ├── FileSaver.js │ ├── Porter-Stemmer │ │ ├── PorterStemmer1980.min.js │ │ └── README.md │ ├── clipboard │ │ ├── clipboard.min.js │ │ └── puli-util.clipboard.js │ ├── date-helper.js │ ├── js-xlsx │ │ ├── Blob.js │ │ ├── full │ │ │ ├── cpexcel.js │ │ │ ├── jszip.js │ │ │ ├── suppress_export.js │ │ │ └── xlsx.js │ │ ├── shim.min.js │ │ └── xlsx.full.min.js │ ├── less │ │ └── less.min.js │ ├── odt.js │ │ ├── README.md │ │ ├── jszip.min.js │ │ └── odt.js │ ├── puli-post-message-api │ │ ├── README.md │ │ ├── puli-post-message-api.js │ │ └── puli-post-message-api.min.js │ ├── semantic-ui │ │ ├── semantic.min.css │ │ ├── semantic.min.js │ │ └── themes │ │ │ └── default │ │ │ └── assets │ │ │ └── fonts │ │ │ ├── icons.svg │ │ │ ├── icons.ttf │ │ │ ├── icons.woff │ │ │ └── icons.woff2 │ └── vue │ │ ├── httpVueLoader.js │ │ ├── httpVueLoaderLess.js │ │ └── vue.min.js ├── vue-app-components.js ├── vue-app-computed.js ├── vue-app-data.js ├── vue-app-methods.js ├── vue-app-mounted.js ├── vue-app-watch.js └── vue-app.js ├── index.html ├── jquery.js ├── manifest.json ├── nbproject ├── customs.json ├── project.properties └── project.xml ├── node.js └── node.js ├── package.json ├── postcss.config.js ├── punctuations-userdict └── userdict.utf8 ├── require-jieba-js.js ├── scripts ├── data │ ├── dict.js │ ├── dict.txt.big │ ├── dict_custom.js │ └── dictionary.js ├── finalseg.js ├── finalseg │ ├── prob_emit.js │ ├── prob_start.js │ └── prob_trans.js ├── main.js └── require.js ├── sender.html ├── src ├── ComputedManager │ ├── ComputedManager.html │ ├── ComputedManager.js │ └── ComputedManager.vue ├── ConfigDevelopment.js ├── ConfigSession.js ├── ConfigState.js ├── IndexWatch.js ├── clientConfig.js ├── components │ ├── ConfigurationPanel │ │ ├── ConfigurationPanel.html │ │ ├── ConfigurationPanel.js │ │ ├── ConfigurationPanel.less │ │ └── ConfigurationPanel.vue │ ├── Index.html │ ├── Index.js │ ├── Index.less │ ├── Index.vue │ ├── Index.yaml │ ├── PanelMenu │ │ ├── PanelMenu.html │ │ ├── PanelMenu.js │ │ ├── PanelMenu.less │ │ └── PanelMenu.vue │ ├── README.md │ ├── TextPanel │ │ ├── InputTable │ │ │ ├── InputTable.html │ │ │ ├── InputTable.js │ │ │ ├── InputTable.less │ │ │ ├── InputTable.vue │ │ │ └── README.md │ │ ├── TextInputPanel │ │ │ ├── TextInputPanel.html │ │ │ ├── TextInputPanel.js │ │ │ ├── TextInputPanel.less │ │ │ └── TextInputPanel.vue │ │ ├── TextOutputExportPanel │ │ │ ├── TextOutputExportPanel.html │ │ │ ├── TextOutputExportPanel.js │ │ │ ├── TextOutputExportPanel.less │ │ │ └── TextOutputExportPanel.vue │ │ ├── TextOutputPanel │ │ │ ├── TextOutputEmbbedingPanel │ │ │ │ ├── README.md │ │ │ │ ├── TextOutputEmbbedingPanel.html │ │ │ │ ├── TextOutputEmbbedingPanel.js │ │ │ │ ├── TextOutputEmbbedingPanel.less │ │ │ │ ├── TextOutputEmbbedingPanel.vue │ │ │ │ ├── TextOutputEmbbedingPanel.yaml │ │ │ │ └── testEmbbeding.js │ │ │ ├── TextOutputPanel.html │ │ │ ├── TextOutputPanel.js │ │ │ ├── TextOutputPanel.less │ │ │ ├── TextOutputPanel.vue │ │ │ ├── TextOutputSegPanel │ │ │ │ ├── README.md │ │ │ │ ├── TextOutputSegPanel.html │ │ │ │ ├── TextOutputSegPanel.js │ │ │ │ ├── TextOutputSegPanel.less │ │ │ │ ├── TextOutputSegPanel.vue │ │ │ │ └── TextOutputSegPanel.yaml │ │ │ ├── TextOutputTransPanel │ │ │ │ ├── README.md │ │ │ │ ├── TextOutputTransPanel.html │ │ │ │ ├── TextOutputTransPanel.js │ │ │ │ ├── TextOutputTransPanel.less │ │ │ │ ├── TextOutputTransPanel.vue │ │ │ │ └── TextOutputTransPanel.yaml │ │ │ └── TextOutputWordVectorPanel │ │ │ │ ├── README.md │ │ │ │ ├── TextOutputWordVectorPanel.html │ │ │ │ ├── TextOutputWordVectorPanel.js │ │ │ │ ├── TextOutputWordVectorPanel.less │ │ │ │ ├── TextOutputWordVectorPanel.vue │ │ │ │ └── TextOutputWordVectorPanel.yaml │ │ ├── TextPanel.html │ │ ├── TextPanel.js │ │ ├── TextPanel.less │ │ ├── TextPanel.vue │ │ └── TextProcessComponent │ │ │ ├── Porter-Stemmer │ │ │ ├── PorterStemmer1980.min.js │ │ │ └── README.md │ │ │ ├── TextProcessComponent.html │ │ │ ├── TextProcessComponent.js │ │ │ ├── TextProcessComponent.less │ │ │ └── TextProcessComponent.vue │ ├── [TemplateExample │ │ ├── README.md │ │ ├── TemplateExample.html │ │ ├── TemplateExample.js │ │ ├── TemplateExample.less │ │ ├── TemplateExample.vue │ │ └── TemplateExample.yaml │ └── images │ │ └── loading.svg ├── config.js ├── config.production.js ├── i18n │ ├── i18n-global.conf.js │ └── i18n.js ├── index.js ├── index.tpl ├── plugins.js ├── service-worker-loader.js ├── styles │ ├── global.less │ ├── intMobileHeight.js │ ├── semantic-ui-niwsf │ │ ├── .docs │ │ │ ├── Icon _ Semantic UI.mhtml │ │ │ ├── bundle-semantic.niwsf.css │ │ │ └── semantic.css │ │ ├── README.md │ │ ├── scripts │ │ │ ├── semantic.niwsf.accordion.js │ │ │ ├── semantic.niwsf.api.js │ │ │ ├── semantic.niwsf.checkbox.js │ │ │ ├── semantic.niwsf.dimmer.js │ │ │ ├── semantic.niwsf.dropdown.js │ │ │ ├── semantic.niwsf.embed.js │ │ │ ├── semantic.niwsf.form.js │ │ │ ├── semantic.niwsf.modal.js │ │ │ ├── semantic.niwsf.nag.js │ │ │ ├── semantic.niwsf.popup.js │ │ │ ├── semantic.niwsf.progress.js │ │ │ ├── semantic.niwsf.rating.js │ │ │ ├── semantic.niwsf.search.js │ │ │ ├── semantic.niwsf.shape.js │ │ │ ├── semantic.niwsf.sidebar.js │ │ │ ├── semantic.niwsf.site.js │ │ │ ├── semantic.niwsf.sticky.js │ │ │ ├── semantic.niwsf.tab.js │ │ │ ├── semantic.niwsf.transition.js │ │ │ └── semantic.niwsf.visibility.js │ │ ├── semantic-ui-niwsf-webpack.js │ │ ├── semantic-ui-niwsf.js │ │ ├── semantic-ui-niwsf.less │ │ ├── semantic.js │ │ └── styles │ │ │ ├── semantic.niwsf.accordion.less │ │ │ ├── semantic.niwsf.ad.less │ │ │ ├── semantic.niwsf.breadcrumb.less │ │ │ ├── semantic.niwsf.button.less │ │ │ ├── semantic.niwsf.cards.less │ │ │ ├── semantic.niwsf.checkbox.less │ │ │ ├── semantic.niwsf.comments.less │ │ │ ├── semantic.niwsf.container.less │ │ │ ├── semantic.niwsf.custom.less │ │ │ ├── semantic.niwsf.dimmer.less │ │ │ ├── semantic.niwsf.divider.less │ │ │ ├── semantic.niwsf.dropdown.less │ │ │ ├── semantic.niwsf.embed.less │ │ │ ├── semantic.niwsf.feed.less │ │ │ ├── semantic.niwsf.flag.less │ │ │ ├── semantic.niwsf.font.css │ │ │ ├── semantic.niwsf.form.less │ │ │ ├── semantic.niwsf.grid.less │ │ │ ├── semantic.niwsf.header.less │ │ │ ├── semantic.niwsf.icon.less │ │ │ ├── semantic.niwsf.images.less │ │ │ ├── semantic.niwsf.input.less │ │ │ ├── semantic.niwsf.items.less │ │ │ ├── semantic.niwsf.keyframes.less │ │ │ ├── semantic.niwsf.label.less │ │ │ ├── semantic.niwsf.list.less │ │ │ ├── semantic.niwsf.loader.less │ │ │ ├── semantic.niwsf.menu.less │ │ │ ├── semantic.niwsf.message.less │ │ │ ├── semantic.niwsf.modal.less │ │ │ ├── semantic.niwsf.nag.less │ │ │ ├── semantic.niwsf.placeholder.less │ │ │ ├── semantic.niwsf.popup.less │ │ │ ├── semantic.niwsf.progress.less │ │ │ ├── semantic.niwsf.rail.less │ │ │ ├── semantic.niwsf.rating.less │ │ │ ├── semantic.niwsf.reset.less │ │ │ ├── semantic.niwsf.reveal.less │ │ │ ├── semantic.niwsf.search.less │ │ │ ├── semantic.niwsf.segment.less │ │ │ ├── semantic.niwsf.shape.less │ │ │ ├── semantic.niwsf.sidebar.less │ │ │ ├── semantic.niwsf.statistic.less │ │ │ ├── semantic.niwsf.steps.less │ │ │ ├── semantic.niwsf.sticky.less │ │ │ ├── semantic.niwsf.tab.less │ │ │ ├── semantic.niwsf.table.less │ │ │ ├── semantic.niwsf.transition.less │ │ │ ├── themes │ │ │ └── default │ │ │ │ └── assets │ │ │ │ ├── fonts │ │ │ │ ├── brand-icons.eot │ │ │ │ ├── brand-icons.svg │ │ │ │ ├── brand-icons.ttf │ │ │ │ ├── brand-icons.woff │ │ │ │ ├── brand-icons.woff2 │ │ │ │ ├── icons.eot │ │ │ │ ├── icons.otf │ │ │ │ ├── icons.svg │ │ │ │ ├── icons.ttf │ │ │ │ ├── icons.woff │ │ │ │ ├── icons.woff2 │ │ │ │ ├── outline-icons.eot │ │ │ │ ├── outline-icons.svg │ │ │ │ ├── outline-icons.ttf │ │ │ │ ├── outline-icons.woff │ │ │ │ └── outline-icons.woff2 │ │ │ │ └── images │ │ │ │ └── flags.png │ │ │ └── variables.less │ ├── semantic-ui.js │ ├── style.config.js │ └── styles.js └── utils │ ├── AsyncUtils.js │ ├── AxiosUtils.js │ ├── ClipboardUtils.js │ ├── FileUtils.js │ ├── TransUtils.js │ ├── date-helper.js │ ├── puli-post-message-api │ ├── README.md │ └── puli-post-message-api.js │ ├── utils.js │ ├── utilsSheet.js │ └── utilsString.js ├── start-local-server.sh ├── stop_words.txt ├── test-ods.html ├── user_dict.txt ├── weka ├── RunWeka.ini ├── arff2csv │ ├── index.html │ ├── script.js │ └── style.css ├── simple-kmeans │ ├── README.md │ ├── TagCloud.js │ ├── cascadeKMeans1.0.4.zip │ ├── cluster.js │ ├── data-iris.csv │ ├── data-rfm.csv │ ├── data-samedata.csv │ ├── data-text-mining.csv │ ├── data.csv │ ├── index.html │ ├── script.js │ └── style.css └── spreadsheet2arff │ ├── data_date.csv │ ├── data_timestamp.csv │ ├── index.html │ ├── script.js │ ├── style.css │ ├── weka.png │ └── xlsx.core.min.js ├── weka_arff_csv.html ├── weka_csv_arff.html └── word_remap.txt /.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | Timestamp=2022,4,20,22,6,57.861 3 | Version=4 4 | 5 | [Settings] 6 | HiddenFilesShown=true 7 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /nbproject/private/ 2 | /[[]document]/ -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/.jshintrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5502 3 | } -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/CITATION.cff -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/README.md -------------------------------------------------------------------------------- /codepen/text-mining-arff2csv.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/codepen/text-mining-arff2csv.css -------------------------------------------------------------------------------- /codepen/text-mining-arff2csv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/codepen/text-mining-arff2csv.js -------------------------------------------------------------------------------- /codepen/text-mining.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/codepen/text-mining.css -------------------------------------------------------------------------------- /codepen/text-mining.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/codepen/text-mining.js -------------------------------------------------------------------------------- /config/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/config/webpack.config.js -------------------------------------------------------------------------------- /data/StopWords/basic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/data/StopWords/basic.txt -------------------------------------------------------------------------------- /demo/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | Timestamp=2022,4,25,20,53,3.669 3 | Version=4 4 | ViewMode=2 5 | -------------------------------------------------------------------------------- /demo/2a-thesis- raw - data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/demo/2a-thesis- raw - data.csv -------------------------------------------------------------------------------- /demo/QA-HumanBank.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/demo/QA-HumanBank.csv -------------------------------------------------------------------------------- /demo/QA-HumanBank.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/demo/QA-HumanBank.ods -------------------------------------------------------------------------------- /demo/QA-Library.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/demo/QA-Library.csv -------------------------------------------------------------------------------- /demo/QA-Library.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/demo/QA-Library.ods -------------------------------------------------------------------------------- /demo/QA-OnlineShopping.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/demo/QA-OnlineShopping.ods -------------------------------------------------------------------------------- /demo/SYT.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/demo/SYT.csv -------------------------------------------------------------------------------- /demo/SYT.csv.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/demo/SYT.csv.bak -------------------------------------------------------------------------------- /demo/SYT.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/demo/SYT.ods -------------------------------------------------------------------------------- /demo/comments-train-raw.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/demo/comments-train-raw.ods -------------------------------------------------------------------------------- /demo/master-thesis-abstract.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/demo/master-thesis-abstract.csv -------------------------------------------------------------------------------- /demo/novel-comment.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/demo/novel-comment.csv -------------------------------------------------------------------------------- /demo/qa-pet-fruit-unknown.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/demo/qa-pet-fruit-unknown.csv -------------------------------------------------------------------------------- /demo/qa-pet-fruit-unsupervised.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/demo/qa-pet-fruit-unsupervised.csv -------------------------------------------------------------------------------- /demo/qa-pet-fruit-unsupervised_sort.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/demo/qa-pet-fruit-unsupervised_sort.csv -------------------------------------------------------------------------------- /demo/qa-pet-fruit.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/demo/qa-pet-fruit.csv -------------------------------------------------------------------------------- /demo/qa-pet-fruit.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/demo/qa-pet-fruit.ods -------------------------------------------------------------------------------- /demo/qa-pet-fruit.ots: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/demo/qa-pet-fruit.ots -------------------------------------------------------------------------------- /demo/qa-pet-fruit10.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/demo/qa-pet-fruit10.csv -------------------------------------------------------------------------------- /demo/qa-pet-fruit10.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/demo/qa-pet-fruit10.ods -------------------------------------------------------------------------------- /demo/qa-pet-fruit2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/demo/qa-pet-fruit2.csv -------------------------------------------------------------------------------- /demo/qa-pet-fruit3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/demo/qa-pet-fruit3.csv -------------------------------------------------------------------------------- /demo/qa-pet-fruit4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/demo/qa-pet-fruit4.csv -------------------------------------------------------------------------------- /demo/qa-pet-fruit5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/demo/qa-pet-fruit5.csv -------------------------------------------------------------------------------- /demo/qa-pet-fruit5.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/demo/qa-pet-fruit5.ods -------------------------------------------------------------------------------- /demo/qa-pet-fruit6.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/demo/qa-pet-fruit6.csv -------------------------------------------------------------------------------- /demo/qa-pet-fruit7.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/demo/qa-pet-fruit7.csv -------------------------------------------------------------------------------- /demo/qa-pet-fruit8.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/demo/qa-pet-fruit8.csv -------------------------------------------------------------------------------- /demo/thesis-sort.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/demo/thesis-sort.csv -------------------------------------------------------------------------------- /demo/thesis-sort_1row.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/demo/thesis-sort_1row.csv -------------------------------------------------------------------------------- /dist/asset/author.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/dist/asset/author.png -------------------------------------------------------------------------------- /dist/asset/brand-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/dist/asset/brand-icons.eot -------------------------------------------------------------------------------- /dist/asset/brand-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/dist/asset/brand-icons.svg -------------------------------------------------------------------------------- /dist/asset/brand-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/dist/asset/brand-icons.ttf -------------------------------------------------------------------------------- /dist/asset/brand-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/dist/asset/brand-icons.woff -------------------------------------------------------------------------------- /dist/asset/brand-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/dist/asset/brand-icons.woff2 -------------------------------------------------------------------------------- /dist/asset/flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/dist/asset/flags.png -------------------------------------------------------------------------------- /dist/asset/icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/dist/asset/icons.eot -------------------------------------------------------------------------------- /dist/asset/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/dist/asset/icons.svg -------------------------------------------------------------------------------- /dist/asset/icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/dist/asset/icons.ttf -------------------------------------------------------------------------------- /dist/asset/icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/dist/asset/icons.woff -------------------------------------------------------------------------------- /dist/asset/icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/dist/asset/icons.woff2 -------------------------------------------------------------------------------- /dist/asset/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/dist/asset/loading.svg -------------------------------------------------------------------------------- /dist/asset/outline-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/dist/asset/outline-icons.eot -------------------------------------------------------------------------------- /dist/asset/outline-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/dist/asset/outline-icons.svg -------------------------------------------------------------------------------- /dist/asset/outline-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/dist/asset/outline-icons.ttf -------------------------------------------------------------------------------- /dist/asset/outline-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/dist/asset/outline-icons.woff -------------------------------------------------------------------------------- /dist/asset/outline-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/dist/asset/outline-icons.woff2 -------------------------------------------------------------------------------- /dist/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/dist/images/icon.png -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/dist/index.js.map -------------------------------------------------------------------------------- /dist/vendors/ConfigModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/dist/vendors/ConfigModal.js -------------------------------------------------------------------------------- /dist/vendors/ConfigModal.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/dist/vendors/ConfigModal.js.map -------------------------------------------------------------------------------- /dist/vendors/ConfigurationPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/dist/vendors/ConfigurationPanel.js -------------------------------------------------------------------------------- /dist/vendors/ConfigurationPanel.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/dist/vendors/ConfigurationPanel.js.map -------------------------------------------------------------------------------- /dist/vendors/ExitBlocker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/dist/vendors/ExitBlocker.js -------------------------------------------------------------------------------- /dist/vendors/ExitBlocker.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/dist/vendors/ExitBlocker.js.map -------------------------------------------------------------------------------- /dist/vendors/TextPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/dist/vendors/TextPanel.js -------------------------------------------------------------------------------- /dist/vendors/TextPanel.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/dist/vendors/TextPanel.js.map -------------------------------------------------------------------------------- /dist/vendors/semantic-ui-niwsf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/dist/vendors/semantic-ui-niwsf.js -------------------------------------------------------------------------------- /dist/vendors/semantic-ui-niwsf.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/dist/vendors/semantic-ui-niwsf.js.map -------------------------------------------------------------------------------- /dist/vendors~vendors/ConfigModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/dist/vendors~vendors/ConfigModal.js -------------------------------------------------------------------------------- /dist/vendors~vendors/ConfigModal.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/dist/vendors~vendors/ConfigModal.js.map -------------------------------------------------------------------------------- /dist/vendors~vendors/TextPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/dist/vendors~vendors/TextPanel.js -------------------------------------------------------------------------------- /dist/vendors~vendors/TextPanel.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/dist/vendors~vendors/TextPanel.js.map -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker-compose/d1.webpack-build-development.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/docker-compose/d1.webpack-build-development.sh -------------------------------------------------------------------------------- /docker-compose/d2.webpack-watch-development.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/docker-compose/d2.webpack-watch-development.sh -------------------------------------------------------------------------------- /docker-compose/d3.webpack-watch-build-production.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/docker-compose/d3.webpack-watch-build-production.sh -------------------------------------------------------------------------------- /docker-compose/d4.webpack-build-production.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/docker-compose/d4.webpack-build-production.sh -------------------------------------------------------------------------------- /docker-compose/docker-compose-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/docker-compose/docker-compose-build.sh -------------------------------------------------------------------------------- /html-lib/Garlic.js/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /node_modules 3 | /bower_components 4 | -------------------------------------------------------------------------------- /html-lib/Garlic.js/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/Garlic.js/.travis.yml -------------------------------------------------------------------------------- /html-lib/Garlic.js/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/Garlic.js/CHANGELOG.md -------------------------------------------------------------------------------- /html-lib/Garlic.js/CNAME: -------------------------------------------------------------------------------- 1 | garlicjs.org -------------------------------------------------------------------------------- /html-lib/Garlic.js/CONTRIBUTE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/Garlic.js/CONTRIBUTE.md -------------------------------------------------------------------------------- /html-lib/Garlic.js/LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/Garlic.js/LICENCE.md -------------------------------------------------------------------------------- /html-lib/Garlic.js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/Garlic.js/README.md -------------------------------------------------------------------------------- /html-lib/Garlic.js/bin/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/Garlic.js/bin/build.sh -------------------------------------------------------------------------------- /html-lib/Garlic.js/bin/minify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/Garlic.js/bin/minify -------------------------------------------------------------------------------- /html-lib/Garlic.js/bin/test-suite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/Garlic.js/bin/test-suite.sh -------------------------------------------------------------------------------- /html-lib/Garlic.js/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/Garlic.js/component.json -------------------------------------------------------------------------------- /html-lib/Garlic.js/dist/garlic-standalone.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/Garlic.js/dist/garlic-standalone.min.js -------------------------------------------------------------------------------- /html-lib/Garlic.js/dist/garlic.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/Garlic.js/dist/garlic.min.js -------------------------------------------------------------------------------- /html-lib/Garlic.js/garlic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/Garlic.js/garlic.js -------------------------------------------------------------------------------- /html-lib/Garlic.js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/Garlic.js/index.html -------------------------------------------------------------------------------- /html-lib/Garlic.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/Garlic.js/package.json -------------------------------------------------------------------------------- /html-lib/Garlic.js/resources/bootstrap-2.3.2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/Garlic.js/resources/bootstrap-2.3.2.css -------------------------------------------------------------------------------- /html-lib/Garlic.js/resources/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/Garlic.js/resources/docs.css -------------------------------------------------------------------------------- /html-lib/Garlic.js/resources/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/Garlic.js/resources/favicon.ico -------------------------------------------------------------------------------- /html-lib/Garlic.js/resources/garlicjs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/Garlic.js/resources/garlicjs.png -------------------------------------------------------------------------------- /html-lib/Garlic.js/resources/jquery-1.8.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/Garlic.js/resources/jquery-1.8.2.min.js -------------------------------------------------------------------------------- /html-lib/Garlic.js/resources/zepto-1.0rc1[zepto.event.data].min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/Garlic.js/resources/zepto-1.0rc1[zepto.event.data].min.js -------------------------------------------------------------------------------- /html-lib/Garlic.js/tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/Garlic.js/tests/index.html -------------------------------------------------------------------------------- /html-lib/Garlic.js/tests/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/Garlic.js/tests/tests.js -------------------------------------------------------------------------------- /html-lib/assets/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/assets/loading.svg -------------------------------------------------------------------------------- /html-lib/components/APIManager/APIManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/components/APIManager/APIManager.js -------------------------------------------------------------------------------- /html-lib/components/APIManager/APIManager.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/components/APIManager/APIManager.vue -------------------------------------------------------------------------------- /html-lib/components/ComputedManager/ComputedManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/components/ComputedManager/ComputedManager.js -------------------------------------------------------------------------------- /html-lib/components/ComputedManager/ComputedManager.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/components/ComputedManager/ComputedManager.vue -------------------------------------------------------------------------------- /html-lib/components/ConfigurationPanel/ConfigurationPanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/components/ConfigurationPanel/ConfigurationPanel.html -------------------------------------------------------------------------------- /html-lib/components/ConfigurationPanel/ConfigurationPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/components/ConfigurationPanel/ConfigurationPanel.js -------------------------------------------------------------------------------- /html-lib/components/ConfigurationPanel/ConfigurationPanel.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /html-lib/components/ConfigurationPanel/ConfigurationPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/components/ConfigurationPanel/ConfigurationPanel.vue -------------------------------------------------------------------------------- /html-lib/components/PanelMenu/PanelMenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/components/PanelMenu/PanelMenu.html -------------------------------------------------------------------------------- /html-lib/components/PanelMenu/PanelMenu.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | prop: ['config'] 3 | } -------------------------------------------------------------------------------- /html-lib/components/PanelMenu/PanelMenu.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /html-lib/components/PanelMenu/PanelMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/components/PanelMenu/PanelMenu.vue -------------------------------------------------------------------------------- /html-lib/components/TemplateComponent/TemplateComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/components/TemplateComponent/TemplateComponent.html -------------------------------------------------------------------------------- /html-lib/components/TemplateComponent/TemplateComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/components/TemplateComponent/TemplateComponent.js -------------------------------------------------------------------------------- /html-lib/components/TemplateComponent/TemplateComponent.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /html-lib/components/TemplateComponent/TemplateComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/components/TemplateComponent/TemplateComponent.vue -------------------------------------------------------------------------------- /html-lib/components/TextPanel/InputTable/InputTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/components/TextPanel/InputTable/InputTable.html -------------------------------------------------------------------------------- /html-lib/components/TextPanel/InputTable/InputTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/components/TextPanel/InputTable/InputTable.js -------------------------------------------------------------------------------- /html-lib/components/TextPanel/InputTable/InputTable.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /html-lib/components/TextPanel/InputTable/InputTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/components/TextPanel/InputTable/InputTable.vue -------------------------------------------------------------------------------- /html-lib/components/TextPanel/InputTable/README.md: -------------------------------------------------------------------------------- 1 | 廢棄不使用 2 | 20220424-1746 -------------------------------------------------------------------------------- /html-lib/components/TextPanel/TextInputPanel/TextInputPanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/components/TextPanel/TextInputPanel/TextInputPanel.html -------------------------------------------------------------------------------- /html-lib/components/TextPanel/TextInputPanel/TextInputPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/components/TextPanel/TextInputPanel/TextInputPanel.js -------------------------------------------------------------------------------- /html-lib/components/TextPanel/TextInputPanel/TextInputPanel.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /html-lib/components/TextPanel/TextInputPanel/TextInputPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/components/TextPanel/TextInputPanel/TextInputPanel.vue -------------------------------------------------------------------------------- /html-lib/components/TextPanel/TextOutputPanel/TextOutputExportPanel/TextOutputExportPanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/components/TextPanel/TextOutputPanel/TextOutputExportPanel/TextOutputExportPanel.html -------------------------------------------------------------------------------- /html-lib/components/TextPanel/TextOutputPanel/TextOutputExportPanel/TextOutputExportPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/components/TextPanel/TextOutputPanel/TextOutputExportPanel/TextOutputExportPanel.js -------------------------------------------------------------------------------- /html-lib/components/TextPanel/TextOutputPanel/TextOutputExportPanel/TextOutputExportPanel.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /html-lib/components/TextPanel/TextOutputPanel/TextOutputExportPanel/TextOutputExportPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/components/TextPanel/TextOutputPanel/TextOutputExportPanel/TextOutputExportPanel.vue -------------------------------------------------------------------------------- /html-lib/components/TextPanel/TextOutputPanel/TextOutputPanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/components/TextPanel/TextOutputPanel/TextOutputPanel.html -------------------------------------------------------------------------------- /html-lib/components/TextPanel/TextOutputPanel/TextOutputPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/components/TextPanel/TextOutputPanel/TextOutputPanel.js -------------------------------------------------------------------------------- /html-lib/components/TextPanel/TextOutputPanel/TextOutputPanel.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /html-lib/components/TextPanel/TextOutputPanel/TextOutputPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/components/TextPanel/TextOutputPanel/TextOutputPanel.vue -------------------------------------------------------------------------------- /html-lib/components/TextPanel/TextPanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/components/TextPanel/TextPanel.html -------------------------------------------------------------------------------- /html-lib/components/TextPanel/TextPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/components/TextPanel/TextPanel.js -------------------------------------------------------------------------------- /html-lib/components/TextPanel/TextPanel.less: -------------------------------------------------------------------------------- 1 | .menu-padding { 2 | height: 3.5rem; 3 | } 4 | -------------------------------------------------------------------------------- /html-lib/components/TextPanel/TextPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/components/TextPanel/TextPanel.vue -------------------------------------------------------------------------------- /html-lib/components/TextPanel/TextProcessComponent/TextProcessComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/components/TextPanel/TextProcessComponent/TextProcessComponent.html -------------------------------------------------------------------------------- /html-lib/components/TextPanel/TextProcessComponent/TextProcessComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/components/TextPanel/TextProcessComponent/TextProcessComponent.js -------------------------------------------------------------------------------- /html-lib/components/TextPanel/TextProcessComponent/TextProcessComponent.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /html-lib/components/TextPanel/TextProcessComponent/TextProcessComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/components/TextPanel/TextProcessComponent/TextProcessComponent.vue -------------------------------------------------------------------------------- /html-lib/config/config-development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/config/config-development.js -------------------------------------------------------------------------------- /html-lib/config/config-session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/config/config-session.js -------------------------------------------------------------------------------- /html-lib/config/config-state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/config/config-state.js -------------------------------------------------------------------------------- /html-lib/form-persist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/form-persist.js -------------------------------------------------------------------------------- /html-lib/ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/ga.js -------------------------------------------------------------------------------- /html-lib/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/index.html -------------------------------------------------------------------------------- /html-lib/input-file-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/input-file-loader.js -------------------------------------------------------------------------------- /html-lib/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/script.js -------------------------------------------------------------------------------- /html-lib/styles/styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/styles/styles.less -------------------------------------------------------------------------------- /html-lib/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/utils/utils.js -------------------------------------------------------------------------------- /html-lib/utils/utilsAsync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/utils/utilsAsync.js -------------------------------------------------------------------------------- /html-lib/utils/utilsSheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/utils/utilsSheet.js -------------------------------------------------------------------------------- /html-lib/utils/utilsString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/utils/utilsString.js -------------------------------------------------------------------------------- /html-lib/vendors/FileSaver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/vendors/FileSaver.js -------------------------------------------------------------------------------- /html-lib/vendors/Porter-Stemmer/PorterStemmer1980.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/vendors/Porter-Stemmer/PorterStemmer1980.min.js -------------------------------------------------------------------------------- /html-lib/vendors/Porter-Stemmer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/vendors/Porter-Stemmer/README.md -------------------------------------------------------------------------------- /html-lib/vendors/clipboard/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/vendors/clipboard/clipboard.min.js -------------------------------------------------------------------------------- /html-lib/vendors/clipboard/puli-util.clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/vendors/clipboard/puli-util.clipboard.js -------------------------------------------------------------------------------- /html-lib/vendors/date-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/vendors/date-helper.js -------------------------------------------------------------------------------- /html-lib/vendors/js-xlsx/Blob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/vendors/js-xlsx/Blob.js -------------------------------------------------------------------------------- /html-lib/vendors/js-xlsx/full/cpexcel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/vendors/js-xlsx/full/cpexcel.js -------------------------------------------------------------------------------- /html-lib/vendors/js-xlsx/full/jszip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/vendors/js-xlsx/full/jszip.js -------------------------------------------------------------------------------- /html-lib/vendors/js-xlsx/full/suppress_export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/vendors/js-xlsx/full/suppress_export.js -------------------------------------------------------------------------------- /html-lib/vendors/js-xlsx/full/xlsx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/vendors/js-xlsx/full/xlsx.js -------------------------------------------------------------------------------- /html-lib/vendors/js-xlsx/shim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/vendors/js-xlsx/shim.min.js -------------------------------------------------------------------------------- /html-lib/vendors/js-xlsx/xlsx.full.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/vendors/js-xlsx/xlsx.full.min.js -------------------------------------------------------------------------------- /html-lib/vendors/less/less.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/vendors/less/less.min.js -------------------------------------------------------------------------------- /html-lib/vendors/odt.js/README.md: -------------------------------------------------------------------------------- 1 | https://github.com/codexa/odt.js 2 | -------------------------------------------------------------------------------- /html-lib/vendors/odt.js/jszip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/vendors/odt.js/jszip.min.js -------------------------------------------------------------------------------- /html-lib/vendors/odt.js/odt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/vendors/odt.js/odt.js -------------------------------------------------------------------------------- /html-lib/vendors/puli-post-message-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/vendors/puli-post-message-api/README.md -------------------------------------------------------------------------------- /html-lib/vendors/puli-post-message-api/puli-post-message-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/vendors/puli-post-message-api/puli-post-message-api.js -------------------------------------------------------------------------------- /html-lib/vendors/puli-post-message-api/puli-post-message-api.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/vendors/puli-post-message-api/puli-post-message-api.min.js -------------------------------------------------------------------------------- /html-lib/vendors/semantic-ui/semantic.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/vendors/semantic-ui/semantic.min.css -------------------------------------------------------------------------------- /html-lib/vendors/semantic-ui/semantic.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/vendors/semantic-ui/semantic.min.js -------------------------------------------------------------------------------- /html-lib/vendors/semantic-ui/themes/default/assets/fonts/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/vendors/semantic-ui/themes/default/assets/fonts/icons.svg -------------------------------------------------------------------------------- /html-lib/vendors/semantic-ui/themes/default/assets/fonts/icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/vendors/semantic-ui/themes/default/assets/fonts/icons.ttf -------------------------------------------------------------------------------- /html-lib/vendors/semantic-ui/themes/default/assets/fonts/icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/vendors/semantic-ui/themes/default/assets/fonts/icons.woff -------------------------------------------------------------------------------- /html-lib/vendors/semantic-ui/themes/default/assets/fonts/icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/vendors/semantic-ui/themes/default/assets/fonts/icons.woff2 -------------------------------------------------------------------------------- /html-lib/vendors/vue/httpVueLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/vendors/vue/httpVueLoader.js -------------------------------------------------------------------------------- /html-lib/vendors/vue/httpVueLoaderLess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/vendors/vue/httpVueLoaderLess.js -------------------------------------------------------------------------------- /html-lib/vendors/vue/vue.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/vendors/vue/vue.min.js -------------------------------------------------------------------------------- /html-lib/vue-app-components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/vue-app-components.js -------------------------------------------------------------------------------- /html-lib/vue-app-computed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/vue-app-computed.js -------------------------------------------------------------------------------- /html-lib/vue-app-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/vue-app-data.js -------------------------------------------------------------------------------- /html-lib/vue-app-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/vue-app-methods.js -------------------------------------------------------------------------------- /html-lib/vue-app-mounted.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/vue-app-mounted.js -------------------------------------------------------------------------------- /html-lib/vue-app-watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/vue-app-watch.js -------------------------------------------------------------------------------- /html-lib/vue-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/html-lib/vue-app.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/index.html -------------------------------------------------------------------------------- /jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/jquery.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/manifest.json -------------------------------------------------------------------------------- /nbproject/customs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/nbproject/customs.json -------------------------------------------------------------------------------- /nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/nbproject/project.properties -------------------------------------------------------------------------------- /nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/nbproject/project.xml -------------------------------------------------------------------------------- /node.js/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/node.js/node.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/postcss.config.js -------------------------------------------------------------------------------- /punctuations-userdict/userdict.utf8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/punctuations-userdict/userdict.utf8 -------------------------------------------------------------------------------- /require-jieba-js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/require-jieba-js.js -------------------------------------------------------------------------------- /scripts/data/dict.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/scripts/data/dict.js -------------------------------------------------------------------------------- /scripts/data/dict.txt.big: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/scripts/data/dict.txt.big -------------------------------------------------------------------------------- /scripts/data/dict_custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/scripts/data/dict_custom.js -------------------------------------------------------------------------------- /scripts/data/dictionary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/scripts/data/dictionary.js -------------------------------------------------------------------------------- /scripts/finalseg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/scripts/finalseg.js -------------------------------------------------------------------------------- /scripts/finalseg/prob_emit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/scripts/finalseg/prob_emit.js -------------------------------------------------------------------------------- /scripts/finalseg/prob_start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/scripts/finalseg/prob_start.js -------------------------------------------------------------------------------- /scripts/finalseg/prob_trans.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/scripts/finalseg/prob_trans.js -------------------------------------------------------------------------------- /scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/scripts/main.js -------------------------------------------------------------------------------- /scripts/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/scripts/require.js -------------------------------------------------------------------------------- /sender.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/sender.html -------------------------------------------------------------------------------- /src/ComputedManager/ComputedManager.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /src/ComputedManager/ComputedManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/ComputedManager/ComputedManager.js -------------------------------------------------------------------------------- /src/ComputedManager/ComputedManager.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/ComputedManager/ComputedManager.vue -------------------------------------------------------------------------------- /src/ConfigDevelopment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/ConfigDevelopment.js -------------------------------------------------------------------------------- /src/ConfigSession.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/ConfigSession.js -------------------------------------------------------------------------------- /src/ConfigState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/ConfigState.js -------------------------------------------------------------------------------- /src/IndexWatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/IndexWatch.js -------------------------------------------------------------------------------- /src/clientConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/clientConfig.js -------------------------------------------------------------------------------- /src/components/ConfigurationPanel/ConfigurationPanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/ConfigurationPanel/ConfigurationPanel.html -------------------------------------------------------------------------------- /src/components/ConfigurationPanel/ConfigurationPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/ConfigurationPanel/ConfigurationPanel.js -------------------------------------------------------------------------------- /src/components/ConfigurationPanel/ConfigurationPanel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/ConfigurationPanel/ConfigurationPanel.less -------------------------------------------------------------------------------- /src/components/ConfigurationPanel/ConfigurationPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/ConfigurationPanel/ConfigurationPanel.vue -------------------------------------------------------------------------------- /src/components/Index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/Index.html -------------------------------------------------------------------------------- /src/components/Index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/Index.js -------------------------------------------------------------------------------- /src/components/Index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/Index.less -------------------------------------------------------------------------------- /src/components/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/Index.vue -------------------------------------------------------------------------------- /src/components/Index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/Index.yaml -------------------------------------------------------------------------------- /src/components/PanelMenu/PanelMenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/PanelMenu/PanelMenu.html -------------------------------------------------------------------------------- /src/components/PanelMenu/PanelMenu.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: ['config', 'utils'] 3 | } -------------------------------------------------------------------------------- /src/components/PanelMenu/PanelMenu.less: -------------------------------------------------------------------------------- 1 | .menu-padding { 2 | height: 4rem; 3 | } -------------------------------------------------------------------------------- /src/components/PanelMenu/PanelMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/PanelMenu/PanelMenu.vue -------------------------------------------------------------------------------- /src/components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/README.md -------------------------------------------------------------------------------- /src/components/TextPanel/InputTable/InputTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/InputTable/InputTable.html -------------------------------------------------------------------------------- /src/components/TextPanel/InputTable/InputTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/InputTable/InputTable.js -------------------------------------------------------------------------------- /src/components/TextPanel/InputTable/InputTable.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/TextPanel/InputTable/InputTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/InputTable/InputTable.vue -------------------------------------------------------------------------------- /src/components/TextPanel/InputTable/README.md: -------------------------------------------------------------------------------- 1 | 廢棄不使用 2 | 20220424-1746 -------------------------------------------------------------------------------- /src/components/TextPanel/TextInputPanel/TextInputPanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/TextInputPanel/TextInputPanel.html -------------------------------------------------------------------------------- /src/components/TextPanel/TextInputPanel/TextInputPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/TextInputPanel/TextInputPanel.js -------------------------------------------------------------------------------- /src/components/TextPanel/TextInputPanel/TextInputPanel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/TextInputPanel/TextInputPanel.less -------------------------------------------------------------------------------- /src/components/TextPanel/TextInputPanel/TextInputPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/TextInputPanel/TextInputPanel.vue -------------------------------------------------------------------------------- /src/components/TextPanel/TextOutputExportPanel/TextOutputExportPanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/TextOutputExportPanel/TextOutputExportPanel.html -------------------------------------------------------------------------------- /src/components/TextPanel/TextOutputExportPanel/TextOutputExportPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/TextOutputExportPanel/TextOutputExportPanel.js -------------------------------------------------------------------------------- /src/components/TextPanel/TextOutputExportPanel/TextOutputExportPanel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/TextOutputExportPanel/TextOutputExportPanel.less -------------------------------------------------------------------------------- /src/components/TextPanel/TextOutputExportPanel/TextOutputExportPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/TextOutputExportPanel/TextOutputExportPanel.vue -------------------------------------------------------------------------------- /src/components/TextPanel/TextOutputPanel/TextOutputEmbbedingPanel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/TextOutputPanel/TextOutputEmbbedingPanel/README.md -------------------------------------------------------------------------------- /src/components/TextPanel/TextOutputPanel/TextOutputEmbbedingPanel/TextOutputEmbbedingPanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/TextOutputPanel/TextOutputEmbbedingPanel/TextOutputEmbbedingPanel.html -------------------------------------------------------------------------------- /src/components/TextPanel/TextOutputPanel/TextOutputEmbbedingPanel/TextOutputEmbbedingPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/TextOutputPanel/TextOutputEmbbedingPanel/TextOutputEmbbedingPanel.js -------------------------------------------------------------------------------- /src/components/TextPanel/TextOutputPanel/TextOutputEmbbedingPanel/TextOutputEmbbedingPanel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/TextOutputPanel/TextOutputEmbbedingPanel/TextOutputEmbbedingPanel.less -------------------------------------------------------------------------------- /src/components/TextPanel/TextOutputPanel/TextOutputEmbbedingPanel/TextOutputEmbbedingPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/TextOutputPanel/TextOutputEmbbedingPanel/TextOutputEmbbedingPanel.vue -------------------------------------------------------------------------------- /src/components/TextPanel/TextOutputPanel/TextOutputEmbbedingPanel/TextOutputEmbbedingPanel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/TextOutputPanel/TextOutputEmbbedingPanel/TextOutputEmbbedingPanel.yaml -------------------------------------------------------------------------------- /src/components/TextPanel/TextOutputPanel/TextOutputEmbbedingPanel/testEmbbeding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/TextOutputPanel/TextOutputEmbbedingPanel/testEmbbeding.js -------------------------------------------------------------------------------- /src/components/TextPanel/TextOutputPanel/TextOutputPanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/TextOutputPanel/TextOutputPanel.html -------------------------------------------------------------------------------- /src/components/TextPanel/TextOutputPanel/TextOutputPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/TextOutputPanel/TextOutputPanel.js -------------------------------------------------------------------------------- /src/components/TextPanel/TextOutputPanel/TextOutputPanel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/TextOutputPanel/TextOutputPanel.less -------------------------------------------------------------------------------- /src/components/TextPanel/TextOutputPanel/TextOutputPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/TextOutputPanel/TextOutputPanel.vue -------------------------------------------------------------------------------- /src/components/TextPanel/TextOutputPanel/TextOutputSegPanel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/TextOutputPanel/TextOutputSegPanel/README.md -------------------------------------------------------------------------------- /src/components/TextPanel/TextOutputPanel/TextOutputSegPanel/TextOutputSegPanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/TextOutputPanel/TextOutputSegPanel/TextOutputSegPanel.html -------------------------------------------------------------------------------- /src/components/TextPanel/TextOutputPanel/TextOutputSegPanel/TextOutputSegPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/TextOutputPanel/TextOutputSegPanel/TextOutputSegPanel.js -------------------------------------------------------------------------------- /src/components/TextPanel/TextOutputPanel/TextOutputSegPanel/TextOutputSegPanel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/TextOutputPanel/TextOutputSegPanel/TextOutputSegPanel.less -------------------------------------------------------------------------------- /src/components/TextPanel/TextOutputPanel/TextOutputSegPanel/TextOutputSegPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/TextOutputPanel/TextOutputSegPanel/TextOutputSegPanel.vue -------------------------------------------------------------------------------- /src/components/TextPanel/TextOutputPanel/TextOutputSegPanel/TextOutputSegPanel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/TextOutputPanel/TextOutputSegPanel/TextOutputSegPanel.yaml -------------------------------------------------------------------------------- /src/components/TextPanel/TextOutputPanel/TextOutputTransPanel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/TextOutputPanel/TextOutputTransPanel/README.md -------------------------------------------------------------------------------- /src/components/TextPanel/TextOutputPanel/TextOutputTransPanel/TextOutputTransPanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/TextOutputPanel/TextOutputTransPanel/TextOutputTransPanel.html -------------------------------------------------------------------------------- /src/components/TextPanel/TextOutputPanel/TextOutputTransPanel/TextOutputTransPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/TextOutputPanel/TextOutputTransPanel/TextOutputTransPanel.js -------------------------------------------------------------------------------- /src/components/TextPanel/TextOutputPanel/TextOutputTransPanel/TextOutputTransPanel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/TextOutputPanel/TextOutputTransPanel/TextOutputTransPanel.less -------------------------------------------------------------------------------- /src/components/TextPanel/TextOutputPanel/TextOutputTransPanel/TextOutputTransPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/TextOutputPanel/TextOutputTransPanel/TextOutputTransPanel.vue -------------------------------------------------------------------------------- /src/components/TextPanel/TextOutputPanel/TextOutputTransPanel/TextOutputTransPanel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/TextOutputPanel/TextOutputTransPanel/TextOutputTransPanel.yaml -------------------------------------------------------------------------------- /src/components/TextPanel/TextOutputPanel/TextOutputWordVectorPanel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/TextOutputPanel/TextOutputWordVectorPanel/README.md -------------------------------------------------------------------------------- /src/components/TextPanel/TextOutputPanel/TextOutputWordVectorPanel/TextOutputWordVectorPanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/TextOutputPanel/TextOutputWordVectorPanel/TextOutputWordVectorPanel.html -------------------------------------------------------------------------------- /src/components/TextPanel/TextOutputPanel/TextOutputWordVectorPanel/TextOutputWordVectorPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/TextOutputPanel/TextOutputWordVectorPanel/TextOutputWordVectorPanel.js -------------------------------------------------------------------------------- /src/components/TextPanel/TextOutputPanel/TextOutputWordVectorPanel/TextOutputWordVectorPanel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/TextOutputPanel/TextOutputWordVectorPanel/TextOutputWordVectorPanel.less -------------------------------------------------------------------------------- /src/components/TextPanel/TextOutputPanel/TextOutputWordVectorPanel/TextOutputWordVectorPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/TextOutputPanel/TextOutputWordVectorPanel/TextOutputWordVectorPanel.vue -------------------------------------------------------------------------------- /src/components/TextPanel/TextOutputPanel/TextOutputWordVectorPanel/TextOutputWordVectorPanel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/TextOutputPanel/TextOutputWordVectorPanel/TextOutputWordVectorPanel.yaml -------------------------------------------------------------------------------- /src/components/TextPanel/TextPanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/TextPanel.html -------------------------------------------------------------------------------- /src/components/TextPanel/TextPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/TextPanel.js -------------------------------------------------------------------------------- /src/components/TextPanel/TextPanel.less: -------------------------------------------------------------------------------- 1 | .menu-padding { 2 | height: 3.5rem; 3 | } 4 | -------------------------------------------------------------------------------- /src/components/TextPanel/TextPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/TextPanel.vue -------------------------------------------------------------------------------- /src/components/TextPanel/TextProcessComponent/Porter-Stemmer/PorterStemmer1980.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/TextProcessComponent/Porter-Stemmer/PorterStemmer1980.min.js -------------------------------------------------------------------------------- /src/components/TextPanel/TextProcessComponent/Porter-Stemmer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/TextProcessComponent/Porter-Stemmer/README.md -------------------------------------------------------------------------------- /src/components/TextPanel/TextProcessComponent/TextProcessComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/TextProcessComponent/TextProcessComponent.html -------------------------------------------------------------------------------- /src/components/TextPanel/TextProcessComponent/TextProcessComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/TextProcessComponent/TextProcessComponent.js -------------------------------------------------------------------------------- /src/components/TextPanel/TextProcessComponent/TextProcessComponent.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/TextProcessComponent/TextProcessComponent.less -------------------------------------------------------------------------------- /src/components/TextPanel/TextProcessComponent/TextProcessComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/TextPanel/TextProcessComponent/TextProcessComponent.vue -------------------------------------------------------------------------------- /src/components/[TemplateExample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulipulichen/jieba-js/HEAD/src/components/[TemplateExample/README.md -------------------------------------------------------------------------------- /src/components/[TemplateExample/TemplateExample.html: -------------------------------------------------------------------------------- 1 |