David Gilbertson

Results 58 comments of David Gilbertson

I had PyTorch 2.4 installed but `pip install unstructured[pdf]` tries to install `torch==2.0.1`. I can't work out why. The dependencies don't require this, yet this is what pip outputs during...

Is this planned to be done soon? There's now commonly used packages like `thinc` that [require NumPy > 2](numpy>=2.0.0,

[Details about how I found these](https://david-gilbertson.medium.com/how-i-found-mistakes-in-openais-healthbench-using-ai-0c5ff67cb5cf?sk=82922717e601c284fc26df857465de0e)

The text "Query about oral St John’s Wort and topical oil for bruises" is just a summary of the prompt to give context in the table, it's not part of...

In case it's useful, here's my quick attempt at doing string replace with a stream. ```python import streamlit as st from openai import OpenAI, Stream client = OpenAI() stream =...

+1, I was quite surprised to learn that it's not even possible to have a faceted chart that fills the available width automatically. Would be great to see this improvement.

I too was confused by this. Specifically, why my random walks consistently showed strong negative correlation for about two thirds of the chart (from lag-length about 40% of n to...

For anyone here looking for something to copy/paste: ```py from importlib.metadata import metadata from collections import defaultdict from pprint import pprint def get_extras(package_name): extras = metadata(package_name).get_all("Provides-Extra") required_dists = metadata(package_name).get_all("Requires-Dist") result...