franz101
franz101
Running setup.py develop for vaex-meta worked after cloning recursively
Having another bug when opening: TypeError: point.map is not a function. (In 'point.map(val => val * scale)', 'point.map' is undefined)
@nehatj check your capitalisation of the letters: ` from transformers import AutoTokenizer,AutoModelWithLMHead,pipeline tokenizer = AutoTokenizer.from_pretrained("vr25/fin_RoBERTa-v1") model = AutoModelWithLMHead.from_pretrained("vr25/fin_RoBERTa-v1") ` sentiment = pipeline('sentiment-analysis', model=model, tokenizer=tokenizer) sentiment("the stock needs to sold") leads...
Curious how we can handle nullable inserts that have default values on the table for batch inserts. Tried `ExampleTable.__table__.insert(), records....` Workaround is using `add_all`
@xzkostyan do you mind adding me as a maintainer or we find a way to get small improvements through?
I see what you mean, thanks for the feedback: ``` engine = create_engine(uri) # Base = get_declarative_base(metadata=metadata) # Create a session. Session = sessionmaker(bind=engine) session = Session() metadata = MetaData()...
In general I was assuming clickhouse 2.0 was breaking the docs
This seems to work for now: ``` metadata = MetaData() metadata.reflect(bind=engine) Base = get_declarative_base(metadata=metadata) ```
... any workaround?
I also would suggest splitting up the PRs