Borrado de cachés de creación de imágenes en el notebook de ModelArts
Ejecute el comando ma-cli image prune para borrar las cachés de creación de imágenes. Este comando solo está disponible en instancias de notebook de ModelArts.
$ ma-cli image prune -h Usage: ma-cli image prune [OPTIONS] Prune image build cache by image-building in Notebook. Example: # Prune image build cache ma-cli image prune Options: -ks, --keep-storage INTEGER Amount of disk space to keep for cache below this limit (in MB) (default: 0). -kd, --keep-duration TEXT Keep cache newer than this limit, support second(s), minute(m) and hour(h) (default: 0s). -v, --verbose Show more verbose output. -D, --debug Debug Mode. Shows full stack trace when error occurs. -h, -H, --help Show this message and exit.
Parámetro |
Tipo |
Obligatorio |
Descripción |
---|---|---|---|
-ks / --keep-storage |
Int |
No |
Tamaño de la memoria caché que se va a conservar, en MB. El valor predeterminado es 0 e indica que se borrarán todas las cachés. |
-kd / --keep-duration |
String |
No |
Si se deben conservar las cachés más recientes y borrar solo las cachés históricas. La unidad puede ser s (segundo), m (minuto) o h (hora). El valor predeterminado es 0 e indica que se borrarán todas las cachés. |
-v / --verbose |
Bool |
No |
Si se debe mostrar información detallada. Esta función está deshabilitada por defecto. |
Ejemplos
Conserve 1 MB de caché de imágenes al borrar cachés.
ma-cli image prune -ks 1