loss.py 182 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437
  1. # Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. import math
  15. # TODO: define loss functions of neural network
  16. import paddle
  17. from paddle import _C_ops, base, in_dynamic_mode
  18. from paddle.static.nn.control_flow import Assert
  19. from paddle.utils import deprecated
  20. from ...base.data_feeder import check_variable_and_dtype
  21. from ...base.framework import (
  22. _current_expected_place,
  23. core,
  24. in_dynamic_or_pir_mode,
  25. in_pir_mode,
  26. )
  27. from ...base.layer_helper import LayerHelper
  28. from ...common_ops_import import Variable
  29. from ...tensor.manipulation import reshape
  30. __all__ = []
  31. kIgnoreIndex = -100
  32. def dice_loss(input, label, epsilon=0.00001, name=None):
  33. r"""
  34. Dice loss for comparing the similarity between the input predictions and the label.
  35. This implementation is for binary classification, where the input is sigmoid
  36. predictions of each pixel, usually used for segmentation task. The dice loss can
  37. be defined as the following equation:
  38. .. math::
  39. dice\_loss &= 1 - \frac{2 * intersection\_area}{total\_area} \\
  40. &= \frac{(total\_area - intersection\_area) - intersection\_area}{total\_area} \\
  41. &= \frac{(union\_area - intersection\_area)}{total\_area}
  42. Parameters:
  43. input (Tensor): Tensor, rank>=2, shape is :math:`[N_1, N_2, ..., N_k, D]`, where :math:`N_1` is
  44. the batch_size, :math:`D` is the number of categories. It is usually the output
  45. predictions of sigmoid activation. The data type can be float32 or float64.
  46. label (Tensor): Tensor, the ground truth with the same rank as input, shape is :math:`[N_1, N_2, ..., N_k, 1]`.
  47. where :math:`N_1` is the batch_size. The data type can be int32 or int64.
  48. epsilon (float): The epsilon will be added to the numerator and denominator.
  49. If both input and label are empty, it makes sure dice is 1.
  50. Default: 0.00001
  51. name(str, optional): The default value is None.
  52. Normally there is no need for user to set this property.
  53. For more information, please refer to :ref:`api_guide_Name`
  54. Returns:
  55. 0-D Tensor, which shape is [], data type is the same as `input` .
  56. Example:
  57. .. code-block:: python
  58. >>> import paddle
  59. >>> import paddle.nn.functional as F
  60. >>> x = paddle.randn((3,224,224,2))
  61. >>> label = paddle.randint(high=2, shape=(3,224,224,1))
  62. >>> predictions = F.softmax(x)
  63. >>> loss = F.dice_loss(input=predictions, label=label)
  64. """
  65. assert input.dtype in (paddle.float32, paddle.float64)
  66. assert label.dtype in (paddle.int32, paddle.int64)
  67. assert (
  68. len(input.shape) >= 2
  69. ), "The rank of input should be greater than or equal to 2."
  70. assert len(input.shape) == len(label.shape), (
  71. "The rank of input and label should be equal, "
  72. "but received input: %d, label: %d."
  73. % (len(input.shape), len(label.shape))
  74. )
  75. assert label.shape[-1] == 1, (
  76. "The last dimension of label should be 1, "
  77. "but received %d." % label.shape[-1]
  78. )
  79. assert (
  80. input.shape[:-1] == label.shape[:-1]
  81. ), "All dimensions should be equal except the last one."
  82. assert (
  83. input.numel() > 0 and label.numel() > 0
  84. ), "Any dimension of input and label cannot be equal to 0."
  85. label = paddle.squeeze(label, [-1])
  86. label = paddle.nn.functional.one_hot(label, input.shape[-1])
  87. reduce_dim = list(range(1, len(input.shape)))
  88. inse = paddle.sum(input * label, axis=reduce_dim)
  89. dice_denominator = paddle.sum(input, axis=reduce_dim) + paddle.sum(
  90. label, axis=reduce_dim
  91. )
  92. dice_score = 1 - inse * 2 / (dice_denominator + epsilon)
  93. return paddle.mean(dice_score)
  94. def log_loss(input, label, epsilon=1e-4, name=None):
  95. r"""
  96. **Negative Log Loss Layer**
  97. This layer accepts input predictions and target label and returns the
  98. negative log loss.
  99. .. math::
  100. Out = -label * \log{(input + \epsilon)}
  101. - (1 - label) * \log{(1 - input + \epsilon)}
  102. Args:
  103. input (Tensor|list): A 2-D tensor with shape [N x 1], where N is the
  104. batch size. This input is a probability computed
  105. by the previous operator. Data type float32.
  106. label (Tensor|list): The ground truth which is a 2-D tensor with
  107. shape [N x 1], where N is the batch size.
  108. Data type float32.
  109. epsilon (float, optional): A small number for numerical stability. Default 1e-4.
  110. name(str|None): For detailed information, please refer to
  111. :ref:`api_guide_Name` . Usually name is no need to set and None by default.
  112. Returns:
  113. Tensor, which shape is [N x 1], data type is float32.
  114. Examples:
  115. .. code-block:: python
  116. >>> import paddle
  117. >>> import paddle.nn.functional as F
  118. >>> label = paddle.randn((10,1))
  119. >>> prob = paddle.randn((10,1))
  120. >>> cost = F.log_loss(input=prob, label=label)
  121. """
  122. if in_dynamic_or_pir_mode():
  123. return _C_ops.log_loss(input, label, epsilon)
  124. helper = LayerHelper('log_loss', **locals())
  125. check_variable_and_dtype(input, 'input', ['float32'], 'log_loss')
  126. check_variable_and_dtype(label, 'label', ['float32'], 'log_loss')
  127. loss = helper.create_variable_for_type_inference(dtype=input.dtype)
  128. helper.append_op(
  129. type='log_loss',
  130. inputs={'Predicted': [input], 'Labels': [label]},
  131. outputs={'Loss': [loss]},
  132. attrs={'epsilon': epsilon},
  133. )
  134. return loss
  135. def base_softmax_with_cross_entropy(
  136. logits,
  137. label,
  138. soft_label=False,
  139. ignore_index=-100,
  140. numeric_stable_mode=True,
  141. return_softmax=False,
  142. axis=-1,
  143. ):
  144. r"""
  145. This operator implements the cross entropy loss function with softmax. This function
  146. combines the calculation of the softmax operation and the cross entropy loss function
  147. to provide a more numerically stable gradient.
  148. Because this operator performs a softmax on logits internally, it expects
  149. unscaled logits. This operator should not be used with the output of
  150. softmax operator since that would produce incorrect results.
  151. When the attribute :attr:`soft_label` is set :attr:`False`, this operators
  152. expects mutually exclusive hard labels, each sample in a batch is in exactly
  153. one class with a probability of 1.0. Each sample in the batch will have a
  154. single label.
  155. The equation is as follows:
  156. 1) Hard label (one-hot label, so every sample has exactly one class)
  157. .. math::
  158. \\loss_j=-\text{logits}_{label_j} +\log\left(\sum_{i=0}^{K}\exp(\text{logits}_i)\right), j = 1,..., K
  159. 2) Soft label (each sample can have a distribution over all classes)
  160. .. math::
  161. \\loss_j= -\sum_{i=0}^{K}\text{label}_i\left(\text{logits}_i - \log\left(\sum_{i=0}^{K}\exp(\text{logits}_i)\right)\right), j = 1,...,K
  162. 3) If :attr:`numeric_stable_mode` is :attr:`True`, softmax is calculated first by:
  163. .. math::
  164. \\max_j&=\max_{i=0}^{K}{\text{logits}_i} \\
  165. log\_max\_sum_j &= \log\sum_{i=0}^{K}\exp(logits_i - max_j)\\
  166. softmax_j &= \exp(logits_j - max_j - {log\_max\_sum}_j)
  167. and then cross entropy loss is calculated by softmax and label.
  168. Args:
  169. logits (Tensor): A multi-dimension ``Tensor`` , and the data type is float32 or float64. The input tensor of unscaled log probabilities.
  170. label (Tensor): The ground truth ``Tensor`` , data type is the same
  171. as the ``logits`` . If :attr:`soft_label` is set to :attr:`True`,
  172. Label is a ``Tensor`` in the same shape with :attr:`logits`.
  173. If :attr:`soft_label` is set to :attr:`True`, Label is a ``Tensor``
  174. in the same shape with :attr:`logits` expect shape in dimension :attr:`axis` as 1.
  175. soft_label (bool, optional): A flag to indicate whether to interpret the given
  176. labels as soft labels. Default False.
  177. ignore_index (int, optional): Specifies a target value that is ignored and does
  178. not contribute to the input gradient. Only valid
  179. if :attr:`soft_label` is set to :attr:`False`.
  180. Default: kIgnoreIndex(-100).
  181. numeric_stable_mode (bool, optional): A flag to indicate whether to use a more
  182. numerically stable algorithm. Only valid
  183. when :attr:`soft_label` is :attr:`False`
  184. and GPU is used. When :attr:`soft_label`
  185. is :attr:`True` or CPU is used, the
  186. algorithm is always numerically stable.
  187. Note that the speed may be slower when use
  188. stable algorithm. Default: True.
  189. return_softmax (bool, optional): A flag indicating whether to return the softmax
  190. along with the cross entropy loss. Default: False.
  191. axis (int, optional): The index of dimension to perform softmax calculations. It
  192. should be in range :math:`[-1, rank - 1]`, while :math:`rank`
  193. is the rank of input :attr:`logits`. Default: -1.
  194. Returns:
  195. - If `return_softmax` is False, return the cross entropy loss as a ``Tensor``.
  196. The dtype is the same as the input ``logits``. The shape is consistent with ``logits`` except in dimension :attr:`axis` as 1.
  197. - If `return_softmax` is True, return a tuple of two ``Tensor``: the cross entropy loss and the softmax result.
  198. The dtype of the cross entropy loss is the same as the input ``logits``, and the shape is consistent with ``logits``
  199. except in dimension :attr:`axis` as 1. The dtype and shape of the softmax result are the same as the input ``logits``.
  200. Examples:
  201. .. code-block:: python
  202. >>> import paddle
  203. >>> paddle.seed(2023)
  204. >>> logits = paddle.to_tensor([0.4, 0.6, 0.9])
  205. >>> label = paddle.randint(high=2, shape=[1], dtype="int64")
  206. >>> out = paddle.nn.functional.softmax_with_cross_entropy(logits=logits, label=label)
  207. >>> print(out)
  208. Tensor(shape=[1], dtype=float32, place=Place(cpu), stop_gradient=True,
  209. [1.15328646])
  210. """
  211. input_dims = len(list(logits.shape))
  212. if input_dims == 0:
  213. raise ValueError('The dimension of input should be larger than zero!')
  214. label_dims = len(list(label.shape))
  215. if input_dims - 1 != label_dims and input_dims != label_dims:
  216. raise ValueError(
  217. f'Expected input_dims - 1 = label_dims or input_dims == label_dims\
  218. (got input_dims{input_dims}, label_dims{label_dims})'
  219. )
  220. if input_dims - 1 == label_dims:
  221. label = paddle.unsqueeze(label, axis=axis)
  222. if in_dynamic_or_pir_mode():
  223. softmax, loss = _C_ops.cross_entropy_with_softmax(
  224. logits,
  225. label,
  226. soft_label,
  227. True,
  228. numeric_stable_mode,
  229. ignore_index,
  230. axis,
  231. )
  232. if not return_softmax:
  233. return loss
  234. else:
  235. return loss, softmax
  236. else:
  237. attrs = {
  238. 'soft_label': soft_label,
  239. 'ignore_index': ignore_index,
  240. 'numeric_stable_mode': numeric_stable_mode,
  241. 'axis': axis,
  242. }
  243. helper = LayerHelper('softmax_with_cross_entropy', **locals())
  244. softmax = helper.create_variable_for_type_inference(dtype=logits.dtype)
  245. loss = helper.create_variable_for_type_inference(dtype=logits.dtype)
  246. outputs = {'Softmax': softmax, 'Loss': loss}
  247. helper.append_op(
  248. type='softmax_with_cross_entropy',
  249. inputs={'Logits': logits, 'Label': label},
  250. outputs=outputs,
  251. attrs=attrs,
  252. )
  253. if return_softmax:
  254. return loss, softmax
  255. return loss
  256. def npair_loss(anchor, positive, labels, l2_reg=0.002):
  257. """
  258. Npair loss requires paired data. Npair loss has two parts: the first part is L2
  259. regularizer on the embedding vector; the second part is cross entropy loss which
  260. takes the similarity matrix of anchor and positive as logits.
  261. For more information, please refer to:
  262. `Improved Deep Metric Learning with Multi class N pair Loss Objective <http://www.nec-labs.com/uploads/images/Department-Images/MediaAnalytics/papers/nips16_npairmetriclearning.pdf>`_
  263. Args:
  264. anchor(Tensor): embedding vector for the anchor image. shape=[batch_size, embedding_dims],
  265. the data type is float32 or float64.
  266. positive(Tensor): embedding vector for the positive image. shape=[batch_size, embedding_dims],
  267. the data type is float32 or float64.
  268. labels(Tensor): 1-D tensor. shape=[batch_size], the data type is float32 or float64 or int64.
  269. l2_reg(float32): L2 regularization term on embedding vector, default: 0.002.
  270. Returns:
  271. A 0-D Tensor representing the npair loss, the data type is the same as anchor, the shape is [].
  272. Examples:
  273. .. code-block:: python
  274. >>> import paddle
  275. >>> DATATYPE = "float32"
  276. >>> paddle.seed(2023)
  277. >>> anchor = paddle.rand(shape=(18, 6), dtype=DATATYPE)
  278. >>> positive = paddle.rand(shape=(18, 6), dtype=DATATYPE)
  279. >>> labels = paddle.rand(shape=(18,), dtype=DATATYPE)
  280. >>> npair_loss = paddle.nn.functional.npair_loss(anchor, positive, labels, l2_reg = 0.002)
  281. >>> print(npair_loss)
  282. Tensor(shape=[], dtype=float32, place=Place(cpu), stop_gradient=True,
  283. 2.94269347)
  284. """
  285. if in_dynamic_mode():
  286. if anchor.size == 0:
  287. raise ValueError("The dims of anchor should be greater than 0.")
  288. if positive.size == 0:
  289. raise ValueError("The dims of positive should be greater than 0.")
  290. check_variable_and_dtype(
  291. anchor, 'anchor', ['float32', 'float64'], 'npair_loss'
  292. )
  293. check_variable_and_dtype(
  294. positive, 'positive', ['float32', 'float64'], 'positive'
  295. )
  296. check_variable_and_dtype(
  297. labels, 'labels', ['float32', 'float64', 'int64'], 'labels'
  298. )
  299. Beta = 0.25
  300. batch_size = labels.shape[0]
  301. labels = paddle.reshape(labels, shape=[batch_size, 1])
  302. labels = paddle.tile(labels, repeat_times=[1, batch_size])
  303. labels = paddle.equal(labels, paddle.transpose(labels, perm=[1, 0])).astype(
  304. 'float32'
  305. )
  306. labels = labels / paddle.sum(labels, axis=1, keepdim=True)
  307. l2loss = paddle.mean(paddle.sum(paddle.square(anchor), 1)) + paddle.mean(
  308. paddle.sum(paddle.square(positive), 1)
  309. )
  310. l2loss = l2loss * Beta * l2_reg
  311. similarity_matrix = paddle.matmul(
  312. anchor, positive, transpose_x=False, transpose_y=True
  313. )
  314. softmax_ce = base_softmax_with_cross_entropy(
  315. logits=similarity_matrix, label=labels, soft_label=True
  316. )
  317. cross_entropy = paddle.sum(labels * softmax_ce, 0)
  318. celoss = paddle.mean(cross_entropy)
  319. return l2loss + celoss
  320. def square_error_cost(input, label):
  321. r"""
  322. This op accepts input predictions and target label and returns the
  323. squared error cost.
  324. For predictions label, and target label, the equation is:
  325. .. math::
  326. Out = (input - label)^2
  327. Parameters:
  328. input (Tensor): Input tensor, the data type should be float32.
  329. label (Tensor): Label tensor, the data type should be float32.
  330. Returns:
  331. Tensor, The tensor storing the element-wise squared error
  332. difference between input and label.
  333. Examples:
  334. .. code-block:: python
  335. >>> import paddle
  336. >>> input = paddle.to_tensor([1.1, 1.9])
  337. >>> label = paddle.to_tensor([1.0, 2.0])
  338. >>> output = paddle.nn.functional.square_error_cost(input, label)
  339. >>> print(output)
  340. Tensor(shape=[2], dtype=float32, place=Place(cpu), stop_gradient=True,
  341. [0.01000000, 0.01000000])
  342. """
  343. if in_dynamic_or_pir_mode():
  344. minus_out = _C_ops.subtract(input, label)
  345. square_out = _C_ops.square(minus_out)
  346. return square_out
  347. else:
  348. check_variable_and_dtype(
  349. input, "input", ['float32', 'float64'], 'square_error_cost'
  350. )
  351. check_variable_and_dtype(
  352. label, "label", ['float32', 'float64'], 'square_error_cost'
  353. )
  354. helper = LayerHelper('square_error_cost', **locals())
  355. minus_out = helper.create_variable_for_type_inference(dtype=input.dtype)
  356. helper.append_op(
  357. type='elementwise_sub',
  358. inputs={'X': [input], 'Y': [label]},
  359. outputs={'Out': [minus_out]},
  360. )
  361. square_out = helper.create_variable_for_type_inference(
  362. dtype=input.dtype
  363. )
  364. helper.append_op(
  365. type='square',
  366. inputs={'X': [minus_out]},
  367. outputs={'Out': [square_out]},
  368. )
  369. return square_out
  370. def edit_distance(
  371. input,
  372. label,
  373. normalized=True,
  374. ignored_tokens=None,
  375. input_length=None,
  376. label_length=None,
  377. ):
  378. """
  379. This op computes the edit distances, also called Levenshtein distance, between a batch of
  380. hypothesis strings and their references. It measures how dissimilar two strings are by counting
  381. the minimum number of operations to transform one string into another.
  382. The operations include insertion, deletion, and substitution.
  383. For example, given hypothesis string A = "kitten" and reference
  384. B = "sitting", A will be transformed into B
  385. at least after two substitutions and one insertion:
  386. "kitten" -> "sitten" -> "sittin" -> "sitting"
  387. So the edit distance between A and B is 3.
  388. The input is a Tensor, the input_length and label_length should be supported.
  389. The `batch_size` of labels should be same as `input`.
  390. The output include the edit distance value between every pair of input and related label, and the number of sequence.
  391. If Attr(normalized) is true,
  392. the edit distance value will be divided by the length of label.
  393. Parameters:
  394. input(Tensor): The input tensor, its rank should be equal to 2 and its data type should be int64.
  395. label(Tensor): The label tensor, its rank should be equal to 2 and its data type should be int64.
  396. normalized(bool, default True): Indicated whether to normalize the edit distance.
  397. ignored_tokens(list<int>, default None): Tokens that will be removed before
  398. calculating edit distance.
  399. input_length(Tensor): The length for each sequence in `input` if it's of Tensor type, it should have shape `(batch_size, )` and its data type should be int64.
  400. label_length(Tensor): The length for each sequence in `label` if it's of Tensor type, it should have shape `(batch_size, )` and its data type should be int64.
  401. NOTE: To be avoid unexpected result, the value of every elements in input_length and label_length should be equal to the value of the second dimension of input and label. For example, The input: [[1,2,3,4],[5,6,7,8],[9,10,11,12]], the shape of input is [3,4] and the input_length should be [4,4,4]
  402. Returns:
  403. Tuple:
  404. distance(Tensor): edit distance result, its data type is float32, and its shape is (batch_size, 1).
  405. sequence_num(Tensor): sequence number, its data type is float32, and its shape is (1,).
  406. Examples:
  407. .. code-block:: python
  408. >>> import paddle
  409. >>> import paddle.nn.functional as F
  410. >>> input = paddle.to_tensor([[1,2,3],[4,5,6],[4,4,4],[1,1,1]], dtype='int64')
  411. >>> label = paddle.to_tensor([[1,3,4,1],[4,5,8,1],[7,7,7,1],[1,1,1,1]], dtype='int64')
  412. >>> input_len = paddle.to_tensor([3,3,3,3], dtype='int64')
  413. >>> label_len = paddle.to_tensor([4,4,4,4], dtype='int64')
  414. >>> distance, sequence_num = F.loss.edit_distance(input=input, label=label, input_length=input_len, label_length=label_len, normalized=False)
  415. >>> print(distance)
  416. Tensor(shape=[1], dtype=int64, place=Place(cpu), stop_gradient=True,
  417. [4])
  418. >>> print(sequence_num)
  419. Tensor(shape=[4, 1], dtype=float32, place=Place(cpu), stop_gradient=True,
  420. [[3.],
  421. [2.],
  422. [4.],
  423. [1.]])
  424. >>> distance, sequence_num = F.loss.edit_distance(input=input, label=label, input_length=input_len, label_length=label_len, normalized=True)
  425. >>> print(distance)
  426. Tensor(shape=[1], dtype=int64, place=Place(cpu), stop_gradient=True,
  427. [4])
  428. >>> print(sequence_num)
  429. Tensor(shape=[4, 1], dtype=float32, place=Place(cpu), stop_gradient=True,
  430. [[0.75000000],
  431. [0.50000000],
  432. [1. ],
  433. [0.25000000]])
  434. """
  435. helper = LayerHelper("edit_distance", **locals())
  436. # remove some tokens from input and labels
  437. if ignored_tokens is not None and len(ignored_tokens) > 0:
  438. erased_input = helper.create_variable_for_type_inference(dtype="int64")
  439. erased_label = helper.create_variable_for_type_inference(dtype="int64")
  440. helper.append_op(
  441. type="sequence_erase",
  442. inputs={"X": [input]},
  443. outputs={"Out": [erased_input]},
  444. attrs={"tokens": ignored_tokens},
  445. )
  446. input = erased_input
  447. helper.append_op(
  448. type="sequence_erase",
  449. inputs={"X": [label]},
  450. outputs={"Out": [erased_label]},
  451. attrs={"tokens": ignored_tokens},
  452. )
  453. label = erased_label
  454. if in_dynamic_mode():
  455. return _C_ops.edit_distance(
  456. input, label, input_length, label_length, normalized
  457. )
  458. check_variable_and_dtype(input, 'input', ['int64'], 'edit_distance')
  459. check_variable_and_dtype(label, 'label', ['int64'], 'edit_distance')
  460. this_inputs = {"Hyps": [input], "Refs": [label]}
  461. if input_length is not None and label_length is not None:
  462. this_inputs['HypsLength'] = [input_length]
  463. this_inputs['RefsLength'] = [label_length]
  464. # edit distance op
  465. edit_distance_out = helper.create_variable_for_type_inference(dtype="int64")
  466. sequence_num = helper.create_variable_for_type_inference(dtype="int64")
  467. helper.append_op(
  468. type="edit_distance",
  469. inputs=this_inputs,
  470. outputs={"Out": [edit_distance_out], "SequenceNum": [sequence_num]},
  471. attrs={"normalized": normalized},
  472. )
  473. return edit_distance_out, sequence_num
  474. def binary_cross_entropy(
  475. input, label, weight=None, reduction='mean', name=None
  476. ):
  477. """
  478. Measure the binary_cross_entropy loss between input predictions ``input``
  479. and target labels ``label`` . The binary_cross_entropy loss can be described as:
  480. If :attr:`weight` is set, the loss is:
  481. .. math::
  482. Out = -1 * weight * (label * log(input) + (1 - label) * log(1 - input))
  483. If :attr:`weight` is None, the loss is:
  484. .. math::
  485. Out = -1 * (label * log(input) + (1 - label) * log(1 - input))
  486. If :attr:`reduction` set to ``'none'``, the interface will return the original loss `Out`.
  487. If :attr:`reduction` set to ``'mean'``, the reduced mean loss is:
  488. .. math::
  489. Out = MEAN(Out)
  490. If :attr:`reduction` set to ``'sum'``, the reduced sum loss is:
  491. .. math::
  492. Out = SUM(Out)
  493. Note that the input predictions ``input`` always be the output of sigmoid, and the target labels ``label``
  494. should be numbers between 0 and 1.
  495. Parameters:
  496. input (Tensor): The input predications tensor. 2-D tensor with shape: [N, *],
  497. N is batch_size, `*` means number of additional dimensions. The ``input``
  498. should always be the output of sigmod. Available dtype is float16, float32, float64.
  499. label (Tensor): The target labels tensor. 2-D tensor with the same shape as
  500. ``input``. The target labels which values should be numbers between 0 and 1.
  501. Available dtype is float16, float32, float64.
  502. weight (Tensor, optional): A manual rescaling weight given to the loss of each
  503. batch element. If given, has to be a Tensor of size nbatch and the data type
  504. is float32, float64. Default is ``'None'``.
  505. reduction (str, optional): Indicate how to average the loss by batch_size,
  506. the candidates are ``'none'`` | ``'mean'`` | ``'sum'``.
  507. If :attr:`reduction` is ``'none'``, the unreduced loss is returned;
  508. If :attr:`reduction` is ``'mean'``, the reduced mean loss is returned;
  509. If :attr:`reduction` is ``'sum'``, the summed loss is returned.
  510. Default is ``'mean'``.
  511. name (str, optional): Name for the operation (optional, default is None).
  512. For more information, please refer to :ref:`api_guide_Name`.
  513. Returns:
  514. Tensor. If ``reduction`` is ``'none'``, the shape of output is
  515. same as ``input`` , else the shape of output is scalar.
  516. Examples:
  517. .. code-block:: python
  518. >>> import paddle
  519. >>> input = paddle.to_tensor([0.5, 0.6, 0.7], 'float32')
  520. >>> label = paddle.to_tensor([1.0, 0.0, 1.0], 'float32')
  521. >>> output = paddle.nn.functional.binary_cross_entropy(input, label)
  522. >>> print(output)
  523. Tensor(shape=[], dtype=float32, place=Place(cpu), stop_gradient=True,
  524. 0.65537095)
  525. """
  526. if reduction not in ['sum', 'mean', 'none']:
  527. raise ValueError(
  528. "The value of 'reduction' in binary_cross_entropy should be 'sum', "
  529. "'mean' or 'none', but received %s, which is not allowed."
  530. % reduction
  531. )
  532. if in_dynamic_or_pir_mode():
  533. out = _C_ops.bce_loss(input, label)
  534. if weight is not None:
  535. out = _C_ops.multiply(out, weight, 'axis', -1)
  536. if reduction == 'sum':
  537. return _C_ops.sum(out, [], None, False)
  538. elif reduction == 'mean':
  539. return _C_ops.mean_all(out)
  540. else:
  541. return out
  542. else:
  543. check_variable_and_dtype(
  544. input,
  545. 'input',
  546. ['float16', 'float32', 'float64'],
  547. 'binary_cross_entropy',
  548. )
  549. check_variable_and_dtype(
  550. label,
  551. 'label',
  552. ['float16', 'float32', 'float64'],
  553. 'binary_cross_entropy',
  554. )
  555. sub_name = name if weight is None and reduction == 'none' else None
  556. helper = LayerHelper("binary_cross_entropy", name=sub_name)
  557. out = helper.create_variable_for_type_inference(dtype=input.dtype)
  558. helper.append_op(
  559. type='bce_loss',
  560. inputs={
  561. 'X': [input],
  562. 'Label': [label],
  563. },
  564. outputs={'Out': [out]},
  565. )
  566. if weight is not None:
  567. if isinstance(weight, paddle.static.Variable):
  568. weight_name = name if reduction == 'none' else None
  569. out = paddle.multiply(out, weight, name=weight_name)
  570. else:
  571. raise ValueError(
  572. "The weight is not a Tensor, please convert to Tensor."
  573. )
  574. if reduction == 'sum':
  575. return paddle.sum(out, name=name)
  576. elif reduction == 'mean':
  577. return paddle.mean(out, name=name)
  578. else:
  579. return out
  580. def binary_cross_entropy_with_logits(
  581. logit, label, weight=None, reduction='mean', pos_weight=None, name=None
  582. ):
  583. r"""
  584. Combine the sigmoid layer and the :ref:`api_paddle_nn_BCELoss` layer.
  585. This measures the element-wise probability error in classification tasks
  586. in which each class is independent.
  587. This can be thought of as predicting labels for a data-point, where labels
  588. are not mutually exclusive. For example, a news article can be about
  589. politics, technology or sports at the same time or none of these.
  590. Firstly, calculate loss function as follows:
  591. .. math::
  592. Out = -Labels * \log(\sigma(Logit)) - (1 - Labels) * \log(1 - \sigma(Logit))
  593. We know that :math:`\sigma(Logit) = \frac{1}{1 + e^{-Logit}}`. By substituting this we get:
  594. .. math::
  595. Out = Logit - Logit * Labels + \log(1 + e^{-Logit})
  596. For stability and to prevent overflow of :math:`e^{-Logit}` when Logit < 0,
  597. we reformulate the loss as follows:
  598. .. math::
  599. Out = \max(Logit, 0) - Logit * Labels + \log(1 + e^{-\|Logit\|})
  600. Then, if ``weight`` or ``pos_weight`` is not None, then multiply the
  601. weight tensor on the loss `Out`. The ``weight`` tensor will attach different
  602. weight on every items in the batch. The ``pos_weight`` will attach different
  603. weight on the positive label of each class.
  604. Finally, apply reduce operation on the loss.
  605. If :attr:`reduction` set to ``'none'``, will return the original loss `Out`.
  606. If :attr:`reduction` set to ``'mean'``, the reduced mean loss is :math:`Out = MEAN(Out)`.
  607. If :attr:`reduction` set to ``'sum'``, the reduced sum loss is :math:`Out = SUM(Out)`.
  608. Note that the target labels ``label`` should be numbers between 0 and 1.
  609. Args:
  610. logit (Tensor): The input predications tensor. 2-D tensor with shape: [N, *],
  611. N is batch_size, `*` means number of additional dimensions. The ``logit``
  612. is usually the output of Linear layer. Available dtype is float32, float64.
  613. label (Tensor): The target labels tensor. 2-D tensor with the same shape as
  614. ``logit``. The target labels which values should be numbers between 0 and 1.
  615. Available dtype is float32, float64.
  616. weight (Tensor, optional): A manual rescaling weight given to the loss of each
  617. batch element. If given, it has to be a 1D Tensor whose size is `[N, ]`,
  618. The data type is float32, float64. Default is ``'None'``.
  619. reduction (str, optional): Indicate how to average the loss by batch_size,
  620. the candidates are ``'none'`` | ``'mean'`` | ``'sum'``.
  621. If :attr:`reduction` is ``'none'``, the unreduced loss is returned;
  622. If :attr:`reduction` is ``'mean'``, the reduced mean loss is returned;
  623. If :attr:`reduction` is ``'sum'``, the summed loss is returned.
  624. Default is ``'mean'``.
  625. pos_weight (Tensor, optional): A weight of positive examples. Must be a vector
  626. with length equal to the number of classes. The data type is float32, float64.
  627. Default is ``'None'``.
  628. name (str, optional): Name for the operation (optional, default is None).
  629. For more information, please refer to :ref:`api_guide_Name`.
  630. Returns:
  631. Tensor. If ``reduction`` is ``'none'``, the shape of output is
  632. same as ``logit`` , else the shape of output is scalar.
  633. Examples:
  634. .. code-block:: python
  635. >>> import paddle
  636. >>> logit = paddle.to_tensor([5.0, 1.0, 3.0])
  637. >>> label = paddle.to_tensor([1.0, 0.0, 1.0])
  638. >>> output = paddle.nn.functional.binary_cross_entropy_with_logits(logit, label)
  639. >>> print(output)
  640. Tensor(shape=[], dtype=float32, place=Place(cpu), stop_gradient=True,
  641. 0.45618808)
  642. """
  643. if reduction not in ['sum', 'mean', 'none']:
  644. raise ValueError(
  645. "The value of 'reduction' in binary_cross_entropy_with_logits "
  646. "should be 'sum', 'mean' or 'none', but received %s, which is not allowed."
  647. % reduction
  648. )
  649. if in_dynamic_or_pir_mode():
  650. one = _C_ops.full(
  651. [1],
  652. 1.0,
  653. logit.dtype,
  654. _current_expected_place(),
  655. )
  656. if pos_weight is not None:
  657. pos_weight = _C_ops.add(
  658. _C_ops.multiply(label, _C_ops.subtract(pos_weight, one)), one
  659. )
  660. out = _C_ops.sigmoid_cross_entropy_with_logits(
  661. logit, label, pos_weight, False, -100
  662. )
  663. if weight is not None:
  664. out = _C_ops.multiply(out, weight)
  665. if reduction == "sum":
  666. return _C_ops.sum(out, [], None, False)
  667. elif reduction == "mean":
  668. return _C_ops.mean_all(out)
  669. else:
  670. return out
  671. else:
  672. check_variable_and_dtype(
  673. logit,
  674. 'logit',
  675. ['float32', 'float64'],
  676. 'binary_cross_entropy_with_logits',
  677. )
  678. check_variable_and_dtype(
  679. label,
  680. 'label',
  681. ['float32', 'float64'],
  682. 'binary_cross_entropy_with_logits',
  683. )
  684. sigmoid_name = None
  685. if reduction == 'none' and pos_weight is None and weight is None:
  686. sigmoid_name = name
  687. helper = LayerHelper("sigmoid_cross_entropy_with_logits", **locals())
  688. out = helper.create_variable_for_type_inference(dtype=logit.dtype)
  689. one = paddle.full(shape=[1], fill_value=1.0, dtype=logit.dtype)
  690. if pos_weight is not None:
  691. check_variable_and_dtype(
  692. pos_weight,
  693. 'pos_weight',
  694. ['float32', 'float64'],
  695. 'binary_cross_entropy_with_logits',
  696. )
  697. pos_weight = paddle.add(
  698. paddle.multiply(label, paddle.subtract(pos_weight, one)), one
  699. )
  700. helper.append_op(
  701. type="sigmoid_cross_entropy_with_logits",
  702. inputs={"X": logit, "Label": label, "pos_weight": pos_weight},
  703. attrs={"ignore_index": kIgnoreIndex, 'normalize': False},
  704. outputs={"Out": out},
  705. )
  706. if weight is not None:
  707. check_variable_and_dtype(
  708. weight,
  709. 'weight',
  710. ['float32', 'float64'],
  711. 'binary_cross_entropy_with_logits',
  712. )
  713. weight_name = name if reduction == 'none' else None
  714. out = paddle.multiply(out, weight, name=weight_name)
  715. if reduction == "sum":
  716. return paddle.sum(out, name=name)
  717. elif reduction == "mean":
  718. return paddle.mean(out, name=name)
  719. return out
  720. def hsigmoid_loss(
  721. input,
  722. label,
  723. num_classes,
  724. weight,
  725. bias=None,
  726. path_table=None,
  727. path_code=None,
  728. is_sparse=False,
  729. name=None,
  730. ):
  731. """
  732. The hierarchical sigmoid organizes the classes into a complete binary tree to reduce the computational complexity
  733. and speed up the model training, especially the training of language model.
  734. Each leaf node of the complete binary tree represents a class(word) and each non-leaf node acts as a binary classifier.
  735. For each class(word), there's a unique path from root to itself, hsigmoid calculate the cost for each non-leaf node on
  736. the path, and sum them to get a total cost.
  737. Comparing to softmax, hsigmoid can reduce the computational complexity from :math:`O(N)` to :math:`O(logN)`, where :math:`N`
  738. represents the number of classes or the size of word dict.
  739. The API supports default tree and custom tree. For the default tree, you can refer to `Hierarchical Probabilistic Neural
  740. Network Language Model <http://www.iro.umontreal.ca/~lisa/pointeurs/hierarchical-nnlm-aistats05.pdf>`_.
  741. For the custom tree, you need to set :attr:`is_custom` to True, and do the following steps (take the language model as an example):
  742. 1. Using a custom word dict to build a binary tree, each leaf node should be an word in the word dict.
  743. 2. Creating a dict map word_id -> path that from the word to the root node, we call it path_table.
  744. 3. Creating a dict map word_id -> code of path that from the word to the root node, we call it path_code.
  745. Code means the label of each binary classifier, 1 indicate true, 0 indicate false.
  746. 4. Now, each word should has its path and code along the path, you can pass a batch of path and code related
  747. to the same batch of inputs.
  748. Parameters:
  749. input (Tensor): A tensor with the shape [N, D], where N is the size of mini-batch,
  750. and D is the feature size. Its data type supports float32 or float64.
  751. label (Tensor): A tensor contains the labels of training data. Its shape is [N, 1]
  752. and data type is int64.
  753. num_classes (int): The number of classes or the size of word dict, must be greater than 2.
  754. If the default tree is used (path_code and path_table is None are None), `num_classes`
  755. should not be None. If the custom tree is used (path_code and path_table is None are not None),
  756. `num_classes` should be the number of non-leaf nodes, which indicates the num of
  757. classes using by the binary classifier.
  758. weight (Tensor): A tensor with shape (num_classes - 1, D), with the same data type as `input`.
  759. bias (Tensor, optional): A tensor with shape (num_classes - 1, 1), with the same data type as `input`.
  760. If `bias` is None, no bias will be add. Default is None.
  761. path_table (Tensor, optional): A tensor that stores each batch of samples' path from leaf to root
  762. node, its shape is [N, L] and data type is int64, where L is the length of path. For each sample i,
  763. path_table[i] is a np.array like structure and each element in this array is the indexes in parent
  764. nodes' weight matrix. If `path_table` and `path_code` are None, the default tree will be used.
  765. Default is None.
  766. path_code (Tensor, optional): A tensor that stores each batch of samples' code of path from leaf
  767. to root node, its shape is [N, L] and data type is int64, which is the same as :attr:`path_table`.
  768. Each code of path is consisted with the code of nodes from leaf to root node. If `path_table` and
  769. `path_code` are None, the default tree will be used. Default is None.
  770. is_sparse (bool, optional): Whether use sparse updating instead of dense updating. If `is_sparse` is True,
  771. the gradient of `weight` and `input` will be sparse. Default is False.
  772. name (str, optional): Name for the operation (optional, default is None).
  773. For more information, please refer to :ref:`api_guide_Name`.
  774. Returns:
  775. A tensor with the cost of hierarchical sigmoid, its shape is [N, 1] and data type is the same as `input`.
  776. Examples:
  777. .. code-block:: python
  778. >>> import paddle
  779. >>> import paddle.nn.functional as F
  780. >>> paddle.set_device('cpu')
  781. >>> paddle.seed(2023)
  782. >>> input = paddle.uniform([4, 3])
  783. >>> print(input)
  784. Tensor(shape=[4, 3], dtype=float32, place=Place(cpu), stop_gradient=True,
  785. [[ 0.73167229, 0.04029441, -0.48078126],
  786. [ 0.81050646, -0.15199822, -0.18717426],
  787. [ 0.94041789, 0.48874724, 0.03570259],
  788. [ 0.46585739, 0.95573163, -0.91368192]])
  789. >>> label = paddle.to_tensor([0, 1, 4, 5])
  790. >>> num_classes = 5
  791. >>> weight = paddle.uniform([num_classes - 1, 3])
  792. >>> print(weight)
  793. Tensor(shape=[4, 3], dtype=float32, place=Place(cpu), stop_gradient=True,
  794. [[-0.14721161, 0.43916738, -0.58377075],
  795. [-0.60536981, -0.23151302, -0.70793629],
  796. [-0.54572451, -0.10784978, -0.56684279],
  797. [ 0.35370791, -0.07079649, 0.84765708]])
  798. >>> out = F.hsigmoid_loss(input, label, num_classes, weight)
  799. >>> print(out)
  800. Tensor(shape=[4, 1], dtype=float32, place=Place(cpu), stop_gradient=True,
  801. [[2.23681736],
  802. [1.97140026],
  803. [1.66425037],
  804. [2.54727197]])
  805. """
  806. if num_classes < 2:
  807. raise ValueError(f'Expected num_classes >= 2 (got {num_classes})')
  808. if in_dynamic_mode():
  809. out, _, _ = _C_ops.hsigmoid_loss(
  810. input,
  811. label,
  812. weight,
  813. bias,
  814. path_table,
  815. path_code,
  816. num_classes,
  817. is_sparse,
  818. is_sparse,
  819. )
  820. return out
  821. check_variable_and_dtype(
  822. input, 'input', ['float32', 'float64'], 'hsigmoid_loss'
  823. )
  824. check_variable_and_dtype(label, 'label', ['int64'], 'hsigmoid_loss')
  825. check_variable_and_dtype(
  826. weight, 'weight', ['float32', 'float64'], 'hsigmoid_loss'
  827. )
  828. if bias is not None:
  829. check_variable_and_dtype(
  830. bias, 'bias', ['float32', 'float64'], 'hsigmoid_loss'
  831. )
  832. if path_table is not None:
  833. check_variable_and_dtype(
  834. path_table, 'path_table', ['int64'], 'hsigmoid_loss'
  835. )
  836. if path_code is not None:
  837. check_variable_and_dtype(
  838. path_code, 'path_code', ['int64'], 'hsigmoid_loss'
  839. )
  840. if in_pir_mode():
  841. out, _, _ = _C_ops.hsigmoid_loss(
  842. input,
  843. label,
  844. weight,
  845. bias,
  846. path_table,
  847. path_code,
  848. num_classes,
  849. is_sparse,
  850. is_sparse,
  851. )
  852. return out
  853. else:
  854. attrs = {
  855. "num_classes": num_classes,
  856. "is_sparse": is_sparse,
  857. }
  858. inputs = {
  859. "X": input,
  860. "W": weight,
  861. "Bias": bias,
  862. "PathTable": path_table,
  863. "PathCode": path_code,
  864. "Label": label,
  865. }
  866. helper = LayerHelper('hsigmoid_loss', **locals())
  867. out = helper.create_variable_for_type_inference(input.dtype)
  868. pre_out = helper.create_variable_for_type_inference(input.dtype)
  869. outputs = {"Out": out, "PreOut": pre_out, "W_Out": weight}
  870. helper.append_op(
  871. type="hierarchical_sigmoid",
  872. inputs=inputs,
  873. outputs=outputs,
  874. attrs=attrs,
  875. )
  876. return out
  877. def smooth_l1_loss(input, label, reduction='mean', delta=1.0, name=None):
  878. r"""
  879. Calculate smooth_l1_loss. Creates a criterion that uses a squared
  880. term if the absolute element-wise error falls below 1 and an L1 term otherwise.
  881. In some cases it can prevent exploding gradients and it is more robust and less
  882. sensitivity to outliers. Also known as the Huber loss:
  883. .. math::
  884. loss(x,y) = \frac{1}{n}\sum_{i}z_i
  885. where :math:`z_i` is given by:
  886. .. math::
  887. \mathop{z_i} = \left\{\begin{array}{rcl}
  888. 0.5(x_i - y_i)^2 & & {if |x_i - y_i| < \delta} \\
  889. \delta * |x_i - y_i| - 0.5 * \delta^2 & & {otherwise}
  890. \end{array} \right.
  891. Parameters:
  892. input (Tensor): Input tensor, the data type is float32 or float64. Shape is
  893. (N, C), where C is number of classes, and if shape is more than 2D, this
  894. is (N, C, D1, D2,..., Dk), k >= 1.
  895. label (Tensor): Label tensor, the data type is float32 or float64. The shape of label
  896. is the same as the shape of input.
  897. reduction (str, optional): Indicate how to average the loss by batch_size,
  898. the candidates are ``'none'`` | ``'mean'`` | ``'sum'``.
  899. If :attr:`reduction` is ``'mean'``, the reduced mean loss is returned;
  900. If :attr:`reduction` is ``'sum'``, the reduced sum loss is returned.
  901. If :attr:`reduction` is ``'none'``, the unreduced loss is returned.
  902. Default is ``'mean'``.
  903. delta (float, optional): Specifies the hyperparameter :math:`\delta` to be used.
  904. The value determines how large the errors need to be to use L1. Errors
  905. smaller than delta are minimized with L2. Parameter is ignored for
  906. negative/zero values. Default = 1.0
  907. name (str, optional): For details, please refer to :ref:`api_guide_Name`. Generally, no setting is required. Default: None.
  908. Returns:
  909. Tensor, The tensor variable storing the smooth_l1_loss of input and label.
  910. Examples:
  911. .. code-block:: python
  912. >>> import paddle
  913. >>> paddle.seed(2023)
  914. >>> input = paddle.rand([3, 3]).astype('float32')
  915. >>> label = paddle.rand([3, 3]).astype('float32')
  916. >>> output = paddle.nn.functional.smooth_l1_loss(input, label)
  917. >>> print(output)
  918. Tensor(shape=[], dtype=float32, place=Place(cpu), stop_gradient=True,
  919. 0.08307374)
  920. """
  921. if in_dynamic_or_pir_mode():
  922. out = _C_ops.huber_loss(input, label, delta)
  923. else:
  924. check_variable_and_dtype(
  925. input,
  926. 'input',
  927. ['float16', 'float32', 'float64', 'uint16'],
  928. 'smooth_l1_loss',
  929. )
  930. check_variable_and_dtype(
  931. label,
  932. 'label',
  933. ['float16', 'float32', 'float64', 'uint16'],
  934. 'smooth_l1_loss',
  935. )
  936. helper = LayerHelper('huber_loss', **locals())
  937. residual = helper.create_variable_for_type_inference(
  938. dtype=helper.input_dtype()
  939. )
  940. out = helper.create_variable_for_type_inference(
  941. dtype=helper.input_dtype()
  942. )
  943. helper.append_op(
  944. type='huber_loss',
  945. inputs={'X': input, 'Y': label},
  946. outputs={'Out': out, 'Residual': residual},
  947. attrs={'delta': delta},
  948. )
  949. if reduction not in ['sum', 'mean', 'none']:
  950. raise ValueError(
  951. "The value of 'reduction' in smooth_l1_loss should be 'sum', 'mean' or"
  952. " 'none', but received %s, which is not allowed." % reduction
  953. )
  954. if reduction == 'none':
  955. return out
  956. elif reduction == 'mean':
  957. return paddle.mean(out)
  958. elif reduction == 'sum':
  959. return paddle.sum(out)
  960. def margin_ranking_loss(
  961. input, other, label, margin=0.0, reduction='mean', name=None
  962. ):
  963. r"""
  964. Calculate the margin rank loss between the input, other and label, use the math function as follows.
  965. .. math::
  966. margin\_rank\_loss = max(0, -label * (input - other) + margin)
  967. If :attr:`reduction` set to ``'mean'``, the reduced mean loss is:
  968. .. math::
  969. Out = MEAN(margin\_rank\_loss)
  970. If :attr:`reduction` set to ``'sum'``, the reduced sum loss is:
  971. .. math::
  972. Out = SUM(margin\_rank\_loss)
  973. If :attr:`reduction` set to ``'none'``, just return the origin ``margin_rank_loss``.
  974. Parameters:
  975. input(Tensor): the first input tensor, it's data type should be float32, float64.
  976. other(Tensor): the second input tensor, it's data type should be float32, float64.
  977. label(Tensor): the label value corresponding to input, it's data type should be float32, float64.
  978. margin (float, optional): The margin value to add, default value is 0;
  979. reduction (str, optional): Indicate the reduction to apply to the loss, the candidates are ``'none'``, ``'mean'``, ``'sum'``.If :attr:`reduction` is ``'none'``, the unreduced loss is returned; If :attr:`reduction` is ``'mean'``, the reduced mean loss is returned. If :attr:`reduction` is ``'sum'``, the reduced sum loss is returned. Default is ``'mean'``.
  980. name (str, optional): Name for the operation (optional, default is None). For more information, please refer to :ref:`api_guide_Name`.
  981. Returns:
  982. Tensor, if :attr:`reduction` is ``'mean'`` or ``'sum'``, the out shape is :math:`[]`, otherwise the shape is the same as `input` .The same dtype as input tensor.
  983. Examples:
  984. .. code-block:: python
  985. >>> import paddle
  986. >>> input = paddle.to_tensor([[1, 2], [3, 4]], dtype='float32')
  987. >>> other = paddle.to_tensor([[2, 1], [2, 4]], dtype='float32')
  988. >>> label = paddle.to_tensor([[1, -1], [-1, -1]], dtype='float32')
  989. >>> loss = paddle.nn.functional.margin_ranking_loss(input, other, label)
  990. >>> print(loss)
  991. Tensor(shape=[], dtype=float32, place=Place(cpu), stop_gradient=True,
  992. 0.75000000)
  993. """
  994. if reduction not in ['sum', 'mean', 'none']:
  995. raise ValueError(
  996. "The value of 'reduction' in MarginRankingLoss should be 'sum', 'mean' or 'none', but "
  997. "received %s, which is not allowed." % reduction
  998. )
  999. if in_dynamic_or_pir_mode():
  1000. out = _C_ops.subtract(other, input)
  1001. out = _C_ops.multiply(out, label)
  1002. if margin != 0.0:
  1003. margin = paddle.to_tensor([margin], dtype=out.dtype)
  1004. out = _C_ops.add(out, margin)
  1005. out = _C_ops.relu(out)
  1006. if reduction == 'sum':
  1007. return _C_ops.sum(out, [], None, False)
  1008. elif reduction == 'mean':
  1009. return _C_ops.mean_all(out)
  1010. return out
  1011. else:
  1012. helper = LayerHelper("margin_ranking_loss", **locals())
  1013. check_variable_and_dtype(
  1014. input, 'input', ['float32', 'float64'], 'margin_rank_loss'
  1015. )
  1016. check_variable_and_dtype(
  1017. other, 'other', ['float32', 'float64'], 'margin_rank_loss'
  1018. )
  1019. check_variable_and_dtype(
  1020. label, 'label', ['float32', 'float64'], 'margin_rank_loss'
  1021. )
  1022. out = paddle.subtract(input, other)
  1023. neg_label = paddle.neg(label)
  1024. out = paddle.multiply(neg_label, out)
  1025. if margin != 0.0:
  1026. margin_var = out.block.create_var(dtype=out.dtype)
  1027. margin_var = paddle.full(
  1028. shape=[1], fill_value=margin, dtype=out.dtype
  1029. )
  1030. out = paddle.add(out, margin_var)
  1031. result_out = helper.create_variable_for_type_inference(input.dtype)
  1032. if reduction == 'none':
  1033. helper.append_op(
  1034. type="relu", inputs={"X": out}, outputs={"Out": result_out}
  1035. )
  1036. return result_out
  1037. elif reduction == 'sum':
  1038. out = paddle.nn.functional.relu(out)
  1039. attrs = {"dim": [0], "keep_dim": False, "reduce_all": True}
  1040. helper.append_op(
  1041. type="reduce_sum",
  1042. inputs={"X": out},
  1043. outputs={"Out": result_out},
  1044. attrs=attrs,
  1045. )
  1046. return result_out
  1047. elif reduction == 'mean':
  1048. out = paddle.nn.functional.relu(out)
  1049. helper.append_op(
  1050. type="mean",
  1051. inputs={"X": out},
  1052. outputs={"Out": result_out},
  1053. attrs={},
  1054. )
  1055. return result_out
  1056. def l1_loss(input, label, reduction='mean', name=None):
  1057. r"""
  1058. Computes the L1 Loss of Tensor ``input`` and ``label`` as follows.
  1059. If `reduction` set to ``'none'``, the loss is:
  1060. .. math::
  1061. Out = \lvert input - label \rvert
  1062. If `reduction` set to ``'mean'``, the loss is:
  1063. .. math::
  1064. Out = MEAN(\lvert input - label \rvert)
  1065. If `reduction` set to ``'sum'``, the loss is:
  1066. .. math::
  1067. Out = SUM(\lvert input - label \rvert)
  1068. Parameters:
  1069. input (Tensor): The input tensor. The shapes is [N, `*`], where N is batch size and `*` means any number of additional dimensions. It's data type should be float32, float64, int32, int64.
  1070. label (Tensor): label. The shapes is [N, `*`], same shape as ``input`` . It's data type should be float32, float64, int32, int64.
  1071. reduction (str, optional): Indicate the reduction to apply to the loss,
  1072. the candidates are ``'none'`` | ``'mean'`` | ``'sum'``.
  1073. If `reduction` is ``'none'``, the unreduced loss is returned;
  1074. If `reduction` is ``'mean'``, the reduced mean loss is returned.
  1075. If `reduction` is ``'sum'``, the reduced sum loss is returned.
  1076. Default is ``'mean'``.
  1077. name (str, optional): Name for the operation (optional, default is None). For more information, please refer to :ref:`api_guide_Name`.
  1078. Returns:
  1079. Tensor, the L1 Loss of Tensor ``input`` and ``label``.
  1080. If `reduction` is ``'none'``, the shape of output loss is :math:`[N, *]`, the same as ``input`` .
  1081. If `reduction` is ``'mean'`` or ``'sum'``, the shape of output loss is [].
  1082. Examples:
  1083. .. code-block:: python
  1084. >>> import paddle
  1085. >>> input = paddle.to_tensor([[1.5, 0.8], [0.2, 1.3]])
  1086. >>> label = paddle.to_tensor([[1.7, 1], [0.4, 0.5]])
  1087. >>> l1_loss = paddle.nn.functional.l1_loss(input, label)
  1088. >>> print(l1_loss)
  1089. Tensor(shape=[], dtype=float32, place=Place(cpu), stop_gradient=True,
  1090. 0.34999999)
  1091. >>> l1_loss = paddle.nn.functional.l1_loss(input, label, reduction='none')
  1092. >>> print(l1_loss)
  1093. Tensor(shape=[2, 2], dtype=float32, place=Place(cpu), stop_gradient=True,
  1094. [[0.20000005, 0.19999999],
  1095. [0.20000000, 0.79999995]])
  1096. >>> l1_loss = paddle.nn.functional.l1_loss(input, label, reduction='sum')
  1097. >>> print(l1_loss)
  1098. Tensor(shape=[], dtype=float32, place=Place(cpu), stop_gradient=True,
  1099. 1.39999998)
  1100. """
  1101. if reduction not in ['sum', 'mean', 'none']:
  1102. raise ValueError(
  1103. "The value of 'reduction' in L1Loss should be 'sum', 'mean' or 'none', but "
  1104. "received %s, which is not allowed." % reduction
  1105. )
  1106. if in_dynamic_or_pir_mode():
  1107. unreduced = _C_ops.abs(_C_ops.subtract(input, label))
  1108. if reduction == 'mean':
  1109. return _C_ops.mean_all(unreduced)
  1110. elif reduction == 'sum':
  1111. return _C_ops.sum(unreduced, [], None, False)
  1112. else:
  1113. return unreduced
  1114. else:
  1115. check_variable_and_dtype(
  1116. input,
  1117. 'input',
  1118. ['float32', 'float64', 'int32', 'int64', 'float16'],
  1119. 'l1_loss',
  1120. )
  1121. check_variable_and_dtype(
  1122. label,
  1123. 'label',
  1124. ['float32', 'float64', 'int32', 'int64', 'float16'],
  1125. 'l1_loss',
  1126. )
  1127. if reduction == 'sum':
  1128. unreduced = paddle.abs(paddle.subtract(x=input, y=label))
  1129. return paddle.sum(unreduced, name=name)
  1130. elif reduction == 'mean':
  1131. unreduced = paddle.abs(paddle.subtract(x=input, y=label))
  1132. return paddle.mean(unreduced, name=name)
  1133. else:
  1134. return paddle.abs(paddle.subtract(x=input, y=label, name=name))
  1135. def nll_loss(
  1136. input, label, weight=None, ignore_index=-100, reduction='mean', name=None
  1137. ):
  1138. """
  1139. This api returns negative log likelihood.
  1140. See more detail in :ref:`NLLLoss <api_paddle_nn_NLLLoss>` .
  1141. Parameters:
  1142. input (Tensor): Input tensor, the shape is :math:`[N, C]`, `C` is the number of classes.
  1143. But in K-dimension situation, the shape is :math:`[N, C, d_1, d_2, ..., d_K]`.
  1144. The data type is float32, float64.
  1145. label (Tensor): Label tensor, the shape is :math:`[N,]` or :math:`[N, d_1, d_2, ..., d_K]`.
  1146. The data type is int64.
  1147. weight (Tensor, optional): Weight tensor, a manual rescaling weight given
  1148. to each class. If given, it has to be a 1D Tensor whose size is `[C, ]`. Otherwise,
  1149. it treated as if having all ones. the data type is
  1150. float32, float64, Default is ``'None'``.
  1151. ignore_index (int, optional): Specifies a target value that is ignored
  1152. and does not contribute to the input gradient. Default is -100.
  1153. reduction (str, optional): Indicate how to average the loss,
  1154. the candidates are ``'none'`` | ``'mean'`` | ``'sum'``.
  1155. If `reduction` is ``'mean'``, the reduced mean loss is returned;
  1156. if `reduction` is ``'sum'``, the reduced sum loss is returned;
  1157. if `reduction` is ``'none'``, no reduction will be applied.
  1158. Default is ``'mean'``.
  1159. name (str, optional): Name for the operation (optional, default is None).
  1160. For more information, please refer to :ref:`api_guide_Name`.
  1161. Returns:
  1162. `Tensor`, the value of negative log likelihood loss.
  1163. Examples:
  1164. .. code-block:: python
  1165. >>> import paddle
  1166. >>> from paddle.nn.functional import nll_loss
  1167. >>> log_softmax = paddle.nn.LogSoftmax(axis=1)
  1168. >>> input = paddle.to_tensor([[0.88103855, 0.9908683 , 0.6226845 ],
  1169. ... [0.53331435, 0.07999352, 0.8549948 ],
  1170. ... [0.25879037, 0.39530203, 0.698465 ],
  1171. ... [0.73427284, 0.63575995, 0.18827209],
  1172. ... [0.05689114, 0.0862954 , 0.6325046 ]], "float32")
  1173. >>> log_out = log_softmax(input)
  1174. >>> label = paddle.to_tensor([0, 2, 1, 1, 0], "int64")
  1175. >>> result = nll_loss(log_out, label)
  1176. >>> print(result)
  1177. Tensor(shape=[], dtype=float32, place=Place(cpu), stop_gradient=True,
  1178. 1.07202101)
  1179. """
  1180. if reduction not in ['sum', 'mean', 'none']:
  1181. raise ValueError(
  1182. "The value of 'reduction' in nll_loss should be 'sum', 'mean' or "
  1183. "'none', but received %s, which is not allowed." % reduction
  1184. )
  1185. input_shape = list(input.shape)
  1186. input_dims = len(input_shape)
  1187. label_shape = list(label.shape)
  1188. label_dims = len(label_shape)
  1189. if input_dims - 1 != label_dims and input_dims != label_dims:
  1190. raise ValueError(
  1191. f"Expected input_dims - 1 = label_dims or input_dims == label_dims\
  1192. (got input_dims{input_dims}, label_dims{label_dims})"
  1193. )
  1194. if input_dims < 2:
  1195. raise ValueError(f'Expected 2 or more dimensions (got {input_dims})')
  1196. if input_shape[1] < 1:
  1197. raise ValueError(
  1198. f"Expected 1 or more classes (got num classes{input_shape[1]})"
  1199. )
  1200. n = input_shape[0]
  1201. c = input_shape[1]
  1202. if in_dynamic_or_pir_mode():
  1203. if input_dims != 2 and input_dims != 4:
  1204. input = _C_ops.reshape(input, [n, c, 1, -1])
  1205. label = _C_ops.reshape(label, [n, 1, -1])
  1206. out_shape = [n] + input_shape[2:]
  1207. out, total_weight = _C_ops.nll_loss(
  1208. input, label, weight, ignore_index, reduction
  1209. )
  1210. if input_dims != 2 and input_dims != 4 and reduction == 'none':
  1211. out = _C_ops.reshape(out, out_shape)
  1212. return out
  1213. else:
  1214. helper = LayerHelper('nll_loss', **locals())
  1215. if input_dims != 2 and input_dims != 4:
  1216. input = reshape(input, shape=[n, c, 1, -1])
  1217. label = reshape(label, shape=[n, 1, -1])
  1218. out_shape = [n] + input_shape[2:]
  1219. check_variable_and_dtype(
  1220. input, 'input', ['float32', 'float64'], 'nll_loss'
  1221. )
  1222. check_variable_and_dtype(label, 'label', ['int64'], 'nll_loss')
  1223. inputs = {'X': input, 'Label': label}
  1224. attrs = {'reduction': reduction, 'ignore_index': ignore_index}
  1225. if weight is not None:
  1226. if isinstance(weight, Variable):
  1227. inputs['Weight'] = weight
  1228. out = helper.create_variable_for_type_inference(dtype=input.dtype)
  1229. total_weight = helper.create_variable_for_type_inference(
  1230. dtype=input.dtype
  1231. )
  1232. outputs = {'Out': out, 'Total_weight': total_weight}
  1233. helper.append_op(
  1234. type='nll_loss', inputs=inputs, outputs=outputs, attrs=attrs
  1235. )
  1236. if input_dims != 2 and input_dims != 4 and reduction == 'none':
  1237. out = reshape(out, shape=out_shape)
  1238. return out
  1239. def poisson_nll_loss(
  1240. input,
  1241. label,
  1242. log_input=True,
  1243. full=False,
  1244. epsilon=1e-8,
  1245. reduction="mean",
  1246. name=None,
  1247. ):
  1248. r"""Poisson negative log likelihood loss.
  1249. See more detail in :ref:`PoissonNLLLoss <api_paddle_nn_PoissonNLLLoss>` .
  1250. Parameters:
  1251. input (Tensor):
  1252. Input tensor, expectation of underlying Poisson distribution.
  1253. The shape of input tensor should be `(N, *)` or `(*)` where `(*)` denotes any number of extra dimensions.
  1254. It's data type should be float16, bfloat16, float32, float64.
  1255. label (Tensor):
  1256. Label tensor, random sampled from Poisson distribution :math:`label \sim \text{Poisson}(input)`.
  1257. The shape of input tensor should be `(N, *)` or `(*)`, same shape as the input tensor.
  1258. It's data type should be float16, bfloat16, float32, float64.
  1259. log_input (bool, optional):
  1260. Whether to the treat input tensor as log input.
  1261. If ``True`` the loss is computed as, :math:`\exp(\text{input}) - \text{label} * \text{input}` .
  1262. If ``False`` then loss is :math:`\text{input} - \text{label} * \log(\text{input}+\text{epsilon})` .
  1263. Default: ``True``.
  1264. full (bool, optional):
  1265. Whether to compute full loss.
  1266. If ``True``, the Stirling approximation term is added.
  1267. If ``False``, the Stirling approximation is dropped.
  1268. Default: ``False``.
  1269. epsilon (float, optional):
  1270. A small value to avoid evaluation of :math:`\log(0)` when `log_input`\ =\ ``False``. ``epsilon > 0``.
  1271. Default: 1e-8.
  1272. reduction (str, optional):
  1273. Indicate how to reduce the loss, the candidates are ``'none'`` | ``'mean'`` | ``'sum'``.
  1274. If `reduction` is ``'mean'``, the reduced mean loss is returned;
  1275. if `reduction` is ``'sum'``, the reduced sum loss is returned;
  1276. if `reduction` is ``'none'``, no reduction will be applied.
  1277. Default is ``'mean'``.
  1278. name (str, optional):
  1279. Name for the operation (optional, default is None). For more information, please refer to :ref:`api_guide_Name`.
  1280. Examples:
  1281. .. code-block:: python
  1282. >>> import paddle
  1283. >>> import paddle.nn.functional as F
  1284. >>> paddle.seed(2023)
  1285. >>> input = paddle.randn([5, 2], dtype=paddle.float32)
  1286. >>> label = paddle.randn([5, 2], dtype=paddle.float32)
  1287. >>> loss = F.poisson_nll_loss(input, label, log_input=True, reduction='none')
  1288. >>> print(loss)
  1289. Tensor(shape=[5, 2], dtype=float32, place=Place(cpu), stop_gradient=True,
  1290. [[ 1.09998012, 3.68829036],
  1291. [ 1.95291090, 0.69603068],
  1292. [-0.39289063, -2.03713036],
  1293. [ 4.52518702, 1.28625548],
  1294. [ 3.94454789, 0.53521496]])
  1295. >>> loss = F.poisson_nll_loss(input, label, reduction='mean')
  1296. >>> print(loss)
  1297. Tensor(shape=[], dtype=float32, place=Place(cpu), stop_gradient=True,
  1298. 1.52983975)
  1299. """
  1300. # check parameter values
  1301. if epsilon <= 0:
  1302. raise ValueError(
  1303. "The value of `epsilon` in poisson_nll_loss should be positive, but received %f, which is not allowed"
  1304. % epsilon
  1305. )
  1306. if reduction not in ['sum', 'mean', 'none']:
  1307. raise ValueError(
  1308. "The value of 'reduction' in poisson_nll_loss should be 'sum', 'mean' or 'none', but "
  1309. "received %s, which is not allowed." % reduction
  1310. )
  1311. # check input dtype and dimension
  1312. check_variable_and_dtype(
  1313. input,
  1314. 'input',
  1315. ['float16', 'uint16', 'float32', 'float64'],
  1316. 'poisson_nll_loss',
  1317. )
  1318. check_variable_and_dtype(
  1319. label,
  1320. 'label',
  1321. ['float16', 'uint16', 'float32', 'float64'],
  1322. 'poisson_nll_loss',
  1323. )
  1324. if not (input.shape == label.shape):
  1325. raise ValueError("input's shape must equal to label's shape")
  1326. loss_out = 0
  1327. if log_input:
  1328. loss_out = paddle.exp(input) - label * input
  1329. else:
  1330. loss_out = input - label * paddle.log(input + epsilon)
  1331. if full:
  1332. stirling_approx = (
  1333. label * paddle.log(label)
  1334. - label
  1335. + 0.5 * paddle.log(2 * math.pi * label)
  1336. )
  1337. loss_out += paddle.where(
  1338. label > 1,
  1339. stirling_approx,
  1340. paddle.zeros_like(stirling_approx),
  1341. )
  1342. if reduction == 'mean':
  1343. loss_out = paddle.mean(loss_out)
  1344. elif reduction == 'sum':
  1345. loss_out = paddle.sum(loss_out)
  1346. return loss_out
  1347. def kl_div(input, label, reduction='mean', log_target=False, name=None):
  1348. r"""
  1349. Calculate the Kullback-Leibler divergence loss
  1350. between Input(X) and Input(Target). Notes that Input(X) is the
  1351. log-probability and Input(Target) is the probability.
  1352. KL divergence loss is calculated as follows:
  1353. If `log_target` is False:
  1354. $$l(x, y) = y * (\log(y) - x)$$
  1355. If `log_target` is True:
  1356. $$l(x, y) = \exp(y) * (y - x)$$
  1357. Here :math:`x` is input and :math:`y` is label.
  1358. If `reduction` is ``'none'``, the output loss is the same shape as the input, and the loss at each point is calculated separately. There is no reduction to the result.
  1359. If `reduction` is ``'mean'``, the output loss is the shape of [], and the output is the average of all losses.
  1360. If `reduction` is ``'sum'``, the output loss is the shape of [], and the output is the sum of all losses.
  1361. If `reduction` is ``'batchmean'``, the output loss is the shape of [N], N is the batch size, and the output is the sum of all losses divided by the batch size.
  1362. Args:
  1363. input (Tensor): The input tensor. The shapes is [N, *], where N is batch size and `*` means
  1364. any number of additional dimensions. It's data type should be float32, float64.
  1365. label (Tensor): label. The shapes is [N, *], same shape as ``input`` . It's data type should be float32, float64.
  1366. reduction (str, optional): Indicate how to average the loss,
  1367. the candidates are ``'none'`` | ``'batchmean'`` | ``'mean'`` | ``'sum'``.
  1368. If `reduction` is ``'mean'``, the reduced mean loss is returned;
  1369. If `reduction` is ``'batchmean'``, the sum loss divided by batch size is returned;
  1370. if `reduction` is ``'sum'``, the reduced sum loss is returned;
  1371. if `reduction` is ``'none'``, no reduction will be applied.
  1372. Default is ``'mean'``.
  1373. log_target (bool, optional): Indicate whether `label` is passed in log space. Default is False.
  1374. name(str, optional): Name for the operation (optional, default is None). For more information,
  1375. please refer to :ref:`api_guide_Name`.
  1376. Returns:
  1377. Tensor: The KL divergence loss. The data type is same as input tensor
  1378. Examples:
  1379. .. code-block:: python
  1380. >>> import paddle
  1381. >>> import paddle.nn.functional as F
  1382. >>> paddle.seed(2023)
  1383. >>> shape = (5, 20)
  1384. >>> # input(x) should be a distribution in the log space
  1385. >>> x = F.log_softmax(paddle.randn(shape), axis=1).astype('float32')
  1386. >>> target = paddle.uniform(shape, min=-10, max=10).astype('float32')
  1387. >>> # 'batchmean' reduction, loss shape will be [], who is 0-D Tensor
  1388. >>> pred_loss = F.kl_div(x, target, reduction='batchmean')
  1389. >>> print(pred_loss.shape)
  1390. []
  1391. >>> # 'mean' reduction, loss shape will be [], who is 0-D Tensor
  1392. >>> pred_loss = F.kl_div(x, target, reduction='mean')
  1393. >>> print(pred_loss.shape)
  1394. []
  1395. >>> # 'sum' reduction, loss shape will be [], who is 0-D Tensor
  1396. >>> pred_loss = F.kl_div(x, target, reduction='sum')
  1397. >>> print(pred_loss.shape)
  1398. []
  1399. >>> # 'none' reduction, loss shape is same with input shape
  1400. >>> pred_loss = F.kl_div(x, target, reduction='none')
  1401. >>> print(pred_loss.shape)
  1402. [5, 20]
  1403. >>> # if label is in the log space, set log_target = True
  1404. >>> target = paddle.uniform(shape, min=0, max=10).astype('float32')
  1405. >>> log_target = paddle.log(target)
  1406. >>> pred_loss_1 = F.kl_div(x, target, reduction='none')
  1407. >>> pred_loss_2 = F.kl_div(x, log_target, reduction='none', log_target=True)
  1408. >>> print(paddle.allclose(pred_loss_1, pred_loss_2))
  1409. Tensor(shape=[], dtype=bool, place=Place(cpu), stop_gradient=True,
  1410. True)
  1411. """
  1412. # ugly type promotion
  1413. if (
  1414. base.data_feeder.convert_dtype(input.dtype) == 'float32'
  1415. and base.data_feeder.convert_dtype(label.dtype) == 'float64'
  1416. ):
  1417. input = paddle.cast(input, 'float64')
  1418. elif (
  1419. base.data_feeder.convert_dtype(input.dtype) == 'float64'
  1420. and base.data_feeder.convert_dtype(label.dtype) == 'float32'
  1421. ):
  1422. label = paddle.cast(label, 'float64')
  1423. if in_dynamic_or_pir_mode():
  1424. out = _C_ops.kldiv_loss(input, label, 'none', log_target)
  1425. if reduction == 'mean':
  1426. out = paddle.mean(out)
  1427. elif reduction == 'sum':
  1428. out = paddle.sum(out)
  1429. elif reduction == 'batchmean':
  1430. if len(input.shape) > 0:
  1431. batch_size = input.shape[0]
  1432. out = paddle.sum(out) / batch_size
  1433. return out
  1434. else:
  1435. helper = LayerHelper('kl_div', **locals())
  1436. check_variable_and_dtype(
  1437. input, 'input', ['float32', 'float64'], 'kl_div'
  1438. )
  1439. check_variable_and_dtype(
  1440. label, 'label', ['float32', 'float64'], 'kl_div'
  1441. )
  1442. base.data_feeder.check_type(reduction, 'reduction', str, 'kl_div')
  1443. loss = helper.create_variable_for_type_inference(dtype=input.dtype)
  1444. helper.append_op(
  1445. type='kldiv_loss',
  1446. inputs={'X': input, 'Target': label},
  1447. outputs={'Loss': loss},
  1448. attrs={'reduction': 'none', 'log_target': log_target},
  1449. )
  1450. if reduction == 'mean':
  1451. loss = paddle.mean(loss)
  1452. elif reduction == 'sum':
  1453. loss = paddle.sum(loss)
  1454. elif reduction == 'batchmean':
  1455. batch_size = paddle.shape(input)[0]
  1456. loss = paddle.sum(loss) / batch_size
  1457. return loss
  1458. def mse_loss(input, label, reduction='mean', name=None):
  1459. r"""
  1460. Accept input predications and label and returns the mean square error.
  1461. If :attr:`reduction` is set to ``'none'``, loss is calculated as:
  1462. .. math::
  1463. Out = (input - label)^2
  1464. If :attr:`reduction` is set to ``'mean'``, loss is calculated as:
  1465. .. math::
  1466. Out = \operatorname{mean}((input - label)^2)
  1467. If :attr:`reduction` is set to ``'sum'``, loss is calculated as:
  1468. .. math::
  1469. Out = \operatorname{sum}((input - label)^2)
  1470. Parameters:
  1471. input (Tensor): Input tensor, the data type should be float32 or float64.
  1472. label (Tensor): Label tensor, the data type should be float32 or float64.
  1473. reduction (string, optional): The reduction method for the output,
  1474. could be 'none' | 'mean' | 'sum'.
  1475. If :attr:`reduction` is ``'mean'``, the reduced mean loss is returned.
  1476. If :attr:`reduction` is ``'sum'``, the reduced sum loss is returned.
  1477. If :attr:`reduction` is ``'none'``, the unreduced loss is returned.
  1478. Default is ``'mean'``.
  1479. name (str, optional): Name for the operation (optional, default is None). For more information, please refer to :ref:`api_guide_Name`.
  1480. Returns:
  1481. Tensor, The tensor tensor storing the mean square error difference of input and label.
  1482. Examples:
  1483. .. code-block:: python
  1484. >>> import paddle
  1485. >>> mse_loss = paddle.nn.loss.MSELoss()
  1486. >>> input = paddle.to_tensor(1.5)
  1487. >>> label = paddle.to_tensor(1.7)
  1488. >>> output = mse_loss(input, label)
  1489. >>> print(output)
  1490. Tensor(shape=[], dtype=float32, place=Place(cpu), stop_gradient=True,
  1491. 0.04000002)
  1492. """
  1493. if reduction not in ['sum', 'mean', 'none']:
  1494. raise ValueError(
  1495. "'reduction' in 'mse_loss' should be 'sum', 'mean' or 'none', "
  1496. f"but received {reduction}."
  1497. )
  1498. if not in_dynamic_mode():
  1499. check_variable_and_dtype(
  1500. input, 'input', ['float32', 'float64'], 'mse_loss'
  1501. )
  1502. check_variable_and_dtype(
  1503. label, 'label', ['float32', 'float64'], 'mse_loss'
  1504. )
  1505. if reduction == 'none':
  1506. return paddle.square(paddle.subtract(input, label), name=name)
  1507. elif reduction == 'mean':
  1508. return paddle.mean(
  1509. paddle.square(paddle.subtract(input, label)), name=name
  1510. )
  1511. else:
  1512. return paddle.sum(
  1513. paddle.square(paddle.subtract(input, label)), name=name
  1514. )
  1515. def ctc_loss(
  1516. log_probs,
  1517. labels,
  1518. input_lengths,
  1519. label_lengths,
  1520. blank=0,
  1521. reduction='mean',
  1522. norm_by_times=False,
  1523. ):
  1524. """
  1525. An operator integrating the open source Warp-CTC library (https://github.com/baidu-research/warp-ctc)
  1526. to compute Connectionist Temporal Classification (CTC) loss.
  1527. It can be aliased as softmax with CTC, since a native softmax activation
  1528. is interated to the Warp-CTC library to normalize values for each row of the input tensor.
  1529. Parameters:
  1530. log_probs (Tensor): The unscaled probability sequence with padding, which is a 3-D Tensor. The tensor shape is [max_logit_length, batch_size, num_classes + 1], where max_logit_length is the longest length of input logit sequence. The data type should be float32 or float64.
  1531. labels (Tensor): The ground truth sequence with padding, which must be a 3-D Tensor. The tensor shape is [batch_size, max_label_length], where max_label_length is the longest length of label sequence. The data type must be int32.
  1532. input_lengths (Tensor): The length for each input sequence, it should have shape [batch_size] and dtype int64.
  1533. label_lengths (Tensor): The length for each label sequence, it should have shape [batch_size] and dtype int64.
  1534. blank (int, optional): The blank label index of Connectionist Temporal Classification (CTC) loss, which is in the half-opened interval [0, num_classes + 1). The data type must be int32. Default: 0.
  1535. reduction (str, optional): Indicate how to average the loss, the candidates are ``'none'`` | ``'mean'`` | ``'sum'``. If :attr:`reduction` is ``'mean'``, the output loss will be divided by the label_lengths, and then return the mean of quotient; If :attr:`reduction` is ``'sum'``, return the sum of loss; If :attr:`reduction` is ``'none'``, no reduction will be applied. Default: ``'mean'``.
  1536. norm_by_times (bool, optional): Whether to normalize the gradients by the number of time-step, which is also the sequence's length. There is no need to normalize the gradients if reduction mode is 'mean'. Default: False.
  1537. Returns:
  1538. Tensor, The Connectionist Temporal Classification (CTC) loss between ``log_probs`` and ``labels``. If attr:`reduction` is ``'none'``, the shape of loss is [batch_size], otherwise, the shape of loss is []. Data type is the same as ``log_probs``.
  1539. Examples:
  1540. .. code-block:: python
  1541. >>> # declarative mode
  1542. >>> import paddle.nn.functional as F
  1543. >>> import paddle
  1544. >>> import numpy as np
  1545. >>> # length of the longest logit sequence
  1546. >>> max_seq_length = 4
  1547. >>> #length of the longest label sequence
  1548. >>> max_label_length = 3
  1549. >>> # number of logit sequences
  1550. >>> batch_size = 2
  1551. >>> # class num
  1552. >>> class_num = 3
  1553. >>> log_probs = paddle.to_tensor(np.array([
  1554. ... [[4.17021990e-01, 7.20324516e-01, 1.14374816e-04],
  1555. ... [3.02332580e-01, 1.46755889e-01, 9.23385918e-02]],
  1556. ... [[1.86260208e-01, 3.45560730e-01, 3.96767467e-01],
  1557. ... [5.38816750e-01, 4.19194520e-01, 6.85219526e-01]],
  1558. ... [[2.04452246e-01, 8.78117442e-01, 2.73875929e-02],
  1559. ... [6.70467496e-01, 4.17304814e-01, 5.58689833e-01]],
  1560. ... [[1.40386939e-01, 1.98101491e-01, 8.00744593e-01],
  1561. ... [9.68261600e-01, 3.13424170e-01, 6.92322612e-01]],
  1562. ... [[8.76389146e-01, 8.94606650e-01, 8.50442126e-02],
  1563. ... [3.90547849e-02, 1.69830427e-01, 8.78142476e-01]]
  1564. ... ]), dtype="float32")
  1565. >>> labels = paddle.to_tensor([[1, 2, 2],
  1566. ... [1, 2, 2]], dtype="int32")
  1567. >>> input_lengths = paddle.to_tensor([5, 5], dtype="int64")
  1568. >>> label_lengths = paddle.to_tensor([3, 3], dtype="int64")
  1569. >>> loss = F.ctc_loss(log_probs, labels,
  1570. ... input_lengths,
  1571. ... label_lengths,
  1572. ... blank=0,
  1573. ... reduction='none')
  1574. >>> print(loss)
  1575. Tensor(shape=[2], dtype=float32, place=Place(cpu), stop_gradient=True,
  1576. [3.91798496, 2.90765190])
  1577. >>> loss = F.ctc_loss(log_probs, labels,
  1578. ... input_lengths,
  1579. ... label_lengths,
  1580. ... blank=0,
  1581. ... reduction='mean')
  1582. >>> print(loss)
  1583. Tensor(shape=[], dtype=float32, place=Place(cpu), stop_gradient=True,
  1584. 1.13760614)
  1585. """
  1586. def warpctc(
  1587. input,
  1588. label,
  1589. blank=0,
  1590. norm_by_times=False,
  1591. input_length=None,
  1592. label_length=None,
  1593. ):
  1594. if in_dynamic_or_pir_mode():
  1595. if input_length is None or label_length is None:
  1596. raise ValueError(
  1597. "input_length and label_length must not be None in dygraph mode!"
  1598. )
  1599. loss_out = _C_ops.warpctc(
  1600. input, label, input_length, label_length, blank, norm_by_times
  1601. )
  1602. return loss_out
  1603. else:
  1604. helper = LayerHelper('warpctc', **locals())
  1605. check_variable_and_dtype(
  1606. input, 'input', ['float32', 'float64'], "warpctc"
  1607. )
  1608. check_variable_and_dtype(label, 'label', ['int32'], "warpctc")
  1609. this_inputs = {'Logits': [input], 'Label': [label]}
  1610. if input_length is not None and label_length is not None:
  1611. check_variable_and_dtype(
  1612. input_length, 'LogitsLength', ['int64'], "warpctc"
  1613. )
  1614. check_variable_and_dtype(
  1615. label_length, 'LabelLength', ['int64'], "warpctc"
  1616. )
  1617. this_inputs['LogitsLength'] = [input_length]
  1618. this_inputs['LabelLength'] = [label_length]
  1619. loss_out = helper.create_variable_for_type_inference(
  1620. dtype=input.dtype
  1621. )
  1622. grad_out = helper.create_variable_for_type_inference(
  1623. dtype=input.dtype
  1624. )
  1625. helper.append_op(
  1626. type='warpctc',
  1627. inputs=this_inputs,
  1628. outputs={'WarpCTCGrad': [grad_out], 'Loss': [loss_out]},
  1629. attrs={
  1630. 'blank': blank,
  1631. 'norm_by_times': norm_by_times,
  1632. },
  1633. )
  1634. return loss_out
  1635. loss_out = warpctc(
  1636. log_probs, labels, blank, norm_by_times, input_lengths, label_lengths
  1637. )
  1638. loss_out = paddle.squeeze(loss_out, [-1])
  1639. assert reduction in ['mean', 'sum', 'none']
  1640. if reduction == 'mean':
  1641. loss_out = paddle.mean(loss_out / label_lengths.astype(loss_out.dtype))
  1642. elif reduction == 'sum':
  1643. loss_out = paddle.sum(loss_out)
  1644. return loss_out
  1645. def rnnt_loss(
  1646. input,
  1647. label,
  1648. input_lengths,
  1649. label_lengths,
  1650. blank=0,
  1651. fastemit_lambda=0.001,
  1652. reduction='mean',
  1653. name=None,
  1654. ):
  1655. """
  1656. An operator integrating the open source Warp-Transducer library (https://github.com/b-flo/warp-transducer.git)
  1657. to compute Sequence Transduction with Recurrent Neural Networks (RNN-T) loss.
  1658. Parameters:
  1659. input (Tensor): The logprobs sequence with padding, which is a 4-D Tensor. The tensor shape is [B, Tmax, Umax, D], where Tmax is the longest length of input logit sequence. The data type should be float32 or float64.
  1660. label (Tensor): The ground truth sequence with padding, which must be a 2-D Tensor. The tensor shape is [B, Umax], where Umax is the longest length of label sequence. The data type must be int32.
  1661. input_lengths (Tensor): The length for each input sequence, it should have shape [batch_size] and dtype int64.
  1662. label_lengths (Tensor): The length for each label sequence, it should have shape [batch_size] and dtype int64.
  1663. blank (int, optional): The blank label index of RNN-T loss, which is in the half-opened interval [0, B). The data type must be int32. Default is 0.
  1664. fastemit_lambda (float, default 0.001): Regularization parameter for FastEmit (https://arxiv.org/pdf/2010.11148.pdf)
  1665. reduction (string, optional): Indicate how to average the loss, the candidates are ``'none'`` | ``'mean'`` | ``'sum'``. If :attr:`reduction` is ``'mean'``, the output will be sum of loss and be divided by the batch_size; If :attr:`reduction` is ``'sum'``, return the sum of loss; If :attr:`reduction` is ``'none'``, no reduction will be applied. Default is ``'mean'``.
  1666. name (str, optional): Name for the operation (optional, default is None). For more information, please refer to :ref:`api_guide_Name`.
  1667. Returns:
  1668. Tensor, The RNN-T loss between ``logprobs`` and ``labels``. If attr:`reduction` is ``'none'``, the shape of loss is [batch_size], otherwise, the shape of loss is []. Data type is the same as ``logprobs``.
  1669. Examples:
  1670. .. code-block:: python
  1671. >>> # declarative mode
  1672. >>> import paddle.nn.functional as F
  1673. >>> import numpy as np
  1674. >>> import paddle
  1675. >>> import functools
  1676. >>> fn = functools.partial(F.rnnt_loss, reduction='sum', fastemit_lambda=0.0, blank=0)
  1677. >>> acts = np.array([[
  1678. ... [[0.1, 0.6, 0.1, 0.1, 0.1],
  1679. ... [0.1, 0.1, 0.6, 0.1, 0.1],
  1680. ... [0.1, 0.1, 0.2, 0.8, 0.1]],
  1681. ... [[0.1, 0.6, 0.1, 0.1, 0.1],
  1682. ... [0.1, 0.1, 0.2, 0.1, 0.1],
  1683. ... [0.7, 0.1, 0.2, 0.1, 0.1]]
  1684. ... ]])
  1685. >>> labels = [[1, 2]]
  1686. >>> acts = paddle.to_tensor(acts, stop_gradient=False)
  1687. >>> lengths = [acts.shape[1]] * acts.shape[0]
  1688. >>> label_lengths = [len(l) for l in labels]
  1689. >>> labels = paddle.to_tensor(labels, paddle.int32)
  1690. >>> lengths = paddle.to_tensor(lengths, paddle.int32)
  1691. >>> label_lengths = paddle.to_tensor(label_lengths, paddle.int32)
  1692. >>> costs = fn(acts, labels, lengths, label_lengths)
  1693. >>> print(costs)
  1694. Tensor(shape=[], dtype=float64, place=Place(cpu), stop_gradient=False,
  1695. -2.85042444)
  1696. """
  1697. def warprnnt(
  1698. input, label, input_length, label_length, blank=0, fastemit_lambda=0.001
  1699. ):
  1700. if in_dynamic_or_pir_mode():
  1701. loss_out = _C_ops.warprnnt(
  1702. input,
  1703. label,
  1704. input_length,
  1705. label_length,
  1706. blank,
  1707. fastemit_lambda,
  1708. )
  1709. return loss_out
  1710. helper = LayerHelper('warprnnt', **locals())
  1711. check_variable_and_dtype(
  1712. input, 'input', ['float32', 'float64'], "warprnnt"
  1713. )
  1714. check_variable_and_dtype(label, 'label', ['int32'], "warprnnt")
  1715. check_variable_and_dtype(
  1716. input_length, 'input_lengths', ['int32'], "warprnnt"
  1717. )
  1718. check_variable_and_dtype(
  1719. label_length, 'label_lengths', ['int32'], "warprnnt"
  1720. )
  1721. this_inputs = {
  1722. 'input': [input],
  1723. 'label': [label],
  1724. 'input_lengths': [input_length],
  1725. 'label_lengths': [label_length],
  1726. }
  1727. loss_out = helper.create_variable_for_type_inference(dtype=input.dtype)
  1728. grad_out = helper.create_variable_for_type_inference(dtype=input.dtype)
  1729. helper.append_op(
  1730. type='warprnnt',
  1731. inputs=this_inputs,
  1732. outputs={'warprnntgrad': [grad_out], 'loss': [loss_out]},
  1733. attrs={
  1734. 'blank': blank,
  1735. 'fastemit_lambda': fastemit_lambda,
  1736. },
  1737. )
  1738. return loss_out
  1739. B = input.shape[0]
  1740. # NOTE manually done log_softmax for CPU version,
  1741. # log_softmax is computed within GPU version.
  1742. # (B,)
  1743. loss_out = warprnnt(
  1744. input, label, input_lengths, label_lengths, blank, fastemit_lambda
  1745. )
  1746. assert reduction in ['mean', 'sum', 'none']
  1747. if reduction == 'mean':
  1748. loss_out = paddle.sum(loss_out, name=name) / B
  1749. elif reduction == 'sum':
  1750. loss_out = paddle.sum(loss_out, name=name)
  1751. return loss_out
  1752. def margin_cross_entropy(
  1753. logits,
  1754. label,
  1755. margin1=1.0,
  1756. margin2=0.5,
  1757. margin3=0.0,
  1758. scale=64.0,
  1759. group=None,
  1760. return_softmax=False,
  1761. reduction='mean',
  1762. ):
  1763. r"""
  1764. .. math::
  1765. L=-\frac{1}{N}\sum^N_{i=1}\log\frac{e^{s(cos(m_{1}\theta_{y_i}+m_{2})-m_{3})}}{e^{s(cos(m_{1}\theta_{y_i}+m_{2})-m_{3})}+\sum^n_{j=1,j\neq y_i} e^{scos\theta_{y_i}}}
  1766. where the :math:`\theta_{y_i}` is the angle between the feature :math:`x` and
  1767. the representation of class :math:`i`. The details of ArcFace loss
  1768. could be referred to https://arxiv.org/abs/1801.07698.
  1769. .. hint::
  1770. The API supports single GPU and multi GPU, and don't supports CPU.
  1771. For data parallel mode, set ``group=False``.
  1772. For model parallel mode, set ``group=None`` or the group instance return by paddle.distributed.new_group.
  1773. And logits.shape[-1] can be different at each rank.
  1774. Args:
  1775. logits (Tensor): shape[N, local_num_classes], the output of the normalized X multiply the normalized W.
  1776. The logits is shard_logits when using model parallel.
  1777. label (Tensor): shape[N] or shape[N, 1], the ground truth label.
  1778. margin1 (float, optional): m1 of margin loss, default value is `1.0`.
  1779. margin2 (float, optional): m2 of margin loss, default value is `0.5`.
  1780. margin3 (float, optional): m3 of margin loss, default value is `0.0`.
  1781. scale (float, optional): s of margin loss, default value is `64.0`.
  1782. group (Group, optional): The group instance return by paddle.distributed.new_group
  1783. or ``None`` for global default group or ``False`` for data parallel (do not communication cross ranks).
  1784. Default is ``None``.
  1785. return_softmax (bool, optional): Whether return softmax probability. Default value is `False`.
  1786. reduction (str, optional): The candidates are ``'none'`` | ``'mean'`` | ``'sum'``.
  1787. If :attr:`reduction` is ``'mean'``, return the average of loss;
  1788. If :attr:`reduction` is ``'sum'``, return the sum of loss;
  1789. If :attr:`reduction` is ``'none'``, no reduction will be applied.
  1790. Default value is `'mean'`.
  1791. Returns:
  1792. Tensor|tuple[Tensor, Tensor], return the cross entropy loss if
  1793. `return_softmax` is False, otherwise the tuple (loss, softmax),
  1794. softmax is shard_softmax when using model parallel, otherwise
  1795. softmax is in the same shape with input logits. If
  1796. ``reduction == None``, the shape of loss is ``[N, 1]``, otherwise
  1797. the shape is ``[]``.
  1798. Examples:
  1799. .. code-block:: python
  1800. :name: code-example1
  1801. >>> # doctest: +REQUIRES(env:GPU)
  1802. >>> import paddle
  1803. >>> paddle.seed(2023)
  1804. >>> paddle.device.set_device('gpu')
  1805. >>> m1 = 1.0
  1806. >>> m2 = 0.5
  1807. >>> m3 = 0.0
  1808. >>> s = 64.0
  1809. >>> batch_size = 2
  1810. >>> feature_length = 4
  1811. >>> num_classes = 4
  1812. >>> label = paddle.randint(low=0, high=num_classes, shape=[batch_size], dtype='int64')
  1813. >>> X = paddle.randn(
  1814. ... shape=[batch_size, feature_length],
  1815. ... dtype='float64')
  1816. >>> X_l2 = paddle.sqrt(paddle.sum(paddle.square(X), axis=1, keepdim=True))
  1817. >>> X = paddle.divide(X, X_l2)
  1818. >>> W = paddle.randn(
  1819. ... shape=[feature_length, num_classes],
  1820. ... dtype='float64')
  1821. >>> W_l2 = paddle.sqrt(paddle.sum(paddle.square(W), axis=0, keepdim=True))
  1822. >>> W = paddle.divide(W, W_l2)
  1823. >>> logits = paddle.matmul(X, W)
  1824. >>> loss, softmax = paddle.nn.functional.margin_cross_entropy(
  1825. ... logits, label, margin1=m1, margin2=m2, margin3=m3, scale=s, return_softmax=True, reduction=None)
  1826. >>> print(logits)
  1827. Tensor(shape=[2, 4], dtype=float64, place=Place(gpu:0), stop_gradient=True,
  1828. [[-0.59561850, 0.32797505, 0.80279214, 0.00144975],
  1829. [-0.16265212, 0.84155098, 0.62008629, 0.79126072]])
  1830. >>> print(label)
  1831. Tensor(shape=[2], dtype=int64, place=Place(gpu:0), stop_gradient=True,
  1832. [1, 0])
  1833. >>> print(loss)
  1834. Tensor(shape=[2, 1], dtype=float64, place=Place(gpu:0), stop_gradient=True,
  1835. [[61.94391901],
  1836. [93.30853839]])
  1837. >>> print(softmax)
  1838. Tensor(shape=[2, 4], dtype=float64, place=Place(gpu:0), stop_gradient=True,
  1839. [[0.00000000, 0.00000000, 1. , 0.00000000],
  1840. [0.00000000, 0.96152676, 0.00000067, 0.03847257]])
  1841. .. code-block:: python
  1842. :name: code-example2
  1843. >>> # doctest: +REQUIRES(env:DISTRIBUTED)
  1844. >>> # Multi GPU, test_margin_cross_entropy.py
  1845. >>> import paddle
  1846. >>> import paddle.distributed as dist
  1847. >>> paddle.seed(2023)
  1848. >>> strategy = dist.fleet.DistributedStrategy()
  1849. >>> dist.fleet.init(is_collective=True, strategy=strategy)
  1850. >>> rank_id = dist.get_rank()
  1851. >>> m1 = 1.0
  1852. >>> m2 = 0.5
  1853. >>> m3 = 0.0
  1854. >>> s = 64.0
  1855. >>> batch_size = 2
  1856. >>> feature_length = 4
  1857. >>> num_class_per_card = [4, 8]
  1858. >>> num_classes = paddle.sum(paddle.to_tensor(num_class_per_card))
  1859. >>> label = paddle.randint(low=0, high=num_classes.item(), shape=[batch_size], dtype='int64')
  1860. >>> label_list = []
  1861. >>> dist.all_gather(label_list, label)
  1862. >>> label = paddle.concat(label_list, axis=0)
  1863. >>> X = paddle.randn(
  1864. ... shape=[batch_size, feature_length],
  1865. ... dtype='float64')
  1866. >>> X_list = []
  1867. >>> dist.all_gather(X_list, X)
  1868. >>> X = paddle.concat(X_list, axis=0)
  1869. >>> X_l2 = paddle.sqrt(paddle.sum(paddle.square(X), axis=1, keepdim=True))
  1870. >>> X = paddle.divide(X, X_l2)
  1871. >>> W = paddle.randn(
  1872. ... shape=[feature_length, num_class_per_card[rank_id]],
  1873. ... dtype='float64')
  1874. >>> W_l2 = paddle.sqrt(paddle.sum(paddle.square(W), axis=0, keepdim=True))
  1875. >>> W = paddle.divide(W, W_l2)
  1876. >>> logits = paddle.matmul(X, W)
  1877. >>> loss, softmax = paddle.nn.functional.margin_cross_entropy(
  1878. ... logits, label, margin1=m1, margin2=m2, margin3=m3, scale=s, return_softmax=True, reduction=None)
  1879. >>> print(logits)
  1880. >>> print(label)
  1881. >>> print(loss)
  1882. >>> print(softmax)
  1883. >>> # python -m paddle.distributed.launch --gpus=0,1 --log_dir log test_margin_cross_entropy.py
  1884. >>> # cat log/workerlog.0
  1885. >>> # Tensor(shape=[4, 4], dtype=float64, place=Place(gpu:0), stop_gradient=True,
  1886. >>> # [[-0.59561850, 0.32797505, 0.80279214, 0.00144975],
  1887. >>> # [-0.16265212, 0.84155098, 0.62008629, 0.79126072],
  1888. >>> # [-0.59561850, 0.32797505, 0.80279214, 0.00144975],
  1889. >>> # [-0.16265212, 0.84155098, 0.62008629, 0.79126072]])
  1890. >>> # Tensor(shape=[4], dtype=int64, place=Place(gpu:0), stop_gradient=True,
  1891. >>> # [5, 4, 5, 4])
  1892. >>> # Tensor(shape=[4, 1], dtype=float64, place=Place(gpu:0), stop_gradient=True,
  1893. >>> # [[104.27437027],
  1894. >>> # [113.40243782],
  1895. >>> # [104.27437027],
  1896. >>> # [113.40243782]])
  1897. >>> # Tensor(shape=[4, 4], dtype=float64, place=Place(gpu:0), stop_gradient=True,
  1898. >>> # [[0.00000000, 0.00000000, 0.01210039, 0.00000000],
  1899. >>> # [0.00000000, 0.96152674, 0.00000067, 0.03847257],
  1900. >>> # [0.00000000, 0.00000000, 0.01210039, 0.00000000],
  1901. >>> # [0.00000000, 0.96152674, 0.00000067, 0.03847257]])
  1902. >>> # cat log/workerlog.1
  1903. >>> # Tensor(shape=[4, 8], dtype=float64, place=Place(gpu:1), stop_gradient=True,
  1904. >>> # [[-0.34913275, -0.35180883, -0.53976657, -0.75234331, 0.70534995,
  1905. >>> # 0.87157838, 0.31064437, 0.19537700],
  1906. >>> # [-0.63941012, -0.05631600, -0.02561853, 0.09363013, 0.56571130,
  1907. >>> # 0.13611246, 0.08849565, 0.39219619],
  1908. >>> # [-0.34913275, -0.35180883, -0.53976657, -0.75234331, 0.70534995,
  1909. >>> # 0.87157838, 0.31064437, 0.19537700],
  1910. >>> # [-0.63941012, -0.05631600, -0.02561853, 0.09363013, 0.56571130,
  1911. >>> # 0.13611246, 0.08849565, 0.39219619]])
  1912. >>> # Tensor(shape=[4], dtype=int64, place=Place(gpu:1), stop_gradient=True,
  1913. >>> # [5, 4, 5, 4])
  1914. >>> # Tensor(shape=[4, 1], dtype=float64, place=Place(gpu:1), stop_gradient=True,
  1915. >>> # [[104.27437027],
  1916. >>> # [113.40243782],
  1917. >>> # [104.27437027],
  1918. >>> # [113.40243782]])
  1919. >>> # Tensor(shape=[4, 8], dtype=float64, place=Place(gpu:1), stop_gradient=True,
  1920. >>> # [[0.00000000, 0.00000000, 0.00000000, 0.00000000, 0.00002368, 0.98787593,
  1921. >>> # 0.00000000, 0.00000000],
  1922. >>> # [0.00000000, 0.00000000, 0.00000000, 0.00000000, 0.00000002, 0.00000000,
  1923. >>> # 0.00000000, 0.00000000],
  1924. >>> # [0.00000000, 0.00000000, 0.00000000, 0.00000000, 0.00002368, 0.98787593,
  1925. >>> # 0.00000000, 0.00000000],
  1926. >>> # [0.00000000, 0.00000000, 0.00000000, 0.00000000, 0.00000002, 0.00000000,
  1927. >>> # 0.00000000, 0.00000000]])
  1928. """
  1929. assert reduction in ['mean', 'sum', 'none', None]
  1930. if not (group is False or group is None or hasattr(group, 'is_member')):
  1931. raise ValueError(
  1932. f'Expected group is False, None or instance of paddle.distributed.collective.Group \
  1933. (got group: {group})'
  1934. )
  1935. return
  1936. if hasattr(group, 'is_member') and not group.is_member():
  1937. return
  1938. ring_id = 0
  1939. rank = 0
  1940. nranks = 1
  1941. if group is not False:
  1942. ring_id = 0 if group is None else group.id
  1943. if core.is_compiled_with_dist():
  1944. parallel_env = paddle.distributed.ParallelEnv()
  1945. global_rank = parallel_env.rank
  1946. rank = (
  1947. global_rank
  1948. if group is None
  1949. else group.get_group_rank(global_rank)
  1950. )
  1951. nranks = parallel_env.world_size if group is None else group.nranks
  1952. input_dims = len(list(logits.shape))
  1953. label_dims = len(list(label.shape))
  1954. if input_dims - 1 != label_dims and input_dims != label_dims:
  1955. raise ValueError(
  1956. f'Expected input_dims - 1 = label_dims or input_dims == label_dims\
  1957. (got input_dims{input_dims}, label_dims{label_dims})'
  1958. )
  1959. if input_dims - 1 == label_dims:
  1960. label = paddle.unsqueeze(label, axis=-1)
  1961. if in_dynamic_or_pir_mode():
  1962. softmax, loss = _C_ops.margin_cross_entropy(
  1963. logits,
  1964. label,
  1965. return_softmax,
  1966. ring_id,
  1967. rank,
  1968. nranks,
  1969. margin1,
  1970. margin2,
  1971. margin3,
  1972. scale,
  1973. )
  1974. if reduction == 'mean':
  1975. loss = paddle.mean(loss)
  1976. elif reduction == 'sum':
  1977. loss = paddle.sum(loss)
  1978. if not return_softmax:
  1979. return loss
  1980. else:
  1981. return loss, softmax
  1982. else:
  1983. op_type = 'margin_cross_entropy'
  1984. helper = LayerHelper(op_type, **locals())
  1985. softmax = helper.create_variable_for_type_inference(dtype=logits.dtype)
  1986. loss = helper.create_variable_for_type_inference(dtype=logits.dtype)
  1987. check_variable_and_dtype(
  1988. logits,
  1989. 'logits',
  1990. ['float16', 'float32', 'float64'],
  1991. 'margin_cross_entropy',
  1992. )
  1993. check_variable_and_dtype(
  1994. label, 'label', ['int32', 'int64'], 'margin_cross_entropy'
  1995. )
  1996. helper.append_op(
  1997. type=op_type,
  1998. inputs={'Logits': logits, 'Label': label},
  1999. outputs={'Softmax': softmax, 'Loss': loss},
  2000. attrs={
  2001. 'return_softmax': return_softmax,
  2002. 'ring_id': ring_id,
  2003. 'rank': rank,
  2004. 'nranks': nranks,
  2005. 'margin1': margin1,
  2006. 'margin2': margin2,
  2007. 'margin3': margin3,
  2008. 'scale': scale,
  2009. },
  2010. )
  2011. if reduction == 'mean':
  2012. loss = paddle.mean(loss)
  2013. elif reduction == 'sum':
  2014. loss = paddle.sum(loss)
  2015. if not return_softmax:
  2016. return loss
  2017. else:
  2018. return loss, softmax
  2019. @deprecated(
  2020. since="2.0.0",
  2021. update_to="paddle.nn.functional.cross_entropy",
  2022. level=1,
  2023. reason=(
  2024. 'Please notice that behavior of "paddle.nn.functional.softmax_with_cross_entropy" '
  2025. 'and "paddle.nn.functional.cross_entropy" is different.'
  2026. ),
  2027. )
  2028. def softmax_with_cross_entropy(
  2029. logits,
  2030. label,
  2031. soft_label=False,
  2032. ignore_index=-100,
  2033. numeric_stable_mode=True,
  2034. return_softmax=False,
  2035. axis=-1,
  2036. ):
  2037. r"""
  2038. This operator implements the cross entropy loss function with softmax. This function
  2039. combines the calculation of the softmax operation and the cross entropy loss function
  2040. to provide a more numerically stable gradient.
  2041. Because this operator performs a softmax on logits internally, it expects
  2042. unscaled logits. This operator should not be used with the output of
  2043. softmax operator since that would produce incorrect results.
  2044. When the attribute :attr:`soft_label` is set :attr:`False`, this operators
  2045. expects mutually exclusive hard labels, each sample in a batch is in exactly
  2046. one class with a probability of 1.0. Each sample in the batch will have a
  2047. single label.
  2048. The equation is as follows:
  2049. 1) Hard label (one-hot label, so every sample has exactly one class)
  2050. .. math::
  2051. \\loss_j=-\text{logits}_{label_j} +\log\left(\sum_{i=0}^{K}\exp(\text{logits}_i)\right), j = 1,..., K
  2052. 2) Soft label (each sample can have a distribution over all classes)
  2053. .. math::
  2054. \\loss_j= -\sum_{i=0}^{K}\text{label}_i\left(\text{logits}_i - \log\left(\sum_{i=0}^{K}\exp(\text{logits}_i)\right)\right), j = 1,...,K
  2055. 3) If :attr:`numeric_stable_mode` is :attr:`True`, softmax is calculated first by:
  2056. .. math::
  2057. \\max_j&=\max_{i=0}^{K}{\text{logits}_i} \\
  2058. log\_max\_sum_j &= \log\sum_{i=0}^{K}\exp(logits_i - max_j)\\
  2059. softmax_j &= \exp(logits_j - max_j - {log\_max\_sum}_j)
  2060. and then cross entropy loss is calculated by softmax and label.
  2061. Args:
  2062. logits (Tensor): A multi-dimension ``Tensor`` , and the data type is float32 or float64. The input tensor of unscaled log probabilities.
  2063. label (Tensor): The ground truth ``Tensor`` , data type is the same
  2064. as the ``logits`` . If :attr:`soft_label` is set to :attr:`True`,
  2065. Label is a ``Tensor`` in the same shape with :attr:`logits`.
  2066. If :attr:`soft_label` is set to :attr:`True`, Label is a ``Tensor``
  2067. in the same shape with :attr:`logits` expect shape in dimension :attr:`axis` as 1.
  2068. soft_label (bool, optional): A flag to indicate whether to interpret the given
  2069. labels as soft labels. Default False.
  2070. ignore_index (int, optional): Specifies a target value that is ignored and does
  2071. not contribute to the input gradient. Only valid
  2072. if :attr:`soft_label` is set to :attr:`False`.
  2073. Default: kIgnoreIndex(-100).
  2074. numeric_stable_mode (bool, optional): A flag to indicate whether to use a more
  2075. numerically stable algorithm. Only valid
  2076. when :attr:`soft_label` is :attr:`False`
  2077. and GPU is used. When :attr:`soft_label`
  2078. is :attr:`True` or CPU is used, the
  2079. algorithm is always numerically stable.
  2080. Note that the speed may be slower when use
  2081. stable algorithm. Default: True.
  2082. return_softmax (bool, optional): A flag indicating whether to return the softmax
  2083. along with the cross entropy loss. Default: False.
  2084. axis (int, optional): The index of dimension to perform softmax calculations. It
  2085. should be in range :math:`[-1, rank - 1]`, while :math:`rank`
  2086. is the rank of input :attr:`logits`. Default: -1.
  2087. Returns:
  2088. - If `return_softmax` is False, return the cross entropy loss as a ``Tensor``.
  2089. The dtype is the same as the input ``logits``. The shape is consistent with ``logits`` except in dimension :attr:`axis` as 1.
  2090. - If `return_softmax` is True, return a tuple of two ``Tensor``: the cross entropy loss and the softmax result.
  2091. The dtype of the cross entropy loss is the same as the input ``logits``, and the shape is consistent with ``logits``
  2092. except in dimension :attr:`axis` as 1. The dtype and shape of the softmax result are the same as the input ``logits``.
  2093. Examples:
  2094. .. code-block:: python
  2095. >>> import paddle
  2096. >>> logits = paddle.to_tensor([0.4, 0.6, 0.9], dtype="float32")
  2097. >>> label = paddle.to_tensor([1], dtype="int64")
  2098. >>> out = paddle.nn.functional.softmax_with_cross_entropy(logits=logits, label=label)
  2099. >>> print(out)
  2100. Tensor(shape=[1], dtype=float32, place=Place(cpu), stop_gradient=True,
  2101. [1.15328646])
  2102. """
  2103. return base_softmax_with_cross_entropy(
  2104. logits,
  2105. label,
  2106. soft_label,
  2107. ignore_index,
  2108. numeric_stable_mode,
  2109. return_softmax,
  2110. axis,
  2111. )
  2112. def cross_entropy(
  2113. input,
  2114. label,
  2115. weight=None,
  2116. ignore_index=-100,
  2117. reduction='mean',
  2118. soft_label=False,
  2119. axis=-1,
  2120. use_softmax=True,
  2121. label_smoothing=0.0,
  2122. name=None,
  2123. ):
  2124. r"""
  2125. By default, the cross entropy loss function is implemented using softmax. This function
  2126. combines the calculation of the softmax operation and the cross entropy loss function
  2127. to provide a more numerically stable computing.
  2128. Calculate the cross entropy loss function without softmax when use_softmax=False.
  2129. By default, calculate the mean of the result, and you can also affect
  2130. the default behavior by using the reduction parameter. Please refer to the part of
  2131. parameters for details.
  2132. Can be used to calculate the softmax cross entropy loss with soft and hard labels.
  2133. Where, the hard labels mean the actual label value, 0, 1, 2, etc. And the soft labels
  2134. mean the probability of the actual label, 0.6, 0.8, 0.2, etc.
  2135. The calculation includes the following two steps.
  2136. - **1.softmax cross entropy**
  2137. 1. Hard label (each sample can only be assigned into one category)
  2138. 1.1. when use_softmax=True
  2139. .. math::
  2140. \\loss_j=-\text{logits}_{label_j}+\log\left(\sum_{i=0}^{C}\exp(\text{logits}_i)\right) , j = 1,...,N
  2141. where, N is the number of samples and C is the number of categories.
  2142. 1.2. when use_softmax=False
  2143. .. math::
  2144. \\loss_j=-\log\left({P}_{label_j}\right) , j = 1,...,N
  2145. where, N is the number of samples and C is the number of categories, P is input(the output of softmax).
  2146. 2. Soft label (each sample is assigned to multiple categories with a certain probability, and the probability sum is 1).
  2147. 2.1. when use_softmax=True
  2148. .. math::
  2149. \\loss_j=-\sum_{i=0}^{C}\text{label}_i\left(\text{logits}_i-\log\left(\sum_{i=0}^{C}\exp(\text{logits}_i)\right)\right) , j = 1,...,N
  2150. where, N is the number of samples and C is the number of categories.
  2151. 2.2. when use_softmax=False
  2152. .. math::
  2153. \\loss_j=-\sum_{j=0}^{C}\left({label}_j*\log\left({P}_{label_j}\right)\right) , j = 1,...,N
  2154. where, N is the number of samples and C is the number of categories, P is input(the output of softmax).
  2155. - **2. Weight and reduction processing**
  2156. 1. Weight
  2157. If the ``weight`` parameter is ``None`` , go to the next step directly.
  2158. If the ``weight`` parameter is not ``None`` , the cross entropy of each sample is weighted by weight
  2159. according to soft_label = False or True as follows.
  2160. 1.1. Hard labels (soft_label = False)
  2161. .. math::
  2162. \\loss_j=loss_j*weight[label_j]
  2163. 1.2. Soft labels (soft_label = True)
  2164. .. math::
  2165. \\loss_j=loss_j*\sum_{i}\left(weight[label_i]*logits_i\right)
  2166. 2. reduction
  2167. 2.1 if the ``reduction`` parameter is ``none``
  2168. Return the previous result directly
  2169. 2.2 if the ``reduction`` parameter is ``sum``
  2170. Return the sum of the previous results
  2171. .. math::
  2172. \\loss=\sum_{j}loss_j
  2173. 2.3 if the ``reduction`` parameter is ``mean`` , it will be processed according to
  2174. the ``weight`` parameter as follows.
  2175. 2.3.1. If the ``weight`` parameter is ``None``
  2176. Return the average value of the previous results
  2177. .. math::
  2178. \\loss=\sum_{j}loss_j/N
  2179. where, N is the number of samples and C is the number of categories.
  2180. 2.3.2. If the 'weight' parameter is not 'None', the weighted average value of the previous result will be returned
  2181. 1. Hard labels (soft_label = False)
  2182. .. math::
  2183. \\loss=\sum_{j}loss_j/\sum_{j}weight[label_j]
  2184. 2. Soft labels (soft_label = True)
  2185. .. math::
  2186. \\loss=\sum_{j}loss_j/\sum_{j}\left(\sum_{i}weight[label_i]\right)
  2187. Parameters:
  2188. input (Tensor): the data type is float32, float64. Shape is :math:`[N_1, N_2, ..., N_k, C]`, where C is number of classes, ``k >= 1`` .
  2189. Note:
  2190. 1. when use_softmax=True, it expects unscaled logits. This operator should not be used with the output of softmax operator, which will produce incorrect results.
  2191. 2. when use_softmax=False, it expects the output of softmax operator.
  2192. label (Tensor):
  2193. 1. If soft_label=False, the shape is
  2194. :math:`[N_1, N_2, ..., N_k]` or :math:`[N_1, N_2, ..., N_k, 1]`, k >= 1.
  2195. the data type is int32, int64, float32, float64, where each value is [0, C-1].
  2196. 2. If soft_label=True and no label_smoothing, the shape and data type
  2197. should be same with ``input`` , and the sum of the labels for each sample should be 1.
  2198. 3. If has label_smoothing, (i.e. label_smoothing > 0.0), no matter what ``soft_label`` is,
  2199. the shape and data type of ``label`` could be either the situation 1 or situation 2.
  2200. In other words, if label_smoothing > 0.0, the format of label could be one-hot label or integer label.
  2201. weight (Tensor, optional): a manual rescaling weight given to each class.
  2202. If given, has to be a Tensor of size C and the data type is float32, float64.
  2203. Default is ``'None'`` .
  2204. ignore_index (int64, optional): Specifies a target value that is ignored
  2205. and does not contribute to the loss. A negative value means that no label
  2206. value needs to be ignored. Only valid when soft_label = False.
  2207. Default is ``-100`` .
  2208. reduction (str, optional): Indicate how to average the loss by batch_size,
  2209. the candidates are ``'none'`` | ``'mean'`` | ``'sum'``.
  2210. If :attr:`reduction` is ``'mean'``, the reduced mean loss is returned;
  2211. If :attr:`size_average` is ``'sum'``, the reduced sum loss is returned.
  2212. If :attr:`reduction` is ``'none'``, the unreduced loss is returned.
  2213. Default is ``'mean'``.
  2214. soft_label (bool, optional): Indicate whether label is soft. Default is ``False``.
  2215. label_smoothing (float, optional): A float in [0.0, 1.0].
  2216. Specifies the amount of smoothing when computing the loss, where 0.0 means no smoothing.
  2217. The targets become a mixture of the original ground truth and a uniform distribution as
  2218. described in paper 'Rethinking the Inception Architecture for Computer Vision'.
  2219. Default is ``0.0``.
  2220. axis (int, optional):The index of dimension to perform softmax calculations.
  2221. It should be in range :math:`[-1, rank - 1]`, where :math:`rank` is the
  2222. number of dimensions of input :attr:`input`.
  2223. Default is ``-1`` .
  2224. use_softmax (bool, optional): Indicate whether compute softmax before cross_entropy.
  2225. Default is ``True``.
  2226. name (str, optional): The name of the operator. Default is ``None`` .
  2227. For more information, please refer to :ref:`api_guide_Name` .
  2228. Returns:
  2229. Tensor. Return the softmax cross_entropy loss of ``input`` and ``label``.
  2230. The data type is the same as input.
  2231. If :attr:`reduction` is ``'mean'`` or ``'sum'`` , the dimension of return value is ``1``.
  2232. If :attr:`reduction` is ``'none'``:
  2233. 1. If soft_label = False, the dimension of return value is the same with ``label`` .
  2234. 2. if soft_label = True, the dimension of return value is :math:`[N_1, N_2, ..., N_k, 1]` .
  2235. Examples:
  2236. .. code-block:: python
  2237. :name: code-example1
  2238. >>> # hard labels
  2239. >>> import paddle
  2240. >>> paddle.seed(99999)
  2241. >>> N=100
  2242. >>> C=200
  2243. >>> reduction='mean'
  2244. >>> input = paddle.rand([N, C], dtype='float64')
  2245. >>> label = paddle.randint(0, C, shape=[N], dtype='int64')
  2246. >>> weight = paddle.rand([C], dtype='float64')
  2247. >>> cross_entropy_loss = paddle.nn.loss.CrossEntropyLoss(
  2248. ... weight=weight, reduction=reduction)
  2249. >>> dy_ret = cross_entropy_loss(
  2250. ... input,
  2251. ... label)
  2252. >>> print(dy_ret)
  2253. Tensor(shape=[], dtype=float64, place=Place(cpu), stop_gradient=True,
  2254. 5.35419278)
  2255. .. code-block:: python
  2256. :name: code-example2
  2257. >>> # soft labels
  2258. >>> # case1: soft labels without label_smoothing
  2259. >>> import paddle
  2260. >>> paddle.seed(99999)
  2261. >>> axis = -1
  2262. >>> N = 4
  2263. >>> C = 3
  2264. >>> shape = [N, C]
  2265. >>> reduction='mean'
  2266. >>> weight = None
  2267. >>> logits = paddle.uniform(shape, dtype='float64', min=0.1, max=1.0)
  2268. >>> labels = paddle.uniform(shape, dtype='float64', min=0.1, max=1.0)
  2269. >>> labels /= paddle.sum(labels, axis=axis, keepdim=True)
  2270. >>> paddle_loss_mean = paddle.nn.functional.cross_entropy(
  2271. ... logits,
  2272. ... labels,
  2273. ... soft_label=True,
  2274. ... axis=axis,
  2275. ... weight=weight,
  2276. ... reduction=reduction)
  2277. >>> print(paddle_loss_mean)
  2278. Tensor(shape=[], dtype=float64, place=Place(cpu), stop_gradient=True,
  2279. 1.12801195)
  2280. >>> # case2: soft labels with label_smoothing
  2281. >>> import paddle
  2282. >>> paddle.seed(99999)
  2283. >>> axis = -1
  2284. >>> N = 4
  2285. >>> C = 3
  2286. >>> shape = [N, C]
  2287. >>> label_smoothing = 0.4
  2288. >>> reduction='mean'
  2289. >>> weight = None
  2290. >>> logits = paddle.uniform(shape, dtype='float64', min=0.1, max=1.0)
  2291. >>> integer_labels = paddle.randint(low=0, high=C, shape=[N], dtype='int64')
  2292. >>> one_hot_labels = paddle.nn.functional.one_hot(integer_labels, C).astype('float32')
  2293. >>> # integer labels
  2294. >>> paddle_integer_loss_mean = paddle.nn.functional.cross_entropy(
  2295. ... logits,
  2296. ... integer_labels,
  2297. ... axis=axis,
  2298. ... weight=weight,
  2299. ... label_smoothing=label_smoothing,
  2300. ... reduction=reduction)
  2301. >>> print(paddle_integer_loss_mean)
  2302. Tensor(shape=[], dtype=float64, place=Place(cpu), stop_gradient=True,
  2303. 1.08317309)
  2304. >>> # one_hot labels
  2305. >>> paddle_one_hot_loss_mean = paddle.nn.functional.cross_entropy(
  2306. ... logits,
  2307. ... one_hot_labels,
  2308. ... axis=axis,
  2309. ... weight=weight,
  2310. ... label_smoothing=label_smoothing,
  2311. ... reduction=reduction)
  2312. >>> print(paddle_one_hot_loss_mean)
  2313. Tensor(shape=[], dtype=float64, place=Place(cpu), stop_gradient=True,
  2314. 1.08317309)
  2315. """
  2316. if reduction not in ['sum', 'mean', 'none']:
  2317. raise ValueError(
  2318. "The value of 'reduction' in softmax_cross_entropy"
  2319. "should be 'sum', 'mean' or 'none', but received %s, which is not allowed."
  2320. % reduction
  2321. )
  2322. if ignore_index > 0 and soft_label:
  2323. raise ValueError(
  2324. "When soft_label == True, the value of 'ignore_index' in softmax_cross_entropy"
  2325. "should be '-100', but received %s, which is not allowed."
  2326. % ignore_index
  2327. )
  2328. input_dims = len(list(input.shape))
  2329. if input_dims == 0:
  2330. raise ValueError('The dimension of input should be larger than zero!')
  2331. label_dims = len(list(label.shape))
  2332. if input_dims - 1 == label_dims:
  2333. label = paddle.unsqueeze(label, axis=axis)
  2334. if input_dims - 1 != label_dims and input_dims != label_dims:
  2335. raise ValueError(
  2336. f'Expected nput_dims - 1 = label_dims or input_dims == label_dims\
  2337. (got nput_dims{input_dims}, label_dims{label_dims})'
  2338. )
  2339. if label_smoothing > 0.0:
  2340. soft_label = True
  2341. # converting the label to one-hot encoding
  2342. # for 1d case, converting label's shape from [N] to [N, C]
  2343. # for 2d case, converting label's shape from [N, d_1, ..., d_k] to [N, d_1, ..., d_k, C]
  2344. if input_dims - 1 == label_dims:
  2345. label = paddle.squeeze(label, axis=axis)
  2346. label = paddle.nn.functional.one_hot(label, input.shape[-1])
  2347. label = paddle.nn.functional.label_smooth(
  2348. label, epsilon=label_smoothing
  2349. )
  2350. label = label.astype(input.dtype)
  2351. label_dims = len(list(label.shape))
  2352. if in_dynamic_mode():
  2353. if not soft_label:
  2354. valid_label = (
  2355. paddle.cast(label != ignore_index, dtype=label.dtype) * label
  2356. )
  2357. _, out = _C_ops.cross_entropy_with_softmax(
  2358. input, label, soft_label, use_softmax, True, ignore_index, axis
  2359. )
  2360. if weight is not None:
  2361. # trans weight from class to sample, shape:N or [N,H,W] for 1d and 2d cases.
  2362. if soft_label:
  2363. # chajchaj:
  2364. # weight's shape is C, where C is class num.
  2365. # for 1d case: label's shape is [N,C], weight_gather's shape is N.
  2366. # for 2d case: label's shape is [N,H,W,C], weight_gather's shape is [N,H,W].
  2367. weight_gather = paddle.matmul(
  2368. x=paddle.cast(label, weight.dtype),
  2369. y=weight,
  2370. transpose_x=False,
  2371. transpose_y=True,
  2372. )
  2373. out_shape = list(out.shape)
  2374. weight_gather_reshape = reshape(weight_gather, shape=out_shape)
  2375. out = paddle.cast(out, weight_gather_reshape.dtype)
  2376. out = _C_ops.multiply(out, weight_gather_reshape)
  2377. else:
  2378. if input.shape[axis] != weight.shape[-1]:
  2379. raise ValueError(
  2380. f"input's class_dimension({input.shape[axis]}) must equal to "
  2381. f"weight's class_dimension({weight.shape[-1]}) "
  2382. "when weight is provided"
  2383. )
  2384. ignore_weight_mask = paddle.cast(
  2385. (label != ignore_index), out.dtype
  2386. )
  2387. if (
  2388. ignore_weight_mask.ndim > 1
  2389. and ignore_weight_mask.shape[axis] == 1
  2390. ):
  2391. # TODO: Temporarily use squeeze instead of squeeze_
  2392. ignore_weight_mask = paddle.squeeze(
  2393. ignore_weight_mask, axis
  2394. )
  2395. if axis != -1 and axis != valid_label.ndim - 1:
  2396. temp_perm = (
  2397. list(range(axis % valid_label.ndim))
  2398. + list(
  2399. range(
  2400. (axis % valid_label.ndim + 1), valid_label.ndim
  2401. )
  2402. )
  2403. + [axis % valid_label.ndim]
  2404. )
  2405. weight_gather = _C_ops.gather_nd(
  2406. weight, valid_label.transpose(temp_perm)
  2407. )
  2408. else:
  2409. weight_gather = _C_ops.gather_nd(weight, valid_label)
  2410. weight_gather = _C_ops.multiply(
  2411. weight_gather, ignore_weight_mask
  2412. )
  2413. input_shape = list(label.shape)
  2414. weight_gather_reshape = reshape(
  2415. weight_gather, shape=input_shape
  2416. )
  2417. out = paddle.cast(out, weight_gather_reshape.dtype)
  2418. out = _C_ops.multiply(out, weight_gather_reshape)
  2419. if reduction == "sum":
  2420. # because of base_softmax_with_cross_entropy op's inner logic,
  2421. # in the out tensor of this op, the loss of sample with class_index==ignore_index is 0
  2422. # so, reduce_sum all directly is ok
  2423. return _C_ops.sum(out, [], None, False)
  2424. elif reduction == "mean":
  2425. # 1. if weight==none,
  2426. # numerator: reduce_sum all loss directly is ok causeof base_softmax_with_cross_entropy's inner logic
  2427. # denominator: count sample num with class_index!=ignore_index
  2428. # 2. else
  2429. # numerator: loss's weighted sum
  2430. # denominator: cal the sum of weight where the sample's class_index!=ignore_index
  2431. if ignore_index >= 0: # ignore label
  2432. out_sum = _C_ops.sum(out, [], None, False)
  2433. # for each label[i],set 1 or 0, according to ignore_index
  2434. # mask[i]=0, if label[i]==ignore_index
  2435. # mask[i]=1, otherwise
  2436. mask = label != ignore_index
  2437. if weight is None:
  2438. mask = paddle.cast(mask, dtype=out_sum.dtype)
  2439. count = _C_ops.sum(mask, [], None, False)
  2440. ret = out_sum / (count + (count == 0.0).astype(count.dtype))
  2441. else:
  2442. mask = paddle.cast(mask, weight_gather_reshape.dtype)
  2443. weight_ignored = _C_ops.multiply(
  2444. mask, weight_gather_reshape
  2445. )
  2446. weight_sum = _C_ops.sum(weight_ignored, [], None, False)
  2447. ret = out_sum / (
  2448. weight_sum
  2449. + (weight_sum == 0.0).astype(weight_sum.dtype)
  2450. )
  2451. return ret
  2452. elif weight is not None:
  2453. out_sum = _C_ops.sum(out, [], None, False)
  2454. total_weight = _C_ops.sum(
  2455. weight_gather_reshape, [], None, False
  2456. )
  2457. return out_sum / (
  2458. total_weight
  2459. + (total_weight == 0.0).astype(total_weight.dtype)
  2460. )
  2461. else:
  2462. return _C_ops.mean_all(out)
  2463. else:
  2464. if input_dims - 1 == label_dims:
  2465. out = paddle.squeeze(out, axis=axis)
  2466. return out
  2467. else:
  2468. check_variable_and_dtype(
  2469. input,
  2470. 'input',
  2471. ['uint16', 'float16', 'float32', 'float64'],
  2472. 'softmax_cross_entropy',
  2473. )
  2474. check_variable_and_dtype(
  2475. label,
  2476. 'label',
  2477. ['uint8', 'int8', 'int16', 'int32', 'int64', 'float32', 'float64'],
  2478. 'softmax_cross_entropy',
  2479. )
  2480. if in_pir_mode():
  2481. softmax, out = _C_ops.cross_entropy_with_softmax(
  2482. input, label, soft_label, use_softmax, True, ignore_index, axis
  2483. )
  2484. else:
  2485. attrs = {
  2486. 'soft_label': soft_label,
  2487. 'ignore_index': ignore_index,
  2488. 'numeric_stable_mode': True,
  2489. 'axis': axis,
  2490. 'use_softmax': use_softmax,
  2491. }
  2492. helper = LayerHelper('softmax_with_cross_entropy', **locals())
  2493. softmax = helper.create_variable_for_type_inference(
  2494. dtype=input.dtype
  2495. )
  2496. out = helper.create_variable_for_type_inference(dtype=input.dtype)
  2497. outputs = {'Softmax': softmax, 'Loss': out}
  2498. helper.append_op(
  2499. type='softmax_with_cross_entropy',
  2500. inputs={'Logits': input, 'Label': label},
  2501. outputs=outputs,
  2502. attrs=attrs,
  2503. )
  2504. if weight is not None:
  2505. check_variable_and_dtype(
  2506. weight,
  2507. 'weight',
  2508. ['float32', 'float64'],
  2509. 'softmax_cross_entropy',
  2510. )
  2511. weight_name = name if reduction == 'none' else None
  2512. if soft_label:
  2513. # chajchaj:
  2514. # trans weight from class to sample, shape:N or [N,H,W] for 1d and 2d cases.
  2515. # weight's shape is C, where C is class num.
  2516. # for 1d case: label's shape is [N,C], weight_gather's shape is N.
  2517. # for 2d case: label's shape is [N,H,W,C], weight_gather's shape is [N,H,W].
  2518. weight_gather = paddle.matmul(
  2519. x=paddle.cast(label, weight.dtype),
  2520. y=weight,
  2521. transpose_x=False,
  2522. transpose_y=True,
  2523. )
  2524. out_shape = list(out.shape)
  2525. weight_gather_reshape = reshape(weight_gather, shape=out_shape)
  2526. out = paddle.cast(out, weight_gather_reshape.dtype)
  2527. else:
  2528. if input.shape[axis] != weight.shape[-1]:
  2529. raise ValueError(
  2530. f"input's class_dimension({input.shape[axis]}) must equal to "
  2531. f"weight's class_dimension({weight.shape[-1]}) "
  2532. "when weight is provided"
  2533. )
  2534. valid_label = paddle.multiply(
  2535. paddle.cast(label != ignore_index, dtype=label.dtype), label
  2536. )
  2537. ignore_weight_mask = paddle.cast(
  2538. (label != ignore_index), input.dtype
  2539. )
  2540. if (
  2541. ignore_weight_mask.ndim > 1
  2542. and ignore_weight_mask.shape[axis] == 1
  2543. ):
  2544. ignore_weight_mask = paddle.squeeze(
  2545. ignore_weight_mask, axis
  2546. )
  2547. if axis != -1 and axis != valid_label.ndim - 1:
  2548. temp_perm = (
  2549. list(range(axis % valid_label.ndim))
  2550. + list(
  2551. range(
  2552. (axis % valid_label.ndim + 1), valid_label.ndim
  2553. )
  2554. )
  2555. + [axis % valid_label.ndim]
  2556. )
  2557. weight_gather = paddle.gather_nd(
  2558. weight, paddle.transpose(valid_label, temp_perm)
  2559. )
  2560. else:
  2561. weight_gather = paddle.gather_nd(weight, valid_label)
  2562. weight_gather = paddle.multiply(
  2563. weight_gather, ignore_weight_mask
  2564. )
  2565. input_shape = list(label.shape)
  2566. weight_gather_reshape = reshape(
  2567. weight_gather, shape=input_shape
  2568. )
  2569. out = paddle.multiply(out, weight_gather_reshape, name=weight_name)
  2570. if reduction == "sum":
  2571. return paddle.sum(out, name=name)
  2572. elif reduction == "mean":
  2573. if ignore_index >= 0:
  2574. out_sum = paddle.sum(out, name=name)
  2575. # for each label[i],set 1 or 0, according to ignore_index
  2576. # mask[i]=0, if label[i]==ignore_index
  2577. # mask[i]=1, otherwise
  2578. mask = label != ignore_index
  2579. if weight is None:
  2580. mask = paddle.cast(mask, dtype=out_sum.dtype)
  2581. count = paddle.sum(mask, name=name)
  2582. ret = out_sum / (count + paddle.equal(count, 0.0))
  2583. else:
  2584. mask = paddle.cast(mask, weight_gather_reshape.dtype)
  2585. weight_ignored = paddle.multiply(
  2586. mask, weight_gather_reshape
  2587. )
  2588. weight_sum = paddle.sum(weight_ignored, name=name)
  2589. ret = out_sum / (weight_sum + paddle.equal(weight_sum, 0.0))
  2590. return ret
  2591. elif weight is not None:
  2592. out_sum = paddle.sum(out, name=name)
  2593. total_weight = paddle.sum(weight_gather_reshape)
  2594. return out_sum / (
  2595. total_weight + paddle.equal(total_weight, 0.0)
  2596. )
  2597. else:
  2598. return paddle.mean(out, name=name)
  2599. else:
  2600. if input_dims - 1 == label_dims:
  2601. out = paddle.squeeze(out, axis=axis)
  2602. return out
  2603. def sigmoid_focal_loss(
  2604. logit,
  2605. label,
  2606. normalizer=None,
  2607. alpha=0.25,
  2608. gamma=2.0,
  2609. reduction='sum',
  2610. name=None,
  2611. ):
  2612. r"""
  2613. `Focal Loss <https://arxiv.org/abs/1708.02002>`_ is proposed to address the
  2614. foreground-background class imbalance for classification tasks. It down-weights
  2615. easily-classified examples and thus focuses training on hard examples. For example,
  2616. it is used in one-stage object detection where the foreground-background class
  2617. imbalance is extremely high.
  2618. This operator measures focal loss function as follows:
  2619. .. math::
  2620. Out = -Labels * alpha * {(1 - \sigma(Logit))}^{gamma}\log(\sigma(Logit)) - (1 - Labels) * (1 - alpha) * {\sigma(Logit)}^{gamma}\log(1 - \sigma(Logit))
  2621. We know that :math:`\sigma(Logit) = \frac{1}{1 + \exp(-Logit)}`.
  2622. Then, if :attr:`normalizer` is not None, this operator divides the
  2623. normalizer tensor on the loss `Out`:
  2624. .. math::
  2625. Out = \frac{Out}{normalizer}
  2626. Finally, this operator applies reduce operation on the loss.
  2627. If :attr:`reduction` set to ``'none'``, the operator will return the original loss `Out`.
  2628. If :attr:`reduction` set to ``'mean'``, the reduced mean loss is :math:`Out = MEAN(Out)`.
  2629. If :attr:`reduction` set to ``'sum'``, the reduced sum loss is :math:`Out = SUM(Out)`.
  2630. Note that the target ``label`` is 0 for the negative class and is 1 for the positive class.
  2631. Args:
  2632. logit (Tensor): The input logit tensor. The shape is [N, *], where N is batch_size,
  2633. `*` means any number of additional dimensions. The ``logit`` is usually the
  2634. output of a convolution layer. Available dtype is float32, float64.
  2635. label (Tensor): The target label tensor with the same shape as
  2636. ``logit``. The target label whose value should be numbers between 0 and 1.
  2637. Available dtype is float32, float64.
  2638. normalizer (Tensor, optional): The number normalizes the focal loss. It has to be
  2639. a 1-D Tensor with shape `[1, ]` or 0-D Tensor with shape `[]`. The data type
  2640. is float32, float64. For object detection task, it is the number of positive samples.
  2641. If set to None, the focal loss will not be normalized. Default is None.
  2642. alpha(int|float, optional): Hyper-parameter to balance the positive and negative example,
  2643. it should be between 0 and 1. Default value is set to 0.25.
  2644. gamma(int|float, optional): Hyper-parameter to modulate the easy and hard examples.
  2645. Default value is set to 2.0.
  2646. reduction (str, optional): Indicate how to average the loss by batch_size,
  2647. the candidates are ``'none'`` | ``'mean'`` | ``'sum'``.
  2648. If :attr:`reduction` is ``'none'``, the unreduced loss is returned;
  2649. If :attr:`reduction` is ``'mean'``, the reduced mean loss is returned;
  2650. If :attr:`reduction` is ``'sum'``, the summed loss is returned.
  2651. Default is ``'sum'``.
  2652. name (str, optional): Name for the operation (optional, default is None).
  2653. For more information, please refer to :ref:`api_guide_Name`.
  2654. Returns:
  2655. Tensor, if :attr:`reduction` is ``'mean'`` or ``'sum'``, the out shape is :math:`[]`, otherwise the shape is the same as ``logit``. The same dtype as ``logit`` tensor.
  2656. Examples:
  2657. .. code-block:: python
  2658. >>> import paddle
  2659. >>> logit = paddle.to_tensor([[0.97, 0.91, 0.03], [0.55, 0.43, 0.71]], dtype='float32')
  2660. >>> label = paddle.to_tensor([[1.0, 0.0, 0.0], [0.0, 1.0, 0.0]], dtype='float32')
  2661. >>> one = paddle.to_tensor([1.], dtype='float32')
  2662. >>> fg_label = paddle.greater_equal(label, one)
  2663. >>> fg_num = paddle.sum(paddle.cast(fg_label, dtype='float32'))
  2664. >>> output = paddle.nn.functional.sigmoid_focal_loss(logit, label, normalizer=fg_num)
  2665. >>> print(output)
  2666. Tensor(shape=[], dtype=float32, place=Place(cpu), stop_gradient=True,
  2667. 0.65782464)
  2668. """
  2669. if reduction not in ['sum', 'mean', 'none']:
  2670. raise ValueError(
  2671. "The value of 'reduction' in sigmoid_focal_loss "
  2672. "should be 'sum', 'mean' or 'none', but received %s, which is not allowed."
  2673. % reduction
  2674. )
  2675. if normalizer is not None:
  2676. check_variable_and_dtype(
  2677. normalizer,
  2678. 'normalizer',
  2679. ['float32', 'float64'],
  2680. 'sigmoid_focal_loss',
  2681. )
  2682. normalizer_shape = list(normalizer.shape)
  2683. normalizer_dims = len(normalizer_shape)
  2684. if normalizer_dims > 1:
  2685. raise ValueError(
  2686. f"Expected zero or one dimension of normalizer in sigmoid_focal_loss but got {normalizer_dims}."
  2687. )
  2688. if in_dynamic_or_pir_mode():
  2689. place = _current_expected_place()
  2690. one = _C_ops.full(paddle.shape(logit), 1.0, logit.dtype, place)
  2691. loss = _C_ops.sigmoid_cross_entropy_with_logits(
  2692. logit, label, None, False, -100
  2693. )
  2694. pred = _C_ops.sigmoid(logit)
  2695. p_t = _C_ops.add(
  2696. _C_ops.multiply(pred, label),
  2697. _C_ops.multiply(
  2698. _C_ops.subtract(one, pred), _C_ops.subtract(one, label)
  2699. ),
  2700. )
  2701. alpha = paddle.to_tensor(alpha, dtype=loss.dtype)
  2702. alpha_t = _C_ops.add(
  2703. _C_ops.multiply(alpha, label),
  2704. _C_ops.multiply(
  2705. _C_ops.subtract(one, alpha), _C_ops.subtract(one, label)
  2706. ),
  2707. )
  2708. loss = _C_ops.multiply(alpha_t, loss)
  2709. if in_dynamic_mode():
  2710. gamma = paddle.to_tensor(gamma, dtype=loss.dtype)
  2711. gamma_t = _C_ops.pow(_C_ops.subtract(one, p_t), gamma)
  2712. loss = _C_ops.multiply(gamma_t, loss)
  2713. if normalizer is not None:
  2714. loss = _C_ops.divide(loss, normalizer)
  2715. if reduction == "sum":
  2716. return _C_ops.sum(loss, [], None, False)
  2717. elif reduction == "mean":
  2718. return _C_ops.mean_all(loss)
  2719. return loss
  2720. else:
  2721. check_variable_and_dtype(
  2722. logit, 'logit', ['float32', 'float64'], 'sigmoid_focal_loss'
  2723. )
  2724. check_variable_and_dtype(
  2725. label, 'label', ['float32', 'float64'], 'sigmoid_focal_loss'
  2726. )
  2727. bce_name = None
  2728. if reduction == 'none' and normalizer is None:
  2729. bce_name = name
  2730. loss = paddle.nn.functional.binary_cross_entropy_with_logits(
  2731. logit, label, None, reduction='none', name=bce_name
  2732. )
  2733. pred = paddle.nn.functional.sigmoid(logit)
  2734. p_t = pred * label + (1 - pred) * (1 - label)
  2735. alpha_t = alpha * label + (1 - alpha) * (1 - label)
  2736. loss = paddle.multiply(alpha_t, loss)
  2737. gamma_t = paddle.pow((1 - p_t), gamma)
  2738. loss = paddle.multiply(gamma_t, loss)
  2739. if normalizer is not None:
  2740. normalizer_name = name if reduction == 'none' else None
  2741. loss = paddle.divide(loss, normalizer, name=normalizer_name)
  2742. if reduction == 'mean':
  2743. loss = paddle.mean(loss, name=name)
  2744. elif reduction == 'sum':
  2745. loss = paddle.sum(loss, name=name)
  2746. return loss
  2747. def multi_label_soft_margin_loss(
  2748. input, label, weight=None, reduction="mean", name=None
  2749. ):
  2750. r"""
  2751. Calculate a multi-class multi-classification
  2752. hinge loss (margin-based loss) between input :math:`x` (a 2D mini-batch `Tensor`)
  2753. and output :math:`y` (which is a 2D `Tensor` of target class indices).
  2754. For each sample in the mini-batch:
  2755. .. math::
  2756. \text{loss}(x, y) = \sum_{ij}\frac{\max(0, 1 - (x[y[j]] - x[i]))}{\text{x.size}(0)}
  2757. where :math:`x \in \left\{0, \; \cdots , \; \text{x.size}(0) - 1\right\}`, \
  2758. :math:`y \in \left\{0, \; \cdots , \; \text{y.size}(0) - 1\right\}`, \
  2759. :math:`0 \leq y[j] \leq \text{x.size}(0)-1`, \
  2760. and :math:`i \neq y[j]` for all :math:`i` and :math:`j`.
  2761. :math:`y` and :math:`x` must have the same size.
  2762. Parameters:
  2763. input (Tensor): Input tensor, the data type is float32 or float64. Shape is (N, C), where C is number of classes, and if shape is more than 2D, this is (N, C, D1, D2,..., Dk), k >= 1.
  2764. label (Tensor): Label tensor, the data type is float32 or float64. The shape of label is the same as the shape of input.
  2765. weight (Tensor,optional): a manual rescaling weight given to each class.
  2766. If given, has to be a Tensor of size C and the data type is float32, float64.
  2767. Default is ``'None'`` .
  2768. reduction (str, optional): Indicate how to average the loss by batch_size,
  2769. the candidates are ``'none'`` | ``'mean'`` | ``'sum'``.
  2770. If :attr:`reduction` is ``'none'``, the unreduced loss is returned;
  2771. If :attr:`reduction` is ``'mean'``, the reduced mean loss is returned;
  2772. If :attr:`reduction` is ``'sum'``, the summed loss is returned.
  2773. Default: ``'mean'``
  2774. name (str, optional): Name for the operation (optional, default is None).
  2775. For more information, please refer to :ref:`api_guide_Name`.
  2776. Shape:
  2777. input: N-D Tensor, the shape is [N, \*], N is batch size and `\*` means number of classes, available dtype is float32, float64. The sum operation operates over all the elements.
  2778. label: N-D Tensor, same shape as the input.
  2779. weight:N-D Tensor, the shape is [N,1]
  2780. output: scalar. If :attr:`reduction` is ``'none'``, then same shape as the input.
  2781. Returns:
  2782. Tensor, The tensor variable storing the multi_label_soft_margin_loss of input and label.
  2783. Examples:
  2784. .. code-block:: python
  2785. >>> import paddle
  2786. >>> import paddle.nn.functional as F
  2787. >>> input = paddle.to_tensor([[1, -2, 3], [0, -1, 2], [1, 0, 1]], dtype=paddle.float32)
  2788. >>> # label elements in {1., -1.}
  2789. >>> label = paddle.to_tensor([[-1, 1, -1], [1, 1, 1], [1, -1, 1]], dtype=paddle.float32)
  2790. >>> loss = F.multi_label_soft_margin_loss(input, label, reduction='none')
  2791. >>> print(loss)
  2792. Tensor(shape=[3], dtype=float32, place=Place(cpu), stop_gradient=True,
  2793. [3.49625897, 0.71111226, 0.43989015])
  2794. >>> loss = F.multi_label_soft_margin_loss(input, label, reduction='mean')
  2795. >>> print(loss)
  2796. Tensor(shape=[], dtype=float32, place=Place(cpu), stop_gradient=True,
  2797. 1.54908717)
  2798. """
  2799. if reduction not in ['sum', 'mean', 'none']:
  2800. raise ValueError(
  2801. "'reduction' in 'multi_label_soft_margin_loss' should be 'sum', 'mean' or 'none', "
  2802. f"but received {reduction}."
  2803. )
  2804. if not (input.shape == label.shape):
  2805. raise ValueError(
  2806. "The input and label should have same dimension,"
  2807. f"but received {input.shape}!={label.shape}"
  2808. )
  2809. if not in_dynamic_mode():
  2810. check_variable_and_dtype(
  2811. input,
  2812. 'input',
  2813. ['float32', 'float64'],
  2814. 'multilabel_soft_margin_loss',
  2815. )
  2816. check_variable_and_dtype(
  2817. label,
  2818. 'label',
  2819. ['float32', 'float64'],
  2820. 'multilabel_soft_margin_loss',
  2821. )
  2822. loss = -(
  2823. label * paddle.nn.functional.log_sigmoid(input)
  2824. + (1 - label) * paddle.nn.functional.log_sigmoid(-input)
  2825. )
  2826. if weight is not None:
  2827. if not in_dynamic_mode():
  2828. check_variable_and_dtype(
  2829. weight,
  2830. 'weight',
  2831. ['float32', 'float64'],
  2832. 'multilabel_soft_margin_loss',
  2833. )
  2834. loss = loss * weight
  2835. loss = loss.mean(axis=-1) # only return N loss values
  2836. if reduction == "none":
  2837. return loss
  2838. elif reduction == "mean":
  2839. return paddle.mean(loss)
  2840. elif reduction == "sum":
  2841. return paddle.sum(loss)
  2842. def hinge_embedding_loss(input, label, margin=1.0, reduction='mean', name=None):
  2843. r"""
  2844. Calculates hinge_embedding_loss. Measures the loss given an input tensor :math:`x` and a labels tensor :math:`y`(containing 1 or -1).
  2845. This is usually used for measuring whether two inputs are similar or dissimilar, e.g. using the L1 pairwise distance as :math:`x`,
  2846. and is typically used for learning nonlinear embeddings or semi-supervised learning.
  2847. The loss function for :math:`n`-th sample in the mini-batch is
  2848. .. math::
  2849. l_n = \begin{cases}
  2850. x_n, & \text{if}\; y_n = 1,\\
  2851. \max \{0, \Delta - x_n\}, & \text{if}\; y_n = -1,
  2852. \end{cases}
  2853. and the total loss functions is
  2854. .. math::
  2855. \ell(x, y) = \begin{cases}
  2856. \operatorname{mean}(L), & \text{if reduction} = \text{'mean';}\\
  2857. \operatorname{sum}(L), & \text{if reduction} = \text{'sum'.}
  2858. \end{cases}
  2859. where :math:`L = \{l_1,\dots,l_N\}^\top`.
  2860. Parameters:
  2861. input (Tensor): Input tensor, the data type is float32 or float64.
  2862. the shape is [N, \*], N is batch size and `\*` means any number of additional dimensions, available dtype is float32, float64.
  2863. label (Tensor): Label tensor containing 1 or -1, the data type is float32 or float64.
  2864. The shape of label is the same as the shape of input.
  2865. margin (float, optional): Specifies the hyperparameter margin to be used.
  2866. The value determines how large the input need to be to calculate in
  2867. hinge_embedding_loss. When label is -1, Input smaller than margin are minimized with hinge_embedding_loss.
  2868. Default = 1.0
  2869. reduction (str, optional): Indicate how to average the loss by batch_size.
  2870. the candidates are ``'none'`` | ``'mean'`` | ``'sum'``.
  2871. If :attr:`reduction` is ``'none'``, the unreduced loss is returned;
  2872. If :attr:`reduction` is ``'mean'``, the reduced mean loss is returned;
  2873. If :attr:`reduction` is ``'sum'``, the summed loss is returned.
  2874. Default: ``'mean'``
  2875. name (str, optional): Name for the operation (optional, default is None).
  2876. For more information, please refer to :ref:`api_guide_Name`.
  2877. Shape:
  2878. input: N-D Tensor, the shape is [N, \*], N is batch size and `\*` means any number of additional dimensions, available dtype is float32, float64. The sum operation operates over all the elements.
  2879. label: N-D Tensor, same shape as the input. tensor elements should containing 1 or -1, the data type is float32 or float64.
  2880. output: scalar. If :attr:`reduction` is ``'none'``, then same shape as the input.
  2881. Returns:
  2882. Tensor. The tensor variable storing the hinge_embedding_loss of input and label.
  2883. Examples:
  2884. .. code-block:: python
  2885. >>> import paddle
  2886. >>> import paddle.nn.functional as F
  2887. >>> input = paddle.to_tensor([[1, -2, 3], [0, -1, 2], [1, 0, 1]], dtype=paddle.float32)
  2888. >>> # label elements in {1., -1.}
  2889. >>> label = paddle.to_tensor([[-1, 1, -1], [1, 1, 1], [1, -1, 1]], dtype=paddle.float32)
  2890. >>> loss = F.hinge_embedding_loss(input, label, margin=1.0, reduction='none')
  2891. >>> print(loss)
  2892. Tensor(shape=[3, 3], dtype=float32, place=Place(cpu), stop_gradient=True,
  2893. [[ 0., -2., 0.],
  2894. [ 0., -1., 2.],
  2895. [ 1., 1., 1.]])
  2896. >>> loss = F.hinge_embedding_loss(input, label, margin=1.0, reduction='mean')
  2897. >>> print(loss)
  2898. Tensor(shape=[], dtype=float32, place=Place(cpu), stop_gradient=True,
  2899. 0.22222222)
  2900. """
  2901. if reduction not in ['sum', 'mean', 'none']:
  2902. raise ValueError(
  2903. "'reduction' in 'hinge_embedding_loss' should be 'sum', 'mean' or 'none', "
  2904. f"but received {reduction}."
  2905. )
  2906. if not in_dynamic_mode():
  2907. check_variable_and_dtype(
  2908. input, 'input', ['float32', 'float64'], 'hinge_embedding_loss'
  2909. )
  2910. check_variable_and_dtype(
  2911. label, 'label', ['float32', 'float64'], 'hinge_embedding_loss'
  2912. )
  2913. zero_ = paddle.zeros([1], dtype=input.dtype)
  2914. loss = paddle.where(label == 1.0, input, zero_) + paddle.where(
  2915. label == -1.0, paddle.nn.functional.relu(margin - input), zero_
  2916. )
  2917. if reduction == 'mean':
  2918. return paddle.mean(loss, name=name)
  2919. elif reduction == 'sum':
  2920. return paddle.sum(loss, name=name)
  2921. elif reduction == 'none':
  2922. return loss
  2923. def cosine_embedding_loss(
  2924. input1, input2, label, margin=0, reduction='mean', name=None
  2925. ):
  2926. r"""
  2927. Compute the cosine embedding loss of Tensor ``input1``, ``input2`` and ``label`` as follows.
  2928. If label = 1, then the loss value can be calculated as follow:
  2929. .. math::
  2930. Out = 1 - cos(input1, input2)
  2931. If label = -1, then the loss value can be calculated as follow:
  2932. .. math::
  2933. Out = max(0, cos(input1, input2)) - margin
  2934. The operator cos can be described as follow:
  2935. .. math::
  2936. cos(x1, x2) = \frac{x1 \cdot{} x2}{\Vert x1 \Vert_2 * \Vert x2 \Vert_2}
  2937. Parameters:
  2938. input1 (Tensor): tensor with shape: [N, M] or [M], 'N' means batch size, which can be 0, 'M' means the length of input array.
  2939. Available dtypes are float32, float64.
  2940. input2 (Tensor): tensor with shape: [N, M] or [M], 'N' means batch size, which can be 0, 'M' means the length of input array.
  2941. Available dtypes are float32, float64.
  2942. label (Tensor): tensor with shape: [N] or [1], 'N' means the length of input array. The target labels values should be -1 or 1.
  2943. Available dtypes are int32, int64, float32, float64.
  2944. margin (float, optional): Should be a number from :math:`-1` to :math:`1`,
  2945. :math:`0` to :math:`0.5` is suggested. If :attr:`margin` is missing, the
  2946. default value is :math:`0`.
  2947. reduction (string, optional): Specifies the reduction to apply to the output:
  2948. ``'none'`` | ``'mean'`` | ``'sum'``. ``'none'``: no reduction will be applied,
  2949. ``'mean'``: the sum of the output will be divided by the number of elements in the output
  2950. ``'sum'``: the output will be summed.
  2951. name (str, optional): Name for the operation (optional, default is None).
  2952. For more information, please refer to :ref:`api_guide_Name`.
  2953. Returns:
  2954. Tensor, the cosine embedding Loss of Tensor ``input1`` ``input2`` and ``label``.
  2955. If `reduction` is ``'none'``, the shape of output loss is [N], the same as ``input`` .
  2956. If `reduction` is ``'mean'`` or ``'sum'``, the shape of output loss is [].
  2957. Examples:
  2958. .. code-block:: python
  2959. >>> import paddle
  2960. >>> input1 = paddle.to_tensor([[1.6, 1.2, -0.5], [3.2, 2.6, -5.8]], 'float32')
  2961. >>> input2 = paddle.to_tensor([[0.5, 0.5, -1.8], [2.3, -1.4, 1.1]], 'float32')
  2962. >>> label = paddle.to_tensor([1, -1], 'int64')
  2963. >>> output = paddle.nn.functional.cosine_embedding_loss(input1, input2, label, margin=0.5, reduction='mean')
  2964. >>> print(output) # 0.21155193
  2965. Tensor(shape=[], dtype=float32, place=Place(cpu), stop_gradient=True,
  2966. 0.21155193)
  2967. >>> output = paddle.nn.functional.cosine_embedding_loss(input1, input2, label, margin=0.5, reduction='sum')
  2968. >>> print(output) # 0.42310387
  2969. Tensor(shape=[], dtype=float32, place=Place(cpu), stop_gradient=True,
  2970. 0.42310387)
  2971. >>> output = paddle.nn.functional.cosine_embedding_loss(input1, input2, label, margin=0.5, reduction='none')
  2972. >>> print(output) # [0.42310387, 0. ]
  2973. Tensor(shape=[2], dtype=float32, place=Place(cpu), stop_gradient=True,
  2974. [0.42310387, 0. ])
  2975. """
  2976. if len(label.shape) != 1:
  2977. raise ValueError(
  2978. "1D target tensor expected, multi-target not supported"
  2979. )
  2980. if input1.shape != input2.shape:
  2981. raise ValueError(
  2982. "the shape of input tensor 1 should be equal to input tensor 2, but found inputs with "
  2983. "different sizes"
  2984. )
  2985. if len(input1.shape) > 2:
  2986. raise ValueError(
  2987. "1D target tensor expects 1D or 2D input tensors, but found inputs with different sizes"
  2988. )
  2989. if input1.dtype not in [paddle.float32, paddle.float64]:
  2990. raise ValueError(
  2991. "The data type of input Variable must be 'float32' or 'float64'"
  2992. )
  2993. if label.dtype not in [
  2994. paddle.int32,
  2995. paddle.int64,
  2996. paddle.float32,
  2997. paddle.float64,
  2998. ]:
  2999. raise ValueError(
  3000. "The data type of label Variable must be 'int32', 'int64', 'float32', 'float64'"
  3001. )
  3002. prod_sum = (input1 * input2).sum(axis=-1)
  3003. mag_square1 = paddle.square(input1).sum(axis=-1) + 10e-12
  3004. mag_square2 = paddle.square(input2).sum(axis=-1) + 10e-12
  3005. denom = paddle.sqrt(mag_square1 * mag_square2)
  3006. cos = prod_sum / denom
  3007. zeros = paddle.zeros_like(cos)
  3008. pos = 1 - cos
  3009. neg = paddle.clip(cos - margin, min=0)
  3010. out_pos = paddle.where(label == 1, pos, zeros)
  3011. out_neg = paddle.where(label == -1, neg, zeros)
  3012. out = out_pos + out_neg
  3013. if reduction == 'none':
  3014. return out
  3015. if reduction == 'mean':
  3016. return paddle.mean(out, name=name)
  3017. elif reduction == 'sum':
  3018. return paddle.sum(out, name=name)
  3019. def triplet_margin_with_distance_loss(
  3020. input,
  3021. positive,
  3022. negative,
  3023. distance_function=None,
  3024. margin=1.0,
  3025. swap=False,
  3026. reduction='mean',
  3027. name=None,
  3028. ):
  3029. r"""
  3030. Measures the triplet loss given an input
  3031. tensors :math:`x1`, :math:`x2`, :math:`x3` and a margin with a value greater than :math:`0`.
  3032. This is used for measuring a relative similarity between samples. A triplet
  3033. is composed by `input`, `positive` and `negative` (i.e., `input`, `positive examples` and `negative
  3034. examples` respectively). The shapes of all input tensors should be
  3035. :math:`(N, D)`.
  3036. The loss function for each sample in the mini-batch is:
  3037. .. math::
  3038. L(input, pos, neg) = \max \{d(input_i, pos_i) - d(input_i, neg_i) + {\rm margin}, 0\}
  3039. where the default distance function
  3040. .. math::
  3041. d(x_i, y_i) = \left\lVert {\bf x}_i - {\bf y}_i \right\rVert_p
  3042. or user can defined their own distance functions. `margin` is a nonnegative margin representing the minimum difference
  3043. between the positive and negative distances that is required for the loss to be 0. If `swap` is true, it will compare distance of (input, negative) with
  3044. distance of (negative, positive) and change it to the smaller one. For more details see http://www.bmva.org/bmvc/2016/papers/paper119/paper119.pdf.
  3045. Parameters:
  3046. input (Tensor):Input tensor, the data type is float32 or float64.
  3047. the shape is [N, \*], N is batch size and `\*` means any number of additional dimensions, available dtype is float32, float64.
  3048. positive (Tensor):Positive tensor, the data type is float32 or float64.
  3049. The shape of label is the same as the shape of input.
  3050. negative (Tensor):Negative tensor, the data type is float32 or float64.
  3051. The shape of label is the same as the shape of input.
  3052. distance_function (callable, optional): Quantifies the distance between two tensors. if not specified, 2 norm functions will be used.
  3053. margin (float, optional): A nonnegative margin representing the minimum difference
  3054. between the positive and negative distances required for the loss to be 0. Default value is :math:`1`.
  3055. swap (bool, optional):The distance swap changes the negative distance to the swap distance (distance between positive samples
  3056. and negative samples) if swap distance smaller than negative distance. Default: ``False``.
  3057. reduction (str, optional):Indicate how to average the loss by batch_size.
  3058. the candidates are ``'none'`` | ``'mean'`` | ``'sum'``.
  3059. If :attr:`reduction` is ``'none'``, the unreduced loss is returned;
  3060. If :attr:`reduction` is ``'mean'``, the reduced mean loss is returned;
  3061. If :attr:`reduction` is ``'sum'``, the summed loss is returned.
  3062. Default: ``'mean'``
  3063. name (str, optional): Name for the operation (optional, default is None).
  3064. For more information, please refer to :ref:`api_guide_Name`.
  3065. Returns:
  3066. Output: Tensor. The tensor variable storing the triplet_margin_with_distance_loss of input and positive and negative.
  3067. Examples:
  3068. .. code-block:: python
  3069. >>> import paddle
  3070. >>> import paddle.nn.functional as F
  3071. >>> input = paddle.to_tensor([[1, 5, 3], [0, 3, 2], [1, 4, 1]], dtype=paddle.float32)
  3072. >>> positive = paddle.to_tensor([[5, 1, 2], [3, 2, 1], [3, -1, 1]], dtype=paddle.float32)
  3073. >>> negative = paddle.to_tensor([[2, 1, -3], [1, 1, -1], [4, -2, 1]], dtype=paddle.float32)
  3074. >>> loss = F.triplet_margin_with_distance_loss(input, positive, negative, margin=1.0, reduction='none')
  3075. >>> print(loss)
  3076. Tensor(shape=[3], dtype=float32, place=Place(cpu), stop_gradient=True,
  3077. [0. , 0.57496595, 0. ])
  3078. >>> loss = F.triplet_margin_with_distance_loss(input, positive, negative, margin=1.0, reduction='mean')
  3079. >>> print(loss)
  3080. Tensor(shape=[], dtype=float32, place=Place(cpu), stop_gradient=True,
  3081. 0.19165532)
  3082. """
  3083. if reduction not in ['sum', 'mean', 'none']:
  3084. raise ValueError(
  3085. "'reduction' in 'triplet_margin_with_distance_loss' "
  3086. "should be 'sum', 'mean' or 'none', "
  3087. f"but received {reduction}."
  3088. )
  3089. if margin < 0:
  3090. raise ValueError(
  3091. "The margin between positive samples and negative samples should be greater than 0."
  3092. )
  3093. if not in_dynamic_mode():
  3094. check_variable_and_dtype(
  3095. input,
  3096. 'input',
  3097. ['float32', 'float64'],
  3098. 'triplet_margin_with_distance_loss',
  3099. )
  3100. check_variable_and_dtype(
  3101. positive,
  3102. 'positive',
  3103. ['float32', 'float64'],
  3104. 'triplet_margin_with_distance_loss',
  3105. )
  3106. check_variable_and_dtype(
  3107. negative,
  3108. 'negative',
  3109. ['float32', 'float64'],
  3110. 'triplet_margin_with_distance_loss',
  3111. )
  3112. if not (input.shape == positive.shape == negative.shape):
  3113. raise ValueError(
  3114. "input's shape must equal to "
  3115. "positive's shape and "
  3116. "negative's shape"
  3117. )
  3118. distance_function = (
  3119. distance_function
  3120. if distance_function is not None
  3121. else paddle.nn.PairwiseDistance(2)
  3122. )
  3123. positive_dist = distance_function(input, positive)
  3124. negative_dist = distance_function(input, negative)
  3125. if swap:
  3126. swap_dist = distance_function(positive, negative)
  3127. negative_dist = paddle.minimum(negative_dist, swap_dist)
  3128. if (
  3129. not isinstance(positive_dist, paddle.pir.Value)
  3130. and not paddle.all(positive_dist > 0)
  3131. ) or (
  3132. not isinstance(negative_dist, paddle.pir.Value)
  3133. and not paddle.all(negative_dist > 0)
  3134. ):
  3135. raise ValueError(
  3136. "The positive distance or negative distance should be greater than 0, "
  3137. "The distance functions should be checked."
  3138. )
  3139. loss = paddle.clip(positive_dist - negative_dist + margin, min=0.0)
  3140. if reduction == 'mean':
  3141. return paddle.mean(loss, name=name)
  3142. elif reduction == 'sum':
  3143. return paddle.sum(loss, name=name)
  3144. elif reduction == 'none':
  3145. return loss
  3146. def triplet_margin_loss(
  3147. input,
  3148. positive,
  3149. negative,
  3150. margin=1.0,
  3151. p=2,
  3152. epsilon=1e-6,
  3153. swap=False,
  3154. reduction='mean',
  3155. name=None,
  3156. ):
  3157. r"""
  3158. Measures the triplet loss given an input
  3159. tensors :math:`x1`, :math:`x2`, :math:`x3` and a margin with a value greater than :math:`0`.
  3160. This is used for measuring a relative similarity between samples. A triplet
  3161. is composed by `input`, `positive` and `negative` (i.e., `input`, `positive examples` and `negative
  3162. examples` respectively). The shapes of all input tensors should be
  3163. :math:`(N, *)`.
  3164. The loss function for each sample in the mini-batch is:
  3165. .. math::
  3166. L(input, pos, neg) = \max \{d(input_i, pos_i) - d(input_i, neg_i) + {\rm margin}, 0\}
  3167. where
  3168. .. math::
  3169. d(x_i, y_i) = \left\lVert {\bf x}_i - {\bf y}_i \right\rVert_p
  3170. Parameters:
  3171. input (Tensor): Input tensor, the data type is float32 or float64.
  3172. the shape is [N, \*], N is batch size and `\*` means any number of additional dimensions, available dtype is float32, float64.
  3173. positive (Tensor): Positive tensor, the data type is float32 or float64.
  3174. The shape of label is the same as the shape of input.
  3175. negative (Tensor): Negative tensor, the data type is float32 or float64.
  3176. The shape of label is the same as the shape of input.
  3177. margin (float, Optional): Default: :math:`1`.
  3178. p (int, Optional): The norm degree for pairwise distance. Default: :math:`2`.
  3179. epsilon (float, Optional): Add small value to avoid division by zero,
  3180. default value is 1e-6.
  3181. swap (bool,Optional): The distance swap change the negative distance to the distance between
  3182. positive sample and negative sample. For more details, see `Learning shallow convolutional feature descriptors with triplet losses`.
  3183. Default: ``False``.
  3184. reduction (str, Optional):Indicate how to average the loss by batch_size.
  3185. the candidates are ``'none'`` | ``'mean'`` | ``'sum'``.
  3186. If :attr:`reduction` is ``'none'``, the unreduced loss is returned;
  3187. If :attr:`reduction` is ``'mean'``, the reduced mean loss is returned;
  3188. If :attr:`reduction` is ``'sum'``, the summed loss is returned.
  3189. Default: ``'mean'``
  3190. name (str, Optional): Name for the operation (optional, default is None).
  3191. For more information, please refer to :ref:`api_guide_Name`.
  3192. Returns:
  3193. Output: Tensor. The tensor variable storing the triplet_margin_loss of input and positive and negative.
  3194. Examples:
  3195. .. code-block:: python
  3196. >>> import paddle
  3197. >>> import paddle.nn.functional as F
  3198. >>> input = paddle.to_tensor([[1, 5, 3], [0, 3, 2], [1, 4, 1]], dtype=paddle.float32)
  3199. >>> positive = paddle.to_tensor([[5, 1, 2], [3, 2, 1], [3, -1, 1]], dtype=paddle.float32)
  3200. >>> negative = paddle.to_tensor([[2, 1, -3], [1, 1, -1], [4, -2, 1]], dtype=paddle.float32)
  3201. >>> loss = F.triplet_margin_loss(input, positive, negative, margin=1.0, reduction='none')
  3202. >>> print(loss)
  3203. Tensor(shape=[3], dtype=float32, place=Place(cpu), stop_gradient=True,
  3204. [0. , 0.57496595, 0. ])
  3205. >>> loss = F.triplet_margin_loss(input, positive, negative, margin=1.0, reduction='mean')
  3206. >>> print(loss)
  3207. Tensor(shape=[], dtype=float32, place=Place(cpu), stop_gradient=True,
  3208. 0.19165532)
  3209. """
  3210. if reduction not in ['sum', 'mean', 'none']:
  3211. raise ValueError(
  3212. "'reduction' in 'triplet_margin_loss' should be 'sum', 'mean' or 'none', "
  3213. f"but received {reduction}."
  3214. )
  3215. if margin < 0:
  3216. raise ValueError(
  3217. "The margin between positive samples and negative samples should be greater than 0."
  3218. )
  3219. if not in_dynamic_mode():
  3220. check_variable_and_dtype(
  3221. input, 'input', ['float32', 'float64'], 'triplet_margin_loss'
  3222. )
  3223. check_variable_and_dtype(
  3224. positive, 'positive', ['float32', 'float64'], 'triplet_margin_loss'
  3225. )
  3226. check_variable_and_dtype(
  3227. negative, 'negative', ['float32', 'float64'], 'triplet_margin_loss'
  3228. )
  3229. if not (input.shape == positive.shape == negative.shape):
  3230. raise ValueError(
  3231. "input's shape must equal to "
  3232. "positive's shape and "
  3233. "negative's shape"
  3234. )
  3235. distance_function = paddle.nn.PairwiseDistance(p, epsilon=epsilon)
  3236. positive_dist = distance_function(input, positive)
  3237. negative_dist = distance_function(input, negative)
  3238. if swap:
  3239. swap_dist = distance_function(positive, negative)
  3240. negative_dist = paddle.minimum(negative_dist, swap_dist)
  3241. loss = paddle.clip(positive_dist - negative_dist + margin, min=0.0)
  3242. if reduction == 'mean':
  3243. return paddle.mean(loss, name=name)
  3244. elif reduction == 'sum':
  3245. return paddle.sum(loss, name=name)
  3246. elif reduction == 'none':
  3247. return loss
  3248. def multi_margin_loss(
  3249. input,
  3250. label,
  3251. p: int = 1,
  3252. margin: float = 1.0,
  3253. weight=None,
  3254. reduction='mean',
  3255. name=None,
  3256. ):
  3257. r"""
  3258. Measures a multi-class classification hinge loss between input :math:`input` and label :math:`label`:
  3259. For i-th mini-batch sample, the loss in terms of the 1D input :math:`input_i` and scalar
  3260. output :math:`label_i` is:
  3261. .. math::
  3262. \text{loss}(input_i, label_i) = \frac{\sum_{j} \max(0, \text{margin} - input_i[label_i] + input_i[j])^p}{\text{C}}
  3263. where :math:`0 \leq j \leq \text{C}-1`, :math:`0 \leq i \leq \text{N}-1` and :math:`j \neq label_i`.
  3264. Optionally, you can give non-equal weighting on the classes by passing
  3265. a 1D :attr:`weight` tensor into the constructor.
  3266. The loss function for i-th sample then becomes:
  3267. .. math::
  3268. \text{loss}(input_i, label_i) = \frac{\sum_{j} \max(0, weight[label_i] * (\text{margin} - input_i[label_i] + input_i[j]))^p}{\text{C}}
  3269. Parameters:
  3270. input (Tensor): Input tensor, the data type is float32 or float64. Shape is (N, C), where C is number of classes.
  3271. label (Tensor): Label tensor, the data type is int32 or int64. The shape of label is (N,)
  3272. p (int, Optional): The power num. Default: :math:`1`.
  3273. margin (float, Optional): Default: :math:`1`.
  3274. weight (Tensor,optional): a manual rescaling weight given to each class.
  3275. If given, has to be a Tensor of shape (C,) and the data type is float32, float64.
  3276. Default is ``'None'`` .
  3277. reduction (str, Optional):Indicate how to calculate the loss by batch_size.
  3278. the candidates are ``'none'`` | ``'mean'`` | ``'sum'``.
  3279. If :attr:`reduction` is ``'none'``, the unreduced loss is returned;
  3280. If :attr:`reduction` is ``'mean'``, the reduced mean loss is returned;
  3281. If :attr:`reduction` is ``'sum'``, the summed loss is returned.
  3282. Default: ``'mean'``
  3283. name (str, Optional): Name for the operation (optional, default is None).
  3284. For more information, please refer to :ref:`api_guide_Name`.
  3285. Returns:
  3286. Output: Tensor. The tensor variable storing the multi_margin_loss of input and label.
  3287. Examples:
  3288. .. code-block:: python
  3289. >>> import paddle
  3290. >>> import paddle.nn.functional as F
  3291. >>> input = paddle.to_tensor([[1, 5, 3], [0, 3, 2], [1, 4, 1]], dtype=paddle.float32)
  3292. >>> label = paddle.to_tensor([1, 2, 1], dtype=paddle.int32)
  3293. >>> loss = F.multi_margin_loss(input, label, margin=1.0, reduction='none')
  3294. >>> print(loss)
  3295. Tensor(shape=[3], dtype=float32, place=Place(cpu), stop_gradient=True,
  3296. [0. , 0.66666663, 0. ])
  3297. """
  3298. if reduction not in ['sum', 'mean', 'none']:
  3299. raise ValueError(
  3300. "'reduction' in 'multi_margin_loss' should be 'sum', 'mean' or 'none', "
  3301. f"but received {reduction}."
  3302. )
  3303. if not in_dynamic_mode():
  3304. check_variable_and_dtype(
  3305. input, 'input', ['float32', 'float64'], 'multi_margin_loss'
  3306. )
  3307. check_variable_and_dtype(
  3308. label, 'label', ['int32', 'int64'], 'multi_margin_loss'
  3309. )
  3310. if not (input.shape[0] == label.shape[0]):
  3311. raise ValueError(
  3312. "The label's shape[0] should be equal to input's shape[0], "
  3313. f"but received input's shape[0] {input.shape[0]} and label's shape[0]:{label.shape[0]}. "
  3314. )
  3315. label = label.reshape((-1, 1))
  3316. index_sample = paddle.index_sample(input, label)
  3317. if weight is not None:
  3318. if not in_dynamic_mode():
  3319. check_variable_and_dtype(
  3320. weight, 'weight', ['float32', 'float64'], 'multi_margin_loss'
  3321. )
  3322. if not (input.shape[1] == weight.shape[0]):
  3323. raise ValueError(
  3324. "The weight's shape[0] should be equal to input's shape[1]"
  3325. f"but received weight's shape[0]: {weight.shape[0]} and input's shape[1]: {input.shape[1]}"
  3326. )
  3327. weight = paddle.gather(weight, label, axis=0).reshape((-1, 1))
  3328. loss = paddle.mean(
  3329. paddle.pow(
  3330. paddle.clip(weight * (margin - index_sample + input), min=0.0),
  3331. p,
  3332. ),
  3333. axis=1,
  3334. ) - weight * (margin**p / paddle.shape(input)[1])
  3335. else:
  3336. loss = (
  3337. paddle.mean(
  3338. paddle.pow(
  3339. paddle.clip(margin - index_sample + input, min=0.0), p
  3340. ),
  3341. axis=1,
  3342. )
  3343. - margin**p / paddle.shape(input)[1]
  3344. )
  3345. if reduction == 'mean':
  3346. return paddle.mean(loss, name=name)
  3347. elif reduction == 'sum':
  3348. return paddle.sum(loss, name=name)
  3349. elif reduction == 'none':
  3350. return loss
  3351. def soft_margin_loss(input, label, reduction='mean', name=None):
  3352. """
  3353. The API measures the soft margin loss between input predictions ``input``
  3354. and target labels ``label`` . It can be described as:
  3355. .. math::
  3356. Out = log(1 + exp((-label * input)))
  3357. Parameters:
  3358. input (Tensor): The input predications tensor with shape: ``[N, *]``,
  3359. N is batch_size, `*` means any number of additional dimensions. The ``input`` ranges from -inf to inf.
  3360. Available dtype is float32, float64.
  3361. label (Tensor): The target labels tensor with the same shape as
  3362. ``input``. The target labels which values should be numbers -1 or 1.
  3363. Available dtype is int32, int64, float32, float64.
  3364. reduction (str, optional): Indicate how to average the loss by batch_size,
  3365. the candidates are ``'none'`` | ``'mean'`` | ``'sum'``.
  3366. If :attr:`reduction` is ``'none'``, the unreduced loss is returned;
  3367. If :attr:`reduction` is ``'mean'``, the reduced mean loss is returned;
  3368. If :attr:`reduction` is ``'sum'``, the summed loss is returned.
  3369. Default is ``'mean'``.
  3370. name (str, optional): Name for the operation (optional, default is None).
  3371. For more information, please refer to :ref:`api_guide_Name`.
  3372. Returns:
  3373. Output (Tensor): If ``reduction`` is ``'none'``, the shape of output is same as ``input`` , else the shape of output is [].
  3374. Examples:
  3375. .. code-block:: python
  3376. >>> import paddle
  3377. >>> paddle.seed(2023)
  3378. >>> input = paddle.to_tensor([[0.5, 0.6, 0.7],[0.3, 0.5, 0.2]], 'float32')
  3379. >>> label = paddle.to_tensor([[1.0, -1.0, 1.0],[-1.0, 1.0, 1.0]], 'float32')
  3380. >>> output = paddle.nn.functional.soft_margin_loss(input, label)
  3381. >>> print(output)
  3382. Tensor(shape=[], dtype=float32, place=Place(cpu), stop_gradient=True,
  3383. 0.64022040)
  3384. >>> input = paddle.uniform(shape=(5, 5), dtype="float32", min=0.1, max=0.8)
  3385. >>> label = paddle.randint(0, 2, shape=(5, 5), dtype="int64")
  3386. >>> label[label==0] = -1
  3387. >>> output = paddle.nn.functional.soft_margin_loss(input, label, reduction='none')
  3388. >>> print(output)
  3389. Tensor(shape=[5, 5], dtype=float32, place=Place(cpu), stop_gradient=True,
  3390. [[1.10725629, 0.48778144, 0.56217247, 1.12581408, 0.51430041],
  3391. [0.90375793, 0.37761253, 0.43007556, 0.95089805, 0.43288314],
  3392. [1.16043591, 0.63015938, 0.51362717, 0.43617544, 0.57783306],
  3393. [0.81927848, 0.52558368, 0.59713912, 0.83100700, 0.50811619],
  3394. [0.82684207, 1.02064908, 0.50296998, 1.13461733, 0.93222517]])
  3395. """
  3396. if reduction not in ['sum', 'mean', 'none']:
  3397. raise ValueError(
  3398. "The value of 'reduction' in soft_margin_loss should be 'sum', "
  3399. "'mean' or 'none', but received %s, which is not allowed."
  3400. % reduction
  3401. )
  3402. if not in_dynamic_mode():
  3403. base.data_feeder.check_variable_and_dtype(
  3404. input, 'input', ['float32', 'float64'], 'soft_margin_loss'
  3405. )
  3406. base.data_feeder.check_variable_and_dtype(
  3407. label,
  3408. 'label',
  3409. ['int32', 'int64', 'float32', 'float64'],
  3410. 'soft_margin_loss',
  3411. )
  3412. if not (input.shape == label.shape):
  3413. raise ValueError("input's shape must equal to " "label's shape")
  3414. label = paddle.cast(label, input.dtype)
  3415. out = paddle.log(1 + paddle.exp(-label * input))
  3416. if reduction == 'sum':
  3417. return paddle.sum(out, name=name)
  3418. elif reduction == 'mean':
  3419. return paddle.mean(out, name=name)
  3420. else:
  3421. return out
  3422. def gaussian_nll_loss(
  3423. input,
  3424. label,
  3425. variance,
  3426. full=False,
  3427. epsilon=1e-6,
  3428. reduction='mean',
  3429. name=None,
  3430. ):
  3431. r"""Gaussian negative log likelihood loss.
  3432. Gaussian negative log likelihood loss among ``input``, ``variance`` and
  3433. ``label``. Note that the ``label`` is treated as samples from Gaussian distributions.
  3434. This function is used to train a neural network predicts
  3435. the ``input`` and ``variance`` of a gaussian distribution that ``label`` are supposed to
  3436. be coming from. This means ``input`` and ``variance`` should be functions(the neural network) of some inputs.
  3437. For a ``label`` having Gaussian distribution with ``input`` and ``variance`` predicted by neural network
  3438. the loss is calculated as follows:
  3439. .. math::
  3440. \text{loss} = \frac{1}{2}\left(\log\left(\text{max}\left(\text{var},
  3441. \ \text{epsilon}\right)\right) + \frac{\left(\text{input} - \text{label}\right)^2}
  3442. {\text{max}\left(\text{var}, \ \text{epsilon}\right)}\right) + \text{const.}
  3443. where :attr:`epsilon` is used for stability. By default, the constant term of
  3444. the loss function is omitted unless :attr:`full` is ``True``. If ``variance`` is not the same
  3445. size as ``input`` (due to a homoscedastic assumption), it must either have a final dimension
  3446. of 1 or have one fewer dimension (with all other sizes being the same) for correct broadcasting.
  3447. Args:
  3448. input (Tensor): input tensor, :math:`(N, *)` or :math:`(*)` where :math:`*` means any number of additional
  3449. dimensions. Expectation of the Gaussian distribution, available dtype is float32, float64.
  3450. label (Tensor): target label tensor, :math:`(N, *)` or :math:`(*)`, same shape as the input, or same shape as the input
  3451. but with one dimension equal to 1 (to allow for broadcasting). Sample from the Gaussian distribution, available dtype is float32, float64.
  3452. variance (Tensor): tensor of positive variance(s), :math:`(N, *)` or :math:`(*)`, same shape as the input, or same shape as the input but
  3453. with one dimension equal to 1, or same shape as the input but with one fewer
  3454. dimension (to allow for broadcasting). One for each of the expectations
  3455. in the input (heteroscedastic), or a single one (homoscedastic), available dtype is float32, float64.
  3456. full (bool, optional): include the constant term in the loss
  3457. calculation. Default: ``False``.
  3458. epsilon (float, optional): value used to clamp ``variance`` (see note below), for
  3459. stability. Default: 1e-6.
  3460. reduction (str, optional): specifies the reduction to apply to the
  3461. output:``'none'`` | ``'mean'`` | ``'sum'``. ``'none'``: no reduction
  3462. will be applied, ``'mean'``: the output is the average of all batch
  3463. member losses, ``'sum'``: the output is the sum of all batch member
  3464. losses. Default: ``'mean'``.
  3465. name (str, optional): Name for the operation (optional, default is None). For more information, please refer to :ref:`api_guide_Name`.
  3466. Returns:
  3467. output (Tensor): If ``reduction`` is ``'none'``, the shape of output is same as ``input`` , else the shape of output is [].
  3468. Examples::
  3469. .. code-block:: python
  3470. >>> import paddle
  3471. >>> import paddle.nn.functional as F
  3472. >>> paddle.seed(2023)
  3473. >>> input = paddle.randn([5, 2], dtype=paddle.float32)
  3474. >>> label = paddle.randn([5, 2], dtype=paddle.float32)
  3475. >>> variance = paddle.ones([5, 2], dtype=paddle.float32)
  3476. >>> loss = F.gaussian_nll_loss(input, label, variance, reduction='none')
  3477. >>> print(loss)
  3478. Tensor(shape=[5, 2], dtype=float32, place=Place(cpu), stop_gradient=True,
  3479. [[0.21808575, 1.43013096],
  3480. [1.05245590, 0.00394560],
  3481. [1.20861185, 0.00000062],
  3482. [0.56946373, 0.73300570],
  3483. [0.37142906, 0.12038800]])
  3484. >>> loss = F.gaussian_nll_loss(input, label, variance, reduction='mean')
  3485. >>> print(loss)
  3486. Tensor(shape=[], dtype=float32, place=Place(cpu), stop_gradient=True,
  3487. 0.57075173)
  3488. Note:
  3489. The clamping of ``variance`` is ignored with respect to autograd, and so the
  3490. gradients are unaffected by it.
  3491. """
  3492. # Check variance shape
  3493. # If variance.shape == input.shape, the case is heteroscedastic and no further checks are needed.
  3494. # Otherwise:
  3495. if variance.shape != input.shape:
  3496. # If variance is one dimension short of input, but the shape match otherwise, then this is a homoscedastic case.
  3497. # e.g. input.shape = (10, 2, 3), variance.shape = (10, 2)
  3498. # -> unsqueeze variance so that variance.shape = (10, 2, 1)
  3499. # this is done so that broadcasting can happen in the loss calculation
  3500. if input.shape[:-1] == variance.shape:
  3501. variance = paddle.unsqueeze(variance, -1)
  3502. # This checks if the shape match up to the final dimension, and the final dimension of variance is of shape 1.
  3503. # This is also a homoscedastic case.
  3504. # e.g. input.shape = (10, 2, 3), variance.shape = (10, 2, 1)
  3505. elif (
  3506. input.shape[:-1] == variance.shape[:-1] and variance.shape[-1] == 1
  3507. ): # Heteroscedastic case
  3508. pass
  3509. # If none of the above pass, then the shape of variance is incorrect.
  3510. else:
  3511. raise ValueError("variance is of incorrect shape")
  3512. # Check validity of reduction mode
  3513. if reduction != 'none' and reduction != 'mean' and reduction != 'sum':
  3514. raise ValueError(reduction + " is not valid")
  3515. check_variable_and_dtype(
  3516. input,
  3517. 'Input',
  3518. ['float32', 'float64'],
  3519. 'gaussian_nll_loss',
  3520. )
  3521. check_variable_and_dtype(
  3522. label,
  3523. 'Label',
  3524. ['float32', 'float64'],
  3525. 'gaussian_nll_loss',
  3526. )
  3527. check_variable_and_dtype(
  3528. variance,
  3529. 'Variance',
  3530. ['float32', 'float64'],
  3531. 'gaussian_nll_loss',
  3532. )
  3533. # Entries of variance must be non-negative
  3534. if not in_dynamic_mode():
  3535. condition = paddle.all(variance > 0)
  3536. Assert(condition, [variance], 6)
  3537. else:
  3538. if input.dtype not in [paddle.float32, paddle.float64]:
  3539. raise ValueError(
  3540. "The data type of input Variable must be 'float32' or 'float64'"
  3541. )
  3542. if label.dtype not in [
  3543. paddle.float32,
  3544. paddle.float64,
  3545. ]:
  3546. raise ValueError(
  3547. "The data type of label Variable must be 'float32', 'float64'"
  3548. )
  3549. if variance.dtype not in [paddle.float32, paddle.float64]:
  3550. raise ValueError(
  3551. "The data type of variance Variable must be 'float32', 'float64'"
  3552. )
  3553. if paddle.any(variance < 0):
  3554. raise ValueError("variance has negative entry/entries")
  3555. # Clamp for stability
  3556. variance = variance.clone()
  3557. with paddle.no_grad():
  3558. variance = paddle.clip(variance, min=epsilon)
  3559. # Calculate the loss
  3560. loss = 0.5 * (
  3561. paddle.log(variance) + paddle.square(input - label) / variance
  3562. )
  3563. if full:
  3564. loss += 0.5 * math.log(2 * math.pi)
  3565. if reduction == 'mean':
  3566. return paddle.mean(loss, name=name)
  3567. elif reduction == 'sum':
  3568. return paddle.sum(loss, name=name)
  3569. elif reduction == 'none':
  3570. return loss
  3571. def adaptive_log_softmax_with_loss(
  3572. input, label, head_weight, tail_weights, cutoffs, head_bias=None, name=None
  3573. ):
  3574. r"""Compute adaptive logsoftmax result and negative log likelihood between ``input`` and ``label``.
  3575. Parameter ``head``, ``tail_weights``, ``cutoffs`` are inner members of AdaptiveLogSoftmaxWithLoss
  3576. Please refer to :ref:`api_paddle_nn_AdaptiveLogSoftmaxWithLoss`.
  3577. Args:
  3578. input (Tensor): Input tensor, the data type should be float32 or float64.
  3579. label (Tensor): Label tensor, the data type should be float32 or float64.
  3580. head_weight (Tensor): weight tensor for linear computation, the data type should be float32 or float64, the shape should be ``[input.shape[1], shortlist_size + n_clusters]``, where ``shortlist_size`` is the first element in the cutoffs list, and ``n_clusters`` is the length of the cutoffs list minus 1.
  3581. tail_weights (list[Tensor]): weight tensor list for linear computation, the data type should be float32 or float64. The number of elements in the tail_weights depends on the value of the n_clusters, and each element contains the weights of two linear layers, their dimensions are ``[input.shape[1], hsz]`` and ``[hsz, osz]``, where ``hsz`` is the number of input features in_features divided by div_value to the power ``(i + 1)``, where i is the cyclic variable, from ``0`` to ``n_clusters - 1``, and ``osz`` is the ``(i + 1)`` The difference between the cutoff and the ith cutoff.
  3582. cutoffs (Sequence): Cutoffs used to assign targets to their buckets.
  3583. head_bias (Tensor, optional): bias tensor for linear computation, the data type should be float32 or float64. Default: ``None``.
  3584. name (str, optional): Name for the operation (optional, default is ``None``). For more information, please refer to :ref:`api_guide_Name`.
  3585. Returns:
  3586. - output (Tensor). The tensor sotring adaptive logsoftmax result, the shape of output is ``[N]``
  3587. - loss (Tensor). The tensor variable storing the adaptive_log_softmax_loss of input and label.
  3588. Examples:
  3589. .. code-block:: python
  3590. >>> import paddle
  3591. >>> import paddle.nn.functional as F
  3592. >>> paddle.seed(2024)
  3593. >>> input = paddle.randn([3, 5], dtype=paddle.float32)
  3594. >>> head_weight = paddle.randn([5, 3], dtype=paddle.float32)
  3595. >>> head_bias = paddle.randn([3], dtype=paddle.float32)
  3596. >>> tail_weights = []
  3597. >>> tail_weights.append(paddle.randn([5, 2], dtype=paddle.float32))
  3598. >>> tail_weights.append(paddle.randn([2, 1], dtype=paddle.float32))
  3599. >>> out, loss = F.adaptive_log_softmax_with_loss(input, paddle.full((3,), 1, dtype='int64'), head_weight, tail_weights, cutoffs=[2], head_bias=head_bias)
  3600. >>> print(out)
  3601. Tensor(shape=[3], dtype=float32, place=Place(cpu), stop_gradient=True,
  3602. [-0.99842924, -2.27753878, -0.16740258])
  3603. >>> print(loss)
  3604. Tensor(shape=[], dtype=float32, place=Place(cpu), stop_gradient=True,
  3605. 1.14779019)
  3606. """
  3607. targt_dim = label.dim()
  3608. if targt_dim == 1:
  3609. if input.shape[0] != label.shape[0]:
  3610. raise ValueError(
  3611. 'Input and label should have the same size '
  3612. 'in the batch dimension.'
  3613. )
  3614. if input.dim() != 2:
  3615. raise ValueError(
  3616. '1D label tensor expects 2D input tensors, '
  3617. 'but found inputs with size',
  3618. input.shape,
  3619. )
  3620. elif targt_dim == 0:
  3621. if input.dim() != 1:
  3622. raise ValueError(
  3623. '0D label tensor expects 1D input tensors, '
  3624. 'but found inputs with size',
  3625. input.shape,
  3626. )
  3627. else:
  3628. raise ValueError(
  3629. '0D or 1D label tensor expected, ' 'multi-label not supported'
  3630. )
  3631. is_batched = targt_dim > 0
  3632. input = input if is_batched else input.unsqueeze(0)
  3633. label = label if is_batched else label.unsqueeze(0)
  3634. used_rows = 0
  3635. batch_size = label.shape[0]
  3636. output = paddle.zeros([batch_size], dtype=input.dtype)
  3637. gather_inds = paddle.empty([batch_size], dtype=label.dtype)
  3638. cutoff_values = [0] + cutoffs
  3639. for i in range(len(cutoff_values) - 1):
  3640. low_idx = cutoff_values[i]
  3641. high_idx = cutoff_values[i + 1]
  3642. label_mask = (label >= low_idx) & (label < high_idx)
  3643. row_indices = label_mask.nonzero().squeeze()
  3644. if row_indices.numel() == 0:
  3645. continue
  3646. if i == 0:
  3647. scatter_output = paddle.scatter_nd(
  3648. row_indices.unsqueeze(1),
  3649. label.masked_select(label_mask),
  3650. gather_inds.shape,
  3651. )
  3652. gather_inds = scatter_output
  3653. else:
  3654. relative_label = label[label_mask] - low_idx
  3655. input_subset = input.index_select(row_indices, axis=0)
  3656. cluster_output = paddle.nn.functional.linear(
  3657. x=input_subset, weight=tail_weights[i - 1][0]
  3658. )
  3659. cluster_output = paddle.nn.functional.linear(
  3660. x=cluster_output, weight=tail_weights[i - 1][1]
  3661. )
  3662. cluster_index = cutoffs[0] + i - 1
  3663. gather_inds = paddle.index_fill(
  3664. gather_inds, row_indices, 0, cluster_index
  3665. )
  3666. cluster_logprob = paddle.nn.functional.log_softmax(
  3667. cluster_output, axis=1
  3668. )
  3669. local_logprob = paddle.take_along_axis(
  3670. cluster_logprob, relative_label.unsqueeze(1), axis=1
  3671. )
  3672. scatter_output = paddle.scatter_nd(
  3673. row_indices.unsqueeze(1), local_logprob.squeeze(1), output.shape
  3674. )
  3675. output = (
  3676. output * (scatter_output == 0).astype('float32')
  3677. + scatter_output
  3678. )
  3679. used_rows += row_indices.numel()
  3680. if used_rows != batch_size:
  3681. raise ValueError(
  3682. f"label values should be in [0, n_classes - 1], "
  3683. f"but values in range [{label.min().item()}, {label.max().item()}] "
  3684. "were found. "
  3685. )
  3686. head_output = paddle.nn.functional.linear(
  3687. x=input, weight=head_weight, bias=head_bias
  3688. )
  3689. head_logprob = paddle.nn.functional.log_softmax(head_output, axis=1)
  3690. output += paddle.take_along_axis(
  3691. head_logprob, gather_inds.unsqueeze(1), axis=1
  3692. ).squeeze()
  3693. loss = (-output).mean()
  3694. if not is_batched:
  3695. output = output.squeeze(0)
  3696. return output, loss