keertika-11

Results 6 comments of keertika-11

This worked for me ``` echo 409659100 | sudo tee -a /proc/sys/kernel/threads-max echo 409659100 | sudo tee -a /proc/sys/vm/max_map_count echo 10965910 | sudo tee -a /proc/sys/kernel/threads-max #DefaultTasksMax=100000 to /etc/systemd/system.conf #UserTasksMax=500000...

the model is loading now, but facing this error while retraining `TypeError: Tensors in list passed to 'values' of 'ConcatV2' Op have types [float32, float32, float16, ..float16] ` logits data...

I am not using the concat operation anywhere in the program, I did try casting the data like this but gives the same error every time ``` x_batch_train = tf.cast(x_batch_train,...

Here is the data loading code the data loading part of the code ``` def dataset(path, batch_size, class_labels): def configure_for_performance(dataset, batch_size): dataset = dataset.repeat() dataset = dataset.batch(batch_size) dataset = dataset.prefetch(buffer_size=tf.data.experimental.AUTOTUNE)...

error ``` Traceback (most recent call last): File "/data-mount-2/eva_giant/eva_giant_train.py", line 286, in result = distributed_train_step(dataset_inputs=batch) File "/home/keertika/miniconda3/envs/keras_cv/lib/python3.9/site-packages/tensorflow/python/util/traceback_utils.py", line 153, in error_handler raise e.with_traceback(filtered_tb) from None File "/tmp/__autograph_generated_file6lqoz13m.py", line 10, in...