Skip to content
New issue

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

hyper_params are shared among all callers --> Fix #24

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion utils/train_utils.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import tensorflow as tf
import math
from utils import bbox_utils
import copy

RPN = {
"vgg16": {
Expand Down Expand Up @@ -39,7 +40,7 @@ def get_hyper_params(backbone, **kwargs):
hyper_params[key] = value
#
hyper_params["anchor_count"] = len(hyper_params["anchor_ratios"]) * len(hyper_params["anchor_scales"])
return hyper_params
return copy.deepcopy(hyper_params)

def get_step_size(total_items, batch_size):
"""Get step size for given total item size and batch size.
Expand Down