We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
when I run the exampel 《Rating Movie Reviews (Scoring task)》, and change config_default.yml like this:
eval: function_name: 'ranking' num_large_errors: 4 num_boundary_predictions : 0 error_threshold: 0.5
but function_params is needded elif config.function_name == 'ranking': return utils.set_ranking_function(config.function_params) else:
how to config function_params? thanks
The text was updated successfully, but these errors were encountered:
Observe that when using the generation pipeline you should run: https://github.com/Eladlev/AutoPrompt/blob/main/run_generation_pipeline.py
After the pipeline fits the ranking function, then in these lines (52-54)
AutoPrompt/run_generation_pipeline.py
Line 52 in ab7f57e
Sorry, something went wrong.
No branches or pull requests
when I run the exampel 《Rating Movie Reviews (Scoring task)》, and change config_default.yml like this:
eval:
function_name: 'ranking'
num_large_errors: 4
num_boundary_predictions : 0
error_threshold: 0.5
but function_params is needded
elif config.function_name == 'ranking':
return utils.set_ranking_function(config.function_params)
else:
how to config function_params?
thanks
The text was updated successfully, but these errors were encountered: