From dfb343a4255fc7b3d9035e62d853f876ee5cb264 Mon Sep 17 00:00:00 2001 From: Tizian Wenzel <tizian.wenzel@uni-hamburg.de> Date: Mon, 19 Feb 2024 15:00:40 +0100 Subject: [PATCH] Setup, README.md updated. --- README.md | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4a65eaf..20b1e0c 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Python implementation of the 2L-VKOGA algorithm, which uses a kernel optimizatio ## Installation -pip install git+https://gitlab.mathematik.uni-stuttgart.de/pub/ians-anm/2l-vkoga@v0.1.1 +pip install git+https://gitlab.mathematik.uni-stuttgart.de/pub/ians-anm/2l-vkoga@v0.1.2 ## Usage diff --git a/setup.py b/setup.py index 60dd434..13a5f83 100644 --- a/setup.py +++ b/setup.py @@ -2,12 +2,12 @@ from setuptools import setup setup( name='2L-VKOGA', - version='0.1.1', + version='0.1.2', description='Python implementation of the two-layered (2L) Vectorial Kernel Orthogonal Greedy Algorithm', url='https://gitlab.mathematik.uni-stuttgart.de/pub/ians-anm/2l-vkoga', author='Tizian Wenzel', author_email='tizian.wenzel@mathematik.uni-stuttgart.de', - license='GNU v3.ß', + license='GNU v3.0', packages=['vkoga_2L'], install_requires=['numpy==1.24.1', 'torch==2.1.1', 'matplotlib==3.7.2', 'scipy==1.11.4', 'scikit-learn==1.3.2'], classifiers=[ -- GitLab