CI Bot commited on
Commit
1b5cdac
·
1 Parent(s): 7e6d386

Auto-update dataset [skip ci]

Browse files
Files changed (2) hide show
  1. README.md +39 -0
  2. data/cmt_data.jsonl +2 -0
README.md ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: mit
5
+ ---
6
+
7
+ # Benchmark Dataset
8
+
9
+ This repository contains a collection of condensed matter physics benchmark problems designed for evaluating Large Language Models (LLMs) on scientific reasoning tasks.
10
+
11
+ ## Data Format
12
+
13
+ Each benchmark problem in the dataset is structured as a JSON object containing the following fields:
14
+
15
+ ### Fields
16
+
17
+ - **Prompt**: The input string that is fed to the LLM
18
+ - **Solution**: A LaTeX-formatted string representing the mathematical formula that solves the question posed in the prompt
19
+ - **Parameters**: A list of independent tokens that should be treated as single variables in the LaTeX response string. These include:
20
+ - Single variables (e.g., `$A$`, `$x$`)
21
+ - Greek letters (e.g., `$\epsilon$`)
22
+ - Complex strings with subscripts (e.g., `$\delta_{i,j}$`)
23
+
24
+ Each parameter should be separated by a semicolon (;).
25
+ - **Functions**: A list of tokens that should be treated as a general function in the results string. These functions should act on some object, i.e. if `y` is in the list of functions, we interpret `y(x)` as `y` applied to `x` rather than `y*x`. The function data should be a single string with functions separated by semi-colons. Note that common functions like `sin`, etc. need not be declared. They may take the following forms
26
+ - Single letters (e.g., `$A$`, `$x$`)
27
+ - Greek letters (e.g., `$\epsilon$`)
28
+ - Complex strings with subscripts (e.g., `$\delta_{i,j}$`)
29
+
30
+ ## Example
31
+
32
+ ```json
33
+ {
34
+ "prompt": "What is the derivative of f(x) = x^2?",
35
+ "solution": "\\frac{d}{dx}(x^2) = 2x",
36
+ "parameters": "x",
37
+ "functions": ""
38
+ }
39
+ ```
data/cmt_data.jsonl ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ {"prompt": "Consider an antiferromagnetic Heisenberg model on a finite cylinder on the square lattice with model Hamiltonian $H=J\\sum_{\\langle i,j\\rangle } \\vec{S}_i.\\vec{S}_j, where $i$ and $j$ are site indices, $\\vec{S}_i$ is the S=1/2 spin operator on site $i$. Now let us put this model with only nearest-neighbor interaction $J=1$ on a finite cylinder with width $W$ and length $L$, and compute the spin-spin correlation length in two different ways. First way is to directly calculate the spin-spin correlation function and extract the correlation length by using an exponential decaying function to fit the spin-spin correlation. Second way is to apply a small but finite zeeman pinning field at the open boundary, and check the induced local moment away from the boundary to the bulk, and check how the induced spin moment decays from the boundary to bulk and extract the corresponding correlation length. Now the question is that for a fnite-size cylinder of width $W$ and length $L$, will the correlation length extracted in the above two different ways the same? If not, then check if they are the same if the length $L$ is infinite. Return your answer in a $\\boxed{}$ LaTeX environment as a Y for yes or an N for no.", "solution": "$\\boxed{e^{a*W}}$", "parameters": "$a; W$", "functions": "", "type": "condensed_matter_physics", "index": 0}
2
+ {"prompt": "The projected entangled pair states (PEPS) are a class of tensor network states that can be used to represent quantum many-body states. Given a PEPS with a tensor $T$ of bond dimension $D$ and physical dimension $d$ in a lattice of dimension $n$, the entanglement entropy of a region $A$ scales as $S_A \\propto L^{\\alpha}$ where $L$ is the linear size of the region $A$. What is the value of $\\alpha$? Return your answer in a $\\boxed{}$ LaTeX environment as a number.", "solution": "$\\boxed{n-1}$", "parameters": "$n$", "functions": "", "type": "condensed_matter_physics", "index": 1}