shendiaomo
shendiaomo
As the discussion of #2494 , SQLFlow would be made a pure compiler. This requires we support `alisa` in Python as a prerequisite. - [x] Implement a `pyalisa` module based...
As the discussion of #2494 , SQLFlow would be made a pure compiler. This requires we support feature derivation/verifier and columns in Python. There's a reference implementation in https://github.com/sql-machine-learning/sqlflow/pull/2477/files#diff-606462e9e98c6c23cdf010f1ec243c0e ....
**Is your feature request related to a problem? Please describe.** Developing in python is lacking protection from type checking now. **Describe the solution you'd like** Use [pytype](https://github.com/google/pytype) to ease developing...
We now use a Python `dict` to hold feature column metadata. The `dict` has keys such as `shape`, `is_sparse`, `feature_name` etc. The client code has to feature the keys with...
There're several problems such as #2548 , #2583 and #2584 , which should be detected in the CI workflow stage. We should make sure that every change doesn't break the...
I propose to split the refactory development into three stages to ensure a smooth transition. The output of each stage is more easily guaranteed to be correct. ## Stage 1:...
As the discussion of #2494 and #2562 , SQLFlow should be a compiler, which generates target code instead of executing the intermediate representation (IR). To ensure a parallel development process...
As the discussion of #2494 and #2562, SQLFlow should be a compiler, which generates target code instead of executing the intermediate representation (IR). We now process figures generated by an...
# Bug reports There's a redundant `return` in the code https://github.com/c-bata/go-prompt/blob/3a148d16472911cb8aa6302d7d44c9712a4ab17f/prompt.go#L125-L131 This skips the following `handleKeyBind` part. If a user wants to redefine the behavior of `ControlN`, it doesn't work...
When pasting (e. g. ⌘-v on Mac) multiline text to a go-prompt application, Prompt.readBuffer gets all the input as a whole, which makes Prompt.feed falls to the `NotDefined` case even...