Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Support Plots.jl plots #42

Merged
merged 19 commits into from
Sep 23, 2019
Merged

Support Plots.jl plots #42

merged 19 commits into from
Sep 23, 2019

Conversation

PhilipVinc
Copy link
Member

@PhilipVinc PhilipVinc commented Sep 18, 2019

Adds Requires.jl.
Remove LightGraphs dependency. (#39)
Support plotting Plots.

Missing tests ATM.
Should add some docs to this, otherwise people will never find out about it.

using TensorBoardLogger, Logging, Plots

p=plot(rand(100), rand(100));
tbl =TBLogger()
with_logger(tbl) do
  @info "first_plot" randomdata=p 
end
log_image(tbl, "another_one!", plot(1:10, exp.(1:10)))

@PhilipVinc
Copy link
Member Author

Ok I think I have an idea, I'll try the following:

  • Create a PNG struct, wrapping the binary data, that allows me to easily access things like height width etc...
  • This is the only thing that has a image_summary. Everything else will be converted to PNG in preprocess

Since there is a lot of logic here that is duplicated between the preprocess and log_images I think it would be nice to start thinking about making all log_stuff functions trigger the logger internally. This would get ride of the code repetitions and make it more clear.

@PhilipVinc
Copy link
Member Author

I abused TBImage a bit everywhere. Internally we now pass around either PNGs or TBImage(s) that get converted to PNGs with a rather intricate logic (that works well).
I'm starting to think that those TBObjects aren't really overrides, but rather useful objects to use inside the program to guide the dispatch...

Right now the folder structure and the files are a bit messy. Once this is merged I'd also like to have a stab at it.
I think we could split all the log_xxx methods in some separate folder, called ExplicitInterface or something, to be loaded at the end...

@PhilipVinc
Copy link
Member Author

Ah, @xukai92 , I added native support for PyPlot too.

@xukai92
Copy link
Contributor

xukai92 commented Sep 20, 2019

This looks awesome!

@PhilipVinc
Copy link
Member Author

I'd try to merge this soon, I think it's about time we tag a new release...

@PhilipVinc PhilipVinc merged commit 08f57d8 into master Sep 23, 2019
@PhilipVinc
Copy link
Member Author

closes #39
Also adds PyPlot dependency.

@PhilipVinc PhilipVinc deleted the plots-requires branch September 23, 2019 18:05
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants