mirror of
https://github.com/marian-nmt/marian.git
synced 2024-11-03 20:13:47 +03:00
Merge branch 'master' of github.com:emjotde/marian
This commit is contained in:
commit
a94d48226b
@ -1,5 +1,10 @@
|
||||
Marian
|
||||
======
|
||||
|
||||
[![Join the chat at https://gitter.im/MarianNMT/Lobby](https://badges.gitter.im/MarianNMT/Lobby.svg)](https://gitter.im/MarianNMT/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
||||
|
||||
Google group for commit messages: https://groups.google.com/forum/#!forum/mariannmt
|
||||
|
||||
A C++ gpu-specific parallel automatic differentiation library
|
||||
with operator overloading.
|
||||
|
||||
|
@ -571,7 +571,8 @@ struct CrossEntropyNodeOp : public BinaryNodeOp {
|
||||
virtual std::string graphviz() {
|
||||
std::stringstream ss;
|
||||
ss << "\"" << this << "\" [shape=\"box\", label=\"cross_entropy\", style=\"filled\", fillcolor=\"yellow\"]" << std::endl;
|
||||
ss << "\"" << a_ << "\" -> \"" << this << "\"" << std::endl << std::endl;
|
||||
ss << "\"" << a_ << "\" -> \"" << this << "\"" << std::endl;
|
||||
ss << "\"" << b_ << "\" -> \"" << this << "\"" << std::endl << std::endl;
|
||||
return ss.str();
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user