Datasets:
Dataset Viewer
The dataset viewer is not available for this dataset.
Unexpected token '<', "<html>
<h"... is not valid JSON
Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
LTspice Netlist ↔ ASC Schematic Dataset
SPICE netlists paired with their corresponding LTspice .asc schematic files,
scraped from public GitHub repositories.
Columns
- netlist (string): SPICE netlist content
- asc (string): Corresponding LTspice
.ascschematic file content
Splits
- train: 53000 samples
- test: 2790 samples
Usage
from datasets import load_dataset
ds = load_dataset("Si7li/ltspice-spice-circuits")
sample = ds['train'][0]
print("Netlist:", sample['netlist'][:200])
print("ASC:", sample['asc'][:200])
- Downloads last month
- 25