Jack Eadie

Results 95 comments of Jack Eadie

I'm looking to get some more hands-on practice in Golang codebases. If this is still relevant and needs cleanup, can you provide some more details about what is involved. If...

What would be needed in the build.rs for `ggml-sys`? I have attempted to use rustformers/llm using target=`wasm32-unknown-unknown` (via cloudflare workers, and specifically [cloudflare wrangler](https://github.com/cloudflare/workers-rs)), and get the following error with...

Even if DuckDB-rs has some typing for Decimal128, I think the core issue is that `duckdb_execute_prepared_arrow` (i.e. https://github.com/duckdb/duckdb/blob/5b36f520df72be12f90ae31e6f8ed797a7b78e99/src/main/capi/arrow-c.cpp#L163) uses `helper-c.cpp` and if that doesn't support Decimal128, no change to only...

Running ```rust let schema = Schema::new(vec![Field::new("a", input_array.data_type().clone(), false)]); let rb = RecordBatch::try_new(Arc::new(schema), vec![Arc::new(input_array.clone())])?; let mut stmt = db.prepare("select a from arrow(?, ?)")?; let rb = stmt.query_arrow(param)? ``` `stmt.query_arrow` calls `duckdb_execute_prepared_arrow`,...

Yeah, the GH action run looks to have successfully built the image, just unable to push. Also the above ` Merge branch 'main' into jeadie/containers` is a mistake, will fix...

Incidental merge of `jeadie/main` -> `jeadie/containers` reset.

@rwightman, can i please get a second look at this PR? Only failing GH action/check is a 403. `failed to push ghcr.io/mlfoundations/open_clip:pr-485: unexpected status: 403 Forbidden` [link](https://github.com/mlfoundations/open_clip/actions/runs/4683776150/jobs/8299213763?pr=485#step:7:637)

M1 user here. I didn't use #299, but I applied the following change to the CMakeLists.txt:11 (as described in #299): ``` 11 11 if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang") .. 12 if...

I did a quick speed run of this refactor. A couple of thoughts I had: 1. Many algorithms use the same Dockerfile. `ann_benchmarks/algorithms/xyz/Dockerfile` does not seem intuitive in these cases....

I'm happy with pip (it's generally my default too, tbh). I mainly just wanted the improved structure from #1 . Looking forward to contributing