yale
yale
Hi, I dont know how to write a query to get function without comment. For example: I want to exec query for the input demo below, and obtain the output...
Hi, It is a great project. Can you provide the docker image on dockerhub? In this way, a fast experience can be quickly deployed here. Thanks!
**Is your feature request related to a problem? Please describe.** Hello, - what build tool (such as maven, gradle, etc.) does rascal use to manage the code? - Does it...
- :art: update check_tool_usable
通过检查执行返回值和执行log,来判断cobra工具是否执行正常。 可以参考以下示例: https://github.com/Tencent/CodeAnalysis/blob/488785b0553d9411dedf1d169d31fa2cf3492dc0/client/tool/checkstyle.py#L230 https://github.com/Tencent/CodeAnalysis/blob/488785b0553d9411dedf1d169d31fa2cf3492dc0/client/tool/checkstyle.py#L254
## 背景 目前Cobra使用的版本是[v2.0.0-alpha.5](https://github.com/TCATools/common-cobra-v2.0.0-alpha.5),存在以下问题: - 依赖安装问题: - 执行 `pip3 install -r requirements.txt` 安装依赖之后,默认的 `itsdangerous` 依赖的版本不可用,会出现以下问题 - 需要更新 `pip install itsdangerous==2.0.1` ## 需求 - 验证新版的 https://github.com/FeeiCN/Cobra/releases/tag/v2.0.0-alpha.6 是否还存在这个依赖问题 - 更新TCA中的cobra的[版本](https://github.com/TCATools/common-cobra-v2.0.0-alpha.5)。可以新建一个工具仓库存放。
Hi, I want to use codon in a docker. Can you provide a docker image version? Thanks!
test.py ```python import argparse class Test(object): def __init__(self): print("Test---------\n") self.argparser = argparse.ArgumentParser() ``` test.codon ```codon from python import test if __name__ == "__main__": test.Test() ``` I have the demo above,...
Can codon package codon files and dependent python modules (using `from python import`) in the same standalone executable binary like `nuitka`, rather than the executable binary needing to look for...
I run the demo in README: ```python # -*- encoding: utf-8 -*- from codetf.trainer.causal_lm_trainer import CausalLMTrainer from codetf.data_utility.codexglue_dataset import CodeXGLUEDataset from codetf.models import load_model_pipeline from codetf.performance.evaluation_metric import EvaluationMetric model_class =...