|
|
--- |
|
|
task_categories: |
|
|
- text-classification |
|
|
--- |
|
|
|
|
|
# Dataset Card for **Ollama Model Usage** |
|
|
|
|
|
## Dataset Summary |
|
|
|
|
|
This dataset tracks various IP addresses and the language models or frameworks they are running. Each record is a JSON object containing: |
|
|
- **IP**: A unique IPv4 address, e.g., `159.118.42.73`. |
|
|
- **Models**: A list of model identifiers (strings), often with version tags, e.g. `"llama3.2:latest"`, `"smollm2:135m"`, etc. |
|
|
|
|
|
These records might be used for internal analytics on how different models are deployed across various IPs. This dataset **does not contain** text samples or typical user-generated content; it is purely reference / usage metadata for large language model (LLM) deployments. |
|
|
|
|
|
Example record: |
|
|
```json |
|
|
{ |
|
|
"IP": "159.118.42.73", |
|
|
"Models": [ |
|
|
"smollm2:135m", |
|
|
"llama3.2:3b", |
|
|
"smollm2:latest", |
|
|
... |
|
|
] |
|
|
} |