Dataset Viewer
The dataset viewer is not available for this split.
Cannot load the dataset split (in streaming mode) to extract the first rows.
Error code: StreamingRowsError
Exception: ValueError
Message: Bad split: code_from_sc_mcq. Available splits: ['train']
Traceback: Traceback (most recent call last):
File "/src/services/worker/src/worker/utils.py", line 99, in get_rows_or_raise
return get_rows(
^^^^^^^^^
File "/src/libs/libcommon/src/libcommon/utils.py", line 272, in decorator
return func(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^
File "/src/services/worker/src/worker/utils.py", line 61, in get_rows
ds = load_dataset(
^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/load.py", line 1705, in load_dataset
return builder_instance.as_streaming_dataset(split=split)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/builder.py", line 1117, in as_streaming_dataset
raise ValueError(f"Bad split: {split}. Available splits: {list(splits_generators)}")
ValueError: Bad split: code_from_sc_mcq. Available splits: ['train']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.
Code Space Complexity prediction
Sourced from BigOBench, using a subset of the N-most commonly occuring space complexities in the dataset
Three tasks:
- sc_direct: Directly predict the space complexity as O(X) given the code
- code_to_sc_mcq: Select the correct space complexity from four options, given the code
- code_from_sc_mcq: Given a space complexity, select the code with that space complexity from four options.
| Complexity |
|---|
| O(1) |
| O(logn) |
| O(logn*logm) |
| O(n) |
| O(n+m) |
| O(nlogn) |
| O(n*m) |
| O(n**2) |
- Downloads last month
- 42