-
Notifications
You must be signed in to change notification settings - Fork 203
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
Improve readability #167
Improve readability #167
Conversation
Wovchena
commented
Jan 19, 2024
- stable_diffusion_1_5: return EXIT_FAILURE to stay consistent with the rest of main()
- causal_lm 1. process()->select_next_tokens(). Although transformers name it process(), I believe select_next_tokens() is more verbose 2. return different values for different errors
1. stable_diffusion_1_5: return EXIT_FAILURE to stay consistent with the rest of main() 2. causal_lm 1. process()->select_next_tokens(). Although transformers name it process(), I believe select_next_tokens() is more verbose 2. return different values for different errors
.github/workflows/causal_lm_cpp.yml
Outdated
@@ -33,7 +33,7 @@ jobs: | |||
- name: Install OpenVINO | |||
run: | | |||
mkdir ./ov/ | |||
curl https://storage.openvinotoolkit.org/repositories/openvino/packages/nightly/2023.3.0-13739-294cc6668c4/l_openvino_toolkit_ubuntu20_2023.3.0.dev20231219_x86_64.tgz | tar --directory ./ov/ --strip-components 1 -xz | |||
curl https://storage.openvinotoolkit.org/repositories/openvino/packages/nightly/2024.0.0-14049-0dc2dc5f602/l_openvino_toolkit_ubuntu20_2024.0.0.dev20240118_x86_64.tgz | tar --directory ./ov/ --strip-components 1 -xz |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is it supposed to return back to 2023.3 once official release is out?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't have objections to set 23.3 back. The problem is that there's no longer nightly 23.3
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- we are on releases/2023/3 branch, so it's expected to test against corresponding release
- current nightly release will be removed in future as well and you will have to update it one more time.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure