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:
Yuante Li
2025-03-18 14:42:53 +08:00
committed by GitHub
parent 229866123b
commit 3e9ba73c2f
9 changed files with 137 additions and 79 deletions
+3 -3
View File
@@ -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 %}
}