sugizo
sugizo
``` pip install spacy==2.3.5 en_core_web_sm Collecting spacy==2.3.5 Downloading spacy-2.3.5-cp36-cp36m-manylinux2014_x86_64.whl (10.4 MB) |████████████████████████████████| 10.4 MB 27 kB/s eta 0:00:01 ERROR: Could not find a version that satisfies the requirement en_core_web_sm (from...
perhaps can learn from this http://sugizo.pythonanywhere.com/music/fretboard/form_scale_in_fretboard created using python and could share the code if you want
``` $ /Applications/Orange3.app/Contents/MacOS/Orange Traceback (most recent call last): File "/Applications/Orange3.app/Contents/Frameworks/Python.framework/Versions/3.8/lib/python3.8/runpy.py", line 185, in _run_module_as_main mod_name, mod_spec, code = _get_module_details(mod_name, _Error) File "/Applications/Orange3.app/Contents/Frameworks/Python.framework/Versions/3.8/lib/python3.8/runpy.py", line 111, in _get_module_details __import__(pkg_name) File "/Applications/Orange3.app/Contents/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/Orange/__init__.py", line...
already tried different parameter, and the default ``` import stockfish stockfish.get_parameters() ``` ``` stockfish = Stockfish(path = engine, depth = 18, parameters = {'Contempt': 0, 'Debug Log File': '', 'Hash':...
in this issue is talk about just stockfish engine not it's derivates ``` $ ~/Downloads/chess/engine/stockfish -v Stockfish 11 64 by T. Romstad, M. Costalba, J. Kiiski, G. Linscott ``` so...
work both single line and pgn but when using python module stockfish is slower compare to chess python module (chess.engine() ) ``` $ ~/Downloads/chess/engine/stockfish -v Stockfish 11 64 by T....
already tried like on [pypi](https://pypi.org/project/stockfish/) ``` best_move = stockfish.get_best_move(wtime = 1000, btime = 1000) best_move_time = stockfish.get_best_move_time(1000) ``` still got the same result, that's why, try to change parameter hopefully...
trying to minimalize in thought that pgn must do recursive job, so perhaps it cause looping forever then here are code just to analyze the fen with the suggestion from...
same logic like above but this one using ipywidgets, **result** more slower than above  **code** ``` import chess import time from IPython.display import display, HTML, clear_output from stockfish import...
same logic like above but this using python chess with default parameters (same engine version, without ipywidget) **result**  **code** ``` import chess import chess.engine import time from IPython.display import...