MAIVE


NameMAIVE JSON
Version 0.0.3.2 PyPI version JSON
download
home_page
SummaryMathematics and Ariticial Intelligence and Visualization Extended
upload_time2023-06-09 15:08:18
maintainer
docs_urlNone
authorPiyush Pant
requires_python
license
keywords maive artificial intelligence machine learning maths
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <img src = "/assets/pictures/MAIVE%20LOGO.png">

# MAIVE

###### Mathematics and Artificial Intelligence with Visualization Extended - 2023, Piyush Pant :heart:

<hr>

Official Documentation : <a target="_blank" rel="noopener" href="https://piyushwithpant.github.io/MAIVE/" title="MAIVE webpage" >MAIVE</a>

PyPi Package webpage : <a target="_blank" rel="noopener" href="https://pypi.org/project/MAIVE/" title="PYPI Maive" >MAIVE</a>

## Get started with MAIVE

MAIVE (मैव) is a powerful python package equipped with advanced mathematics to assist you in the domain of Artificial Intelligence while also providing you with visualization support. The mathematics level begins from high school to advanced, any topic that may be required in the AI domain is provided in the MAIVE. Please understand that the package is still under development, so there might be missing topics (which will be added soon). To become a contributor or if you want to suggest something, please contact us via
<a target="_blank" rel="noopener" href="https://wa.me/919145728659" title="Whatsapp | Piyush Pant" >Whatsapp</a>
or through the
<a href="https://piyushwithpant.github.io/" target="_blank" rel="noopener" title="Webpage | Piyush Pant" >Webpage </a>.

### # Installation

`$ pip install maive`

<hr>

### Brief Documentation

Please visit the section as per your requirements. It is advised to
read the <b> HOW TO USE? </b> section before using the package.

<h6> HOW TO USE? </h6>

<ul>
  <li>
    <b> To import the package </b>

<code > from maive.maive import Maive </code>
<br />
<code > M = Maive() </code>
<br />
<code > isAP = M.AP_checkIfAP([10,1,34]) </code>
<br />
<code > print(isAP) </code>

OR

<code > from maive import maive </code>
<br />
<code > M = maive.Maive() </code>
<br />
<code > isAP = M.AP_checkIfAP([10,1,34]) </code>
<br />
<code > print(isAP) </code>

  </li>
  <li>
 All the functions follow a naming convention. A function's naming is divided in two parts with underscore(_). The before underscore is the domain of mathematics that the function belongs to and the part after underscore is the name of the function. for example, the function to generate an AP which is from Arithmetic Progression domain will be like - <code?>AP_generateAP()</code>
however, there is an exception for global functions like
<code> isPerfectSquare() </code>

  </li>
  <li>
 To ensure better performance, please input data with their respective keywords when working with functions. For example, <code> QE_typeOfRoots(a=100, b=-455, c=97) </code> where a,b and c are the coefficients of the quadratic equation.
  </li>
</ul>

#### Please visit the actual Documentation of the MAIVE to get a deeper understanding.

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "MAIVE",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "MAIVE,Artificial Intelligence,Machine Learning,Maths",
    "author": "Piyush Pant",
    "author_email": "piyushpant15@gmail.com",
    "download_url": "",
    "platform": null,
    "description": "<img src = \"/assets/pictures/MAIVE%20LOGO.png\">\r\n\r\n# MAIVE\r\n\r\n###### Mathematics and Artificial Intelligence with Visualization Extended - 2023, Piyush Pant :heart:\r\n\r\n<hr>\r\n\r\nOfficial Documentation : <a target=\"_blank\" rel=\"noopener\" href=\"https://piyushwithpant.github.io/MAIVE/\" title=\"MAIVE webpage\" >MAIVE</a>\r\n\r\nPyPi Package webpage : <a target=\"_blank\" rel=\"noopener\" href=\"https://pypi.org/project/MAIVE/\" title=\"PYPI Maive\" >MAIVE</a>\r\n\r\n## Get started with MAIVE\r\n\r\nMAIVE (\u00e0\u00a4\u00ae\u00e0\u00a5\u02c6\u00e0\u00a4\u00b5) is a powerful python package equipped with advanced mathematics to assist you in the domain of Artificial Intelligence while also providing you with visualization support. The mathematics level begins from high school to advanced, any topic that may be required in the AI domain is provided in the MAIVE. Please understand that the package is still under development, so there might be missing topics (which will be added soon). To become a contributor or if you want to suggest something, please contact us via\r\n<a target=\"_blank\" rel=\"noopener\" href=\"https://wa.me/919145728659\" title=\"Whatsapp | Piyush Pant\" >Whatsapp</a>\r\nor through the\r\n<a href=\"https://piyushwithpant.github.io/\" target=\"_blank\" rel=\"noopener\" title=\"Webpage | Piyush Pant\" >Webpage </a>.\r\n\r\n### # Installation\r\n\r\n`$ pip install maive`\r\n\r\n<hr>\r\n\r\n### Brief Documentation\r\n\r\nPlease visit the section as per your requirements. It is advised to\r\nread the <b> HOW TO USE? </b> section before using the package.\r\n\r\n<h6> HOW TO USE? </h6>\r\n\r\n<ul>\r\n  <li>\r\n    <b> To import the package </b>\r\n\r\n<code > from maive.maive import Maive </code>\r\n<br />\r\n<code > M = Maive() </code>\r\n<br />\r\n<code > isAP = M.AP_checkIfAP([10,1,34]) </code>\r\n<br />\r\n<code > print(isAP) </code>\r\n\r\nOR\r\n\r\n<code > from maive import maive </code>\r\n<br />\r\n<code > M = maive.Maive() </code>\r\n<br />\r\n<code > isAP = M.AP_checkIfAP([10,1,34]) </code>\r\n<br />\r\n<code > print(isAP) </code>\r\n\r\n  </li>\r\n  <li>\r\n All the functions follow a naming convention. A function's naming is divided in two parts with underscore(_). The before underscore is the domain of mathematics that the function belongs to and the part after underscore is the name of the function. for example, the function to generate an AP which is from Arithmetic Progression domain will be like - <code?>AP_generateAP()</code>\r\nhowever, there is an exception for global functions like\r\n<code> isPerfectSquare() </code>\r\n\r\n  </li>\r\n  <li>\r\n To ensure better performance, please input data with their respective keywords when working with functions. For example, <code> QE_typeOfRoots(a=100, b=-455, c=97) </code> where a,b and c are the coefficients of the quadratic equation.\r\n  </li>\r\n</ul>\r\n\r\n#### Please visit the actual Documentation of the MAIVE to get a deeper understanding.\r\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Mathematics and Ariticial Intelligence and Visualization Extended",
    "version": "0.0.3.2",
    "project_urls": null,
    "split_keywords": [
        "maive",
        "artificial intelligence",
        "machine learning",
        "maths"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "031c53a4871324ae56e0c5b0efa943822e713a0954cc9967a454cc2507b058e2",
                "md5": "19d54b8f6f921199665e9747d76aebdc",
                "sha256": "0a1ebe02f36da1db79b6ae45ca759cd91bb4b878bf0672e2c3bf79842ed31aaa"
            },
            "downloads": -1,
            "filename": "MAIVE-0.0.3.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "19d54b8f6f921199665e9747d76aebdc",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 11458,
            "upload_time": "2023-06-09T15:08:18",
            "upload_time_iso_8601": "2023-06-09T15:08:18.400293Z",
            "url": "https://files.pythonhosted.org/packages/03/1c/53a4871324ae56e0c5b0efa943822e713a0954cc9967a454cc2507b058e2/MAIVE-0.0.3.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-06-09 15:08:18",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "maive"
}
        
Elapsed time: 0.07366s