We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, I think This part "model": model.class.name, # Add a comma here, need to add a comma.
# Create results dict results = { "machine": MACHINE, "device": device, "dataset_name": DATASET_NAME, "epochs": NUM_EPOCHS, "batch_size": BATCH_SIZE, "image_size": IMAGE_SIZE[0], "num_train_samples": len(train_data), "num_test_samples": len(test_data), "total_train_time": round(total_train_time, 3), "time_per_epoch": round(total_train_time/NUM_EPOCHS, 3), "model": model.__class__.__name__, # Add a comma here "test_accuracy": model_results["test_acc"][-1] }
The text was updated successfully, but these errors were encountered:
I hit the same issue when trying the benchmark, and also added the comma in my version.
I've proposed a PR for the change. Hope that helps.
Sorry, something went wrong.
No branches or pull requests
4. Train the model on CPU and MPS device (GPU)
Hello, I think This part "model": model.class.name, # Add a comma here, need to add a comma.
The text was updated successfully, but these errors were encountered: