You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: abacusai/api_class/batch_prediction.py
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -124,10 +124,12 @@ class PretrainedModelsBatchPredictionArgs(BatchPredictionArgs):
124
124
125
125
Args:
126
126
for_eval (bool): If True, the test fold which was created during training and used for metrics calculation will be used as input data. These predictions are hence, used for model evaluation.
127
+
files_input_location (str): The input location for the files.
127
128
files_output_location_prefix (str): The output location prefix for the files.
128
129
channel_id_to_label_map (str): JSON string for the map from channel ids to their labels.
Copy file name to clipboardExpand all lines: abacusai/api_class/model.py
-2Lines changed: 0 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -487,7 +487,6 @@ class ChatLLMTrainingConfig(TrainingConfig):
487
487
json_response_instructions (str): Instructions to be followed while generating the json_response if `response_format` is set to "JSON". This can include the schema information if the schema is dynamic and its keys cannot be pre-determined.
488
488
json_response_schema (str): Specifies the JSON schema that the model should adhere to if `response_format` is set to "JSON". This should be a json-formatted string where each field of the expected schema is mapped to a dictionary containing the fields 'type', 'required' and 'description'. For example - '{"sample_field": {"type": "integer", "required": true, "description": "Sample Field"}}'
489
489
mask_pii (bool): Mask PII in the prompts and uploaded documents before sending it to the LLM.
490
-
custom_tools (List[str]): List of custom tool names to be used in the chat.
0 commit comments