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 17ea703 commit 89d0052
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
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

import mfderivs
from lazuardy_anfis import mfderivs


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

import os

import anfis
import membershipfunction
import mfderivs
import numpy
import numpy as np

import lazuardy_anfis.anfis
import lazuardy_anfis.membershipfunction
import lazuardy_anfis.mfderivs

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

ts = numpy.loadtxt(training_set, usecols=[1, 2, 3])
ts = np.loadtxt(training_set, usecols=[1, 2, 3])
X = ts[:, 0:2]
Y = ts[:, 2]

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = lazuardy_anfis
version = 0.0.3
version = 0.0.4
author = Lazuardy
author_email = [email protected]
description = Adaptive Neuro Fuzzy Inference System Implementation in Python.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name="lazuardy_anfis",
version="0.0.3",
version="0.0.4",
description="Adaptive Neuro Fuzzy Inference System Implementation in Python.",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 89d0052

Please sign in to comment.