Skip to content

Commit

Permalink
Update required libraries version
Browse files Browse the repository at this point in the history
  • Loading branch information
thieupu committed Nov 26, 2023
1 parent 81c3432 commit c34c4e2
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion reflame/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Github: https://github.com/thieu1995 %
# --------------------------------------------------%

__version__ = "1.0.0"
__version__ = "1.0.1"

from reflame.utils.data_toolkit import Data, DataTransformer
from reflame.model.mha_flnn import MhaFlnnRegressor, MhaFlnnClassifier
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ numpy>=1.17.1
scipy>=1.7.1
scikit-learn>=1.0.2
pandas>=1.3.5
mealpy>=2.5.4
permetrics>=1.4.3
mealpy>=3.0.1
permetrics>=1.5.0
torch>=2.0.0
skorch>=0.13.0
pytest==7.1.2
Expand Down
20 changes: 10 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,24 @@ def readme():

setup(
name="reflame",
version="1.0.0",
version="1.0.1",
author="Thieu",
author_email="nguyenthieu2102@gmail.com",
description="Revolutionizing Functional Link Neural Network by Metaheuristic Algorithms: reflame - A Python Library",
long_description=readme(),
long_description_content_type="text/markdown",
keywords=["functional link neural network", "machine learning", "artificial intelligence",
"deep learning", "neural networks", "single hidden layer network",
"random projection", "FLANN", "functional linked neural network", "classification", "regression",
"supervised learning", "online learning", "dimensionality reduction", "generalization", "ensemble learning",
"random projection", "FLANN", "functional link artificial neural network", "classification", "regression",
"supervised learning", "online learning", "generalization", "ensemble learning",
"optimization algorithms", "Kernel FLNN", "Cross-validation"
"Genetic algorithm (GA)", "Particle swarm optimization (PSO)", "Ant colony optimization (ACO)",
"Differential evolution (DE)", "Simulated annealing", "Grey wolf optimizer (GWO)", "Whale Optimization Algorithm (WOA)",
"confusion matrix", "recall", "precision", "accuracy", "pearson correlation coefficient (PCC)", "spearman correlation coefficient (SCC)",
"relief", "relief-f", "multi-objectives optimization problems", "Stochastic optimization", "Global optimization",
"Convergence analysis", "Search space exploration", "Local search", "Computational intelligence", "Robust optimization",
"Differential evolution (DE)", "Simulated annealing", "Grey wolf optimizer (GWO)",
"Whale Optimization Algorithm (WOA)", "confusion matrix", "recall", "precision", "accuracy",
"pearson correlation coefficient (PCC)", "spearman correlation coefficient (SCC)",
"relief", "relief-f", "multi-objectives optimization problems", "Stochastic optimization",
"Global optimization", "Convergence analysis", "Search space exploration", "Local search",
"Computational intelligence", "Robust optimization",
"Performance analysis", "Intelligent optimization", "Simulations"],
url="https://github.com/thieu1995/reflame",
project_urls={
Expand All @@ -51,8 +53,6 @@ def readme():
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand All @@ -70,7 +70,7 @@ def readme():
"Topic :: Utilities",
],
install_requires=["numpy>=1.17.1", "scipy>=1.7.1", "scikit-learn>=1.0.2",
"pandas>=1.3.5", "mealpy>=2.5.4", "permetrics>=1.4.3",
"pandas>=1.3.5", "mealpy>=3.0.1", "permetrics>=1.5.0",
"torch>=2.0.0", "skorch>=0.13.0"],
extras_require={
"dev": ["pytest>=7.0", "pytest-cov==4.0.0", "flake8>=4.0.1"],
Expand Down

0 comments on commit c34c4e2

Please sign in to comment.