-
Notifications
You must be signed in to change notification settings - Fork 449
No more text2text
#1590
New issue
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
base: main
Are you sure you want to change the base?
No more text2text
#1590
Conversation
Heads up this is pure vibe-coding _pre-LLM_, i.e. I'm not sure what I'm doing but I'm still doing it, manually (though I tried to take inspiration from #457) The goal is to address https://discuss.huggingface.co/t/no-0-models-returned-by-text2text-search-filter/161546 following huggingface-internal/moon-landing#14258
just dropping this here, anyone feel free to push on top of it x) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"Looks ok"
@@ -1,7 +1,6 @@ | |||
import type { TaskDataCustom } from "../index.js"; | |||
|
|||
const taskData: TaskDataCustom = { | |||
canonicalId: "text2text-generation", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
shouldn't we replace by
canonicalId: "text-generation",
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
well no, because since those examples were created, we added dedicated pipelines for both summarization and translation, iiuc, cc @SBrandeis
or is it not how it works? ^^'
@@ -1,7 +1,6 @@ | |||
import type { TaskDataCustom } from "../index.js"; | |||
|
|||
const taskData: TaskDataCustom = { | |||
canonicalId: "text2text-generation", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same here ?
Nice! |
Heads up this is pure vibe-coding pre-LLM, i.e. I'm not sure what I'm doing but I'm still doing it, manually (though I tried to take inspiration from #457)
The goal is to address https://discuss.huggingface.co/t/no-0-models-returned-by-text2text-search-filter/161546 following https://github.com/huggingface-internal/moon-landing/pull/14258