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 61c42f2 commit 36c8054
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ jobs:
- name: "🔍 Performing Lint & Formatting"
run: black .
- name: "🧪 Running Tests"
run: python lazuardy_anfis/tests.py
run: python -m lazuardy_anfis.tests
- name: "🔨 Building Package"
run: python -m build --sdist --wheel --outdir dist/
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: "🔍 Performing Lint & Formatting"
run: black .
- name: "🧪 Running Tests"
run: python lazuardy_anfis/tests.py
run: python -m lazuardy_anfis.tests
- name: "🔨 Building Package"
run: python -m build --sdist --wheel --outdir dist/
- name: "📦 Publish Package to PyPI"
Expand Down
8 changes: 1 addition & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,7 @@ Install anfis and navigate to the location of `lazuardy_anfis/tests.py`.
From the command line run:

```bash
python lazuardy_anfis/tests.py
```

Alternatively, from the same location launch `ipython` and run:

```bash
run lazuardy_anfis/tests.py
python -m lazuardy_anfis.tests
```

This will set up and fit an ANFIS model based on the data contained in `training_set.txt`, using 10 epochs. Plots of the fitting errors and the model predicted output are graphed.
Expand Down

0 comments on commit 36c8054

Please sign in to comment.