byzer-lang icon indicating copy to clipboard operation
byzer-lang copied to clipboard

Byzer (former MLSQL): A low-code open-source programming language for data pipeline, analytics and AI.

Results 131 byzer-lang issues
Sort by recently updated
recently updated
newest added

用下面这个最简单的例子会报错,也测试过其它过程,比如用 int数组训练数据,然后分类预测等都是正常的,就是TfIdfInPlace 、Word2Vec都不能用。我看 byzer的官方文档里面也删除了文本向量化的那一章,是不支持了吗? *** ```sql set rawText=''' {"content":"这是一个字符串","label":0.0}, {"content":"这是字符串","label":1.0} {"content":"这是一个字符","label":0.0} {"content":"这是一个字符串","label":0.0} {"content":"这是一个字符串","label":1.0} {"content":"这是一个字符串","label":0.0} {"content":"这是一个字符串","label":0.0} {"content":"这是一个字符串","label":1.0} {"content":"这是一个字符串","label":0.0} {"content":"这是一个字符串","label":0.0} '''; load jsonStr.`rawText` as orginal_text_corpus; train orginal_text_corpus as TfIdfInPlace.`/tmp/tfidfinplace` where inputCol="content" and...

## Registering the registered model again will report an error After restarting the service, an error will be reported when the registered model is registered again, and this error will...

The format of `model.summary()` printout is messed up.

https://docs.byzer.org/#/byzer-lang/zh-cn/developer/api/run_script_api?id=runscript-%e6%8e%a5%e5%8f%a3 可以的话,能否标注下哪些参数是否必,常见响应错误码

Difficulty:Low
Documentation

Here is my code: ``` select owner, owner_email, owner_mgr, owner_mgr_email, week_begin, actual_hour, working_days*8 as working_hour from( select owner, owner_email, owner_mgr, owner_mgr_email, week_begin, sum(ts_hour) as actual_hour from workload_union where owner_active=1 group...

## 初衷 Byzer 社区希望人人都能够参与进来。开源应该是普惠的,这种普惠应该是在价值的发挥上,以及社区的参与上。 我们认为积极的社区参与体现在如下点: * 积极帮助社区用户解答技术问题 * 帮助项目增加测试​ * 完善技术文档 * 提供有价值的 Issue * 报告或修复未知 / 已知的 Bug​ * 为项目撰写源码分析、实用案例相关的文章​ 这些都是对社区非常有价值的贡献哦。 新手任务 我们会总计一些新手任务,他们会标记为为两个基础标签: * for new contributors * Difficulty:Low,...

for new contributors

With the following code: ```sql run command as JDBC.`mysql_instance._` where `driver-statement-query`="show tables" and sqlMode="query"; ``` The Byzer-lang will throw exception like this if the auth mechanism is enabled: ``` class...

Error: at MLSQLNotebookController._doExecution (.vscode/extensions/allwefantasy.mlsql-0.0.5/dist/extension-node.js:24289:90) at processTicksAndRejections (internal/process/task_queues.js:93:5)

## Problem I use Byzer to send mail according to [this](https://docs.byzer.org/#/byzer-lang/zh-cn/extension/et/SendMessage?id=%e5%a6%82%e4%bd%95%e5%8f%91%e9%80%81%e9%82%ae%e4%bb%b6) document. I'd like to send email with config "mail.smtp.starttls.enable=true", so I add configuration `properties.mail.smtp.starttls.enable`= "true" to sendEmail ET. Here...