A-Posthuman
A-Posthuman
BTW I forgot to mention regarding 1.0.0 vs 1.1.0, I tried both and performance seemed similar in regards to the mem use growing. The worker/client program in my case is...
Ok if you need any other details let me know. The instance is on AWS, a g5.xlarge (1 nvidia A10G gpu), using the AMI: Deep Learning AMI GPU PyTorch 2.1.0...
One random thing you could check is how you're positioning the cookie in your header order. I've found that if you use curl's default cookie handling it tends to insert...
With curl 8.5.0, HTTP3 is no longer experimental, for the ngtcp2 builds. https://curl.se/changes.html#8_5_0 https://github.com/curl/curl/pull/12235
I did some googling and found this electron issue: [Bug]: Native modules that include nan.h fail to build on electron 20 https://github.com/electron/electron/issues/35193 Is that the possible issue? I tried compiling...
Hi, I figured out the issue, which was my bad: not enough ram and no swap on the instance I was using, leading to unpredictable issues when compiling things. After...
Yes such an option would definitely be helpful!
I have found if I comment out the reduce_outliers() and update_topics() calls in my program before saving the model and reloading it, then the reloaded model works without problem when...
I just checked with this code: ``` topic_info = topic_model.get_topic_info() log.debug(f"topics:\n{topic_info.to_string()}") ``` When I revert my program to how it originally was, with the reduce_outliers() and update_topics() calls prior to...
The documents assigned to 149 are from a batch of new documents my program has loaded in, to perform additional inference on, after it has reloaded the bertopic model, so...