資源簡介
安裝caffe時,protobuf-compiler一直出錯,網上有人說,他用了很多版本的protobuf都沒有成功,最終用的2.5.0版本才成功。官網下載太慢,放到資源上,方便下載。
代碼片段和文件信息
//?See?README.txt?for?information?and?build?instructions.
import?com.example.tutorial.AddressBookProtos.AddressBook;
import?com.example.tutorial.AddressBookProtos.Person;
import?java.io.BufferedReader;
import?java.io.FileInputStream;
import?java.io.FileNotFoundException;
import?java.io.FileOutputStream;
import?java.io.InputStreamReader;
import?java.io.IOException;
import?java.io.PrintStream;
class?AddPerson?{
??//?This?function?fills?in?a?Person?message?based?on?user?input.
??static?Person?PromptForAddress(BufferedReader?stdin
?????????????????????????????????PrintStream?stdout)?throws?IOException?{
????Person.Builder?person?=?Person.newBuilder();
????stdout.print(“Enter?person?ID:?“);
????person.setId(Integer.valueOf(stdin.readLine()));
????stdout.print(“Enter?name:?“);
????person.se
評論
共有 條評論