Catch Zeng

Results 3 issues of Catch Zeng

how can I use aac-enc in android studio?

How to convert [ImageNet dataset](https://image-net.org/request) to `imagenet-2012-tfrecord` for [training](https://github.com/magenta/magenta/tree/main/magenta/models/arbitrary_image_stylization#train-a-model-on-a-small-dataset). ```sh $ arbitrary_image_stylization_train \ --batch_size=8 \ --imagenet_data_dir=/path/to/imagenet-2012-tfrecord \ --vgg_checkpoint=/path/to/vgg-checkpoint \ --inception_v3_checkpoint=/path/to/inception-v3-checkpoint \ --style_dataset_file=$RECORDIO_PATH \ --train_dir="$logdir"/train_dir \ --content_weights={\"vgg_16/conv3\":2.0} \ --random_style_image_size=False \ --augment_style_images=False...

比如使用下面训练了 100 个 Epochs ```sh python3 train.py -t classifier -z datasets/test_classifier_datasets.zip train ``` 发现结果不理想,想增加 Epochs 到 500,怎么继续训练?