Google Colab code Problem
#14
by
Aliw7979
- opened
Hi, I want to test this model in google colab but get this error after running "3.Launch" cell:
/content/drive/MyDrive/text-generation-webui
python server.py --share --model TheBloke_vicuna-13B-1.1-GPTQ-4bit-128g --model_type LLaMa --settings settings-colab.json --chat --wbits 4 --groupsize 128 --extensions gallery
WARNING:The gradio "share link" feature uses a proprietary executable to create a reverse tunnel. Use it with care.
2023-05-31 13:27:29.074805: W tensorflow/compiler/tf2tensorrt/utils/py_utils.cc:38] TF-TRT Warning: Could not find TensorRT
bin /usr/local/lib/python3.10/dist-packages/bitsandbytes/libbitsandbytes_cuda118.so
INFO:Loading settings from settings-colab.json...
INFO:Loading TheBloke_vicuna-13B-1.1-GPTQ-4bit-128g...
INFO:Found the following quantized model: models/TheBloke_vicuna-13B-1.1-GPTQ-4bit-128g/vicuna-13B-1.1-GPTQ-4bit-128g.latest.safetensors
INFO:Loaded the model in 57.58 seconds.
INFO:Loading the extension "gallery"...
โญโโโโโโโโโโโโโโโโโโโโโ Traceback (most recent call last) โโโโโโโโโโโโโโโโโโโโโโโฎ
โ /content/drive/MyDrive/text-generation-webui/server.py:1108 in <module> โ
โ โ
โ 1105 โ โ
โ 1106 โ shared.generation_lock = Lock() โ
โ 1107 โ # Launch the web UI โ
โ โฑ 1108 โ create_interface() โ
โ 1109 โ while True: โ
โ 1110 โ โ time.sleep(0.5) โ
โ 1111 โ โ if shared.need_restart: โ
โ โ
โ /content/drive/MyDrive/text-generation-webui/server.py:632 in โ
โ create_interface โ
โ โ
โ 629 โ โ โ โ with gr.Row(): โ
โ 630 โ โ โ โ โ with gr.Column(scale=8): โ
โ 631 โ โ โ โ โ โ with gr.Row(): โ
โ โฑ 632 โ โ โ โ โ โ โ shared.gradio['character_menu'] = gr.Drop โ
โ 633 โ โ โ โ โ โ โ ui.create_refresh_button(shared.gradio['c โ
โ 634 โ โ โ โ โ โ โ shared.gradio['save_character'] = ui.crea โ
โ 635 โ โ โ โ โ โ โ shared.gradio['delete_character'] = ui.cr โ
โ โ
โ /content/drive/MyDrive/text-generation-webui/modules/utils.py:47 in โ
โ get_available_characters โ
โ โ
โ 44 โ
โ 45 def get_available_characters(): โ
โ 46 โ paths = (x for x in Path('characters').iterdir() if x.suffix in ('. โ
โ โฑ 47 โ return ['None'] + sorted(set((k.stem for k in paths if k.stem != "i โ
โ 48 โ
โ 49 โ
โ 50 def get_available_instruction_templates(): โ
โ โ
โ /content/drive/MyDrive/text-generation-webui/modules/utils.py:47 in โ
โ <genexpr> โ
โ โ
โ 44 โ
โ 45 def get_available_characters(): โ
โ 46 โ paths = (x for x in Path('characters').iterdir() if x.suffix in ('. โ
โ โฑ 47 โ return ['None'] + sorted(set((k.stem for k in paths if k.stem != "i โ
โ 48 โ
โ 49 โ
โ 50 def get_available_instruction_templates(): โ
โ โ
โ /content/drive/MyDrive/text-generation-webui/modules/utils.py:46 in โ
โ <genexpr> โ
โ โ
โ 43 โ
โ 44 โ
โ 45 def get_available_characters(): โ
โ โฑ 46 โ paths = (x for x in Path('characters').iterdir() if x.suffix in ('. โ
โ 47 โ return ['None'] + sorted(set((k.stem for k in paths if k.stem != "i โ
โ 48 โ
โ 49 โ
โ โ
โ /usr/lib/python3.10/pathlib.py:1017 in iterdir โ
โ โ
โ 1014 โ โ """Iterate over the files in this directory. Does not yield โ
โ 1015 โ โ result for the special paths '.' and '..'. โ
โ 1016 โ โ """ โ
โ โฑ 1017 โ โ for name in self._accessor.listdir(self): โ
โ 1018 โ โ โ if name in {'.', '..'}: โ
โ 1019 โ โ โ โ # Yielding a path object for these makes little sense โ
โ 1020 โ โ โ โ continue โ
โฐโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฏ
OSError: [Errno 5] Input/output error: 'characters'
I tried it many times and restarted runtime but still get this error.
@eucdee created the notebook, perhaps he can help
Or follow the link to the Github at the top of the notebook, maybe there's a new one.