-
Notifications
You must be signed in to change notification settings - Fork 9
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
save CSV #44
Conversation
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.
Can we remove all the formatting comments?:)
docs/make.jl
Outdated
modules = [TuringCallbacks], | ||
authors = "Tor", | ||
repo = "https://github.com/TuringLang/TuringCallbacks.jl/blob/{commit}{path}#L{line}", | ||
sitename = "TuringCallbacks.jl", | ||
format = Documenter.HTML(; | ||
prettyurls = get(ENV, "CI", "false") == "true", | ||
canonical = "https://turinglang.github.io/TuringCallbacks.jl", | ||
assets = String[], | ||
), | ||
pages=[ | ||
"Home" => "index.md", | ||
], | ||
pages = ["Home" => "index.md"], | ||
) | ||
|
||
deploydocs(; | ||
repo="github.com/TuringLang/TuringCallbacks.jl", | ||
) | ||
deploydocs(; repo = "github.com/TuringLang/TuringCallbacks.jl") |
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.
This is all unrelated to the proposed changes, no?
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## master #44 +/- ##
===========================================
+ Coverage 48.14% 58.91% +10.77%
===========================================
Files 6 8 +2
Lines 135 185 +50
===========================================
+ Hits 65 109 +44
- Misses 70 76 +6
☔ View full report in Codecov by Sentry. |
* added more tests * added support for filtering extras, computing stats for extras, and for adding hyperparameters * bump versions of Turing and TensorBoardLogger now that it supports hyperparams * added automatic recording of hyperparms for some Turing samplers, and improved testing of this * added useful comment on where i got that weird test from * fixed tests + added test for MH, which does not currently have hyperparams * bump minor version since this is breaking * updated docstring for TensorBoardLogger Co-authored-by: Tor Erlend Fjelde <[email protected]>
* added more tests * added support for filtering extras, computing stats for extras, and for adding hyperparameters * bump versions of Turing and TensorBoardLogger now that it supports hyperparams * added automatic recording of hyperparms for some Turing samplers, and improved testing of this * added useful comment on where i got that weird test from * fixed tests + added test for MH, which does not currently have hyperparams * bump minor version since this is breaking * updated docstring for TensorBoardLogger Co-authored-by: Tor Erlend Fjelde <[email protected]>
closed in favour of #49 |
Same as TuringLang/Turing.jl#2020