Jiting Xu

Results 13 comments of Jiting Xu

```python #pip install ibis-framework import ibis pets = ibis.connect("./spider/database/pets_1/pets_1.sqlite") pets.list_tables() ['Has_Pet', 'Pets', 'Student'] p = pets.table('Pets') p.head() ┏━━━━━━━┳━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━┓ ┃ PetID ┃ PetType ┃ pet_age ┃ weight ┃ ┡━━━━━━━╇━━━━━━━━━╇━━━━━━━━━╇━━━━━━━━━┩ │ int32...

I had this error too, I was trying to run the https://github.com/tloen/alpaca-lora using the recommended steps: ``` python finetune.py \ --base_model 'decapoda-research/llama-7b-hf' \ --data_path 'yahma/alpaca-cleaned' \ --output_dir './lora-alpaca' ``` Ran...

We may use pyarrow.parquet `read_table` (it could read a single file or a directory ) for ibis backends that lack native `read_parquet` support. Here is another view of points: do...

> This PR needs a test. Something like: > > 1. Create a table with > 127 columns > 2. Call the `info()` method > 3. Make some kind of...

I was waiting for the [#9194](https://github.com/ibis-project/ibis/pull/9194) Now added the unit test, ping @cpcloud for review.

> Tests are still failing for Flink. Could we re run the test? The logs: ```Caused by: java.io.IOException: Insufficient number of network buffers: required 512, but only 348 available. The...

Rewrite the problem description with an easy example

***************Updated the error message********************** ``` 400 POST https://bigquery.googleapis.com/upload/bigquery/v2/projects/voltrondata-demo/jobs?uploadType=multipart: Invalid field name "Cast(y, int64)_ef9a46". Fields must contain the allowed characters, and be at most 300 characters long. For allowed characters, please...

oh, no. Let me pull it from main >are you running against main? That looks like the bigquery issues I fixed yesterday in https://github.com/ibis-project/ibis/pull/9141 and https://github.com/ibis-project/ibis/pull/9149