Eric Ihli

Results 26 comments of Eric Ihli

Notice the error message. ``` File "/tmp/pip-install-1j0aqyyp/unittest2/unittest2/loader.py", line 92 except Exception, e: ^ SyntaxError: invalid syntax ``` It's pointing out a syntax error on the line that contains `except Exception,...

I haven't been doing builds frequently enough that the slow start up feels hindering. I'll keep in mind that this is an option. And thanks for the vote of confidence....

Anyone have any idea on how to pause on breakpoints? I found the `--inspect` and `chrome://inspect` to connect to the remote debugging port of the main process, but I'm not...

> I have only looked at this briefly. What do you think about the idea of making `@chapter-name` (whatever the syntax is) expand to the anchor/relative link, regardless of whether...

> Excited to see where this goes. Just following up to see if you need anything from me. No questions or anything yet. Just haven't had much free time lately.

Another necessary change is that the `tk/action!` function takes a "context" object that you can pull the signal/action keys out of. The example shows the function taking 3 arguments. ```clojure...

Just ran `accelerate launch nbs/examples/distrib.py` on the most up-to-date master (b273fbb32d075ef1d6fd372687b5f56564cead9) with 4 GPUs and didn't get any error. I think this can be closed. Maybe in the past 2...

The `load-string` method loses commas. ```clojure (let [text-lines ["Hello, world!"]] (->> text-lines (map tokenize) (map (partial string/join " ")) parse (map #(str "(quote " % ")")) (map load-string))) ;; =>...

Here's some code I added to one of my projects that gives access to the probabilities for part-of-speech tagging. I imagine something similar could be done for parsing. ```clojure (ns...

This seems like the most active thread that is most closely related to this issue I'm having, so I'm going to share my notes here. Apple M2 Max on Ventura...