Skip to content

Commit 0fb1b2b

Browse files
committed
final
Signed-off-by: Yang Wang <[email protected]>
1 parent f8ba103 commit 0fb1b2b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.ci/scripts/benchmark_tooling/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ python3 .ci/scripts/benchmark_tooling/get_benchmark_analysis_data.py \
3737
- `--outputType`: Choose output format (default: "print")
3838
- `print`: Display results in console
3939
- `json`: Generate JSON file
40-
- `df`: Display results in DataFrame format
40+
- `df`: Display results in DataFrame format: `{'private': List[{'groupInfo':Dict,'df': DF},...],'public':List[{'groupInfo':Dict,'df': DF}]`
4141
- `excel`: Generate Excel files with multiple sheets, the field in first row and first column contains the json string of the raw metadata
4242
- `csv`: Generate CSV files in separate folders, the field in first row and first column contains the json string of the raw metadata
4343
- `--outputDir`: Directory to save output files (default: current directory)
@@ -49,9 +49,9 @@ Notice, the filter needs full name matchings with correct format, to see all the
4949
- `--backends`: Filter by specific backend names (e.g., "qnn-q8" , ""llama3-spinquan)
5050
- `--models`: Filter by specific model names (e.g "mv3" "meta-llama-llama-3.2-1b-instruct-qlora-int4-eo8")
5151

52-
#### Working with Output Files
52+
#### Working with Output Files CSV and Excel
5353

54-
You can use methods in `common.py` to convert the file data back to DataFrame format:
54+
You can use methods in `common.py` to convert the file data back to DataFrame format, those methods read the first row in csv/excel file, and return result with format list of {"groupInfo":DICT, "df":df.Dataframe{}} format.
5555

5656
```python
5757
import logging

0 commit comments

Comments
 (0)