Instructions to use Kdeveloper1029/PJAITEST1903 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Kdeveloper1029/PJAITEST1903 with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Kdeveloper1029/PJAITEST1903", dtype="auto") - Notebooks
- Google Colab
- Kaggle
| import json | |
| def load_data(file_path): | |
| with open(file_path, 'r', encoding='utf-8') as file: | |
| data = json.load(file) | |
| return data | |
| def save_data(data, file_path): | |
| with open(file_path, 'w', encoding='utf-8') as file: | |
| json.dump(data, file, ensure_ascii=False, indent=4) | |