Jr23xd23 commited on
Commit
8c6d6d4
·
verified ·
1 Parent(s): 91deaec

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +31 -21
README.md CHANGED
@@ -1,4 +1,24 @@
1
- # RightNow GPU Database
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
 
3
  Comprehensive GPU specifications database with architecture, manufacturing, API support, performance details, and kernel development specs.
4
 
@@ -10,10 +30,10 @@ Part of [RightNow](https://www.rightnowai.co) — AI-powered code editor for GPU
10
 
11
  | Vendor | GPUs | File |
12
  |--------|------|------|
13
- | NVIDIA | 1,286 | [`data/nvidia/all.json`](data/nvidia/all.json) |
14
- | AMD | 1,292 | [`data/amd/all.json`](data/amd/all.json) |
15
- | Intel | 180 | [`data/intel/all.json`](data/intel/all.json) |
16
- | **All** | 2,824 | [`data/all-gpus.json`](data/all-gpus.json) |
17
 
18
  ## Schema
19
 
@@ -94,29 +114,19 @@ Only populated fields are included — no nulls or zeros.
94
 
95
  ## Usage
96
 
97
- **Direct URL:**
98
- ```
99
- https://raw.githubusercontent.com/RightNowAI/gpu-database/main/data/nvidia/all.json
100
- ```
101
-
102
- **JavaScript:**
103
- ```javascript
104
- const gpus = await fetch(
105
- 'https://raw.githubusercontent.com/RightNowAI/gpu-database/main/data/nvidia/all.json'
106
- ).then(r => r.json());
107
 
108
- const rtx4090 = gpus.find(g => g.name === 'GeForce RTX 4090');
109
- console.log(rtx4090.cuda); // "8.9"
110
- console.log(rtx4090.sharedMemPerSM); // 102400
111
- console.log(rtx4090.coresPerSM); // 128
112
  ```
113
 
114
- **Python:**
115
  ```python
116
  import requests
117
 
118
  gpus = requests.get(
119
- 'https://raw.githubusercontent.com/RightNowAI/gpu-database/main/data/nvidia/all.json'
120
  ).json()
121
 
122
  rtx4090 = next(g for g in gpus if g['name'] == 'GeForce RTX 4090')
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - text-generation
5
+ - feature-extraction
6
+ language:
7
+ - en
8
+ tags:
9
+ - gpu
10
+ - nvidia
11
+ - amd
12
+ - intel
13
+ - cuda
14
+ - hardware
15
+ - specifications
16
+ - machine-learning
17
+ size_categories:
18
+ - 1K<n<10K
19
+ ---
20
+
21
+ # GPU Database
22
 
23
  Comprehensive GPU specifications database with architecture, manufacturing, API support, performance details, and kernel development specs.
24
 
 
30
 
31
  | Vendor | GPUs | File |
32
  |--------|------|------|
33
+ | NVIDIA | 1,286 | `data/nvidia/all.json` |
34
+ | AMD | 1,292 | `data/amd/all.json` |
35
+ | Intel | 180 | `data/intel/all.json` |
36
+ | **All** | 2,824 | `data/all-gpus.json` |
37
 
38
  ## Schema
39
 
 
114
 
115
  ## Usage
116
 
117
+ **Python:**
118
+ ```python
119
+ from datasets import load_dataset
 
 
 
 
 
 
 
120
 
121
+ ds = load_dataset("Jr23xd23/gpu-database")
 
 
 
122
  ```
123
 
124
+ **Direct JSON:**
125
  ```python
126
  import requests
127
 
128
  gpus = requests.get(
129
+ 'https://huggingface.co/datasets/Jr23xd23/gpu-database/resolve/main/data/nvidia/all.json'
130
  ).json()
131
 
132
  rtx4090 = next(g for g in gpus if g['name'] == 'GeForce RTX 4090')