Ye Yuan
Ye Yuan
when I execute "list(javalang.tokenizer.tokenize('i=0'))", I got the error below: Traceback (most recent call last): File "", line 1, in File "/mnt/yuanye_work/javalang/javalang/tokenizer.py", line 538, in tokenize token_type = self.read_integer_or_float(c, c_next) File...
### Versions * OS: Ubuntu1804 * Python version: python2.7 * Python installation method: anaconda * ### Description execute ./install-ubuntu.sh ### Code and Logs While installing: Installed /usr/local/lib/python2.7/dist-packages/MobileInsight-4.0.0-py2.7-linux-x86_64.egg Processing dependencies for...
Hi, when evaluating with arc easy challenge with the script below: ``` lm-eval \ --model hf \ --model_args trust_remote_code=True,pretrained=$ckpt \ --tasks arc_easy \ --num_fewshot 0 \ --device cuda:0 \ --output_path...
### Description of the bug | 错误描述 我把处理函数封装成了如下形式: ```python def process_one_file(file_path: str, output_path: str): os.makedirs(output_path, exist_ok=True) try: pdf_bytes = open(file_path, "rb").read() model_json = [] jso_useful_key = {"_pdf_type": "", "model_list": model_json}...
When I want to reproduce the original model results of mistral-7b-v0.2 without `flash-attn` I got the error: ``` Traceback (most recent call last): File "/home/yuanye/long_llm/InfLLM/benchmark/pred.py", line 330, in preds =...
When I evaluated NVILA-8B-Video on lmms-longvideobench with this script: ```bash #!/bin/bash set -e MODEL_NAMES=( "NVILA-8B-Video" ) SELECTED_TASKS=( "lmms-longvideobench_val_v" ) TASK_STR=$( IFS=, echo "${SELECTED_TASKS[*]}" ) echo "TASK_STR: $TASK_STR" START_TIME=$(date +%s) echo...