File size: 847 Bytes
827d7e2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
---
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",
    ...
  ]
}