Skip to content

Commit

Permalink
feat: update
Browse files Browse the repository at this point in the history
  • Loading branch information
ezralazuardy committed Nov 14, 2024
1 parent 5807f52 commit 61c42f2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 14 deletions.
4 changes: 4 additions & 0 deletions lazuardy_anfis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,7 @@
- twmeggs <[email protected]>
- lazuardy-tech <[email protected]>
"""

from . import anfis, membershipfunction, mfderivs

__all__ = ["anfis", "membershipfunction", "mfderivs"]
2 changes: 1 addition & 1 deletion lazuardy_anfis/anfis.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

import numpy as np

from lazuardy_anfis import mfderivs
from . import mfderivs


class ANFIS:
Expand Down
5 changes: 2 additions & 3 deletions lazuardy_anfis/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,10 @@

import os

import anfis
import membershipfunction
import mfderivs
import numpy as np

from . import anfis, membershipfunction, mfderivs

# define the training_set.txt file path
training_set = os.getcwd() + "/lazuardy_anfis/training_set.txt"

Expand Down
11 changes: 1 addition & 10 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,7 @@
long_description_content_type="text/markdown",
author="Lazuardy",
author_email="[email protected]",
packages=find_packages(
include=[
"anfis",
"fuzzy-logic",
"neural-networks",
"fnn",
"lazuardy",
"lazuardy_anfis",
]
),
packages=find_packages(),
keywords="anfis, fuzzy logic, neural networks, fnn, lazuardy, lazuardy anfis",
url="https://github.com/lazuardy-tech/anfis",
download_url="https://github.com/lazuardy-tech/anfis/releases",
Expand Down

0 comments on commit 61c42f2

Please sign in to comment.