mirror of
https://github.com/NicolasBohn/NexQuant.git
synced 2026-08-07 03:57:45 +00:00
feat: add model removal and adjust some framework logic (#681)
* prune model task * add component_description * add model removal logic to component, hypo, and task gen * fix ci * adjust coder to meet the requirement of model removal * fix and refine the logic of model removal * add model removal logic in model_eval * fix ci * fix ci * prune some unnecessary codes
This commit is contained in:
@@ -12,10 +12,10 @@ BatchEditOut: |-
|
||||
For example:
|
||||
Inject the code into the folder. Your file name should always contain the suffix. Your file name keys should be unique to avoid delete or replace conflicts.
|
||||
{
|
||||
<file name1>: "<code>", // indicate writing <code> into <file name1> (create new file or replace existing file)
|
||||
<file name1>: "<code>", // indicate writing <code> into <file name1> (create a new file or update an existing file)
|
||||
{% if with_del %}
|
||||
<file name2>: "__DEL__" // indicate removing file name2. When we want to replace a file to a new one, we usually use this
|
||||
<file name2>: "__DEL__" // indicate removing file name2. When we want to just remove a file or replace a file to a new one, we usually use this
|
||||
{% else %}
|
||||
<file name2>(optional): "<code>" // indicate writing <code> into <file name2> (create new file or replace existing file)
|
||||
<file name2> (optional): "<code>" // indicate writing <code> into <file name2> (create a new file or update an existing file)
|
||||
{% endif %}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user