edvardasast
edvardasast
`ParseQuery query = new ParseQuery("Table"); query.whereContainedIn("pointer", listOfParseObjects); query.findInBackground(new FindCallback() { @Override public void done(List list, ParseException parseException) { if (parseException == null) { //do something }}else{ parseException.printStackTrace(); } } });`...
Hi, I would like to use more than one GPU to increase translations speed is it possible? I am using docker container with GPU support. As you could see in...