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
What are you trying to do and how would you want to do it differently? Is it something you currently you cannot do? Is this related to an issue/problem?
Answer: Trying to model tune for chat purpose. Currently not possible. Also related issue/problem, tuning is currently broken since using a validation file is commented out. Tuning needs to take into account validation.
Tuning works for classification and summarization tasks, but not for chat:
tune_result = self.client.tune.create(
model_id=model_id,
name=f"{model_id}-tuned",
tuning_type=TuningType.PROMPT_TUNING,
task_id="classification", # Another supported task is "summarization"
parameters=hyperparams,
training_file_ids=[training_file_id]
).result
I think it would be super useful to get the chat task supported as well. That is probably the highest use-case for other folks besides myself. Also a lot of the top performing models only support chat and generation like mistralai/mixtral-8x7b-instruct-v01 and meta-llama/llama-3-70b-instruct.
Alternatives
Can you achieve the same result doing it in an alternative way? Is the alternative considerable?
Answer: Not really, the top performing models that I'd like to use (mentioned above) do not support classification nor summarization.
Has the feature been requested before?
Answer: No
If the feature request is approved, would you be willing to submit a PR?
Answer: Yes, sure thing! I'd just need some guidance on where to get started.
The text was updated successfully, but these errors were encountered:
adfayed
changed the title
Support more Tasks for Model Tuning
Model Tuning broken and requesting to support more Tasks
Jun 11, 2024
Context
What are you trying to do and how would you want to do it differently? Is it something you currently you cannot do? Is this related to an issue/problem?
Answer: Trying to model tune for chat purpose. Currently not possible. Also related issue/problem, tuning is currently broken since using a validation file is commented out. Tuning needs to take into account validation.
Tuning works for
classification
andsummarization
tasks, but not forchat
:I think it would be super useful to get the
chat
task supported as well. That is probably the highest use-case for other folks besides myself. Also a lot of the top performing models only supportchat
andgeneration
likemistralai/mixtral-8x7b-instruct-v01
andmeta-llama/llama-3-70b-instruct
.Alternatives
Can you achieve the same result doing it in an alternative way? Is the alternative considerable?
Answer: Not really, the top performing models that I'd like to use (mentioned above) do not support classification nor summarization.
Has the feature been requested before?
Answer: No
If the feature request is approved, would you be willing to submit a PR?
Answer: Yes, sure thing! I'd just need some guidance on where to get started.
The text was updated successfully, but these errors were encountered: