معرفی شرکت ها


LSpackage-1.0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

An implementation of Local Search algorithms based on single solution design
ویژگی مقدار
سیستم عامل OS Independent
نام فایل LSpackage-1.0
نام LSpackage
نسخه کتابخانه 1.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Andurnache Alexandru
ایمیل نویسنده alex.andur@yahoo.com
آدرس صفحه اصلی http://github.com/alexandur/LSpackage
آدرس اینترنتی https://pypi.org/project/LSpackage/
مجوز LICENSE.txt
Local Search - Metaheuristic ============================ Project GIT address: https://github.com/anduralex/LSpackage.git This lib implements some algorithms described on the book "Metaheuristics - From Design to Implementation", from El-Ghazali Talbi. I am testing the lib and it is available via pip install. At this moment, the implementation includes: * Search * Local Search algorithms - Hill Climbing Installation ============ Just get it: .. code-block:: none pip install LSpackage You will need to have pip installed on your system. On linux install the python-pip package. Examples ======== LSpackage allows you to define problems and look for the solution with different strategies. A sample are in the ``hello_word.py``. The problem will try to create the string "HELLO WORLD" using localSearchAlg algorithm: .. code-block:: python from code.models import SearchProblem from code.local import hillClimbing,localSearchAlg,firstExpander WORD = 'HELLO WORLD' class HelloProblem(SearchProblem): def actions(self, state): if len(state) < len(WORD): return list(' ABCDEFGHIJKLMNOPQRSTUVWXYZ') else: return [] def result(self, state, action): return state+action def value(self, state): # how many correct letters there are? count=sum(1 if state[i] == WORD[i] else 0 for i in range(min(len(WORD), len(state)))) return count result = localSearchAlg(HelloProblem(initial_state=''),firstExpander) print(result.state) More detailed documentation =========================== You can read the book "Metaheuristics - From Design to Implementation", from El-Ghazali Talbi. Or for offline access, you can clone the project code repository and work with it. Authors ======= * Andurnache Alexandru


نحوه نصب


نصب پکیج whl LSpackage-1.0:

    pip install LSpackage-1.0.whl


نصب پکیج tar.gz LSpackage-1.0:

    pip install LSpackage-1.0.tar.gz