CoTexT icon indicating copy to clipboard operation
CoTexT copied to clipboard

Code implementation for CoTexT: Multi-task Learning with Code-Text Transformer

Results 4 CoTexT issues
Sort by recently updated
recently updated
newest added

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: ![CoTexTIssue](https://user-images.githubusercontent.com/24498138/184919628-d73de125-4141-4fa4-8ab0-9a097d662170.png)

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: " + --->...