I wonder is there is something similar to the expert system powerloom in python. I hope you get some inspiration from ARIMA (Norvig Book with python code). Also using ontologies with triples in python should be slow for…
You are right, since the post say that the performance of 3.11 can be 2x that of 3.10, the implication is that python 3.11 is ten times slower on loop related code than sbcl. Anyway, a 2x improvement is a great feast…
The difference in speed is still huge, for example sbcl (time (loop for i from 1 below (expt 10 8) by 2 when (zerop (rem i 3) count t)) this takes 0.131 seconds versus python import time def gato(): start = time.time()…
I wonder is there is something similar to the expert system powerloom in python. I hope you get some inspiration from ARIMA (Norvig Book with python code). Also using ontologies with triples in python should be slow for…
You are right, since the post say that the performance of 3.11 can be 2x that of 3.10, the implication is that python 3.11 is ten times slower on loop related code than sbcl. Anyway, a 2x improvement is a great feast…
The difference in speed is still huge, for example sbcl (time (loop for i from 1 below (expt 10 8) by 2 when (zerop (rem i 3) count t)) this takes 0.131 seconds versus python import time def gato(): start = time.time()…