Search results for "12712282385e03bcfc7c4d4147bc6947" in md5 (2)

/g/ - Thread 106296530
Anonymous No.106298878
>>106296854
>pip install tensorflow==2.10.0 (other versions won't work for GPU)
>pip install numpy==1.23.5 (run after you install tensorflow override any newer versions)
elaborate on why this breaks even if I upgrade to the next minor release
/g/ - Thread 105873324
Anonymous No.105878039
>>105877758
>backreferences
nice to have, but bloat
>backtracking
bloat
Surely it would be better to default to the NFA engine until needing an DFA feature? This may be just how I use regex, attempting to find any specific match as fast as I can, but I don't see why DFA is the default. Things like backreferences are very useful when I need them, but I don't need them that often, and with the speed of the NFA model, greedy matching doesn't seem necessary.
What are the different purposes you mention?