main.cc 194 B

12345678910111213
  1. #include <iostream>
  2. #include "bias.h"
  3. #include "weight.h"
  4. using std::cout; using std::endl;
  5. int main(int argc, char const *argv[])
  6. {
  7. cout << weight6[128] << bia3[0] << endl;
  8. return 0;
  9. }