qubit55
qubit55
Is it possible to use sparkle from within a jupyter notebook?
Hello, I'm trying to do the following: ``` (ql:quickload :py4cl2) (py4cl2:defpymodule "transformers" t :lisp-package "TRANSFORMERS") (defparameter *model-id* "meta-llama/Meta-Llama-3-8B-Instruct") (defparameter *pipeline* (transformers:pipeline :task "text-generation" :model *model-id*)) ``` but getting "Package TRANSFORMERS...
Hello, I'm trying to do the following: ``` (cffi:defcstruct llmodel-prompt-context (logits :pointer) (logits-size :size) (tokens :pointer) (tokens-size :size) (n-past :int32) (n-ctx :int32) (n-predict :int32) (top-k :int32) (top-p :float) (min-p :float)...
Hello, Syntax highlighting isn't working in Google Colab. Here's a script to install Clojupyter in Colab to reproduce the issue https://github.com/qubit55/clojupyter_colab_setup/tree/main And an example notebook https://github.com/qubit55/clojupyter-playground/blob/main/Copy_of_clojupyter_playground.ipynb
Hello, I have Clojure 1.12 installed and I'm trying to load a 3rd party library by using the add-lib functionality but getting: Syntax error compiling at (REPL:1:1). Unable to resolve...
Hello, I see that the 151d7c649c250288eeba046a1cfc93526d9cf1b9 commit introduced a breaking change. The BEARER-AUTH parameter in the methods was removed, so the latest version on quicklisp doesn't have it. Unfortunately the...
Hello, I'm not sure whether it's a bug or the lack of a feature, but the add-lib isn't working for me. It fails with the following error: Syntax error compiling...