Other186k+ stars

TensorFlow

Open source machine learning framework

Commit Details

Message
"Initial commit of TensorFlow"
Author
TensorFlow Team
Date
2015-11-07
Hash
f41959ccb2d9d4c7f8e0e0e0e0e0e0e0e0e0e0e0

Fun Fact

TensorFlow is the second-generation ML system at Google, replacing DistBelief. It was designed to be flexible and run on everything from phones to data centers.

</>First Code

C++
/* Copyright 2015 Google Inc. All Rights Reserved.

Licensed under the Apache License, Version 2.0
*/

#include "tensorflow/core/framework/op.h"

namespace tensorflow {

// The building block: a computational graph
REGISTER_OP("MatMul")
    .Input("a: T")
    .Input("b: T")
    .Output("product: T")
    .Attr("T: {float, double}")
    .Doc(R"doc(
Multiplies matrix "a" by matrix "b", producing "a * b".
)doc");

// From Google Brain to the world
// Second generation ML system after DistBelief

} // namespace tensorflow