/
githubmirror
/
transformers
Обзор
Документация
Войти
/
githubmirror
/
transformers
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
examples/modular-transformers/convert_examples.sh
10 строк
333 B
Arthur
[`modular`] fixes! (#33820)
30 сен 2024, 17:43
Не верифицирован
30 сен 2024, 17:43
1dba608
Код
Авторство
О чём код?
#!/bin/bash # Iterate over each file in the current directory for file in examples/modular-transformers/modular_*; do # Check if it's a regular file if [ -f "$file" ]; then # Call the Python script with the file name as an argument python utils/modular_model_converter.py --files_to_parse "$file" fi done