File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
optimisation_algorithms.egg-info Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 3535 # For a discussion on single-sourcing the version across setup.py and the
3636 # project code, see
3737 # https://packaging.python.org/guides/single-sourcing-package-version/
38- version = "1.1.1 " , # Required
38+ version = "1.1.0 " , # Required
3939 # This is a one-line description or tagline of what your project does. This
4040 # corresponds to the "Summary" metadata field:
4141 # https://packaging.python.org/specifications/core-metadata/#summary
Original file line number Diff line number Diff line change 11Metadata-Version: 2.1
22Name: optimisation-algorithms
3- Version: 1.1.0
3+ Version: 1.1.1
44Summary: A collection of the most commonly used Optimisation Algorithms for Data Science & Machine Learning
55Home-page: https://github.com/Muradmustafayev-03/Optimisation-Algorithms
66Author: Murad Mustafayev
Original file line number Diff line number Diff line change 11import random
22from abc import abstractmethod
33import numpy as np
4- from exceptions .FailedToConverge import FailedToConverge
4+ from . exceptions .FailedToConverge import FailedToConverge
55
66
77class GradientDescent :
You can’t perform that action at this time.
0 commit comments