Instructions to use zjunlp/mt5-ie with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use zjunlp/mt5-ie with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("zjunlp/mt5-ie") model = AutoModelForSeq2SeqLM.from_pretrained("zjunlp/mt5-ie") - Notebooks
- Google Colab
- Kaggle
Quick Links
We trained the MT5-base model for the CCKS2023 Instruction-based KGC task using 27W weakly supervised data without employing any additional techniques.
To learn more about the training process and how to utilize the model, please consult the following GitHub repository: https://github.com/zjunlp/DeepKE/tree/main/example/triple/mt5.
There, you will find detailed information on how to train the model and leverage its capabilities for the given task.
- Downloads last month
- 7
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support
# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("zjunlp/mt5-ie") model = AutoModelForSeq2SeqLM.from_pretrained("zjunlp/mt5-ie")