MCPcopy
hub / github.com/agent0ai/agent-zero / map

Method map

webui/js/transformers@3.0.2.js:226–226  ·  view source on GitHub ↗
(e)

Source from the content-addressed store, hash-verified

224/*!*****************************!*\
225 !*** ./src/utils/tensor.js ***!
226 \*****************************/(e,t,n)=>{n.r(t),n.d(t,{Tensor:()=>o,cat:()=>y,full:()=>T,full_like:()=>k,interpolate:()=>u,interpolate_4d:()=>d,layer_norm:()=>f,matmul:()=>c,mean:()=>x,mean_pooling:()=>m,ones:()=>$,ones_like:()=>C,permute:()=>l,quantize_embeddings:()=>E,rfft:()=>p,stack:()=>b,std_mean:()=>v,topk:()=>h,zeros:()=>S,zeros_like:()=>P});var r=n(/*! ./maths.js */"./src/utils/maths.js"),a=n(/*! ../backends/onnx.js */"./src/backends/onnx.js"),s=n(/*! ../ops/registry.js */"./src/ops/registry.js");const i=Object.freeze({float32:Float32Array,float16:Uint16Array,float64:Float64Array,string:Array,int8:Int8Array,uint8:Uint8Array,int16:Int16Array,uint16:Uint16Array,int32:Int32Array,uint32:Uint32Array,int64:BigInt64Array,uint64:BigUint64Array,bool:Uint8Array});class o{get dims(){return this.ort_tensor.dims}set dims(e){this.ort_tensor.dims=e}get type(){return this.ort_tensor.type}get data(){return this.ort_tensor.data}get size(){return this.ort_tensor.size}get location(){return this.ort_tensor.location}ort_tensor;constructor(...e){return(0,a.isONNXTensor)(e[0])?this.ort_tensor=e[0]:this.ort_tensor=new a.Tensor(e[0],e[1],e[2]),new Proxy(this,{get:(e,t)=>{if("string"==typeof t){let n=Number(t);if(Number.isInteger(n))return e._getitem(n)}return e[t]},set:(e,t,n)=>e[t]=n})}dispose(){this.ort_tensor.dispose()}*[Symbol.iterator](){const[e,...t]=this.dims;if(t.length>0){const n=t.reduce(((e,t)=>e*t));for(let r=0;r<e;++r)yield this._subarray(r,n,t)}else yield*this.data}_getitem(e){const[t,...n]=this.dims;if(e=w(e,t),n.length>0){const t=n.reduce(((e,t)=>e*t));return this._subarray(e,t,n)}return new o(this.type,[this.data[e]],n)}indexOf(e){const t=this.data;for(let n=0;n<t.length;++n)if(t[n]==e)return n;return-1}_subarray(e,t,n){const r=e*t,a=(e+1)*t,s="subarray"in this.data?this.data.subarray(r,a):this.data.slice(r,a);return new o(this.type,s,n)}item(){const e=this.data;if(1!==e.length)throw new Error(`a Tensor with ${e.length} elements cannot be converted to Scalar`);return e[0]}tolist(){return function(e,t){const n=e.length,r=t.reduce(((e,t)=>e*t));if(n!==r)throw Error(`cannot reshape array of size ${n} into shape (${t})`);let a=e;for(let e=t.length-1;e>=0;e--)a=a.reduce(((n,r)=>{let a=n[n.length-1];return a.length<t[e]?a.push(r):n.push([r]),n}),[[]]);return a[0]}(this.data,this.dims)}sigmoid(){return this.clone().sigmoid_()}sigmoid_(){const e=this.data;for(let t=0;t<e.length;++t)e[t]=1/(1+Math.exp(-e[t]));return this}map(e){return this.clone().map_(e)}map_(e){const t=this.data;for(let n=0;n<t.length;++n)t[n]=e(t[n],n,t);return this}mul(e){return this.clone().mul_(e)}mul_(e){const t=this.data;for(let n=0;n<t.length;++n)t[n]*=e;return this}div(e){return this.clone().div_(e)}div_(e){const t=this.data;for(let n=0;n<t.length;++n)t[n]/=e;return this}add(e){return this.clone().add_(e)}add_(e){const t=this.data;for(let n=0;n<t.length;++n)t[n]+=e;return this}sub(e){return this.clone().sub_(e)}sub_(e){const t=this.data;for(let n=0;n<t.length;++n)t[n]-=e;return this}clone(){return new o(this.type,this.data.slice(),this.dims.slice())}slice(...e){const t=[],n=[];for(let r=0;r<this.dims.length;++r){let a=e[r];if(null==a)n.push([0,this.dims[r]]),t.push(this.dims[r]);else if("number"==typeof a)a=w(a,this.dims[r],r),n.push([a,a+1]);else{if(!Array.isArray(a)||2!==a.length)throw new Error(`Invalid slice: ${a}`);{let[e,s]=a;if(e=null===e?0:w(e,this.dims[r],r,!1),s=null===s?this.dims[r]:w(s,this.dims[r],r,!1),e>s)throw new Error(`Invalid slice: ${a}`);const i=[Math.max(e,0),Math.min(s,this.dims[r])];n.push(i),t.push(i[1]-i[0])}}}const r=n.map((([e,t])=>t-e)),a=r.reduce(((e,t)=>e*t)),s=this.data,i=new s.constructor(a),l=this.stride();for(let e=0;e<a;++e){let t=0;for(let a=r.length-1,s=e;a>=0;--a){const e=r[a];t+=(s%e+n[a][0])*l[a],s=Math.floor(s/e)}i[e]=s[t]}return new o(this.type,i,t)}permute(...e){return l(this,e)}transpose(...e){return this.permute(...e)}sum(e=null,t=!1){return this.norm(1,e,t)}norm(e="fro",t=null,n=!1){if("fro"===e)e=2;else if("string"==typeof e)throw Error(`Unsupported norm: ${e}`);const r=this.data;if(null===t){let t=r.reduce(((t,n)=>t+n**e),0)**(1/e);return new o(this.type,[t],[])}t=w(t,this.dims.length);const a=this.dims.slice();a[t]=1;const s=new r.constructor(r.length/this.dims[t]);for(let n=0;n<r.length;++n){let i=0;for(let e=this.dims.length-1,r=n,s=1;e>=0;--e){const n=this.dims[e];if(e!==t){i+=r%n*s,s*=a[e]}r=Math.floor(r/n)}s[i]+=r[n]**e}if(1!==e)for(let t=0;t<s.length;++t)s[t]=s[t]**(1/e);return n||a.splice(t,1),new o(this.type,s,a)}normalize_(e=2,t=1){t=w(t,this.dims.length);const n=this.norm(e,t,!0),r=this.data,a=n.data;for(let e=0;e<r.length;++e){let n=0;for(let r=this.dims.length-1,a=e,s=1;r>=0;--r){const e=this.dims[r];if(r!==t){n+=a%e*s,s*=this.dims[r]}a=Math.floor(a/e)}r[e]/=a[n]}return this}normalize(e=2,t=1){return this.clone().normalize_(e,t)}stride(){return function(e){const t=new Array(e.length);for(let n=e.length-1,r=1;n>=0;--n)t[n]=r,r*=e[n];return t}(this.dims)}squeeze(e=null){return new o(this.type,this.data,g(this.dims,e))}squeeze_(e=null){return this.dims=g(this.dims,e),this}unsqueeze(e=null){return new o(this.type,this.data,_(this.dims,e))}unsqueeze_(e=null){return this.dims=_(this.dims,e),this}flatten_(e=0,t=-1){t=(t+this.dims.length)%this.dims.length;let n=this.dims.slice(0,e),r=this.dims.slice(e,t+1),a=this.dims.slice(t+1);return this.dims=[...n,r.reduce(((e,t)=>e*t),1),...a],this}flatten(e=0,t=-1){return this.clone().flatten_(e,t)}view(...e){let t=-1;for(let n=0;n<e.length;++n)if(-1===e[n]){if(-1!==t)throw new Error("Only one dimension can be inferred");t=n}const n=this.data;if(-1!==t){const r=e.reduce(((e,n,r)=>r!==t?e*n:e),1);e[t]=n.length/r}return new o(this.type,n,e)}neg_(){const e=this.data;for(let t=0;t<e.length;++t)e[t]=-e[t];return this}neg(){return this.clone().neg_()}clamp_(e,t){const n=this.data;for(let r=0;r<n.length;++r)n[r]=Math.min(Math.max(n[r],e),t);return this}clamp(e,t){return this.clone().clamp_(e,t)}round_(){const e=this.data;for(let t=0;t<e.length;++t)e[t]=Math.round(e[t]);return this}round(){return this.clone().round_()}mean(e=null,t=!1){return x(this,e,t)}to(e){if(this.type===e)return this;if(!i.hasOwnProperty(e))throw new Error(`Unsupported type: ${e}`);return new o(e,i[e].from(this.data),this.dims)}}function l(e,t){const[n,a]=(0,r.permute_data)(e.data,e.dims,t);return new o(e.type,n,a)}function u(e,[t,n],a="bilinear",s=!1){const i=e.dims.at(-3)??1,l=e.dims.at(-2),u=e.dims.at(-1);let d=(0,r.interpolate_data)(e.data,[i,l,u],[t,n],a,s);return new o(e.type,d,[i,t,n])}async function d(e,{size:t=null,mode:n="bilinear"}={}){if(4!==e.dims.length)throw new Error("`interpolate_4d` currently only supports 4D input.");if(!t)throw new Error("`interpolate_4d` requires a `size` argument.");let r,a;if(2===t.length)r=[...e.dims.slice(0,2),...t];else if(3===t.length)r=[e.dims[0],...t];else{if(4!==t.length)throw new Error("`size` must be of length 2, 3, or 4.");r=t}if("bilinear"===n)a=await s.TensorOpRegistry.bilinear_interpolate_4d;else{if("bicubic"!==n)throw new Error(`Unsupported mode: ${n}`);a=await s.TensorOpRegistry.bicubic_interpolate_4d}const i=new o("int64",new BigInt64Array(r.map(BigInt)),[r.length]);return await a({x:e,s:i})}async function c(e,t){const n=await s.TensorOpRegistry.matmul;return await n({a:e,b:t})}async function p(e,t){const n=await s.TensorOpRegistry.rfft;return await n({x:e,a:t})}async function h(e,t){const n=await s.TensorOpRegistry.top_k;return t=null===t?e.dims.at(-1):Math.min(t,e.dims.at(-1)),await n({x:e,k:new o("int64",[BigInt(t)],[1])})}function m(e,t){const n=e.data,r=t.data,a=[e.dims[0],e.dims[2]],s=new n.constructor(a[0]*a[1]),[i,l,u]=e.dims;let d=0;for(let e=0;e<i;++e){const t=e*u*l;for(let a=0;a<u;++a){let i=0,o=0;const c=e*l,p=t+a;for(let e=0;e<l;++e){const t=Number(r[c+e]);o+=t,i+=n[p+e*u]*t}const h=i/o;s[d++]=h}}return new o(e.type,s,a)}function f(e,t,{eps:n=1e-5}={}){if(2!==e.dims.length)throw new Error("`layer_norm` currently only supports 2D input.");const[r,a]=e.dims;if(1!==t.length&&t[0]!==a)throw new Error("`normalized_shape` must be a 1D array with shape `[input.dims[1]]`.");const[s,i]=v(e,1,0,!0),l=s.data,u=i.data,d=e.data,c=new d.constructor(d.length);for(let e=0;e<r;++e){const t=e*a;for(let r=0;r<a;++r){const a=t+r;c[a]=(d[a]-u[e])/(l[e]+n)}}return new o(e.type,c,e.dims)}function g(e,t){return e=e.slice(),null===t?e=e.filter((e=>1!==e)):"number"==typeof t?1===e[t]&&e.splice(t,1):Array.isArray(t)&&(e=e.filter(((e,n)=>1!==e||!t.includes(n)))),e}function _(e,t){return t=w(t,e.length+1),(e=e.slice()).splice(t,0,1),e}function w(e,t,n=null,r=!0){if(r&&(e<-t||e>=t))throw new Error(`IndexError: index ${e} is out of bounds for dimension${null===n?"":" "+n} with size ${t}`);return e<0&&(e=(e%t+t)%t),e}function y(e,t=0){t=w(t,e[0].dims.length);const n=e[0].dims.slice();n[t]=e.reduce(((e,n)=>e+n.dims[t]),0);const r=n.reduce(((e,t)=>e*t),1),a=new e[0].data.constructor(r),s=e[0].type;if(0===t){let t=0;for(const n of e){const e=n.data;a.set(e,t),t+=e.length}}else{let r=0;for(let s=0;s<e.length;++s){const{data:i,dims:o}=e[s];for(let e=0;e<i.length;++e){let s=0;for(let a=o.length-1,i=e,l=1;a>=0;--a){const e=o[a];let u=i%e;a===t&&(u+=r),s+=u*l,l*=n[a],i=Math.floor(i/e)}a[s]=i[e]}r+=o[t]}}return new o(s,a,n)}function b(e,t=0){return y(e.map((e=>e.unsqueeze(t))),t)}function v(e,t=null,n=1,r=!1){const a=e.data,s=e.dims;if(null===t){const t=a.reduce(((e,t)=>e+t),0)/a.length,r=Math.sqrt(a.reduce(((e,n)=>e+(n-t)**2),0)/(a.length-n)),s=new o(e.type,[t],[]);return[new o(e.type,[r],[]),s]}const i=x(e,t=w(t,s.length),r),l=i.data,u=s.slice();u[t]=1;const d=new a.constructor(a.length/s[t]);for(let e=0;e<a.length;++e){let n=0;for(let r=s.length-1,a=e,i=1;r>=0;--r){const e=s[r];if(r!==t){n+=a%e*i,i*=u[r]}a=Math.floor(a/e)}d[n]+=(a[e]-l[n])**2}for(let e=0;e<d.length;++e)d[e]=Math.sqrt(d[e]/(s[t]-n));r||u.splice(t,1);return[new o(e.type,d,u),i]}function x(e,t=null,n=!1){const r=e.data;if(null===t){const t=r.reduce(((e,t)=>e+t),0);return new o(e.type,[t/r.length],[])}const a=e.dims;t=w(t,a.length);const s=a.slice();s[t]=1;const i=new r.constructor(r.length/a[t]);for(let e=0;e<r.length;++e){let n=0;for(let r=a.length-1,i=e,o=1;r>=0;--r){const e=a[r];if(r!==t){n+=i%e*o,o*=s[r]}i=Math.floor(i/e)}i[n]+=r[e]}if(1!==a[t])for(let e=0;e<i.length;++e)i[e]=i[e]/a[t];return n||s.splice(t,1),new o(e.type,i,s)}function M(e,t,n,r){const a=e.reduce(((e,t)=>e*t),1);return new o(n,new r(a).fill(t),e)}function T(e,t){let n,r;if("number"==typeof t)n="float32",r=Float32Array;else{if("bigint"!=typeof t)throw new Error("Unsupported data type: "+typeof t);n="int64",r=BigInt64Array}return M(e,t,n,r)}function k(e,t){return T(e.dims,t)}function $(e){return M(e,1n,"int64",BigInt64Array)}function C(e){return $(e.dims)}function S(e){return M(e,0n,"int64",BigInt64Array)}function P(e){return S(e.dims)}function E(e,t){if(2!==e.dims.length)throw new Error("The tensor must have 2 dimensions");if(e.dims.at(-1)%8!=0)throw new Error("The last dimension of the tensor must be a multiple of 8");if(!["binary","ubinary"].includes(t))throw new Error("The precision must be either 'binary' or 'ubinary'");const n="binary"===t,r=n?"int8":"uint8",a=n?Int8Array:Uint8Array,s=e.data,i=new a(s.length/8);for(let e=0;e<s.length;++e){const t=s[e]>0?1:0,r=Math.floor(e/8),a=e%8;i[r]|=t<<7-a,n&&0===a&&(i[r]-=128)}return new o(r,i,[e.dims[0],e.dims[1]/8])}}},r={};function a(e){var t=r[e];if(void 0!==t)return t.exports;var s=r[e]={exports:{}};return n[e](s,s.exports,a),s.exports}a.m=n,t=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,a.t=function(n,r){if(1&r&&(n=this(n)),8&r)return n;if("object"==typeof n&&n){if(4&r&&n.__esModule)return n;if(16&r&&"function"==typeof n.then)return n}var s=Object.create(null);a.r(s);var i={};e=e||[null,t({}),t([]),t(t)];for(var o=2&r&&n;"object"==typeof o&&!~e.indexOf(o);o=t(o))Object.getOwnPropertyNames(o).forEach((e=>i[e]=()=>n[e]));return i.default=()=>n,a.d(s,i),s},a.d=(e,t)=>{for(var n in t)a.o(t,n)&&!a.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},a.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),a.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{var e;if("string"==typeof import.meta.url&&(e=import.meta.url),!e)throw new Error("Automatic publicPath is not supported in this browser");e=e.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),a.p=e})(),a.b=new URL("./",import.meta.url);var s={};
227/*!*****************************!*\
228 !*** ./src/transformers.js ***!
229 \*****************************/a.r(s),a.d(s,{ASTFeatureExtractor:()=>d.ASTFeatureExtractor,ASTForAudioClassification:()=>l.ASTForAudioClassification,ASTModel:()=>l.ASTModel,ASTPreTrainedModel:()=>l.ASTPreTrainedModel,AlbertForMaskedLM:()=>l.AlbertForMaskedLM,AlbertForQuestionAnswering:()=>l.AlbertForQuestionAnswering,AlbertForSequenceClassification:()=>l.AlbertForSequenceClassification,AlbertModel:()=>l.AlbertModel,AlbertPreTrainedModel:()=>l.AlbertPreTrainedModel,AlbertTokenizer:()=>u.AlbertTokenizer,AudioClassificationPipeline:()=>o.AudioClassificationPipeline,AutoConfig:()=>c.AutoConfig,AutoModel:()=>l.AutoModel,AutoModelForAudioClassification:()=>l.AutoModelForAudioClassification,AutoModelForAudioFrameClassification:()=>l.AutoModelForAudioFrameClassification,AutoModelForCTC:()=>l.AutoModelForCTC,AutoModelForCausalLM:()=>l.AutoModelForCausalLM,AutoModelForDepthEstimation:()=>l.AutoModelForDepthEstimation,AutoModelForDocumentQuestionAnswering:()=>l.AutoModelForDocumentQuestionAnswering,AutoModelForImageClassification:()=>l.AutoModelForImageClassification,AutoModelForImageFeatureExtraction:()=>l.AutoModelForImageFeatureExtraction,AutoModelForImageMatting:()=>l.AutoModelForImageMatting,AutoModelForImageSegmentation:()=>l.AutoModelForImageSegmentation,AutoModelForImageToImage:()=>l.AutoModelForImageToImage,AutoModelForMaskGeneration:()=>l.AutoModelForMaskGeneration,AutoModelForMaskedLM:()=>l.AutoModelForMaskedLM,AutoModelForNormalEstimation:()=>l.AutoModelForNormalEstimation,AutoModelForObjectDetection:()=>l.AutoModelForObjectDetection,AutoModelForQuestionAnswering:()=>l.AutoModelForQuestionAnswering,AutoModelForSemanticSegmentation:()=>l.AutoModelForSemanticSegmentation,AutoModelForSeq2SeqLM:()=>l.AutoModelForSeq2SeqLM,AutoModelForSequenceClassification:()=>l.AutoModelForSequenceClassification,AutoModelForSpeechSeq2Seq:()=>l.AutoModelForSpeechSeq2Seq,AutoModelForTextToSpectrogram:()=>l.AutoModelForTextToSpectrogram,AutoModelForTextToWaveform:()=>l.AutoModelForTextToWaveform,AutoModelForTokenClassification:()=>l.AutoModelForTokenClassification,AutoModelForUniversalSegmentation:()=>l.AutoModelForUniversalSegmentation,AutoModelForVision2Seq:()=>l.AutoModelForVision2Seq,AutoModelForXVector:()=>l.AutoModelForXVector,AutoModelForZeroShotObjectDetection:()=>l.AutoModelForZeroShotObjectDetection,AutoProcessor:()=>d.AutoProcessor,AutoTokenizer:()=>u.AutoTokenizer,AutomaticSpeechRecognitionPipeline:()=>o.AutomaticSpeechRecognitionPipeline,BartForConditionalGeneration:()=>l.BartForConditionalGeneration,BartForSequenceClassification:()=>l.BartForSequenceClassification,BartModel:()=>l.BartModel,BartPretrainedModel:()=>l.BartPretrainedModel,BartTokenizer:()=>u.BartTokenizer,BaseModelOutput:()=>l.BaseModelOutput,BaseStreamer:()=>g.BaseStreamer,BeitFeatureExtractor:()=>d.BeitFeatureExtractor,BeitForImageClassification:()=>l.BeitForImageClassification,BeitModel:()=>l.BeitModel,BeitPreTrainedModel:()=>l.BeitPreTrainedModel,BertForMaskedLM:()=>l.BertForMaskedLM,BertForQuestionAnswering:()=>l.BertForQuestionAnswering,BertForSequenceClassification:()=>l.BertForSequenceClassification,BertForTokenClassification:()=>l.BertForTokenClassification,BertModel:()=>l.BertModel,BertPreTrainedModel:()=>l.BertPreTrainedModel,BertTokenizer:()=>u.BertTokenizer,BitImageProcessor:()=>d.BitImageProcessor,BlenderbotForConditionalGeneration:()=>l.BlenderbotForConditionalGeneration,BlenderbotModel:()=>l.BlenderbotModel,BlenderbotPreTrainedModel:()=>l.BlenderbotPreTrainedModel,BlenderbotSmallForConditionalGeneration:()=>l.BlenderbotSmallForConditionalGeneration,BlenderbotSmallModel:()=>l.BlenderbotSmallModel,BlenderbotSmallPreTrainedModel:()=>l.BlenderbotSmallPreTrainedModel,BlenderbotSmallTokenizer:()=>u.BlenderbotSmallTokenizer,BlenderbotTokenizer:()=>u.BlenderbotTokenizer,BloomForCausalLM:()=>l.BloomForCausalLM,BloomModel:()=>l.BloomModel,BloomPreTrainedModel:()=>l.BloomPreTrainedModel,BloomTokenizer:()=>u.BloomTokenizer,CLIPFeatureExtractor:()=>d.CLIPFeatureExtractor,CLIPImageProcessor:()=>d.CLIPImageProcessor,CLIPModel:()=>l.CLIPModel,CLIPPreTrainedModel:()=>l.CLIPPreTrainedModel,CLIPSegForImageSegmentation:()=>l.CLIPSegForImageSegmentation,CLIPSegModel:()=>l.CLIPSegModel,CLIPSegPreTrainedModel:()=>l.CLIPSegPreTrainedModel,CLIPTextModel:()=>l.CLIPTextModel,CLIPTextModelWithProjection:()=>l.CLIPTextModelWithProjection,CLIPTokenizer:()=>u.CLIPTokenizer,CLIPVisionModel:()=>l.CLIPVisionModel,CLIPVisionModelWithProjection:()=>l.CLIPVisionModelWithProjection,CamembertForMaskedLM:()=>l.CamembertForMaskedLM,CamembertForQuestionAnswering:()=>l.CamembertForQuestionAnswering,CamembertForSequenceClassification:()=>l.CamembertForSequenceClassification,CamembertForTokenClassification:()=>l.CamembertForTokenClassification,CamembertModel:()=>l.CamembertModel,CamembertPreTrainedModel:()=>l.CamembertPreTrainedModel,CamembertTokenizer:()=>u.CamembertTokenizer,CausalLMOutput:()=>l.CausalLMOutput,CausalLMOutputWithPast:()=>l.CausalLMOutputWithPast,ChineseCLIPFeatureExtractor:()=>d.ChineseCLIPFeatureExtractor,ChineseCLIPModel:()=>l.ChineseCLIPModel,ChineseCLIPPreTrainedModel:()=>l.ChineseCLIPPreTrainedModel,ClapAudioModelWithProjection:()=>l.ClapAudioModelWithProjection,ClapFeatureExtractor:()=>d.ClapFeatureExtractor,ClapModel:()=>l.ClapModel,ClapPreTrainedModel:()=>l.ClapPreTrainedModel,ClapTextModelWithProjection:()=>l.ClapTextModelWithProjection,CodeGenForCausalLM:()=>l.CodeGenForCausalLM,CodeGenModel:()=>l.CodeGenModel,CodeGenPreTrainedModel:()=>l.CodeGenPreTrainedModel,CodeGenTokenizer:()=>u.CodeGenTokenizer,CodeLlamaTokenizer:()=>u.CodeLlamaTokenizer,CohereForCausalLM:()=>l.CohereForCausalLM,CohereModel:()=>l.CohereModel,CoherePreTrainedModel:()=>l.CoherePreTrainedModel,CohereTokenizer:()=>u.CohereTokenizer,ConvBertForMaskedLM:()=>l.ConvBertForMaskedLM,ConvBertForQuestionAnswering:()=>l.ConvBertForQuestionAnswering,ConvBertForSequenceClassification:()=>l.ConvBertForSequenceClassification,ConvBertForTokenClassification:()=>l.ConvBertForTokenClassification,ConvBertModel:()=>l.ConvBertModel,ConvBertPreTrainedModel:()=>l.ConvBertPreTrainedModel,ConvBertTokenizer:()=>u.ConvBertTokenizer,ConvNextFeatureExtractor:()=>d.ConvNextFeatureExtractor,ConvNextForImageClassification:()=>l.ConvNextForImageClassification,ConvNextImageProcessor:()=>d.ConvNextImageProcessor,ConvNextModel:()=>l.ConvNextModel,ConvNextPreTrainedModel:()=>l.ConvNextPreTrainedModel,ConvNextV2ForImageClassification:()=>l.ConvNextV2ForImageClassification,ConvNextV2Model:()=>l.ConvNextV2Model,ConvNextV2PreTrainedModel:()=>l.ConvNextV2PreTrainedModel,DPTFeatureExtractor:()=>d.DPTFeatureExtractor,DPTForDepthEstimation:()=>l.DPTForDepthEstimation,DPTImageProcessor:()=>d.DPTImageProcessor,DPTModel:()=>l.DPTModel,DPTPreTrainedModel:()=>l.DPTPreTrainedModel,DebertaForMaskedLM:()=>l.DebertaForMaskedLM,DebertaForQuestionAnswering:()=>l.DebertaForQuestionAnswering,DebertaForSequenceClassification:()=>l.DebertaForSequenceClassification,DebertaForTokenClassification:()=>l.DebertaForTokenClassification,DebertaModel:()=>l.DebertaModel,DebertaPreTrainedModel:()=>l.DebertaPreTrainedModel,DebertaTokenizer:()=>u.DebertaTokenizer,DebertaV2ForMaskedLM:()=>l.DebertaV2ForMaskedLM,DebertaV2ForQuestionAnswering:()=>l.DebertaV2ForQuestionAnswering,DebertaV2ForSequenceClassification:()=>l.DebertaV2ForSequenceClassification,DebertaV2ForTokenClassification:()=>l.DebertaV2ForTokenClassification,DebertaV2Model:()=>l.DebertaV2Model,DebertaV2PreTrainedModel:()=>l.DebertaV2PreTrainedModel,DebertaV2Tokenizer:()=>u.DebertaV2Tokenizer,DecisionTransformerModel:()=>l.DecisionTransformerModel,DecisionTransformerPreTrainedModel:()=>l.DecisionTransformerPreTrainedModel,DeiTFeatureExtractor:()=>d.DeiTFeatureExtractor,DeiTForImageClassification:()=>l.DeiTForImageClassification,DeiTModel:()=>l.DeiTModel,DeiTPreTrainedModel:()=>l.DeiTPreTrainedModel,DepthAnythingForDepthEstimation:()=>l.DepthAnythingForDepthEstimation,DepthAnythingPreTrainedModel:()=>l.DepthAnythingPreTrainedModel,DepthEstimationPipeline:()=>o.DepthEstimationPipeline,DepthProForDepthEstimation:()=>l.DepthProForDepthEstimation,DepthProPreTrainedModel:()=>l.DepthProPreTrainedModel,DetrFeatureExtractor:()=>d.DetrFeatureExtractor,DetrForObjectDetection:()=>l.DetrForObjectDetection,DetrForSegmentation:()=>l.DetrForSegmentation,DetrModel:()=>l.DetrModel,DetrObjectDetectionOutput:()=>l.DetrObjectDetectionOutput,DetrPreTrainedModel:()=>l.DetrPreTrainedModel,DetrSegmentationOutput:()=>l.DetrSegmentationOutput,Dinov2ForImageClassification:()=>l.Dinov2ForImageClassification,Dinov2Model:()=>l.Dinov2Model,Dinov2PreTrainedModel:()=>l.Dinov2PreTrainedModel,DistilBertForMaskedLM:()=>l.DistilBertForMaskedLM,DistilBertForQuestionAnswering:()=>l.DistilBertForQuestionAnswering,DistilBertForSequenceClassification:()=>l.DistilBertForSequenceClassification,DistilBertForTokenClassification:()=>l.DistilBertForTokenClassification,DistilBertModel:()=>l.DistilBertModel,DistilBertPreTrainedModel:()=>l.DistilBertPreTrainedModel,DistilBertTokenizer:()=>u.DistilBertTokenizer,DocumentQuestionAnsweringPipeline:()=>o.DocumentQuestionAnsweringPipeline,DonutFeatureExtractor:()=>d.DonutFeatureExtractor,DonutImageProcessor:()=>d.DonutImageProcessor,DonutSwinModel:()=>l.DonutSwinModel,DonutSwinPreTrainedModel:()=>l.DonutSwinPreTrainedModel,EfficientNetForImageClassification:()=>l.EfficientNetForImageClassification,EfficientNetImageProcessor:()=>d.EfficientNetImageProcessor,EfficientNetModel:()=>l.EfficientNetModel,EfficientNetPreTrainedModel:()=>l.EfficientNetPreTrainedModel,ElectraForMaskedLM:()=>l.ElectraForMaskedLM,ElectraForQuestionAnswering:()=>l.ElectraForQuestionAnswering,ElectraForSequenceClassification:()=>l.ElectraForSequenceClassification,ElectraForTokenClassification:()=>l.ElectraForTokenClassification,ElectraModel:()=>l.ElectraModel,ElectraPreTrainedModel:()=>l.ElectraPreTrainedModel,ElectraTokenizer:()=>u.ElectraTokenizer,EosTokenCriteria:()=>_.EosTokenCriteria,EsmForMaskedLM:()=>l.EsmForMaskedLM,EsmForSequenceClassification:()=>l.EsmForSequenceClassification,EsmForTokenClassification:()=>l.EsmForTokenClassification,EsmModel:()=>l.EsmModel,EsmPreTrainedModel:()=>l.EsmPreTrainedModel,EsmTokenizer:()=>u.EsmTokenizer,FFT:()=>f.FFT,FalconForCausalLM:()=>l.FalconForCausalLM,FalconModel:()=>l.FalconModel,FalconPreTrainedModel:()=>l.FalconPreTrainedModel,FalconTokenizer:()=>u.FalconTokenizer,FastViTForImageClassification:()=>l.FastViTForImageClassification,FastViTModel:()=>l.FastViTModel,FastViTPreTrainedModel:()=>l.FastViTPreTrainedModel,FeatureExtractionPipeline:()=>o.FeatureExtractionPipeline,FeatureExtractor:()=>d.FeatureExtractor,FillMaskPipeline:()=>o.FillMaskPipeline,Florence2ForConditionalGeneration:()=>l.Florence2ForConditionalGeneration,Florence2PreTrainedModel:()=>l.Florence2PreTrainedModel,Florence2Processor:()=>d.Florence2Processor,GLPNFeatureExtractor:()=>d.GLPNFeatureExtractor,GLPNForDepthEstimation:()=>l.GLPNForDepthEstimation,GLPNModel:()=>l.GLPNModel,GLPNPreTrainedModel:()=>l.GLPNPreTrainedModel,GPT2LMHeadModel:()=>l.GPT2LMHeadModel,GPT2Model:()=>l.GPT2Model,GPT2PreTrainedModel:()=>l.GPT2PreTrainedModel,GPT2Tokenizer:()=>u.GPT2Tokenizer,GPTBigCodeForCausalLM:()=>l.GPTBigCodeForCausalLM,GPTBigCodeModel:()=>l.GPTBigCodeModel,GPTBigCodePreTrainedModel:()=>l.GPTBigCodePreTrainedModel,GPTJForCausalLM:()=>l.GPTJForCausalLM,GPTJModel:()=>l.GPTJModel,GPTJPreTrainedModel:()=>l.GPTJPreTrainedModel,GPTNeoForCausalLM:()=>l.GPTNeoForCausalLM,GPTNeoModel:()=>l.GPTNeoModel,GPTNeoPreTrainedModel:()=>l.GPTNeoPreTrainedModel,GPTNeoXForCausalLM:()=>l.GPTNeoXForCausalLM,GPTNeoXModel:()=>l.GPTNeoXModel,GPTNeoXPreTrainedModel:()=>l.GPTNeoXPreTrainedModel,GPTNeoXTokenizer:()=>u.GPTNeoXTokenizer,Gemma2ForCausalLM:()=>l.Gemma2ForCausalLM,Gemma2Model:()=>l.Gemma2Model,Gemma2PreTrainedModel:()=>l.Gemma2PreTrainedModel,GemmaForCausalLM:()=>l.GemmaForCausalLM,GemmaModel:()=>l.GemmaModel,GemmaPreTrainedModel:()=>l.GemmaPreTrainedModel,GemmaTokenizer:()=>u.GemmaTokenizer,GraniteForCausalLM:()=>l.GraniteForCausalLM,GraniteModel:()=>l.GraniteModel,GranitePreTrainedModel:()=>l.GranitePreTrainedModel,Grok1Tokenizer:()=>u.Grok1Tokenizer,GroupViTModel:()=>l.GroupViTModel,GroupViTPreTrainedModel:()=>l.GroupViTPreTrainedModel,HerbertTokenizer:()=>u.HerbertTokenizer,HieraForImageClassification:()=>l.HieraForImageClassification,HieraModel:()=>l.HieraModel,HieraPreTrainedModel:()=>l.HieraPreTrainedModel,HubertForCTC:()=>l.HubertForCTC,HubertForSequenceClassification:()=>l.HubertForSequenceClassification,HubertModel:()=>l.HubertModel,HubertPreTrainedModel:()=>l.HubertPreTrainedModel,ImageClassificationPipeline:()=>o.ImageClassificationPipeline,ImageFeatureExtractionPipeline:()=>o.ImageFeatureExtractionPipeline,ImageFeatureExtractor:()=>d.ImageFeatureExtractor,ImageMattingOutput:()=>l.ImageMattingOutput,ImageSegmentationPipeline:()=>o.ImageSegmentationPipeline,ImageToImagePipeline:()=>o.ImageToImagePipeline,ImageToTextPipeline:()=>o.ImageToTextPipeline,InterruptableStoppingCriteria:()=>_.InterruptableStoppingCriteria,JAISLMHeadModel:()=>l.JAISLMHeadModel,JAISModel:()=>l.JAISModel,JAISPreTrainedModel:()=>l.JAISPreTrainedModel,LlamaForCausalLM:()=>l.LlamaForCausalLM,LlamaModel:()=>l.LlamaModel,LlamaPreTrainedModel:()=>l.LlamaPreTrainedModel,LlamaTokenizer:()=>u.LlamaTokenizer,LlavaForConditionalGeneration:()=>l.LlavaForConditionalGeneration,LlavaPreTrainedModel:()=>l.LlavaPreTrainedModel,LongT5ForConditionalGeneration:()=>l.LongT5ForConditionalGeneration,LongT5Model:()=>l.LongT5Model,LongT5PreTrainedModel:()=>l.LongT5PreTrainedModel,M2M100ForConditionalGeneration:()=>l.M2M100ForConditionalGeneration,M2M100Model:()=>l.M2M100Model,M2M100PreTrainedModel:()=>l.M2M100PreTrainedModel,M2M100Tokenizer:()=>u.M2M100Tokenizer,MBart50Tokenizer:()=>u.MBart50Tokenizer,MBartForCausalLM:()=>l.MBartForCausalLM,MBartForConditionalGeneration:()=>l.MBartForConditionalGeneration,MBartForSequenceClassification:()=>l.MBartForSequenceClassification,MBartModel:()=>l.MBartModel,MBartPreTrainedModel:()=>l.MBartPreTrainedModel,MBartTokenizer:()=>u.MBartTokenizer,MPNetForMaskedLM:()=>l.MPNetForMaskedLM,MPNetForQuestionAnswering:()=>l.MPNetForQuestionAnswering,MPNetForSequenceClassification:()=>l.MPNetForSequenceClassification,MPNetForTokenClassification:()=>l.MPNetForTokenClassification,MPNetModel:()=>l.MPNetModel,MPNetPreTrainedModel:()=>l.MPNetPreTrainedModel,MPNetTokenizer:()=>u.MPNetTokenizer,MT5ForConditionalGeneration:()=>l.MT5ForConditionalGeneration,MT5Model:()=>l.MT5Model,MT5PreTrainedModel:()=>l.MT5PreTrainedModel,MarianMTModel:()=>l.MarianMTModel,MarianModel:()=>l.MarianModel,MarianPreTrainedModel:()=>l.MarianPreTrainedModel,MarianTokenizer:()=>u.MarianTokenizer,MaskFormerFeatureExtractor:()=>d.MaskFormerFeatureExtractor,MaskFormerForInstanceSegmentation:()=>l.MaskFormerForInstanceSegmentation,MaskFormerModel:()=>l.MaskFormerModel,MaskFormerPreTrainedModel:()=>l.MaskFormerPreTrainedModel,MaskedLMOutput:()=>l.MaskedLMOutput,MaxLengthCriteria:()=>_.MaxLengthCriteria,MistralForCausalLM:()=>l.MistralForCausalLM,MistralModel:()=>l.MistralModel,MistralPreTrainedModel:()=>l.MistralPreTrainedModel,MobileBertForMaskedLM:()=>l.MobileBertForMaskedLM,MobileBertForQuestionAnswering:()=>l.MobileBertForQuestionAnswering,MobileBertForSequenceClassification:()=>l.MobileBertForSequenceClassification,MobileBertModel:()=>l.MobileBertModel,MobileBertPreTrainedModel:()=>l.MobileBertPreTrainedModel,MobileBertTokenizer:()=>u.MobileBertTokenizer,MobileLLMForCausalLM:()=>l.MobileLLMForCausalLM,MobileLLMModel:()=>l.MobileLLMModel,MobileLLMPreTrainedModel:()=>l.MobileLLMPreTrainedModel,MobileNetV1FeatureExtractor:()=>d.MobileNetV1FeatureExtractor,MobileNetV1ForImageClassification:()=>l.MobileNetV1ForImageClassification,MobileNetV1Model:()=>l.MobileNetV1Model,MobileNetV1PreTrainedModel:()=>l.MobileNetV1PreTrainedModel,MobileNetV2FeatureExtractor:()=>d.MobileNetV2FeatureExtractor,MobileNetV2ForImageClassification:()=>l.MobileNetV2ForImageClassification,MobileNetV2Model:()=>l.MobileNetV2Model,MobileNetV2PreTrainedModel:()=>l.MobileNetV2PreTrainedModel,MobileNetV3FeatureExtractor:()=>d.MobileNetV3FeatureExtractor,MobileNetV3ForImageClassification:()=>l.MobileNetV3ForImageClassification,MobileNetV3Model:()=>l.MobileNetV3Model,MobileNetV3PreTrainedModel:()=>l.MobileNetV3PreTrainedModel,MobileNetV4FeatureExtractor:()=>d.MobileNetV4FeatureExtractor,MobileNetV4ForImageClassification:()=>l.MobileNetV4ForImageClassification,MobileNetV4Model:()=>l.MobileNetV4Model,MobileNetV4PreTrainedModel:()=>l.MobileNetV4PreTrainedModel,MobileViTFeatureExtractor:()=>d.MobileViTFeatureExtractor,MobileViTForImageClassification:()=>l.MobileViTForImageClassification,MobileViTImageProcessor:()=>d.MobileViTImageProcessor,MobileViTModel:()=>l.MobileViTModel,MobileViTPreTrainedModel:()=>l.MobileViTPreTrainedModel,MobileViTV2ForImageClassification:()=>l.MobileViTV2ForImageClassification,MobileViTV2Model:()=>l.MobileViTV2Model,MobileViTV2PreTrainedModel:()=>l.MobileViTV2PreTrainedModel,ModelOutput:()=>l.ModelOutput,Moondream1ForConditionalGeneration:()=>l.Moondream1ForConditionalGeneration,MptForCausalLM:()=>l.MptForCausalLM,MptModel:()=>l.MptModel,MptPreTrainedModel:()=>l.MptPreTrainedModel,MusicgenForCausalLM:()=>l.MusicgenForCausalLM,MusicgenForConditionalGeneration:()=>l.MusicgenForConditionalGeneration,MusicgenModel:()=>l.MusicgenModel,MusicgenPreTrainedModel:()=>l.MusicgenPreTrainedModel,NllbTokenizer:()=>u.NllbTokenizer,NomicBertModel:()=>l.NomicBertModel,NomicBertPreTrainedModel:()=>l.NomicBertPreTrainedModel,NougatImageProcessor:()=>d.NougatImageProcessor,NougatTokenizer:()=>u.NougatTokenizer,OPTForCausalLM:()=>l.OPTForCausalLM,OPTModel:()=>l.OPTModel,OPTPreTrainedModel:()=>l.OPTPreTrainedModel,ObjectDetectionPipeline:()=>o.ObjectDetectionPipeline,OlmoForCausalLM:()=>l.OlmoForCausalLM,OlmoModel:()=>l.OlmoModel,OlmoPreTrainedModel:()=>l.OlmoPreTrainedModel,OpenELMForCausalLM:()=>l.OpenELMForCausalLM,OpenELMModel:()=>l.OpenELMModel,OpenELMPreTrainedModel:()=>l.OpenELMPreTrainedModel,OwlViTFeatureExtractor:()=>d.OwlViTFeatureExtractor,OwlViTForObjectDetection:()=>l.OwlViTForObjectDetection,OwlViTModel:()=>l.OwlViTModel,OwlViTPreTrainedModel:()=>l.OwlViTPreTrainedModel,OwlViTProcessor:()=>d.OwlViTProcessor,Owlv2ForObjectDetection:()=>l.Owlv2ForObjectDetection,Owlv2ImageProcessor:()=>d.Owlv2ImageProcessor,Owlv2Model:()=>l.Owlv2Model,Owlv2PreTrainedModel:()=>l.Owlv2PreTrainedModel,Phi3ForCausalLM:()=>l.Phi3ForCausalLM,Phi3Model:()=>l.Phi3Model,Phi3PreTrainedModel:()=>l.Phi3PreTrainedModel,PhiForCausalLM:()=>l.PhiForCausalLM,PhiModel:()=>l.PhiModel,PhiPreTrainedModel:()=>l.PhiPreTrainedModel,Pipeline:()=>o.Pipeline,PreTrainedModel:()=>l.PreTrainedModel,PreTrainedTokenizer:()=>u.PreTrainedTokenizer,PretrainedConfig:()=>c.PretrainedConfig,PretrainedMixin:()=>l.PretrainedMixin,Processor:()=>d.Processor,PvtForImageClassification:()=>l.PvtForImageClassification,PvtImageProcessor:()=>d.PvtImageProcessor,PvtModel:()=>l.PvtModel,PvtPreTrainedModel:()=>l.PvtPreTrainedModel,PyAnnoteFeatureExtractor:()=>d.PyAnnoteFeatureExtractor,PyAnnoteForAudioFrameClassification:()=>l.PyAnnoteForAudioFrameClassification,PyAnnoteModel:()=>l.PyAnnoteModel,PyAnnotePreTrainedModel:()=>l.PyAnnotePreTrainedModel,PyAnnoteProcessor:()=>d.PyAnnoteProcessor,QuestionAnsweringModelOutput:()=>l.QuestionAnsweringModelOutput,QuestionAnsweringPipeline:()=>o.QuestionAnsweringPipeline,Qwen2ForCausalLM:()=>l.Qwen2ForCausalLM,Qwen2Model:()=>l.Qwen2Model,Qwen2PreTrainedModel:()=>l.Qwen2PreTrainedModel,Qwen2Tokenizer:()=>u.Qwen2Tokenizer,RTDetrForObjectDetection:()=>l.RTDetrForObjectDetection,RTDetrImageProcessor:()=>d.RTDetrImageProcessor,RTDetrModel:()=>l.RTDetrModel,RTDetrObjectDetectionOutput:()=>l.RTDetrObjectDetectionOutput,RTDetrPreTrainedModel:()=>l.RTDetrPreTrainedModel,RawImage:()=>h.RawImage,ResNetForImageClassification:()=>l.ResNetForImageClassification,ResNetModel:()=>l.ResNetModel,ResNetPreTrainedModel:()=>l.ResNetPreTrainedModel,RoFormerForMaskedLM:()=>l.RoFormerForMaskedLM,RoFormerForQuestionAnswering:()=>l.RoFormerForQuestionAnswering,RoFormerForSequenceClassification:()=>l.RoFormerForSequenceClassification,RoFormerForTokenClassification:()=>l.RoFormerForTokenClassification,RoFormerModel:()=>l.RoFormerModel,RoFormerPreTrainedModel:()=>l.RoFormerPreTrainedModel,RoFormerTokenizer:()=>u.RoFormerTokenizer,RobertaForMaskedLM:()=>l.RobertaForMaskedLM,RobertaForQuestionAnswering:()=>l.RobertaForQuestionAnswering,RobertaForSequenceClassification:()=>l.RobertaForSequenceClassification,RobertaForTokenClassification:()=>l.RobertaForTokenClassification,RobertaModel:()=>l.RobertaModel,RobertaPreTrainedModel:()=>l.RobertaPreTrainedModel,RobertaTokenizer:()=>u.RobertaTokenizer,SamImageProcessor:()=>d.SamImageProcessor,SamImageSegmentationOutput:()=>l.SamImageSegmentationOutput,SamModel:()=>l.SamModel,SamPreTrainedModel:()=>l.SamPreTrainedModel,SamProcessor:()=>d.SamProcessor,SapiensFeatureExtractor:()=>d.SapiensFeatureExtractor,SapiensForDepthEstimation:()=>l.SapiensForDepthEstimation,SapiensForNormalEstimation:()=>l.SapiensForNormalEstimation,SapiensForSemanticSegmentation:()=>l.SapiensForSemanticSegmentation,SapiensPreTrainedModel:()=>l.SapiensPreTrainedModel,SeamlessM4TFeatureExtractor:()=>d.SeamlessM4TFeatureExtractor,SegformerFeatureExtractor:()=>d.SegformerFeatureExtractor,SegformerForImageClassification:()=>l.SegformerForImageClassification,SegformerForSemanticSegmentation:()=>l.SegformerForSemanticSegmentation,SegformerModel:()=>l.SegformerModel,SegformerPreTrainedModel:()=>l.SegformerPreTrainedModel,Seq2SeqLMOutput:()=>l.Seq2SeqLMOutput,SequenceClassifierOutput:()=>l.SequenceClassifierOutput,SiglipImageProcessor:()=>d.SiglipImageProcessor,SiglipModel:()=>l.SiglipModel,SiglipPreTrainedModel:()=>l.SiglipPreTrainedModel,SiglipTextModel:()=>l.SiglipTextModel,SiglipTokenizer:()=>u.SiglipTokenizer,SiglipVisionModel:()=>l.SiglipVisionModel,SpeechT5FeatureExtractor:()=>d.SpeechT5FeatureExtractor,SpeechT5ForSpeechToText:()=>l.SpeechT5ForSpeechToText,SpeechT5ForTextToSpeech:()=>l.SpeechT5ForTextToSpeech,SpeechT5HifiGan:()=>l.SpeechT5HifiGan,SpeechT5Model:()=>l.SpeechT5Model,SpeechT5PreTrainedModel:()=>l.SpeechT5PreTrainedModel,SpeechT5Processor:()=>d.SpeechT5Processor,SpeechT5Tokenizer:()=>u.SpeechT5Tokenizer,SqueezeBertForMaskedLM:()=>l.SqueezeBertForMaskedLM,SqueezeBertForQuestionAnswering:()=>l.SqueezeBertForQuestionAnswering,SqueezeBertForSequenceClassification:()=>l.SqueezeBertForSequenceClassification,SqueezeBertModel:()=>l.SqueezeBertModel,SqueezeBertPreTrainedModel:()=>l.SqueezeBertPreTrainedModel,SqueezeBertTokenizer:()=>u.SqueezeBertTokenizer,StableLmForCausalLM:()=>l.StableLmForCausalLM,StableLmModel:()=>l.StableLmModel,StableLmPreTrainedModel:()=>l.StableLmPreTrainedModel,Starcoder2ForCausalLM:()=>l.Starcoder2ForCausalLM,Starcoder2Model:()=>l.Starcoder2Model,Starcoder2PreTrainedModel:()=>l.Starcoder2PreTrainedModel,StoppingCriteria:()=>_.StoppingCriteria,StoppingCriteriaList:()=>_.StoppingCriteriaList,SummarizationPipeline:()=>o.SummarizationPipeline,Swin2SRForImageSuperResolution:()=>l.Swin2SRForImageSuperResolution,Swin2SRImageProcessor:()=>d.Swin2SRImageProcessor,Swin2SRModel:()=>l.Swin2SRModel,Swin2SRPreTrainedModel:()=>l.Swin2SRPreTrainedModel,SwinForImageClassification:()=>l.SwinForImageClassification,SwinModel:()=>l.SwinModel,SwinPreTrainedModel:()=>l.SwinPreTrainedModel,T5ForConditionalGeneration:()=>l.T5ForConditionalGeneration,T5Model:()=>l.T5Model,T5PreTrainedModel:()=>l.T5PreTrainedModel,T5Tokenizer:()=>u.T5Tokenizer,TableTransformerForObjectDetection:()=>l.TableTransformerForObjectDetection,TableTransformerModel:()=>l.TableTransformerModel,TableTransformerObjectDetectionOutput:()=>l.TableTransformerObjectDetectionOutput,TableTransformerPreTrainedModel:()=>l.TableTransformerPreTrainedModel,Tensor:()=>m.Tensor,Text2TextGenerationPipeline:()=>o.Text2TextGenerationPipeline,TextClassificationPipeline:()=>o.TextClassificationPipeline,TextGenerationPipeline:()=>o.TextGenerationPipeline,TextStreamer:()=>g.TextStreamer,TextToAudioPipeline:()=>o.TextToAudioPipeline,TokenClassificationPipeline:()=>o.TokenClassificationPipeline,TokenClassifierOutput:()=>l.TokenClassifierOutput,TokenizerModel:()=>u.TokenizerModel,TrOCRForCausalLM:()=>l.TrOCRForCausalLM,TrOCRPreTrainedModel:()=>l.TrOCRPreTrainedModel,TranslationPipeline:()=>o.TranslationPipeline,UniSpeechForCTC:()=>l.UniSpeechForCTC,UniSpeechForSequenceClassification:()=>l.UniSpeechForSequenceClassification,UniSpeechModel:()=>l.UniSpeechModel,UniSpeechPreTrainedModel:()=>l.UniSpeechPreTrainedModel,UniSpeechSatForAudioFrameClassification:()=>l.UniSpeechSatForAudioFrameClassification,UniSpeechSatForCTC:()=>l.UniSpeechSatForCTC,UniSpeechSatForSequenceClassification:()=>l.UniSpeechSatForSequenceClassification,UniSpeechSatModel:()=>l.UniSpeechSatModel,UniSpeechSatPreTrainedModel:()=>l.UniSpeechSatPreTrainedModel,ViTFeatureExtractor:()=>d.ViTFeatureExtractor,ViTForImageClassification:()=>l.ViTForImageClassification,ViTImageProcessor:()=>d.ViTImageProcessor,ViTMAEModel:()=>l.ViTMAEModel,ViTMAEPreTrainedModel:()=>l.ViTMAEPreTrainedModel,ViTMSNForImageClassification:()=>l.ViTMSNForImageClassification,ViTMSNModel:()=>l.ViTMSNModel,ViTMSNPreTrainedModel:()=>l.ViTMSNPreTrainedModel,ViTModel:()=>l.ViTModel,ViTPreTrainedModel:()=>l.ViTPreTrainedModel,VisionEncoderDecoderModel:()=>l.VisionEncoderDecoderModel,VitMatteForImageMatting:()=>l.VitMatteForImageMatting,VitMatteImageProcessor:()=>d.VitMatteImageProcessor,VitMattePreTrainedModel:()=>l.VitMattePreTrainedModel,VitsModel:()=>l.VitsModel,VitsModelOutput:()=>l.VitsModelOutput,VitsPreTrainedModel:()=>l.VitsPreTrainedModel,VitsTokenizer:()=>u.VitsTokenizer,Wav2Vec2BertForCTC:()=>l.Wav2Vec2BertForCTC,Wav2Vec2BertForSequenceClassification:()=>l.Wav2Vec2BertForSequenceClassification,Wav2Vec2BertModel:()=>l.Wav2Vec2BertModel,Wav2Vec2BertPreTrainedModel:()=>l.Wav2Vec2BertPreTrainedModel,Wav2Vec2CTCTokenizer:()=>u.Wav2Vec2CTCTokenizer,Wav2Vec2FeatureExtractor:()=>d.Wav2Vec2FeatureExtractor,Wav2Vec2ForAudioFrameClassification:()=>l.Wav2Vec2ForAudioFrameClassification,Wav2Vec2ForCTC:()=>l.Wav2Vec2ForCTC,Wav2Vec2ForSequenceClassification:()=>l.Wav2Vec2ForSequenceClassification,Wav2Vec2Model:()=>l.Wav2Vec2Model,Wav2Vec2PreTrainedModel:()=>l.Wav2Vec2PreTrainedModel,Wav2Vec2ProcessorWithLM:()=>d.Wav2Vec2ProcessorWithLM,WavLMForAudioFrameClassification:()=>l.WavLMForAudioFrameClassification,WavLMForCTC:()=>l.WavLMForCTC,WavLMForSequenceClassification:()=>l.WavLMForSequenceClassification,WavLMForXVector:()=>l.WavLMForXVector,WavLMModel:()=>l.WavLMModel,WavLMPreTrainedModel:()=>l.WavLMPreTrainedModel,WeSpeakerFeatureExtractor:()=>d.WeSpeakerFeatureExtractor,WeSpeakerResNetModel:()=>l.WeSpeakerResNetModel,WeSpeakerResNetPreTrainedModel:()=>l.WeSpeakerResNetPreTrainedModel,WhisperFeatureExtractor:()=>d.WhisperFeatureExtractor,WhisperForConditionalGeneration:()=>l.WhisperForConditionalGeneration,WhisperModel:()=>l.WhisperModel,WhisperPreTrainedModel:()=>l.WhisperPreTrainedModel,WhisperProcessor:()=>d.WhisperProcessor,WhisperTextStreamer:()=>g.WhisperTextStreamer,WhisperTokenizer:()=>u.WhisperTokenizer,XLMForQuestionAnswering:()=>l.XLMForQuestionAnswering,XLMForSequenceClassification:()=>l.XLMForSequenceClassification,XLMForTokenClassification:()=>l.XLMForTokenClassification,XLMModel:()=>l.XLMModel,XLMPreTrainedModel:()=>l.XLMPreTrainedModel,XLMRobertaForMaskedLM:()=>l.XLMRobertaForMaskedLM,XLMRobertaForQuestionAnswering:()=>l.XLMRobertaForQuestionAnswering,XLMRobertaForSequenceClassification:()=>l.XLMRobertaForSequenceClassification,XLMRobertaForTokenClassification:()=>l.XLMRobertaForTokenClassification,XLMRobertaModel:()=>l.XLMRobertaModel,XLMRobertaPreTrainedModel:()=>l.XLMRobertaPreTrainedModel,XLMRobertaTokenizer:()=>u.XLMRobertaTokenizer,XLMTokenizer:()=>u.XLMTokenizer,XLMWithLMHeadModel:()=>l.XLMWithLMHeadModel,XVectorOutput:()=>l.XVectorOutput,YolosFeatureExtractor:()=>d.YolosFeatureExtractor,YolosForObjectDetection:()=>l.YolosForObjectDetection,YolosModel:()=>l.YolosModel,YolosObjectDetectionOutput:()=>l.YolosObjectDetectionOutput,YolosPreTrainedModel:()=>l.YolosPreTrainedModel,ZeroShotAudioClassificationPipeline:()=>o.ZeroShotAudioClassificationPipeline,ZeroShotClassificationPipeline:()=>o.ZeroShotClassificationPipeline,ZeroShotImageClassificationPipeline:()=>o.ZeroShotImageClassificationPipeline,ZeroShotObjectDetectionPipeline:()=>o.ZeroShotObjectDetectionPipeline,bankers_round:()=>f.bankers_round,cat:()=>m.cat,cos_sim:()=>f.cos_sim,dot:()=>f.dot,dynamic_time_warping:()=>f.dynamic_time_warping,env:()=>i.env,full:()=>m.full,full_like:()=>m.full_like,getKeyValueShapes:()=>c.getKeyValueShapes,hamming:()=>p.hamming,hanning:()=>p.hanning,interpolate:()=>m.interpolate,interpolate_4d:()=>m.interpolate_4d,interpolate_data:()=>f.interpolate_data,is_chinese_char:()=>u.is_chinese_char,layer_norm:()=>m.layer_norm,log_softmax:()=>f.log_softmax,magnitude:()=>f.magnitude,matmul:()=>m.matmul,max:()=>f.max,mean:()=>m.mean,mean_pooling:()=>m.mean_pooling,medianFilter:()=>f.medianFilter,mel_filter_bank:()=>p.mel_filter_bank,min:()=>f.min,ones:()=>m.ones,ones_like:()=>m.ones_like,permute:()=>m.permute,permute_data:()=>f.permute_data,pipeline:()=>o.pipeline,quantize_embeddings:()=>m.quantize_embeddings,read_audio:()=>p.read_audio,rfft:()=>m.rfft,round:()=>f.round,softmax:()=>f.softmax,spectrogram:()=>p.spectrogram,stack:()=>m.stack,std_mean:()=>m.std_mean,topk:()=>m.topk,window_function:()=>p.window_function,zeros:()=>m.zeros,zeros_like:()=>m.zeros_like});var i=a(/*! ./env.js */"./src/env.js"),o=a(/*! ./pipelines.js */"./src/pipelines.js"),l=a(/*! ./models.js */"./src/models.js"),u=a(/*! ./tokenizers.js */"./src/tokenizers.js"),d=a(/*! ./processors.js */"./src/processors.js"),c=a(/*! ./configs.js */"./src/configs.js"),p=a(/*! ./utils/audio.js */"./src/utils/audio.js"),h=a(/*! ./utils/image.js */"./src/utils/image.js"),m=a(/*! ./utils/tensor.js */"./src/utils/tensor.js"),f=a(/*! ./utils/maths.js */"./src/utils/maths.js"),g=a(/*! ./generation/streamers.js */"./src/generation/streamers.js"),_=a(/*! ./generation/stopping_criteria.js */"./src/generation/stopping_criteria.js"),w=s.ASTFeatureExtractor,y=s.ASTForAudioClassification,b=s.ASTModel,v=s.ASTPreTrainedModel,x=s.AlbertForMaskedLM,M=s.AlbertForQuestionAnswering,T=s.AlbertForSequenceClassification,k=s.AlbertModel,$=s.AlbertPreTrainedModel,C=s.AlbertTokenizer,S=s.AudioClassificationPipeline,P=s.AutoConfig,E=s.AutoModel,F=s.AutoModelForAudioClassification,A=s.AutoModelForAudioFrameClassification,I=s.AutoModelForCTC,z=s.AutoModelForCausalLM,O=s.AutoModelForDepthEstimation,B=s.AutoModelForDocumentQuestionAnswering,L=s.AutoModelForImageClassification,D=s.AutoModelForImageFeatureExtraction,R=s.AutoModelForImageMatting,N=s.AutoModelForImageSegmentation,V=s.AutoModelForImageToImage,j=s.AutoModelForMaskGeneration,q=s.AutoModelForMaskedLM,G=s.AutoModelForNormalEstimation,U=s.AutoModelForObjectDetection,W=s.AutoModelForQuestionAnswering,H=s.AutoModelForSemanticSegmentation,X=s.AutoModelForSeq2SeqLM,K=s.AutoModelForSequenceClassification,Q=s.AutoModelForSpeechSeq2Seq,Y=s.AutoModelForTextToSpectrogram,Z=s.AutoModelForTextToWaveform,J=s.AutoModelForTokenClassification,ee=s.AutoModelForUniversalSegmentation,te=s.AutoModelForVision2Seq,ne=s.AutoModelForXVector,re=s.AutoModelForZeroShotObjectDetection,ae=s.AutoProcessor,se=s.AutoTokenizer,ie=s.AutomaticSpeechRecognitionPipeline,oe=s.BartForConditionalGeneration,le=s.BartForSequenceClassification,ue=s.BartModel,de=s.BartPretrainedModel,ce=s.BartTokenizer,pe=s.BaseModelOutput,he=s.BaseStreamer,me=s.BeitFeatureExtractor,fe=s.BeitForImageClassification,ge=s.BeitModel,_e=s.BeitPreTrainedModel,we=s.BertForMaskedLM,ye=s.BertForQuestionAnswering,be=s.BertForSequenceClassification,ve=s.BertForTokenClassification,xe=s.BertModel,Me=s.BertPreTrainedModel,Te=s.BertTokenizer,ke=s.BitImageProcessor,$e=s.BlenderbotForConditionalGeneration,Ce=s.BlenderbotModel,Se=s.BlenderbotPreTrainedModel,Pe=s.BlenderbotSmallForConditionalGeneration,Ee=s.BlenderbotSmallModel,Fe=s.BlenderbotSmallPreTrainedModel,Ae=s.BlenderbotSmallTokenizer,Ie=s.BlenderbotTokenizer,ze=s.BloomForCausalLM,Oe=s.BloomModel,Be=s.BloomPreTrainedModel,Le=s.BloomTokenizer,De=s.CLIPFeatureExtractor,Re=s.CLIPImageProcessor,Ne=s.CLIPModel,Ve=s.CLIPPreTrainedModel,je=s.CLIPSegForImageSegmentation,qe=s.CLIPSegModel,Ge=s.CLIPSegPreTrainedModel,Ue=s.CLIPTextModel,We=s.CLIPTextModelWithProjection,He=s.CLIPTokenizer,Xe=s.CLIPVisionModel,Ke=s.CLIPVisionModelWithProjection,Qe=s.CamembertForMaskedLM,Ye=s.CamembertForQuestionAnswering,Ze=s.CamembertForSequenceClassification,Je=s.CamembertForTokenClassification,et=s.CamembertModel,tt=s.CamembertPreTrainedModel,nt=s.CamembertTokenizer,rt=s.CausalLMOutput,at=s.CausalLMOutputWithPast,st=s.ChineseCLIPFeatureExtractor,it=s.ChineseCLIPModel,ot=s.ChineseCLIPPreTrainedModel,lt=s.ClapAudioModelWithProjection,ut=s.ClapFeatureExtractor,dt=s.ClapModel,ct=s.ClapPreTrainedModel,pt=s.ClapTextModelWithProjection,ht=s.CodeGenForCausalLM,mt=s.CodeGenModel,ft=s.CodeGenPreTrainedModel,gt=s.CodeGenTokenizer,_t=s.CodeLlamaTokenizer,wt=s.CohereForCausalLM,yt=s.CohereModel,bt=s.CoherePreTrainedModel,vt=s.CohereTokenizer,xt=s.ConvBertForMaskedLM,Mt=s.ConvBertForQuestionAnswering,Tt=s.ConvBertForSequenceClassification,kt=s.ConvBertForTokenClassification,$t=s.ConvBertModel,Ct=s.ConvBertPreTrainedModel,St=s.ConvBertTokenizer,Pt=s.ConvNextFeatureExtractor,Et=s.ConvNextForImageClassification,Ft=s.ConvNextImageProcessor,At=s.ConvNextModel,It=s.ConvNextPreTrainedModel,zt=s.ConvNextV2ForImageClassification,Ot=s.ConvNextV2Model,Bt=s.ConvNextV2PreTrainedModel,Lt=s.DPTFeatureExtractor,Dt=s.DPTForDepthEstimation,Rt=s.DPTImageProcessor,Nt=s.DPTModel,Vt=s.DPTPreTrainedModel,jt=s.DebertaForMaskedLM,qt=s.DebertaForQuestionAnswering,Gt=s.DebertaForSequenceClassification,Ut=s.DebertaForTokenClassification,Wt=s.DebertaModel,Ht=s.DebertaPreTrainedModel,Xt=s.DebertaTokenizer,Kt=s.DebertaV2ForMaskedLM,Qt=s.DebertaV2ForQuestionAnswering,Yt=s.DebertaV2ForSequenceClassification,Zt=s.DebertaV2ForTokenClassification,Jt=s.DebertaV2Model,en=s.DebertaV2PreTrainedModel,tn=s.DebertaV2Tokenizer,nn=s.DecisionTransformerModel,rn=s.DecisionTransformerPreTrainedModel,an=s.DeiTFeatureExtractor,sn=s.DeiTForImageClassification,on=s.DeiTModel,ln=s.DeiTPreTrainedModel,un=s.DepthAnythingForDepthEstimation,dn=s.DepthAnythingPreTrainedModel,cn=s.DepthEstimationPipeline,pn=s.DepthProForDepthEstimation,hn=s.DepthProPreTrainedModel,mn=s.DetrFeatureExtractor,fn=s.DetrForObjectDetection,gn=s.DetrForSegmentation,_n=s.DetrModel,wn=s.DetrObjectDetectionOutput,yn=s.DetrPreTrainedModel,bn=s.DetrSegmentationOutput,vn=s.Dinov2ForImageClassification,xn=s.Dinov2Model,Mn=s.Dinov2PreTrainedModel,Tn=s.DistilBertForMaskedLM,kn=s.DistilBertForQuestionAnswering,$n=s.DistilBertForSequenceClassification,Cn=s.DistilBertForTokenClassification,Sn=s.DistilBertModel,Pn=s.DistilBertPreTrainedModel,En=s.DistilBertTokenizer,Fn=s.DocumentQuestionAnsweringPipeline,An=s.DonutFeatureExtractor,In=s.DonutImageProcessor,zn=s.DonutSwinModel,On=s.DonutSwinPreTrainedModel,Bn=s.EfficientNetForImageClassification,Ln=s.EfficientNetImageProcessor,Dn=s.EfficientNetModel,Rn=s.EfficientNetPreTrainedModel,Nn=s.ElectraForMaskedLM,Vn=s.ElectraForQuestionAnswering,jn=s.ElectraForSequenceClassification,qn=s.ElectraForTokenClassification,Gn=s.ElectraModel,Un=s.ElectraPreTrainedModel,Wn=s.ElectraTokenizer,Hn=s.EosTokenCriteria,Xn=s.EsmForMaskedLM,Kn=s.EsmForSequenceClassification,Qn=s.EsmForTokenClassification,Yn=s.EsmModel,Zn=s.EsmPreTrainedModel,Jn=s.EsmTokenizer,er=s.FFT,tr=s.FalconForCausalLM,nr=s.FalconModel,rr=s.FalconPreTrainedModel,ar=s.FalconTokenizer,sr=s.FastViTForImageClassification,ir=s.FastViTModel,or=s.FastViTPreTrainedModel,lr=s.FeatureExtractionPipeline,ur=s.FeatureExtractor,dr=s.FillMaskPipeline,cr=s.Florence2ForConditionalGeneration,pr=s.Florence2PreTrainedModel,hr=s.Florence2Processor,mr=s.GLPNFeatureExtractor,fr=s.GLPNForDepthEstimation,gr=s.GLPNModel,_r=s.GLPNPreTrainedModel,wr=s.GPT2LMHeadModel,yr=s.GPT2Model,br=s.GPT2PreTrainedModel,vr=s.GPT2Tokenizer,xr=s.GPTBigCodeForCausalLM,Mr=s.GPTBigCodeModel,Tr=s.GPTBigCodePreTrainedModel,kr=s.GPTJForCausalLM,$r=s.GPTJModel,Cr=s.GPTJPreTrainedModel,Sr=s.GPTNeoForCausalLM,Pr=s.GPTNeoModel,Er=s.GPTNeoPreTrainedModel,Fr=s.GPTNeoXForCausalLM,Ar=s.GPTNeoXModel,Ir=s.GPTNeoXPreTrainedModel,zr=s.GPTNeoXTokenizer,Or=s.Gemma2ForCausalLM,Br=s.Gemma2Model,Lr=s.Gemma2PreTrainedModel,Dr=s.GemmaForCausalLM,Rr=s.GemmaModel,Nr=s.GemmaPreTrainedModel,Vr=s.GemmaTokenizer,jr=s.GraniteForCausalLM,qr=s.GraniteModel,Gr=s.GranitePreTrainedModel,Ur=s.Grok1Tokenizer,Wr=s.GroupViTModel,Hr=s.GroupViTPreTrainedModel,Xr=s.HerbertTokenizer,Kr=s.HieraForImageClassification,Qr=s.HieraModel,Yr=s.HieraPreTrainedModel,Zr=s.HubertForCTC,Jr=s.HubertForSequenceClassification,ea=s.HubertModel,ta=s.HubertPreTrainedModel,na=s.ImageClassificationPipeline,ra=s.ImageFeatureExtractionPipeline,aa=s.ImageFeatureExtractor,sa=s.ImageMattingOutput,ia=s.ImageSegmentationPipeline,oa=s.ImageToImagePipeline,la=s.ImageToTextPipeline,ua=s.InterruptableStoppingCriteria,da=s.JAISLMHeadModel,ca=s.JAISModel,pa=s.JAISPreTrainedModel,ha=s.LlamaForCausalLM,ma=s.LlamaModel,fa=s.LlamaPreTrainedModel,ga=s.LlamaTokenizer,_a=s.LlavaForConditionalGeneration,wa=s.LlavaPreTrainedModel,ya=s.LongT5ForConditionalGeneration,ba=s.LongT5Model,va=s.LongT5PreTrainedModel,xa=s.M2M100ForConditionalGeneration,Ma=s.M2M100Model,Ta=s.M2M100PreTrainedModel,ka=s.M2M100Tokenizer,$a=s.MBart50Tokenizer,Ca=s.MBartForCausalLM,Sa=s.MBartForConditionalGeneration,Pa=s.MBartForSequenceClassification,Ea=s.MBartModel,Fa=s.MBartPreTrainedModel,Aa=s.MBartTokenizer,Ia=s.MPNetForMaskedLM,za=s.MPNetForQuestionAnswering,Oa=s.MPNetForSequenceClassification,Ba=s.MPNetForTokenClassification,La=s.MPNetModel,Da=s.MPNetPreTrainedModel,Ra=s.MPNetTokenizer,Na=s.MT5ForConditionalGeneration,Va=s.MT5Model,ja=s.MT5PreTrainedModel,qa=s.MarianMTModel,Ga=s.MarianModel,Ua=s.MarianPreTrainedModel,Wa=s.MarianTokenizer,Ha=s.MaskFormerFeatureExtractor,Xa=s.MaskFormerForInstanceSegmentation,Ka=s.MaskFormerModel,Qa=s.MaskFormerPreTrainedModel,Ya=s.MaskedLMOutput,Za=s.MaxLengthCriteria,Ja=s.MistralForCausalLM,es=s.MistralModel,ts=s.MistralPreTrainedModel,ns=s.MobileBertForMaskedLM,rs=s.MobileBertForQuestionAnswering,as=s.MobileBertForSequenceClassification,ss=s.MobileBertModel,is=s.MobileBertPreTrainedModel,os=s.MobileBertTokenizer,ls=s.MobileLLMForCausalLM,us=s.MobileLLMModel,ds=s.MobileLLMPreTrainedModel,cs=s.MobileNetV1FeatureExtractor,ps=s.MobileNetV1ForImageClassification,hs=s.MobileNetV1Model,ms=s.MobileNetV1PreTrainedModel,fs=s.MobileNetV2FeatureExtractor,gs=s.MobileNetV2ForImageClassification,_s=s.MobileNetV2Model,ws=s.MobileNetV2PreTrainedModel,ys=s.MobileNetV3FeatureExtractor,bs=s.MobileNetV3ForImageClassification,vs=s.MobileNetV3Model,xs=s.MobileNetV3PreTrainedModel,Ms=s.MobileNetV4FeatureExtractor,Ts=s.MobileNetV4ForImageClassification,ks=s.MobileNetV4Model,$s=s.MobileNetV4PreTrainedModel,Cs=s.MobileViTFeatureExtractor,Ss=s.MobileViTForImageClassification,Ps=s.MobileViTImageProcessor,Es=s.MobileViTModel,Fs=s.MobileViTPreTrainedModel,As=s.MobileViTV2ForImageClassification,Is=s.MobileViTV2Model,zs=s.MobileViTV2PreTrainedModel,Os=s.ModelOutput,Bs=s.Moondream1ForConditionalGeneration,Ls=s.MptForCausalLM,Ds=s.MptModel,Rs=s.MptPreTrainedModel,Ns=s.MusicgenForCausalLM,Vs=s.MusicgenForConditionalGeneration,js=s.MusicgenModel,qs=s.MusicgenPreTrainedModel,Gs=s.NllbTokenizer,Us=s.NomicBertModel,Ws=s.NomicBertPreTrainedModel,Hs=s.NougatImageProcessor,Xs=s.NougatTokenizer,Ks=s.OPTForCausalLM,Qs=s.OPTModel,Ys=s.OPTPreTrainedModel,Zs=s.ObjectDetectionPipeline,Js=s.OlmoForCausalLM,ei=s.OlmoModel,ti=s.OlmoPreTrainedModel,ni=s.OpenELMForCausalLM,ri=s.OpenELMModel,ai=s.OpenELMPreTrainedModel,si=s.OwlViTFeatureExtractor,ii=s.OwlViTForObjectDetection,oi=s.OwlViTModel,li=s.OwlViTPreTrainedModel,ui=s.OwlViTProcessor,di=s.Owlv2ForObjectDetection,ci=s.Owlv2ImageProcessor,pi=s.Owlv2Model,hi=s.Owlv2PreTrainedModel,mi=s.Phi3ForCausalLM,fi=s.Phi3Model,gi=s.Phi3PreTrainedModel,_i=s.PhiForCausalLM,wi=s.PhiModel,yi=s.PhiPreTrainedModel,bi=s.Pipeline,vi=s.PreTrainedModel,xi=s.PreTrainedTokenizer,Mi=s.PretrainedConfig,Ti=s.PretrainedMixin,ki=s.Processor,$i=s.PvtForImageClassification,Ci=s.PvtImageProcessor,Si=s.PvtModel,Pi=s.PvtPreTrainedModel,Ei=s.PyAnnoteFeatureExtractor,Fi=s.PyAnnoteForAudioFrameClassification,Ai=s.PyAnnoteModel,Ii=s.PyAnnotePreTrainedModel,zi=s.PyAnnoteProcessor,Oi=s.QuestionAnsweringModelOutput,Bi=s.QuestionAnsweringPipeline,Li=s.Qwen2ForCausalLM,Di=s.Qwen2Model,Ri=s.Qwen2PreTrainedModel,Ni=s.Qwen2Tokenizer,Vi=s.RTDetrForObjectDetection,ji=s.RTDetrImageProcessor,qi=s.RTDetrModel,Gi=s.RTDetrObjectDetectionOutput,Ui=s.RTDetrPreTrainedModel,Wi=s.RawImage,Hi=s.ResNetForImageClassification,Xi=s.ResNetModel,Ki=s.ResNetPreTrainedModel,Qi=s.RoFormerForMaskedLM,Yi=s.RoFormerForQuestionAnswering,Zi=s.RoFormerForSequenceClassification,Ji=s.RoFormerForTokenClassification,eo=s.RoFormerModel,to=s.RoFormerPreTrainedModel,no=s.RoFormerTokenizer,ro=s.RobertaForMaskedLM,ao=s.RobertaForQuestionAnswering,so=s.RobertaForSequenceClassification,io=s.RobertaForTokenClassification,oo=s.RobertaModel,lo=s.RobertaPreTrainedModel,uo=s.RobertaTokenizer,co=s.SamImageProcessor,po=s.SamImageSegmentationOutput,ho=s.SamModel,mo=s.SamPreTrainedModel,fo=s.SamProcessor,go=s.SapiensFeatureExtractor,_o=s.SapiensForDepthEstimation,wo=s.SapiensForNormalEstimation,yo=s.SapiensForSemanticSegmentation,bo=s.SapiensPreTrainedModel,vo=s.SeamlessM4TFeatureExtractor,xo=s.SegformerFeatureExtractor,Mo=s.SegformerForImageClassification,To=s.SegformerForSemanticSegmentation,ko=s.SegformerModel,$o=s.SegformerPreTrainedModel,Co=s.Seq2SeqLMOutput,So=s.SequenceClassifierOutput,Po=s.SiglipImageProcessor,Eo=s.SiglipModel,Fo=s.SiglipPreTrainedModel,Ao=s.SiglipTextModel,Io=s.SiglipTokenizer,zo=s.SiglipVisionModel,Oo=s.SpeechT5FeatureExtractor,Bo=s.SpeechT5ForSpeechToText,Lo=s.SpeechT5ForTextToSpeech,Do=s.SpeechT5HifiGan,Ro=s.SpeechT5Model,No=s.SpeechT5PreTrainedModel,Vo=s.SpeechT5Processor,jo=s.SpeechT5Tokenizer,qo=s.SqueezeBertForMaskedLM,Go=s.SqueezeBertForQuestionAnswering,Uo=s.SqueezeBertForSequenceClassification,Wo=s.SqueezeBertModel,Ho=s.SqueezeBertPreTrainedModel,Xo=s.SqueezeBertTokenizer,Ko=s.StableLmForCausalLM,Qo=s.StableLmModel,Yo=s.StableLmPreTrainedModel,Zo=s.Starcoder2ForCausalLM,Jo=s.Starcoder2Model,el=s.Starcoder2PreTrainedModel,tl=s.StoppingCriteria,nl=s.StoppingCriteriaList,rl=s.SummarizationPipeline,al=s.Swin2SRForImageSuperResolution,sl=s.Swin2SRImageProcessor,il=s.Swin2SRModel,ol=s.Swin2SRPreTrainedModel,ll=s.SwinForImageClassification,ul=s.SwinModel,dl=s.SwinPreTrainedModel,cl=s.T5ForConditionalGeneration,pl=s.T5Model,hl=s.T5PreTrainedModel,ml=s.T5Tokenizer,fl=s.TableTransformerForObjectDetection,gl=s.TableTransformerModel,_l=s.TableTransformerObjectDetectionOutput,wl=s.TableTransformerPreTrainedModel,yl=s.Tensor,bl=s.Text2TextGenerationPipeline,vl=s.TextClassificationPipeline,xl=s.TextGenerationPipeline,Ml=s.TextStreamer,Tl=s.TextToAudioPipeline,kl=s.TokenClassificationPipeline,$l=s.TokenClassifierOutput,Cl=s.TokenizerModel,Sl=s.TrOCRForCausalLM,Pl=s.TrOCRPreTrainedModel,El=s.TranslationPipeline,Fl=s.UniSpeechForCTC,Al=s.UniSpeechForSequenceClassification,Il=s.UniSpeechModel,zl=s.UniSpeechPreTrainedModel,Ol=s.UniSpeechSatForAudioFrameClassification,Bl=s.UniSpeechSatForCTC,Ll=s.UniSpeechSatForSequenceClassification,Dl=s.UniSpeechSatModel,Rl=s.UniSpeechSatPreTrainedModel,Nl=s.ViTFeatureExtractor,Vl=s.ViTForImageClassification,jl=s.ViTImageProcessor,ql=s.ViTMAEModel,Gl=s.ViTMAEPreTrainedModel,Ul=s.ViTMSNForImageClassification,Wl=s.ViTMSNModel,Hl=s.ViTMSNPreTrainedModel,Xl=s.ViTModel,Kl=s.ViTPreTrainedModel,Ql=s.VisionEncoderDecoderModel,Yl=s.VitMatteForImageMatting,Zl=s.VitMatteImageProcessor,Jl=s.VitMattePreTrainedModel,eu=s.VitsModel,tu=s.VitsModelOutput,nu=s.VitsPreTrainedModel,ru=s.VitsTokenizer,au=s.Wav2Vec2BertForCTC,su=s.Wav2Vec2BertForSequenceClassification,iu=s.Wav2Vec2BertModel,ou=s.Wav2Vec2BertPreTrainedModel,lu=s.Wav2Vec2CTCTokenizer,uu=s.Wav2Vec2FeatureExtractor,du=s.Wav2Vec2ForAudioFrameClassification,cu=s.Wav2Vec2ForCTC,pu=s.Wav2Vec2ForSequenceClassification,hu=s.Wav2Vec2Model,mu=s.Wav2Vec2PreTrainedModel,fu=s.Wav2Vec2ProcessorWithLM,gu=s.WavLMForAudioFrameClassification,_u=s.WavLMForCTC,wu=s.WavLMForSequenceClassification,yu=s.WavLMForXVector,bu=s.WavLMModel,vu=s.WavLMPreTrainedModel,xu=s.WeSpeakerFeatureExtractor,Mu=s.WeSpeakerResNetModel,Tu=s.WeSpeakerResNetPreTrainedModel,ku=s.WhisperFeatureExtractor,$u=s.WhisperForConditionalGeneration,Cu=s.WhisperModel,Su=s.WhisperPreTrainedModel,Pu=s.WhisperProcessor,Eu=s.WhisperTextStreamer,Fu=s.WhisperTokenizer,Au=s.XLMForQuestionAnswering,Iu=s.XLMForSequenceClassification,zu=s.XLMForTokenClassification,Ou=s.XLMModel,Bu=s.XLMPreTrainedModel,Lu=s.XLMRobertaForMaskedLM,Du=s.XLMRobertaForQuestionAnswering,Ru=s.XLMRobertaForSequenceClassification,Nu=s.XLMRobertaForTokenClassification,Vu=s.XLMRobertaModel,ju=s.XLMRobertaPreTrainedModel,qu=s.XLMRobertaTokenizer,Gu=s.XLMTokenizer,Uu=s.XLMWithLMHeadModel,Wu=s.XVectorOutput,Hu=s.YolosFeatureExtractor,Xu=s.YolosForObjectDetection,Ku=s.YolosModel,Qu=s.YolosObjectDetectionOutput,Yu=s.YolosPreTrainedModel,Zu=s.ZeroShotAudioClassificationPipeline,Ju=s.ZeroShotClassificationPipeline,ed=s.ZeroShotImageClassificationPipeline,td=s.ZeroShotObjectDetectionPipeline,nd=s.bankers_round,rd=s.cat,ad=s.cos_sim,sd=s.dot,id=s.dynamic_time_warping,od=s.env,ld=s.full,ud=s.full_like,dd=s.getKeyValueShapes,cd=s.hamming,pd=s.hanning,hd=s.interpolate,md=s.interpolate_4d,fd=s.interpolate_data,gd=s.is_chinese_char,_d=s.layer_norm,wd=s.log_softmax,yd=s.magnitude,bd=s.matmul,vd=s.max,xd=s.mean,Md=s.mean_pooling,Td=s.medianFilter,kd=s.mel_filter_bank,$d=s.min,Cd=s.ones,Sd=s.ones_like,Pd=s.permute,Ed=s.permute_data,Fd=s.pipeline,Ad=s.quantize_embeddings,Id=s.read_audio,zd=s.rfft,Od=s.round,Bd=s.softmax,Ld=s.spectrogram,Dd=s.stack,Rd=s.std_mean,Nd=s.topk,Vd=s.window_function,jd=s.zeros,qd=s.zeros_like;export{w as ASTFeatureExtractor,y as ASTForAudioClassification,b as ASTModel,v as ASTPreTrainedModel,x as AlbertForMaskedLM,M as AlbertForQuestionAnswering,T as AlbertForSequenceClassification,k as AlbertModel,$ as AlbertPreTrainedModel,C as AlbertTokenizer,S as AudioClassificationPipeline,P as AutoConfig,E as AutoModel,F as AutoModelForAudioClassification,A as AutoModelForAudioFrameClassification,I as AutoModelForCTC,z as AutoModelForCausalLM,O as AutoModelForDepthEstimation,B as AutoModelForDocumentQuestionAnswering,L as AutoModelForImageClassification,D as AutoModelForImageFeatureExtraction,R as AutoModelForImageMatting,N as AutoModelForImageSegmentation,V as AutoModelForImageToImage,j as AutoModelForMaskGeneration,q as AutoModelForMaskedLM,G as AutoModelForNormalEstimation,U as AutoModelForObjectDetection,W as AutoModelForQuestionAnswering,H as AutoModelForSemanticSegmentation,X as AutoModelForSeq2SeqLM,K as AutoModelForSequenceClassification,Q as AutoModelForSpeechSeq2Seq,Y as AutoModelForTextToSpectrogram,Z as AutoModelForTextToWaveform,J as AutoModelForTokenClassification,ee as AutoModelForUniversalSegmentation,te as AutoModelForVision2Seq,ne as AutoModelForXVector,re as AutoModelForZeroShotObjectDetection,ae as AutoProcessor,se as AutoTokenizer,ie as AutomaticSpeechRecognitionPipeline,oe as BartForConditionalGeneration,le as BartForSequenceClassification,ue as BartModel,de as BartPretrainedModel,ce as BartTokenizer,pe as BaseModelOutput,he as BaseStreamer,me as BeitFeatureExtractor,fe as BeitForImageClassification,ge as BeitModel,_e as BeitPreTrainedModel,we as BertForMaskedLM,ye as BertForQuestionAnswering,be as BertForSequenceClassification,ve as BertForTokenClassification,xe as BertModel,Me as BertPreTrainedModel,Te as BertTokenizer,ke as BitImageProcessor,$e as BlenderbotForConditionalGeneration,Ce as BlenderbotModel,Se as BlenderbotPreTrainedModel,Pe as BlenderbotSmallForConditionalGeneration,Ee as BlenderbotSmallModel,Fe as BlenderbotSmallPreTrainedModel,Ae as BlenderbotSmallTokenizer,Ie as BlenderbotTokenizer,ze as BloomForCausalLM,Oe as BloomModel,Be as BloomPreTrainedModel,Le as BloomTokenizer,De as CLIPFeatureExtractor,Re as CLIPImageProcessor,Ne as CLIPModel,Ve as CLIPPreTrainedModel,je as CLIPSegForImageSegmentation,qe as CLIPSegModel,Ge as CLIPSegPreTrainedModel,Ue as CLIPTextModel,We as CLIPTextModelWithProjection,He as CLIPTokenizer,Xe as CLIPVisionModel,Ke as CLIPVisionModelWithProjection,Qe as CamembertForMaskedLM,Ye as CamembertForQuestionAnswering,Ze as CamembertForSequenceClassification,Je as CamembertForTokenClassification,et as CamembertModel,tt as CamembertPreTrainedModel,nt as CamembertTokenizer,rt as CausalLMOutput,at as CausalLMOutputWithPast,st as ChineseCLIPFeatureExtractor,it as ChineseCLIPModel,ot as ChineseCLIPPreTrainedModel,lt as ClapAudioModelWithProjection,ut as ClapFeatureExtractor,dt as ClapModel,ct as ClapPreTrainedModel,pt as ClapTextModelWithProjection,ht as CodeGenForCausalLM,mt as CodeGenModel,ft as CodeGenPreTrainedModel,gt as CodeGenTokenizer,_t as CodeLlamaTokenizer,wt as CohereForCausalLM,yt as CohereModel,bt as CoherePreTrainedModel,vt as CohereTokenizer,xt as ConvBertForMaskedLM,Mt as ConvBertForQuestionAnswering,Tt as ConvBertForSequenceClassification,kt as ConvBertForTokenClassification,$t as ConvBertModel,Ct as ConvBertPreTrainedModel,St as ConvBertTokenizer,Pt as ConvNextFeatureExtractor,Et as ConvNextForImageClassification,Ft as ConvNextImageProcessor,At as ConvNextModel,It as ConvNextPreTrainedModel,zt as ConvNextV2ForImageClassification,Ot as ConvNextV2Model,Bt as ConvNextV2PreTrainedModel,Lt as DPTFeatureExtractor,Dt as DPTForDepthEstimation,Rt as DPTImageProcessor,Nt as DPTModel,Vt as DPTPreTrainedModel,jt as DebertaForMaskedLM,qt as DebertaForQuestionAnswering,Gt as DebertaForSequenceClassification,Ut as DebertaForTokenClassification,Wt as DebertaModel,Ht as DebertaPreTrainedModel,Xt as DebertaTokenizer,Kt as DebertaV2ForMaskedLM,Qt as DebertaV2ForQuestionAnswering,Yt as DebertaV2ForSequenceClassification,Zt as DebertaV2ForTokenClassification,Jt as DebertaV2Model,en as DebertaV2PreTrainedModel,tn as DebertaV2Tokenizer,nn as DecisionTransformerModel,rn as DecisionTransformerPreTrainedModel,an as DeiTFeatureExtractor,sn as DeiTForImageClassification,on as DeiTModel,ln as DeiTPreTrainedModel,un as DepthAnythingForDepthEstimation,dn as DepthAnythingPreTrainedModel,cn as DepthEstimationPipeline,pn as DepthProForDepthEstimation,hn as DepthProPreTrainedModel,mn as DetrFeatureExtractor,fn as DetrForObjectDetection,gn as DetrForSegmentation,_n as DetrModel,wn as DetrObjectDetectionOutput,yn as DetrPreTrainedModel,bn as DetrSegmentationOutput,vn as Dinov2ForImageClassification,xn as Dinov2Model,Mn as Dinov2PreTrainedModel,Tn as DistilBertForMaskedLM,kn as DistilBertForQuestionAnswering,$n as DistilBertForSequenceClassification,Cn as DistilBertForTokenClassification,Sn as DistilBertModel,Pn as DistilBertPreTrainedModel,En as DistilBertTokenizer,Fn as DocumentQuestionAnsweringPipeline,An as DonutFeatureExtractor,In as DonutImageProcessor,zn as DonutSwinModel,On as DonutSwinPreTrainedModel,Bn as EfficientNetForImageClassification,Ln as EfficientNetImageProcessor,Dn as EfficientNetModel,Rn as EfficientNetPreTrainedModel,Nn as ElectraForMaskedLM,Vn as ElectraForQuestionAnswering,jn as ElectraForSequenceClassification,qn as ElectraForTokenClassification,Gn as ElectraModel,Un as ElectraPreTrainedModel,Wn as ElectraTokenizer,Hn as EosTokenCriteria,Xn as EsmForMaskedLM,Kn as EsmForSequenceClassification,Qn as EsmForTokenClassification,Yn as EsmModel,Zn as EsmPreTrainedModel,Jn as EsmTokenizer,er as FFT,tr as FalconForCausalLM,nr as FalconModel,rr as FalconPreTrainedModel,ar as FalconTokenizer,sr as FastViTForImageClassification,ir as FastViTModel,or as FastViTPreTrainedModel,lr as FeatureExtractionPipeline,ur as FeatureExtractor,dr as FillMaskPipeline,cr as Florence2ForConditionalGeneration,pr as Florence2PreTrainedModel,hr as Florence2Processor,mr as GLPNFeatureExtractor,fr as GLPNForDepthEstimation,gr as GLPNModel,_r as GLPNPreTrainedModel,wr as GPT2LMHeadModel,yr as GPT2Model,br as GPT2PreTrainedModel,vr as GPT2Tokenizer,xr as GPTBigCodeForCausalLM,Mr as GPTBigCodeModel,Tr as GPTBigCodePreTrainedModel,kr as GPTJForCausalLM,$r as GPTJModel,Cr as GPTJPreTrainedModel,Sr as GPTNeoForCausalLM,Pr as GPTNeoModel,Er as GPTNeoPreTrainedModel,Fr as GPTNeoXForCausalLM,Ar as GPTNeoXModel,Ir as GPTNeoXPreTrainedModel,zr as GPTNeoXTokenizer,Or as Gemma2ForCausalLM,Br as Gemma2Model,Lr as Gemma2PreTrainedModel,Dr as GemmaForCausalLM,Rr as GemmaModel,Nr as GemmaPreTrainedModel,Vr as GemmaTokenizer,jr as GraniteForCausalLM,qr as GraniteModel,Gr as GranitePreTrainedModel,Ur as Grok1Tokenizer,Wr as GroupViTModel,Hr as GroupViTPreTrainedModel,Xr as HerbertTokenizer,Kr as HieraForImageClassification,Qr as HieraModel,Yr as HieraPreTrainedModel,Zr as HubertForCTC,Jr as HubertForSequenceClassification,ea as HubertModel,ta as HubertPreTrainedModel,na as ImageClassificationPipeline,ra as ImageFeatureExtractionPipeline,aa as ImageFeatureExtractor,sa as ImageMattingOutput,ia as ImageSegmentationPipeline,oa as ImageToImagePipeline,la as ImageToTextPipeline,ua as InterruptableStoppingCriteria,da as JAISLMHeadModel,ca as JAISModel,pa as JAISPreTrainedModel,ha as LlamaForCausalLM,ma as LlamaModel,fa as LlamaPreTrainedModel,ga as LlamaTokenizer,_a as LlavaForConditionalGeneration,wa as LlavaPreTrainedModel,ya as LongT5ForConditionalGeneration,ba as LongT5Model,va as LongT5PreTrainedModel,xa as M2M100ForConditionalGeneration,Ma as M2M100Model,Ta as M2M100PreTrainedModel,ka as M2M100Tokenizer,$a as MBart50Tokenizer,Ca as MBartForCausalLM,Sa as MBartForConditionalGeneration,Pa as MBartForSequenceClassification,Ea as MBartModel,Fa as MBartPreTrainedModel,Aa as MBartTokenizer,Ia as MPNetForMaskedLM,za as MPNetForQuestionAnswering,Oa as MPNetForSequenceClassification,Ba as MPNetForTokenClassification,La as MPNetModel,Da as MPNetPreTrainedModel,Ra as MPNetTokenizer,Na as MT5ForConditionalGeneration,Va as MT5Model,ja as MT5PreTrainedModel,qa as MarianMTModel,Ga as MarianModel,Ua as MarianPreTrainedModel,Wa as MarianTokenizer,Ha as MaskFormerFeatureExtractor,Xa as MaskFormerForInstanceSegmentation,Ka as MaskFormerModel,Qa as MaskFormerPreTrainedModel,Ya as MaskedLMOutput,Za as MaxLengthCriteria,Ja as MistralForCausalLM,es as MistralModel,ts as MistralPreTrainedModel,ns as MobileBertForMaskedLM,rs as MobileBertForQuestionAnswering,as as MobileBertForSequenceClassification,ss as MobileBertModel,is as MobileBertPreTrainedModel,os as MobileBertTokenizer,ls as MobileLLMForCausalLM,us as MobileLLMModel,ds as MobileLLMPreTrainedModel,cs as MobileNetV1FeatureExtractor,ps as MobileNetV1ForImageClassification,hs as MobileNetV1Model,ms as MobileNetV1PreTrainedModel,fs as MobileNetV2FeatureExtractor,gs as MobileNetV2ForImageClassification,_s as MobileNetV2Model,ws as MobileNetV2PreTrainedModel,ys as MobileNetV3FeatureExtractor,bs as MobileNetV3ForImageClassification,vs as MobileNetV3Model,xs as MobileNetV3PreTrainedModel,Ms as MobileNetV4FeatureExtractor,Ts as MobileNetV4ForImageClassification,ks as MobileNetV4Model,$s as MobileNetV4PreTrainedModel,Cs as MobileViTFeatureExtractor,Ss as MobileViTForImageClassification,Ps as MobileViTImageProcessor,Es as MobileViTModel,Fs as MobileViTPreTrainedModel,As as MobileViTV2ForImageClassification,Is as MobileViTV2Model,zs as MobileViTV2PreTrainedModel,Os as ModelOutput,Bs as Moondream1ForConditionalGeneration,Ls as MptForCausalLM,Ds as MptModel,Rs as MptPreTrainedModel,Ns as MusicgenForCausalLM,Vs as MusicgenForConditionalGeneration,js as MusicgenModel,qs as MusicgenPreTrainedModel,Gs as NllbTokenizer,Us as NomicBertModel,Ws as NomicBertPreTrainedModel,Hs as NougatImageProcessor,Xs as NougatTokenizer,Ks as OPTForCausalLM,Qs as OPTModel,Ys as OPTPreTrainedModel,Zs as ObjectDetectionPipeline,Js as OlmoForCausalLM,ei as OlmoModel,ti as OlmoPreTrainedModel,ni as OpenELMForCausalLM,ri as OpenELMModel,ai as OpenELMPreTrainedModel,si as OwlViTFeatureExtractor,ii as OwlViTForObjectDetection,oi as OwlViTModel,li as OwlViTPreTrainedModel,ui as OwlViTProcessor,di as Owlv2ForObjectDetection,ci as Owlv2ImageProcessor,pi as Owlv2Model,hi as Owlv2PreTrainedModel,mi as Phi3ForCausalLM,fi as Phi3Model,gi as Phi3PreTrainedModel,_i as PhiForCausalLM,wi as PhiModel,yi as PhiPreTrainedModel,bi as Pipeline,vi as PreTrainedModel,xi as PreTrainedTokenizer,Mi as PretrainedConfig,Ti as PretrainedMixin,ki as Processor,$i as PvtForImageClassification,Ci as PvtImageProcessor,Si as PvtModel,Pi as PvtPreTrainedModel,Ei as PyAnnoteFeatureExtractor,Fi as PyAnnoteForAudioFrameClassification,Ai as PyAnnoteModel,Ii as PyAnnotePreTrainedModel,zi as PyAnnoteProcessor,Oi as QuestionAnsweringModelOutput,Bi as QuestionAnsweringPipeline,Li as Qwen2ForCausalLM,Di as Qwen2Model,Ri as Qwen2PreTrainedModel,Ni as Qwen2Tokenizer,Vi as RTDetrForObjectDetection,ji as RTDetrImageProcessor,qi as RTDetrModel,Gi as RTDetrObjectDetectionOutput,Ui as RTDetrPreTrainedModel,Wi as RawImage,Hi as ResNetForImageClassification,Xi as ResNetModel,Ki as ResNetPreTrainedModel,Qi as RoFormerForMaskedLM,Yi as RoFormerForQuestionAnswering,Zi as RoFormerForSequenceClassification,Ji as RoFormerForTokenClassification,eo as RoFormerModel,to as RoFormerPreTrainedModel,no as RoFormerTokenizer,ro as RobertaForMaskedLM,ao as RobertaForQuestionAnswering,so as RobertaForSequenceClassification,io as RobertaForTokenClassification,oo as RobertaModel,lo as RobertaPreTrainedModel,uo as RobertaTokenizer,co as SamImageProcessor,po as SamImageSegmentationOutput,ho as SamModel,mo as SamPreTrainedModel,fo as SamProcessor,go as SapiensFeatureExtractor,_o as SapiensForDepthEstimation,wo as SapiensForNormalEstimation,yo as SapiensForSemanticSegmentation,bo as SapiensPreTrainedModel,vo as SeamlessM4TFeatureExtractor,xo as SegformerFeatureExtractor,Mo as SegformerForImageClassification,To as SegformerForSemanticSegmentation,ko as SegformerModel,$o as SegformerPreTrainedModel,Co as Seq2SeqLMOutput,So as SequenceClassifierOutput,Po as SiglipImageProcessor,Eo as SiglipModel,Fo as SiglipPreTrainedModel,Ao as SiglipTextModel,Io as SiglipTokenizer,zo as SiglipVisionModel,Oo as SpeechT5FeatureExtractor,Bo as SpeechT5ForSpeechToText,Lo as SpeechT5ForTextToSpeech,Do as SpeechT5HifiGan,Ro as SpeechT5Model,No as SpeechT5PreTrainedModel,Vo as SpeechT5Processor,jo as SpeechT5Tokenizer,qo as SqueezeBertForMaskedLM,Go as SqueezeBertForQuestionAnswering,Uo as SqueezeBertForSequenceClassification,Wo as SqueezeBertModel,Ho as SqueezeBertPreTrainedModel,Xo as SqueezeBertTokenizer,Ko as StableLmForCausalLM,Qo as StableLmModel,Yo as StableLmPreTrainedModel,Zo as Starcoder2ForCausalLM,Jo as Starcoder2Model,el as Starcoder2PreTrainedModel,tl as StoppingCriteria,nl as StoppingCriteriaList,rl as SummarizationPipeline,al as Swin2SRForImageSuperResolution,sl as Swin2SRImageProcessor,il as Swin2SRModel,ol as Swin2SRPreTrainedModel,ll as SwinForImageClassification,ul as SwinModel,dl as SwinPreTrainedModel,cl as T5ForConditionalGeneration,pl as T5Model,hl as T5PreTrainedModel,ml as T5Tokenizer,fl as TableTransformerForObjectDetection,gl as TableTransformerModel,_l as TableTransformerObjectDetectionOutput,wl as TableTransformerPreTrainedModel,yl as Tensor,bl as Text2TextGenerationPipeline,vl as TextClassificationPipeline,xl as TextGenerationPipeline,Ml as TextStreamer,Tl as TextToAudioPipeline,kl as TokenClassificationPipeline,$l as TokenClassifierOutput,Cl as TokenizerModel,Sl as TrOCRForCausalLM,Pl as TrOCRPreTrainedModel,El as TranslationPipeline,Fl as UniSpeechForCTC,Al as UniSpeechForSequenceClassification,Il as UniSpeechModel,zl as UniSpeechPreTrainedModel,Ol as UniSpeechSatForAudioFrameClassification,Bl as UniSpeechSatForCTC,Ll as UniSpeechSatForSequenceClassification,Dl as UniSpeechSatModel,Rl as UniSpeechSatPreTrainedModel,Nl as ViTFeatureExtractor,Vl as ViTForImageClassification,jl as ViTImageProcessor,ql as ViTMAEModel,Gl as ViTMAEPreTrainedModel,Ul as ViTMSNForImageClassification,Wl as ViTMSNModel,Hl as ViTMSNPreTrainedModel,Xl as ViTModel,Kl as ViTPreTrainedModel,Ql as VisionEncoderDecoderModel,Yl as VitMatteForImageMatting,Zl as VitMatteImageProcessor,Jl as VitMattePreTrainedModel,eu as VitsModel,tu as VitsModelOutput,nu as VitsPreTrainedModel,ru as VitsTokenizer,au as Wav2Vec2BertForCTC,su as Wav2Vec2BertForSequenceClassification,iu as Wav2Vec2BertModel,ou as Wav2Vec2BertPreTrainedModel,lu as Wav2Vec2CTCTokenizer,uu as Wav2Vec2FeatureExtractor,du as Wav2Vec2ForAudioFrameClassification,cu as Wav2Vec2ForCTC,pu as Wav2Vec2ForSequenceClassification,hu as Wav2Vec2Model,mu as Wav2Vec2PreTrainedModel,fu as Wav2Vec2ProcessorWithLM,gu as WavLMForAudioFrameClassification,_u as WavLMForCTC,wu as WavLMForSequenceClassification,yu as WavLMForXVector,bu as WavLMModel,vu as WavLMPreTrainedModel,xu as WeSpeakerFeatureExtractor,Mu as WeSpeakerResNetModel,Tu as WeSpeakerResNetPreTrainedModel,ku as WhisperFeatureExtractor,$u as WhisperForConditionalGeneration,Cu as WhisperModel,Su as WhisperPreTrainedModel,Pu as WhisperProcessor,Eu as WhisperTextStreamer,Fu as WhisperTokenizer,Au as XLMForQuestionAnswering,Iu as XLMForSequenceClassification,zu as XLMForTokenClassification,Ou as XLMModel,Bu as XLMPreTrainedModel,Lu as XLMRobertaForMaskedLM,Du as XLMRobertaForQuestionAnswering,Ru as XLMRobertaForSequenceClassification,Nu as XLMRobertaForTokenClassification,Vu as XLMRobertaModel,ju as XLMRobertaPreTrainedModel,qu as XLMRobertaTokenizer,Gu as XLMTokenizer,Uu as XLMWithLMHeadModel,Wu as XVectorOutput,Hu as YolosFeatureExtractor,Xu as YolosForObjectDetection,Ku as YolosModel,Qu as YolosObjectDetectionOutput,Yu as YolosPreTrainedModel,Zu as ZeroShotAudioClassificationPipeline,Ju as ZeroShotClassificationPipeline,ed as ZeroShotImageClassificationPipeline,td as ZeroShotObjectDetectionPipeline,nd as bankers_round,rd as cat,ad as cos_sim,sd as dot,id as dynamic_time_warping,od as env,ld as full,ud as full_like,dd as getKeyValueShapes,cd as hamming,pd as hanning,hd as interpolate,md as interpolate_4d,fd as interpolate_data,gd as is_chinese_char,_d as layer_norm,wd as log_softmax,yd as magnitude,bd as matmul,vd as max,xd as mean,Md as mean_pooling,Td as medianFilter,kd as mel_filter_bank,$d as min,Cd as ones,Sd as ones_like,Pd as permute,Ed as permute_data,Fd as pipeline,Ad as quantize_embeddings,Id as read_audio,zd as rfft,Od as round,Bd as softmax,Ld as spectrogram,Dd as stack,Rd as std_mean,Nd as topk,Vd as window_function,jd as zeros,qd as zeros_like};

Callers 15

beginCloseConfirmationFunction · 0.80
closeAllFilesFunction · 0.80
formatReplacementFunction · 0.80
patchLinesFunction · 0.80
initFunction · 0.80
setWhitelistFunction · 0.80
userProjectsTextFunction · 0.80
setUserProjectsFunction · 0.80
searchMemoriesFunction · 0.80
bulkDeleteMemoriesFunction · 0.80
bulkCopyMemoriesFunction · 0.80
bulkExportMemoriesFunction · 0.80

Calls 2

cloneMethod · 0.95
map_Method · 0.80

Tested by

no test coverage detected