├── LICENSE
├── README.md
├── Reviewers
├── Meta.tex
├── Meta1.tex
└── R1.tex
├── chinese_doc.md
├── cover_letter.tex
├── imgs
└── IU1.jpg
├── literature.bib
├── review_response.pdf
├── review_response.tex
└── reviewresponse.sty
/LICENSE:
--------------------------------------------------------------------------------
1 | GNU GENERAL PUBLIC LICENSE
2 | Version 3, 29 June 2007
3 |
4 | Copyright (C) 2007 Free Software Foundation, Inc.
5 | Everyone is permitted to copy and distribute verbatim copies
6 | of this license document, but changing it is not allowed.
7 |
8 | Preamble
9 |
10 | The GNU General Public License is a free, copyleft license for
11 | software and other kinds of works.
12 |
13 | The licenses for most software and other practical works are designed
14 | to take away your freedom to share and change the works. By contrast,
15 | the GNU General Public License is intended to guarantee your freedom to
16 | share and change all versions of a program--to make sure it remains free
17 | software for all its users. We, the Free Software Foundation, use the
18 | GNU General Public License for most of our software; it applies also to
19 | any other work released this way by its authors. You can apply it to
20 | your programs, too.
21 |
22 | When we speak of free software, we are referring to freedom, not
23 | price. Our General Public Licenses are designed to make sure that you
24 | have the freedom to distribute copies of free software (and charge for
25 | them if you wish), that you receive source code or can get it if you
26 | want it, that you can change the software or use pieces of it in new
27 | free programs, and that you know you can do these things.
28 |
29 | To protect your rights, we need to prevent others from denying you
30 | these rights or asking you to surrender the rights. Therefore, you have
31 | certain responsibilities if you distribute copies of the software, or if
32 | you modify it: responsibilities to respect the freedom of others.
33 |
34 | For example, if you distribute copies of such a program, whether
35 | gratis or for a fee, you must pass on to the recipients the same
36 | freedoms that you received. You must make sure that they, too, receive
37 | or can get the source code. And you must show them these terms so they
38 | know their rights.
39 |
40 | Developers that use the GNU GPL protect your rights with two steps:
41 | (1) assert copyright on the software, and (2) offer you this License
42 | giving you legal permission to copy, distribute and/or modify it.
43 |
44 | For the developers' and authors' protection, the GPL clearly explains
45 | that there is no warranty for this free software. For both users' and
46 | authors' sake, the GPL requires that modified versions be marked as
47 | changed, so that their problems will not be attributed erroneously to
48 | authors of previous versions.
49 |
50 | Some devices are designed to deny users access to install or run
51 | modified versions of the software inside them, although the manufacturer
52 | can do so. This is fundamentally incompatible with the aim of
53 | protecting users' freedom to change the software. The systematic
54 | pattern of such abuse occurs in the area of products for individuals to
55 | use, which is precisely where it is most unacceptable. Therefore, we
56 | have designed this version of the GPL to prohibit the practice for those
57 | products. If such problems arise substantially in other domains, we
58 | stand ready to extend this provision to those domains in future versions
59 | of the GPL, as needed to protect the freedom of users.
60 |
61 | Finally, every program is threatened constantly by software patents.
62 | States should not allow patents to restrict development and use of
63 | software on general-purpose computers, but in those that do, we wish to
64 | avoid the special danger that patents applied to a free program could
65 | make it effectively proprietary. To prevent this, the GPL assures that
66 | patents cannot be used to render the program non-free.
67 |
68 | The precise terms and conditions for copying, distribution and
69 | modification follow.
70 |
71 | TERMS AND CONDITIONS
72 |
73 | 0. Definitions.
74 |
75 | "This License" refers to version 3 of the GNU General Public License.
76 |
77 | "Copyright" also means copyright-like laws that apply to other kinds of
78 | works, such as semiconductor masks.
79 |
80 | "The Program" refers to any copyrightable work licensed under this
81 | License. Each licensee is addressed as "you". "Licensees" and
82 | "recipients" may be individuals or organizations.
83 |
84 | To "modify" a work means to copy from or adapt all or part of the work
85 | in a fashion requiring copyright permission, other than the making of an
86 | exact copy. The resulting work is called a "modified version" of the
87 | earlier work or a work "based on" the earlier work.
88 |
89 | A "covered work" means either the unmodified Program or a work based
90 | on the Program.
91 |
92 | To "propagate" a work means to do anything with it that, without
93 | permission, would make you directly or secondarily liable for
94 | infringement under applicable copyright law, except executing it on a
95 | computer or modifying a private copy. Propagation includes copying,
96 | distribution (with or without modification), making available to the
97 | public, and in some countries other activities as well.
98 |
99 | To "convey" a work means any kind of propagation that enables other
100 | parties to make or receive copies. Mere interaction with a user through
101 | a computer network, with no transfer of a copy, is not conveying.
102 |
103 | An interactive user interface displays "Appropriate Legal Notices"
104 | to the extent that it includes a convenient and prominently visible
105 | feature that (1) displays an appropriate copyright notice, and (2)
106 | tells the user that there is no warranty for the work (except to the
107 | extent that warranties are provided), that licensees may convey the
108 | work under this License, and how to view a copy of this License. If
109 | the interface presents a list of user commands or options, such as a
110 | menu, a prominent item in the list meets this criterion.
111 |
112 | 1. Source Code.
113 |
114 | The "source code" for a work means the preferred form of the work
115 | for making modifications to it. "Object code" means any non-source
116 | form of a work.
117 |
118 | A "Standard Interface" means an interface that either is an official
119 | standard defined by a recognized standards body, or, in the case of
120 | interfaces specified for a particular programming language, one that
121 | is widely used among developers working in that language.
122 |
123 | The "System Libraries" of an executable work include anything, other
124 | than the work as a whole, that (a) is included in the normal form of
125 | packaging a Major Component, but which is not part of that Major
126 | Component, and (b) serves only to enable use of the work with that
127 | Major Component, or to implement a Standard Interface for which an
128 | implementation is available to the public in source code form. A
129 | "Major Component", in this context, means a major essential component
130 | (kernel, window system, and so on) of the specific operating system
131 | (if any) on which the executable work runs, or a compiler used to
132 | produce the work, or an object code interpreter used to run it.
133 |
134 | The "Corresponding Source" for a work in object code form means all
135 | the source code needed to generate, install, and (for an executable
136 | work) run the object code and to modify the work, including scripts to
137 | control those activities. However, it does not include the work's
138 | System Libraries, or general-purpose tools or generally available free
139 | programs which are used unmodified in performing those activities but
140 | which are not part of the work. For example, Corresponding Source
141 | includes interface definition files associated with source files for
142 | the work, and the source code for shared libraries and dynamically
143 | linked subprograms that the work is specifically designed to require,
144 | such as by intimate data communication or control flow between those
145 | subprograms and other parts of the work.
146 |
147 | The Corresponding Source need not include anything that users
148 | can regenerate automatically from other parts of the Corresponding
149 | Source.
150 |
151 | The Corresponding Source for a work in source code form is that
152 | same work.
153 |
154 | 2. Basic Permissions.
155 |
156 | All rights granted under this License are granted for the term of
157 | copyright on the Program, and are irrevocable provided the stated
158 | conditions are met. This License explicitly affirms your unlimited
159 | permission to run the unmodified Program. The output from running a
160 | covered work is covered by this License only if the output, given its
161 | content, constitutes a covered work. This License acknowledges your
162 | rights of fair use or other equivalent, as provided by copyright law.
163 |
164 | You may make, run and propagate covered works that you do not
165 | convey, without conditions so long as your license otherwise remains
166 | in force. You may convey covered works to others for the sole purpose
167 | of having them make modifications exclusively for you, or provide you
168 | with facilities for running those works, provided that you comply with
169 | the terms of this License in conveying all material for which you do
170 | not control copyright. Those thus making or running the covered works
171 | for you must do so exclusively on your behalf, under your direction
172 | and control, on terms that prohibit them from making any copies of
173 | your copyrighted material outside their relationship with you.
174 |
175 | Conveying under any other circumstances is permitted solely under
176 | the conditions stated below. Sublicensing is not allowed; section 10
177 | makes it unnecessary.
178 |
179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180 |
181 | No covered work shall be deemed part of an effective technological
182 | measure under any applicable law fulfilling obligations under article
183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184 | similar laws prohibiting or restricting circumvention of such
185 | measures.
186 |
187 | When you convey a covered work, you waive any legal power to forbid
188 | circumvention of technological measures to the extent such circumvention
189 | is effected by exercising rights under this License with respect to
190 | the covered work, and you disclaim any intention to limit operation or
191 | modification of the work as a means of enforcing, against the work's
192 | users, your or third parties' legal rights to forbid circumvention of
193 | technological measures.
194 |
195 | 4. Conveying Verbatim Copies.
196 |
197 | You may convey verbatim copies of the Program's source code as you
198 | receive it, in any medium, provided that you conspicuously and
199 | appropriately publish on each copy an appropriate copyright notice;
200 | keep intact all notices stating that this License and any
201 | non-permissive terms added in accord with section 7 apply to the code;
202 | keep intact all notices of the absence of any warranty; and give all
203 | recipients a copy of this License along with the Program.
204 |
205 | You may charge any price or no price for each copy that you convey,
206 | and you may offer support or warranty protection for a fee.
207 |
208 | 5. Conveying Modified Source Versions.
209 |
210 | You may convey a work based on the Program, or the modifications to
211 | produce it from the Program, in the form of source code under the
212 | terms of section 4, provided that you also meet all of these conditions:
213 |
214 | a) The work must carry prominent notices stating that you modified
215 | it, and giving a relevant date.
216 |
217 | b) The work must carry prominent notices stating that it is
218 | released under this License and any conditions added under section
219 | 7. This requirement modifies the requirement in section 4 to
220 | "keep intact all notices".
221 |
222 | c) You must license the entire work, as a whole, under this
223 | License to anyone who comes into possession of a copy. This
224 | License will therefore apply, along with any applicable section 7
225 | additional terms, to the whole of the work, and all its parts,
226 | regardless of how they are packaged. This License gives no
227 | permission to license the work in any other way, but it does not
228 | invalidate such permission if you have separately received it.
229 |
230 | d) If the work has interactive user interfaces, each must display
231 | Appropriate Legal Notices; however, if the Program has interactive
232 | interfaces that do not display Appropriate Legal Notices, your
233 | work need not make them do so.
234 |
235 | A compilation of a covered work with other separate and independent
236 | works, which are not by their nature extensions of the covered work,
237 | and which are not combined with it such as to form a larger program,
238 | in or on a volume of a storage or distribution medium, is called an
239 | "aggregate" if the compilation and its resulting copyright are not
240 | used to limit the access or legal rights of the compilation's users
241 | beyond what the individual works permit. Inclusion of a covered work
242 | in an aggregate does not cause this License to apply to the other
243 | parts of the aggregate.
244 |
245 | 6. Conveying Non-Source Forms.
246 |
247 | You may convey a covered work in object code form under the terms
248 | of sections 4 and 5, provided that you also convey the
249 | machine-readable Corresponding Source under the terms of this License,
250 | in one of these ways:
251 |
252 | a) Convey the object code in, or embodied in, a physical product
253 | (including a physical distribution medium), accompanied by the
254 | Corresponding Source fixed on a durable physical medium
255 | customarily used for software interchange.
256 |
257 | b) Convey the object code in, or embodied in, a physical product
258 | (including a physical distribution medium), accompanied by a
259 | written offer, valid for at least three years and valid for as
260 | long as you offer spare parts or customer support for that product
261 | model, to give anyone who possesses the object code either (1) a
262 | copy of the Corresponding Source for all the software in the
263 | product that is covered by this License, on a durable physical
264 | medium customarily used for software interchange, for a price no
265 | more than your reasonable cost of physically performing this
266 | conveying of source, or (2) access to copy the
267 | Corresponding Source from a network server at no charge.
268 |
269 | c) Convey individual copies of the object code with a copy of the
270 | written offer to provide the Corresponding Source. This
271 | alternative is allowed only occasionally and noncommercially, and
272 | only if you received the object code with such an offer, in accord
273 | with subsection 6b.
274 |
275 | d) Convey the object code by offering access from a designated
276 | place (gratis or for a charge), and offer equivalent access to the
277 | Corresponding Source in the same way through the same place at no
278 | further charge. You need not require recipients to copy the
279 | Corresponding Source along with the object code. If the place to
280 | copy the object code is a network server, the Corresponding Source
281 | may be on a different server (operated by you or a third party)
282 | that supports equivalent copying facilities, provided you maintain
283 | clear directions next to the object code saying where to find the
284 | Corresponding Source. Regardless of what server hosts the
285 | Corresponding Source, you remain obligated to ensure that it is
286 | available for as long as needed to satisfy these requirements.
287 |
288 | e) Convey the object code using peer-to-peer transmission, provided
289 | you inform other peers where the object code and Corresponding
290 | Source of the work are being offered to the general public at no
291 | charge under subsection 6d.
292 |
293 | A separable portion of the object code, whose source code is excluded
294 | from the Corresponding Source as a System Library, need not be
295 | included in conveying the object code work.
296 |
297 | A "User Product" is either (1) a "consumer product", which means any
298 | tangible personal property which is normally used for personal, family,
299 | or household purposes, or (2) anything designed or sold for incorporation
300 | into a dwelling. In determining whether a product is a consumer product,
301 | doubtful cases shall be resolved in favor of coverage. For a particular
302 | product received by a particular user, "normally used" refers to a
303 | typical or common use of that class of product, regardless of the status
304 | of the particular user or of the way in which the particular user
305 | actually uses, or expects or is expected to use, the product. A product
306 | is a consumer product regardless of whether the product has substantial
307 | commercial, industrial or non-consumer uses, unless such uses represent
308 | the only significant mode of use of the product.
309 |
310 | "Installation Information" for a User Product means any methods,
311 | procedures, authorization keys, or other information required to install
312 | and execute modified versions of a covered work in that User Product from
313 | a modified version of its Corresponding Source. The information must
314 | suffice to ensure that the continued functioning of the modified object
315 | code is in no case prevented or interfered with solely because
316 | modification has been made.
317 |
318 | If you convey an object code work under this section in, or with, or
319 | specifically for use in, a User Product, and the conveying occurs as
320 | part of a transaction in which the right of possession and use of the
321 | User Product is transferred to the recipient in perpetuity or for a
322 | fixed term (regardless of how the transaction is characterized), the
323 | Corresponding Source conveyed under this section must be accompanied
324 | by the Installation Information. But this requirement does not apply
325 | if neither you nor any third party retains the ability to install
326 | modified object code on the User Product (for example, the work has
327 | been installed in ROM).
328 |
329 | The requirement to provide Installation Information does not include a
330 | requirement to continue to provide support service, warranty, or updates
331 | for a work that has been modified or installed by the recipient, or for
332 | the User Product in which it has been modified or installed. Access to a
333 | network may be denied when the modification itself materially and
334 | adversely affects the operation of the network or violates the rules and
335 | protocols for communication across the network.
336 |
337 | Corresponding Source conveyed, and Installation Information provided,
338 | in accord with this section must be in a format that is publicly
339 | documented (and with an implementation available to the public in
340 | source code form), and must require no special password or key for
341 | unpacking, reading or copying.
342 |
343 | 7. Additional Terms.
344 |
345 | "Additional permissions" are terms that supplement the terms of this
346 | License by making exceptions from one or more of its conditions.
347 | Additional permissions that are applicable to the entire Program shall
348 | be treated as though they were included in this License, to the extent
349 | that they are valid under applicable law. If additional permissions
350 | apply only to part of the Program, that part may be used separately
351 | under those permissions, but the entire Program remains governed by
352 | this License without regard to the additional permissions.
353 |
354 | When you convey a copy of a covered work, you may at your option
355 | remove any additional permissions from that copy, or from any part of
356 | it. (Additional permissions may be written to require their own
357 | removal in certain cases when you modify the work.) You may place
358 | additional permissions on material, added by you to a covered work,
359 | for which you have or can give appropriate copyright permission.
360 |
361 | Notwithstanding any other provision of this License, for material you
362 | add to a covered work, you may (if authorized by the copyright holders of
363 | that material) supplement the terms of this License with terms:
364 |
365 | a) Disclaiming warranty or limiting liability differently from the
366 | terms of sections 15 and 16 of this License; or
367 |
368 | b) Requiring preservation of specified reasonable legal notices or
369 | author attributions in that material or in the Appropriate Legal
370 | Notices displayed by works containing it; or
371 |
372 | c) Prohibiting misrepresentation of the origin of that material, or
373 | requiring that modified versions of such material be marked in
374 | reasonable ways as different from the original version; or
375 |
376 | d) Limiting the use for publicity purposes of names of licensors or
377 | authors of the material; or
378 |
379 | e) Declining to grant rights under trademark law for use of some
380 | trade names, trademarks, or service marks; or
381 |
382 | f) Requiring indemnification of licensors and authors of that
383 | material by anyone who conveys the material (or modified versions of
384 | it) with contractual assumptions of liability to the recipient, for
385 | any liability that these contractual assumptions directly impose on
386 | those licensors and authors.
387 |
388 | All other non-permissive additional terms are considered "further
389 | restrictions" within the meaning of section 10. If the Program as you
390 | received it, or any part of it, contains a notice stating that it is
391 | governed by this License along with a term that is a further
392 | restriction, you may remove that term. If a license document contains
393 | a further restriction but permits relicensing or conveying under this
394 | License, you may add to a covered work material governed by the terms
395 | of that license document, provided that the further restriction does
396 | not survive such relicensing or conveying.
397 |
398 | If you add terms to a covered work in accord with this section, you
399 | must place, in the relevant source files, a statement of the
400 | additional terms that apply to those files, or a notice indicating
401 | where to find the applicable terms.
402 |
403 | Additional terms, permissive or non-permissive, may be stated in the
404 | form of a separately written license, or stated as exceptions;
405 | the above requirements apply either way.
406 |
407 | 8. Termination.
408 |
409 | You may not propagate or modify a covered work except as expressly
410 | provided under this License. Any attempt otherwise to propagate or
411 | modify it is void, and will automatically terminate your rights under
412 | this License (including any patent licenses granted under the third
413 | paragraph of section 11).
414 |
415 | However, if you cease all violation of this License, then your
416 | license from a particular copyright holder is reinstated (a)
417 | provisionally, unless and until the copyright holder explicitly and
418 | finally terminates your license, and (b) permanently, if the copyright
419 | holder fails to notify you of the violation by some reasonable means
420 | prior to 60 days after the cessation.
421 |
422 | Moreover, your license from a particular copyright holder is
423 | reinstated permanently if the copyright holder notifies you of the
424 | violation by some reasonable means, this is the first time you have
425 | received notice of violation of this License (for any work) from that
426 | copyright holder, and you cure the violation prior to 30 days after
427 | your receipt of the notice.
428 |
429 | Termination of your rights under this section does not terminate the
430 | licenses of parties who have received copies or rights from you under
431 | this License. If your rights have been terminated and not permanently
432 | reinstated, you do not qualify to receive new licenses for the same
433 | material under section 10.
434 |
435 | 9. Acceptance Not Required for Having Copies.
436 |
437 | You are not required to accept this License in order to receive or
438 | run a copy of the Program. Ancillary propagation of a covered work
439 | occurring solely as a consequence of using peer-to-peer transmission
440 | to receive a copy likewise does not require acceptance. However,
441 | nothing other than this License grants you permission to propagate or
442 | modify any covered work. These actions infringe copyright if you do
443 | not accept this License. Therefore, by modifying or propagating a
444 | covered work, you indicate your acceptance of this License to do so.
445 |
446 | 10. Automatic Licensing of Downstream Recipients.
447 |
448 | Each time you convey a covered work, the recipient automatically
449 | receives a license from the original licensors, to run, modify and
450 | propagate that work, subject to this License. You are not responsible
451 | for enforcing compliance by third parties with this License.
452 |
453 | An "entity transaction" is a transaction transferring control of an
454 | organization, or substantially all assets of one, or subdividing an
455 | organization, or merging organizations. If propagation of a covered
456 | work results from an entity transaction, each party to that
457 | transaction who receives a copy of the work also receives whatever
458 | licenses to the work the party's predecessor in interest had or could
459 | give under the previous paragraph, plus a right to possession of the
460 | Corresponding Source of the work from the predecessor in interest, if
461 | the predecessor has it or can get it with reasonable efforts.
462 |
463 | You may not impose any further restrictions on the exercise of the
464 | rights granted or affirmed under this License. For example, you may
465 | not impose a license fee, royalty, or other charge for exercise of
466 | rights granted under this License, and you may not initiate litigation
467 | (including a cross-claim or counterclaim in a lawsuit) alleging that
468 | any patent claim is infringed by making, using, selling, offering for
469 | sale, or importing the Program or any portion of it.
470 |
471 | 11. Patents.
472 |
473 | A "contributor" is a copyright holder who authorizes use under this
474 | License of the Program or a work on which the Program is based. The
475 | work thus licensed is called the contributor's "contributor version".
476 |
477 | A contributor's "essential patent claims" are all patent claims
478 | owned or controlled by the contributor, whether already acquired or
479 | hereafter acquired, that would be infringed by some manner, permitted
480 | by this License, of making, using, or selling its contributor version,
481 | but do not include claims that would be infringed only as a
482 | consequence of further modification of the contributor version. For
483 | purposes of this definition, "control" includes the right to grant
484 | patent sublicenses in a manner consistent with the requirements of
485 | this License.
486 |
487 | Each contributor grants you a non-exclusive, worldwide, royalty-free
488 | patent license under the contributor's essential patent claims, to
489 | make, use, sell, offer for sale, import and otherwise run, modify and
490 | propagate the contents of its contributor version.
491 |
492 | In the following three paragraphs, a "patent license" is any express
493 | agreement or commitment, however denominated, not to enforce a patent
494 | (such as an express permission to practice a patent or covenant not to
495 | sue for patent infringement). To "grant" such a patent license to a
496 | party means to make such an agreement or commitment not to enforce a
497 | patent against the party.
498 |
499 | If you convey a covered work, knowingly relying on a patent license,
500 | and the Corresponding Source of the work is not available for anyone
501 | to copy, free of charge and under the terms of this License, through a
502 | publicly available network server or other readily accessible means,
503 | then you must either (1) cause the Corresponding Source to be so
504 | available, or (2) arrange to deprive yourself of the benefit of the
505 | patent license for this particular work, or (3) arrange, in a manner
506 | consistent with the requirements of this License, to extend the patent
507 | license to downstream recipients. "Knowingly relying" means you have
508 | actual knowledge that, but for the patent license, your conveying the
509 | covered work in a country, or your recipient's use of the covered work
510 | in a country, would infringe one or more identifiable patents in that
511 | country that you have reason to believe are valid.
512 |
513 | If, pursuant to or in connection with a single transaction or
514 | arrangement, you convey, or propagate by procuring conveyance of, a
515 | covered work, and grant a patent license to some of the parties
516 | receiving the covered work authorizing them to use, propagate, modify
517 | or convey a specific copy of the covered work, then the patent license
518 | you grant is automatically extended to all recipients of the covered
519 | work and works based on it.
520 |
521 | A patent license is "discriminatory" if it does not include within
522 | the scope of its coverage, prohibits the exercise of, or is
523 | conditioned on the non-exercise of one or more of the rights that are
524 | specifically granted under this License. You may not convey a covered
525 | work if you are a party to an arrangement with a third party that is
526 | in the business of distributing software, under which you make payment
527 | to the third party based on the extent of your activity of conveying
528 | the work, and under which the third party grants, to any of the
529 | parties who would receive the covered work from you, a discriminatory
530 | patent license (a) in connection with copies of the covered work
531 | conveyed by you (or copies made from those copies), or (b) primarily
532 | for and in connection with specific products or compilations that
533 | contain the covered work, unless you entered into that arrangement,
534 | or that patent license was granted, prior to 28 March 2007.
535 |
536 | Nothing in this License shall be construed as excluding or limiting
537 | any implied license or other defenses to infringement that may
538 | otherwise be available to you under applicable patent law.
539 |
540 | 12. No Surrender of Others' Freedom.
541 |
542 | If conditions are imposed on you (whether by court order, agreement or
543 | otherwise) that contradict the conditions of this License, they do not
544 | excuse you from the conditions of this License. If you cannot convey a
545 | covered work so as to satisfy simultaneously your obligations under this
546 | License and any other pertinent obligations, then as a consequence you may
547 | not convey it at all. For example, if you agree to terms that obligate you
548 | to collect a royalty for further conveying from those to whom you convey
549 | the Program, the only way you could satisfy both those terms and this
550 | License would be to refrain entirely from conveying the Program.
551 |
552 | 13. Use with the GNU Affero General Public License.
553 |
554 | Notwithstanding any other provision of this License, you have
555 | permission to link or combine any covered work with a work licensed
556 | under version 3 of the GNU Affero General Public License into a single
557 | combined work, and to convey the resulting work. The terms of this
558 | License will continue to apply to the part which is the covered work,
559 | but the special requirements of the GNU Affero General Public License,
560 | section 13, concerning interaction through a network will apply to the
561 | combination as such.
562 |
563 | 14. Revised Versions of this License.
564 |
565 | The Free Software Foundation may publish revised and/or new versions of
566 | the GNU General Public License from time to time. Such new versions will
567 | be similar in spirit to the present version, but may differ in detail to
568 | address new problems or concerns.
569 |
570 | Each version is given a distinguishing version number. If the
571 | Program specifies that a certain numbered version of the GNU General
572 | Public License "or any later version" applies to it, you have the
573 | option of following the terms and conditions either of that numbered
574 | version or of any later version published by the Free Software
575 | Foundation. If the Program does not specify a version number of the
576 | GNU General Public License, you may choose any version ever published
577 | by the Free Software Foundation.
578 |
579 | If the Program specifies that a proxy can decide which future
580 | versions of the GNU General Public License can be used, that proxy's
581 | public statement of acceptance of a version permanently authorizes you
582 | to choose that version for the Program.
583 |
584 | Later license versions may give you additional or different
585 | permissions. However, no additional obligations are imposed on any
586 | author or copyright holder as a result of your choosing to follow a
587 | later version.
588 |
589 | 15. Disclaimer of Warranty.
590 |
591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599 |
600 | 16. Limitation of Liability.
601 |
602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610 | SUCH DAMAGES.
611 |
612 | 17. Interpretation of Sections 15 and 16.
613 |
614 | If the disclaimer of warranty and limitation of liability provided
615 | above cannot be given local legal effect according to their terms,
616 | reviewing courts shall apply local law that most closely approximates
617 | an absolute waiver of all civil liability in connection with the
618 | Program, unless a warranty or assumption of liability accompanies a
619 | copy of the Program in return for a fee.
620 |
621 | END OF TERMS AND CONDITIONS
622 |
623 | How to Apply These Terms to Your New Programs
624 |
625 | If you develop a new program, and you want it to be of the greatest
626 | possible use to the public, the best way to achieve this is to make it
627 | free software which everyone can redistribute and change under these terms.
628 |
629 | To do so, attach the following notices to the program. It is safest
630 | to attach them to the start of each source file to most effectively
631 | state the exclusion of warranty; and each file should have at least
632 | the "copyright" line and a pointer to where the full notice is found.
633 |
634 | outage-dependent-fading-channels
635 | Copyright (C) 2019 Karl Besser
636 |
637 | This program is free software: you can redistribute it and/or modify
638 | it under the terms of the GNU General Public License as published by
639 | the Free Software Foundation, either version 3 of the License, or
640 | (at your option) any later version.
641 |
642 | This program is distributed in the hope that it will be useful,
643 | but WITHOUT ANY WARRANTY; without even the implied warranty of
644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645 | GNU General Public License for more details.
646 |
647 | You should have received a copy of the GNU General Public License
648 | along with this program. If not, see .
649 |
650 | Also add information on how to contact you by electronic and paper mail.
651 |
652 | If the program does terminal interaction, make it output a short
653 | notice like this when it starts in an interactive mode:
654 |
655 | outage-dependent-fading-channels Copyright (C) 2019 Karl Besser
656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657 | This is free software, and you are welcome to redistribute it
658 | under certain conditions; type `show c' for details.
659 |
660 | The hypothetical commands `show w' and `show c' should show the appropriate
661 | parts of the General Public License. Of course, your program's commands
662 | might be different; for a GUI interface, you would use an "about box".
663 |
664 | You should also get your employer (if you work as a programmer) or school,
665 | if any, to sign a "copyright disclaimer" for the program, if necessary.
666 | For more information on this, and how to apply and follow the GNU GPL, see
667 | .
668 |
669 | The GNU General Public License does not permit incorporating your program
670 | into proprietary programs. If your program is a subroutine library, you
671 | may consider it more useful to permit linking proprietary applications with
672 | the library. If this is what you want to do, use the GNU Lesser General
673 | Public License instead of this License. But first, please read
674 | .
675 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | English| [Chinese](https://github.com/NeuroDong/Latex_for_review_comments/blob/main/chinese_doc.md)
2 |
3 | # Latex Template for Review Comments of Papers
4 | A modification on [Journal-Response-Letter-Template-Latex](https://github.com/shellywhen/Journal-Response-Letter-Template-Latex). The modified contents include but are not limited to the following:
5 |
6 | **January 12, 2025**:
7 |
8 | - Add color to the font of the response content block to more clearly distinguish between reviewer comments and author responses.
9 |
10 | - Add a Summary Comment for each reviewer, and the Summary Comment is not numbered.
11 |
12 | - All comments belonging each reviewer share one Reference.
13 |
14 | **March 29, 2025**:
15 |
16 | - Solved the bug that "REFERENCE" would appear in the header, see details: [https://github.com/NeuroDong/Latex_for_review_comments/issues/1](https://github.com/NeuroDong/Latex_for_review_comments/issues/1)
17 |
18 | - Allows users to add and close author information for single-blind and double-blind review respectively.
19 |
20 | **April 16, 2025**:
21 |
22 | - Solved the bug that the font color of the Change box is inconsistent when it crosses pages, see details: [https://github.com/NeuroDong/Latex_for_review_comments/issues/3](https://github.com/NeuroDong/Latex_for_review_comments/issues/3)
23 |
24 | - An example of inserting a picture in the Change box is provided, see: [https://github.com/NeuroDong/Latex_for_review_comments/issues/2](https://github.com/NeuroDong/Latex_for_review_comments/issues/2)
25 |
26 | **May 17, 2025**:
27 | - Add pseudocode in the Change box, see: [https://github.com/NeuroDong/Latex_for_review_comments/issues/6](https://github.com/NeuroDong/Latex_for_review_comments/issues/6)
28 |
29 | # Template Display
30 | Please click [here](https://github.com/NeuroDong/Latex_for_review_comments/blob/main/review_response.pdf)
31 |
32 | # How to Use
33 | Note that this source code needs to be compiled multiple times according to the steps below, where Biber compile is for compiling references.
34 |
35 | Step1: Compile
36 |
37 | Step2: Biber compile
38 |
39 | Step3: Compile
40 |
41 | # Continuous Update
42 | This repository will be updated continuously for a long time. Welcome to use this repository, raise issues, and push requests to help optimize this template to help better community members' papers get accepted.
43 |
--------------------------------------------------------------------------------
/Reviewers/Meta.tex:
--------------------------------------------------------------------------------
1 | % Response to Editor
2 |
3 | \editor
4 | %\phantomsection % 用于确保目录条目正确链接到页面
5 | %\addcontentsline{toc}{section}{\protect\numberline{}Response to Editor}
6 |
7 | \begin{generalcomment}
8 | In view of the reviews and recommendations of the Associate Editor, you may revise your manuscript thoroughly to address the issues raised by the reviewers/Associate Editor and resubmit the revised version (if you wish). Please complete the submission within two months, and include the specific responses to the reviewers and the previous paper ID.
9 | \end{generalcomment}
10 | \begin{revmeta}[]
11 | Thank you for taking the valuable time to work on our manuscript. We also thank you for your constructive suggestions and acknowledgment of our manuscript. According to your request, we read the reviewer's responses in detail, carefully responded to their comments point by point, and revised the original manuscript. With the help of the reviewers' constructive comments, we have added and revised some content to make the article more rigorous and easier to read for wider readers. Thank you again and the reviewers for your careful guidance.
12 | \end{revmeta}
13 |
--------------------------------------------------------------------------------
/Reviewers/Meta1.tex:
--------------------------------------------------------------------------------
1 | % Response to Editor
2 | \AssociateEditor
3 | \begin{generalcomment}
4 | The paper presents an interesting and relevant survey, and it has received good reviews. However, I see important deficiencies in the presentation and clarity of the work, and also some missing experiments. All of them should considered when preparing a new revised version of the manuscript.
5 | \end{generalcomment}
6 | \begin{revmeta}[]
7 | We would like to extend my sincere gratitude for your thorough review and valuable feedback on our manuscript. We appreciate the time and effort you have invested in evaluating our work and fully acknowledge the deficiencies you have identified in the presentation and clarity of our study, as well as the missing experiments.
8 |
9 | We understand the importance of addressing these issues to enhance the quality and impact of our research. Below, we outline the steps to address each of your concerns.
10 | \end{revmeta}
11 |
12 | \begin{revcommentToAssociateAuthor}
13 | - The authors should perform some experiments to provide better guidelines and insights to the readership.
14 | \end{revcommentToAssociateAuthor}
15 | \begin{revmeta}[]
16 | Thank you very much for your valuable comments and suggestions. Our initial manuscript included no experiments because we followed other high-quality surveys \cite{wu2020comprehensive,ji2021survey,li2021survey,zhang2023survey,li2021low} that did not include experiments. However, in light of your valuable feedback, we conducted some necessary experiments to provide better guidelines and insights to the readership. In the revised manuscript, we added a new section (Section VII on the 17th page of the revised manuscript) dedicated to comparative experiments, and we anonymously open-sourced the code implementing all experiments. For your convenience, we have restated the experimental part of the revised manuscript below.
17 | \end{revmeta}
18 |
19 | \clearpage
20 | \printbibliography[heading=bibliography, title={References}, section=\therefsection]
21 | \markboth{}{}
22 |
--------------------------------------------------------------------------------
/Reviewers/R1.tex:
--------------------------------------------------------------------------------
1 | % Reviewer 1
2 |
3 | \reviewer
4 |
5 | \begin{generalcomment}
6 | The paper offers an extensive overview of the latest confidence calibration techniques for deep imbalanced learning, presenting significant and relevant research. However, there are a few areas where improvement could be made.
7 | \end{generalcomment}
8 | \begin{revmeta}[]
9 | We would like to express our sincere gratitude for your feedback and valuable suggestions on our manuscript. We have carefully considered each of your points and revised them carefully.
10 | \end{revmeta}
11 |
12 | \begin{revcomment}
13 | - A summary of the practical domains where these methods have been applied, or could be applied, is missing.
14 | \end{revcomment}
15 | \begin{revresponse}[]
16 | Thank you for the pertinent suggestions. We agree with your point of view. We added an application section (Section VIII) on the 18th page of the revised manuscript. For your convenience, we put the newly added application section below, and we hope it will satisfy you.
17 |
18 | \begin{changes}
19 | \lipsum[1]
20 |
21 | \begin{lstlisting}[language=Python, caption={Algorithm},frame=single]
22 | for i in range(1, N+1):
23 | # Run
24 | perform_operation(i)
25 | \end{lstlisting}
26 |
27 | \lipsum[2]
28 |
29 | \centering
30 | \includegraphics[width=0.5\textwidth,keepaspectratio]{imgs/IU1.jpg}
31 | \captionof{figure}{IU}
32 | \end{changes}
33 |
34 | \end{revresponse}
35 |
36 | \clearpage
37 | \printbibliography[heading=bibintoc, heading=bibliography, title={References}, section=\therefsection]
--------------------------------------------------------------------------------
/chinese_doc.md:
--------------------------------------------------------------------------------
1 | [英文](https://github.com/NeuroDong/Latex_for_review_comments/blob/main/README.md)| 中文
2 |
3 | # 论文审稿意见的latex模板
4 | 此仓库是一个对[Journal-Response-Letter-Template-Latex](https://github.com/shellywhen/Journal-Response-Letter-Template-Latex)的修改版。修改的内容包括但不局限如下:
5 |
6 | **2025年1月12号**:
7 |
8 | - 给回复内容块的字体添加了颜色,以更显著区分审稿人的评论和作者的回复。
9 |
10 | - 为每个审稿人添加了一个Summary Comment,并且Summary Comment没有编号。
11 |
12 | - 每个审稿人的所有评论共用一个参考文献。
13 |
14 | **2025年3月29号**:
15 |
16 | - 解决了“REFERENCE”会出现在页眉的bug, 详细见:[https://github.com/NeuroDong/Latex_for_review_comments/issues/1](https://github.com/NeuroDong/Latex_for_review_comments/issues/1)
17 |
18 | - 允许用户添加和关闭作者信息,分别用于单盲和双盲审稿
19 |
20 | **2025年4月16号**:
21 | - 解决了Change框跨页时字体颜色不一致的bug, 详细见:[https://github.com/NeuroDong/Latex_for_review_comments/issues/3](https://github.com/NeuroDong/Latex_for_review_comments/issues/3)
22 |
23 | - 提供了在Change框中插入图片的示例,详细见:[https://github.com/NeuroDong/Latex_for_review_comments/issues/2](https://github.com/NeuroDong/Latex_for_review_comments/issues/2)
24 |
25 | **2025年5月17号**:
26 |
27 | - 在Change框中添加伪代码,详细见:[https://github.com/NeuroDong/Latex_for_review_comments/issues/6](https://github.com/NeuroDong/Latex_for_review_comments/issues/6)
28 |
29 | # 模板展示
30 | 请点击[这里](https://github.com/NeuroDong/Latex_for_review_comments/blob/main/review_response.pdf)
31 |
32 | # 如何使用
33 | 注意,此源代码需要按照下面的步骤多次编译,其中Biber用于编译参考文献。
34 |
35 | 第一步: 正常编译
36 |
37 | 第二步: Biber
38 |
39 | 第三步: 正常编译
40 |
41 | # 连续更新
42 | 本仓库会长期更新。欢迎大家使用本仓库,提出问题和推送请求(push requests)来帮助优化此模板,从而更好地帮助社区成员的论文被接受。
43 |
--------------------------------------------------------------------------------
/cover_letter.tex:
--------------------------------------------------------------------------------
1 | \thispagestyle{empty}
2 | \clearpage
3 | \phantomsection
4 | \addcontentsline{toc}{section}{\protect\numberline{}Preface}
5 |
6 | \noindent \textbf{Dear Editors, Associate Editor and Reviewers:}
7 |
8 | Thank you for your valuable and insightful feedback on our manuscript, "XXX." We greatly appreciate your time spent reviewing our manuscript and making constructive suggestions, which have greatly improved the quality of our manuscript. In light of the reviewers' comments and recommendations, we have meticulously revised the manuscript and provided a detailed point-by-point response. Furthermore, we have meticulously reviewed and corrected the manuscript to ensure no errors. We hope that our revisions and responses will meet with your satisfaction.
9 |
10 | We want to take this opportunity to thank you for handling our manuscript, and we look forward to hearing from you.
11 |
12 | \vspace{8em}
13 |
14 | \noindent Sincerely,
15 |
16 | \noindent Authors
17 |
18 | \vfill
19 | \textbf{Note:} To enhance the legibility of this response letter, all the editor's and reviewers' comments are typeset in boxes. \textbf{In the revised manuscript, modified parts are marked in red, and newly added parts are marked in blue.}
--------------------------------------------------------------------------------
/imgs/IU1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NeuroDong/Latex_for_review_comments/bf2559a422148bc6fcdf3e6a284d14575aadead3/imgs/IU1.jpg
--------------------------------------------------------------------------------
/literature.bib:
--------------------------------------------------------------------------------
1 | @article{gawlikowski2023survey,
2 | title={A survey of uncertainty in deep neural networks},
3 | author={Gawlikowski, Jakob and Tassi, Cedrique Rovile Njieutcheu and Ali, Mohsin and Lee, Jongseok and Humt, Matthias and Feng, Jianxiang and Kruspe, Anna and Triebel, Rudolph and Jung, Peter and Roscher, Ribana and others},
4 | journal={Artificial Intelligence Review},
5 | volume={56},
6 | number={Suppl 1},
7 | pages={1513--1589},
8 | year={2023},
9 | publisher={Springer}
10 | }
11 |
12 | @article{bi2018empirical,
13 | title={An empirical comparison on state-of-the-art multi-class imbalance learning algorithms and a new diversified ensemble learning scheme},
14 | author={Bi, Jingjun and Zhang, Chongsheng},
15 | journal={Knowledge-Based Systems},
16 | volume={158},
17 | pages={81--93},
18 | year={2018},
19 | publisher={Elsevier}
20 | }
21 |
22 | @article{johnson2019survey,
23 | title={Survey on deep learning with class imbalance},
24 | author={Johnson, Justin M and Khoshgoftaar, Taghi M},
25 | journal={Journal of Big Data},
26 | volume={6},
27 | number={1},
28 | pages={1--54},
29 | year={2019},
30 | publisher={Springer}
31 | }
32 |
33 | @inproceedings{zhang2021videolt,
34 | title={Videolt: Large-scale long-tailed video recognition},
35 | author={Zhang, Xing and Wu, Zuxuan and Weng, Zejia and Fu, Huazhu and Chen, Jingjing and Jiang, Yu-Gang and Davis, Larry S},
36 | booktitle={Proceedings of the IEEE/CVF International Conference on Computer Vision},
37 | pages={7960--7969},
38 | year={2021}
39 | }
40 |
41 | @article{ganganwar2012overview,
42 | title={An overview of classification algorithms for imbalanced datasets},
43 | author={Ganganwar, Vaishali},
44 | journal={International Journal of Emerging Technology and Advanced Engineering},
45 | volume={2},
46 | number={4},
47 | pages={42--47},
48 | year={2012}
49 | }
50 |
51 | @article{cao2019learning,
52 | title={Learning imbalanced datasets with label-distribution-aware margin loss},
53 | author={Cao, Kaidi and Wei, Colin and Gaidon, Adrien and Arechiga, Nikos and Ma, Tengyu},
54 | journal={Advances in neural information processing systems},
55 | volume={32},
56 | year={2019}
57 | }
58 |
59 | @article{tomsett2020rapid,
60 | title={Rapid trust calibration through interpretable and uncertainty-aware AI},
61 | author={Tomsett, Richard and Preece, Alun and Braines, Dave and Cerutti, Federico and Chakraborty, Supriyo and Srivastava, Mani and Pearson, Gavin and Kaplan, Lance},
62 | journal={Patterns},
63 | volume={1},
64 | number={4},
65 | year={2020},
66 | publisher={Elsevier}
67 | }
68 |
69 | @inproceedings{liu2019large,
70 | title={Large-scale long-tailed recognition in an open world},
71 | author={Liu, Ziwei and Miao, Zhongqi and Zhan, Xiaohang and Wang, Jiayun and Gong, Boqing and Yu, Stella X},
72 | booktitle={Proceedings of the IEEE/CVF conference on computer vision and pattern recognition},
73 | pages={2537--2546},
74 | year={2019}
75 | }
76 |
77 | @inproceedings{qi2023text,
78 | title={Text Classification In The Wild: A Large-Scale Long-Tailed Name Normalization Dataset},
79 | author={Qi, Jiexing and Li, Shuhao and Guo, Zhixin and Huang, Yusheng and Zhou, Chenghu and Zhang, Weinan and Wang, Xinbing and Lin, Zhouhan},
80 | booktitle={ICASSP 2023-2023 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP)},
81 | pages={1--5},
82 | year={2023},
83 | organization={IEEE}
84 | }
85 |
86 | @article{zhang2023deep,
87 | title={Deep long-tailed learning: A survey},
88 | author={Zhang, Yifan and Kang, Bingyi and Hooi, Bryan and Yan, Shuicheng and Feng, Jiashi},
89 | journal={IEEE Transactions on Pattern Analysis and Machine Intelligence},
90 | year={2023},
91 | publisher={IEEE}
92 | }
93 |
94 | @article{fu2022long,
95 | title={Long-tailed visual recognition with deep models: A methodological survey and evaluation},
96 | author={Fu, Yu and Xiang, Liuyu and Zahid, Yumna and Ding, Guiguang and Mei, Tao and Shen, Qiang and Han, Jungong},
97 | journal={Neurocomputing},
98 | year={2022},
99 | publisher={Elsevier}
100 | }
101 |
102 | @article{silva2023classifier,
103 | title={Classifier calibration: a survey on how to assess and improve predicted class probabilities},
104 | author={Silva Filho, Telmo and Song, Hao and Perello-Nieto, Miquel and Santos-Rodriguez, Raul and Kull, Meelis and Flach, Peter},
105 | journal={Machine Learning},
106 | pages={1--50},
107 | year={2023},
108 | publisher={Springer}
109 | }
110 |
111 | @article{AnExperimentalInvestigation,
112 | title={An experimental investigation of calibration techniques for imbalanced data},
113 | author={Huang, Lanlan and Zhao, Junkai and Zhu, Bing and Chen, Hao and Broucke, Seppe Vanden},
114 | journal={Ieee Access},
115 | volume={8},
116 | pages={127343--127352},
117 | year={2020},
118 | publisher={IEEE}
119 | }
120 |
121 | @article{gao2022comparative,
122 | title={A Comparative Study of Confidence Calibration in Deep Learning: From Computer Vision to Medical Imaging},
123 | author={Gao, Riqiang and Li, Thomas and Tang, Yucheng and Xu, Zhoubing and Kammer, Michael and Antic, Sanja L and Sandler, Kim and Moldonado, Fabien and Lasko, Thomas A and Landman, Bennett},
124 | journal={arXiv preprint arXiv:2206.08833},
125 | year={2022}
126 | }
127 |
128 | @article{zidonghua,
129 | title={A novel intelligent monitoring method for the closing time of the taphole of blast furnace based on two-stage classification},
130 | author={Jiang, Zhaohui and Dong, Jinzong and Pan, Dong and Wang, Tianyu and Gui, Weihua},
131 | journal={Engineering Applications of Artificial Intelligence},
132 | volume={120},
133 | pages={105849},
134 | year={2023},
135 | publisher={Elsevier}
136 | }
137 |
138 | @article{owais2024deep,
139 | title={Deep Learning for Integrated Origin--Destination Estimation and Traffic Sensor Location Problems},
140 | author={Owais, Mahmoud},
141 | journal={IEEE Transactions on Intelligent Transportation Systems},
142 | year={2024},
143 | publisher={IEEE}
144 | }
145 |
146 | @article{jiang2012calibrating,
147 | title={Calibrating predictive model estimates to support personalized medicine},
148 | author={Jiang, Xiaoqian and Osl, Melanie and Kim, Jihoon and Ohno-Machado, Lucila},
149 | journal={Journal of the American Medical Informatics Association},
150 | volume={19},
151 | number={2},
152 | pages={263--274},
153 | year={2012},
154 | publisher={BMJ Group}
155 | }
156 |
157 | @article{han2024balque,
158 | title={BALQUE: Batch active learning by querying unstable examples with calibrated confidence},
159 | author={Han, Yincheng and Liu, Dajiang and Shang, Jiaxing and Zheng, Linjiang and Zhong, Jiang and Cao, Weiwei and Sun, Hong and Xie, Wu},
160 | journal={Pattern Recognition},
161 | pages={110385},
162 | year={2024},
163 | publisher={Elsevier}
164 | }
165 |
166 | @inproceedings{li2023distilling,
167 | title={Distilling calibrated knowledge for stance detection},
168 | author={Li, Yingjie and Caragea, Cornelia},
169 | booktitle={Findings of the Association for Computational Linguistics: ACL 2023},
170 | pages={6316--6329},
171 | year={2023}
172 | }
173 |
174 | @inproceedings{guoCalibration,
175 | title={On calibration of modern neural networks},
176 | author={Guo, Chuan and Pleiss, Geoff and Sun, Yu and Weinberger, Kilian Q},
177 | booktitle={International conference on machine learning},
178 | pages={1321--1330},
179 | year={2017},
180 | organization={PMLR}
181 | }
182 |
183 | @inproceedings{geng2024survey,
184 | title={A Survey of Confidence Estimation and Calibration in Large Language Models},
185 | author={Geng, Jiahui and Cai, Fengyu and Wang, Yuxia and Koeppl, Heinz and Nakov, Preslav and Gurevych, Iryna},
186 | booktitle={Proceedings of the 2024 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies (Volume 1: Long Papers)},
187 | pages={6577--6595},
188 | year={2024}
189 | }
190 |
191 | @article{penso2024confidence,
192 | title={Confidence Calibration of a Medical Imaging Classification System that is Robust to Label Noise},
193 | author={Penso, Coby and Frenkel, Lior and Goldberger, Jacob},
194 | journal={IEEE Transactions on Medical Imaging},
195 | year={2024},
196 | publisher={IEEE}
197 | }
198 |
199 | @article{chen2024integrating,
200 | title={Integrating confidence calibration and adversarial robustness via adversarial calibration entropy},
201 | author={Chen, Yong and Hu, Peng and Yuan, Zhong and Peng, Dezhong and Wang, Xu},
202 | journal={Information Sciences},
203 | volume={668},
204 | pages={120532},
205 | year={2024},
206 | publisher={Elsevier}
207 | }
208 |
209 | @article{xiong2024proximity,
210 | title={Proximity-informed calibration for deep neural networks},
211 | author={Xiong, Miao and Deng, Ailin and Koh, Pang Wei W and Wu, Jiaying and Li, Shen and Xu, Jianqing and Hooi, Bryan},
212 | journal={Advances in Neural Information Processing Systems},
213 | volume={36},
214 | year={2024}
215 | }
216 |
217 | @article{munir2024cal,
218 | title={Cal-DETR: Calibrated Detection Transformer},
219 | author={Munir, Muhammad Akhtar and Khan, Salman H and Khan, Muhammad Haris and Ali, Mohsen and Shahbaz Khan, Fahad},
220 | journal={Advances in Neural Information Processing Systems},
221 | volume={36},
222 | year={2024}
223 | }
224 |
225 | @article{fernando2021dynamically,
226 | title={Dynamically weighted balanced loss: class imbalanced learning and confidence calibration of deep neural networks},
227 | author={Fernando, K Ruwani M and Tsokos, Chris P},
228 | journal={IEEE Transactions on Neural Networks and Learning Systems},
229 | volume={33},
230 | number={7},
231 | pages={2940--2951},
232 | year={2021},
233 | publisher={IEEE}
234 | }
235 |
236 | @article{song2022learning,
237 | title={Learning from noisy labels with deep neural networks: A survey},
238 | author={Song, Hwanjun and Kim, Minseok and Park, Dongmin and Shin, Yooju and Lee, Jae-Gil},
239 | journal={IEEE transactions on neural networks and learning systems},
240 | volume={34},
241 | number={11},
242 | pages={8135--8153},
243 | year={2022},
244 | publisher={IEEE}
245 | }
246 |
247 | @article{fortuin2022priors,
248 | title={Priors in bayesian deep learning: A review},
249 | author={Fortuin, Vincent},
250 | journal={International Statistical Review},
251 | volume={90},
252 | number={3},
253 | pages={563--591},
254 | year={2022},
255 | publisher={Wiley Online Library}
256 | }
257 |
258 | @article{ji2021survey,
259 | title={A survey on knowledge graphs: Representation, acquisition, and applications},
260 | author={Ji, Shaoxiong and Pan, Shirui and Cambria, Erik and Marttinen, Pekka and Philip, S Yu},
261 | journal={IEEE transactions on neural networks and learning systems},
262 | volume={33},
263 | number={2},
264 | pages={494--514},
265 | year={2021},
266 | publisher={IEEE}
267 | }
268 |
269 | @inproceedings{zhang2020mix,
270 | title={Mix-n-match: Ensemble and compositional methods for uncertainty calibration in deep learning},
271 | author={Zhang, Jize and Kailkhura, Bhavya and Han, T Yong-Jin},
272 | booktitle={International conference on machine learning},
273 | pages={11117--11128},
274 | year={2020},
275 | organization={PMLR}
276 | }
277 |
278 | @article{pan2017liftingnet,
279 | title={LiftingNet: A novel deep learning network with layerwise feature learning from noisy mechanical data for fault classification},
280 | author={Pan, Jun and Zi, Yanyang and Chen, Jinglong and Zhou, Zitong and Wang, Biao},
281 | journal={IEEE Transactions on Industrial Electronics},
282 | volume={65},
283 | number={6},
284 | pages={4973--4982},
285 | year={2017},
286 | publisher={IEEE}
287 | }
288 |
289 | @article{li2024trustworthy,
290 | title={Trustworthy Bayesian Deep Learning Framework for Uncertainty Quantification and Confidence Calibration: Application in Machinery Fault Diagnosis},
291 | author={Li, Hao and Jiao, Jinyang and Liu, Zongyang and Lin, Jing and Zhang, Tian and Liu, Hanyang},
292 | journal={Reliability Engineering \& System Safety},
293 | pages={110657},
294 | year={2024},
295 | publisher={Elsevier}
296 | }
297 |
298 | @article{zhang2022intelligent,
299 | title={Intelligent fault diagnosis of machines with small \& imbalanced data: A state-of-the-art review and possible extensions},
300 | author={Zhang, Tianci and Chen, Jinglong and Li, Fudong and Zhang, Kaiyu and Lv, Haixin and He, Shuilong and Xu, Enyong},
301 | journal={ISA transactions},
302 | volume={119},
303 | pages={152--171},
304 | year={2022},
305 | publisher={Elsevier}
306 | }
307 | @article{xu2023probabilistic,
308 | title={Probabilistic prognosis of wind turbine faults with feature selection and confidence calibration},
309 | author={Xu, Jian and Jiang, Xinxiong and Liao, Siyang and Ke, Deping and Sun, Yuanzhang and Yao, Liangzhong and Mao, Beilin},
310 | journal={IEEE Transactions on Sustainable Energy},
311 | volume={15},
312 | number={1},
313 | pages={52--67},
314 | year={2023},
315 | publisher={IEEE}
316 | }
317 |
318 | @article{zhu2023revisiting,
319 | title={Revisiting confidence estimation: Towards reliable failure prediction},
320 | author={Zhu, Fei and Zhang, Xu-Yao and Cheng, Zhen and Liu, Cheng-Lin},
321 | journal={IEEE Transactions on Pattern Analysis and Machine Intelligence},
322 | year={2023},
323 | publisher={IEEE}
324 | }
325 |
326 | @article{li2022novel,
327 | title={A novel severity calibration algorithm for defect detection by constructing maps},
328 | author={Li, Ying and Fan, Binbin and Ding, Weiping and Zhang, Weiping and Yin, Jianwei},
329 | journal={Information Sciences},
330 | volume={607},
331 | pages={1600--1616},
332 | year={2022},
333 | publisher={Elsevier}
334 | }
335 |
336 | @article{li2023efficient,
337 | title={An efficient defect detection method for nuclear-fuel rod grooves through weakly supervised learning},
338 | author={Li, Mengyuan and Chen, Ning and Suo, Xinyu and Yin, Shaohui and Liu, Jian},
339 | journal={Measurement},
340 | volume={222},
341 | pages={113708},
342 | year={2023},
343 | publisher={Elsevier}
344 | }
345 |
346 | @article{ni2024defect,
347 | title={Defect detection on multi-type rail surfaces via IoU decoupling and multi-information alignment},
348 | author={Ni, Xuefeng and Fieguth, Paul W and Ma, Ziji and Shi, Bo and Liu, Hongli},
349 | journal={Advanced Engineering Informatics},
350 | volume={62},
351 | pages={102717},
352 | year={2024},
353 | publisher={Elsevier}
354 | }
355 |
356 | @article{guo2021weld,
357 | title={Weld defect detection from imbalanced radiographic images based on contrast enhancement conditional generative adversarial network and transfer learning},
358 | author={Guo, Runyuan and Liu, Han and Xie, Guo and Zhang, Youmin},
359 | journal={IEEE Sensors Journal},
360 | volume={21},
361 | number={9},
362 | pages={10844--10853},
363 | year={2021},
364 | publisher={IEEE}
365 | }
366 |
367 | @article{nahar2025automated,
368 | title={Automated corner grading of trading cards: Defect identification and confidence calibration through deep learning},
369 | author={Nahar, Lutfun and Islam, Md Saiful and Awrangjeb, Mohammad and Verhoeve, Rob},
370 | journal={Computers in Industry},
371 | volume={164},
372 | pages={104187},
373 | year={2025},
374 | publisher={Elsevier}
375 | }
376 |
377 | @article{al2022ramifications,
378 | title={Ramifications of incorrect image segmentations; emphasizing on the potential effects on deep learning methods failure},
379 | author={Al-Dmour, Hayat},
380 | journal={Journal of Big Data},
381 | volume={9},
382 | number={1},
383 | pages={71},
384 | year={2022},
385 | publisher={Springer}
386 | }
387 |
388 | @article{richens2020improving,
389 | title={Improving the accuracy of medical diagnosis with causal machine learning},
390 | author={Richens, Jonathan G and Lee, Ciar{\'a}n M and Johri, Saurabh},
391 | journal={Nature communications},
392 | volume={11},
393 | number={1},
394 | pages={3923},
395 | year={2020},
396 | publisher={Nature Publishing Group UK London}
397 | }
398 |
399 | @article{sambyal2023understanding,
400 | title={Understanding calibration of deep neural networks for medical image classification},
401 | author={Sambyal, Abhishek Singh and Niyaz, Usma and Krishnan, Narayanan C and Bathula, Deepti R},
402 | journal={Computer Methods and Programs in Biomedicine},
403 | volume={242},
404 | pages={107816},
405 | year={2023},
406 | publisher={Elsevier}
407 | }
408 |
409 | @article{wang2021multiple,
410 | title={A multiple combined method for rebalancing medical data with class imbalances},
411 | author={Wang, Yun-Chun and Cheng, Ching-Hsue},
412 | journal={Computers in Biology and Medicine},
413 | volume={134},
414 | pages={104527},
415 | year={2021},
416 | publisher={Elsevier}
417 | }
418 |
419 | @article{salmi2024handling,
420 | title={Handling imbalanced medical datasets: review of a decade of research},
421 | author={Salmi, Mabrouka and Atif, Dalia and Oliva, Diego and Abraham, Ajith and Ventura, Sebastian},
422 | journal={Artificial Intelligence Review},
423 | volume={57},
424 | number={10},
425 | pages={273},
426 | year={2024},
427 | publisher={Springer}
428 | }
429 |
430 | @article{du2023adaptive,
431 | title={An adaptive deep metric learning loss function for class-imbalance learning via intraclass diversity and interclass distillation},
432 | author={Du, Jie and Zhang, Xiaoci and Liu, Peng and Vong, Chi-Man and Wang, Tianfu},
433 | journal={IEEE Transactions on Neural Networks and Learning Systems},
434 | year={2023},
435 | publisher={IEEE}
436 | }
437 |
438 | @article{ileberi2022machine,
439 | title={A machine learning based credit card fraud detection using the GA algorithm for feature selection},
440 | author={Ileberi, Emmanuel and Sun, Yanxia and Wang, Zenghui},
441 | journal={Journal of Big Data},
442 | volume={9},
443 | number={1},
444 | pages={24},
445 | year={2022},
446 | publisher={Springer}
447 | }
448 |
449 | @article{ryman2018artificial,
450 | title={How Artificial Intelligence and machine learning research impacts payment card fraud detection: A survey and industry benchmark},
451 | author={Ryman-Tubb, Nick F and Krause, Paul and Garn, Wolfgang},
452 | journal={Engineering Applications of Artificial Intelligence},
453 | volume={76},
454 | pages={130--157},
455 | year={2018},
456 | publisher={Elsevier}
457 | }
458 |
459 | @article{habibpour2023uncertainty,
460 | title={Uncertainty-aware credit card fraud detection using deep learning},
461 | author={Habibpour, Maryam and Gharoun, Hassan and Mehdipour, Mohammadreza and Tajally, AmirReza and Asgharnezhad, Hamzeh and Shamsi, Afshar and Khosravi, Abbas and Nahavandi, Saeid},
462 | journal={Engineering Applications of Artificial Intelligence},
463 | volume={123},
464 | pages={106248},
465 | year={2023},
466 | publisher={Elsevier}
467 | }
468 |
469 | @article{li2021hybrid,
470 | title={A hybrid method with dynamic weighted entropy for handling the problem of class imbalance with overlap in credit card fraud detection},
471 | author={Li, Zhenchuan and Huang, Mian and Liu, Guanjun and Jiang, Changjun},
472 | journal={Expert Systems with Applications},
473 | volume={175},
474 | pages={114750},
475 | year={2021},
476 | publisher={Elsevier}
477 | }
478 |
479 | @article{ning2024exploiting,
480 | title={Exploiting Meta-Learned Confidences for Imbalanced Multilabel Learning},
481 | author={Ning, Zhihan and Jiang, Zhixing and Zhang, David},
482 | journal={IEEE Transactions on Neural Networks and Learning Systems},
483 | year={2024},
484 | publisher={IEEE}
485 | }
486 |
487 | @article{wu2020comprehensive,
488 | title={A comprehensive survey on graph neural networks},
489 | author={Wu, Zonghan and Pan, Shirui and Chen, Fengwen and Long, Guodong and Zhang, Chengqi and Philip, S Yu},
490 | journal={IEEE transactions on neural networks and learning systems},
491 | volume={32},
492 | number={1},
493 | pages={4--24},
494 | year={2020},
495 | publisher={IEEE}
496 | }
497 |
498 | @article{li2021survey,
499 | title={A survey of convolutional neural networks: analysis, applications, and prospects},
500 | author={Li, Zewen and Liu, Fan and Yang, Wenjie and Peng, Shouheng and Zhou, Jun},
501 | journal={IEEE transactions on neural networks and learning systems},
502 | volume={33},
503 | number={12},
504 | pages={6999--7019},
505 | year={2021},
506 | publisher={IEEE}
507 | }
508 |
509 | @article{zhang2023survey,
510 | title={A survey on learning to reject},
511 | author={Zhang, Xu-Yao and Xie, Guo-Sen and Li, Xiuli and Mei, Tao and Liu, Cheng-Lin},
512 | journal={Proceedings of the IEEE},
513 | volume={111},
514 | number={2},
515 | pages={185--215},
516 | year={2023},
517 | publisher={IEEE}
518 | }
519 |
520 | @article{li2021low,
521 | title={Low-light image and video enhancement using deep learning: A survey},
522 | author={Li, Chongyi and Guo, Chunle and Han, Linghao and Jiang, Jun and Cheng, Ming-Ming and Gu, Jinwei and Loy, Chen Change},
523 | journal={IEEE transactions on pattern analysis and machine intelligence},
524 | volume={44},
525 | number={12},
526 | pages={9396--9416},
527 | year={2021},
528 | publisher={IEEE}
529 | }
530 |
531 | @article{gordon2022data,
532 | title={Data Augmentation for Compositional Data: Advancing Predictive Models of the Microbiome},
533 | author={Gordon-Rodriguez, Elliott and Quinn, Thomas and Cunningham, John P},
534 | journal={Advances in Neural Information Processing Systems},
535 | volume={35},
536 | pages={20551--20565},
537 | year={2022}
538 | }
539 |
540 | @article{gong2022vqamix,
541 | title={VQAMix: Conditional triplet mixup for medical visual question answering},
542 | author={Gong, Haifan and Chen, Guanqi and Mao, Mingzhi and Li, Zhen and Li, Guanbin},
543 | journal={IEEE Transactions on Medical Imaging},
544 | volume={41},
545 | number={11},
546 | pages={3332--3343},
547 | year={2022},
548 | publisher={IEEE}
549 | }
550 |
551 | @inproceedings{wu2023towards,
552 | title={Towards reliable rare category analysis on graphs via individual calibration},
553 | author={Wu, Longfeng and Lei, Bowen and Xu, Dongkuan and Zhou, Dawei},
554 | booktitle={Proceedings of the 29th ACM SIGKDD Conference on Knowledge Discovery and Data Mining},
555 | pages={2629--2638},
556 | year={2023}
557 | }
558 |
559 | @inproceedings{xu2023learning,
560 | title={Learning Imbalanced Data with Vision Transformers},
561 | author={Xu, Zhengzhuo and Liu, Ruikang and Yang, Shuo and Chai, Zenghao and Yuan, Chun},
562 | booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition},
563 | pages={15793--15803},
564 | year={2023}
565 | }
566 |
567 | @article{yeung2023calibrating,
568 | title={Calibrating the Dice loss to handle neural network overconfidence for biomedical image segmentation},
569 | author={Yeung, Michael and Rundo, Leonardo and Nan, Yang and Sala, Evis and Sch{\"o}nlieb, Carola-Bibiane and Yang, Guang},
570 | journal={Journal of Digital Imaging},
571 | volume={36},
572 | number={2},
573 | pages={739--752},
574 | year={2023},
575 | publisher={Springer}
576 | }
577 |
578 | @article{lecun1998gradient,
579 | title={Gradient-based learning applied to document recognition},
580 | author={LeCun, Yann and Bottou, L{\'e}on and Bengio, Yoshua and Haffner, Patrick},
581 | journal={Proceedings of the IEEE},
582 | volume={86},
583 | number={11},
584 | pages={2278--2324},
585 | year={1998},
586 | publisher={Ieee}
587 | }
588 |
589 | @inproceedings{he2016deep,
590 | title={Deep residual learning for image recognition},
591 | author={He, Kaiming and Zhang, Xiangyu and Ren, Shaoqing and Sun, Jian},
592 | booktitle={Proceedings of the IEEE conference on computer vision and pattern recognition},
593 | pages={770--778},
594 | year={2016}
595 | }
596 |
597 | @article{xu2021towards,
598 | title={Towards calibrated model for long-tailed visual recognition from prior perspective},
599 | author={Xu, Zhengzhuo and Chai, Zenghao and Yuan, Chun},
600 | journal={Advances in Neural Information Processing Systems},
601 | volume={34},
602 | pages={7139--7152},
603 | year={2021}
604 | }
605 |
606 | @inproceedings{mitigating,
607 | title={Mitigating bias in calibration error estimation},
608 | author={Roelofs, Rebecca and Cain, Nicholas and Shlens, Jonathon and Mozer, Michael C},
609 | booktitle={International Conference on Artificial Intelligence and Statistics},
610 | pages={4036--4054},
611 | year={2022},
612 | organization={PMLR}
613 | }
614 |
615 | @inproceedings{aimar2023balanced,
616 | title={Balanced Product of Calibrated Experts for Long-Tailed Recognition},
617 | author={Aimar, Emanuel Sanchez and Jonnarth, Arvi and Felsberg, Michael and Kuhlmann, Marco},
618 | booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition},
619 | pages={19967--19977},
620 | year={2023}
621 | }
622 |
623 | @article{guilbert2024calibration,
624 | title={Calibration methods in imbalanced binary classification},
625 | author={Guilbert, Th{\'e}o and Caelen, Olivier and Chirita, Andrei and Saerens, Marco},
626 | journal={Annals of Mathematics and Artificial Intelligence},
627 | pages={1--34},
628 | year={2024},
629 | publisher={Springer}
630 | }
631 |
632 | @article{patel2020multi,
633 | title={Multi-class uncertainty calibration via mutual information maximization-based binning},
634 | author={Patel, Kanil and Beluch, William and Yang, Bin and Pfeiffer, Michael and Zhang, Dan},
635 | journal={arXiv preprint arXiv:2006.13092},
636 | year={2020}
637 | }
638 |
639 | @inproceedings{zhong2021improving,
640 | title={Improving calibration for long-tailed recognition},
641 | author={Zhong, Zhisheng and Cui, Jiequan and Liu, Shu and Jia, Jiaya},
642 | booktitle={Proceedings of the IEEE/CVF conference on computer vision and pattern recognition},
643 | pages={16489--16498},
644 | year={2021}
645 | }
646 |
647 | @article{jung2023scaling,
648 | title={Scaling of Class-wise Training Losses for Post-hoc Calibration},
649 | author={Jung, Seungjin and Seo, Seungmo and Jeong, Yonghyun and Choi, Jongwon},
650 | journal={arXiv preprint arXiv:2306.10989},
651 | year={2023}
652 | }
653 |
654 | @inproceedings{huang2017densely,
655 | title={Densely connected convolutional networks},
656 | author={Huang, Gao and Liu, Zhuang and Van Der Maaten, Laurens and Weinberger, Kilian Q},
657 | booktitle={Proceedings of the IEEE conference on computer vision and pattern recognition},
658 | pages={4700--4708},
659 | year={2017}
660 | }
661 |
662 | @inproceedings{li2022trustworthy,
663 | title={Trustworthy long-tailed classification},
664 | author={Li, Bolian and Han, Zongbo and Li, Haining and Fu, Huazhu and Zhang, Changqing},
665 | booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition},
666 | pages={6970--6979},
667 | year={2022}
668 | }
669 |
670 | @ARTICLE{franchi2023encoding,
671 | author={Franchi, Gianni and Bursuc, Andrei and Aldea, Emanuel and Dubuisson, Séverine and Bloch, Isabelle},
672 | journal={IEEE Transactions on Pattern Analysis and Machine Intelligence},
673 | title={Encoding the Latent Posterior of Bayesian Neural Networks for Uncertainty Quantification},
674 | year={2024},
675 | volume={46},
676 | number={4},
677 | pages={2027-2040},
678 | keywords={Training;Bayes methods;Uncertainty;Correlation;Task analysis;Gaussian distribution;Computational efficiency;Uncertainty estimation;deep neural network ensembles;Bayesian neural network},
679 | doi={10.1109/TPAMI.2023.3328829}}
680 |
681 | @inproceedings{galdran2023multi,
682 | title={Multi-Head Multi-Loss Model Calibration},
683 | author={Galdran, Adrian and Verjans, Johan W and Carneiro, Gustavo and Gonz{\'a}lez Ballester, Miguel A},
684 | booktitle={International Conference on Medical Image Computing and Computer-Assisted Intervention},
685 | pages={108--117},
686 | year={2023},
687 | organization={Springer}
688 | }
689 |
690 | @inproceedings{hong2021disentangling,
691 | title={Disentangling label distribution for long-tailed visual recognition},
692 | author={Hong, Youngkyu and Han, Seungju and Choi, Kwanghee and Seo, Seokjun and Kim, Beomsu and Chang, Buru},
693 | booktitle={Proceedings of the IEEE/CVF conference on computer vision and pattern recognition},
694 | pages={6626--6636},
695 | year={2021}
696 | }
697 |
698 | @inproceedings{hebbalaguppe2022stitch,
699 | title={A stitch in time saves nine: A train-time regularizing loss for improved neural network calibration},
700 | author={Hebbalaguppe, Ramya and Prakash, Jatin and Madan, Neelabh and Arora, Chetan},
701 | booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition},
702 | pages={16081--16090},
703 | year={2022}
704 | }
705 |
706 | @inproceedings{chen2023transfer,
707 | title={Transfer Knowledge from Head to Tail: Uncertainty Calibration under Long-tailed Distribution},
708 | author={Chen, Jiahao and Su, Bing},
709 | booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition},
710 | pages={19978--19987},
711 | year={2023}
712 | }
713 |
714 | @article{pan2021model,
715 | title={On model calibration for long-tailed object detection and instance segmentation},
716 | author={Pan, Tai-Yu and Zhang, Cheng and Li, Yandong and Hu, Hexiang and Xuan, Dong and Changpinyo, Soravit and Gong, Boqing and Chao, Wei-Lun},
717 | journal={Advances in Neural Information Processing Systems},
718 | volume={34},
719 | pages={2529--2542},
720 | year={2021}
721 | }
722 |
723 | @article{wang2023predicting,
724 | title={Predicting neural network confidence using high-level feature distance},
725 | author={Wang, Jie and Ai, Jun and Lu, Minyan and Liu, Jingyu and Wu, Zili},
726 | journal={Information and Software Technology},
727 | volume={159},
728 | pages={107214},
729 | year={2023},
730 | publisher={Elsevier}
731 | }
732 |
733 | @inproceedings{nyberg2021reliably,
734 | title={Reliably calibrated isotonic regression},
735 | author={Nyberg, Otto and Klami, Arto},
736 | booktitle={Pacific-Asia Conference on Knowledge Discovery and Data Mining},
737 | pages={578--589},
738 | year={2021},
739 | organization={Springer}
740 | }
741 |
742 | @ARTICLE{li2024multi,
743 | author={Li, Shuxian and Song, Liyan and Wu, Xiaoyu and Hu, Zheng and Cheung, Yiu-ming and Yao, Xin},
744 | journal={IEEE Transactions on Knowledge and Data Engineering},
745 | title={Multi-Class Imbalance Classification Based on Data Distribution and Adaptive Weights},
746 | year={2024},
747 | volume={36},
748 | number={10},
749 | pages={5265-5279},
750 | keywords={Training;Ensemble learning;Costs;Computer science;Linear programming;Learning systems;Classification algorithms;Multi-class imbalance classification;ensembles;AdaBoost;adaptive weight;data density},
751 | doi={10.1109/TKDE.2024.3384961}}
752 |
753 | @article{zhang2024entropy,
754 | title={Entropy-Based re-sampling method on SAR class imbalance target detection},
755 | author={Zhang, Chong-Qi and Deng, Yao and Chong, Ming-Zhe and Zhang, Zi-Wen and Tan, Yun-Hua},
756 | journal={ISPRS Journal of Photogrammetry and Remote Sensing},
757 | volume={209},
758 | pages={432--447},
759 | year={2024},
760 | publisher={Elsevier}
761 | }
762 |
763 | @article{wang2024imwmote,
764 | title={IMWMOTE: A novel oversampling technique for fault diagnosis in heterogeneous imbalanced data},
765 | author={Wang, Jiaxin and Wei, Jianan and Huang, Haisong and Wen, Long and Yuan, Yage and Chen, Hualin and Wu, Rui and Wu, Jinxing},
766 | journal={Expert Systems with Applications},
767 | volume={251},
768 | pages={123987},
769 | year={2024},
770 | publisher={Elsevier}
771 | }
772 |
773 | @ARTICLE{tian2024intrinsic,
774 | author={Tian, Jialin and Saddik, Abdulmotaleb El and Xu, Xing and Li, Dongshuai and Cao, Zuo and Shen, Heng Tao},
775 | journal={IEEE Transactions on Neural Networks and Learning Systems},
776 | title={Intrinsic Consistency Preservation With Adaptively Reliable Samples for Source-Free Domain Adaptation},
777 | year={2024},
778 | volume={},
779 | number={},
780 | pages={1-12},
781 | keywords={Reliability;Training;Task analysis;Adaptation models;Data models;Standards;Data privacy;Domain adaptation;domain and label shift;imbalanced distribution;source-free data},
782 | doi={10.1109/TNNLS.2024.3362948}}
783 |
784 | @ARTICLE{liu2024sar,
785 | author={Liu, Yingbing and Yan, Gang and Ma, Fei and Zhou, Yongsheng and Zhang, Fan},
786 | journal={IEEE Transactions on Geoscience and Remote Sensing},
787 | title={SAR Ship Detection Based on Explainable Evidence Learning Under Intraclass Imbalance},
788 | year={2024},
789 | volume={62},
790 | number={},
791 | pages={1-15},
792 | keywords={Uncertainty;Marine vehicles;Feature extraction;Training;Data models;Object detection;Radar polarimetry;Contrastive learning;evidence learning;intraclass imbalance;synthetic aperture radar (SAR) ship detection},
793 | doi={10.1109/TGRS.2024.3373668}}
794 |
795 | @ARTICLE{ning2024combat,
796 | author={Ning, Zhihan and Jiang, Zhixing and Zhang, David},
797 | journal={IEEE Transactions on Neural Networks and Learning Systems},
798 | title={To Combat Multiclass Imbalanced Problems by Aggregating Evolutionary Hierarchical Classifiers},
799 | year={2024},
800 | volume={},
801 | number={},
802 | pages={1-15},
803 | keywords={Genetic algorithms;Costs;Biological cells;Training;Feature extraction;Forestry;Aggregates;Genetic algorithms (GAs);hierarchical classification;imbalanced data;machine learning;multiclassification},
804 | doi={10.1109/TNNLS.2024.3383672}}
805 |
806 | @inproceedings{devi2020review,
807 | title={A review on solution to class imbalance problem: Undersampling approaches},
808 | author={Devi, Debashree and Biswas, Saroj K and Purkayastha, Biswajit},
809 | booktitle={2020 international conference on computational performance evaluation (ComPE)},
810 | pages={626--631},
811 | year={2020},
812 | organization={IEEE}
813 | }
814 |
815 | @article{hoyos2021relevant,
816 | title={Relevant information undersampling to support imbalanced data classification},
817 | author={Hoyos-Osorio, J and Alvarez-Meza, A and Daza-Santacoloma, Genaro and Orozco-Gutierrez, A and Castellanos-Dominguez, Germ{\'a}n},
818 | journal={Neurocomputing},
819 | volume={436},
820 | pages={136--146},
821 | year={2021},
822 | publisher={Elsevier}
823 | }
824 |
825 | @ARTICLE{yan2022spatial,
826 | author={Yan, Yuanting and Zhu, Yuanwei and Liu, Ruiqing and Zhang, Yiwen and Zhang, Yanping and Zhang, Ling},
827 | journal={IEEE Transactions on Knowledge and Data Engineering},
828 | title={Spatial Distribution-Based Imbalanced Undersampling},
829 | year={2023},
830 | volume={35},
831 | number={6},
832 | pages={6376-6391},
833 | keywords={Training;Costs;Biological neural networks;Machine learning algorithms;Clustering algorithms;Signal processing algorithms;Proposals;Undersampling;imbalance;local pattern;sphere neighborhood;ensemble learning},
834 | doi={10.1109/TKDE.2022.3161537}}
835 |
836 | @article{wang2020entropy,
837 | title={Entropy and confidence-based undersampling boosting random forests for imbalanced problems},
838 | author={Wang, Zhe and Cao, Chenjie and Zhu, Yujin},
839 | journal={IEEE transactions on neural networks and learning systems},
840 | volume={31},
841 | number={12},
842 | pages={5178--5191},
843 | year={2020},
844 | publisher={IEEE}
845 | }
846 |
847 | @article{ng2020hashing,
848 | title={Hashing-based undersampling ensemble for imbalanced pattern classification problems},
849 | author={Ng, Wing WY and Xu, Shichao and Zhang, Jianjun and Tian, Xing and Rong, Tongwen and Kwong, Sam},
850 | journal={IEEE Transactions on Cybernetics},
851 | volume={52},
852 | number={2},
853 | pages={1269--1279},
854 | year={2020},
855 | publisher={IEEE}
856 | }
857 |
858 | @ARTICLE{dablain2022deepsmote,
859 | author={Dablain, Damien and Krawczyk, Bartosz and Chawla, Nitesh V.},
860 | journal={IEEE Transactions on Neural Networks and Learning Systems},
861 | title={DeepSMOTE: Fusing Deep Learning and SMOTE for Imbalanced Data},
862 | year={2023},
863 | volume={34},
864 | number={9},
865 | pages={6390-6404},
866 | keywords={Deep learning;Training;Data models;Visualization;Image reconstruction;Learning systems;Inspection;Class imbalance;deep learning;machine learning;oversampling;synthetic minority oversampling technique (SMOTE)},
867 | doi={10.1109/TNNLS.2021.3136503}}
868 |
869 | @article{maldonado2022fw,
870 | title={FW-SMOTE: A feature-weighted oversampling approach for imbalanced classification},
871 | author={Maldonado, Sebasti{\'a}n and Vairetti, Carla and Fernandez, Alberto and Herrera, Francisco},
872 | journal={Pattern Recognition},
873 | volume={124},
874 | pages={108511},
875 | year={2022},
876 | publisher={Elsevier}
877 | }
878 |
879 | @article{liu2023noise,
880 | title={Noise-robust oversampling for imbalanced data classification},
881 | author={Liu, Yongxu and Liu, Yan and Bruce, XB and Zhong, Shenghua and Hu, Zhejing},
882 | journal={Pattern Recognition},
883 | volume={133},
884 | pages={109008},
885 | year={2023},
886 | publisher={Elsevier}
887 | }
888 |
889 | @article{li2021novel,
890 | title={A novel oversampling technique for class-imbalanced learning based on SMOTE and natural neighbors},
891 | author={Li, Junnan and Zhu, Qingsheng and Wu, Quanwang and Fan, Zhu},
892 | journal={Information Sciences},
893 | volume={565},
894 | pages={438--455},
895 | year={2021},
896 | publisher={Elsevier}
897 | }
898 |
899 | @article{lin2023towards,
900 | title={Towards hybrid over-and under-sampling combination methods for class imbalanced datasets: an experimental study},
901 | author={Lin, Cian and Tsai, Chih-Fong and Lin, Wei-Chao},
902 | journal={Artificial Intelligence Review},
903 | volume={56},
904 | number={2},
905 | pages={845--863},
906 | year={2023},
907 | publisher={Springer}
908 | }
909 |
910 | @inproceedings{koziarski2021csmoute,
911 | title={Csmoute: Combined synthetic oversampling and undersampling technique for imbalanced data classification},
912 | author={Koziarski, Micha{\l}},
913 | booktitle={2021 International Joint Conference on Neural Networks (IJCNN)},
914 | pages={1--8},
915 | year={2021},
916 | organization={IEEE}
917 | }
918 |
919 | @inproceedings{shamsudin2020combining,
920 | title={Combining oversampling and undersampling techniques for imbalanced classification: A comparative study using credit card fraudulent transaction dataset},
921 | author={Shamsudin, Haziqah and Yusof, Umi Kalsom and Jayalakshmi, Andal and Khalid, Mohd Nor Akmal},
922 | booktitle={2020 IEEE 16th International Conference on Control \& Automation (ICCA)},
923 | pages={803--808},
924 | year={2020},
925 | organization={IEEE}
926 | }
927 |
928 | @article{park2021combined,
929 | title={Combined oversampling and undersampling method based on slow-start algorithm for imbalanced network traffic},
930 | author={Park, Seunghyun and Park, Hyunhee},
931 | journal={Computing},
932 | volume={103},
933 | number={3},
934 | pages={401--424},
935 | year={2021},
936 | publisher={Springer}
937 | }
938 |
939 | @inproceedings{dal2015calibrating,
940 | title={Calibrating probability with undersampling for unbalanced classification},
941 | author={Dal Pozzolo, Andrea and Caelen, Olivier and Johnson, Reid A and Bontempi, Gianluca},
942 | booktitle={2015 IEEE symposium series on computational intelligence},
943 | pages={159--166},
944 | year={2015},
945 | organization={IEEE}
946 | }
947 |
948 | @article{platt1999probabilistic,
949 | title={Probabilistic outputs for support vector machines and comparisons to regularized likelihood methods},
950 | author={Platt, John and others},
951 | journal={Advances in large margin classifiers},
952 | volume={10},
953 | number={3},
954 | pages={61--74},
955 | year={1999},
956 | publisher={Cambridge, MA}
957 | }
958 |
959 | @inproceedings{huo2022density,
960 | title={Density-Aware Personalized Training for Risk Prediction in Imbalanced Medical Data},
961 | author={Huo, Zepeng and Qian, Xiaoning and Huang, Shuai and Wang, Zhangyang and Mortazavi, Bobak J},
962 | booktitle={Machine Learning for Healthcare Conference},
963 | pages={101--122},
964 | year={2022},
965 | organization={PMLR}
966 | }
967 |
968 | @InProceedings{bellinger2021calibrated,
969 | author="Bellinger, Colin
970 | and Corizzo, Roberto
971 | and Japkowicz, Nathalie",
972 | editor="Soares, Carlos
973 | and Torgo, Luis",
974 | title="Calibrated Resampling for Imbalanced and Long-Tails in Deep Learning",
975 | booktitle="Discovery Science",
976 | year="2021",
977 | publisher="Springer International Publishing",
978 | address="Cham",
979 | pages="242--252",
980 | abstract="Long-tailed distributions and class imbalance are problems of significant importance in applied deep learning where trained models are exploited for decision support and decision automation in critical areas such as health and medicine, transportation and finance. The challenge of learning deep models from such data remains high, and the state-of-the-art solutions are typically data dependent and primarily focused on images. Important real-world problems, however, are much more diverse thus necessitating a general solution that can be applied to diverse data types. In this paper, we propose ReMix, a training technique that seamlessly leverages batch resampling, instance mixing and soft-labels to efficiently enable the induction of robust deep models from imbalanced and long-tailed datasets. Our results show that fully connected neural networks and Convolutional Neural Networks (CNNs) trained with ReMix generally outperform the alternatives according to the g-mean and are better calibrated according to the balanced Brier score.",
981 | isbn="978-3-030-88942-5"
982 | }
983 |
984 | @inproceedings{chou2020remix,
985 | title={Remix: rebalanced mixup},
986 | author={Chou, Hsin-Ping and Chang, Shih-Chieh and Pan, Jia-Yu and Wei, Wei and Juan, Da-Cheng},
987 | booktitle={Computer Vision--ECCV 2020 Workshops: Glasgow, UK, August 23--28, 2020, Proceedings, Part VI 16},
988 | pages={95--110},
989 | year={2020},
990 | organization={Springer}
991 | }
992 |
993 | @ARTICLE{pan2024enhanced,
994 | author={Pan, Haolin and Guo, Yong and Yu, Mianjie and Chen, Jian},
995 | journal={IEEE Transactions on Image Processing},
996 | title={Enhanced Long-Tailed Recognition With Contrastive CutMix Augmentation},
997 | year={2024},
998 | volume={33},
999 | number={},
1000 | pages={4215-4230},
1001 | keywords={Tail;Dogs;Semantics;Training;Contrastive learning;Head;Data augmentation;Long-tailed recognition;data augmentation;contrastive learning},
1002 | doi={10.1109/TIP.2024.3425148}}
1003 |
1004 | @ARTICLE{chen2024instance,
1005 | author={Chen, Jiahao and Su, Bing},
1006 | journal={IEEE Transactions on Image Processing},
1007 | title={Instance-Specific Semantic Augmentation for Long-Tailed Image Classification},
1008 | year={2024},
1009 | volume={33},
1010 | number={},
1011 | pages={2544-2557},
1012 | keywords={Tail;Semantics;Head;Programmable logic arrays;Training;Image classification;Reliability;Long-tailed distribution;image classification;instance augmentation;imbalanced data},
1013 | doi={10.1109/TIP.2024.3379929}}
1014 |
1015 | @article{shin2024representation,
1016 | title={Representation Norm Amplification for Out-of-Distribution Detection in Long-Tail Learning},
1017 | author={Shin, Dong Geun and Chung, Hye Won},
1018 | journal={arXiv preprint arXiv:2408.10676},
1019 | year={2024}
1020 | }
1021 |
1022 | @ARTICLE{xia2024uncertainty,
1023 | author={Xia, Tong and Dang, Ting and Han, Jing and Qendro, Lorena and Mascolo, Cecilia},
1024 | journal={IEEE Journal of Biomedical and Health Informatics},
1025 | title={Uncertainty-Aware Health Diagnostics via Class-Balanced Evidential Deep Learning},
1026 | year={2024},
1027 | volume={28},
1028 | number={11},
1029 | pages={6417-6428},
1030 | keywords={Uncertainty;Deep learning;Estimation;Medical diagnostic imaging;Data models;Reliability;Training;Uncertainty quantification;deep learning;trustworthy health diagnostics;class imbalance},
1031 | doi={10.1109/JBHI.2024.3360002}}
1032 |
1033 | @inproceedings{nnamdiconfidence,
1034 | title={Confidence-Calibrated Clinical Decision Support System for Reliable Respiratory Disease Screening},
1035 | author={Micky C. Nnamdi and J. Ben Tamo and Wenqi Shi and Vivek Chundru and Benoit Louis Marteau and Oankar R. Patil and May Dongmei Wang},
1036 | booktitle={IEEE-EMBS International Conference on Biomedical and Health Informatics},
1037 | year={2024},
1038 | url={https://openreview.net/forum?id=chVymJKep2}
1039 | }
1040 |
1041 | @article{yuksekgonul2024beyond,
1042 | title={Beyond confidence: Reliable models should also consider atypicality},
1043 | author={Yuksekgonul, Mert and Zhang, Linjun and Zou, James Y and Guestrin, Carlos},
1044 | journal={Advances in Neural Information Processing Systems},
1045 | volume={36},
1046 | year={2024}
1047 | }
1048 |
1049 | @inproceedings{
1050 | popordanoskalascal,
1051 | title={La{SC}al: Label-Shift Calibration without target labels},
1052 | author={Teodora Popordanoska and Gorjan Radevski and Tinne Tuytelaars and Matthew B. Blaschko},
1053 | booktitle={The Thirty-eighth Annual Conference on Neural Information Processing Systems},
1054 | year={2024},
1055 | url={https://openreview.net/forum?id=TALJtWX7w4}
1056 | }
1057 |
1058 | @inproceedings{Toplabel,
1059 | title={Top-label calibration and multiclass-to-binary reductions},
1060 | author={Chirag Gupta and Aaditya Ramdas},
1061 | booktitle={International Conference on Learning Representations},
1062 | year={2022},
1063 | url={https://openreview.net/forum?id=WqoBaaPHS-}
1064 | }
1065 |
1066 | @inproceedings{BeyondTemperatureScaling,
1067 | author = {Kull, Meelis and Perello Nieto, Miquel and K\"{a}ngsepp, Markus and Silva Filho, Telmo and Song, Hao and Flach, Peter},
1068 | booktitle = {Advances in Neural Information Processing Systems},
1069 | editor = {H. Wallach and H. Larochelle and A. Beygelzimer and F. d\textquotesingle Alch\'{e}-Buc and E. Fox and R. Garnett},
1070 | pages = {},
1071 | publisher = {Curran Associates, Inc.},
1072 | title = {Beyond temperature scaling: Obtaining well-calibrated multi-class probabilities with Dirichlet calibration},
1073 | url = {https://proceedings.neurips.cc/paper_files/paper/2019/file/8ca01ea920679a0fe3728441494041b9-Paper.pdf},
1074 | volume = {32},
1075 | year = {2019}
1076 | }
1077 |
1078 | @InProceedings{Evaluating,
1079 | title = {Evaluating model calibration in classification},
1080 | author = {Vaicenavicius, Juozas and Widmann, David and Andersson, Carl and Lindsten, Fredrik and Roll, Jacob and Sch\"{o}n, Thomas},
1081 | booktitle = {Proceedings of the Twenty-Second International Conference on Artificial Intelligence and Statistics},
1082 | pages = {3459--3467},
1083 | year = {2019},
1084 | editor = {Chaudhuri, Kamalika and Sugiyama, Masashi},
1085 | volume = {89},
1086 | series = {Proceedings of Machine Learning Research},
1087 | month = {16--18 Apr},
1088 | publisher = {PMLR},
1089 | pdf = {http://proceedings.mlr.press/v89/vaicenavicius19a/vaicenavicius19a.pdf},
1090 | url = {https://proceedings.mlr.press/v89/vaicenavicius19a.html},
1091 | abstract = {Probabilistic classifiers output a probability distribution on target classes rather than just a class prediction. Besides providing a clear separation of prediction and decision making, the main advantage of probabilistic models is their ability to represent uncertainty about predictions. In safety-critical applications, it is pivotal for a model to possess an adequate sense of uncertainty, which for probabilistic classifiers translates into outputting probability distributions that are consistent with the empirical frequencies observed from realized outcomes. A classifier with such a property is called calibrated. In this work, we develop a general theoretical calibration evaluation framework grounded in probability theory, and point out subtleties present in model calibration evaluation that lead to refined interpretations of existing evaluation techniques. Lastly, we propose new ways to quantify and visualize miscalibration in probabilistic classification, including novel multidimensional reliability diagrams.}
1092 | }
1093 |
1094 | @misc{dong2024combining,
1095 | title={Combining Priors with Experience: Confidence Calibration Based on Binomial Process Modeling},
1096 | author={Jinzong Dong and Zhaohui Jiang and Dong Pan and Haoyang Yu},
1097 | year={2024},
1098 | eprint={2412.10658},
1099 | archivePrefix={arXiv},
1100 | primaryClass={stat.ME},
1101 | url={https://arxiv.org/abs/2412.10658},
1102 | }
1103 |
1104 | @misc{KScalibration,
1105 | title={Calibration of Neural Networks using Splines},
1106 | author={Kartik Gupta and Amir Rahimi and Thalaiyasingam Ajanthan and Thomas Mensink and Cristian Sminchisescu and Richard Hartley},
1107 | year={2021},
1108 | eprint={2006.12800},
1109 | archivePrefix={arXiv},
1110 | primaryClass={cs.LG},
1111 | url={https://arxiv.org/abs/2006.12800},
1112 | }
1113 |
1114 | @InProceedings{classAdaptive,
1115 | author = {Liu, Bingyuan and Rony, J\'er\^ome and Galdran, Adrian and Dolz, Jose and Ben Ayed, Ismail},
1116 | title = {Class Adaptive Network Calibration},
1117 | booktitle = {Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
1118 | month = {June},
1119 | year = {2023},
1120 | pages = {16070-16079}
1121 | }
1122 |
1123 | @inproceedings{muller2019does,
1124 | author = {M\"{u}ller, Rafael and Kornblith, Simon and Hinton, Geoffrey E},
1125 | booktitle = {Advances in Neural Information Processing Systems},
1126 | editor = {H. Wallach and H. Larochelle and A. Beygelzimer and F. d\textquotesingle Alch\'{e}-Buc and E. Fox and R. Garnett},
1127 | pages = {},
1128 | publisher = {Curran Associates, Inc.},
1129 | title = {When does label smoothing help?},
1130 | url = {https://proceedings.neurips.cc/paper_files/paper/2019/file/f1748d6b0fd9d439f71450117eba2725-Paper.pdf},
1131 | volume = {32},
1132 | year = {2019}
1133 | }
1134 |
1135 | @inproceedings{
1136 | Grathwohl2020Your,
1137 | title={Your classifier is secretly an energy based model and you should treat it like one},
1138 | author={Will Grathwohl and Kuan-Chieh Wang and Joern-Henrik Jacobsen and David Duvenaud and Mohammad Norouzi and Kevin Swersky},
1139 | booktitle={International Conference on Learning Representations},
1140 | year={2020},
1141 | url={https://openreview.net/forum?id=Hkxzx0NtDB}
1142 | }
1143 |
1144 | @InProceedings{Yang_2021_ICCV,
1145 | author = {Yang, Xiulong and Ji, Shihao},
1146 | title = {JEM++: Improved Techniques for Training JEM},
1147 | booktitle = {Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV)},
1148 | month = {October},
1149 | year = {2021},
1150 | pages = {6494-6503}
1151 | }
1152 |
1153 | @InProceedings{Yang_2023_CVPR,
1154 | author = {Yang, Xiulong and Su, Qing and Ji, Shihao},
1155 | title = {Towards Bridging the Performance Gaps of Joint Energy-Based Models},
1156 | booktitle = {Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
1157 | month = {June},
1158 | year = {2023},
1159 | pages = {15732-15741}
1160 | }
1161 |
1162 | @ARTICLE{10423259,
1163 | author={Hayashi, Hideaki},
1164 | journal={IEEE Transactions on Neural Networks and Learning Systems},
1165 | title={A Hybrid of Generative and Discriminative Models Based on the Gaussian-Coupled Softmax Layer},
1166 | year={2024},
1167 | volume={},
1168 | number={},
1169 | pages={1-11},
1170 | keywords={Data models;Hybrid power systems;Artificial neural networks;Calibration;Semisupervised learning;Task analysis;Feature extraction;Confidence calibration;energy-based model (EBM);hybrid model;semi-supervised learning},
1171 | doi={10.1109/TNNLS.2024.3358113}}
1172 |
1173 | @article{BayesianBinning,
1174 | title={Obtaining Well Calibrated Probabilities Using Bayesian Binning},
1175 | volume={29},
1176 | url={https://ojs.aaai.org/index.php/AAAI/article/view/9602},
1177 | DOI={10.1609/aaai.v29i1.9602},
1178 | abstractNote={ <p> Learning probabilistic predictive models that are well calibrated is critical for many prediction and decision-making tasks in artificial intelligence. In this paper we present a new non-parametric calibration method called Bayesian Binning into Quantiles (BBQ) which addresses key limitations of existing calibration methods. The method post processes the output of a binary classification algorithm; thus, it can be readily combined with many existing classification algorithms. The method is computationally tractable, and empirically accurate, as evidenced by the set of experiments reported here on both real and simulated datasets. </p> },
1179 | number={1},
1180 | journal={Proceedings of the AAAI Conference on Artificial Intelligence},
1181 | author={Pakdaman Naeini, Mahdi and Cooper, Gregory and Hauskrecht, Milos},
1182 | year={2015},
1183 | month={Feb.} }
1184 |
1185 | @article{joy2023sample,
1186 | title={Sample-Dependent Adaptive Temperature Scaling for Improved Calibration},
1187 | volume={37},
1188 | url={https://ojs.aaai.org/index.php/AAAI/article/view/26742},
1189 | DOI={10.1609/aaai.v37i12.26742},
1190 | abstractNote={It is now well known that neural networks can be wrong with high confidence in their predictions, leading to poor calibration. The most common post-hoc approach to compensate for this is to perform temperature scaling, which adjusts the confidences of the predictions on any input by scaling the logits by a fixed value. Whilst this approach typically improves the average calibration across the whole test dataset, this improvement typically reduces the individual confidences of the predictions irrespective of whether the classification of a given input is correct or incorrect. With this insight, we base our method on the observation that different samples contribute to the calibration error by varying amounts, with some needing to increase their confidence and others needing to decrease it. Therefore, for each input, we propose to predict a different temperature value, allowing us to adjust the mismatch between confidence and accuracy at a finer granularity. Our method is applied post-hoc, enabling it to be very fast with a negligible memory footprint and is applied to off-the-shelf pre-trained classifiers. We test our method on the ResNet50 and WideResNet28-10 architectures using the CIFAR10/100 and Tiny-ImageNet datasets, showing that producing per-data-point temperatures improves the expected calibration error across the whole test set.},
1191 | number={12},
1192 | journal={Proceedings of the AAAI Conference on Artificial Intelligence},
1193 | author={Joy, Tom and Pinto, Francesco and Lim, Ser-Nam and Torr, Philip H.S. and Dokania, Puneet K.}, year={2023},
1194 | month={Jun.},
1195 | pages={14919-14926} }
1196 |
1197 | @inproceedings{mixNmatch,
1198 | title={Mix-n-match: Ensemble and compositional methods for uncertainty calibration in deep learning},
1199 | author={Zhang, Jize and Kailkhura, Bhavya and Han, T Yong-Jin},
1200 | booktitle={International conference on machine learning},
1201 | pages={11117--11128},
1202 | year={2020},
1203 | organization={PMLR}
1204 | }
1205 |
1206 | @inproceedings{zadrozny2001obtaining,
1207 | title={Obtaining calibrated probability estimates from decision trees and naive bayesian classifiers},
1208 | author={Zadrozny, Bianca and Elkan, Charles},
1209 | booktitle={Icml},
1210 | volume={1},
1211 | pages={609--616},
1212 | year={2001}
1213 | }
1214 |
1215 | @inproceedings{
1216 | patel2021multiclass,
1217 | title={Multi-Class Uncertainty Calibration via Mutual Information Maximization-based Binning},
1218 | author={Kanil Patel and William H. Beluch and Bin Yang and Michael Pfeiffer and Dan Zhang},
1219 | booktitle={International Conference on Learning Representations},
1220 | year={2021},
1221 | url={https://openreview.net/forum?id=AICNpd8ke-m}
1222 | }
1223 |
1224 | @inproceedings{zadrozny2002transforming,
1225 | author = {Zadrozny, Bianca and Elkan, Charles},
1226 | title = {Transforming classifier scores into accurate multiclass probability estimates},
1227 | year = {2002},
1228 | isbn = {158113567X},
1229 | publisher = {Association for Computing Machinery},
1230 | address = {New York, NY, USA},
1231 | url = {https://doi.org/10.1145/775047.775151},
1232 | doi = {10.1145/775047.775151},
1233 | abstract = {Class membership probability estimates are important for many applications of data mining in which classification outputs are combined with other sources of information for decision-making, such as example-dependent misclassification costs, the outputs of other classifiers, or domain knowledge. Previous calibration methods apply only to two-class problems. Here, we show how to obtain accurate probability estimates for multiclass problems by combining calibrated binary probability estimates. We also propose a new method for obtaining calibrated two-class probability estimates that can be applied to any classifier that produces a ranking of examples. Using naive Bayes and support vector machine classifiers, we give experimental results from a variety of two-class and multiclass domains, including direct marketing, text categorization and digit recognition.},
1234 | booktitle = {Proceedings of the Eighth ACM SIGKDD International Conference on Knowledge Discovery and Data Mining},
1235 | pages = {694–699},
1236 | numpages = {6},
1237 | location = {Edmonton, Alberta, Canada},
1238 | series = {KDD '02}
1239 | }
1240 |
1241 | @article{intraOderPreserving,
1242 | title={Intra order-preserving functions for calibration of multi-class neural networks},
1243 | author={Rahimi, Amir and Shaban, Amirreza and Cheng, Ching-An and Hartley, Richard and Boots, Byron},
1244 | journal={Advances in Neural Information Processing Systems},
1245 | volume={33},
1246 | pages={13456--13467},
1247 | year={2020}
1248 | }
--------------------------------------------------------------------------------
/review_response.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NeuroDong/Latex_for_review_comments/bf2559a422148bc6fcdf3e6a284d14575aadead3/review_response.pdf
--------------------------------------------------------------------------------
/review_response.tex:
--------------------------------------------------------------------------------
1 | \documentclass[12pt,american]{article}
2 | \usepackage[T1]{fontenc}
3 | \usepackage{fourier}
4 | \usepackage[hidelinks]{hyperref}
5 | \usepackage{babel}
6 | \usepackage[babel]{microtype}
7 | \usepackage[babel]{csquotes}
8 | \usepackage[journal={IEEE Transactions on Neural Networks and Learning Systems},
9 | manuscript={TNNLS-2024-S-XXXX},
10 | editor={Dr. Song}]{reviewresponse}
11 |
12 | \usepackage{fancyhdr}
13 | \usepackage{lastpage}
14 | \usepackage[a4paper,total={160mm,245mm},left=25mm,top=25mm]{geometry}
15 | \renewcommand{\headrulewidth}{0pt}
16 | \renewcommand{\footrulewidth}{.5pt}
17 | \usepackage[shortlabels]{enumitem}
18 | \newlist{detail}{itemize}{3}
19 | \setlist[detail, 1]{label=\textbullet,leftmargin=21pt,nosep}
20 | \usepackage[backend=biber,style=ieee,dashed=false,url=false,isbn=false,defernumbers=false,refsection=section]{biblatex}
21 |
22 | \usepackage{amsmath,amsfonts}
23 | \usepackage{graphicx}
24 | \usepackage{xcolor}
25 | \usepackage{multirow}
26 | \usepackage{booktabs}
27 | \usepackage{colortbl}
28 | \usepackage{pifont}
29 | \usepackage{makecell}
30 | \usepackage{threeparttable}
31 | \usepackage{extarrows}
32 | \usepackage{bm}
33 |
34 | \usepackage{multicol}
35 | \usepackage{csquotes}
36 | \usepackage{arydshln}
37 |
38 | \usepackage{hyperref}
39 | \usepackage{caption}
40 |
41 | \usepackage{lipsum}
42 | \usepackage{listings}
43 |
44 |
45 | \usepackage{xcolor}
46 | \usepackage{colortbl}
47 | \definecolor{color1}{rgb}{0.9764,0.8039,0.6784}
48 | \definecolor{color2}{rgb}{0.7843,0.7843,0.6627}
49 | \definecolor{color3}{rgb}{0.5137,0.6862,0.6078}
50 |
51 | \usepackage{amsthm}
52 | \theoremstyle{plain} %plain,definition,remark
53 | \newtheorem{theorem}{Theorem}
54 | \newtheorem{definition}{Definition}
55 | \newtheorem{lemma}{Lemma}
56 | \newtheorem{corollary}{Corollary}
57 |
58 | \usepackage{algorithm}
59 | \usepackage{algorithmic}
60 |
61 | \usepackage{tikz}
62 | \def\checkm{\tikz\draw[thick,scale=0.2] (0,0.4) -- (0.4,0) -- (1,1);}
63 | \newcommand{\halfcheckm}{%
64 | \begin{tikzpicture}[scale=0.2]
65 | \draw[thick] (0,0.4) -- (0.4,0) -- (1,1);
66 | \draw[thick] (0.5,1) -- (1,0.3);
67 | \end{tikzpicture}%
68 | }
69 | \newcommand{\fork}{%
70 | \begin{tikzpicture}[scale=0.2]
71 | \draw[thick] (0,1) -- (1,0);
72 | \draw[thick] (0,0) -- (1,1);
73 | \end{tikzpicture}%
74 | }
75 |
76 | \hypersetup{
77 | colorlinks=true,
78 | linkcolor=blue, % 设置链接为蓝色
79 | citecolor=blue,
80 | urlcolor=blue,
81 | }
82 |
83 | %\bibliography{literature.bib}
84 | \addbibresource{literature.bib}
85 |
86 | \definecolor{lightblue}{RGB}{60, 39, 139}
87 |
88 |
89 | \title{Yor Title}
90 |
91 | % If you do not need author information (double-blind review), please modify the \renewcommand*{\maketitle} function in reviewresponse.sty
92 | \author{FirstAuthors (Institution1; FirstAuthors@126.com)\\
93 | SecondAuthors (Institution2; SecondAuthors@126.com)}
94 |
95 |
96 | \begin{document}
97 | \maketitle
98 |
99 | \tableofcontents
100 |
101 | % Cover Letter
102 | %\clearpage
103 |
104 | \input{cover_letter.tex}
105 | \setcounter{page}{0}
106 | \pagestyle{fancy}
107 | \fancyfoot[R]{\thepage\ / \pageref{LastPage}}
108 | \fancyfoot[L]{Response Letter for TNNLS-2024-S-XXXX}
109 | \fancyfoot[C]{\ }
110 |
111 |
112 | \input{Reviewers/Meta.tex}
113 | \input{Reviewers/Meta1.tex}
114 | \input{Reviewers/R1.tex}
115 |
116 |
117 | \end{document}
--------------------------------------------------------------------------------
/reviewresponse.sty:
--------------------------------------------------------------------------------
1 | \ProvidesPackage{reviewresponse}[2021/11/10 Review Response v1.2]
2 | % Author: Karl-Ludwig Besser
3 | % Email: k.besser@tu-bs.de
4 |
5 | % Updated by Liwenhan Xie (xieliwenhan@yahoo.com)
6 | % Summary of changes: section font configuration and the abbreviations
7 | \RequirePackage{kvoptions}
8 | \RequirePackage[breakable,skins]{tcolorbox}
9 | \RequirePackage{xcolor}
10 |
11 | %%% Package Options %%%
12 | \DeclareStringOption{editor}
13 | \DeclareStringOption{journal}
14 | \DeclareStringOption{manuscript}
15 | \ProcessKeyvalOptions*
16 | %%%
17 |
18 | %%% Variables
19 | \let\editorname\reviewresponse@editor
20 | \let\journal\reviewresponse@journal
21 | \let\manuscript\reviewresponse@manuscript
22 | \newcommand*{\thetitle}{\@title}
23 | \newcommand*{\theauthor}{\@author}
24 | \newcommand*{\thedate}{\@date}
25 |
26 | %%% Colors
27 | \definecolor{colorcommentfg}{HTML}{336633}
28 | \definecolor{colorcommentbg}{HTML}{ededed}
29 | \definecolor{colorcommentframe}{HTML}{336633}
30 | %\definecolor{colordark}{RGB}{0,63,87}
31 | %\definecolor{colormedium}{RGB}{0,112,155}
32 | %\definecolor{colorlight}{RGB}{102,180,211}
33 | %\colorlet{colorcommentbg}{colorlight!20}
34 |
35 | \definecolor{colorchangebg}{HTML}{e5f9de}
36 | \definecolor{colorchangetext}{HTML}{000000}
37 | \colorlet{colorchangeframe}{black!20}
38 | %%%
39 |
40 |
41 | %%% General Settings
42 | \setlength{\parindent}{12pt}
43 | \setlength{\parskip}{.25em}
44 | \setlength{\headheight}{15pt}
45 | \addtolength{\topmargin}{-3pt}
46 | \renewcommand{\baselinestretch}{1.0}
47 | \textheight 235mm
48 |
49 | %%%
50 |
51 | %%% Counters
52 | \newcounter{reviewer@counter}
53 | \setcounter{reviewer@counter}{0}
54 | \newcounter{reviewcomment@counter}[reviewer@counter]
55 | \setcounter{reviewcomment@counter}{0}
56 | %%%
57 |
58 | %%% Commands
59 | \renewcommand*{\maketitle}{%
60 | \begin{titlepage}
61 | \begin{center}
62 | \vspace*{1cm}
63 | \large{Responses to Reviewers' Comments for Manuscript \reviewresponse@manuscript}\\
64 |
65 | \vspace{1cm}
66 | \textbf{\LARGE{\@title}}\\
67 | \vspace{1cm}
68 | \large{Addressed Comments for Publication to}
69 |
70 | \Large{\reviewresponse@journal}
71 |
72 | % If you do not need author information (double-blind review), please delete the following two lines of code
73 | \large{by} \\
74 | {\large{\@author}}
75 | \end{center}
76 | \end{titlepage}
77 | }
78 |
79 | \newcommand{\editor}{
80 | \clearpage
81 | \phantomsection % 用于确保目录条目正确链接到页面
82 | \addcontentsline{toc}{section}{\protect\numberline{}Response to Editor}
83 | \@ifundefined{pdfbookmark}{}{%
84 | %\pdfbookmark[1]{Reponse to Editor}{hyperref@editor}%
85 | }%
86 | \section*{\textbf{Response to Editor}}
87 | }
88 |
89 | \newcommand{\AssociateEditor}{
90 | \clearpage
91 | \phantomsection % 用于确保目录条目正确链接到页面
92 | \addcontentsline{toc}{section}{\protect\numberline{}Response to Associate Editor}
93 | \@ifundefined{pdfbookmark}{}{%
94 | %\pdfbookmark[1]{Reponse to Associate Editor}{hyperref@editor}%
95 | }%
96 | \section*{\textbf{Response to Associate Editor}}
97 | }
98 |
99 | \newcommand{\reviewer}{
100 | \clearpage
101 | \refstepcounter{reviewer@counter}%
102 | \phantomsection % 用于确保目录条目正确链接到页面
103 | \addcontentsline{toc}{section}{\protect\numberline{}Response to Reviewer \arabic{reviewer@counter}}
104 | \@ifundefined{pdfbookmark}{}{%
105 | %\pdfbookmark[1]{Reviewer \arabic{reviewer@counter}}{hyperref@reviewer\arabic{reviewer@counter}}%
106 | }%
107 | \section*{\textbf{\bfseries{Response to Reviewer \arabic{reviewer@counter}}}}
108 | }
109 | %%%
110 |
111 | \definecolor{lightblue}{RGB}{60, 39, 139}
112 |
113 | %%% Blocks %%%
114 | \newenvironment{generalcomment}{%
115 | \begin{tcolorbox}[adjusted title={Summary Comment}, fonttitle={\bfseries}, enhanced jigsaw, colbacktitle={colorcommentframe},arc=0pt,boxrule=0em,opacityframe=0,colback={colorcommentbg}]
116 | }{\end{tcolorbox}}
117 |
118 | \newenvironment{revcommentToAssociateAuthor}[1][]{\refstepcounter{reviewcomment@counter}
119 | \begin{tcolorbox}[adjusted title={Comment \arabic{reviewcomment@counter} of Associate Editor}, fonttitle={\bfseries}, enhanced jigsaw, colbacktitle={colorcommentframe},arc=0pt,opacityframe=0,boxrule=0em,colback={colorcommentbg},#1]
120 | }{\end{tcolorbox}}
121 |
122 | \newenvironment{revcomment}[1][]{\refstepcounter{reviewcomment@counter}
123 | \begin{tcolorbox}[adjusted title={Comment \arabic{reviewer@counter}.\arabic{reviewcomment@counter}}, fonttitle={\bfseries}, enhanced jigsaw, colbacktitle={colorcommentframe},arc=0pt,opacityframe=0,boxrule=0em,colback={colorcommentbg},#1]
124 | }{\end{tcolorbox}}
125 |
126 | \newenvironment{revresponse}[1][{Thank you for the comment.}]{%
127 | \noindent\textbf{Response \arabic{reviewer@counter}.\arabic{reviewcomment@counter}:} \color{lightblue}#1\par
128 | }{\vspace{1em}}
129 |
130 | \newenvironment{revmeta}[1][{Thank you for the comment.}]{%
131 | \textbf{Response:} \color{lightblue}#1\par
132 | }{\vspace{1em}}
133 |
134 | \newenvironment{changes}{
135 | \begin{tcolorbox}[breakable,left skip=0em,enhanced jigsaw, colframe={colorchangebg}, boxrule=0.1em, leftrule=1.5em, opacityback=0, opacityframe=1, arc=0pt]\color{colorchangetext}
136 | \setlength{\parindent}{2em}
137 | }
138 | {\end{tcolorbox}
139 | }
140 |
141 | \newcommand{\printpartbibliography}[1]{\begin{refsegment}\nocite{#1}\printbibliography[heading=none,segment=\therefsegment]\end{refsegment}}
142 |
--------------------------------------------------------------------------------