mirror of
https://github.com/friuns2/BlackFriday-GPTs-Prompts.git
synced 2026-05-01 06:23:54 +07:00
Added new GPTs for Black Friday
This commit is contained in:
@@ -0,0 +1,112 @@
|
||||
|
||||
[]()
|
||||
# NER Extractor
|
||||
This prompt is all about the extraction of the Named Entities from the specified content
|
||||
|
||||
# Prompt
|
||||
|
||||
```
|
||||
Extract the NER with the score in JSON format from the following content
|
||||
|
||||
{{ content }}
|
||||
```
|
||||
|
||||
## Conversation
|
||||
|
||||
**ASSISTANT**: Here is the Named Entity Recognition (NER) entities and their scores in JSON format from the given content:
|
||||
|
||||
|
||||
|
||||
```
|
||||
|
||||
{
|
||||
|
||||
"entities": [
|
||||
|
||||
{
|
||||
|
||||
"entity": "GPT models",
|
||||
|
||||
"type": "ORG",
|
||||
|
||||
"score": 0.89
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
|
||||
"entity": "DevOps",
|
||||
|
||||
"type": "MISC",
|
||||
|
||||
"score": 0.82
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
|
||||
"entity": "GPT-J",
|
||||
|
||||
"type": "ORG",
|
||||
|
||||
"score": 0.98
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
|
||||
"entity": "CPU",
|
||||
|
||||
"type": "PRODUCT",
|
||||
|
||||
"score": 0.89
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
|
||||
"entity": "GPU",
|
||||
|
||||
"type": "PRODUCT",
|
||||
|
||||
"score": 0.92
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
|
||||
"entity": "NVIDIA",
|
||||
|
||||
"type": "ORG",
|
||||
|
||||
"score": 0.95
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
|
||||
"entity": "RTX A6000",
|
||||
|
||||
"type": "PRODUCT",
|
||||
|
||||
"score": 0.97
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
|
||||
"entity": "A40",
|
||||
|
||||
"type": "PRODUCT",
|
||||
|
||||
"score": 0.94
|
||||
|
||||
}
|
||||
|
||||
]
|
||||
|
||||
}
|
||||
|
||||
```
|
||||
|
||||
|
||||
Reference in New Issue
Block a user