Add library name to model card
Browse filesThis PR adds the `library_name` to the model card metadata. The model is implemented using PyTorch, so specifying `library_name: pytorch` clarifies the framework used and assists users in understanding how to utilize the model. The existing `pipeline_tag` and `license` are retained. Additionally, the file information section, which isn't relevant for a model card, has been removed.
README.md
CHANGED
@@ -3,7 +3,9 @@ license: mit
|
|
3 |
pipeline_tag: video-classification
|
4 |
tags:
|
5 |
- skeleton-based-action-recognition
|
|
|
6 |
---
|
|
|
7 |
# ProtoGCN
|
8 |
PyTorch implementation of [Revealing Key Details to See Differences: A Novel Prototypical Perspective for Skeleton-based Action Recognition](https://arxiv.org/abs/2411.18941).
|
9 |
|
|
|
3 |
pipeline_tag: video-classification
|
4 |
tags:
|
5 |
- skeleton-based-action-recognition
|
6 |
+
library_name: pytorch
|
7 |
---
|
8 |
+
|
9 |
# ProtoGCN
|
10 |
PyTorch implementation of [Revealing Key Details to See Differences: A Novel Prototypical Perspective for Skeleton-based Action Recognition](https://arxiv.org/abs/2411.18941).
|
11 |
|