diff --git a/README.md b/README.md index 9ea1e9f..60c247f 100644 --- a/README.md +++ b/README.md @@ -109,6 +109,7 @@ Some of the frequently used programs are shown bellow.

mlutils:

+ This module provides functionalities for easier implementation of Pytorch Deep Learning models. It offers several facilities such as- * Scikit-like easy implementation of Pytorch models using fit, predict and evaluate methods @@ -123,6 +124,7 @@ Examples are available for regression, binary and multi-class classification mod

paramOptimizer:

+ This is a class which can conduct easy Hyper-parameter optimization process. Currently it enables us to apply grid search and random search for any model/function/mathematical entity

@@ -131,6 +133,7 @@ Currently it enables us to apply grid search and random search for any model/fun

SplitDataset:

+ This is one of the most useful classes in this library. It enables us to split data set into train, validation and test sets. We have three options here to split data set- @@ -145,6 +148,7 @@ Examples are available [here](examples/).

one_hot_encoding:

+ This function converts classification labels in one hot encoded format

@@ -152,6 +156,7 @@ This function converts classification labels in one hot encoded format

feature_evaluator:

+ This function is one of the most useful tools. It can calculate feature importance from statistical point of view. It can show the results using bar plot and can handle classification and regression both kind of labels. @@ -160,6 +165,7 @@ It can show the results using bar plot and can handle classification and regress

class_result:

+ This function calculates classification model evaluation parameters like precision, recall, accuracy, f1 score, specificity etc. and also able to show confusion matrix as a pandas dataframe. Example can be found [here](examples/class_result_example.py).

@@ -167,6 +173,7 @@ This function calculates classification model evaluation parameters like precisi

rsquare_rmse:

+ This function calculates r square value and root mean square error.

@@ -199,6 +206,7 @@ This is one of the the most useful functions in this library. It helps to plot t

plot_heatmap:

+ Flexible heatmap plotter function with options to remove symmetrical triangular side and several other options.

@@ -243,6 +251,7 @@ This is a function that allows us to calculate spectrogram of any time series si

msdbacktest (under development):

+ This module intends to provide helper functionalities for trading automation, strategy implementation, back-testing, evaluating strategy by different popular ratios like maximum drawdown, calmar ratio, sharpe ratio etc. Currently only a few functionalities are available and is still under development. @@ -252,7 +261,9 @@ Currently only a few functionalities are available and is still under developmen

ProgressBar:

+ This is a custom progress bar which shows loop progress with a visual bar along with other information like elapsed and remaining time, loop count, total count, percentage of completion etc. (You should only use it if you dont print anything inside your loop) +Example can be found [here](examples/ProgressBar_example.py)

diff --git a/docs/README.rst b/docs/README.rst index 5f2f7e8..bb8bb7a 100644 --- a/docs/README.rst +++ b/docs/README.rst @@ -238,7 +238,7 @@ ProgressBar: ------------ This is a custom progress bar which shows loop progress with a visual bar along with other information like elapsed and remaining time, loop count, total count, percentage of completion etc. (You should only use it if you dont print anything inside your loop) - +Example can be found `here `_. Reference/citation