summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2023-04-01 14:37:45 +0700
committerShulhan <ms@kilabit.info>2023-04-01 14:38:00 +0700
commita2ba0eefc07887ed10809f901a5afa2de04b81e5 (patch)
tree160ae5f2330a3a7b8ee2efb1ca5ca2c0c37b0425
parentc45ae6c1eebe48d879a08993e6f58ea710cc136b (diff)
downloadpakakeh.go-a2ba0eefc07887ed10809f901a5afa2de04b81e5.tar.xz
all: update list of packages in the README
The following libraries has been added and not recorded, * lib/mlog * lib/os * lib/ssh/config * lib/telemetry * lib/test/mock
-rw-r--r--README36
1 files changed, 27 insertions, 9 deletions
diff --git a/README b/README
index fa0173b3..6ecdf0ba 100644
--- a/README
+++ b/README
@@ -132,38 +132,41 @@ file from it.
{godoc_base_url}/lib/mining[**mining**^]::
A mini library for data mining.
-{godoc_base_url}/lib/mining/classifier/cart[**classifier/cart**^]::
+{godoc_base_url}/lib/mining/classifier/cart[**mining/classifier/cart**^]::
An implementation of the Classification and Regression Tree by Breiman, et al.
-{godoc_base_url}/lib/mining/classififer/crf[**classififer/crf**^]::
+{godoc_base_url}/lib/mining/classififer/crf[**mining/classifier/crf**^]::
An implementation of the Cascaded Random Forest (CRF) algorithm, by
Baumann, Florian, et al.
-{godoc_base_url}/lib/mining/classifier/rf[**classifier/rf**]::
+{godoc_base_url}/lib/mining/classifier/rf[**mining/classifier/rf**]::
An implementation of ensemble of classifiers using random forest algorithm by
Breiman and Cutler.
-{godoc_base_url}/lib/gain/gini[**gain/gini**^]::
+{godoc_base_url}/lib/gain/gini[**mining/gain/gini**^]::
A library to calculate Gini gain.
-{godoc_base_url}/lib/mining/knn[**knn**^]::
+{godoc_base_url}/lib/mining/knn[**mining/knn**^]::
An implementation of the K Nearest Neighbor (KNN) using Euclidian to
compute the distance between samples.
-{godoc_base_url}/lib/mining/resampling/lnsmote[**resampling/lnsmote**^]::
+{godoc_base_url}/lib/mining/resampling/lnsmote[**mining/resampling/lnsmote**^]::
An implementation of the Local-Neighborhood algorithm from the paper of
Maciejewski, Tomasz, and Jerzy Stefanowski.
-{godoc_base_url}/lib/mining/resampling/smote[**resampling/smote**^]::
+{godoc_base_url}/lib/mining/resampling/smote[**mining/resampling/smote**^]::
An implementation of the Synthetic Minority Oversampling TEchnique (SMOTE).
-{godoc_base_url}/lib/mining/tree/binary[**tree/binary**^]::
+{godoc_base_url}/lib/mining/tree/binary[**mining/tree/binary**^]::
An implementation of binary tree.
+{godoc_base_url}/lib/mlog[**mlog**^]::
+Package mlog implement buffered multi writers of log.
+
{godoc_base_url}/lib/net[**net**^]::
Constants and library for networking.
-{godoc_base_url}/lib/net/html[**html**^]::
+{godoc_base_url}/lib/net/html[**net/html**^]::
Package html extends the golang.org/x/net/html by providing simplified
methods for working with Node.
@@ -171,6 +174,10 @@ methods for working with Node.
A library for working with integer, float, slice of integer, and slice of
floats.
+{godoc_base_url}/lib/os[**os**^]::
+Package os extend the standard os package to provide additional
+functionalities.
+
{godoc_base_url}/lib/os/exec[**os/exec**^]::
Package exec wrap the standar package "os/exec" to simplify calling Run
with stdout and stderr.
@@ -203,6 +210,9 @@ functionality across DBMS.
Package ssh provide a wrapper for golang.org/x/crypto/ssh and a parser for SSH
client configuration specification ssh_config(5).
+{godoc_base_url}/lib/ssh/config[**ssh/config**^]::
+Package config provide the ssh_config(5) parser and getter.
+
{godoc_base_url}/lib/ssh/sftp[**ssh/sftp**^]::
Package sftp implement native SSH File Transport Protocol v3.
@@ -213,9 +223,17 @@ A library for working with slice of string.
A library for working with rows, columns, or matrix (table), or in another
terms working with data set.
+{godoc_base_url}/lib/telemetry[**telemetry**^]::
+Package telemetry is a library for collecting various [Metric], for example
+from standard runtime/metrics, and send or write it to one or more
+[Forwarder].
+
{godoc_base_url}/lib/test[**test**^]::
A library for helping with testing.
+{godoc_base_url}/lib/test/mock[**test/mock**^]::
+Package mock provide a mocking for standard output and standard error.
+
{godoc_base_url}/lib/text[**text**^]::
A library for working with text.