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
What is the difference between env.py and fixed_env.py? I feel they are doing the same job!
env.py
fixed_env.py
The text was updated successfully, but these errors were encountered:
Doing a diff env.py fixed_env.py you will see something like
diff env.py fixed_env.py
33c31 < self.trace_idx = np.random.randint(len(self.all_cooked_time)) --- > self.trace_idx = 0 36a35 > self.mahimahi_start_ptr = 1 39c38 < self.mahimahi_ptr = np.random.randint(1, len(self.cooked_bw)) --- > self.mahimahi_ptr = 1
fixed_env.py is loading traces sequentially in order. It's just for easier testing and comparing results after training.
Sorry, something went wrong.
No branches or pull requests
What is the difference between
env.py
andfixed_env.py
?I feel they are doing the same job!
The text was updated successfully, but these errors were encountered: