print data info
Browse filesSigned-off-by: n1ck-guo <heng.guo@intel.com>
    	
        src/leaderboard/read_evals.py
    CHANGED
    
    | @@ -211,6 +211,7 @@ def get_request_file_for_model(requests_path, model_name, | |
| 211 | 
             
                for tmp_request_file in request_files:
         | 
| 212 | 
             
                    with open(tmp_request_file, "r") as f:
         | 
| 213 | 
             
                        req_content = json.load(f)
         | 
|  | |
| 214 | 
             
                        if (
         | 
| 215 | 
             
                            req_content["status"] in ["Finished"]
         | 
| 216 | 
             
                            and req_content["precision"] == precision.split(".")[-1]
         | 
|  | |
| 211 | 
             
                for tmp_request_file in request_files:
         | 
| 212 | 
             
                    with open(tmp_request_file, "r") as f:
         | 
| 213 | 
             
                        req_content = json.load(f)
         | 
| 214 | 
            +
                        print(model_name, req_content["precision"], precision.split(".")[-1], str(req_content["quant_type"]), quant_type, req_content["weight_dtype"], weight_dtype.split(".")[-1],req_content["compute_dtype"], compute_dtype.split(".")[-1] )
         | 
| 215 | 
             
                        if (
         | 
| 216 | 
             
                            req_content["status"] in ["Finished"]
         | 
| 217 | 
             
                            and req_content["precision"] == precision.split(".")[-1]
         | 
