Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
PAT tree construction for Chinese document, now in development. Provide functionality to add documents and construct PAT tree in memory, extract keywords, and split documents.
example of result:
有時 喜歡 有時候 不喜歡
為什麼 會 這樣 … ?
20 點 求 解 哈哈
This project is now in development and used for academic purpose, DO NOT use this module until the WARNING statement is removed. //TODO: improve document splitting algorithm
npm install pat-tree --save
var PATtree = require("pat-tree");
var tree = new PATtree();
tree.addDocument(input);
var SLPs = tree.extractSLP(TFThreshold, SEThreshold); // SLPs: array of signifiant lexical patterns.
If the frequency of a pattern exceeds THThreshold, and the SE value exceeds SEThreshold, it would appear in the result array.
THTreshold shold be integer, SEThreshold shold be between 0 and 1.
var result = tree.splitDoc(doc, SLPs);
doc is the document to be splitted, data type: string.
SLPs is array of SLP that extracted by tree.extractSLP(), or array of keywords retrieved any other way. data type: array of strings.
result is the result of splitted document, data type: string.
tree.printTreeContent(printExternalNodes, printDocuments);
Print the content of the tree on console. If printExternalNodes is set to true, print out all external nodes for each internal node. If printDocuments is set to true, print out the whole collection of the tree.
tree.traverse(preCallback, inCallback, postCallback);
For convenient, there are functions for each order of traversal
tree.preOrderTraverse(callback);
tree.inOrderTraverse(callback);
tree.postOrderTraverse(callback);
For example
tree.preOrderTraverse(function(node) {
console.log("node id: " + node.id);
})
Every nodes has some common informaitons, an node has the following structure:
node = {
id: 3, // the id of this node, data type: JSON, auto generated.
parent: 1, // the parent id of this node, data type: integer
left: leftChildNode, // data type: Node
right: rightChildNode, // data type: Node
data: {} // payload for this node, data type : JSON
}
Data is different for internal nodes and external nodes, Internal nodes has following structure:
internalNode.data = {
type: "internal", // indicates this is an internal node
position: 13, // the branch position of external nodes, data type: integer
prefix: "00101", // the sharing prefix of external nodes, data type: string of 0s and 1s
externalNodeNum: 87, // number of external nodes contained in subtree of this node, data type: integer
totalFrequency: 89, // number of the total frequency of the external nodes in the collection, data type: integer
sistringRepres: node // one of the external node in the subree of this internal node, data type: Node
}
External nodes has following structure:
externalNode.data = {
type: "external", // indicates this is an external node,
sistring: "00101100110101", // binary representation of the character, data type: string
indexes: ["0.1,3", "1.2.5"] // the positions where the sistring appears in the collection, data type: array
}
The whole collection consists of documents, which consists of sentenses, which consists of words. An example could be this:
[ [ '嗨你好',
'這是測試文件' ],
[ '你好',
'這是另外一個測試文件' ] ]
An index is in following structure:
DocumentPosition.SentensePosition.wordPosition
For example, "0.1.2" is the index of the character "測".
FAQs
PAT tree construction for Chinese documents, keyword extraction and text segmentation
The npm package pat-tree receives a total of 1 weekly downloads. As such, pat-tree popularity was classified as not popular.
We found that pat-tree demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.