Update README.md
Browse files
README.md
CHANGED
|
@@ -4,6 +4,10 @@ datasets:
|
|
| 4 |
- openrelay-dataset
|
| 5 |
language:
|
| 6 |
- en
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
pipeline_tag: text-classification
|
| 8 |
library_name: transformers
|
| 9 |
tags:
|
|
@@ -17,9 +21,6 @@ tags:
|
|
| 17 |
|
| 18 |
# openrelay-ai-v1
|
| 19 |
|
| 20 |
-
**openrelay-ai-v1** is the first-generation AI model from [OpenRelay](https://openrelay.live/), a modern tech media and productivity platform. This model is designed to power a range of intelligent features across the OpenRelay ecosystem, including content understanding, semantic search, summarization, Q&A, recommendations, and workflow automation.
|
| 21 |
-
# openrelay-ai-v1
|
| 22 |
-
|
| 23 |
**openrelay-ai-v1** is the first-generation AI model from [OpenRelay](https://openrelay.live/), a modern tech media and productivity platform. This model is designed to power a range of intelligent features across the OpenRelay ecosystem, including content understanding, semantic search, summarization, Q&A, recommendations, and workflow automation.
|
| 24 |
|
| 25 |
---
|
|
@@ -48,9 +49,9 @@ tags:
|
|
| 48 |
|
| 49 |
## ποΈ Technical Details
|
| 50 |
|
| 51 |
-
- **Architecture:** Transformer-based (e.g.,
|
| 52 |
- **Training Data:** Curated OpenRelay content (articles, reviews, comments), public tech/productivity datasets
|
| 53 |
-
- **Supported Tasks:**
|
| 54 |
|
| 55 |
---
|
| 56 |
|
|
@@ -61,7 +62,12 @@ You can load and use `openrelay-ai-v1` with Hugging Face Transformers:
|
|
| 61 |
```python
|
| 62 |
from transformers import pipeline
|
| 63 |
|
| 64 |
-
# Example:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 65 |
summarizer = pipeline("summarization", model="openrelay/openrelay-ai-v1")
|
| 66 |
summary = summarizer("Paste your OpenRelay article text here.")
|
| 67 |
print(summary)
|
|
@@ -69,9 +75,15 @@ print(summary)
|
|
| 69 |
|
| 70 |
---
|
| 71 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 72 |
## π License
|
| 73 |
|
| 74 |
-
|
| 75 |
|
| 76 |
---
|
| 77 |
|
|
@@ -84,7 +96,16 @@ Visit [openrelay.live](https://openrelay.live/) or follow us on [Instagram](http
|
|
| 84 |
|
| 85 |
## π Citation
|
| 86 |
|
| 87 |
-
If you use `openrelay-ai-v1` in your research or application, please cite this repository and the OpenRelay platform
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 88 |
|
| 89 |
---
|
| 90 |
|
|
|
|
| 4 |
- openrelay-dataset
|
| 5 |
language:
|
| 6 |
- en
|
| 7 |
+
metrics:
|
| 8 |
+
- accuracy
|
| 9 |
+
- f1
|
| 10 |
+
base_model: distilbert-base-uncased
|
| 11 |
pipeline_tag: text-classification
|
| 12 |
library_name: transformers
|
| 13 |
tags:
|
|
|
|
| 21 |
|
| 22 |
# openrelay-ai-v1
|
| 23 |
|
|
|
|
|
|
|
|
|
|
| 24 |
**openrelay-ai-v1** is the first-generation AI model from [OpenRelay](https://openrelay.live/), a modern tech media and productivity platform. This model is designed to power a range of intelligent features across the OpenRelay ecosystem, including content understanding, semantic search, summarization, Q&A, recommendations, and workflow automation.
|
| 25 |
|
| 26 |
---
|
|
|
|
| 49 |
|
| 50 |
## ποΈ Technical Details
|
| 51 |
|
| 52 |
+
- **Architecture:** Transformer-based (e.g., distilbert-base-uncased, fine-tuned for OpenRelay tasks)
|
| 53 |
- **Training Data:** Curated OpenRelay content (articles, reviews, comments), public tech/productivity datasets
|
| 54 |
+
- **Supported Tasks:** Text classification, summarization, semantic search, Q&A
|
| 55 |
|
| 56 |
---
|
| 57 |
|
|
|
|
| 62 |
```python
|
| 63 |
from transformers import pipeline
|
| 64 |
|
| 65 |
+
# Example: Text Classification
|
| 66 |
+
classifier = pipeline("text-classification", model="openrelay/openrelay-ai-v1")
|
| 67 |
+
result = classifier("Notion is a versatile productivity tool.")
|
| 68 |
+
print(result)
|
| 69 |
+
|
| 70 |
+
# Example: Summarization (if supported)
|
| 71 |
summarizer = pipeline("summarization", model="openrelay/openrelay-ai-v1")
|
| 72 |
summary = summarizer("Paste your OpenRelay article text here.")
|
| 73 |
print(summary)
|
|
|
|
| 75 |
|
| 76 |
---
|
| 77 |
|
| 78 |
+
## π Metrics
|
| 79 |
+
|
| 80 |
+
- **Accuracy** and **F1-score** measured on OpenRelay-categorized test sets and public benchmarks.
|
| 81 |
+
|
| 82 |
+
---
|
| 83 |
+
|
| 84 |
## π License
|
| 85 |
|
| 86 |
+
This model is licensed under the [Apache-2.0 License](https://www.apache.org/licenses/LICENSE-2.0).
|
| 87 |
|
| 88 |
---
|
| 89 |
|
|
|
|
| 96 |
|
| 97 |
## π Citation
|
| 98 |
|
| 99 |
+
If you use `openrelay-ai-v1` in your research or application, please cite this repository and the OpenRelay platform:
|
| 100 |
+
|
| 101 |
+
```
|
| 102 |
+
@misc{openrelay-ai-v1,
|
| 103 |
+
title={openrelay-ai-v1: OpenRelay Platform AI Model},
|
| 104 |
+
author={OpenRelay Team},
|
| 105 |
+
howpublished={\url{https://huggingface.co/openrelay/openrelay-ai-v1}},
|
| 106 |
+
year={2025}
|
| 107 |
+
}
|
| 108 |
+
```
|
| 109 |
|
| 110 |
---
|
| 111 |
|