-
-
Save hotchpotch/8cb74d7a2ed1730faf1ec1ba089f93cf to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Specifications | |
- Determine if the <Text> contains even a fraction of the following categories | |
- AI | |
- Machine Learning | |
- Data Science | |
- Data Analysis | |
- Statistics | |
- Deep Learning | |
- kaggle | |
- ChatGPT | |
- MLOps | |
- Generative AI | |
- LLM | |
- Others | |
- Consider which category is more likely, as a classification problem, and output using the softmax function. The sum of the resulting floats should be 1.0. | |
- Output must be in the following strict JSON format. | |
```` | |
{ | |
"AI": float, | |
"Machine Learning": float, | |
"Data Science": float, | |
"Data Analysis": float, | |
"Statistics": float, | |
"Deep Learning": float, | |
"kaggle": float, | |
"ChatGPT": float, | |
"MLOps": float, | |
"Generative AI": float, | |
"LLM": float, | |
"Others": float, | |
} | |
``` | |
## Text Content | |
Text=""" | |
$text | |
""" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment