openGPMP
Open Source Mathematics Package
__init__.py
Go to the documentation of this file.
1 """
2 /*************************************************************************
3  *
4  * Project
5  * __ __ _______ _____ _ __
6  * | \/ |__ __| __ \| |/ /
7  * ___ _ __ ___ _ __ | \ / | | | | |__) | ' /
8  * / _ \| '_ \ / _ \ '_ \| |\/| | | | | ___/| <
9  *| (_) | |_) | __/ | | | | | | | | | | | . \
10  * \___/| .__/ \___|_| |_|_| |_| |_| |_| |_|\_\
11  * | |
12  * |_|
13  *
14  *
15  * Copyright (C) Akiel Aries, <akiel@akiel.org>, et al.
16  *
17  * This software is licensed as described in the file LICENSE, which
18  * you should have received as part of this distribution. The terms
19  * among other details are referenced in the official documentation
20  * seen here : https://akielaries.github.io/openGPMP/ along with
21  * important files seen in this project.
22  *
23  * You may opt to use, copy, modify, merge, publish, distribute
24  * and/or sell copies of the Software, and permit persons to whom
25  * the Software is furnished to do so, under the terms of the
26  * LICENSE file. As this is an Open Source effort, all implementations
27  * must be of the same methodology.
28  *
29  *
30  *
31  * This software is distributed on an AS IS basis, WITHOUT
32  * WARRANTY OF ANY KIND, either express or implied.
33  *
34  ************************************************************************/
35 
36 openGPMP Machine Learning Module
37 ================================
38 The Machine Learning Module features multiple methods and techniques most
39 of which are in progress.
40 
41 FEATURES :
42  CLASS : Linreg
43  - Features methods related to prime numbers
44  METHODS :
45 
46  USAGE :
47  >> import pygpmp
48  >> linreg = pygpmp.ml.linreg()
49  OR
50  >> from pygpmp import ml
51 """
52 
53 from pygpmp.ml.ml import (
54  Regression,
55 )
56 
57 __all__: list[str]
58 __path__: list[str]