-
Notifications
You must be signed in to change notification settings - Fork 895
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
[FEAT] Refactor CUSTOM_ARCHITECTURES to provide custom model #1232
base: main
Are you sure you want to change the base?
[FEAT] Refactor CUSTOM_ARCHITECTURES to provide custom model #1232
Conversation
Providing nothing will default to PreTrainedModel.
@@ -3363,6 +3363,7 @@ const TASK_ALIASES = Object.freeze({ | |||
* @param {T} task The task defining which pipeline will be returned. Currently accepted tasks are: | |||
* - `"audio-classification"`: will return a `AudioClassificationPipeline`. | |||
* - `"automatic-speech-recognition"`: will return a `AutomaticSpeechRecognitionPipeline`. | |||
* - `"background-removal"`: will return a `BackgroundRemovalPipeline`. |
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.
I noticed that we forgot to add the new pipeline to the docblock.
/** @type {CustomArchitectures} */ | ||
const CUSTOM_ARCHITECTURES = new Map([ | ||
['modnet', MODEL_FOR_IMAGE_SEGMENTATION_MAPPING_NAMES], | ||
['birefnet', MODEL_FOR_IMAGE_SEGMENTATION_MAPPING_NAMES], | ||
['isnet', MODEL_FOR_IMAGE_SEGMENTATION_MAPPING_NAMES], | ||
['ben', MODEL_FOR_IMAGE_SEGMENTATION_MAPPING_NAMES], | ||
['modnet', [MODEL_FOR_IMAGE_SEGMENTATION_MAPPING_NAMES, null]], | ||
['birefnet', [MODEL_FOR_IMAGE_SEGMENTATION_MAPPING_NAMES, null]], | ||
['isnet', [MODEL_FOR_IMAGE_SEGMENTATION_MAPPING_NAMES, null]], | ||
['ben', [MODEL_FOR_IMAGE_SEGMENTATION_MAPPING_NAMES, null]], | ||
]); | ||
for (const [name, mapping] of CUSTOM_ARCHITECTURES.entries()) { | ||
mapping.set(name, ['PreTrainedModel', PreTrainedModel]) | ||
|
||
for (let [name, [mapping, model]] of CUSTOM_ARCHITECTURES.entries()) { | ||
if (!model) { | ||
model = PreTrainedModel; | ||
} | ||
mapping.set(name, [model.constructor.name, model]); | ||
MODEL_TYPE_MAPPING.set(name, MODEL_TYPES.EncoderOnly); | ||
MODEL_CLASS_TO_NAME_MAPPING.set(PreTrainedModel, name); | ||
MODEL_NAME_TO_CLASS_MAPPING.set(name, PreTrainedModel); | ||
MODEL_CLASS_TO_NAME_MAPPING.set(model, name); | ||
MODEL_NAME_TO_CLASS_MAPPING.set(name, model); | ||
} |
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.
This refactor allows us to specify a custom model for any given architecture.
Currently I haven't changed anything, so they will all default to PreTrainedModel
.
This PR will allow for a custom model to be provided for any of the custom architectures - providing
null
will default toPreTrainedModel
.This came about when I was creating a new model; I wanted to set it up as an Image Segmentation model.
Below shows how a new architecture can be provided with a specific model, rather than
PreTrainedModel
.