Instructions to use Huhujingjing/custom-gcn with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Huhujingjing/custom-gcn with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Huhujingjing/custom-gcn", trust_remote_code=True, dtype="auto") - Notebooks
- Google Colab
- Kaggle
| { | |
| "architectures": [ | |
| "GCNModel" | |
| ], | |
| "auto_map": { | |
| "AutoConfig": "configuration_gcn.GCNConfig", | |
| "AutoModel": "modeling_gcn.GCNModel" | |
| }, | |
| "emb_input": 20, | |
| "hidden_size": 64, | |
| "input_feature": 64, | |
| "model_type": "gcn", | |
| "n_layers": 6, | |
| "num_classes": 1, | |
| "torch_dtype": "float32", | |
| "transformers_version": "4.29.2" | |
| } | |