CoTexT
CoTexT copied to clipboard
Code implementation for CoTexT: Multi-task Learning with Code-Text Transformer
The documentation on [https://huggingface.co/razent/cotext-1-ccg](https://huggingface.co/razent/cotext-1-ccg) does not specify how to use the model for defect detection tasks. Could you please share some example code to choose the task?
All, I received the following error when running the defect detection notebook on a local jupyter lab instance. ``` PermissionDeniedError: Error executing an HTTP request: HTTP response code 401 with...
Following the documentation from https://huggingface.co/razent/cotext-1-ccg ``` from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("razent/cotext-1-ccg") model = AutoModel.from_pretrained("razent/cotext-1-ccg") ``` results in the following error: 
NotImplementedError Traceback (most recent call last) [](https://localhost:8080/#) in () ----> 1 import tensorflow_gcs_config 1 frames [/usr/local/lib/python3.7/dist-packages/tensorflow_gcs_config/__init__.py](https://localhost:8080/#) in _load_library(filename, lib) 55 raise NotImplementedError( 56 "unable to open file: " + --->...